|
|
|
@ -1,8 +1,26 @@
|
|
|
|
|
<template>
|
|
|
|
|
<div>
|
|
|
|
|
<!--<div>-->
|
|
|
|
|
<!-- <div style="display: flex; justify-content: space-between; align-items: center;" v-if="isLinkDisabled">-->
|
|
|
|
|
<!-- <div style="margin-left: auto;">-->
|
|
|
|
|
<!-- <span-->
|
|
|
|
|
<!-- style="margin: 10px;color: #2d8cf0;font-size: 14px;"-->
|
|
|
|
|
<!-- >部门 : {{ this.userInfo.deptName }}</span>-->
|
|
|
|
|
<!-- <span-->
|
|
|
|
|
<!-- style="font-weight: 500;color:rgb(51 48 48); font-size: 14px; margin-right: 20px"-->
|
|
|
|
|
<!-- >    用户 : ({{-->
|
|
|
|
|
<!-- this.userInfo.userName-->
|
|
|
|
|
<!-- }})</span>-->
|
|
|
|
|
<!-- </div>-->
|
|
|
|
|
<!-- </div>-->
|
|
|
|
|
<el-form :model="formData" class="order-el-form" ref="formData" label-width="120px">
|
|
|
|
|
<el-card>
|
|
|
|
|
|
|
|
|
|
<!--<el-row :gutter="0">-->
|
|
|
|
|
<!-- <el-col :span="24" align="right">-->
|
|
|
|
|
|
|
|
|
|
<!-- </el-col>-->
|
|
|
|
|
<!--</el-row>-->
|
|
|
|
|
|
|
|
|
|
<!-- <el-alert-->
|
|
|
|
|
<!-- style="margin-top: 15px"-->
|
|
|
|
|
<!-- :title="msgTip"-->
|
|
|
|
@ -82,13 +100,14 @@
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
<el-col :span="6">
|
|
|
|
|
<el-form-item prop="busType" class="query-form-item" label="业务类型:">
|
|
|
|
|
<el-form-item prop="busType" class="query-form-item" label="当前业务类型:">
|
|
|
|
|
<el-select v-model="formData.busType"
|
|
|
|
|
filterable
|
|
|
|
|
remote
|
|
|
|
|
@change="busTypeChange"
|
|
|
|
|
reserve-keyword
|
|
|
|
|
placeholder="请选择业务类型" clearable style="width: 90%">
|
|
|
|
|
placeholder="请选择业务类型" clearable style="width: 90%"
|
|
|
|
|
>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in busTypeList"
|
|
|
|
|
:key="item.documentTypeCode"
|
|
|
|
@ -108,7 +127,8 @@
|
|
|
|
|
filterable
|
|
|
|
|
remote
|
|
|
|
|
reserve-keyword
|
|
|
|
|
placeholder="请选择往来单位" clearable style="width: 90%">
|
|
|
|
|
placeholder="请选择往来单位" clearable style="width: 90%"
|
|
|
|
|
>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in fromInvOptions"
|
|
|
|
|
:key="item.erpId"
|
|
|
|
@ -165,7 +185,8 @@
|
|
|
|
|
:type="scanResultType"
|
|
|
|
|
:closable="false"
|
|
|
|
|
:dangerouslyUseHTMLString="true"
|
|
|
|
|
:description="result">
|
|
|
|
|
:description="result"
|
|
|
|
|
>
|
|
|
|
|
</el-alert>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
@ -270,7 +291,7 @@
|
|
|
|
|
<div style="flex: 1; display: flex; flex-direction: column; justify-content: flex-end; padding-top: 10px;"
|
|
|
|
|
>
|
|
|
|
|
<!-- 假设这里有一些信息内容 -->
|
|
|
|
|
<p style="font-size: 14px;background-color: #e1f3fb" @click="selectBusType(info.documentTypeCode)">{{ info.documentTypeCode }}</p>
|
|
|
|
|
<p style="font-size: 14px;background-color: #e1f3fb" @click="selectBusType(info.documentTypeCode)">{{ info.remark }}</p>
|
|
|
|
|
<el-button type="primary" style="position: absolute; bottom: 20px; right: 20px;" icon="el-icon-thumb"
|
|
|
|
|
@click="selectBusType(info.documentTypeCode)">开始作业
|
|
|
|
|
</el-button>
|
|
|
|
@ -797,8 +818,6 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
startDeal() {
|
|
|
|
|
debugger
|
|
|
|
|
this.$message.error("开始处理单据")
|
|
|
|
|
this.curRow = this.formData;
|
|
|
|
|
this.dealSplitOrder()
|
|
|
|
|
this.formData.tagStatus = 2;
|
|
|
|
@ -871,7 +890,9 @@ export default {
|
|
|
|
|
this.formData.confirmFinish = false;
|
|
|
|
|
this.refreshCodesPanel(this)
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
focusInput() {
|
|
|
|
|
this.$refs.inputRef.focus();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
created() {
|
|
|
|
@ -898,7 +919,11 @@ export default {
|
|
|
|
|
this.getWorkBindBusTypes(this.formData.workPlaceCode);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
mounted() {
|
|
|
|
|
this.$nextTick(() => {
|
|
|
|
|
this.focusInput();
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|