style:提交修改
Showing
6 changed files
with
48 additions
and
56 deletions
src/api/config.js
0 → 100644
1 | export default { | ||
2 | // SERVERAPI: '/service-bdcsjsb-th', //浩浩 | ||
3 | // SERVERAPI: '/service-bdcsjsb-zz', | ||
4 | SERVERAPI: '/bdcsjsb', //赵千 | ||
5 | MANAGEMENTAPI: 'http://192.168.2.236/management' | ||
6 | // SERVERAPI: '/bdcsjsb-service' | ||
7 | // SERVERAPI: '/bdcsjsb-jiao0' | ||
8 | } | ||
9 | // 汉中 | ||
10 | // export default { | ||
11 | // // SERVERAPI: '/service-bdcsjsb-th', //线上 | ||
12 | // SERVERAPI: '/bdcsjsb', //赵千 | ||
13 | // MANAGEMENTAPI: 'http://172.16.56.32:8877/management' | ||
14 | // } |
1 | <template> | 1 | <template> |
2 | <!-- 编辑 --> | 2 | <el-dialog :close-on-click-modal="false" top="0" @close="closeDialog" custom-class="dialogBox editDialogBox mainCenter" |
3 | <el-dialog :close-on-click-modal="false" top="0" @close="closeDialog" | 3 | :visible.sync="dialogVisible" width="85%"> |
4 | custom-class="dialogBox editDialogBox mainCenter" :visible.sync="dialogVisible" width="85%"> | ||
5 | <div slot="title" class="dialog_title" ref="dialogTitle"> | 4 | <div slot="title" class="dialog_title" ref="dialogTitle"> |
6 | {{ title || '标题' }} | 5 | {{ title || '标题' }} |
7 | </div> | 6 | </div> |
... | @@ -96,6 +95,10 @@ | ... | @@ -96,6 +95,10 @@ |
96 | <component :is="editItem" ref="editItem" :class="{ 'editForm': $store.state.business.Edit }" | 95 | <component :is="editItem" ref="editItem" :class="{ 'editForm': $store.state.business.Edit }" |
97 | :bsmYwsjb="bsmYwsjb" :bsmSjsb="dataReport.bsmReport || dataReport.bsmSjsb" /> | 96 | :bsmYwsjb="bsmYwsjb" :bsmSjsb="dataReport.bsmReport || dataReport.bsmSjsb" /> |
98 | </div> | 97 | </div> |
98 | <div class="d-center"> | ||
99 | <btn nativeType="cz" @click="dialogVisible = false">取 消</btn> | ||
100 | <btn nativeType="cx" @click="submitForm">确 定</btn> | ||
101 | </div> | ||
99 | </div> | 102 | </div> |
100 | <div v-if="titleName == 'xyjg'"> | 103 | <div v-if="titleName == 'xyjg'"> |
101 | <Xyjg :form-data='dataReport'></Xyjg> | 104 | <Xyjg :form-data='dataReport'></Xyjg> |
... | @@ -160,7 +163,6 @@ export default { | ... | @@ -160,7 +163,6 @@ export default { |
160 | digitalSign: "", | 163 | digitalSign: "", |
161 | }, | 164 | }, |
162 | images: require("./images/success.gif"), | 165 | images: require("./images/success.gif"), |
163 | saveloding: false, | ||
164 | dialogVisible: false, | 166 | dialogVisible: false, |
165 | activeName: undefined, | 167 | activeName: undefined, |
166 | editItem: "", | 168 | editItem: "", |
... | @@ -234,51 +236,25 @@ export default { | ... | @@ -234,51 +236,25 @@ export default { |
234 | this.headerList = []; | 236 | this.headerList = []; |
235 | }, | 237 | }, |
236 | submitForm () { | 238 | submitForm () { |
237 | let _this = this; | 239 | // this.$store.dispatch( |
238 | this.$store.dispatch( | 240 | // "business/setRules", |
239 | "business/setRules", | 241 | // this.$store.state.business.subRules |
240 | this.$store.state.business.subRules | 242 | // ); |
241 | ); | 243 | this.$refs["editItem"].handleUpdateForm() |
242 | this.$nextTick(() => { | 244 | .then((res) => { |
243 | this.$refs["editItem"] && | 245 | if (res == 200) { |
244 | this.$refs["editItem"].verificationForm().then((res) => { | 246 | this.$message({ |
245 | if (!res) { | 247 | message: '修改成功', |
246 | _this.$message({ | 248 | type: 'success' |
247 | message: "请检查表单必填项是否完整", | 249 | }) |
248 | type: "warning", | 250 | } |
249 | }); | 251 | }) |
250 | return false; | 252 | .catch(function (error) { |
251 | } else { | 253 | this.$alert(error, "提示", { |
252 | _this.saveloding = true; | 254 | confirmButtonText: "确定", |
253 | _this.$refs["editItem"] | 255 | type: "error" |
254 | .handleUpdateForm() | 256 | }) |
255 | .then((res) => { | 257 | }) |
256 | if (res == 200) { | ||
257 | _this.$alert( | ||
258 | '<p><img class="success-images" src="' + | ||
259 | this.images + | ||
260 | '"/>编辑成功!</p>', | ||
261 | "提示", | ||
262 | { | ||
263 | showConfirmButton: false, | ||
264 | dangerouslyUseHTMLString: true, | ||
265 | } | ||
266 | ); | ||
267 | setTimeout(() => { | ||
268 | MessageBox.close(false); | ||
269 | }, 1500); | ||
270 | } | ||
271 | }) | ||
272 | .catch(function (error) { | ||
273 | _this.$alert(error, "提示", { | ||
274 | confirmButtonText: "确定", | ||
275 | type: "error", | ||
276 | }); | ||
277 | }); | ||
278 | _this.saveloding = false; | ||
279 | } | ||
280 | }); | ||
281 | }); | ||
282 | } | 258 | } |
283 | } | 259 | } |
284 | } | 260 | } |
... | @@ -315,6 +291,8 @@ export default { | ... | @@ -315,6 +291,8 @@ export default { |
315 | } | 291 | } |
316 | 292 | ||
317 | .sjmx { | 293 | .sjmx { |
294 | padding-bottom: 25px; | ||
295 | |||
318 | /deep/.el-tabs__item { | 296 | /deep/.el-tabs__item { |
319 | height: 50px; | 297 | height: 50px; |
320 | padding-top: 6px; | 298 | padding-top: 6px; |
... | @@ -390,7 +368,7 @@ export default { | ... | @@ -390,7 +368,7 @@ export default { |
390 | } | 368 | } |
391 | 369 | ||
392 | .edit-content { | 370 | .edit-content { |
393 | height: 450px; | 371 | height: 420px; |
394 | overflow-y: auto; | 372 | overflow-y: auto; |
395 | overflow-x: hidden; | 373 | overflow-x: hidden; |
396 | padding-right: 1px; | 374 | padding-right: 1px; | ... | ... |
1 | <template> | 1 | <template> |
2 | <el-input type="textarea" :rows="6" disabled placeholder="配置参数" v-model="resultInfo"> | 2 | <div> |
3 | </el-input> | 3 | <el-input type="textarea" :rows="6" disabled placeholder="配置参数" v-model="resultInfo"> |
4 | </el-input> | ||
5 | </div> | ||
4 | </template> | 6 | </template> |
5 | <script> | 7 | <script> |
6 | // 引入json编译器 | 8 | // 引入json编译器 | ... | ... |
... | @@ -25,7 +25,7 @@ | ... | @@ -25,7 +25,7 @@ |
25 | <el-form-item> | 25 | <el-form-item> |
26 | <btn nativeType="cz" @click="handleResetForm">重置</btn> | 26 | <btn nativeType="cz" @click="handleResetForm">重置</btn> |
27 | <btn nativeType="cx" @click="handleSearch">查询</btn> | 27 | <btn nativeType="cx" @click="handleSearch">查询</btn> |
28 | <btn nativeType="cx" @click="handlesetExport2Excel(2121)">导出</btn> | 28 | <btn nativeType="cx" @click="handlesetExport2Excel(2121)">导出1</btn> |
29 | </el-form-item> | 29 | </el-form-item> |
30 | </el-col> | 30 | </el-col> |
31 | </el-row> | 31 | </el-row> | ... | ... |
-
Please register or sign in to post a comment