cloud-web-corejs 1.0.54-dev.245 → 1.0.54-dev.247
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 +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/widgetShowRuleFlag-editor.vue +33 -35
- package/src/views/bd/setting/bd_company_env/dialog.vue +25 -12
- package/src/views/bd/setting/bd_company_env/edit.vue +13 -5
- package/src/views/bd/setting/bd_company_env/list.vue +23 -19
- package/src/views/bd/setting/config_manage/list.vue +1 -1
- package/src/views/user/position/dialog.vue +1 -1
- package/src/views/user/request_setting/edit.vue +40 -35
- package/src/views/user/request_setting/list.vue +0 -1
package/package.json
CHANGED
@@ -80,7 +80,7 @@
|
|
80
80
|
</el-table-column>
|
81
81
|
<el-table-column :label="i18nt('服务名称')" width="150">
|
82
82
|
<template slot-scope="{row}">
|
83
|
-
{{row.serveName}}
|
83
|
+
{{ row.serveName }}
|
84
84
|
</template>
|
85
85
|
</el-table-column>
|
86
86
|
|
@@ -128,7 +128,7 @@
|
|
128
128
|
</div>
|
129
129
|
</el-dialog>
|
130
130
|
<bdCompanyEnvDialog v-if="showBdCompanyEnvDialog" :visiable.sync="showBdCompanyEnvDialog"
|
131
|
-
|
131
|
+
@confirm="confirmBdCompanyEnvDialog" :multi="false"/>
|
132
132
|
</div>
|
133
133
|
</template>
|
134
134
|
<script>
|
@@ -148,7 +148,7 @@ export default {
|
|
148
148
|
return {
|
149
149
|
dialogVisible: false,
|
150
150
|
tableData: [],
|
151
|
-
showBdCompanyEnvDialog:false
|
151
|
+
showBdCompanyEnvDialog: false
|
152
152
|
}
|
153
153
|
},
|
154
154
|
methods: {
|
@@ -169,19 +169,25 @@ export default {
|
|
169
169
|
},
|
170
170
|
colSubmit() {
|
171
171
|
|
172
|
-
/*if(this.tableData.some(item=>!item.roleCodes)){
|
173
|
-
this.$message({
|
174
|
-
type:"error",
|
175
|
-
content:"角色编码不能为空"
|
176
|
-
})
|
177
|
-
return
|
178
|
-
}*/
|
179
|
-
|
180
|
-
let searveNameList = ["prod", "uat", "dev"];
|
181
172
|
let tableData = this.tableData;
|
182
173
|
let map = {}
|
174
|
+
|
183
175
|
for (let i = 0; i < tableData.length; i++) {
|
184
176
|
let item = tableData[i];
|
177
|
+
if (!item.serveName) {
|
178
|
+
this.$message({
|
179
|
+
type: "error",
|
180
|
+
message: "服务名称不能为空",
|
181
|
+
});
|
182
|
+
return
|
183
|
+
}
|
184
|
+
if (!item.companyCodes) {
|
185
|
+
this.$message({
|
186
|
+
type: "error",
|
187
|
+
message: "组织编码不能为空",
|
188
|
+
});
|
189
|
+
return
|
190
|
+
}
|
185
191
|
if (!item.roleCodes) {
|
186
192
|
this.$message({
|
187
193
|
type: "error",
|
@@ -189,33 +195,25 @@ export default {
|
|
189
195
|
})
|
190
196
|
return
|
191
197
|
}
|
192
|
-
if (item.
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
return
|
199
|
-
} else if(searveNameList.includes(item.serveName)){
|
200
|
-
this.$message({
|
201
|
-
type: "error",
|
202
|
-
message: "自定义服务的服务名称不能为`prod,uat,dev`"
|
203
|
-
})
|
204
|
-
return
|
205
|
-
}
|
198
|
+
if (!item.type) {
|
199
|
+
this.$message({
|
200
|
+
type: "error",
|
201
|
+
message: "设置不能为空"
|
202
|
+
})
|
203
|
+
return
|
206
204
|
}
|
207
|
-
|
208
|
-
|
209
|
-
let companyCodes = item.companyCodes
|
205
|
+
|
206
|
+
let serveName = item.serveName;
|
207
|
+
let companyCodes = item.companyCodes;
|
210
208
|
let key = serveName + "_" + companyCodes;
|
211
209
|
if (!map[key]) {
|
212
210
|
map[key] = true;
|
213
211
|
} else {
|
214
212
|
this.$message({
|
215
213
|
type: "error",
|
216
|
-
message: "[服务+组织]不能重复"
|
217
|
-
})
|
218
|
-
return
|
214
|
+
message: "[服务+组织]不能重复",
|
215
|
+
});
|
216
|
+
return;
|
219
217
|
}
|
220
218
|
}
|
221
219
|
|
@@ -240,16 +238,16 @@ export default {
|
|
240
238
|
row.serveName = serveName;
|
241
239
|
},
|
242
240
|
|
243
|
-
clearBdCompanyEnv(row){
|
241
|
+
clearBdCompanyEnv(row) {
|
244
242
|
row.serveName = null;
|
245
243
|
row.companyCodes = null;
|
246
244
|
},
|
247
|
-
openBdCompanyEnvDialog(rowIndex){
|
245
|
+
openBdCompanyEnvDialog(rowIndex) {
|
248
246
|
this.operateIndex = rowIndex;
|
249
247
|
this.showBdCompanyEnvDialog = true;
|
250
248
|
},
|
251
249
|
confirmBdCompanyEnvDialog(rows) {
|
252
|
-
if(rows.length){
|
250
|
+
if (rows.length) {
|
253
251
|
let row = rows[0];
|
254
252
|
let item = this.tableData[this.operateIndex]
|
255
253
|
item.serveName = row.bdService;
|
@@ -1,6 +1,6 @@
|
|
1
1
|
<template>
|
2
2
|
<el-dialog
|
3
|
-
:title="$t1('
|
3
|
+
:title="$t1('组织环境设置列表')"
|
4
4
|
:append-to-body="true"
|
5
5
|
:modal-append-to-body="true"
|
6
6
|
:close-on-click-modal="falseValue"
|
@@ -29,9 +29,11 @@
|
|
29
29
|
</template>
|
30
30
|
<template #buttonRight>
|
31
31
|
<vxe-button icon="el-icon-brush" class="button-sty" @click="resetEvent" type="text" status="primary"
|
32
|
-
plain>{{$t1('重置')}}
|
32
|
+
plain>{{ $t1('重置') }}
|
33
33
|
</vxe-button>
|
34
|
-
<vxe-button status="warning" icon="el-icon-search" class="button-sty" @click="searchEvent">{{
|
34
|
+
<vxe-button status="warning" icon="el-icon-search" class="button-sty" @click="searchEvent">{{
|
35
|
+
$t1('搜索')
|
36
|
+
}}
|
35
37
|
</vxe-button>
|
36
38
|
</template>
|
37
39
|
</tableForm>
|
@@ -49,7 +51,7 @@
|
|
49
51
|
class="allDel icon-quanbushanchu" @click="clearChecked()"></a></el-tooltip>
|
50
52
|
<div class="list">
|
51
53
|
<div class="item" v-for="(checkRow, index) in checkRows" :key="index">
|
52
|
-
<p>{{ getCheckLabel(checkRow,'name') }}</p>
|
54
|
+
<p>{{ getCheckLabel(checkRow, 'name') }}</p>
|
53
55
|
<a class="el-icon-close" @click="clearTable1Select(index)"></a>
|
54
56
|
</div>
|
55
57
|
</div>
|
@@ -98,6 +100,7 @@ export default {
|
|
98
100
|
methods: {
|
99
101
|
initTableM1() {
|
100
102
|
let that = this;
|
103
|
+
let bdServiceMap = {"dev": this.$t1("测试"), "uat": this.$t1("UAT"), "prod": this.$t1("正式")};
|
101
104
|
let url = USER_PREFIX + '/bd_company_env/listPage';
|
102
105
|
let tableOption = {
|
103
106
|
vue: that,
|
@@ -112,16 +115,25 @@ export default {
|
|
112
115
|
columns: [
|
113
116
|
{type: 'checkbox', fixed: 'left', width: 48, resizable: false},
|
114
117
|
{
|
115
|
-
title: '服务',
|
118
|
+
title: this.$t1('服务'),
|
116
119
|
field: 'bdService',
|
117
120
|
width: 150,
|
118
|
-
fixed: 'left'
|
121
|
+
fixed: 'left',
|
122
|
+
slots: {
|
123
|
+
default: ({row}) => {
|
124
|
+
return bdServiceMap[row.bdService] || "";
|
125
|
+
}
|
126
|
+
}
|
119
127
|
},
|
120
128
|
{
|
121
|
-
title: '组织编码',
|
129
|
+
title: this.$t1('组织编码'),
|
122
130
|
field: 'bdCompanyCode',
|
123
131
|
width: 150,
|
124
|
-
|
132
|
+
},
|
133
|
+
{
|
134
|
+
title: this.$t1('组织备注'),
|
135
|
+
field: 'bdCompanyRemark',
|
136
|
+
width: 150,
|
125
137
|
},
|
126
138
|
{
|
127
139
|
width: 47,
|
@@ -132,10 +144,11 @@ export default {
|
|
132
144
|
],
|
133
145
|
searchColumns: [
|
134
146
|
{
|
135
|
-
title: this.$t1(
|
136
|
-
|
137
|
-
|
138
|
-
|
147
|
+
title: this.$t1('服务'), field: "bdService", type: "select", common: true, itemOption: [
|
148
|
+
{label: this.$t1("测试"), value: "dev"},
|
149
|
+
{label: this.$t1("UAT"), value: "uat"},
|
150
|
+
{label: this.$t1("正式"), value: "prod"}
|
151
|
+
]
|
139
152
|
},
|
140
153
|
{
|
141
154
|
title: this.$t1("组织编码"),
|
@@ -4,7 +4,7 @@
|
|
4
4
|
<div class="d-header clearfix">
|
5
5
|
<div class="fl">
|
6
6
|
<i class="el-icon-info"/>
|
7
|
-
{{ dataId ? $t1('
|
7
|
+
{{ dataId ? $t1('查看组织环境设置') : $t1('新增组织环境设置') }}
|
8
8
|
</div>
|
9
9
|
<div class="fr">
|
10
10
|
<el-button type="primary" plain class="button-sty" @click="$baseReload()" icon="el-icon-refresh-right">
|
@@ -27,9 +27,9 @@
|
|
27
27
|
<td>
|
28
28
|
<el-form-item prop="bdService" :rules="[{ required: true, trigger: 'blur' }]">
|
29
29
|
<el-select v-model="bdCompanyEnv.bdService">
|
30
|
-
<el-option value="dev" label="
|
31
|
-
<el-option value="uat" label="UAT"></el-option>
|
32
|
-
<el-option value="prod" label="
|
30
|
+
<el-option value="dev" :label="$t1('测试')"></el-option>
|
31
|
+
<el-option value="uat" :label="$t1('UAT')"></el-option>
|
32
|
+
<el-option value="prod" :label="$t1('正式')"></el-option>
|
33
33
|
</el-select>
|
34
34
|
</el-form-item>
|
35
35
|
</td>
|
@@ -43,6 +43,14 @@
|
|
43
43
|
</el-form-item>
|
44
44
|
</td>
|
45
45
|
</tr>
|
46
|
+
<tr>
|
47
|
+
<th>{{ $t1('组织备注') }}</th>
|
48
|
+
<td colspan="5">
|
49
|
+
<el-input type="textarea" :rows="2" :placeholder="$t1('请输入内容')" size="small"
|
50
|
+
v-model="bdCompanyEnv.bdCompanyRemark"
|
51
|
+
clearable></el-input>
|
52
|
+
</td>
|
53
|
+
</tr>
|
46
54
|
<tr>
|
47
55
|
<th>{{ $t1('创建人') }}</th>
|
48
56
|
<td>{{ bdCompanyEnv.createBy }}</td>
|
@@ -80,7 +88,7 @@ export default {
|
|
80
88
|
readTimeout: 60000,
|
81
89
|
preScript: null,
|
82
90
|
postScript: null,
|
83
|
-
exeCompanyCode:null
|
91
|
+
exeCompanyCode: null
|
84
92
|
},
|
85
93
|
showCodeEditor: false
|
86
94
|
};
|
@@ -12,15 +12,16 @@
|
|
12
12
|
<template #form>
|
13
13
|
<tableForm :formData.sync="formData" @searchEvent="searchEvent" @resetEvent="resetEvent">
|
14
14
|
<template #buttonLeft>
|
15
|
-
<vxe-button status="primary" class="button-sty" icon="el-icon-plus" @click="openEditDialog">
|
15
|
+
<vxe-button status="primary" class="button-sty" icon="el-icon-plus" @click="openEditDialog">
|
16
|
+
{{ $t1('新增') }}
|
16
17
|
</vxe-button>
|
17
|
-
<base-table-export :option="{ title: '企业组织环境设置导出', targetRef: 'table-m1'}" :parent-target="_self"/>
|
18
18
|
</template>
|
19
19
|
<template #buttonRight>
|
20
20
|
<vxe-button icon="el-icon-brush" class="button-sty" @click="resetEvent" type="text" status="primary"
|
21
|
-
plain>{{$t1('重置')}}
|
21
|
+
plain>{{ $t1('重置') }}
|
22
22
|
</vxe-button>
|
23
|
-
<vxe-button status="warning" icon="el-icon-search" class="button-sty" @click="searchEvent">
|
23
|
+
<vxe-button status="warning" icon="el-icon-search" class="button-sty" @click="searchEvent">
|
24
|
+
{{ $t1('搜索') }}
|
24
25
|
</vxe-button>
|
25
26
|
</template>
|
26
27
|
</tableForm>
|
@@ -68,7 +69,7 @@ export default {
|
|
68
69
|
},
|
69
70
|
initTableList() {
|
70
71
|
let that = this;
|
71
|
-
let
|
72
|
+
let bdServiceMap = {"dev": this.$t1("测试"), "uat": this.$t1("UAT"), "prod": this.$t1("正式")};
|
72
73
|
let tableOption = {
|
73
74
|
vue: this,
|
74
75
|
tableRef: 'table-m1',
|
@@ -82,16 +83,25 @@ export default {
|
|
82
83
|
columns: [
|
83
84
|
{type: 'checkbox', width: 48, resizable: false, fixed: 'left'},
|
84
85
|
{
|
85
|
-
title: '服务',
|
86
|
+
title: this.$t1('服务'),
|
86
87
|
field: 'bdService',
|
87
88
|
width: 150,
|
88
|
-
fixed: 'left'
|
89
|
+
fixed: 'left',
|
90
|
+
slots: {
|
91
|
+
default: ({row}) => {
|
92
|
+
return bdServiceMap[row.bdService] || "";
|
93
|
+
}
|
94
|
+
}
|
89
95
|
},
|
90
96
|
{
|
91
|
-
title: '组织编码',
|
97
|
+
title: this.$t1('组织编码'),
|
92
98
|
field: 'bdCompanyCode',
|
93
99
|
width: 150,
|
94
|
-
|
100
|
+
},
|
101
|
+
{
|
102
|
+
title: this.$t1('组织备注'),
|
103
|
+
field: 'bdCompanyRemark',
|
104
|
+
width: 150,
|
95
105
|
},
|
96
106
|
{
|
97
107
|
field: 'createBy',
|
@@ -129,7 +139,7 @@ export default {
|
|
129
139
|
this.openEditDialog(row.id);
|
130
140
|
}}
|
131
141
|
>
|
132
|
-
<el-tooltip enterable={false} effect="dark" content={
|
142
|
+
<el-tooltip enterable={false} effect="dark" content={this.$t1('查看')} placement="top"
|
133
143
|
popper-class="tooltip-skin">
|
134
144
|
<i class="el-icon-edit"/>
|
135
145
|
</el-tooltip>
|
@@ -141,17 +151,11 @@ export default {
|
|
141
151
|
}
|
142
152
|
],
|
143
153
|
searchColumns: [
|
144
|
-
/*{
|
145
|
-
title: this.$t1("服务"),
|
146
|
-
field: "bdService",
|
147
|
-
type: "input",
|
148
|
-
common: true,
|
149
|
-
},*/
|
150
154
|
{
|
151
155
|
title: this.$t1('服务'), field: "bdService", type: "select", common: true, itemOption: [
|
152
|
-
{label: "
|
153
|
-
{label: "UAT", value: "uat"},
|
154
|
-
{label: "
|
156
|
+
{label: this.$t1("测试"), value: "dev"},
|
157
|
+
{label: this.$t1("UAT"), value: "uat"},
|
158
|
+
{label: this.$t1("正式"), value: "prod"}
|
155
159
|
]
|
156
160
|
},
|
157
161
|
{
|
@@ -30,7 +30,7 @@ export default {
|
|
30
30
|
typeTabs: [
|
31
31
|
{label: this.$t1("导入模板"), name: "bd_attach_setting_list", inited: true},
|
32
32
|
{label: this.$t1("同步调用接口"), name: "request_setting_list", inited: false},
|
33
|
-
{label: this.$t1("
|
33
|
+
{label: this.$t1("组织环境设置"), name: "bd_company_env_list", inited: false},
|
34
34
|
]
|
35
35
|
}
|
36
36
|
},
|
@@ -62,7 +62,7 @@
|
|
62
62
|
class="allDel icon-quanbushanchu" @click="clearChecked()"></a></el-tooltip>
|
63
63
|
<div class="list">
|
64
64
|
<div class="item" v-for="(checkRow, index) in checkRows" :key="index">
|
65
|
-
<p>{{
|
65
|
+
<p>{{ checkRow.name }}</p>
|
66
66
|
<a class="el-icon-close" @click="clearTable1Select(index)"></a>
|
67
67
|
</div>
|
68
68
|
</div>
|
@@ -44,22 +44,23 @@
|
|
44
44
|
<tr>
|
45
45
|
<th>
|
46
46
|
<em class="f-red">*</em>
|
47
|
-
{{ $t1('
|
47
|
+
{{ $t1('执行组织编码') }}
|
48
48
|
</th>
|
49
49
|
<td colspan="5">
|
50
|
-
<el-form-item prop="
|
51
|
-
<el-input type="text" autocomplete="off" v-model="requestSetting.
|
50
|
+
<el-form-item prop="exeCompanyCode" :rules="[{ required: true, trigger: 'blur' }]">
|
51
|
+
<el-input type="text" autocomplete="off" v-model="requestSetting.exeCompanyCode" clearable/>
|
52
52
|
</el-form-item>
|
53
53
|
</td>
|
54
|
+
<td colspan="2"><span class="tips_1">{{ $t1('注:多个用逗号","隔开') }}</span></td>
|
54
55
|
</tr>
|
55
56
|
<tr>
|
56
57
|
<th>
|
57
58
|
<em class="f-red">*</em>
|
58
|
-
{{ $t1('
|
59
|
+
{{ $t1('请求Url') }}
|
59
60
|
</th>
|
60
|
-
<td colspan="
|
61
|
-
<el-form-item prop="
|
62
|
-
<el-input type="text" autocomplete="off" v-model="requestSetting.
|
61
|
+
<td colspan="7">
|
62
|
+
<el-form-item prop="url" :rules="[{ required: true, trigger: 'blur' }]">
|
63
|
+
<el-input type="text" autocomplete="off" v-model="requestSetting.url" clearable/>
|
63
64
|
</el-form-item>
|
64
65
|
</td>
|
65
66
|
</tr>
|
@@ -67,7 +68,7 @@
|
|
67
68
|
<th>
|
68
69
|
{{ $t1('请求头') }}
|
69
70
|
</th>
|
70
|
-
<td colspan="
|
71
|
+
<td colspan="7">
|
71
72
|
<el-form-item prop="header" :rules="[{ required: false, trigger: 'blur' }]">
|
72
73
|
<el-input type="textarea" :rows="2" :placeholder="$t1('请输入内容')" size="small"
|
73
74
|
v-model="requestSetting.header"
|
@@ -77,31 +78,35 @@
|
|
77
78
|
</tr>
|
78
79
|
<tr>
|
79
80
|
<th>
|
80
|
-
|
81
|
-
{{ $t1('是否启用') }}
|
81
|
+
{{ $t1('连接超时(ms)') }}
|
82
82
|
</th>
|
83
83
|
<td>
|
84
|
-
<el-form-item prop="
|
85
|
-
<
|
86
|
-
<el-radio :label="true">{{ $t1('启用') }}</el-radio>
|
87
|
-
<el-radio :label="false">{{ $t1('禁用') }}</el-radio>
|
88
|
-
</el-radio-group>
|
84
|
+
<el-form-item prop="connectTimeout" :rules="[{ required: false, trigger: 'blur' }]">
|
85
|
+
<base-input-number v-model="requestSetting.connectTimeout" clearable/>
|
89
86
|
</el-form-item>
|
90
87
|
</td>
|
88
|
+
<td colspan="2"><span class="tips_1">{{ $t1('注:不填默认10000毫秒') }}</span></td>
|
91
89
|
<th>
|
92
|
-
{{ $t1('
|
90
|
+
{{ $t1('读取超时(ms)') }}
|
93
91
|
</th>
|
94
92
|
<td>
|
95
|
-
<el-form-item prop="
|
96
|
-
<base-input-number v-model="requestSetting.
|
93
|
+
<el-form-item prop="readTimeout" :rules="[{ required: false, trigger: 'blur' }]">
|
94
|
+
<base-input-number v-model="requestSetting.readTimeout" clearable/>
|
97
95
|
</el-form-item>
|
98
96
|
</td>
|
97
|
+
<td colspan="2"><span class="tips_1">{{ $t1('注:不填默认60000毫秒') }}</span></td>
|
98
|
+
</tr>
|
99
|
+
<tr>
|
99
100
|
<th>
|
100
|
-
|
101
|
+
<em class="f-red">*</em>
|
102
|
+
{{ $t1('是否启用') }}
|
101
103
|
</th>
|
102
104
|
<td>
|
103
|
-
<el-form-item prop="
|
104
|
-
<
|
105
|
+
<el-form-item prop="enabled" :rules="[{ required: true, trigger: 'blur' }]">
|
106
|
+
<el-radio-group v-model="requestSetting.enabled">
|
107
|
+
<el-radio :label="true">{{ $t1('启用') }}</el-radio>
|
108
|
+
<el-radio :label="false">{{ $t1('禁用') }}</el-radio>
|
109
|
+
</el-radio-group>
|
105
110
|
</el-form-item>
|
106
111
|
</td>
|
107
112
|
</tr>
|
@@ -109,7 +114,7 @@
|
|
109
114
|
<th>
|
110
115
|
{{ $t1('备注') }}
|
111
116
|
</th>
|
112
|
-
<td colspan="
|
117
|
+
<td colspan="7">
|
113
118
|
<el-form-item prop="remark" :rules="[{ required: false, trigger: 'blur' }]">
|
114
119
|
<el-input type="textarea" :rows="2" :placeholder="$t1('请输入内容')" size="small"
|
115
120
|
v-model="requestSetting.remark"
|
@@ -117,18 +122,18 @@
|
|
117
122
|
</el-form-item>
|
118
123
|
</td>
|
119
124
|
</tr>
|
120
|
-
<!-- <tr>
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
125
|
+
<!-- <tr>
|
126
|
+
<th>
|
127
|
+
{{ $t1('前置脚本') }}
|
128
|
+
<scriptTestButton :script.sync="requestSetting.preScript"></scriptTestButton>
|
129
|
+
</th>
|
130
|
+
<td colspan="7">
|
131
|
+
<el-form-item prop="preScript" :rules="[{ required: false, trigger: 'blur' }]">
|
132
|
+
<code-editor mode="java" :readonly="!1" v-model="requestSetting.preScript"
|
133
|
+
v-if="showCodeEditor"></code-editor>
|
134
|
+
</el-form-item>
|
135
|
+
</td>
|
136
|
+
</tr>-->
|
132
137
|
<tr>
|
133
138
|
<th>
|
134
139
|
{{ $t1('后置脚本') }}
|
@@ -178,7 +183,7 @@ export default {
|
|
178
183
|
readTimeout: 60000,
|
179
184
|
preScript: null,
|
180
185
|
postScript: null,
|
181
|
-
exeCompanyCode:null
|
186
|
+
exeCompanyCode: null
|
182
187
|
},
|
183
188
|
showCodeEditor: false
|
184
189
|
};
|
@@ -14,7 +14,6 @@
|
|
14
14
|
<div class="fl">
|
15
15
|
<vxe-button status="primary" class="button-sty" icon="el-icon-plus" @click="openEditDialog">{{ $t1('新增') }}
|
16
16
|
</vxe-button>
|
17
|
-
<base-table-export :option="{ title: '同步调用接口导出', targetRef: 'table-m1'}" :parent-target="_self"/>
|
18
17
|
</div>
|
19
18
|
<div class="fr">
|
20
19
|
<vxe-button icon="el-icon-brush" class="button-sty" @click="resetEvent" type="text" status="primary"
|