cloud-web-corejs-haier 1.0.0 → 1.0.2
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 +2 -1
- package/src/components/obsUpload/index.js +1 -0
- package/src/components/obsUpload/index.vue +231 -0
- package/src/components/obsUpload/mixins.js +8 -0
- package/src/views/bd/setting/config_manage/list.vue +3 -3
- package/src/views/bd/setting/logic_param/edit2.vue +17 -0
- package/src/views/bd/setting/logic_param/mixins/list.js +12 -1
|
@@ -45,9 +45,9 @@ export default {
|
|
|
45
45
|
{label: this.$t1("同步调用接口"), name: "request_setting_list", inited: false},
|
|
46
46
|
{label: this.$t1("异步推送数据"), name: "request_async_setting_list", inited: false},
|
|
47
47
|
{label: this.$t1("组织环境设置"), name: "bd_company_env_list", inited: false},
|
|
48
|
-
|
|
49
|
-
{label: this.$t1("操作日志编码"), name: "logic_param_list1", inited: false}
|
|
50
|
-
{label: this.$t1("上传文件服务"), name: "logic_param_list2", inited: false},
|
|
48
|
+
{label: this.$t1("逻辑参数"), name: "logic_param_list", inited: false},
|
|
49
|
+
/*{label: this.$t1("操作日志编码"), name: "logic_param_list1", inited: false},*/
|
|
50
|
+
{label: this.$t1("上传文件服务"), name: "logic_param_list2", inited: false},
|
|
51
51
|
]
|
|
52
52
|
}
|
|
53
53
|
},
|
|
@@ -95,6 +95,23 @@
|
|
|
95
95
|
</el-radio-group>
|
|
96
96
|
</el-form-item>
|
|
97
97
|
</td>
|
|
98
|
+
<th>
|
|
99
|
+
<em class="f-red">*</em>
|
|
100
|
+
{{ $t1("组织编码") }}
|
|
101
|
+
</th>
|
|
102
|
+
<td colspan="5">
|
|
103
|
+
<el-form-item
|
|
104
|
+
prop="paramCompanyCode"
|
|
105
|
+
:rules="[{ required: true, trigger: 'blur' }]"
|
|
106
|
+
>
|
|
107
|
+
<el-input
|
|
108
|
+
type="text"
|
|
109
|
+
autocomplete="off"
|
|
110
|
+
v-model="logicParam.paramCompanyCode"
|
|
111
|
+
clearable
|
|
112
|
+
/>
|
|
113
|
+
</el-form-item>
|
|
114
|
+
</td>
|
|
98
115
|
</tr>
|
|
99
116
|
<tr>
|
|
100
117
|
<th>{{ $t1("创建人") }}</th>
|
|
@@ -34,7 +34,7 @@ modules = {
|
|
|
34
34
|
initEditViewName(){
|
|
35
35
|
let paramTypeStr = this.paramType ? this.paramType : "";
|
|
36
36
|
this.editViewName = `editView${paramTypeStr}`;
|
|
37
|
-
|
|
37
|
+
|
|
38
38
|
},
|
|
39
39
|
searchEvent() {
|
|
40
40
|
this.$refs["table-m1"].commitProxy("reload");
|
|
@@ -226,6 +226,11 @@ modules = {
|
|
|
226
226
|
},
|
|
227
227
|
},
|
|
228
228
|
},
|
|
229
|
+
{
|
|
230
|
+
title: this.$t1("组织编码"),
|
|
231
|
+
field: "paramCompanyCode",
|
|
232
|
+
width: 150
|
|
233
|
+
},
|
|
229
234
|
];
|
|
230
235
|
|
|
231
236
|
let searchColumns = [
|
|
@@ -263,6 +268,12 @@ modules = {
|
|
|
263
268
|
],
|
|
264
269
|
common: true,
|
|
265
270
|
},
|
|
271
|
+
{
|
|
272
|
+
title: this.$t1("组织编码"),
|
|
273
|
+
field: "paramCompanyCode",
|
|
274
|
+
type: "input",
|
|
275
|
+
common: true,
|
|
276
|
+
},
|
|
266
277
|
];
|
|
267
278
|
|
|
268
279
|
return { columns, searchColumns };
|