apply-clients 5.0.35-58 → 5.0.35-59
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -242,13 +242,11 @@ export default {
|
|
|
242
242
|
},
|
|
243
243
|
created() {
|
|
244
244
|
var result = HostApp.readLocalFile('workflow_apply.json')
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
var data = JSON.parse(result)
|
|
251
|
-
console.log(data)
|
|
245
|
+
if(result.code == 500){
|
|
246
|
+
this.$showMessage('获取流程配置文件失败,请联系系统管理员')
|
|
247
|
+
return
|
|
248
|
+
}
|
|
249
|
+
var data = JSON.parse(result.data)
|
|
252
250
|
/* var data={
|
|
253
251
|
"start_activitys": [
|
|
254
252
|
"集体报装申请",
|