diff --git a/.env.production b/.env.production index 99b00d4..1953fee 100644 --- a/.env.production +++ b/.env.production @@ -22,4 +22,4 @@ VUE_APP_SJ_API = 'http://${VUE_APP_SJ_BASE_IP_ADDRESS}:9092/SJSE/' VUE_APP_PREVIEW_API = '${VUE_APP_SERVER_API}/sdma-preview/' # websocket连接地址 -VUE_APP_WEBSOCKET = 'ws://${VUE_APP_SERVER_ADDRESS}:9100/sdma-websocket/websocket/' +VUE_APP_WEBSOCKET = 'ws://${VUE_APP_SERVER_ADDRESS}/sdma-websocket/websocket/' diff --git a/.env.test b/.env.test index abe1fde..135c37a 100644 --- a/.env.test +++ b/.env.test @@ -22,4 +22,4 @@ VUE_APP_SJ_API = 'http://${VUE_APP_SJ_BASE_IP_ADDRESS}:9092/SJSE/' VUE_APP_PREVIEW_API = '${VUE_APP_SERVER_API}/sdma-preview/' # websocket连接地址 -VUE_APP_WEBSOCKET = 'ws://${VUE_APP_SERVER_ADDRESS}:9100/sdma-websocket/websocket/' +VUE_APP_WEBSOCKET = 'ws://${VUE_APP_SERVER_ADDRESS}/sdma-websocket/websocket/' diff --git a/src/api/ysjl.js b/src/api/ysjl.js index 45b9a59..28fcb06 100644 --- a/src/api/ysjl.js +++ b/src/api/ysjl.js @@ -134,6 +134,17 @@ export function getNeedRecordList(query) { }) } +/** + * 待办原始记录列表查询 + */ +export function getListUnDoneYsjl(params) { + return api({ + url: '/ysjl/getListUnDoneYsjl', + method: 'get', + params + }) +} + export function exportExcel(params) { return preview({ url: '/download/downloadGrantList' + '?' + qs.stringify(params, { indices: false }), diff --git a/src/components/Crud/index.vue b/src/components/Crud/index.vue index f6b888b..955cdab 100644 --- a/src/components/Crud/index.vue +++ b/src/components/Crud/index.vue @@ -126,10 +126,10 @@ export default { this.allColumnsSelectedIndeterminate = false }, handleCheckedTableColumnsChange(item) { - let totalCount = 0 + let total = 0 let selectedCount = 0 for (const key in this.crud.props.tableColumns) { - ++totalCount + ++total if (Object.prototype.hasOwnProperty.call(this.crud.props.tableColumns, key)) { selectedCount += this.crud.props.tableColumns[key].visible ? 1 : 0 } @@ -141,8 +141,8 @@ export default { }) return } - this.allColumnsSelected = selectedCount === totalCount - this.allColumnsSelectedIndeterminate = selectedCount !== totalCount && selectedCount !== 0 + this.allColumnsSelected = selectedCount === total + this.allColumnsSelectedIndeterminate = selectedCount !== total && selectedCount !== 0 }, toggleSearch() { this.crud.props.searchToggle = !this.crud.props.searchToggle diff --git a/src/components/Notice/message.vue b/src/components/Notice/message.vue index b8cb5cf..5141c3c 100644 --- a/src/components/Notice/message.vue +++ b/src/components/Notice/message.vue @@ -234,7 +234,7 @@ export default { params: this.readListQuery }).then(data => { this.readMessage = data.list - this.readMessageTotal = data.totalCount + this.readMessageTotal = data.total // this.systemMessageCount = data.systemMessageCount // this.readMessageCount = data.readMessageCount // this.recycleMessageCount = data.recycleMessageCount @@ -287,7 +287,7 @@ export default { params: this.recycleListQuery }).then(data => { this.recycleMessage = data.list - this.recycleMessageTotal = data.totalCount + this.recycleMessageTotal = data.total this.systemMessageCount = data.systemMessageCount this.readMessageCount = data.readMessageCount this.recycleMessageCount = data.recycleMessageCount diff --git a/src/components/drawerDialog/index.vue b/src/components/drawerDialog/index.vue index b6a0964..a55b733 100644 --- a/src/components/drawerDialog/index.vue +++ b/src/components/drawerDialog/index.vue @@ -356,8 +356,8 @@
- + -
- - diff --git a/src/views/bggl/components/original_db_list.vue b/src/views/bggl/components/original_db_list.vue index 8b9a191..7749288 100644 --- a/src/views/bggl/components/original_db_list.vue +++ b/src/views/bggl/components/original_db_list.vue @@ -6,7 +6,7 @@ 批量发送 - + 批量驳回 @@ -18,9 +18,6 @@ 退回到记录 - - 办结报告 -
@@ -151,7 +148,7 @@
- +
重启流程: @@ -413,7 +410,7 @@ export default { components: { Sticky, Pagination, Enclosure }, data() { return { - totalCount: 0, + total: 0, list: [], listQuery: { pageNum: 1, // 页码 @@ -482,7 +479,7 @@ export default { pageRow: 20, // 每页条数 searchYsjl: {} }, - totalCountCopy: 0, + totalCopy: 0, copyNum: 1, // 复制份数 manufacturParam: {}, bzrQianming: false, @@ -566,7 +563,7 @@ export default { }, getList() { this.api({ - url: '/ysjl/getList', + url: '/ysjl/getListUnDoneJybg', method: 'get', params: this.listQuery }).then(data => { @@ -578,7 +575,7 @@ export default { } } this.list = data.list - this.totalCount = data.total + this.total = data.total this.common.switchInspection(this.list) }) }, @@ -1306,7 +1303,7 @@ export default { params: this.listQueryCopy }).then(data => { this.listCopy = data.list - this.totalCountCopy = data.totalCount + this.totalCopy = data.total }) }, handleFilterCopy() { diff --git a/src/views/bggl/daiban_list.vue b/src/views/bggl/daiban_list.vue index a31780c..073d67a 100644 --- a/src/views/bggl/daiban_list.vue +++ b/src/views/bggl/daiban_list.vue @@ -1,17 +1,11 @@ diff --git a/src/views/bggl/daishen_list.vue b/src/views/bggl/daishen_list.vue index fb49c3a..3ce72ce 100644 --- a/src/views/bggl/daishen_list.vue +++ b/src/views/bggl/daishen_list.vue @@ -78,7 +78,7 @@
- +
重启流程: @@ -171,7 +171,7 @@ export default { components: { Sticky, Pagination }, data() { return { - totalCount: 0, + total: 0, list: [], listQuery: { pageNum: 1, // 页码 @@ -241,7 +241,7 @@ export default { params: this.listQuery }).then(data => { this.list = data.list - this.totalCount = data.totalCount + this.total = data.total this.common.switchInspection(this.list) }) }, diff --git a/src/views/bggl/eliminatingred_list.vue b/src/views/bggl/eliminatingred_list.vue index 7580637..806c5ae 100644 --- a/src/views/bggl/eliminatingred_list.vue +++ b/src/views/bggl/eliminatingred_list.vue @@ -137,8 +137,8 @@ { this.list = data.list - this.totalCount = data.totalCount + this.total = data.total this.$nextTick(() => { this.$refs.list.doLayout() }) diff --git a/src/views/bggl/sign_list.vue b/src/views/bggl/sign_list.vue index c75a86d..d203a87 100644 --- a/src/views/bggl/sign_list.vue +++ b/src/views/bggl/sign_list.vue @@ -93,8 +93,8 @@ { this.list = data.list - this.totalCount = data.totalCount + this.total = data.total this.common.switchInspection(this.list) }) }, diff --git a/src/views/bggl/yiban_list.vue b/src/views/bggl/yiban_list.vue index 9749ca8..aa2eb02 100644 --- a/src/views/bggl/yiban_list.vue +++ b/src/views/bggl/yiban_list.vue @@ -1,19 +1,19 @@ - +
- diff --git a/src/views/ysjl/components/gascylinder_yb_list.vue b/src/views/ysjl/components/gascylinder_yb_list.vue deleted file mode 100644 index a073c6b..0000000 --- a/src/views/ysjl/components/gascylinder_yb_list.vue +++ /dev/null @@ -1,149 +0,0 @@ - - - diff --git a/src/views/ysjl/components/manufacture_db_list.vue b/src/views/ysjl/components/manufacture_db_list.vue deleted file mode 100644 index 4f38b00..0000000 --- a/src/views/ysjl/components/manufacture_db_list.vue +++ /dev/null @@ -1,1010 +0,0 @@ - - - - diff --git a/src/views/ysjl/components/manufacture_yb_list.vue b/src/views/ysjl/components/manufacture_yb_list.vue deleted file mode 100644 index 2e5a6d6..0000000 --- a/src/views/ysjl/components/manufacture_yb_list.vue +++ /dev/null @@ -1,153 +0,0 @@ - - - diff --git a/src/views/ysjl/components/original_db_list.vue b/src/views/ysjl/components/original_db_list.vue index 11d5c0d..8eb4e80 100644 --- a/src/views/ysjl/components/original_db_list.vue +++ b/src/views/ysjl/components/original_db_list.vue @@ -3,12 +3,6 @@