Commit a5033ee0 by wangna

cctdav界面修改

parent f6133ae0
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
size="small" size="small"
type="primary" type="primary"
@click="onCctmodButgetref" @click="onCctmodButgetref"
:disabled="model.ccdgrp.rec.ownref!=''" :disabled="model.ccdgrp.rec.ownref != ''"
> >
获取 获取
</c-button> </c-button>
...@@ -201,25 +201,26 @@ ...@@ -201,25 +201,26 @@
</el-form-item> </el-form-item>
</c-col> </c-col>
<c-col :span="22"> <c-col :span="24">
<el-form-item label="resp.usr" prop="cctp.usr.extkey"> <el-form-item label="resp.usr" prop="cctp.usr.extkey">
<c-fullbox>
<c-input <c-input
v-model="model.cctp.usr.extkey" v-model="model.cctp.usr.extkey"
maxlength="8" maxlength="8"
placeholder="请输入resp.usr" placeholder="请输入resp.usr"
disabled disabled
></c-input> ></c-input>
</el-form-item> <template slot="footer">
</c-col>
<c-col :span="2">
<c-button <c-button
style="margin: 0 12px 0 14px; padding: 0 12px"
size="small" size="small"
type="primary" type="primary"
@click="onSeainf" @click="onSeainf"
> >
<span style="font-family: '宋体'; font-weight: bold">i</span> <span style="font-family: '宋体'; font-weight: bold">i</span>
</c-button> </c-button>
</template>
</c-fullbox>
</el-form-item>
</c-col> </c-col>
<c-col :span="24"> <c-col :span="24">
...@@ -394,42 +395,42 @@ export default { ...@@ -394,42 +395,42 @@ export default {
mixins: [commonProcess], mixins: [commonProcess],
data() { data() {
return { return {
flag1:false, flag1: false,
flag2:false, flag2: false,
flag3:false, flag3: false,
}; };
}, },
watch:{ watch: {
"model.ccdgrp.cor.pts.extkey" :{ "model.ccdgrp.cor.pts.extkey": {
immediate:true, immediate: true,
handler(val ,oldVal){ handler(val, oldVal) {
if(this.model.ccdgrp.cor.pts.extkey!=''){ if (this.model.ccdgrp.cor.pts.extkey != "") {
this.flag1=true; this.flag1 = true;
}else{ } else {
this.flag1=false; this.flag1 = false;
}
} }
}, },
"model.ccdgrp.dro.pts.extkey" :{
immediate:true,
handler(val ,oldVal){
if(this.model.ccdgrp.dro.pts.extkey!=''){
this.flag2=true;
}else{
this.flag2=false;
}
}
}, },
"model.ccdgrp.col.pts.extkey" :{ "model.ccdgrp.dro.pts.extkey": {
immediate:true, immediate: true,
handler(val ,oldVal){ handler(val, oldVal) {
if(this.model.ccdgrp.col.pts.extkey!=''){ if (this.model.ccdgrp.dro.pts.extkey != "") {
this.flag3=true; this.flag2 = true;
}else{ } else {
this.flag3=false; this.flag2 = false;
} }
},
},
"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 () { "model.ccdgrp.rec.modset": function () {
if (this.model.ccdgrp.rec.modset == "2") { if (this.model.ccdgrp.rec.modset == "2") {
this.model.ccdgrp.col.pts.extkey = ""; this.model.ccdgrp.col.pts.extkey = "";
......
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