diff --git a/node_modules.zip b/node_modules.zip deleted file mode 100644 index 1f4646f..0000000 Binary files a/node_modules.zip and /dev/null differ diff --git a/src/api/apis/businessVoucher.js b/src/api/apis/businessVoucher.js index 9aa27e0..97aba13 100644 --- a/src/api/apis/businessVoucher.js +++ b/src/api/apis/businessVoucher.js @@ -23,3 +23,25 @@ export function queryDetailsByBillCodeAPI(data) { data, }); } +export function queryBillFiledsAPI(data) { + return request({ + url: "/kangarooDataCenterV3/ae/push/log/queryBillFileds", + method: "post", + data, + }); +} + +export function queryBillPagedAPI(data) { + return request({ + url: "/kangarooDataCenterV3/ae/push/log/queryBillPaged", + method: "post", + data, + }); +} +export function queryDetailsByBillCodeAndMdmIdAPI(data) { + return request({ + url: "/kangarooDataCenterV3/ae/push/log/queryDetailsByBillCodeAndMdmId", + method: "post", + data, + }); +} diff --git a/src/api/apis/operationalModule.js b/src/api/apis/operationalModule.js index f470e13..3bf903d 100644 --- a/src/api/apis/operationalModule.js +++ b/src/api/apis/operationalModule.js @@ -1,8 +1,9 @@ import request from "@/utils/request"; import baseTree from '@/components/base/BaseMenuTree/index.vue' +import basePage from '@/components/base/basePage/index.vue' export default { - components: { baseTree } + components: { basePage, baseTree } } //业务模块 diff --git a/src/components/base/basePage/index.vue b/src/components/base/basePage/index.vue index 344ad6a..3975788 100644 --- a/src/components/base/basePage/index.vue +++ b/src/components/base/basePage/index.vue @@ -35,12 +35,14 @@ export default { sizeChange(val) { let pageModel = this.pageModel pageModel.pageSize = val + pageModel.limit = val this.$emit('update:pageModel', pageModel) this.$emit('onPageChange') }, currentChange(val) { let pageModel = this.pageModel pageModel.pageIndex = val + pageModel.page = val this.$emit('update:pageModel', pageModel) this.$emit('onPageChange') } diff --git a/src/layout/components/IframeToggle/index.vue b/src/layout/components/IframeToggle/index.vue index c0a7967..a44e1cc 100644 --- a/src/layout/components/IframeToggle/index.vue +++ b/src/layout/components/IframeToggle/index.vue @@ -47,7 +47,11 @@ export default { return data[4]; }else if (url.includes("businessMatter")) { return data[5]; - } else { + }else if (url.includes("accountantMatter")) { + return data[6]; + } + + else { return empty; } } else { diff --git a/src/layout/components/NewMenu/index.vue b/src/layout/components/NewMenu/index.vue index a3d0099..bcb3c13 100644 --- a/src/layout/components/NewMenu/index.vue +++ b/src/layout/components/NewMenu/index.vue @@ -115,7 +115,8 @@ export default { this.currentPath.includes("IntegrationTaskCenter") || this.currentPath.includes("businessCenter") || this.currentPath.includes("ApplicationCenter")|| - this.currentPath.includes("businessMatter") + this.currentPath.includes("businessMatter") || + this.currentPath.includes("accountantMatter") ) { route.meta.affix = true; @@ -186,6 +187,12 @@ export default { icon: "el-icon-postcard", show: false, }, + { + title: "财资事项平台", + path: "/accountantMatter", + icon: "el-icon-postcard", + show: false, + }, ], }; }, @@ -198,7 +205,8 @@ export default { url.includes("IntegrationTaskCenter") || url.includes("businessCenter") || url.includes("ApplicationCenter") || - url.includes("businessMatter") + url.includes("businessMatter") || + url.includes("accountantMatter") ) { this.$store.dispatch("settings/changeSetting", { key: "showTagsView", @@ -277,7 +285,8 @@ export default { item.path.includes("IntegrationTaskCenter") || item.path.includes("businessCenter") || item.path.includes("ApplicationCenter") || - item.path.includes("businessMatter") + item.path.includes("businessMatter") || + item.path.includes("accountantMatter") ) { this.$store.dispatch("settings/changeSetting", { key: "showTagsView", diff --git a/src/layout/components/TagsView/index.vue b/src/layout/components/TagsView/index.vue index b8d476e..0fc2eb5 100644 --- a/src/layout/components/TagsView/index.vue +++ b/src/layout/components/TagsView/index.vue @@ -135,7 +135,11 @@ export default { currentData = data[4] } else if (url.includes('businessMatter')) { currentData = data[5] - } else { + } else if (url.includes('accountantMatter')) { + currentData = data[6] + } + + else { currentData = [] } } else { @@ -266,6 +270,8 @@ export default { currentData = data[4] } else if (url.includes('businessMatter')) { currentData = data[5] + }else if (url.includes('accountantMatter')) { + currentData = data[6] } } if (this.isActive(view)) { @@ -290,6 +296,8 @@ export default { INDEX = 4 } else if (url.includes('businessMatter')) { INDEX = 5 + } else if (url.includes('accountantMatter')) { + INDEX = 6 } } @@ -322,6 +330,8 @@ export default { INDEX = 4 } else if (url.includes('businessMatter')) { INDEX = 5 + }else if (url.includes('accountantMatter')) { + INDEX = 6 } } if (INDEX != null) { @@ -361,6 +371,8 @@ export default { INDEX = 4 } else if (url.includes('businessMatter')) { INDEX = 5 + } else if (url.includes('accountantMatter')) { + INDEX = 6 } } if (INDEX != null) { diff --git a/src/router/index.js b/src/router/index.js index eebb406..279979b 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -172,6 +172,15 @@ export const constantRoutes = [{ title: '会计事项平台', icon: 'dashboard' } + }, + { + path: 'accountantMatter', + component: () => import('@/views/newVersionView/accountantMatter/index'), + name: 'accountantMatter', + meta: { + title: '财资事项平台', + icon: 'dashboard' + } } ] }, diff --git a/src/store/modules/tagsView.js b/src/store/modules/tagsView.js index 9f277d4..5cadf1e 100644 --- a/src/store/modules/tagsView.js +++ b/src/store/modules/tagsView.js @@ -7,6 +7,7 @@ const state = { [], [], [], + [] ], cachedViews: [ [], @@ -15,6 +16,7 @@ const state = { [], [], [], + [] ], iframeViews: [ [], @@ -22,6 +24,7 @@ const state = { [], [], [], + [], [] ], @@ -46,6 +49,8 @@ const mutations = { Index = 4 }else if (url.includes("businessMatter")) { Index = 5; + }else if (url.includes("accountantMatter")) { + Index = 6; } } if (Index != null) { @@ -73,6 +78,8 @@ const mutations = { Index = 4 }else if (url.includes("businessMatter")) { Index = 5; + }else if (url.includes("accountantMatter")) { + Index = 6; } } if (Index != null) { @@ -109,6 +116,8 @@ const mutations = { Index = 4 }else if (url.includes("businessMatter")) { Index = 5; + }else if (url.includes("accountantMatter")) { + Index = 6; } } if (Index != null) { @@ -134,6 +143,8 @@ const mutations = { Index = 4 }else if (url.includes("businessMatter")) { Index = 5; + }else if (url.includes("accountantMatter")) { + Index = 6; } } if (Index != null) { @@ -162,6 +173,8 @@ const mutations = { Index = 4 }else if (url.includes("businessMatter")) { Index = 5; + }else if (url.includes("accountantMatter")) { + Index = 6; } } if (Index != null) { @@ -185,6 +198,8 @@ const mutations = { Index = 4 }else if (url.includes("businessMatter")) { Index = 5; + }else if (url.includes("accountantMatter")) { + Index = 6; } } if (Index != null) { @@ -209,6 +224,8 @@ const mutations = { Index = 4 }else if (url.includes("businessMatter")) { Index = 5; + }else if (url.includes("accountantMatter")) { + Index = 6; } } if (Index != null) { @@ -233,7 +250,9 @@ const mutations = { } else if (url.includes("ApplicationCenter")) { INDEX = 4 }else if (url.includes("businessMatter")) { - Index = 5; + INDEX = 5; + }else if (url.includes("accountantMatter")) { + INDEX = 6; } } if (INDEX != null) { @@ -263,6 +282,8 @@ const mutations = { INDEX = 4 }else if (url.includes("businessMatter")) { INDEX = 5; + }else if (url.includes("accountantMatter")) { + INDEX = 6; } } if (INDEX != null) { @@ -287,6 +308,8 @@ const mutations = { INDEX = 4 }else if (url.includes("businessMatter")) { INDEX = 5; + }else if (url.includes("accountantMatter")) { + INDEX = 6; } } if (INDEX != null) { @@ -309,6 +332,8 @@ const mutations = { INDEX = 4 }else if (url.includes("businessMatter")) { INDEX = 5; + }else if (url.includes("accountantMatter")) { + INDEX = 6; } } if (INDEX != null) { @@ -331,6 +356,8 @@ const mutations = { INDEX = 4 }else if (url.includes("businessMatter")) { INDEX = 5; + }else if (url.includes("accountantMatter")) { + INDEX = 6; } } if (INDEX != null) { @@ -358,6 +385,8 @@ const mutations = { INDEX = 4 }else if (url.includes("businessMatter")) { INDEX = 5; + }else if (url.includes("accountantMatter")) { + INDEX = 6; } } if (INDEX != null) { @@ -398,6 +427,8 @@ const mutations = { INDEX = 4 }else if (url.includes("businessMatter")) { INDEX = 5; + }else if (url.includes("accountantMatter")) { + INDEX = 6; } } if (INDEX != null) { diff --git a/src/views/ItemEntryTemplate/index.vue b/src/views/ItemEntryTemplate/index.vue index 85db6b3..9879932 100644 --- a/src/views/ItemEntryTemplate/index.vue +++ b/src/views/ItemEntryTemplate/index.vue @@ -425,6 +425,28 @@ {{ row.row.pkCashflow }} + +