Commit 5fab555c by SunJie

dispDefault

parent c5690097
...@@ -427,7 +427,7 @@ export default { ...@@ -427,7 +427,7 @@ export default {
}, },
// 第二个表格 // 第二个表格
detail1(index, row) { detail1(index, row) {
Api.post("ditopn/executeDefault/det",this.model).then(res=>{ Api.post("ditopn/executeDefault/det",Utils.getRequestDataFn.call(this)).then(res=>{
this.dialogVisible = true; this.dialogVisible = true;
this.dialog = row; this.dialog = row;
this.index = index; this.index = index;
...@@ -435,14 +435,14 @@ export default { ...@@ -435,14 +435,14 @@ export default {
}, },
dispDefault(){ dispDefault(){
Api.post("ditopn/executeDefault/mac",this.model).then(res=>{ Api.post("ditopn/executeDefault/mac",Utils.getRequestDataFn.call(this)).then(res=>{
Utils.copyValueFromVO(this.model, res.data) Utils.copyValueFromVO(this.model, res.data)
}) })
}, },
// 第三个表格 // 第三个表格
detail2(index, row) { detail2(index, row) {
Api.post("ditopn/executeRule/det",this.model).then(res=>{ Api.post("ditopn/executeRule/det",Utils.getRequestDataFn.call(this)).then(res=>{
this.dialogVisible2 = true; this.dialogVisible2 = true;
this.index = index; this.index = index;
this.dialog2 = row this.dialog2 = row
......
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