cloud-web-corejs 1.0.54-dev.118 → 1.0.54-dev.119
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
@@ -1,6 +1,6 @@
|
|
1
1
|
<template>
|
2
2
|
<el-dialog
|
3
|
-
:title="
|
3
|
+
:title="title"
|
4
4
|
:append-to-body="true"
|
5
5
|
:modal-append-to-body="true"
|
6
6
|
:close-on-click-modal="false"
|
@@ -76,6 +76,7 @@ export default {
|
|
76
76
|
formName: null,
|
77
77
|
isFullscreen: false,
|
78
78
|
formDesTabs: 'first',
|
79
|
+
title: null
|
79
80
|
};
|
80
81
|
},
|
81
82
|
mounted() {
|
@@ -103,14 +104,17 @@ export default {
|
|
103
104
|
if (objType == "FormTemplate") {
|
104
105
|
url = "/bd/setting/form_template/edit.vue"
|
105
106
|
wfDataId = obj.formCode;
|
107
|
+
this.title = this.$t1("查看表单模板");
|
106
108
|
} else if (objType == "FormScript") {
|
107
109
|
if (obj.scriptType == 1) {
|
108
110
|
url = "/bd/setting/form_script/edit1.vue"
|
109
111
|
} else {
|
110
112
|
url = "/bd/setting/form_script/edit.vue"
|
111
113
|
}
|
114
|
+
this.title = this.$t1("查看表单脚本");
|
112
115
|
} else if (objType == "TableTemplate") {
|
113
116
|
url = "/bd/setting/table_model/edit.vue"
|
117
|
+
this.title = this.$t1("查看数据表定义模板");
|
114
118
|
}
|
115
119
|
this.param = Object.assign(param, {
|
116
120
|
_dataId: wfDataId
|