代码备份

prod
anthonywj 2 years ago
parent 53b2903080
commit 41f4126795

@ -0,0 +1,481 @@
<template>
<div>
<el-card style="margin-top: -20px">
<el-form :model="formData" ref="dataForm" label-width="100px">
<el-button-group style="display: flex;margin: 0px 0 10px 80%; height: 35px">
<el-button
type="primary"
@click.native="checkFinish()"
>完成审核
</el-button
>
<el-button
type="primary"
@click.native="renewAccept()"
>重新审核
</el-button
>
</el-button-group>
<el-row>
<el-col :span="18">
<el-form-item prop="fromCorp" label="单据编号:">
<el-input v-model="formData.billNo" auto-complete="off"
></el-input>
</el-form-item>
</el-col>
<el-col :span="6">
<el-button-group style="margin-left: 15px">
<el-button
type="primary"
@click.native="searchOrder()"
>查询
</el-button
>
<el-button
type="primary"
@click.native="refreshOrder()"
>重置
</el-button
>
</el-button-group>
</el-col>
</el-row>
<el-row>
<el-col :span="11">
<el-form-item prop="fromCorp" label="单据时间:">
<el-input v-model="formData.createTime" auto-complete="off"
disabled
></el-input>
</el-form-item>
</el-col>
<el-col :span="11">
<el-form-item prop="fromCorp" label="单据类型:">
<el-input v-model="formData.billTypeName" auto-complete="off"
disabled
clearable
></el-input>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="11">
<el-form-item prop="fromCorp" label="收货仓库:">
<el-input v-model="formData.invName" auto-complete="off"
disabled
></el-input>
</el-form-item>
</el-col>
<el-col :span="11">
<el-form-item prop="fromCorp" label="送货单位:">
<el-input v-model="formData.fromCorpName" auto-complete="off"
disabled
></el-input>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="20">
<el-form-item prop="code" label="扫码校验:">
<el-input
id="inputer"
placeholder="请输入UDI码"
@focus="getInputFocus($event)"
@keypress.enter.native="enterKey($event)"
ref='inputRef'
style="ime-mode:disabled"
type="tel"
v-model="udiCode"
></el-input>
</el-form-item>
</el-col>
<el-col :span="2">
<el-button
type="primary"
size="small"
@click.native.stop="addCode()"
style="height: 31px; margin-left: 20px"
>添加
</el-button
>
</el-col>
</el-row>
</el-form>
</el-card>
<el-card>
<el-table v-loading="detailLoading"
:data="detailList"
border
:row-style="rowStyle"
:cell-style="{padding:6+'px'}"
style="width: 100%">
<el-table-column type="index" label="序号" width="50"></el-table-column>
<el-table-column label="物资名称" width="160" prop="coName"></el-table-column>
<el-table-column label="规格型号" width="160" prop="spec"></el-table-column>
<el-table-column label="批次号" width="100" prop="batchNo"></el-table-column>
<el-table-column label="单据数量" width="100" prop="count"></el-table-column>
<el-table-column label="审核数量" width="100" prop="acceptCount"></el-table-column>
<el-table-column label="生产日期" width="120" prop="productDate"></el-table-column>
<el-table-column label="失效日期" width="120" prop="expireDate"></el-table-column>
<el-table-column label="价格" width="120" prop="price"></el-table-column>
<el-table-column width="100" label="计量单位" prop="measname">
</el-table-column>
<el-table-column label="注册/备案号" width="150" prop="certCode"></el-table-column>
<el-table-column label="销售清单号(第二票)" width="180" prop="secSalesListNo">
</el-table-column>
<el-table-column label="销售发票号(第一票)" width="180" prop="firstSalesInvNo">
</el-table-column>
<el-table-column label="销售发票号(第二票)" width="180" prop="secSalesInvNo">
</el-table-column>
<el-table-column label="发票日期" width="150" prop="invoiceDate">
</el-table-column>
</el-table>
</el-card>
</div>
</template>
<script>
import A from "../../plugins/KeyScaner"
import {updateStatus, enterCodeWeb, thirdUpdateStatus} from "@/api/inout/order";
import {getAcceptOrder, acceptClear, acceptAddCode, getAcceptStatus} from "@/api/inout/acceptOrder";
export default {
name: "acceptOrder",
props: {
closeDialog: {
type: Function,
required: true,
},
orderQuery: {
type: Object,
required: true,
},
reviewType: {
type: Object,
required: true,
}
},
data() {
return {
formData: {},
loading: false,
detailLoading: false,
udiCode: null,
sictomText: "",
originCode: "",
checkSuccess: false,
detailList: [],
query: {
code: "",
corpOrderId: "",
page: 1,
limit: 10,
},
}
},
components: {},
methods: {
rowStyle({row, rowIndex}) {
let rowBackground = {};
if (row.reCount != row.acceptCount) {
rowBackground.color = '#f60303';
}
return rowBackground;
},
handleCurrentChange(val) {
this.query.page = val;
this.getCodeList();
},
enterKey(event) {
this.checkSuccess = true;
let tQuery = {
originCode: this.originCode,
code: this.udiCode.trim(),
}
enterCodeWeb(tQuery).then((response) => {
if (response.code === 20000) {
this.$refs.inputRef.focus();
this.$refs.inputRef.select();
this.udiCode = response.data;
this.addCode();
} else {
if (response.code == 502) {
this.checkSuccess = false;
this.udiCode = response.data;
this.originCode = this.udiCode;
} else if (response.code == 501) {
this.checkSuccess = false;
this.$message.error(response.message);
} else if (response.code == 503) {
this.checkSuccess = false;
this.udiCode = response.data;
this.$confirm(response.message, "提示", {
type: "warning",
})
.then(() => {
this.udiCode = response.data;
this.addCode();
})
.catch(() => {
this.udiCode = this.originCode;
});
} else if (response.code == 508) {
this.originCode = "";
this.udiCode = "01" + response.data.nameCode;
this.originCode = this.udiCode;
} else {
this.$alert(response.message, '提示', {
confirmButtonText: '确定',
type: 'warning',
closeOnClickModal: true,
callback: action => {
this.$refs.inputRef.focus();
this.$refs.inputRef.select();
}
});
}
}
this.loading = false;
});
},
addCode() {
if (this.$isBlank(this.udiCode)) {
this.$message.error("UDI码不能为空");
}
let postQuery = {
billNo: this.orderQuery.billNo,
orderDetailEntities: this.detailList,
code: this.udiCode,
}
acceptAddCode(postQuery)
.then((response) => {
if (response.code == 20000) {
this.detailLoading = false;
this.detailList = response.data.orderDetailEntities || [];
if (response.data.finishAccept) {
this.$confirm("审核结果正确,是否立即完成审核?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
})
.then(() => {
this.postAccept();
})
.catch(() => {
});
} else {
this.$message.success("匹配成功!");
}
} else {
this.$message.error(response.message);
}
})
.catch(() => {
this.detailLoading = false;
});
},
getInputFocus(event) {
event.currentTarget.select();
},
checkFinish() {
let query = {
orderId: this.orderQuery.billNo,
};
getAcceptStatus(query)
.then((response) => {
if (response.code == 20000) {
let tip = "审核结果正确,是否立即完成审核?";
this.finishAccept(tip);
} else {
let tip = "审核未完成,是否强制完成审核此单据?";
this.finishAccept(tip);
}
})
.catch(() => {
});
},
finishAccept(tip) {
this.$confirm(tip, '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
this.postAccept();
}).catch(() => {
// this.$message.info('退');
});
},
postAccept() {
let query = {
orderId: this.orderQuery.billNo,
};
if (this.reviewType != null && this.reviewType == 2) {
thirdUpdateStatus(query)
.then((response) => {
if (response.code == 20000) {
this.$message.success("核对成功!");
this.closeDialog();
this.$emit('childByValue', 1)
} else {
this.$message.error(response.message);
}
})
.catch(() => {
});
} else {
updateStatus(query)
.then((response) => {
if (response.code == 20000) {
this.$message.success("审核成功!");
this.closeDialog();
this.$emit('childByValue', 1)
} else {
this.$message.error(response.message);
}
})
.catch(() => {
});
}
},
renewAccept() {
let query = {
billNo: this.orderQuery.billNo,
}
acceptClear(query)
.then((response) => {
this.detailLoading = false;
this.detailList = response.data.orderDetailEntities || [];
})
.catch(() => {
this.detailLoading = false;
this.detailList = [];
});
},
getOrderDetail() {
this.detailLoading = true;
let query = {
billNo: this.orderQuery.billNo,
}
getAcceptOrder(query)
.then((response) => {
this.detailLoading = false;
this.detailList = response.data.orderDetailEntities || [];
if (response.data.exitAccept) {
this.$confirm("检测到上一次验收操作未完成, 是否继续上一次验收?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
})
.then(() => {
})
.catch(() => {
this.renewAccept();
});
}
})
.catch(() => {
this.detailLoading = false;
this.detailList = [];
});
}
},
mounted() {
document.body.ondrop = function (event) {
event.preventDefault();
event.stopPropagation();
};
var that = this;
var inputer = document.getElementById("inputer");
window.sc = new A.KeyScaner(inputer);//DOM
sc.onInput = function (text) {
if (text.includes("delete")) {
that.vailQuery.code = "";
return;
}
if (that.sitcomScan) {
let tempTxt = text;
let str = tempTxt.replace(/[\r]/g, "");
that.sictomText = that.sictomText + str;
that.vailQuery.code = that.sictomText;
} else {
that.vailQuery.code = text;
}
};
inputer.focus();
},
created() {
// this.formData = this.orderQuery;
// this.getOrderDetail()
},
}
</script>
<style scoped>
#inputer {
width: 100%;
min-height: 30px;
background-color: white;
border: #d0d0d0;
border-style: solid;
border-width: 0.1px;
color: #4a4a4a;
}
#inputer:focus {
width: 100%;
min-height: 30px;
background-color: white;
border: #0080FF;
border-style: solid;
border-width: 0.1px;
color: #4a4a4a;
}
</style>

@ -51,7 +51,6 @@
</el-form-item> </el-form-item>
</el-col> </el-col>
</el-row> </el-row>
<el-row> <el-row>
<el-col :span="6"> <el-col :span="6">
<el-form-item class="query-form-item" label="创建时间:"> <el-form-item class="query-form-item" label="创建时间:">
@ -84,6 +83,10 @@
>查询 >查询
</el-button </el-button
> >
<el-button type="primary" icon="el-icon-search" @click="newReview"
>新增单据审核
</el-button
>
</el-button-group> </el-button-group>
</div> </div>
<el-divider style="margin: 15px"></el-divider> <el-divider style="margin: 15px"></el-divider>
@ -421,7 +424,7 @@
</el-tabs> </el-tabs>
<el-dialog <el-dialog
title="单据验收" title="单据审核"
:visible.sync="acceptOrderVisible" :visible.sync="acceptOrderVisible"
width="80%" width="80%"
:close-on-click-modal="false" :close-on-click-modal="false"
@ -435,6 +438,20 @@
></accept-order> ></accept-order>
</el-dialog> </el-dialog>
<el-dialog
title="新增单据审核"
:visible.sync="newAcceptOrderVisible"
width="80%"
:close-on-click-modal="false"
:close-on-press-escape="false"
v-if="newAcceptOrderVisible"
>
<NewAcceptOrder
:closeDialog="closeAcceptDialog"
v-on:childByValue="parentByFn"
></NewAcceptOrder>
</el-dialog>
</div> </div>
</template> </template>
@ -451,6 +468,7 @@ import {getBizDetailList} from "@/api/inout/orderDetailBiz";
import {getCodeDetailList} from "@/api/inout/orderDetailCode"; import {getCodeDetailList} from "@/api/inout/orderDetailCode";
import {getCodeList} from "@/api/inout/code"; import {getCodeList} from "@/api/inout/code";
import AcceptOrder from "@/views/inout/DialogReviewOrder"; import AcceptOrder from "@/views/inout/DialogReviewOrder";
import NewAcceptOrder from "@/views/inout/DialogNewReviewOrder";
import {inspectionOrderPDFFromTemplateFile, orderPDFFromTemplateFile} from "@/api/itextpdf/orderPrint" import {inspectionOrderPDFFromTemplateFile, orderPDFFromTemplateFile} from "@/api/itextpdf/orderPrint"
@ -585,9 +603,10 @@ export default {
resultDetailList: [], resultDetailList: [],
acceptQuery: null, acceptQuery: null,
acceptOrderVisible: false, acceptOrderVisible: false,
newAcceptOrderVisible: false,
}; };
}, },
components: {AcceptOrder}, components: {AcceptOrder, NewAcceptOrder},
methods: { methods: {
onReset() { onReset() {
this.$router.push({ this.$router.push({
@ -907,6 +926,11 @@ export default {
this.acceptOrderVisible = true; this.acceptOrderVisible = true;
}, },
newReview() {
this.newAcceptOrderVisible = true;
},
parentByFn: function (childValue) { parentByFn: function (childValue) {
this.getList(); this.getList();
}, },

@ -63,10 +63,7 @@
<el-col :span="10"> <el-col :span="10">
<el-form-item class="query-form-item" label="是否开启产品过期预警"> <el-form-item class="query-form-item" label="是否开启产品过期预警">
<el-select v-model="setData.expireDate"> 1
<el-option :value="true" label="开启"></el-option>
<el-option :value="false" label="关闭"></el-option>
</el-select>
</el-form-item> </el-form-item>
</el-col> </el-col>
</el-row> </el-row>

@ -1,82 +1,70 @@
<template> <template>
<el-card> <el-card>
<el-collapse v-model="activeNames" @change="handleChange">
<el-collapse-item title="数据同步设置" name="1"> <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 type="primary" size="small" @click="saveConfig()"></el-button>
>保存</el-button
>
</template> </template>
<el-descriptions-item> <el-descriptions-item>
<template slot="label"> 同步服务 </template> <template slot="label">
同步服务
</template>
<el-row :gutter="20" class="el-row" type="flex"> <el-row :gutter="20" class="el-row" type="flex">
<el-col :span="6" class="el-col"> <el-col :span="6" class="el-col">
<el-switch <el-switch
v-model="configQuery.downstreamEnable" v-model="configQuery.downstreamEnable"
active-text="是否启用数据同步" active-text="是否启用数据同步">
>
</el-switch> </el-switch>
</el-col> </el-col>
<el-col :span="14" class="el-col"> <el-col :span="14" class="el-col">
<div> <div>
<span style="color: red" <span style="color: red;">说明:&nbsp;修改同步参数时,请关闭数据同步服务 </span>
>说明:&nbsp;修改同步参数时,请关闭数据同步服务
</span>
</div> </div>
</el-col> </el-col>
</el-row> </el-row>
</el-descriptions-item> </el-descriptions-item>
<el-descriptions-item> <el-descriptions-item>
<template slot="label"> 地址设置 </template> <template slot="label">
地址设置
</template>
<el-row :gutter="20" class="el-row" type="flex"> <el-row :gutter="20" class="el-row" type="flex">
<el-col :span="20" class="el-col"> <el-col :span="20" class="el-col">
<div> <div>
<span>服务地址:&nbsp;</span> <span>服务地址:&nbsp;</span>
<el-input <el-input
style="width: 50%" style="width: 50%"
size="small" size="small"
v-model="configQuery.syncIp" v-model="configQuery.syncIp" :disabled="configQuery.downstreamEnable"
:disabled="configQuery.downstreamEnable"
splaceholder="请输入内容" splaceholder="请输入内容"
></el-input> ></el-input>
<el-button <el-button type="primary" size="small" @click="testConnect()" style="margin-left: 20px;"
type="primary"
size="small"
@click="testConnect()"
style="margin-left: 20px"
:disabled="configQuery.downstreamEnable" :disabled="configQuery.downstreamEnable"
:loading="testLoading" :loading="testLoading">测试连通
>测试连通
</el-button> </el-button>
</div> </div>
</el-col> </el-col>
</el-row> </el-row>
</el-descriptions-item> </el-descriptions-item>
</el-descriptions> </el-descriptions>
</el-collapse-item> <el-descriptions class="margin-top" title="上传至UDI自助平台基础数据" :column="1" :size="100"
<el-collapse-item title="上传至UDI自助平台基础数据" name="2">
<el-descriptions
class="margin-top"
title="上传至UDI自助平台基础数据"
:column="1"
:size="100"
style="margin-top: 40px" style="margin-top: 40px"
border border>
>
<el-descriptions-item> <el-descriptions-item>
<template slot="label"> 参数设置 </template> <template slot="label">
参数设置
</template>
<el-row :gutter="20" class="el-row" type="flex"> <el-row :gutter="20" class="el-row" type="flex">
<el-col :span="20" class="el-col"> <el-col :span="20" class="el-col">
<div> <div>
<span>数据上传时间间隔(单位:分钟):&nbsp;</span> <span>数据上传时间间隔(单位:分钟):&nbsp;</span>
@ -84,191 +72,119 @@
style="width: 100px" style="width: 100px"
size="small" size="small"
type="number" type="number"
v-model="configQuery.syncTime" v-model="configQuery.syncTime" :disabled="configQuery.downstreamEnable"
:disabled="configQuery.downstreamEnable"
splaceholder="请输入内容" splaceholder="请输入内容"
></el-input> ></el-input>
<span style="margin-left: 30px" <span style="margin-left: 30px;">延时上传(单位:分钟):&nbsp;</span>
>延时上传(单位:分钟):&nbsp;</span
>
<el-input <el-input
style="width: 100px" style="width: 100px"
size="small" size="small"
type="number" type="number"
v-model="configQuery.delaySyncTime" v-model="configQuery.delaySyncTime" :disabled="configQuery.downstreamEnable"
:disabled="configQuery.downstreamEnable"
splaceholder="请输入内容" splaceholder="请输入内容"
></el-input> ></el-input>
<span style="margin-left: 30px" <span style="margin-left: 30px;">数据下载时间间隔(单位:分钟):&nbsp;</span>
>数据下载时间间隔(单位:分钟):&nbsp;</span
>
<el-input <el-input
style="width: 100px" style="width: 100px"
size="small" size="small"
type="number" type="number"
v-model="configQuery.syncDownloadTime" v-model="configQuery.syncDownloadTime" :disabled="configQuery.downstreamEnable"
:disabled="configQuery.downstreamEnable"
splaceholder="请输入内容" splaceholder="请输入内容"
></el-input> ></el-input>
</div> </div>
</el-col> </el-col>
</el-row> </el-row>
</el-descriptions-item>
<!-- <el-descriptions-item>-->
<!-- <template slot="label">-->
<!-- 运行参数-->
<!-- </template>-->
<!-- <el-checkbox v-model="configQuery.entrustAction" :disabled="configQuery.downstreamEnable">-->
<!-- </el-checkbox>-->
<!-- </el-descriptions-item>-->
<el-descriptions-item>
<template slot="label"> 单据类型 </template>
<!-- <el-checkbox v-model="configQuery.typeBus" :disabled="configQuery.downstreamEnable"></el-checkbox>
<el-checkbox v-model="configQuery.typeScan" :disabled="configQuery.downstreamEnable"></el-checkbox>
<el-checkbox v-model="configQuery.typeThird" :disabled="configQuery.downstreamEnable"></el-checkbox> -->
<el-form
:inline="true"
:model="configQuery"
:label-position="labelPosition"
>
<el-form-item label="业务单据类型">
<el-select v-model="configQuery.typeBus" placeholder="请选择">
<el-option label="完成同步" value="0"></el-option>
<el-option label="由内到外" value="1"></el-option>
<el-option label="由外到内" value="2"></el-option>
</el-select> </el-form-item
><el-form-item label="扫码单据类型">
<el-select v-model="configQuery.typeScan" placeholder="请选择">
<el-option label="完成同步" value="0"></el-option>
<el-option label="由内到外" value="1"></el-option>
<el-option label="由外到内" value="2"></el-option>
</el-select> </el-form-item
><el-form-item label="第三方单据类型">
<el-select v-model="configQuery.typeThird" placeholder="请选择">
<el-option label="完成同步" value="0"></el-option>
<el-option label="由内到外" value="1"></el-option>
<el-option label="由外到内" value="2"></el-option>
</el-select>
</el-form-item>
</el-form>
</el-descriptions-item> </el-descriptions-item>
<el-descriptions-item> <el-descriptions-item>
<template slot="label"> 基础信息 </template> <template slot="label">
<!-- <el-checkbox v-model="configQuery.basicProducts" :disabled="configQuery.downstreamEnable">--> 系统设置信息
<!-- </el-checkbox>--> </template>
<!-- <el-checkbox v-model="configQuery.basicCorp" :disabled="configQuery.downstreamEnable">--> <el-select v-model="configQuery.systemConfig" placeholder="系统运行参数" clearable>
<!-- </el-checkbox>--> <el-option :value="0" label="不同步"></el-option>
<el-option :value="1" label="由内向外"></el-option>
<!-- <el-checkbox v-model="configQuery.basicDept" :disabled="configQuery.downstreamEnable" >部门信息</el-checkbox > <el-option :value="2" label="由外向内"></el-option>
<el-checkbox v-model="configQuery.basicInv" :disabled="configQuery.downstreamEnable" >仓库字典</el-checkbox >
<el-checkbox v-model="configQuery.sysUser" :disabled="configQuery.downstreamEnable" >用户信息</el-checkbox > -->
<el-form :inline="true" :model="configQuery">
<el-form-item label="部门信息">
<el-select v-model="configQuery.basicDept" placeholder="请选择">
<el-option label="完成同步" value="0"></el-option>
<el-option label="由内到外" value="1"></el-option>
<el-option label="由外到内" value="2"></el-option>
</el-select> </el-form-item
><el-form-item label="仓库字典">
<el-select v-model="configQuery.basicInv" placeholder="请选择">
<el-option label="完成同步" value="0"></el-option>
<el-option label="由内到外" value="1"></el-option>
<el-option label="由外到内" value="2"></el-option>
</el-select> </el-form-item
><el-form-item label="用户信息">
<el-select v-model="configQuery.sysUser" placeholder="请选择">
<el-option label="完成同步" value="0"></el-option>
<el-option label="由内到外" value="1"></el-option>
<el-option label="由外到内" value="2"></el-option>
</el-select> </el-select>
</el-form-item>
</el-form> <el-checkbox v-model="configQuery.systemConfig" :disabled="configQuery.downstreamEnable">
</el-checkbox>
<el-checkbox v-model="configQuery.entrustAction" :disabled="configQuery.downstreamEnable">
</el-checkbox>
<el-checkbox v-model="configQuery.printConfig" :disabled="configQuery.downstreamEnable">
</el-checkbox>
<el-checkbox v-model="configQuery.scanChangeConfig" :disabled="configQuery.downstreamEnable">
</el-checkbox>
<el-checkbox v-model="configQuery.busChangeConfig" :disabled="configQuery.downstreamEnable">
</el-checkbox>
</el-descriptions-item> </el-descriptions-item>
<el-descriptions-item> <el-descriptions-item>
<template slot="label"> 第三方基础信息 </template> <template slot="label">
<!-- <el-checkbox v-model="configQuery.basicThirdProducts" :disabled="configQuery.downstreamEnable" >第三方产品信息 </el-checkbox> 单据类型
<el-checkbox v-model="configQuery.basicThirdCorp" :disabled="configQuery.downstreamEnable" >第三方往来信息 </el-checkbox> </template>
<el-checkbox v-model="configQuery.basicThirdInv" :disabled="configQuery.downstreamEnable" >第三方仓库信息 </el-checkbox> <el-checkbox v-model="configQuery.typeBus" :disabled="configQuery.downstreamEnable"></el-checkbox>
<el-checkbox v-model="configQuery.basicThirdBusOrder" :disabled="configQuery.downstreamEnable" >第三方业务单据 </el-checkbox> --> <el-checkbox v-model="configQuery.typeScan" :disabled="configQuery.downstreamEnable"></el-checkbox>
<el-form :inline="true" :model="configQuery"> <el-checkbox v-model="configQuery.typeThird" :disabled="configQuery.downstreamEnable">
<el-form-item label="第三方产品信息"> </el-checkbox>
<el-select
v-model="configQuery.basicThirdProducts"
placeholder="请选择"
>
<el-option label="完成同步" value="0"></el-option>
<el-option label="由内到外" value="1"></el-option>
<el-option label="由外到内" value="2"></el-option>
</el-select> </el-form-item
><el-form-item label="第三方往来信息">
<el-select
v-model="configQuery.basicThirdCorp"
placeholder="请选择"
>
<el-option label="完成同步" value="0"></el-option>
<el-option label="由内到外" value="1"></el-option>
<el-option label="由外到内" value="2"></el-option>
</el-select> </el-form-item
><el-form-item label="第三方仓库信息">
<el-select
v-model="configQuery.basicThirdInv"
placeholder="请选择"
>
<el-option label="完成同步" value="0"></el-option>
<el-option label="由内到外" value="1"></el-option>
<el-option label="由外到内" value="2"></el-option>
</el-select>
</el-form-item>
<el-form-item label="第三方业务单据">
<el-select
v-model="configQuery.basicThirdBusOrder"
placeholder="请选择"
>
<el-option label="完成同步" value="0"></el-option>
<el-option label="由内到外" value="1"></el-option>
<el-option label="由外到内" value="2"></el-option>
</el-select> </el-form-item
>,
</el-form>
</el-descriptions-item> </el-descriptions-item>
<!-- <el-descriptions-item> <el-descriptions-item>
<template slot="label"> <template slot="label">
国家库DI数据 用户信息
</template> </template>
<el-checkbox v-model="configQuery.dbDiProducts">DI</el-checkbox> <el-checkbox v-model="configQuery.basicDept" :disabled="configQuery.downstreamEnable"></el-checkbox>
<el-checkbox v-model="configQuery.basicInv" :disabled="configQuery.downstreamEnable"></el-checkbox>
<el-checkbox v-model="configQuery.sysUser" :disabled="configQuery.downstreamEnable"></el-checkbox>
</el-descriptions-item> </el-descriptions-item>
<el-descriptions-item> <el-descriptions-item>
<template slot="label"> <template slot="label">
首营资质证书 基础数据
</template> </template>
<el-checkbox v-model="configQuery.companyCert" :disabled="configQuery.downstreamEnable"> <el-checkbox v-model="configQuery.basicProducts" :disabled="configQuery.downstreamEnable">
</el-checkbox> </el-checkbox>
<el-checkbox v-model="configQuery.manufacturerCert" :disabled="configQuery.downstreamEnable"> <el-checkbox v-model="configQuery.basicCorp" :disabled="configQuery.downstreamEnable">
</el-checkbox> </el-checkbox>
<el-checkbox v-model="configQuery.productCert" :disabled="configQuery.downstreamEnable"> <el-checkbox v-model="configQuery.supCert" :disabled="configQuery.downstreamEnable">
</el-checkbox> </el-checkbox>
</el-descriptions-item> --> </el-descriptions-item>
<el-descriptions-item>
<template slot="label">
第三方基础信息
</template>
<el-checkbox v-model="configQuery.basicThirdProducts" :disabled="configQuery.downstreamEnable">
</el-checkbox>
<el-checkbox v-model="configQuery.basicThirdCorp" :disabled="configQuery.downstreamEnable">
</el-checkbox>
<el-checkbox v-model="configQuery.basicThirdInv" :disabled="configQuery.downstreamEnable">
</el-checkbox>
<el-checkbox v-model="configQuery.basicThirdBusOrder" :disabled="configQuery.downstreamEnable">
</el-checkbox>
</el-descriptions-item>
<el-descriptions-item>
<template slot="label">
国家库DI数据
</template>
<el-checkbox v-model="configQuery.dbDiProducts">DI</el-checkbox>
<el-checkbox v-model="configQuery.dbDiProducts"></el-checkbox>
</el-descriptions-item>
</el-descriptions> </el-descriptions>
</el-collapse-item>
<el-collapse-item title="上传至UDI自助平台扫码单据" name="3"> <el-descriptions class="margin-top" title="UDI自助平台同步至UDI管理系统扫码单据" :column="1" :size="100"
<el-descriptions
class="margin-top"
title="上传至UDI自助平台扫码单据"
:column="1"
:size="100"
style="margin-top: 40px" style="margin-top: 40px"
border border>
>
<el-descriptions-item> <el-descriptions-item>
<template slot="label"> 参数设置 </template> <template slot="label">
参数设置
</template>
<el-row :gutter="20" class="el-row" type="flex"> <el-row :gutter="20" class="el-row" type="flex">
<el-col :span="20" class="el-col"> <el-col :span="20" class="el-col">
<div> <div>
<span>单据上传时间间隔(单位:分钟):&nbsp;</span> <span>单据上传时间间隔(单位:分钟):&nbsp;</span>
@ -276,143 +192,200 @@
style="width: 100px" style="width: 100px"
size="small" size="small"
type="number" type="number"
v-model="configQuery.orderSyncTime" v-model="configQuery.orderToInSyncTime" :disabled="configQuery.downstreamEnable"
splaceholder="请输入内容"
></el-input>
</div>
</el-col>
</el-row>
</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"
:disabled="configQuery.downstreamEnable" :disabled="configQuery.downstreamEnable"
@click="addToInBusTypeDialog()">添加扫码单据类型
</el-button>
</div>
<el-table :data="checkedToInBusTypes" 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 width="250" label="单据状态">
<template slot-scope="scope">
<el-select v-model="scope.row.orderStatus" placeholder="请选择单据状态">
<el-option label="待校验" :value=3>待校验</el-option>
<el-option label="待核对" :value=5>待核对</el-option>
<el-option label="待审核" :value=10>待审核</el-option>
<el-option label="已审核" :value=7>已审核</el-option>
</el-select>
</template>
</el-table-column>
<el-table-column label="操作" fixed="right">
<template slot-scope="scope">
<el-button type="text" size="small" :disabled="configQuery.downstreamEnable"
@click.native="removeToInBus(scope.$index, scope.row)">移除
</el-button>
</template>
</el-table-column>
</el-table>
</el-descriptions-item>
</el-descriptions>
<el-descriptions class="margin-top" title="UDI管理系统同步至UDI自助平台扫码单据" :column="1" :size="100"
style="margin-top: 40px"
border>
<el-descriptions-item>
<template slot="label">
参数设置
</template>
<el-row :gutter="20" class="el-row" type="flex">
<el-col :span="20" class="el-col">
<div>
<span>单据上传时间间隔(单位:分钟):&nbsp;</span>
<el-input
style="width: 100px"
size="small"
type="number"
v-model="configQuery.orderSyncTime" :disabled="configQuery.downstreamEnable"
splaceholder="请输入内容" splaceholder="请输入内容"
></el-input> ></el-input>
<span style="margin-left: 30px" <span style="margin-left: 30px;">单据下载时间间隔(单位:分钟):&nbsp;</span>
>单据下载时间间隔(单位:分钟):&nbsp;</span
>
<el-input <el-input
style="width: 100px" style="width: 100px"
size="small" size="small"
type="number" type="number"
v-model="configQuery.orderSyncDlTime" v-model="configQuery.orderSyncDlTime" :disabled="configQuery.downstreamEnable"
:disabled="configQuery.downstreamEnable"
splaceholder="请输入内容" splaceholder="请输入内容"
></el-input> ></el-input>
</div> </div>
</el-col> </el-col>
</el-row> </el-row>
</el-descriptions-item> </el-descriptions-item>
<el-descriptions-item <el-descriptions-item label="单据(单据类型)" label-style="width: 150px">
label="单据(单据类型)"
label-style="width: 150px" <div style="float: right;margin-bottom: 10px;margin-right: 25px">
> <el-button type="primary" size="small"
<div style="float: right; margin-bottom: 10px; margin-right: 25px">
<el-button
type="primary"
size="small"
:disabled="configQuery.downstreamEnable" :disabled="configQuery.downstreamEnable"
@click="addBusTypeDialog()" @click="addBusTypeDialog()">添加扫码单据类型
>添加扫码单据类型
</el-button> </el-button>
</div> </div>
<el-table :data="checkedBusTypes" border style="width: 100%"> <el-table :data="checkedBusTypes" border style="width: 100%">
<el-table-column label="序号" type="index"></el-table-column> <el-table-column label="序号" type="index"></el-table-column>
<el-table-column <el-table-column label="单据类型" prop="name" show-overflow-tooltip></el-table-column>
label="单据类型" <el-table-column label="单据类型代码" prop="action" show-overflow-tooltip></el-table-column>
prop="name"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="单据类型代码"
prop="action"
show-overflow-tooltip
></el-table-column>
<el-table-column width="250" label="单据状态"> <el-table-column width="250" label="单据状态">
<template slot-scope="scope"> <template slot-scope="scope">
<el-select <el-select v-model="scope.row.orderStatus" placeholder="请选择单据状态">
v-model="scope.row.orderStatus" <el-option label="待校验" :value=3>待校验</el-option>
placeholder="请选择单据状态" <el-option label="待核对" :value=5>待核对</el-option>
> <el-option label="待审核" :value=10>待审核</el-option>
<el-option label="待校验" :value="3">待校验</el-option> <el-option label="已审核" :value=7>已审核</el-option>
<el-option label="待核对" :value="5">待核对</el-option>
<el-option label="待审核" :value="10">待审核</el-option>
<el-option label="已审核" :value="7">已审核</el-option>
</el-select> </el-select>
</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" size="small" :disabled="configQuery.downstreamEnable"
type="text" @click.native="remveBus(scope.$index, scope.row)">移除
size="small"
:disabled="configQuery.downstreamEnable"
@click.native="remveBus(scope.$index, scope.row)"
>移除
</el-button> </el-button>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
</el-descriptions-item> </el-descriptions-item>
</el-descriptions> </el-descriptions>
</el-collapse-item>
<el-descriptions class="margin-top" title="UDI管理系统同步至UDI自助平台业务单据" :column="1" :size="100"
<el-collapse-item title="上传至UDI自助平台业务单据" name="4">
<el-descriptions
class="margin-top"
title="上传至UDI自助平台业务单据"
:column="1"
:size="100"
style="margin-top: 40px" style="margin-top: 40px"
border border>
> <el-descriptions-item label="单据(单据类型)" label-style="width: 150px">
<el-descriptions-item
label="单据(单据类型)" <div style="float: right;margin-bottom: 10px;margin-right: 25px">
label-style="width: 150px" <el-button type="primary" size="small"
>
<div style="float: right; margin-bottom: 10px; margin-right: 25px">
<el-button
type="primary"
size="small"
:disabled="configQuery.downstreamEnable" :disabled="configQuery.downstreamEnable"
@click="addChangeBusTypeDialog()" @click="addChangeBusTypeDialog()">添加业务单据类型
>添加业务单据类型
</el-button> </el-button>
</div> </div>
<el-table :data="checkedChangeBusTypes" border style="width: 100%"> <el-table :data="checkedChangeBusTypes" border style="width: 100%">
<el-table-column label="序号" type="index"></el-table-column> <el-table-column label="序号" type="index"></el-table-column>
<el-table-column <el-table-column label="单据类型" prop="name" show-overflow-tooltip></el-table-column>
label="单据类型" <el-table-column label="单据类型代码" prop="action" show-overflow-tooltip></el-table-column>
prop="name"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="单据类型代码"
prop="action"
show-overflow-tooltip
></el-table-column>
<el-table-column width="250" label="单据状态"> <el-table-column width="250" label="单据状态">
<template slot-scope="scope"> <template slot-scope="scope">
<el-select <el-select v-model="scope.row.orderStatus" placeholder="请选择单据状态">
v-model="scope.row.orderStatus" <el-option label="待校验" :value=1>草稿</el-option>
placeholder="请选择单据状态" <el-option label="待核对" :value=2>未审核</el-option>
> <el-option label="待审核" :value=3>已审核</el-option>
<el-option label="待校验" :value="1">草稿</el-option>
<el-option label="待核对" :value="2">未审核</el-option>
<el-option label="待审核" :value="3">已审核</el-option>
</el-select> </el-select>
</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" size="small" :disabled="configQuery.downstreamEnable"
type="text" @click.native="removeChangeBus(scope.$index, scope.row)">移除
size="small"
:disabled="configQuery.downstreamEnable"
@click.native="removeChangeBus(scope.$index, scope.row)"
>移除
</el-button> </el-button>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
</el-descriptions-item> </el-descriptions-item>
</el-descriptions> </el-descriptions>
</el-collapse-item>
<el-dialog
title="添加扫码单据类型"
:visible.sync="addBusToInDialogVisible"
width="55%"
:close-on-click-modal="false"
:close-on-press-escape="false"
v-if="addBusToInDialogVisible"
>
<div style="float: right;margin-bottom: 10px;margin-right: 25px">
<el-button type="primary" size="small" @click="addToInBusType()"></el-button>
</div>
<el-table
:data="busTypes"
border
style="width: 100%"
@selection-change="handleToInCheckedChange"
>
<el-table-column type="selection" width="55" :selectable="checkSelectable"></el-table-column>
<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>
<el-pagination
:page-size="busQuery.limit"
@current-change="handleCurrentChange"
layout="prev, pager, next"
:total="total"
:current-page="busQuery.page"
></el-pagination>
</el-dialog>
<el-dialog <el-dialog
title="添加扫码单据类型" title="添加扫码单据类型"
:visible.sync="addBusDialogVisible" :visible.sync="addBusDialogVisible"
@ -421,10 +394,9 @@
:close-on-press-escape="false" :close-on-press-escape="false"
v-if="addBusDialogVisible" v-if="addBusDialogVisible"
> >
<div style="float: right; margin-bottom: 10px; margin-right: 25px">
<el-button type="primary" size="small" @click="addBusType()" <div style="float: right;margin-bottom: 10px;margin-right: 25px">
>选入</el-button <el-button type="primary" size="small" @click="addBusType()"></el-button>
>
</div> </div>
<el-table <el-table
:data="busTypes" :data="busTypes"
@ -432,11 +404,7 @@
style="width: 100%" style="width: 100%"
@selection-change="handleCheckedChange" @selection-change="handleCheckedChange"
> >
<el-table-column <el-table-column type="selection" width="55" :selectable="checkSelectable"></el-table-column>
type="selection"
width="55"
:selectable="checkSelectable"
></el-table-column>
<el-table-column label="序号" type="index"></el-table-column> <el-table-column label="序号" type="index"></el-table-column>
<el-table-column <el-table-column
label="单据类型" label="单据类型"
@ -457,6 +425,7 @@
:total="total" :total="total"
:current-page="busQuery.page" :current-page="busQuery.page"
></el-pagination> ></el-pagination>
</el-dialog> </el-dialog>
<el-dialog <el-dialog
@ -467,10 +436,9 @@
:close-on-press-escape="false" :close-on-press-escape="false"
v-if="addChangeBusDialogVisible" v-if="addChangeBusDialogVisible"
> >
<div style="float: right; margin-bottom: 10px; margin-right: 25px">
<el-button type="primary" size="small" @click="addChangeBusType()" <div style="float: right;margin-bottom: 10px;margin-right: 25px">
>选入</el-button <el-button type="primary" size="small" @click="addChangeBusType()"></el-button>
>
</div> </div>
<el-table <el-table
:data="changeBusTypes" :data="changeBusTypes"
@ -478,11 +446,7 @@
style="width: 100%" style="width: 100%"
@selection-change="handleCheckedChangeBus" @selection-change="handleCheckedChangeBus"
> >
<el-table-column <el-table-column type="selection" width="55" :selectable="checkSelectableChange"></el-table-column>
type="selection"
width="55"
:selectable="checkSelectableChange"
></el-table-column>
<el-table-column label="序号" type="index"></el-table-column> <el-table-column label="序号" type="index"></el-table-column>
<el-table-column <el-table-column
label="单据类型" label="单据类型"
@ -503,27 +467,21 @@
:total="changeBusTypeTotal" :total="changeBusTypeTotal"
:current-page="changeBusQuery.page" :current-page="changeBusQuery.page"
></el-pagination> ></el-pagination>
</el-dialog> </el-dialog>
</el-collapse>
</el-card> </el-card>
</template> </template>
<script> <script>
import { import {findConfig, testConnect, updateConfig} from "@/api/sync/spsSyncStatus";
findConfig,
testConnect,
updateConfig,
} from "@/api/sync/spsSyncStatus";
import store from "@/store"; import store from "@/store";
import { getBussinessType } from "@/api/basic/bussinessType"; import {getBussinessType} from "@/api/basic/bussinessType";
import { getBusTypeChangeList } from "@/api/basic/busTypeChange"; import {getBusTypeChangeList} from "@/api/basic/busTypeChange";
export default { export default {
name: "SysUdimsConfig", name: "SysUdimsConfig",
data() { data() {
return { return {
labelPosition: "right",
activeNames: ["1"],
configQuery: { configQuery: {
id: null, id: null,
typeBus: null, typeBus: null,
@ -545,17 +503,26 @@ export default {
orderUnCheck: null, orderUnCheck: null,
orderUnReceive: null, orderUnReceive: null,
sysUser: null, sysUser: null,
orderToInSyncTime: null,
orderSyncTime: null, orderSyncTime: null,
orderSyncDlTime: null, orderSyncDlTime: null,
delaySyncTime: null, delaySyncTime: null,
busTypes: [], busTypes: [],
toInBusTypes: [],
changeBusTypes: [], changeBusTypes: [],
companyCert: null, companyCert: null,
manufacturerCert: null, manufacturerCert: null,
productCert: null, productCert: null,
basicDept: null, basicDept: null,
supCert: null,
systemConfig: null,
entrustAction: null,
printConfig: null,
scanChangeConfig: null,
busChangeConfig: null,
}, },
checkedBusTypes: [], checkedBusTypes: [],
checkedToInBusTypes: [],
checkedChangeBusTypes: [], checkedChangeBusTypes: [],
busQuery: { busQuery: {
page: 1, page: 1,
@ -563,7 +530,9 @@ export default {
}, },
busTypes: [], busTypes: [],
multipleSelection: [], multipleSelection: [],
toInSelecttions: [],
addBusDialogVisible: false, addBusDialogVisible: false,
addBusToInDialogVisible: false,
total: 0, total: 0,
testLoading: false, testLoading: false,
addChangeBusDialogVisible: false, addChangeBusDialogVisible: false,
@ -573,56 +542,38 @@ export default {
}, },
changeBusTypeTotal: 0, changeBusTypeTotal: 0,
changeBusTypes: [], changeBusTypes: [],
changeBusTypeSelection: [], changeBusTypeSelection: []
}; }
}, },
methods: { methods: {
handleChange(val) {
console.log(val);
},
getConfig() { getConfig() {
findConfig() findConfig()
.then((response) => { .then((response) => {
this.configQuery = response.data; this.configQuery = response.data;
this.checkedBusTypes = this.configQuery.busTypes; this.checkedBusTypes = this.configQuery.busTypes;
this.checkedToInBusTypes = this.configQuery.toInBusTypes;
this.checkedChangeBusTypes = this.configQuery.changeBusTypes; this.checkedChangeBusTypes = this.configQuery.changeBusTypes;
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]);
// this.busTypes[k].isSelect = true;
// }
// }
// }
} else {
this.$message.error(response.message);
}
}) })
.catch(() => { .catch(() => {
this.loading = false; this.loading = false;
this.list = [];
this.total = 0;
}); });
}, },
saveConfig() { saveConfig() {
this.$confirm("是否确认修改?", "提示", { this.$confirm('是否确认修改?', '提示', {
confirmButtonText: "确定", confirmButtonText: '确定',
cancelButtonText: "取消", cancelButtonText: '取消',
type: "warning", type: 'warning',
center: true, center: true,
}) }).then(() => {
.then(() => {
if (this.checkedBusTypes != null) { if (this.checkedBusTypes != null) {
this.configQuery.busTypes = this.checkedBusTypes; this.configQuery.busTypes = this.checkedBusTypes;
// for (let i = 0; i < this.checkedBusTypes.length; i++) {
// this.configQuery.busTypes.push(this.checkedBusTypes);
// }
} }
if (this.checkedChangeBusTypes != null) { if (this.checkedChangeBusTypes != null) {
this.configQuery.changeBusTypes = this.checkedChangeBusTypes; this.configQuery.changeBusTypes = this.checkedChangeBusTypes;
} }
if (this.checkedToInBusTypes != null) {
this.configQuery.toInBusTypes = this.checkedToInBusTypes;
}
updateConfig(this.configQuery) updateConfig(this.configQuery)
.then((response) => { .then((response) => {
this.loading = false; this.loading = false;
@ -636,8 +587,8 @@ export default {
.catch(() => { .catch(() => {
this.loading = false; this.loading = false;
}); });
}) }).catch(() => {
.catch(() => {}); });
}, },
testConnect() { testConnect() {
@ -660,14 +611,18 @@ export default {
this.multipleSelection = val; this.multipleSelection = val;
}, },
handleToInCheckedChange(val) {
this.toInSelecttions = val;
},
getBusType() { getBusType() {
getBussinessType(this.busQuery) getBussinessType(this.busQuery)
.then((response) => { .then((response) => {
this.busTypes = response.data.list || []; this.busTypes = response.data.list || [];
this.total = response.data.total || 0; this.total = response.data.total || 0;
// this.getConfig();
}) })
.catch(() => {}); .catch(() => {
});
}, },
addBusTypeDialog() { addBusTypeDialog() {
@ -675,10 +630,35 @@ export default {
this.multipleSelection = []; this.multipleSelection = [];
}, },
addToInBusTypeDialog() {
this.addBusToInDialogVisible = true;
this.toInSelecttions = [];
},
addToInBusType() {
var selectData = this.toInSelecttions;
selectData.forEach((obj) => {
obj.outChange = false;
obj.orderStatus = 7;
obj.direct = 2;
let isPut = true;
for (let i = 0; i < this.checkedToInBusTypes.length; i++) {
if (this.checkedToInBusTypes[i].action == obj.action) {
isPut = false;
}
}
if (isPut)
this.checkedToInBusTypes.push(obj);
});
this.addBusToInDialogVisible = false;
},
addBusType() { addBusType() {
var selectData = this.multipleSelection; var selectData = this.multipleSelection;
selectData.forEach((obj) => { selectData.forEach((obj) => {
obj.outChange = false; obj.outChange = false;
obj.direct = 1;
obj.orderStatus = 7; obj.orderStatus = 7;
let isPut = true; let isPut = true;
for (let i = 0; i < this.checkedBusTypes.length; i++) { for (let i = 0; i < this.checkedBusTypes.length; i++) {
@ -686,13 +666,19 @@ export default {
isPut = false; isPut = false;
} }
} }
if (isPut) this.checkedBusTypes.push(obj); if (isPut)
this.checkedBusTypes.push(obj);
}); });
this.addBusDialogVisible = false; this.addBusDialogVisible = false;
}, },
remveBus(index, row) { remveBus(index, row) {
this.checkedBusTypes.splice(index, 1); this.checkedBusTypes.splice(index, 1);
}, },
removeToInBus(index, row) {
this.checkedToInBusTypes.splice(index, 1);
},
checkSelectable(row) { checkSelectable(row) {
return !row.isSelect; return !row.isSelect;
}, },
@ -711,7 +697,8 @@ export default {
isPut = false; isPut = false;
} }
} }
if (isPut) this.checkedChangeBusTypes.push(obj); if (isPut)
this.checkedChangeBusTypes.push(obj);
}); });
this.addChangeBusDialogVisible = false; this.addChangeBusDialogVisible = false;
}, },
@ -726,13 +713,13 @@ export default {
res.data.list.forEach((item) => { res.data.list.forEach((item) => {
let changeBusType = { let changeBusType = {
action: item.originAction, action: item.originAction,
name: item.originName, name: item.originName
}; };
this.changeBusTypes.push(changeBusType); this.changeBusTypes.push(changeBusType);
}); });
} }
this.changeBusTypeTotal = res.data.total || 0; this.changeBusTypeTotal = res.data.total || 0;
}); })
}, },
handleCurrentChangePage(val) { handleCurrentChangePage(val) {
this.changeBusQuery.page = val; this.changeBusQuery.page = val;
@ -758,15 +745,9 @@ export default {
this.getChangeBusType(); this.getChangeBusType();
this.getConfig(); this.getConfig();
}, },
}; }
</script> </script>
<style scoped> <style scoped>
.el-select {
width: 100px;
}
.el-collapse-item {
font-weight: 800;
font-size: 20px;
}
</style> </style>

Loading…
Cancel
Save