|
|
@ -1,125 +1,125 @@
|
|
|
|
<template>
|
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<div>
|
|
|
|
<el-card>
|
|
|
|
<el-card>
|
|
|
|
<el-form :inline="true" :model="filterQuery" class="query-form" size="mini">
|
|
|
|
<el-form :inline="true" :model="filterQuery" class="query-form" size="mini">
|
|
|
|
<el-form-item class="query-form-item">
|
|
|
|
<el-form-item class="query-form-item">
|
|
|
|
<el-input
|
|
|
|
<el-input
|
|
|
|
v-model="filterQuery.action"
|
|
|
|
v-model="filterQuery.action"
|
|
|
|
placeholder="业务类型"
|
|
|
|
placeholder="业务类型"
|
|
|
|
style="width: 400px"
|
|
|
|
style="width: 400px"
|
|
|
|
></el-input>
|
|
|
|
></el-input>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item class="query-form-item">
|
|
|
|
<el-form-item class="query-form-item">
|
|
|
|
<el-select v-model="filterQuery.enabled" placeholder="状态">
|
|
|
|
<el-select v-model="filterQuery.enabled" placeholder="状态">
|
|
|
|
<el-option label="全部" value=""></el-option>
|
|
|
|
<el-option label="全部" value=""></el-option>
|
|
|
|
<el-option label="已启用" value=1></el-option>
|
|
|
|
<el-option label="已启用" value=1></el-option>
|
|
|
|
<el-option label="未启用" value=0></el-option>
|
|
|
|
<el-option label="未启用" value=0></el-option>
|
|
|
|
</el-select>
|
|
|
|
</el-select>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item>
|
|
|
|
<el-form-item>
|
|
|
|
<el-button-group>
|
|
|
|
<el-button-group>
|
|
|
|
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
|
|
|
|
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
|
|
|
|
<el-button type="primary" icon="search" @click="getList">查询</el-button>
|
|
|
|
<el-button type="primary" icon="search" @click="getList">查询</el-button>
|
|
|
|
<el-button type="primary" icon="search" @click="handleAddClick"
|
|
|
|
<el-button type="primary" icon="search" @click="handleAddClick"
|
|
|
|
>新增
|
|
|
|
>新增
|
|
|
|
</el-button
|
|
|
|
</el-button
|
|
|
|
>
|
|
|
|
>
|
|
|
|
</el-button-group>
|
|
|
|
</el-button-group>
|
|
|
|
|
|
|
|
|
|
|
|
</el-form-item>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form>
|
|
|
|
</el-form>
|
|
|
|
|
|
|
|
|
|
|
|
<el-table v-loading="loading" :data="list" style="width: 100%">
|
|
|
|
<el-table v-loading="loading" :data="list" style="width: 100%">
|
|
|
|
<el-table-column label="序号" type="index" width="120" fixed></el-table-column>
|
|
|
|
<el-table-column label="序号" type="index" width="120" fixed></el-table-column>
|
|
|
|
|
|
|
|
|
|
|
|
<el-table-column label="业务单据类型名称" prop="name" fixed></el-table-column>
|
|
|
|
<el-table-column label="业务单据类型名称" prop="name" fixed></el-table-column>
|
|
|
|
<el-table-column label="业务单据类型代码" prop="action" fixed></el-table-column>
|
|
|
|
<el-table-column label="业务单据类型代码" prop="action" fixed></el-table-column>
|
|
|
|
<el-table-column label="第三方单据类型" prop="originAction" fixed></el-table-column>
|
|
|
|
<el-table-column label="第三方单据类型" prop="originAction" fixed></el-table-column>
|
|
|
|
<el-table-column label="单据是否启用" prop="enable" fixed>
|
|
|
|
<el-table-column label="单据是否启用" prop="enable" fixed>
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<span>{{ enableMap[scope.row.enable] }}</span>
|
|
|
|
<span>{{ enableMap[scope.row.enable] }}</span>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="是否寄售" prop="advanceType" fixed>
|
|
|
|
<el-table-column label="是否寄售" prop="advanceType" fixed>
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<span>{{ enableMap[scope.row.advanceType] }}</span>
|
|
|
|
<span>{{ enableMap[scope.row.advanceType] }}</span>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="是否自动补单" prop="advanceType" fixed>
|
|
|
|
<el-table-column label="是否自动补单" prop="advanceType" fixed>
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<span>{{ enableMap[scope.row.changeEnable] }}</span>
|
|
|
|
<span>{{ enableMap[scope.row.changeEnable] }}</span>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="是否供应商使用" prop="spUse" fixed>
|
|
|
|
<el-table-column label="是否供应商使用" prop="spUse" fixed>
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<span>{{ enableMap[scope.row.spUse] }}</span>
|
|
|
|
<span>{{ enableMap[scope.row.spUse] }}</span>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-table-column label="操作" fixed="right">
|
|
|
|
<el-table-column label="操作" fixed="right">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-button
|
|
|
|
<el-button
|
|
|
|
type="text"
|
|
|
|
type="text"
|
|
|
|
size="small"
|
|
|
|
size="small"
|
|
|
|
@click.native.stop="handleModifyClick(scope.row)"
|
|
|
|
@click.native.stop="handleModifyClick(scope.row)"
|
|
|
|
>编辑
|
|
|
|
>编辑
|
|
|
|
</el-button
|
|
|
|
</el-button
|
|
|
|
>
|
|
|
|
>
|
|
|
|
<el-button
|
|
|
|
<el-button
|
|
|
|
type="text"
|
|
|
|
type="text"
|
|
|
|
size="small"
|
|
|
|
size="small"
|
|
|
|
@click.native.stop="deleteDialog(scope.row)"
|
|
|
|
@click.native.stop="deleteDialog(scope.row)"
|
|
|
|
>删除
|
|
|
|
>删除
|
|
|
|
</el-button
|
|
|
|
</el-button
|
|
|
|
>
|
|
|
|
>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table>
|
|
|
|
</el-table>
|
|
|
|
|
|
|
|
|
|
|
|
<el-dialog
|
|
|
|
<el-dialog
|
|
|
|
title="新增业务类型关联"
|
|
|
|
title="新增业务类型关联"
|
|
|
|
:visible.sync="addDialogVisible"
|
|
|
|
:visible.sync="addDialogVisible"
|
|
|
|
width="70%"
|
|
|
|
width="70%"
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
v-if="addDialogVisible"
|
|
|
|
v-if="addDialogVisible"
|
|
|
|
>
|
|
|
|
>
|
|
|
|
<modifyDialog :inputQuery="inputQuery"></modifyDialog>
|
|
|
|
<modifyDialog :inputQuery="inputQuery"></modifyDialog>
|
|
|
|
<div style="text-align: center">
|
|
|
|
<div style="text-align: center">
|
|
|
|
<el-button type="primary" size="small" icon="search" @click="onAddSubmit"
|
|
|
|
<el-button type="primary" size="small" icon="search" @click="onAddSubmit"
|
|
|
|
>提交
|
|
|
|
>提交
|
|
|
|
</el-button
|
|
|
|
</el-button
|
|
|
|
>
|
|
|
|
>
|
|
|
|
<el-button type="primary" size="small" icon="search" @click="cancelDialog"
|
|
|
|
<el-button type="primary" size="small" icon="search" @click="cancelDialog"
|
|
|
|
>取消
|
|
|
|
>取消
|
|
|
|
</el-button
|
|
|
|
</el-button
|
|
|
|
>
|
|
|
|
>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</el-dialog>
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
|
|
|
<el-dialog
|
|
|
|
<el-dialog
|
|
|
|
title="编辑业务类型关联"
|
|
|
|
title="编辑业务类型关联"
|
|
|
|
:visible.sync="modifyDialogVisible"
|
|
|
|
:visible.sync="modifyDialogVisible"
|
|
|
|
width="70%"
|
|
|
|
width="70%"
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
v-if="modifyDialogVisible"
|
|
|
|
v-if="modifyDialogVisible"
|
|
|
|
>
|
|
|
|
>
|
|
|
|
<modifyDialog :inputQuery="inputQuery"></modifyDialog>
|
|
|
|
<modifyDialog :inputQuery="inputQuery"></modifyDialog>
|
|
|
|
<div style="text-align: center">
|
|
|
|
<div style="text-align: center">
|
|
|
|
<el-button type="primary" size="small" icon="search" @click="onModifySubmit"
|
|
|
|
<el-button type="primary" size="small" icon="search" @click="onModifySubmit"
|
|
|
|
>提交
|
|
|
|
>提交
|
|
|
|
</el-button
|
|
|
|
</el-button
|
|
|
|
>
|
|
|
|
>
|
|
|
|
<el-button type="primary" size="small" icon="search" @click="cancelDialog"
|
|
|
|
<el-button type="primary" size="small" icon="search" @click="cancelDialog"
|
|
|
|
>取消
|
|
|
|
>取消
|
|
|
|
</el-button
|
|
|
|
</el-button
|
|
|
|
>
|
|
|
|
>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</el-dialog>
|
|
|
|
</el-dialog>
|
|
|
|
</el-card>
|
|
|
|
</el-card>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
<script>
|
|
|
|
<script>
|
|
|
|
|
|
|
|
|
|
|
@ -127,178 +127,182 @@ import {getLocalBusType, addLocalBusType, updateLocalBusType, deleteLocalBusType
|
|
|
|
import modifyDialog from "./BussinessTypeLoclModify";
|
|
|
|
import modifyDialog from "./BussinessTypeLoclModify";
|
|
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
return {
|
|
|
|
filterQuery: {
|
|
|
|
filterQuery: {
|
|
|
|
enabled: "1",
|
|
|
|
enabled: "1",
|
|
|
|
udiwmsType: "",
|
|
|
|
udiwmsType: "",
|
|
|
|
thirdType: "",
|
|
|
|
thirdType: "",
|
|
|
|
page: 1,
|
|
|
|
page: 1,
|
|
|
|
limit: 20,
|
|
|
|
limit: 20,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
addDialogVisible: false,
|
|
|
|
addDialogVisible: false,
|
|
|
|
modifyDialogVisible: false,
|
|
|
|
modifyDialogVisible: false,
|
|
|
|
list: [],
|
|
|
|
list: [],
|
|
|
|
inputQuery: {
|
|
|
|
inputQuery: {
|
|
|
|
action: "",
|
|
|
|
action: "",
|
|
|
|
name: "",
|
|
|
|
name: "",
|
|
|
|
enable: "",
|
|
|
|
enable: "",
|
|
|
|
remark: "",
|
|
|
|
remark: "",
|
|
|
|
mainAction: "",
|
|
|
|
mainAction: "",
|
|
|
|
thirdSysFk: "",
|
|
|
|
thirdSysFk: "",
|
|
|
|
id: "",
|
|
|
|
id: "",
|
|
|
|
originAction: null,
|
|
|
|
originAction: null,
|
|
|
|
localAction: null,
|
|
|
|
localAction: null,
|
|
|
|
advanceType: null,
|
|
|
|
advanceType: null,
|
|
|
|
changeEnable: null,
|
|
|
|
changeEnable: null,
|
|
|
|
spUse: null,
|
|
|
|
spUse: null,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
enableMap: {
|
|
|
|
enableMap: {
|
|
|
|
true: "是",
|
|
|
|
true: "是",
|
|
|
|
false: "否",
|
|
|
|
false: "否",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
total: 0,
|
|
|
|
|
|
|
|
multipleSelection: [],
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
total: 0,
|
|
|
|
onReset() {
|
|
|
|
multipleSelection: [],
|
|
|
|
this.$router.push({
|
|
|
|
};
|
|
|
|
path: "",
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
this.filterQuery = {
|
|
|
|
|
|
|
|
udiwmsType: "",
|
|
|
|
|
|
|
|
thirdType: "",
|
|
|
|
|
|
|
|
page: 1,
|
|
|
|
|
|
|
|
limit: 20,
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
this.getList();
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
cancelDialog() {
|
|
|
|
|
|
|
|
this.modifyDialogVisible = false;
|
|
|
|
|
|
|
|
this.addDialogVisible = false;
|
|
|
|
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
getList() {
|
|
|
|
methods: {
|
|
|
|
this.loading = true;
|
|
|
|
onReset() {
|
|
|
|
getLocalBusType(this.filterQuery)
|
|
|
|
this.$router.push({
|
|
|
|
.then((response) => {
|
|
|
|
path: "",
|
|
|
|
this.loading = false;
|
|
|
|
});
|
|
|
|
this.list = response.data.list || [];
|
|
|
|
this.filterQuery = {
|
|
|
|
this.total = response.data.total || 0;
|
|
|
|
udiwmsType: "",
|
|
|
|
})
|
|
|
|
thirdType: "",
|
|
|
|
.catch(() => {
|
|
|
|
page: 1,
|
|
|
|
this.loading = false;
|
|
|
|
limit: 20,
|
|
|
|
this.list = [];
|
|
|
|
};
|
|
|
|
this.total = 0;
|
|
|
|
this.getList();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
cancelDialog() {
|
|
|
|
|
|
|
|
this.modifyDialogVisible = false;
|
|
|
|
|
|
|
|
this.addDialogVisible = false;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
getList() {
|
|
|
|
|
|
|
|
this.loading = true;
|
|
|
|
|
|
|
|
getLocalBusType(this.filterQuery)
|
|
|
|
|
|
|
|
.then((response) => {
|
|
|
|
|
|
|
|
this.loading = false;
|
|
|
|
|
|
|
|
this.list = response.data.list || [];
|
|
|
|
|
|
|
|
this.total = response.data.total || 0;
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
.catch(() => {
|
|
|
|
|
|
|
|
this.loading = false;
|
|
|
|
|
|
|
|
this.list = [];
|
|
|
|
|
|
|
|
this.total = 0;
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
onAddSubmit() {
|
|
|
|
|
|
|
|
addLocalBusType(this.inputQuery)
|
|
|
|
|
|
|
|
.then((response) => {
|
|
|
|
|
|
|
|
this.loading = false;
|
|
|
|
|
|
|
|
this.cancelDialog();
|
|
|
|
|
|
|
|
this.getList();
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
.catch(() => {
|
|
|
|
|
|
|
|
this.loading = false;
|
|
|
|
|
|
|
|
this.cancelDialog();
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
onModifySubmit() {
|
|
|
|
onAddSubmit() {
|
|
|
|
updateLocalBusType(this.inputQuery)
|
|
|
|
addLocalBusType(this.inputQuery)
|
|
|
|
.then((response) => {
|
|
|
|
.then((response) => {
|
|
|
|
this.loading = false;
|
|
|
|
this.loading = false;
|
|
|
|
this.cancelDialog();
|
|
|
|
if (response.code == 20000) {
|
|
|
|
this.getList();
|
|
|
|
this.cancelDialog();
|
|
|
|
})
|
|
|
|
this.getList();
|
|
|
|
.catch(() => {
|
|
|
|
} else {
|
|
|
|
this.loading = false;
|
|
|
|
this.$message.error(response.message);
|
|
|
|
this.cancelDialog();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
})
|
|
|
|
},
|
|
|
|
.catch(() => {
|
|
|
|
|
|
|
|
this.loading = false;
|
|
|
|
|
|
|
|
this.cancelDialog();
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
handleModifyClick(row) {
|
|
|
|
onModifySubmit() {
|
|
|
|
this.modifyDialogVisible = true;
|
|
|
|
updateLocalBusType(this.inputQuery)
|
|
|
|
this.inputQuery = {
|
|
|
|
.then((response) => {
|
|
|
|
id: row.id,
|
|
|
|
this.loading = false;
|
|
|
|
remark: row.remark,
|
|
|
|
this.cancelDialog();
|
|
|
|
action: row.action,
|
|
|
|
this.getList();
|
|
|
|
name: row.name,
|
|
|
|
})
|
|
|
|
enable: row.enable,
|
|
|
|
.catch(() => {
|
|
|
|
mainAction: row.mainAction,
|
|
|
|
this.loading = false;
|
|
|
|
localAction: row.localAction,
|
|
|
|
this.cancelDialog();
|
|
|
|
thirdSysFk: row.thirdSysFk,
|
|
|
|
});
|
|
|
|
originAction: row.originAction,
|
|
|
|
},
|
|
|
|
advanceType: row.advanceType,
|
|
|
|
|
|
|
|
changeEnable: row.changeEnable,
|
|
|
|
|
|
|
|
spUse: row.spUse,
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
handleAddClick() {
|
|
|
|
handleModifyClick(row) {
|
|
|
|
this.addDialogVisible = true;
|
|
|
|
this.modifyDialogVisible = true;
|
|
|
|
this.inputQuery = {
|
|
|
|
this.inputQuery = {
|
|
|
|
action: "",
|
|
|
|
id: row.id,
|
|
|
|
name: "",
|
|
|
|
remark: row.remark,
|
|
|
|
enable: "",
|
|
|
|
action: row.action,
|
|
|
|
remark: "",
|
|
|
|
name: row.name,
|
|
|
|
mainAction: "",
|
|
|
|
enable: row.enable,
|
|
|
|
thirdSysFk: "",
|
|
|
|
mainAction: row.mainAction,
|
|
|
|
id: "",
|
|
|
|
localAction: row.localAction,
|
|
|
|
advanceType: null,
|
|
|
|
thirdSysFk: row.thirdSysFk,
|
|
|
|
localAction: null,
|
|
|
|
originAction: row.originAction,
|
|
|
|
changeEnable: null,
|
|
|
|
advanceType: row.advanceType,
|
|
|
|
};
|
|
|
|
changeEnable: row.changeEnable,
|
|
|
|
},
|
|
|
|
spUse: row.spUse,
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
deleteDialog(rowId) {
|
|
|
|
handleAddClick() {
|
|
|
|
this.$confirm("此操作将永久删除该业务类型信息, 是否继续?", "提示", {
|
|
|
|
this.addDialogVisible = true;
|
|
|
|
confirmButtonText: "确定",
|
|
|
|
this.inputQuery = {
|
|
|
|
cancelButtonText: "取消",
|
|
|
|
action: "",
|
|
|
|
type: "warning",
|
|
|
|
name: "",
|
|
|
|
})
|
|
|
|
enable: "",
|
|
|
|
.then(() => {
|
|
|
|
remark: "",
|
|
|
|
this.deleteOrders(rowId);
|
|
|
|
mainAction: "",
|
|
|
|
})
|
|
|
|
thirdSysFk: "",
|
|
|
|
.catch(() => {
|
|
|
|
id: "",
|
|
|
|
});
|
|
|
|
advanceType: null,
|
|
|
|
},
|
|
|
|
localAction: null,
|
|
|
|
|
|
|
|
changeEnable: null,
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
deleteOrders(data) {
|
|
|
|
deleteDialog(rowId) {
|
|
|
|
this.loading = true;
|
|
|
|
this.$confirm("此操作将永久删除该业务类型信息, 是否继续?", "提示", {
|
|
|
|
let tquery = {
|
|
|
|
confirmButtonText: "确定",
|
|
|
|
id: data.id + "",
|
|
|
|
cancelButtonText: "取消",
|
|
|
|
};
|
|
|
|
type: "warning",
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
.then(() => {
|
|
|
|
|
|
|
|
this.deleteOrders(rowId);
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
.catch(() => {
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
deleteLocalBusType(tquery)
|
|
|
|
deleteOrders(data) {
|
|
|
|
.then((response) => {
|
|
|
|
this.loading = true;
|
|
|
|
this.getList();
|
|
|
|
let tquery = {
|
|
|
|
if (response.code == 20000) {
|
|
|
|
id: data.id + "",
|
|
|
|
this.$message({
|
|
|
|
};
|
|
|
|
type: "success",
|
|
|
|
|
|
|
|
message: "删除成功!",
|
|
|
|
deleteLocalBusType(tquery)
|
|
|
|
});
|
|
|
|
.then((response) => {
|
|
|
|
} else {
|
|
|
|
this.getList();
|
|
|
|
this.$message.error(response.message);
|
|
|
|
if (response.code == 20000) {
|
|
|
|
}
|
|
|
|
this.$message({
|
|
|
|
})
|
|
|
|
type: "success",
|
|
|
|
.catch(() => {
|
|
|
|
message: "删除成功!",
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
.catch(() => {
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
components: {
|
|
|
|
|
|
|
|
modifyDialog,
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
mounted() {
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
created() {
|
|
|
|
|
|
|
|
this.getList();
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
components: {
|
|
|
|
|
|
|
|
modifyDialog,
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
mounted() {
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
created() {
|
|
|
|
|
|
|
|
this.getList();
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
};
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
</script>
|
|
|
|