Commit 4f9dee9c by liaoxing

cctdcr 初始化默认勾选 修改

parent 4409acd7
...@@ -269,7 +269,11 @@ export default { ...@@ -269,7 +269,11 @@ export default {
computed: { computed: {
clsflg: { clsflg: {
get() { get() {
return this.model.mtabut.clsflg != "O"; if(this.model.mtabut.clsflg == ''){
return false;
}else{
return this.model.mtabut.clsflg != "O";
}
}, },
set(val) { set(val) {
this.model.mtabut.clsflg = val ? "C" : "O"; this.model.mtabut.clsflg = val ? "C" : "O";
......
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