Commit 3387c1bb by wangna

cctdav修改

parent 6f5d4f48
...@@ -317,7 +317,7 @@ ...@@ -317,7 +317,7 @@
grp: 'ccdgrp', grp: 'ccdgrp',
rol: 'col', rol: 'col',
}" }"
:disabled="true" :disabled="model.ccdgrp.rec.modset == '2' || this.flag3"
> >
</c-ptap> --> </c-ptap> -->
...@@ -370,7 +370,7 @@ ...@@ -370,7 +370,7 @@
maxlength="150" maxlength="150"
show-word-limit show-word-limit
placeholder="请输入名称地址" placeholder="请输入名称地址"
:disabled="model.ccdgrp.rec.modset == '2'" :disabled="model.ccdgrp.rec.modset == '2' || this.flag3"
></c-input> ></c-input>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -396,6 +396,7 @@ export default { ...@@ -396,6 +396,7 @@ export default {
return { return {
flag1:false, flag1:false,
flag2:false, flag2:false,
flag3:false,
}; };
}, },
watch:{ watch:{
...@@ -419,6 +420,22 @@ export default { ...@@ -419,6 +420,22 @@ export default {
} }
} }
}, },
"model.ccdgrp.col.pts.extkey" :{
immediate:true,
handler(val ,oldVal){
if(this.model.ccdgrp.col.pts.extkey!=''){
this.flag3=true;
}else{
this.flag3=false;
}
}
},
"model.ccdgrp.rec.modset": function () {
if (this.model.ccdgrp.rec.modset == "2") {
this.model.ccdgrp.col.pts.extkey = "";
this.model.ccdgrp.col.pts.adrblk = "";
}
},
}, },
methods: { ...Event }, methods: { ...Event },
created: function () {}, created: function () {},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment