提交 6188f1f4 编写于 作者: huangwensu's avatar huangwensu

额外投递新增

上级 dacf0803
......@@ -253,7 +253,7 @@
clearable
filterable
placeholder="请选择额外投递"
@change="changeTag"
@change="changeTag($event, index)"
style="width:200px; margin-bottom: 10px;">
<el-option
v-for="(eItem,eIndex) in tagSelect"
......@@ -573,7 +573,9 @@ export default {
changeTag(val, index) {
if(val == '000000') {
this.tagVisible = true;
this.dialogVisible = false;
this.form.actionTagResqs[index].tagCode = '';
}else {
this.form.actionTagResqs[index].tagCode = val;
}
},
confirmAddTag() {
......@@ -583,6 +585,7 @@ export default {
"post", `/basic-data/bi/actionTag/insert`, this.tagForm,
res => {
this.tagVisible = false;
this.getTagList();
}
);
}
......
......@@ -317,7 +317,7 @@
clearable
filterable
placeholder="请选择额外投递"
@change="changeTag"
@change="changeTag($event, index)"
style="width:200px; margin-bottom: 10px;">
<el-option
v-for="(eItem,eIndex) in tagSelect"
......@@ -439,7 +439,7 @@
width="30%">
<el-row :gutter="30" class="row search" type="flex" style="margin-bottom:0;">
<el-form ref="tagForm"
rules="tagRules"
:rules="tagRules"
:model="tagForm"
label-width="150px"
label-suffix=":"
......@@ -661,7 +661,9 @@ export default {
changeTag(val, index) {
if(val == '000000') {
this.tagVisible = true;
this.dialogVisible = false;
this.form.actionTagResqs[index].tagCode = '';
}else {
this.form.actionTagResqs[index].tagCode = val;
}
},
confirmAddTag() {
......@@ -671,6 +673,7 @@ export default {
"post", `/basic-data/bi/actionTag/insert`, this.tagForm,
res => {
this.tagVisible = false;
this.getTagList();
}
);
}
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册