cuiqian2004
2025-08-01 fa73abee6209cd6f7c62c61c271826f7d413035d
pages/modal/5601.vue
@@ -894,44 +894,45 @@
                     showCancel: false,
                     confirmText: this.translateSys('close')
                  });
                  if (result.result_type == 2) {
                  if ([0, 2, 3, 4, -1].includes(result.result_type)) {
                     if (result.result_type == 2) {
                  } else if (typeof result.result == 'string') {
                     if (result.result) {
                     } else if (typeof result.result == 'string') {
                        if (result.result) {
                           uni.showModal({
                              title: this.translateSys('tip'),
                              content: result.result,
                              showCancel: false,
                              confirmText: this.translateSys('close')
                           });
                        }
                     }
                     try {
                        var actionList = result.action || []
                        actionList.forEach(item => {
                           if (item.action_type == "set_dlg_attr") {
                              // value = {"attr":"xxx", "value":"xxx"}
                              var data = item.value;
                              this.setDetailFormValues(data, style, pageIndex)
                           } else if (item.action_type == 'set_dlg_attr_show') {
                              var data = item.value;
                              this.setDetailFormItemVisible(data, style, pageIndex)
                           }
                        });
                     } catch (ex) {
                        let actionList = (result.action || []).map(a => a.action_type).join(';')
                        let tip = typeof ex == 'string' ? ex : ex.message
                        tip = `执行脚本返回的${actionList}时出现异常,请检查脚本返回的数据格式是否正确。${tip}`
                        uni.showModal({
                           title: this.translateSys('tip'),
                           content: result.result,
                           content: tip,
                           showCancel: false,
                           confirmText: this.translateSys('close')
                        });
                        console.log(ex)
                        return
                     }
                  }
                  try {
                     var actionList = result.action || []
                     actionList.forEach(item => {
                        if (item.action_type == "set_dlg_attr") {
                           // value = {"attr":"xxx", "value":"xxx"}
                           var data = item.value;
                           this.setDetailFormValues(data, style, pageIndex)
                        } else if (item.action_type == 'set_dlg_attr_show') {
                           var data = item.value;
                           this.setDetailFormItemVisible(data, style, pageIndex)
                        }
                     });
                  } catch (ex) {
                     let actionList = (result.action || []).map(a => a.action_type).join(';')
                     let tip = typeof ex == 'string' ? ex : ex.message
                     tip = `执行脚本返回的${actionList}时出现异常,请检查脚本返回的数据格式是否正确。${tip}`
                     uni.showModal({
                        title: this.translateSys('tip'),
                        content: tip,
                        showCancel: false,
                        confirmText: this.translateSys('close')
                     });
                     console.log(ex)
                     return
                  }
               }
@@ -1116,147 +1117,148 @@
                        confirmText: this.translateSys(
                           'close')
                     });
                     if (result.result_type == 2) {
                     if ([0, 2, 3, 4, -1].includes(result.result_type)) {
                        if (result.result_type == 2) {
                     } else if (typeof result.result == 'string') {
                        if (result.result) {
                        } else if (typeof result.result == 'string') {
                           if (result.result) {
                              uni.showModal({
                                 title: this.translateSys('tip'),
                                 content: result.result,
                                 showCancel: false,
                                 confirmText: this.translateSys('close')
                              });
                           }
                        }
                        try {
                           let actionList = result.action || []
                           actionList.forEach(item => {
                              if (item.action_type == "insert_subtable_page_row") { //码盘中
                                 $this.param.Show_Welcom_Page = false;
                                 var value = item.value;
                                 $this.viewAceionRow(value);
                              } else if (item.action_type ==
                                 "set_subtable_page_content") { //已码盘
                                 $this.param.Show_Welcom_Page = false;
                                 var value = item.value;
                                 const pageData = $this.pageDetail.find((page) => {
                                    return value.page_name == page.Name;
                                 });
                                 if (value.clear_confirm != false && value.clear == true &&
                                    pageData && pageData.DefList.length > 0
                                 ) { //判断是否清空页签内容,正在码盘是否有数据
                                    uni.showModal({
                                       title: this.translateSys('tip'),
                                       content: this.translate(
                                             "are_you_sure_clear_first") +
                                          this.translateSys(
                                             "quotation_mark_left") +
                                          value.page_name +
                                          this.translateSys(
                                             "quotation_mark_right") +
                                          this.translate(
                                             "are_you_sure_clear_last"),
                                       cancelText: $this.translateSys('ok'),
                                       confirmText: $this.translateSys('cancel'),
                                       success: function(res) {
                                          if (res.cancel) {
                                             if (pageData)
                                                pageData.DefList = [];
                                             $this.viewAceionContent(value);
                                          } else if (res.confirm) {
                                             if (pageData)
                                                pageData.DefList = [];
                                             $this.viewAceionContent(value);
                                          }
                                       }
                                    });
                                 } else {
                                    if (pageData)
                                       pageData.DefList = [];
                                    $this.viewAceionContent(value);
                                 }
                              } else if (item.action_type == "select_subtable_page") {
                                 var value = item.value;
                                 const pageIndex = $this.pageDetail.findIndex((page) => {
                                    return value.page_name == page.Name;
                                 });
                                 if (pageIndex > -1) {
                                    $this.setData({
                                       current: pageIndex
                                    })
                                 }
                              } else if (item.action_type == "select_subtable_page_row") {
                                 // value = {"page_name":"码盘中", "row":{"id":"xx"}}
                                 var value = item.value;
                                 $this.viewActionSelectRow(value)
                              } else if (item.action_type ==
                                 "remove_subtable_page_row") { //清除面板中指定id的数据
                                 var value = item.value;
                                 $this.viewActionRemoveRow(value)
                              } else if (item.action_type == "set_subtable_page_row") {
                                 $this.viewActionSetRow(item.value)
                              } else if (item.action_type == "set_subtable_page_ext_data") {
                                 var value = item.value;
                                 const pageData = $this.pageDetail.find((page) => {
                                    return value.page_name == page.Name;
                                 });
                                 if (pageData)
                                    pageData.ExtData = value.ext_data
                              } else if (item.action_type == "clear_subpage_rows") {
                                 var value = item.value;
                                 const pageIndex = $this.pageDetail.findIndex((page) => {
                                    return value.page_name == page.Name;
                                 });
                                 if (pageIndex > -1) {
                                    const pageData = $this.pageDetail[pageIndex]
                                    pageData.DefList = []
                                    pageData.ExtData = {}
                                    $this.$set(this.pageDetail, pageIndex, pageData)
                                 }
                              } else if (item.action_type == "set_dlg_current_edit_attr") {
                                 if ($this.focusOldFieldId == item.value) {
                                    $this.setData({
                                       focusFieldId: ""
                                    })
                                 } else {
                                    $this.setData({
                                       focusFieldId: $this.focusOldFieldId
                                    })
                                 }
                                 $this.$nextTick(() => {
                                    $this.setData({
                                       focusFieldId: item.value
                                    })
                                 });
                              } else if (item.action_type == "set_dlg_attr") {
                                 // value = {"attr":"xxx", "value":"xxx"}
                                 var data = item.value;
                                 $this.setFormValues(data)
                              } else if (item.action_type == 'set_dlg_attr_show') {
                                 var data = item.value;
                                 $this.setFormItemVisible(data)
                              }
                           });
                        } catch (ex) {
                           let actionList = (result.action || []).map(a => a.action_type).join(';')
                           let tip = typeof ex == 'string' ? ex : ex.message
                           tip = `执行脚本返回的${actionList}时出现异常,请检查脚本返回的数据格式是否正确。${tip}`
                           uni.showModal({
                              title: this.translateSys('tip'),
                              content: result.result,
                              content: tip,
                              showCancel: false,
                              confirmText: this.translateSys('close')
                           });
                           console.log(ex)
                           return
                        }
                     }
                     try {
                        let actionList = result.action || []
                        actionList.forEach(item => {
                           if (item.action_type == "insert_subtable_page_row") { //码盘中
                              $this.param.Show_Welcom_Page = false;
                              var value = item.value;
                              $this.viewAceionRow(value);
                           } else if (item.action_type ==
                              "set_subtable_page_content") { //已码盘
                              $this.param.Show_Welcom_Page = false;
                              var value = item.value;
                              const pageData = $this.pageDetail.find((page) => {
                                 return value.page_name == page.Name;
                              });
                              if (value.clear_confirm != false && value.clear == true &&
                                 pageData && pageData.DefList.length > 0
                              ) { //判断是否清空页签内容,正在码盘是否有数据
                                 uni.showModal({
                                    title: this.translateSys('tip'),
                                    content: this.translate(
                                          "are_you_sure_clear_first") +
                                       this.translateSys(
                                          "quotation_mark_left") +
                                       value.page_name +
                                       this.translateSys(
                                          "quotation_mark_right") +
                                       this.translate(
                                          "are_you_sure_clear_last"),
                                    cancelText: $this.translateSys('ok'),
                                    confirmText: $this.translateSys('cancel'),
                                    success: function(res) {
                                       if (res.cancel) {
                                          if (pageData)
                                             pageData.DefList = [];
                                          $this.viewAceionContent(value);
                                       } else if (res.confirm) {
                                          if (pageData)
                                             pageData.DefList = [];
                                          $this.viewAceionContent(value);
                                       }
                                    }
                                 });
                              } else {
                                 if (pageData)
                                    pageData.DefList = [];
                                 $this.viewAceionContent(value);
                              }
                           } else if (item.action_type == "select_subtable_page") {
                              var value = item.value;
                              const pageIndex = $this.pageDetail.findIndex((page) => {
                                 return value.page_name == page.Name;
                              });
                              if (pageIndex > -1) {
                                 $this.setData({
                                    current: pageIndex
                                 })
                              }
                           } else if (item.action_type == "select_subtable_page_row") {
                              // value = {"page_name":"码盘中", "row":{"id":"xx"}}
                              var value = item.value;
                              $this.viewActionSelectRow(value)
                           } else if (item.action_type ==
                              "remove_subtable_page_row") { //清除面板中指定id的数据
                              var value = item.value;
                              $this.viewActionRemoveRow(value)
                           } else if (item.action_type == "set_subtable_page_row") {
                              $this.viewActionSetRow(item.value)
                           } else if (item.action_type == "set_subtable_page_ext_data") {
                              var value = item.value;
                              const pageData = $this.pageDetail.find((page) => {
                                 return value.page_name == page.Name;
                              });
                              if (pageData)
                                 pageData.ExtData = value.ext_data
                           } else if (item.action_type == "clear_subpage_rows") {
                              var value = item.value;
                              const pageIndex = $this.pageDetail.findIndex((page) => {
                                 return value.page_name == page.Name;
                              });
                              if (pageIndex > -1) {
                                 const pageData = $this.pageDetail[pageIndex]
                                 pageData.DefList = []
                                 pageData.ExtData = {}
                                 $this.$set(this.pageDetail, pageIndex, pageData)
                              }
                           } else if (item.action_type == "set_dlg_current_edit_attr") {
                              if ($this.focusOldFieldId == item.value) {
                                 $this.setData({
                                    focusFieldId: ""
                                 })
                              } else {
                                 $this.setData({
                                    focusFieldId: $this.focusOldFieldId
                                 })
                              }
                              $this.$nextTick(() => {
                                 $this.setData({
                                    focusFieldId: item.value
                                 })
                              });
                           } else if (item.action_type == "set_dlg_attr") {
                              // value = {"attr":"xxx", "value":"xxx"}
                              var data = item.value;
                              $this.setFormValues(data)
                           } else if (item.action_type == 'set_dlg_attr_show') {
                              var data = item.value;
                              $this.setFormItemVisible(data)
                           }
                        });
                     } catch (ex) {
                        let actionList = (result.action || []).map(a => a.action_type).join(';')
                        let tip = typeof ex == 'string' ? ex : ex.message
                        tip = `执行脚本返回的${actionList}时出现异常,请检查脚本返回的数据格式是否正确。${tip}`
                        uni.showModal({
                           title: this.translateSys('tip'),
                           content: tip,
                           showCancel: false,
                           confirmText: this.translateSys('close')
                        });
                        console.log(ex)
                        return
                     }
                  }
@@ -2159,48 +2161,70 @@
                     .info
                     .join(
                        '<br/>') : '';
                  tip = tip || data.err_info
                  if (tip) uni.showModal({
                     title: this.translateSys("tip"),
                     content: tip,
                     showCancel: false,
                     confirmText: this.translateSys('close')
                  });
                  var actionlist = data.action;
                  if (actionlist) {
                     console.log(actionlist);
                     for (var i = 0; i < actionlist.length; i++) {
                        var action = actionlist[i];
                        if (action.action_type == 'set_dlg_attr') {
                           var result = action.value;
                           $this.setFormValues(result)
                        } else if (action.action_type == 'set_dlg_attr_show') {
                           var result = action.value;
                           $this.setFormItemVisible(result)
                           // console.log($this.head_styledef);
                        } else if (action.action_type == 'set_global_attr') {
                           $this.global_attr = action.value || [];
                        } else {
                  if ([0, 2, 3, 4, -1].includes(data.result_type)) {
                     if (data.result_type == 2) {
                        $this.setFormValues(data.result || [])
                     } else if (typeof data.result == 'string') {
                        if (data.result) {
                           uni.showModal({
                              title: this.translateSys("tip"),
                              content: this.translateSys(
                                    "quotation_mark_left") +
                                 action
                                 .action_type + this.translateSys(
                                    "quotation_mark_right") + this
                                 .translate(
                                    "tip_action_unprocessed"),
                              title: this.translateSys('tip'),
                              content: data.result,
                              showCancel: false,
                              confirmText: this.translateSys('close')
                           });
                        }
                     }
                  }
                  console.log($this.head_styledef);
                  if (data.result) {
                     var result = data.result;
                     $this.setFormValues(result)
                     try {
                        var actionlist = data.action || []
                        for (var i = 0; i < actionlist.length; i++) {
                           var action = actionlist[i];
                           if (action.action_type == 'set_dlg_attr') {
                              var result = action.value;
                              $this.setFormValues(result)
                           } else if (action.action_type == 'set_dlg_attr_show') {
                              var result = action.value;
                              $this.setFormItemVisible(result)
                              // console.log($this.head_styledef);
                           } else if (action.action_type == 'set_global_attr') {
                              $this.global_attr = action.value || [];
                           } else {
                              uni.showModal({
                                 title: this.translateSys("tip"),
                                 content: this.translateSys(
                                       "quotation_mark_left") +
                                    action
                                    .action_type + this.translateSys(
                                       "quotation_mark_right") + this
                                    .translate(
                                       "tip_action_unprocessed"),
                                 showCancel: false,
                                 confirmText: this.translateSys('close')
                              });
                           }
                        }
                     } catch (ex) {
                        let actionList = (data.action || []).map(a => a.action_type).join(';')
                        let tip = typeof ex == 'string' ? ex : ex.message
                        tip = `执行脚本返回的${actionList}时出现异常,请检查脚本返回的数据格式是否正确。${tip}`
                        uni.showModal({
                           title: this.translateSys('tip'),
                           content: tip,
                           showCancel: false,
                           confirmText: this.translateSys('close')
                        });
                        console.log(ex)
                        return
                     }
                  }
               }
@@ -2310,16 +2334,28 @@
                     .info
                     .join(
                        '<br/>') : '';
                  tip = tip || data.err_info
                  if (tip) uni.showModal({
                     title: $this.translateSys("tip"),
                     content: tip,
                     showCancel: false,
                     confirmText: $this.translateSys('close')
                  });
                  if ([0, 2, 3, 4, -1].includes(data.result_type)) {
                     if (data.result_type == 2) {
                  if (data != "") {
                     var actions = data.action;
                     if (actions) {
                     } else if (typeof data.result == 'string') {
                        if (data.result) {
                           uni.showModal({
                              title: this.translateSys('tip'),
                              content: data.result,
                              showCancel: false,
                              confirmText: this.translateSys('close')
                           });
                        }
                     }
                     try {
                        var actions = data.action || []
                        for (var i = 0; i < actions.length; i++) {
                           var action = actions[i];
                           console.log(action)
@@ -2497,18 +2533,22 @@
                              });
                           }
                        }
                     } catch (ex) {
                        let actionList = (data.action || []).map(a => a.action_type).join(';')
                        let tip = typeof ex == 'string' ? ex : ex.message
                        tip = `执行脚本返回的${actionList}时出现异常,请检查脚本返回的数据格式是否正确。${tip}`
                        uni.showModal({
                           title: this.translateSys('tip'),
                           content: tip,
                           showCancel: false,
                           confirmText: this.translateSys('close')
                        });
                        console.log(ex)
                        return
                     }
                  } else {
                     uni.showModal({
                        title: $this.translateSys('tip') + "5.2",
                        content: $this.translateSys("quotation_mark_left") +
                           "before_click_button" + $this.translateSys(
                              "quotation_mark_right") + $this.translateSys(
                              "comma") + 'event_id' + eventid,
                        showCancel: false,
                        confirmText: $this.translateSys('close')
                     });
                  }
               }
            }).catch(ex => {
@@ -2963,203 +3003,204 @@
                     confirmText: this.translateSys(
                        'close')
                  });
                  if (result.result_type == 2) {
                  if ([0, 2, 3, 4, -1].includes(result.result_type)) {
                     if (result.result_type == 2) {
                  } else if (typeof result.result == 'string') {
                     if (result.result) {
                     } else if (typeof result.result == 'string') {
                        if (result.result) {
                           uni.showModal({
                              title: this.translateSys('tip'),
                              content: result.result,
                              showCancel: false,
                              confirmText: this.translateSys('close')
                           });
                        }
                     }
                     try {
                        let actionList = result.action || []
                        actionList.forEach(item => {
                           if (item.action_type ==
                              "insert_subtable_page_row") { //码盘中
                              var value = item.value;
                              //加载已经码盘数据
                              $this.viewAceionRow(value);
                              //清空条码内容
                              $this.head_styledef.form.items.forEach((item,
                                 index) => {
                                 if (item.fieldId !=
                                    "S_CNTR_CODE") {
                                    item.value = '';
                                    item.oldvalue = '';
                                    $this.head_styledef.form.model[
                                       item
                                       .fieldId] = '';
                                 }
                              });
                              uni.showModal({
                                 title: $this.translateSys("tip"),
                                 content: $this.translate(
                                    'execute_event_success'),
                                 showCancel: false,
                                 confirmText: $this.translateSys(
                                    'close')
                              });
                           } else if (item.action_type ==
                              "set_subtable_page_content"
                           ) { //已码盘
                              $this.param.Show_Welcom_Page = false;
                              var value = item.value;
                              const pageData = $this.pageDetail.find((
                                 page) => {
                                 return value.page_name == page
                                    .Name;
                              });
                              if (value.clear_confirm != false && value
                                 .clear == true &&
                                 pageData && pageData.DefList.length > 0
                              ) { //判断是否清空页签内容,正在码盘是否有数据
                                 uni.showModal({
                                    title: $this.translateSys(
                                       'tip'),
                                    content: $this.translate(
                                          "are_you_sure_clear_first"
                                       ) +
                                       $this.translateSys(
                                          "quotation_mark_left"
                                       ) +
                                       value.page_name +
                                       $this.translateSys(
                                          "quotation_mark_right"
                                       ) +
                                       $this.translate(
                                          "are_you_sure_clear_last"
                                       ),
                                    cancelText: $this.translateSys(
                                       'ok'),
                                    confirmText: $this
                                       .translateSys('cancel'),
                                    success: function(res) {
                                       if (res.cancel) {
                                          if (pageData)
                                             pageData
                                             .DefList = [];
                                          $this
                                             .viewAceionContent(
                                                value);
                                       } else if (res
                                          .confirm) {
                                          if (pageData)
                                             pageData
                                             .DefList = [];
                                          $this
                                             .viewAceionContent(
                                                value);
                                       }
                                    }
                                 });
                              } else {
                                 if (pageData)
                                    pageData.DefList = [];
                                 $this.viewAceionContent(value);
                              }
                           } else if (item.action_type ==
                              "select_subtable_page") {
                              var value = item.value;
                              const pageIndex = $this.pageDetail.findIndex((
                                 page) => {
                                 return value.page_name == page
                                    .Name;
                              });
                              if (pageIndex > -1) {
                                 $this.setData({
                                    current: pageIndex
                                 })
                              }
                           } else if (item.action_type ==
                              "remove_subtable_page_row") { //清除面板中指定id的数据
                              let value = item.value;
                              $this.viewActionRemoveRow(value)
                           } else if (item.action_type ==
                              "set_subtable_page_row") {
                              $this.viewActionSetRow(item.value)
                           } else if (item.action_type ==
                              "set_subtable_page_ext_data") {
                              let value = item.value;
                              const pageData = $this.pageDetail.find((
                                 page) => {
                                 return value.page_name == page
                                    .Name;
                              });
                              if (pageData) {
                                 pageData.ExtData = value.ext_data
                              }
                           } else if (item.action_type ==
                              "clear_subpage_rows") {
                              var value = item.value;
                              const pageIndex = $this.pageDetail.findIndex((
                                 page) => {
                                 return value.page_name == page
                                    .Name;
                              });
                              if (pageIndex > -1) {
                                 const pageData = $this.pageDetail[
                                    pageIndex]
                                 pageData.DefList = []
                                 pageData.ExtData = {}
                                 $this.$set(this.pageDetail, pageIndex,
                                    pageData)
                              }
                           } else if (item.action_type ==
                              "set_dlg_current_edit_attr") {
                              if ($this.focusOldFieldId == item.value)
                                 $this.setData({
                                    focusFieldId: ""
                                 })
                              else {
                                 $this.setData({
                                    focusFieldId: $this
                                       .focusOldFieldId
                                 })
                              }
                              $this.$nextTick(() => {
                                 $this.setData({
                                    focusFieldId: item
                                       .value
                                 })
                              });
                           } else if (item.action_type ==
                              "set_dlg_attr") {
                              // value = {"attr":"xxx", "value":"xxx"}
                              var data = item.value;
                              $this.setFormValues(data)
                           } else if (item.action_type == 'set_dlg_attr_show') {
                              var data = item.value;
                              $this.setFormItemVisible(data)
                           }
                        });
                        if ($this.After_OK_Event?.ID && $this.After_OK_Event.ID != event
                           .ID) { //判断当前事件是否是确定后事件
                           $this.sava(pageParam, $this.After_OK_Event); //执行确定后事件
                        }
                     } catch (ex) {
                        let actionList = (result.action || []).map(a => a.action_type).join(';')
                        let tip = typeof ex == 'string' ? ex : ex.message
                        tip = `执行脚本返回的${actionList}时出现异常,请检查脚本返回的数据格式是否正确。${tip}`
                        uni.showModal({
                           title: this.translateSys('tip'),
                           content: result.result,
                           content: tip,
                           showCancel: false,
                           confirmText: this.translateSys('close')
                        });
                        console.log(ex)
                        return
                     }
                  }
                  try {
                     let actionList = result.action || []
                     actionList.forEach(item => {
                        if (item.action_type ==
                           "insert_subtable_page_row") { //码盘中
                           var value = item.value;
                           //加载已经码盘数据
                           $this.viewAceionRow(value);
                           //清空条码内容
                           $this.head_styledef.form.items.forEach((item,
                              index) => {
                              if (item.fieldId !=
                                 "S_CNTR_CODE") {
                                 item.value = '';
                                 item.oldvalue = '';
                                 $this.head_styledef.form.model[
                                    item
                                    .fieldId] = '';
                              }
                           });
                           uni.showModal({
                              title: $this.translateSys("tip"),
                              content: $this.translate(
                                 'execute_event_success'),
                              showCancel: false,
                              confirmText: $this.translateSys(
                                 'close')
                           });
                        } else if (item.action_type ==
                           "set_subtable_page_content"
                        ) { //已码盘
                           $this.param.Show_Welcom_Page = false;
                           var value = item.value;
                           const pageData = $this.pageDetail.find((
                              page) => {
                              return value.page_name == page
                                 .Name;
                           });
                           if (value.clear_confirm != false && value
                              .clear == true &&
                              pageData && pageData.DefList.length > 0
                           ) { //判断是否清空页签内容,正在码盘是否有数据
                              uni.showModal({
                                 title: $this.translateSys(
                                    'tip'),
                                 content: $this.translate(
                                       "are_you_sure_clear_first"
                                    ) +
                                    $this.translateSys(
                                       "quotation_mark_left"
                                    ) +
                                    value.page_name +
                                    $this.translateSys(
                                       "quotation_mark_right"
                                    ) +
                                    $this.translate(
                                       "are_you_sure_clear_last"
                                    ),
                                 cancelText: $this.translateSys(
                                    'ok'),
                                 confirmText: $this
                                    .translateSys('cancel'),
                                 success: function(res) {
                                    if (res.cancel) {
                                       if (pageData)
                                          pageData
                                          .DefList = [];
                                       $this
                                          .viewAceionContent(
                                             value);
                                    } else if (res
                                       .confirm) {
                                       if (pageData)
                                          pageData
                                          .DefList = [];
                                       $this
                                          .viewAceionContent(
                                             value);
                                    }
                                 }
                              });
                           } else {
                              if (pageData)
                                 pageData.DefList = [];
                              $this.viewAceionContent(value);
                           }
                        } else if (item.action_type ==
                           "select_subtable_page") {
                           var value = item.value;
                           const pageIndex = $this.pageDetail.findIndex((
                              page) => {
                              return value.page_name == page
                                 .Name;
                           });
                           if (pageIndex > -1) {
                              $this.setData({
                                 current: pageIndex
                              })
                           }
                        } else if (item.action_type ==
                           "remove_subtable_page_row") { //清除面板中指定id的数据
                           let value = item.value;
                           $this.viewActionRemoveRow(value)
                        } else if (item.action_type ==
                           "set_subtable_page_row") {
                           $this.viewActionSetRow(item.value)
                        } else if (item.action_type ==
                           "set_subtable_page_ext_data") {
                           let value = item.value;
                           const pageData = $this.pageDetail.find((
                              page) => {
                              return value.page_name == page
                                 .Name;
                           });
                           if (pageData) {
                              pageData.ExtData = value.ext_data
                           }
                        } else if (item.action_type ==
                           "clear_subpage_rows") {
                           var value = item.value;
                           const pageIndex = $this.pageDetail.findIndex((
                              page) => {
                              return value.page_name == page
                                 .Name;
                           });
                           if (pageIndex > -1) {
                              const pageData = $this.pageDetail[
                                 pageIndex]
                              pageData.DefList = []
                              pageData.ExtData = {}
                              $this.$set(this.pageDetail, pageIndex,
                                 pageData)
                           }
                        } else if (item.action_type ==
                           "set_dlg_current_edit_attr") {
                           if ($this.focusOldFieldId == item.value)
                              $this.setData({
                                 focusFieldId: ""
                              })
                           else {
                              $this.setData({
                                 focusFieldId: $this
                                    .focusOldFieldId
                              })
                           }
                           $this.$nextTick(() => {
                              $this.setData({
                                 focusFieldId: item
                                    .value
                              })
                           });
                        } else if (item.action_type ==
                           "set_dlg_attr") {
                           // value = {"attr":"xxx", "value":"xxx"}
                           var data = item.value;
                           $this.setFormValues(data)
                        } else if (item.action_type == 'set_dlg_attr_show') {
                           var data = item.value;
                           $this.setFormItemVisible(data)
                        }
                     });
                     if ($this.After_OK_Event?.ID && $this.After_OK_Event.ID != event
                        .ID) { //判断当前事件是否是确定后事件
                        $this.sava(pageParam, $this.After_OK_Event); //执行确定后事件
                     }
                  } catch (ex) {
                     let actionList = (result.action || []).map(a => a.action_type).join(';')
                     let tip = typeof ex == 'string' ? ex : ex.message
                     tip = `执行脚本返回的${actionList}时出现异常,请检查脚本返回的数据格式是否正确。${tip}`
                     uni.showModal({
                        title: this.translateSys('tip'),
                        content: tip,
                        showCancel: false,
                        confirmText: this.translateSys('close')
                     });
                     console.log(ex)
                     return
                  }
                  }if ([0, 2, 3, 4, -1].includes(result.result_type)) {
               }
            }).catch(ex => {