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 }
+ ]
+}