|
|
@ -1,92 +1,171 @@
|
|
|
|
<template>
|
|
|
|
<template>
|
|
|
|
<el-card>
|
|
|
|
<el-card>
|
|
|
|
|
|
|
|
|
|
|
|
<el-descriptions class="margin-top" title="数据同步设置" :column="1" :size="100" border>
|
|
|
|
<el-descriptions class="margin-top" title="数据同步设置" :column="1" :size="100" border>
|
|
|
|
<template slot="extra">
|
|
|
|
<template slot="extra">
|
|
|
|
<el-button type="primary" size="small" @click="saveConfig()">保存</el-button>
|
|
|
|
<el-button type="primary" size="small" @click="saveConfig()">保存</el-button>
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<el-descriptions-item>
|
|
|
|
|
|
|
|
<template slot="label">
|
|
|
|
|
|
|
|
参数设置
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<el-row :gutter="20" class="el-row" type="flex">
|
|
|
|
|
|
|
|
<el-col :span="4" class="el-col" style="margin-top: 6px">
|
|
|
|
|
|
|
|
<el-checkbox v-model="configQuery.downstreamEnable">是否连通中继服务</el-checkbox>
|
|
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
<el-col :span="20" class="el-col">
|
|
|
|
|
|
|
|
<div>
|
|
|
|
|
|
|
|
<span>数据同步轮询时间(单位:分钟): </span>
|
|
|
|
|
|
|
|
<el-input
|
|
|
|
|
|
|
|
style="width: 100px"
|
|
|
|
|
|
|
|
size="small"
|
|
|
|
|
|
|
|
type="number"
|
|
|
|
|
|
|
|
v-model="configQuery.syncTime"
|
|
|
|
|
|
|
|
splaceholder="请输入内容"
|
|
|
|
|
|
|
|
></el-input>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-descriptions-item>
|
|
|
|
|
|
|
|
<template slot="label">
|
|
|
|
|
|
|
|
单据类型
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<el-checkbox v-model="configQuery.typeBus">业务单据类型</el-checkbox>
|
|
|
|
|
|
|
|
<el-checkbox v-model="configQuery.typeScan">扫码单据类型</el-checkbox>
|
|
|
|
|
|
|
|
<el-checkbox v-model="configQuery.typeThird">第三方单据类型</el-checkbox>
|
|
|
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-descriptions-item>
|
|
|
|
|
|
|
|
<template slot="label">
|
|
|
|
|
|
|
|
基础信息
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<el-checkbox v-model="configQuery.basicProducts">耗材字典</el-checkbox>
|
|
|
|
|
|
|
|
<el-checkbox v-model="configQuery.basicCorp">往来单位字典</el-checkbox>
|
|
|
|
|
|
|
|
<el-checkbox v-model="configQuery.basicInv">仓库字典</el-checkbox>
|
|
|
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
|
|
|
<el-descriptions-item>
|
|
|
|
|
|
|
|
<template slot="label">
|
|
|
|
|
|
|
|
第三方基础信息
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<el-checkbox v-model="configQuery.basicThirdProducts">第三方产品信息</el-checkbox>
|
|
|
|
|
|
|
|
<el-checkbox v-model="configQuery.basicThirdCorp">第三方往来信息</el-checkbox>
|
|
|
|
|
|
|
|
<el-checkbox v-model="configQuery.basicThirdInv">第三方仓库信息</el-checkbox>
|
|
|
|
|
|
|
|
<el-checkbox v-model="configQuery.basicThirdBusOrder">第三方业务单据</el-checkbox>
|
|
|
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-descriptions-item>
|
|
|
|
|
|
|
|
<template slot="label">
|
|
|
|
|
|
|
|
国家库DI数据
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<el-checkbox v-model="configQuery.dbDiProducts">DI产品信息</el-checkbox>
|
|
|
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</el-descriptions>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-descriptions class="margin-top" title="" :column="1" :size="100" style="margin-top: 30px" border>
|
|
|
|
|
|
|
|
<el-descriptions-item>
|
|
|
|
|
|
|
|
<template slot="label">
|
|
|
|
|
|
|
|
单据(单据状态)
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<el-checkbox v-model="configQuery.orderUnCheck">待校验单据</el-checkbox>
|
|
|
|
|
|
|
|
<el-checkbox v-model="configQuery.orderUnReceive">未验收单据</el-checkbox>
|
|
|
|
|
|
|
|
<el-checkbox v-model="configQuery.orderScanFinish">已完成单据</el-checkbox>
|
|
|
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
|
|
|
<el-descriptions-item label="单据(单据类型)" label-style="width: 150px">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div style="float: right;margin-bottom: 10px;margin-right: 25px">
|
|
|
|
|
|
|
|
<el-button type="primary" size="small" @click="addBusTypeDialog()">添加扫码单据类型</el-button>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<el-table
|
|
|
|
|
|
|
|
:data="checkedBusTypes"
|
|
|
|
|
|
|
|
border
|
|
|
|
|
|
|
|
style="width: 100%"
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
<el-table-column label="序号" type="index"></el-table-column>
|
|
|
|
|
|
|
|
<el-table-column
|
|
|
|
|
|
|
|
label="单据类型"
|
|
|
|
|
|
|
|
prop="name"
|
|
|
|
|
|
|
|
show-overflow-tooltip
|
|
|
|
|
|
|
|
></el-table-column>
|
|
|
|
|
|
|
|
<el-table-column
|
|
|
|
|
|
|
|
label="单据类型代码"
|
|
|
|
|
|
|
|
prop="action"
|
|
|
|
|
|
|
|
show-overflow-tooltip
|
|
|
|
|
|
|
|
></el-table-column>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-table-column label="操作" fixed="right">
|
|
|
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
|
|
<el-button
|
|
|
|
|
|
|
|
type="text"
|
|
|
|
|
|
|
|
size="small"
|
|
|
|
|
|
|
|
@click.native="remveBus(scope.$index, scope.row)"
|
|
|
|
|
|
|
|
>移除
|
|
|
|
|
|
|
|
</el-button
|
|
|
|
|
|
|
|
>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
<el-descriptions-item>
|
|
|
|
</el-table-column>
|
|
|
|
<template slot="label">
|
|
|
|
</el-table>
|
|
|
|
参数设置
|
|
|
|
|
|
|
|
</template>
|
|
|
|
</el-descriptions-item>
|
|
|
|
<el-row :gutter="20" class="el-row" type="flex">
|
|
|
|
|
|
|
|
<el-col :span="4" class="el-col" style="margin-top: 6px">
|
|
|
|
|
|
|
|
<el-checkbox v-model="configQuery.downstreamEnable">下游是否联通</el-checkbox>
|
|
|
|
<!-- <el-descriptions-item label="单据(单据类型)" label-style="width: 150px">-->
|
|
|
|
</el-col>
|
|
|
|
<!-- <el-checkbox-group v-model="checkedBusTypes" @change="handleCheckedChange">-->
|
|
|
|
<el-col :span="20" class="el-col">
|
|
|
|
<!-- <el-checkbox-->
|
|
|
|
<div>
|
|
|
|
<!-- style="padding-top: 10px"-->
|
|
|
|
<span>数据同步轮询时间(单位:分钟): </span>
|
|
|
|
<!-- v-for="busType in busTypes" :label="busType" :key="busType.action"-->
|
|
|
|
<el-input
|
|
|
|
<!-- :value="busType.action">{{ busType.name }}-->
|
|
|
|
style="width: 100px"
|
|
|
|
<!-- </el-checkbox>-->
|
|
|
|
size="small"
|
|
|
|
<!-- </el-checkbox-group>-->
|
|
|
|
type="number"
|
|
|
|
<!-- </el-descriptions-item>-->
|
|
|
|
v-model="configQuery.syncTime"
|
|
|
|
|
|
|
|
splaceholder="请输入内容"
|
|
|
|
</el-descriptions>
|
|
|
|
></el-input>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<el-dialog
|
|
|
|
</el-col>
|
|
|
|
title="添加扫码单据类型"
|
|
|
|
</el-row>
|
|
|
|
:visible.sync="addBusDialogVisible"
|
|
|
|
|
|
|
|
width="55%"
|
|
|
|
</el-descriptions-item>
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
<el-descriptions-item>
|
|
|
|
v-if="addBusDialogVisible"
|
|
|
|
<template slot="label">
|
|
|
|
>
|
|
|
|
单据类型
|
|
|
|
|
|
|
|
</template>
|
|
|
|
<div style="float: right;margin-bottom: 10px;margin-right: 25px">
|
|
|
|
<el-checkbox v-model="configQuery.typeBus">业务单据类型</el-checkbox>
|
|
|
|
<el-button type="primary" size="small" @click="addBusType()">选入</el-button>
|
|
|
|
<el-checkbox v-model="configQuery.typeScan">扫码单据类型</el-checkbox>
|
|
|
|
</div>
|
|
|
|
<el-checkbox v-model="configQuery.typeThird">第三方单据类型</el-checkbox>
|
|
|
|
<el-table
|
|
|
|
</el-descriptions-item>
|
|
|
|
:data="busTypes"
|
|
|
|
|
|
|
|
border
|
|
|
|
<el-descriptions-item>
|
|
|
|
style="width: 100%"
|
|
|
|
<template slot="label">
|
|
|
|
@selection-change="handleCheckedChange"
|
|
|
|
基础信息
|
|
|
|
>
|
|
|
|
</template>
|
|
|
|
<el-table-column type="selection" width="55" :selectable="checkSelectable"></el-table-column>
|
|
|
|
<el-checkbox v-model="configQuery.basicProducts">耗材字典</el-checkbox>
|
|
|
|
<el-table-column label="序号" type="index"></el-table-column>
|
|
|
|
<el-checkbox v-model="configQuery.basicCorp">往来单位字典</el-checkbox>
|
|
|
|
<el-table-column
|
|
|
|
<el-checkbox v-model="configQuery.basicInv">仓库字典</el-checkbox>
|
|
|
|
label="单据类型"
|
|
|
|
<el-checkbox v-model="configQuery.basicThirdProducts">第三方产品信息</el-checkbox>
|
|
|
|
prop="name"
|
|
|
|
<el-checkbox v-model="configQuery.basicThirdCorp">第三方往来信息</el-checkbox>
|
|
|
|
show-overflow-tooltip
|
|
|
|
<el-checkbox v-model="configQuery.basicThirdInv">第三方仓库信息</el-checkbox>
|
|
|
|
></el-table-column>
|
|
|
|
<el-checkbox v-model="configQuery.basicThirdBusOrder">第三方业务单据</el-checkbox>
|
|
|
|
<el-table-column
|
|
|
|
</el-descriptions-item>
|
|
|
|
label="单据类型代码"
|
|
|
|
|
|
|
|
prop="action"
|
|
|
|
|
|
|
|
show-overflow-tooltip
|
|
|
|
<el-descriptions-item>
|
|
|
|
></el-table-column>
|
|
|
|
<template slot="label">
|
|
|
|
</el-table>
|
|
|
|
国家库DI数据
|
|
|
|
|
|
|
|
</template>
|
|
|
|
<el-pagination
|
|
|
|
<el-checkbox v-model="configQuery.dbDiProducts">DI产品信息</el-checkbox>
|
|
|
|
:page-size="busQuery.limit"
|
|
|
|
</el-descriptions-item>
|
|
|
|
@current-change="handleCurrentChange"
|
|
|
|
|
|
|
|
layout="prev, pager, next"
|
|
|
|
|
|
|
|
:total="total"
|
|
|
|
</el-descriptions>
|
|
|
|
></el-pagination>
|
|
|
|
|
|
|
|
|
|
|
|
<el-descriptions class="margin-top" title="" :column="1" :size="100" style="margin-top: 30px" border>
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
</el-card>
|
|
|
|
<el-descriptions-item label="单据(单据类型)" label-style="width: 150px">
|
|
|
|
|
|
|
|
<el-checkbox-group v-model="checkedBusTypes" @change="handleCheckedChange" >
|
|
|
|
|
|
|
|
<el-checkbox
|
|
|
|
|
|
|
|
style="padding-top: 10px"
|
|
|
|
|
|
|
|
v-for="busType in busTypes" :label="busType" :key="busType.action"
|
|
|
|
|
|
|
|
:value="busType.action">{{ busType.name }}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</el-checkbox>
|
|
|
|
|
|
|
|
</el-checkbox-group>
|
|
|
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
|
|
|
<el-descriptions-item>
|
|
|
|
|
|
|
|
<template slot="label">
|
|
|
|
|
|
|
|
单据(单据状态)
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<el-checkbox v-model="configQuery.orderUnCheck">待校验单据</el-checkbox>
|
|
|
|
|
|
|
|
<el-checkbox v-model="configQuery.orderUnReceive">未验收单据</el-checkbox>
|
|
|
|
|
|
|
|
<el-checkbox v-model="configQuery.orderScanFinish">已完成单据</el-checkbox>
|
|
|
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
|
|
|
</el-descriptions>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</el-card>
|
|
|
|
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
<script>
|
|
|
@ -95,112 +174,136 @@ import store from "@/store";
|
|
|
|
import {getBussinessType} from "@/api/basic/bussinessType";
|
|
|
|
import {getBussinessType} from "@/api/basic/bussinessType";
|
|
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
export default {
|
|
|
|
name: "SysUdimsConfig",
|
|
|
|
name: "SysUdimsConfig",
|
|
|
|
data() {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
return {
|
|
|
|
configQuery: {
|
|
|
|
configQuery: {
|
|
|
|
id: null,
|
|
|
|
id: null,
|
|
|
|
typeBus: null,
|
|
|
|
typeBus: null,
|
|
|
|
typeScan: null,
|
|
|
|
typeScan: null,
|
|
|
|
typeThird: null,
|
|
|
|
typeThird: null,
|
|
|
|
basicProducts: null,
|
|
|
|
basicProducts: null,
|
|
|
|
basicCorp: null,
|
|
|
|
basicCorp: null,
|
|
|
|
basicInv: null,
|
|
|
|
basicInv: null,
|
|
|
|
basicThirdProducts: null,
|
|
|
|
basicThirdProducts: null,
|
|
|
|
basicThirdCorp: null,
|
|
|
|
basicThirdCorp: null,
|
|
|
|
basicThirdInv: null,
|
|
|
|
basicThirdInv: null,
|
|
|
|
basicThirdBusOrder: null,
|
|
|
|
basicThirdBusOrder: null,
|
|
|
|
orderScanFinish: null,
|
|
|
|
orderScanFinish: null,
|
|
|
|
dbDiProducts: null,
|
|
|
|
dbDiProducts: null,
|
|
|
|
downstreamEnable: null,
|
|
|
|
downstreamEnable: null,
|
|
|
|
syncTime: null,
|
|
|
|
syncTime: null,
|
|
|
|
orderUnCheck: null,
|
|
|
|
orderUnCheck: null,
|
|
|
|
orderUnReceive: null,
|
|
|
|
orderUnReceive: null,
|
|
|
|
busTypes: [],
|
|
|
|
busTypes: [],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
checkedBusTypes: [],
|
|
|
|
checkedBusTypes: [],
|
|
|
|
busTypes: [],
|
|
|
|
busQuery: {
|
|
|
|
}
|
|
|
|
page: 1,
|
|
|
|
},
|
|
|
|
limit: 10,
|
|
|
|
methods: {
|
|
|
|
},
|
|
|
|
getConfig() {
|
|
|
|
busTypes: [],
|
|
|
|
findConfig()
|
|
|
|
multipleSelection: [],
|
|
|
|
.then((response) => {
|
|
|
|
addBusDialogVisible: false,
|
|
|
|
if (response.code == 20000) {
|
|
|
|
total: 0,
|
|
|
|
// debugger
|
|
|
|
}
|
|
|
|
this.configQuery = response.data;
|
|
|
|
},
|
|
|
|
if (this.configQuery.busTypes != null) {
|
|
|
|
methods: {
|
|
|
|
for (let i = 0; i < this.configQuery.busTypes.length; i++) {
|
|
|
|
getConfig() {
|
|
|
|
|
|
|
|
findConfig()
|
|
|
|
for (let k = 0; k < this.busTypes.length; k++) {
|
|
|
|
.then((response) => {
|
|
|
|
if (this.busTypes[k].action == this.configQuery.busTypes[i]) {
|
|
|
|
if (response.code == 20000) {
|
|
|
|
this.checkedBusTypes.push(this.busTypes[k]);
|
|
|
|
this.configQuery = response.data;
|
|
|
|
}
|
|
|
|
this.checkedBusTypes = [];
|
|
|
|
}
|
|
|
|
if (this.configQuery.busTypes != null) {
|
|
|
|
|
|
|
|
for (let i = 0; i < this.configQuery.busTypes.length; i++) {
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
for (let k = 0; k < this.busTypes.length; k++) {
|
|
|
|
}
|
|
|
|
if (this.busTypes[k].action == this.configQuery.busTypes[i]) {
|
|
|
|
|
|
|
|
this.checkedBusTypes.push(this.busTypes[k]);
|
|
|
|
console.log(this.checkedBusTypes);
|
|
|
|
this.busTypes[k].isSelect = true;
|
|
|
|
} else {
|
|
|
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
.catch(() => {
|
|
|
|
|
|
|
|
this.loading = false;
|
|
|
|
|
|
|
|
this.list = [];
|
|
|
|
|
|
|
|
this.total = 0;
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
saveConfig() {
|
|
|
|
|
|
|
|
if (this.checkedBusTypes != null) {
|
|
|
|
|
|
|
|
this.configQuery.busTypes = [];
|
|
|
|
|
|
|
|
for (let i = 0; i < this.checkedBusTypes.length; i++) {
|
|
|
|
|
|
|
|
this.configQuery.busTypes.push(this.checkedBusTypes[i].action);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
.catch(() => {
|
|
|
|
|
|
|
|
this.loading = false;
|
|
|
|
|
|
|
|
this.list = [];
|
|
|
|
|
|
|
|
this.total = 0;
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
saveConfig() {
|
|
|
|
|
|
|
|
if (this.checkedBusTypes != null) {
|
|
|
|
|
|
|
|
this.configQuery.busTypes = [];
|
|
|
|
|
|
|
|
for (let i = 0; i < this.checkedBusTypes.length; i++) {
|
|
|
|
|
|
|
|
this.configQuery.busTypes.push(this.checkedBusTypes[i].action);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
updateConfig(this.configQuery)
|
|
|
|
|
|
|
|
.then((response) => {
|
|
|
|
|
|
|
|
this.loading = false;
|
|
|
|
|
|
|
|
if (response.code == 20000) {
|
|
|
|
|
|
|
|
this.$message.success("更新成功!");
|
|
|
|
|
|
|
|
this.getConfig();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
.catch(() => {
|
|
|
|
|
|
|
|
this.loading = false;
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
handleCheckedChange(val) {
|
|
|
|
|
|
|
|
this.multipleSelection = val;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
getBusType() {
|
|
|
|
|
|
|
|
getBussinessType(this.busQuery)
|
|
|
|
|
|
|
|
.then((response) => {
|
|
|
|
|
|
|
|
this.busTypes = response.data.list || [];
|
|
|
|
|
|
|
|
this.total = response.data.total || 0;
|
|
|
|
|
|
|
|
this.getConfig();
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
.catch(() => {
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
updateConfig(this.configQuery)
|
|
|
|
addBusTypeDialog() {
|
|
|
|
.then((response) => {
|
|
|
|
this.addBusDialogVisible = true;
|
|
|
|
this.loading = false;
|
|
|
|
this.multipleSelection = [];
|
|
|
|
if (response.code == 20000) {
|
|
|
|
},
|
|
|
|
this.$message.success("更新成功!");
|
|
|
|
|
|
|
|
this.getConfig();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
.catch(() => {
|
|
|
|
|
|
|
|
this.loading = false;
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
handleCheckedChange() {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
getBusType() {
|
|
|
|
|
|
|
|
let query = {
|
|
|
|
|
|
|
|
enabled: true,
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
getBussinessType(query)
|
|
|
|
|
|
|
|
.then((response) => {
|
|
|
|
|
|
|
|
this.busTypes = response.data.list || [];
|
|
|
|
|
|
|
|
this.getConfig();
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
.catch(() => {
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
addBusType(){
|
|
|
|
|
|
|
|
var selectData = this.multipleSelection;
|
|
|
|
|
|
|
|
selectData.forEach((obj) => {
|
|
|
|
|
|
|
|
this.checkedBusTypes.push(obj);
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
this.addBusDialogVisible = false;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
created() {
|
|
|
|
|
|
|
|
this.headers = {
|
|
|
|
|
|
|
|
ADMIN_ID: store.getters.adminId,
|
|
|
|
|
|
|
|
ADMIN_TOKEN: store.getters.token,
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this.getBusType();
|
|
|
|
|
|
|
|
|
|
|
|
remveBus(index,row){
|
|
|
|
|
|
|
|
this.checkedBusTypes.splice(index,1);
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
checkSelectable(row) {
|
|
|
|
|
|
|
|
return !row.isSelect;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
handleCurrentChange(val) {
|
|
|
|
|
|
|
|
this.busQuery.page = val;
|
|
|
|
|
|
|
|
this.getBusType();
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
created() {
|
|
|
|
|
|
|
|
this.headers = {
|
|
|
|
|
|
|
|
ADMIN_ID: store.getters.adminId,
|
|
|
|
|
|
|
|
ADMIN_TOKEN: store.getters.token,
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this.getBusType();
|
|
|
|
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|