|
|
|
@ -108,7 +108,7 @@
|
|
|
|
|
<el-divider content-position="left">生成业务单</el-divider>
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="11">
|
|
|
|
|
<el-form-item label="目标业务单" prop="action">
|
|
|
|
|
<el-form-item label="目标业务单">
|
|
|
|
|
<el-select v-model="inputQuery.targetBusAction" placeholder="目标业务单" clearable size="small"
|
|
|
|
|
style="width: 90%">
|
|
|
|
|
<el-option
|
|
|
|
@ -202,6 +202,13 @@ export default {
|
|
|
|
|
trigger: "blur"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
supplementAll: [
|
|
|
|
|
{
|
|
|
|
|
required: true,
|
|
|
|
|
message: "补单方式不能为空",
|
|
|
|
|
trigger: "blur"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
// invCode: [
|
|
|
|
|
// {
|
|
|
|
|
// required: true,
|
|
|
|
@ -300,8 +307,8 @@ export default {
|
|
|
|
|
created() {
|
|
|
|
|
if (this.inputQuery.originAction == null) {
|
|
|
|
|
this.isAdd = true;
|
|
|
|
|
// this.inputQuery.auditStatus = 2;
|
|
|
|
|
// this.inputQuery.busAuditStatus = 2;
|
|
|
|
|
this.inputQuery.auditStatus = 1;
|
|
|
|
|
this.inputQuery.busAuditStatus = 1;
|
|
|
|
|
} else {
|
|
|
|
|
this.getTargetBusType();
|
|
|
|
|
}
|
|
|
|
|