| | |
| | | }, |
| | | data() { |
| | | return { |
| | | largeMode: getApp().globalData.largeMode || false, |
| | | largeMode: getApp().globalData.largeMode || false, |
| | | title: '新增', |
| | | param: {}, |
| | | classAttrList: [], |
| | |
| | | showCancel: false, |
| | | confirmText: this.translateSys('close') |
| | | }); |
| | | if (data.result_type == 2) { |
| | | |
| | | if (data.action) { |
| | | } 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 actionlist = |
| | | data.action; |
| | | data.action || [] |
| | | if (actionlist) { |
| | | for (var j = |
| | | 0; j < |
| | |
| | | } |
| | | } |
| | | } |
| | | } 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 |
| | | } |
| | | } |
| | | |