Commit 221d81d1 by lianyang

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

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