From 9e0537d3e9b16688c3d66baa569b0833c53a43c6 Mon Sep 17 00:00:00 2001 From: lilu Date: Wed, 11 Jan 2023 18:05:51 +0800 Subject: [PATCH] =?UTF-8?q?=E6=97=B6=E9=97=B4=E6=A0=BC=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/modular/main/DjyApiAuth.js | 0 .../detail/modules/mailingInfo.vue | 24 +- .../detail/modules/operationArea.vue | 2 +- src/views/main/DjyApiAuth/index.vue | 313 ++++++++++++++++++ src/views/main/DjyApiAuth/modules/addFrom.vue | 170 ++++++++++ src/views/main/DjyApiAuth/modules/initData.js | 11 + 6 files changed, 507 insertions(+), 13 deletions(-) create mode 100644 src/api/modular/main/DjyApiAuth.js create mode 100644 src/views/main/DjyApiAuth/index.vue create mode 100644 src/views/main/DjyApiAuth/modules/addFrom.vue create mode 100644 src/views/main/DjyApiAuth/modules/initData.js diff --git a/src/api/modular/main/DjyApiAuth.js b/src/api/modular/main/DjyApiAuth.js new file mode 100644 index 0000000..e69de29 diff --git a/src/views/main/BookingLedger/detail/modules/mailingInfo.vue b/src/views/main/BookingLedger/detail/modules/mailingInfo.vue index e92aab7..e550b92 100644 --- a/src/views/main/BookingLedger/detail/modules/mailingInfo.vue +++ b/src/views/main/BookingLedger/detail/modules/mailingInfo.vue @@ -1667,25 +1667,25 @@ export default { // } }, closingdateChange (date, dateString) { - // if (!dateString) { - // this.details.closingdate = null - // } else { + if (!dateString) { + this.details.closingdate = null + } else { this.details.closingdate = dateString + ':00' - // } + } }, closevgmdateChange (date, dateString) { - // if (!dateString) { - // this.details.closevgmdate = null - // } else { + if (!dateString) { + this.details.closevgmdate = null + } else { this.details.closevgmdate = dateString + ':00' - // } + } }, closedocdateChange (date, dateString) { - // if (!dateString) { - // this.details.closedocdate = null - // } else { + if (!dateString) { + this.details.closedocdate = null + } else { this.details.closedocdate = dateString + ':00' - // } + } }, getTextareaChange ({ type, value }) { console.log('== 输入框更新 ==', type, value) diff --git a/src/views/main/BookingLedger/detail/modules/operationArea.vue b/src/views/main/BookingLedger/detail/modules/operationArea.vue index 6390e44..33ae116 100644 --- a/src/views/main/BookingLedger/detail/modules/operationArea.vue +++ b/src/views/main/BookingLedger/detail/modules/operationArea.vue @@ -1568,7 +1568,7 @@ export default { this.traceModalVisible = false this.traceValue = [] } else { - this.$message.success(res.message) + this.$message.error(res.message) this.traceModalVisible = false this.traceValue = [] } diff --git a/src/views/main/DjyApiAuth/index.vue b/src/views/main/DjyApiAuth/index.vue new file mode 100644 index 0000000..a1df171 --- /dev/null +++ b/src/views/main/DjyApiAuth/index.vue @@ -0,0 +1,313 @@ + + + \ No newline at end of file diff --git a/src/views/main/DjyApiAuth/modules/addFrom.vue b/src/views/main/DjyApiAuth/modules/addFrom.vue new file mode 100644 index 0000000..9995c30 --- /dev/null +++ b/src/views/main/DjyApiAuth/modules/addFrom.vue @@ -0,0 +1,170 @@ + + + diff --git a/src/views/main/DjyApiAuth/modules/initData.js b/src/views/main/DjyApiAuth/modules/initData.js new file mode 100644 index 0000000..905ed79 --- /dev/null +++ b/src/views/main/DjyApiAuth/modules/initData.js @@ -0,0 +1,11 @@ +export default { + columns: [ + { type: 'seq', width: 60, noDraggable: true }, + { field: 'goodsCategory', title: '品名分类', showHeaderOverflow: true, sortable: true }, + { field: 'goodsCategoryName', title: '品名分类名称', showHeaderOverflow: true, sortable: true }, + { field: 'createUserName', title: '创建者名称', showHeaderOverflow: true, sortable: true }, + { field: 'createTime', title: '创建时间', showHeaderOverflow: true, sortable: true }, + { field: 'updateTime', title: '更新时间', showHeaderOverflow: true, sortable: true }, + { field: 'operate', title: '操作', width: 150, noDraggable: true, slots: { default: 'operate' }, fixed: 'right', resizable: false } + ] +}