| | |
| | | dataObjCreate(dataInfo).then(result => { |
| | | console.log(result); |
| | | uni.hideLoading(); |
| | | if (success.result |
| | | .action) { |
| | | var action = JSON |
| | | .parse(success |
| | | .result.Action |
| | | ); |
| | | if (action.ret == |
| | | '0') { |
| | | if (action |
| | | .result_type == |
| | | '0') { |
| | | uni.showToast({ |
| | | title: action |
| | | .result, |
| | | icon: "success", |
| | | duration: 3000 |
| | | }); |
| | | } |
| | | // "{"ret":0, "result_type":0, "result":"创建成功123123123","info":""}" |
| | | let data = result.lua_result |
| | | if (data) { |
| | | if (data.ret != 0) { |
| | | var tip = data.err_info ? typeof data.err_info == 'string' ? data |
| | | .err_info : |
| | | data |
| | | .err_info.join('<br/>') : ''; |
| | | if (data.ret == 801) uni.showModal({ |
| | | title: this.translateSys('tip'), |
| | | content: tip, |
| | | showCancel: false, |
| | | confirmText: this.translateSys('close') |
| | | }); |
| | | else uni.showModal({ |
| | | title: this.translateSys('tip'), |
| | | content: tip + ',' + this.translateSys('tip') + ':' + data |
| | | .ret, |
| | | showCancel: false, |
| | | confirmText: this.translateSys('close') |
| | | }); |
| | | return false |
| | | } else { |
| | | var tip = data.info ? typeof data.info == 'string' ? data.info : data |
| | | .info |
| | | .join( |
| | | '<br/>') : ''; |
| | | tip = tip || data.err_info |
| | | if (tip) uni.showModal({ |
| | | title: this.translateSys('tip'), |
| | | content: tip, |
| | | showCancel: false, |
| | | confirmText: this.translateSys('close') |
| | | }); |
| | | uni.showToast({ |
| | | title: this.translate('create_success'), |
| | | icon: "success", |
| | | duration: 3000 |
| | | }); |
| | | } |
| | | } else |
| | | uni.showToast({ |
| | | title: "创建成功!", |
| | | icon: "success", |
| | | duration: 3000 |
| | | }); |
| | | |
| | | } |
| | | //刷新 |
| | | uni.redirectTo({ |
| | | url: '../modal/3037?param=' + |