cloud-web-corejs 1.0.216 → 1.0.218
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
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
<i class="el-icon-close el-icon"></i>
|
|
35
35
|
{{ $t2("取 消", "system.button.cancel2") }}
|
|
36
36
|
</el-button>
|
|
37
|
-
<el-button type="primary" @click="dialogSubmit" class="button-sty">
|
|
37
|
+
<el-button type="primary" @click="dialogSubmit" class="button-sty" v-if="confirmButtonVisible">
|
|
38
38
|
<i class="el-icon-check el-icon"></i>
|
|
39
39
|
{{ $t2("确 定", "system.button.confirm2") }}
|
|
40
40
|
</el-button>
|
|
@@ -77,6 +77,7 @@ export default {
|
|
|
77
77
|
currentLayoutType: null,
|
|
78
78
|
dataId: null,
|
|
79
79
|
formConfig: {},
|
|
80
|
+
confirmButtonVisible: true
|
|
80
81
|
};
|
|
81
82
|
},
|
|
82
83
|
computed: {
|
|
@@ -191,6 +192,9 @@ export default {
|
|
|
191
192
|
this.close();
|
|
192
193
|
}
|
|
193
194
|
},
|
|
195
|
+
setConfirmButtonHidden(val){
|
|
196
|
+
this.confirmButtonVisible = val || false;
|
|
197
|
+
}
|
|
194
198
|
},
|
|
195
199
|
};
|
|
196
200
|
</script>
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
<tableForm :formData.sync="formData" @searchEvent="searchEvent" @resetEvent="resetEvent">
|
|
33
33
|
<template #buttonLeft>
|
|
34
34
|
<vxe-button status="primary" class="button-sty" icon="el-icon-plus"
|
|
35
|
-
@click="openFieldTranslationEditDialog()" :disabled="!currentDataType.id">
|
|
35
|
+
@click="openFieldTranslationEditDialog()" :disabled="!currentDataType.id" v-if="isDev">
|
|
36
36
|
{{ $t1('新增') }}
|
|
37
37
|
</vxe-button>
|
|
38
38
|
<base-table-export :option="{ title: $t1('多语言'), targetRef: 'table-m1'}"
|
|
@@ -191,7 +191,7 @@ export default {
|
|
|
191
191
|
}
|
|
192
192
|
});*/
|
|
193
193
|
await this.initLanguageSetting();
|
|
194
|
-
this.getBdEnv();
|
|
194
|
+
// this.getBdEnv();
|
|
195
195
|
this.initTableList();
|
|
196
196
|
},
|
|
197
197
|
methods: {
|