style:监管登薄日志
Showing
2 changed files
with
17 additions
and
10 deletions
1 | <template> | 1 | <template> |
2 | <!-- 修改登簿日志弹窗 --> | 2 | <!-- 修改登簿日志弹窗 --> |
3 | <el-dialog :close-on-click-modal="false" top="0" @close="closeDialog" | 3 | <el-dialog :close-on-click-modal="false" top="0" @close="closeDialog" |
4 | custom-class="dialogBox entryJournal commonDialog editDialogBox mainCenter" :visible.sync="dialogVisible" width="90%"> | 4 | custom-class="dialogBox entryJournal commonDialog editDialogBox mainCenter" :visible.sync="dialogVisible" width="90%"> |
5 | <div slot="title" class="dialog_title" ref="dialogTitle"> | 5 | <div slot="title" class="dialog_title" ref="dialogTitle"> |
... | @@ -188,18 +188,19 @@ | ... | @@ -188,18 +188,19 @@ |
188 | <btn nativeType="cx" @click="submitForm">保 存</btn> | 188 | <btn nativeType="cx" @click="submitForm">保 存</btn> |
189 | </div> | 189 | </div> |
190 | <div class="d-center" v-if="!$store.state.business.Edit && titleName == 'xml'"> | 190 | <div class="d-center" v-if="!$store.state.business.Edit && titleName == 'xml'"> |
191 | <btn nativeType="cx" @click="handleExtract">再次抽取</btn> | ||
191 | <btn nativeType="cx" @click="handleResubmit">重新上报</btn> | 192 | <btn nativeType="cx" @click="handleResubmit">重新上报</btn> |
192 | </div> | 193 | </div> |
193 | </el-dialog> | 194 | </el-dialog> |
194 | </template> | 195 | </template> |
195 | 196 | ||
196 | <script> | 197 | <script> |
197 | import { sbdata, sendThis } from './data/sbdata' | 198 | import { sbdata, sendThis } from './data/sbdata' |
198 | import { dbdata, sendThis1 } from './data/dbdata' | 199 | import { dbdata, sendThis1 } from './data/dbdata' |
199 | import { getDetail, edit, regenerateDbXml } from "@/api/recordLog.js" | 200 | import { getDetail, edit, regenerateDbXml } from "@/api/recordLog.js" |
200 | import JsonEditor from "@/components/JsonEditor.vue"; | 201 | import JsonEditor from "@/components/JsonEditor.vue"; |
201 | import { judgeListComplete } from "@/utils/tools.js" | 202 | import { judgeListComplete } from "@/utils/tools.js" |
202 | export default { | 203 | export default { |
203 | components: { JsonEditor }, | 204 | components: { JsonEditor }, |
204 | data () { | 205 | data () { |
205 | return { | 206 | return { |
... | @@ -427,6 +428,12 @@ export default { | ... | @@ -427,6 +428,12 @@ export default { |
427 | } | 428 | } |
428 | }, 600), | 429 | }, 600), |
429 | /** | 430 | /** |
431 | * @description: 登薄再次抽取 | ||
432 | * @param {*} function | ||
433 | * @author: renchao | ||
434 | */ | ||
435 | handleExtract () { }, | ||
436 | /** | ||
430 | * @description: 登薄日志重新生成报文 | 437 | * @description: 登薄日志重新生成报文 |
431 | * @param {*} function | 438 | * @param {*} function |
432 | * @author: renchao | 439 | * @author: renchao |
... | @@ -442,7 +449,7 @@ export default { | ... | @@ -442,7 +449,7 @@ export default { |
442 | }).catch(() => { | 449 | }).catch(() => { |
443 | this.$message({ | 450 | this.$message({ |
444 | type: 'info', | 451 | type: 'info', |
445 | message: '已取消删除' | 452 | message: '已取消上报报文' |
446 | }) | 453 | }) |
447 | }) | 454 | }) |
448 | function createXml () { | 455 | function createXml () { |
... | @@ -458,7 +465,7 @@ export default { | ... | @@ -458,7 +465,7 @@ export default { |
458 | } | 465 | } |
459 | } | 466 | } |
460 | } | 467 | } |
461 | } | 468 | } |
462 | </script> | 469 | </script> |
463 | 470 | ||
464 | 471 | ... | ... |
-
Please register or sign in to post a comment