Commit 221d81d1 by lianyang

公共页面Ptap1和Ptsmsg是否可选(为灰)微调

parent 7b5f1038
......@@ -13,6 +13,7 @@
@keyup.enter.native="
showGridPromptDialog(`${argadr.grp}.${argadr.rol}.pts.extkey`)
"
:disabled="disabled1"
></c-input>
</el-form-item>
</c-col>
......@@ -53,7 +54,7 @@
maxlength="35"
show-word-limit
placeholder="请输入"
:disabled="disabled"
:disabled="disabled || disabled1"
></c-input>
</el-form-item>
</c-col>
......@@ -87,6 +88,10 @@ export default {
type: Boolean,
default: false,
},
disabled1: {//编号栏是否为灰
type: Boolean,
default: false,
},
},
data() {
......
......@@ -18,7 +18,7 @@
v-model="model[argadr.grp][argadr.rol].pts.nam"
maxlength="40"
:placeholder="'请输入' + argadr.title + '名称'"
:disabled="disabled"
:disabled="disabled || disabled1"
></c-input>
</el-form-item>
</c-col>
......@@ -43,6 +43,11 @@ export default {
type: Boolean,
default: false,
},
disabled1: {
//名称是否灰显
type: Boolean,
default: false,
},
},
data() {
return {
......
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