From 9cba2ab1ad0030a4515b8b97170dc8d338928b5a Mon Sep 17 00:00:00 2001 From: qiuyuan Date: Mon, 19 Jan 2026 15:28:50 +0800 Subject: [PATCH] =?UTF-8?q?=E8=8F=9C=E5=8D=95=E6=A0=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/locales/lang/zh-CN/menu.js | 92 ++--- src/router/routes/balance.js | 29 ++ .../routes/{water.js => certification.js} | 14 +- src/router/routes/computing.js | 51 +++ src/router/routes/computingPoints.js | 29 ++ src/router/routes/computingTicket.js | 29 ++ src/router/routes/container.js | 29 ++ src/router/routes/contract.js | 62 ++++ src/router/routes/exchangeRecord.js | 29 ++ src/router/routes/img.js | 29 ++ src/router/routes/index.js | 32 +- src/router/routes/invoice.js | 96 ++++++ src/router/routes/order.js | 43 +-- src/router/routes/rechargeRecord.js | 29 ++ src/router/routes/refund.js | 76 ----- src/router/routes/resource.js | 34 +- src/router/routes/{user.js => userControl.js} | 23 +- src/router/routes/withdrawal.js | 73 ++++ src/views/balance/components/EditDialog.vue | 158 +++++++++ src/views/balance/index.vue | 199 +++++++++++ .../computingCard}/index.vue | 0 .../computingCenter}/index.vue | 0 .../refundFaild => computing/host}/index.vue | 0 .../pointsList/components/EditDialog.vue | 315 ++++++++++++++++++ .../computingPoints/pointsList/index.vue | 218 ++++++++++++ .../ticketList/components/EditDialog.vue | 315 ++++++++++++++++++ .../computingTicket/ticketList/index.vue | 218 ++++++++++++ .../containerList/components/EditDialog.vue | 315 ++++++++++++++++++ src/views/container/containerList/index.vue | 218 ++++++++++++ .../components/EditDialog.vue | 0 .../contractPendingList}/index.vue | 0 .../components/EditDialog.vue | 0 .../rejectContractList}/index.vue | 20 +- .../sealedtrueList}/components/EditDialog.vue | 0 .../sealedtrueList}/index.vue | 23 +- .../signatureList}/components/EditDialog.vue | 0 .../signatureList}/index.vue | 0 .../exchangeList}/components/EditDialog.vue | 0 .../exchangeList}/index.vue | 29 +- .../imgList}/components/EditDialog.vue | 0 .../{order/orderIng => img/imgList}/index.vue | 31 +- src/views/invoice/index.vue | 3 - .../components/EditDialog.vue | 0 src/views/invoice/invoceBeSentList/index.vue | 281 ++++++++++++++++ .../components/EditDialog.vue | 0 src/views/invoice/invoceFailedList/index.vue | 281 ++++++++++++++++ .../components/EditDialog.vue | 0 .../invoice/invoiceDeliveriesFailed/index.vue | 281 ++++++++++++++++ .../components/EditDialog.vue | 0 .../invoice/invoicePendingList/index.vue | 285 ++++++++++++++++ .../components/EditDialog.vue | 119 +++++++ src/views/invoice/invoiceReviewList/index.vue | 281 ++++++++++++++++ .../components/EditDialog.vue | 119 +++++++ .../invoice/invoiceSuccessList/index.vue | 281 ++++++++++++++++ .../components/EditDialog.vue | 119 +++++++ .../invoice/invoicingFailedList/index.vue | 281 ++++++++++++++++ src/views/order/orderArrearage/index.vue | 301 ----------------- .../order/orderList/components/EditDialog.vue | 119 +++++++ .../order/{orderTally => orderList}/index.vue | 0 .../rechargeList/components/EditDialog.vue | 119 +++++++ .../rechargeRecord/rechargeList/index.vue | 281 ++++++++++++++++ .../resourceAdmin/components/EditDialog.vue | 119 +++++++ src/views/resource/resourceAdmin/index.vue | 281 ++++++++++++++++ .../components/EditDialog.vue | 119 +++++++ .../resource/resourceStatistics/index.vue | 285 ++++++++++++++++ .../ blackList/components/EditDialog.vue | 119 +++++++ .../ blackList}/index.vue | 0 .../userList/components/EditDialog.vue | 119 +++++++ .../{user => userControl}/userList/index.vue | 0 .../index.vue | 0 .../components/EditDialog.vue | 119 +++++++ .../withdrawal/pendingReviewList/index.vue | 281 ++++++++++++++++ .../components/EditDialog.vue | 119 +++++++ .../withdrawal/withdrawErrorList/index.vue | 285 ++++++++++++++++ .../withdrawList/components/EditDialog.vue | 119 +++++++ src/views/withdrawal/withdrawList/index.vue | 281 ++++++++++++++++ .../components/EditDialog.vue | 119 +++++++ .../withdrawal/withdrawRejectList/index.vue | 281 ++++++++++++++++ .../components/EditDialog.vue | 119 +++++++ .../withdrawal/withdrawSuccessList/index.vue | 281 ++++++++++++++++ 80 files changed, 8471 insertions(+), 584 deletions(-) create mode 100644 src/router/routes/balance.js rename src/router/routes/{water.js => certification.js} (62%) create mode 100644 src/router/routes/computing.js create mode 100644 src/router/routes/computingPoints.js create mode 100644 src/router/routes/computingTicket.js create mode 100644 src/router/routes/container.js create mode 100644 src/router/routes/contract.js create mode 100644 src/router/routes/exchangeRecord.js create mode 100644 src/router/routes/img.js create mode 100644 src/router/routes/invoice.js create mode 100644 src/router/routes/rechargeRecord.js delete mode 100644 src/router/routes/refund.js rename src/router/routes/{user.js => userControl.js} (60%) create mode 100644 src/router/routes/withdrawal.js create mode 100644 src/views/balance/components/EditDialog.vue create mode 100644 src/views/balance/index.vue rename src/views/{refund/toBeConfirmed => computing/computingCard}/index.vue (100%) rename src/views/{refund/refunded => computing/computingCenter}/index.vue (100%) rename src/views/{refund/refundFaild => computing/host}/index.vue (100%) create mode 100644 src/views/computingPoints/pointsList/components/EditDialog.vue create mode 100644 src/views/computingPoints/pointsList/index.vue create mode 100644 src/views/computingTicket/ticketList/components/EditDialog.vue create mode 100644 src/views/computingTicket/ticketList/index.vue create mode 100644 src/views/container/containerList/components/EditDialog.vue create mode 100644 src/views/container/containerList/index.vue rename src/views/{order/orderAll => contract/contractPendingList}/components/EditDialog.vue (100%) rename src/views/{resource/computerArea => contract/contractPendingList}/index.vue (100%) rename src/views/{order/orderArrearage => contract/rejectContractList}/components/EditDialog.vue (100%) rename src/views/{resource/host => contract/rejectContractList}/index.vue (92%) rename src/views/{order/orderIng => contract/sealedtrueList}/components/EditDialog.vue (100%) rename src/views/{user/userSure => contract/sealedtrueList}/index.vue (91%) rename src/views/{order/orderTally => contract/signatureList}/components/EditDialog.vue (100%) rename src/views/{resource/computerCard => contract/signatureList}/index.vue (100%) rename src/views/{resource/computerArea => exchangeRecord/exchangeList}/components/EditDialog.vue (100%) rename src/views/{order/orderAll => exchangeRecord/exchangeList}/index.vue (89%) rename src/views/{resource/computerCard => img/imgList}/components/EditDialog.vue (100%) rename src/views/{order/orderIng => img/imgList}/index.vue (88%) delete mode 100644 src/views/invoice/index.vue rename src/views/{resource/host => invoice/invoceBeSentList}/components/EditDialog.vue (100%) create mode 100644 src/views/invoice/invoceBeSentList/index.vue rename src/views/{user/userBlack => invoice/invoceFailedList}/components/EditDialog.vue (100%) create mode 100644 src/views/invoice/invoceFailedList/index.vue rename src/views/{user/userList => invoice/invoiceDeliveriesFailed}/components/EditDialog.vue (100%) create mode 100644 src/views/invoice/invoiceDeliveriesFailed/index.vue rename src/views/{user/userSure => invoice/invoicePendingList}/components/EditDialog.vue (100%) create mode 100644 src/views/invoice/invoicePendingList/index.vue create mode 100644 src/views/invoice/invoiceReviewList/components/EditDialog.vue create mode 100644 src/views/invoice/invoiceReviewList/index.vue create mode 100644 src/views/invoice/invoiceSuccessList/components/EditDialog.vue create mode 100644 src/views/invoice/invoiceSuccessList/index.vue create mode 100644 src/views/invoice/invoicingFailedList/components/EditDialog.vue create mode 100644 src/views/invoice/invoicingFailedList/index.vue delete mode 100644 src/views/order/orderArrearage/index.vue create mode 100644 src/views/order/orderList/components/EditDialog.vue rename src/views/order/{orderTally => orderList}/index.vue (100%) create mode 100644 src/views/rechargeRecord/rechargeList/components/EditDialog.vue create mode 100644 src/views/rechargeRecord/rechargeList/index.vue create mode 100644 src/views/resource/resourceAdmin/components/EditDialog.vue create mode 100644 src/views/resource/resourceAdmin/index.vue create mode 100644 src/views/resource/resourceStatistics/components/EditDialog.vue create mode 100644 src/views/resource/resourceStatistics/index.vue create mode 100644 src/views/userControl/ blackList/components/EditDialog.vue rename src/views/{user/userBlack => userControl/ blackList}/index.vue (100%) create mode 100644 src/views/userControl/userList/components/EditDialog.vue rename src/views/{user => userControl}/userList/index.vue (100%) rename src/views/water/{userList => certificationList}/index.vue (100%) create mode 100644 src/views/withdrawal/pendingReviewList/components/EditDialog.vue create mode 100644 src/views/withdrawal/pendingReviewList/index.vue create mode 100644 src/views/withdrawal/withdrawErrorList/components/EditDialog.vue create mode 100644 src/views/withdrawal/withdrawErrorList/index.vue create mode 100644 src/views/withdrawal/withdrawList/components/EditDialog.vue create mode 100644 src/views/withdrawal/withdrawList/index.vue create mode 100644 src/views/withdrawal/withdrawRejectList/components/EditDialog.vue create mode 100644 src/views/withdrawal/withdrawRejectList/index.vue create mode 100644 src/views/withdrawal/withdrawSuccessList/components/EditDialog.vue create mode 100644 src/views/withdrawal/withdrawSuccessList/index.vue diff --git a/src/locales/lang/zh-CN/menu.js b/src/locales/lang/zh-CN/menu.js index a3ebe5a..9d3dc1a 100644 --- a/src/locales/lang/zh-CN/menu.js +++ b/src/locales/lang/zh-CN/menu.js @@ -1,5 +1,5 @@ -import refund from "../../../router/routes/refund"; -import user from "../../../router/routes/user"; +import refund from "../../../router/routes/computing"; +// import user from "../../../router/routes/user"; export default { welcome: '欢迎', @@ -35,41 +35,57 @@ export default { account: '个人页', 'account.trigger': '触发报错', 'account.logout': '退出登录', - topUpOrder: '充值订单', - paddingOrder: '待支付订单', - paidOrder: '已支付订单', - canceledOrder: '已取消订单', - water: '流水账单管理', - userList: '用户流水列表', - refund: '退款管理', - toBeConfirmed: '待确认列表', - refunded: '已退款列表', - refundFailed: '退款失败列表', - payChannel: '支付渠道设置', - paySet:'支付设置(待开发)', - messageMgt: '短信管理(待开发)', - invoice: '开票管理(待开发)', - contractMgt: '合同管理(待开发)', - activityMgt: '活动管理(待开发)', - userUpgrade: '用户升级管理(待开发)', - bannerMgt: '轮播图管理', - resource: '资源管理', - host: '主机列表', - computerCard: '计算卡列表', - computerArea: '主机区域列表', - mirror: '镜像管理', - mirrorPublic: '公共镜像列表', - mirrorSystem: '系统镜像列表', - mirrorUser: '用户镜像列表', - example: '实例管理', - exampleList: '实例列表', - user: '用户管理', + resource: 'GPU资源管理', + resourceAdmin: '资源池管理', + resourceStatistics: '资源池统计信息', + userControl: '用户管理', userList: '用户列表', - userSure: '待认证列表', - userBlack: '黑名单列表', - order: '订单管理', - orderAll: '全部订单', - orderIng: '运营中订单', - orderArrearage: '欠费订单', - orderTally: '结算订单', + blackList: '黑名单列表 ', + certification: '认证管理', + certificationList: '认证列表', + computingCenter: '算力中心', + computing: '算力管理', + host: '主机', + computingCard: '算力卡', + container: '容器/实例管理', + containerList: '实例', + img: '镜像管理 ', + imgList: '镜像', + order: '实例订单管理', + orderList: '订单列表', + balance: '余额管理', + balanceList: '余额', + computingPoints: '算力点管理', + pointsList: '算力点', + computingTicket: '算力券管理', + ticketList: '算力券', + rechargeRecord: '充值记录管理', + rechargeList: '充值记录', + exchangeRecord: '算力兑换记录管理', + exchangeList: '算力兑换记录', + withdrawal: '提现管理', + pendingReviewList: '待审核列表', + withdrawList: '待提现列表', + withdrawErrorList: '提现失败列表', + withdrawSuccessList: '提现成功列表', + withdrawRejectList: '审核拒绝', + contract: '合同管理', + contractPendingList: '待审核列表', + signatureList: '待签章列表', + + sealedtrueList: '已签章列表', + rejectContractList: '审核拒绝列表', + invoice: '发票管理', + invoiceReviewList: '待审核列表', + invoicePendingList: '待开票列表', + invoceBeSentList: '待寄送列表', + invoceFailedList: '审核失败列表', + invoicingFailedList: '开票失败列表', + invoiceDeliveriesFailed: '寄送失败列表', + invoiceSuccessList: '已完成', + eventCopy: '活动文案', + activities: '活动管理', + newConfiguration: '带新配置', + systemSettings: '系统设置', + allSetting: '短息,支付参数系统配置 ', } diff --git a/src/router/routes/balance.js b/src/router/routes/balance.js new file mode 100644 index 0000000..84a86d7 --- /dev/null +++ b/src/router/routes/balance.js @@ -0,0 +1,29 @@ +import { SettingOutlined } from '@ant-design/icons-vue' + +export default [ + { + path: 'balance', + name: 'balance', + component: 'RouteViewLayout', + meta: { + icon: 'icon-zhifudingjin', + title: '余额管理', + isMenu: true, + keepAlive: true, + permission: '*', + }, + children: [ + { + path: 'balanceList', + name: 'balanceList', + component: 'balance/balanceList/index.vue', + meta: { + title: '余额列表', + isMenu: true, + keepAlive: true, + permission: '*', + }, + }, + ], + }, +] diff --git a/src/router/routes/water.js b/src/router/routes/certification.js similarity index 62% rename from src/router/routes/water.js rename to src/router/routes/certification.js index d2a7c45..0f8558c 100644 --- a/src/router/routes/water.js +++ b/src/router/routes/certification.js @@ -2,23 +2,23 @@ import { SettingOutlined } from '@ant-design/icons-vue' export default [ { - path: 'water', - name: 'water', + path: 'certification', + name: 'certification', component: 'RouteViewLayout', meta: { icon: 'icon-liushui', - title: '流水账单管理', + title: '认证管理', isMenu: true, keepAlive: true, permission: '*', }, children: [ { - path: 'userList', - name: 'userList', - component: 'water/userList/index.vue', + path: 'certificationList', + name: 'certificationList', + component: 'certification/certificationList/index.vue', meta: { - title: '用户流水列表', + title: '认证列表', isMenu: true, keepAlive: true, permission: '*', diff --git a/src/router/routes/computing.js b/src/router/routes/computing.js new file mode 100644 index 0000000..d317d70 --- /dev/null +++ b/src/router/routes/computing.js @@ -0,0 +1,51 @@ +import { SettingOutlined } from '@ant-design/icons-vue' + +export default [ + { + path: 'computing', + name: 'computing', + component: 'RouteViewLayout', + meta: { + icon: 'icon-zhifudingjin', + title: '算力管理', + isMenu: true, + keepAlive: true, + permission: '*', + }, + children: [ + { + path: 'computingCenter', + name: 'computingCenter', + component: 'computing/computingCenter/index.vue', + meta: { + title: '算力中心', + isMenu: true, + keepAlive: true, + permission: '*', + }, + }, + { + path: 'host', + name: 'host', + component: 'computing/host/index.vue', + meta: { + title: '主机', + isMenu: true, + keepAlive: true, + permission: '*', + }, + }, + { + path: 'computingCard', + name: 'computingCard', + component: 'computing/computingCard/index.vue', + meta: { + title: '算力卡', + isMenu: true, + keepAlive: true, + permission: '*', + }, + }, + ], + }, +] diff --git a/src/router/routes/computingPoints.js b/src/router/routes/computingPoints.js new file mode 100644 index 0000000..17b0be4 --- /dev/null +++ b/src/router/routes/computingPoints.js @@ -0,0 +1,29 @@ +import { SettingOutlined } from '@ant-design/icons-vue' + +export default [ + { + path: 'computingPoints', + name: 'computingPoints', + component: 'RouteViewLayout', + meta: { + icon: 'icon-zhifudingjin', + title: '算力点管理', + isMenu: true, + keepAlive: true, + permission: '*', + }, + children: [ + { + path: 'pointsList', + name: 'pointsList', + component: 'computingPoints/pointsList/index.vue', + meta: { + title: '算力点列表', + isMenu: true, + keepAlive: true, + permission: '*', + }, + }, + ], + }, +] diff --git a/src/router/routes/computingTicket.js b/src/router/routes/computingTicket.js new file mode 100644 index 0000000..45639f6 --- /dev/null +++ b/src/router/routes/computingTicket.js @@ -0,0 +1,29 @@ +import { SettingOutlined } from '@ant-design/icons-vue' + +export default [ + { + path: 'computingTicket', + name: 'computingTicket', + component: 'RouteViewLayout', + meta: { + icon: 'icon-zhifudingjin', + title: '算力券管理', + isMenu: true, + keepAlive: true, + permission: '*', + }, + children: [ + { + path: 'ticketList', + name: 'ticketList', + component: 'computingTicket/ticketList/index.vue', + meta: { + title: '算力券列表', + isMenu: true, + keepAlive: true, + permission: '*', + }, + }, + ], + }, +] diff --git a/src/router/routes/container.js b/src/router/routes/container.js new file mode 100644 index 0000000..15dced2 --- /dev/null +++ b/src/router/routes/container.js @@ -0,0 +1,29 @@ +import { SettingOutlined } from '@ant-design/icons-vue' + +export default [ + { + path: 'container', + name: 'container', + component: 'RouteViewLayout', + meta: { + icon: 'icon-zhifudingjin', + title: '容器/实例管理', + isMenu: true, + keepAlive: true, + permission: '*', + }, + children: [ + { + path: 'containerList', + name: 'containerList', + component: 'container/containerList/index.vue', + meta: { + title: '实例', + isMenu: true, + keepAlive: true, + permission: '*', + }, + }, + ], + }, +] diff --git a/src/router/routes/contract.js b/src/router/routes/contract.js new file mode 100644 index 0000000..1127148 --- /dev/null +++ b/src/router/routes/contract.js @@ -0,0 +1,62 @@ +import { SettingOutlined } from '@ant-design/icons-vue' + +export default [ + { + path: 'contract', + name: 'contract', + component: 'RouteViewLayout', + meta: { + icon: 'icon-chongzhi', + title: '提现管理', + isMenu: true, + keepAlive: true, + permission: '*', + }, + children: [ + { + path: 'contractPendingList', + name: 'contractPendingList', + component: 'contract/contractPendingList/index.vue', + meta: { + title: '待审核列表', + isMenu: true, + keepAlive: true, + permission: '*', + }, + }, + { + path: 'signatureList', + name: 'signatureList', + component: 'contract/signatureList/index.vue', + meta: { + title: '待签章列表', + isMenu: true, + keepAlive: true, + permission: '*', + }, + }, + { + path: 'sealedtrueList', + name: 'sealedtrueList', + component: 'contract/sealedtrueList/index.vue', + meta: { + title: '已签章列表', + isMenu: true, + keepAlive: true, + permission: '*', + }, + }, + { + path: 'rejectContractList', + name: 'rejectContractList', + component: 'contract/rejectContractList/index.vue', + meta: { + title: '审核拒绝列表', + isMenu: true, + keepAlive: true, + permission: '*', + }, + } + ], + }, +] diff --git a/src/router/routes/exchangeRecord.js b/src/router/routes/exchangeRecord.js new file mode 100644 index 0000000..c280ac8 --- /dev/null +++ b/src/router/routes/exchangeRecord.js @@ -0,0 +1,29 @@ +import { SettingOutlined } from '@ant-design/icons-vue' + +export default [ + { + path: 'exchangeRecord', + name: 'exchangeRecord', + component: 'RouteViewLayout', + meta: { + icon: 'icon-zhifudingjin', + title: '算力兑换记录管理', + isMenu: true, + keepAlive: true, + permission: '*', + }, + children: [ + { + path: 'exchangeList', + name: 'exchangeList', + component: 'exchangeRecord/exchangeList/index.vue', + meta: { + title: '算力兑换记录 ', + isMenu: true, + keepAlive: true, + permission: '*', + }, + } + ], + } +] diff --git a/src/router/routes/img.js b/src/router/routes/img.js new file mode 100644 index 0000000..d79883a --- /dev/null +++ b/src/router/routes/img.js @@ -0,0 +1,29 @@ +import { SettingOutlined } from '@ant-design/icons-vue' + +export default [ + { + path: 'img', + name: 'img', + component: 'RouteViewLayout', + meta: { + icon: 'icon-zhifudingjin', + title: '镜像管理', + isMenu: true, + keepAlive: true, + permission: '*', + }, + children: [ + { + path: 'imgList', + name: 'imgList', + component: 'img/imgList/index.vue', + meta: { + title: '镜像列表', + isMenu: true, + keepAlive: true, + permission: '*', + }, + }, + ], + }, +] diff --git a/src/router/routes/index.js b/src/router/routes/index.js index 4051feb..cd624be 100644 --- a/src/router/routes/index.js +++ b/src/router/routes/index.js @@ -10,14 +10,24 @@ import link from './link' import iframe from './iframe' import other from './other' import topUp from './topUp' -import water from './water' -import refund from './refund' +import certification from './certification' +import computing from './computing' import common from './common' import resource from './resource' import mirror from './mirror' -import user from './user' +import userControl from './userControl' import order from './order' import example from './example' +import container from './container' +import img from './img' +import balance from './balance' +import computingPoints from './computingPoints' +import computingTicket from './computingTicket' +import rechargeRecord from './rechargeRecord' +import exchangeRecord from './exchangeRecord' +import contract from './contract' +import withdrawal from './withdrawal' +import invoice from './invoice' export default [ ...home, ...form, @@ -31,12 +41,22 @@ export default [ ...iframe, ...other, ...topUp, - ...water, - ...refund, + ...certification, + ...computing, ...common, ...resource, ...mirror, - ...user, + ...userControl, ...order, ...example, + ...container, + ...img, + ...balance, + ...computingPoints, + ...computingTicket, + ...rechargeRecord, + ...exchangeRecord, + ...contract, + ...withdrawal, + ...invoice, ] diff --git a/src/router/routes/invoice.js b/src/router/routes/invoice.js new file mode 100644 index 0000000..5c31765 --- /dev/null +++ b/src/router/routes/invoice.js @@ -0,0 +1,96 @@ +import { SettingOutlined } from '@ant-design/icons-vue' + +export default [ + { + path: 'invoice', + name: 'invoice', + component: 'RouteViewLayout', + meta: { + icon: 'icon-zhifudingjin', + title: '发票管理', + isMenu: true, + keepAlive: true, + permission: '*', + }, + children: [ + { + path: 'invoiceReviewList', + name: 'invoiceReviewList', + component: 'invoice/invoiceReviewList/index.vue', + meta: { + title: '待审核列表', + isMenu: true, + keepAlive: true, + permission: '*', + }, + }, + { + path: 'invoicePendingList', + name: 'invoicePendingList', + component: 'invoice/invoicePendingList/index.vue', + meta: { + title: '待开票列表', + isMenu: true, + keepAlive: true, + permission: '*', + }, + }, + { + path: 'invoceBeSentList', + name: 'invoceBeSentList', + component: 'invoice/invoceBeSentList/index.vue', + meta: { + title: '待寄送列表', + isMenu: true, + keepAlive: true, + permission: '*', + }, + }, + { + path: 'invoceFailedList', + name: 'invoceFailedList', + component: 'invoice/invoceFailedList/index.vue', + meta: { + title: '审核失败列表', + isMenu: true, + keepAlive: true, + permission: '*', + }, + }, + { + path: 'invoicingFailedList', + name: 'invoicingFailedList', + component: 'invoice/invoicingFailedList/index.vue', + meta: { + title: '开票失败列表', + isMenu: true, + keepAlive: true, + permission: '*', + }, + }, + { + path: 'invoiceDeliveriesFailed', + name: 'invoiceDeliveriesFailed', + component: 'invoice/invoiceDeliveriesFailed/index.vue', + meta: { + title: '寄送失败列表', + isMenu: true, + keepAlive: true, + permission: '*', + }, + }, + { + path: 'invoiceSuccessList', + name: 'invoiceSuccessList', + component: 'invoice/invoiceSuccessList/index.vue', + meta: { + title: '已完成列表', + isMenu: true, + keepAlive: true, + permission: '*', + }, + }, + + ], + }, +] diff --git a/src/router/routes/order.js b/src/router/routes/order.js index 3d0ac62..fdd40be 100644 --- a/src/router/routes/order.js +++ b/src/router/routes/order.js @@ -7,56 +7,23 @@ export default [ component: 'RouteViewLayout', meta: { icon: 'icon-zhifudingjin', - title: '订单管理', + title: '实例订单管理', isMenu: true, keepAlive: true, permission: '*', }, children: [ { - path: 'orderAll', - name: 'orderAll', - component: 'order/orderAll/index.vue', + path: 'orderList', + name: 'orderList', + component: 'order/orderList/index.vue', meta: { - title: '全部订单', + title: '订单列表', isMenu: true, keepAlive: true, permission: '*', }, }, - { - path: 'orderIng', - name: 'orderIng', - component: 'order/orderIng/index.vue', - meta: { - title: '运营中订单', - isMenu: true, - keepAlive: true, - permission: '*', - }, - }, - { - path: 'orderArrearage', - name: 'orderArrearage', - component: 'order/orderArrearage/index.vue', - meta: { - title: '欠费订单', - isMenu: true, - keepAlive: true, - permission: '*', - }, - }, - { - path: 'orderTally', - name: 'orderTally', - component: 'order/orderTally/index.vue', - meta: { - title: '结算订单', - isMenu: true, - keepAlive: true, - permission: '*', - }, - }, ], } diff --git a/src/router/routes/rechargeRecord.js b/src/router/routes/rechargeRecord.js new file mode 100644 index 0000000..30abfb0 --- /dev/null +++ b/src/router/routes/rechargeRecord.js @@ -0,0 +1,29 @@ +import { SettingOutlined } from '@ant-design/icons-vue' + +export default [ + { + path: 'rechargeRecord', + name: 'rechargeRecord', + component: 'RouteViewLayout', + meta: { + icon: 'icon-zhifudingjin', + title: '充值记录管理', + isMenu: true, + keepAlive: true, + permission: '*', + }, + children: [ + { + path: 'rechargeRecord', + name: 'rechargeRecord', + component: 'rechargeRecord/rechargeList/index.vue', + meta: { + title: '充值记录 ', + isMenu: true, + keepAlive: true, + permission: '*', + }, + } + ], + } +] diff --git a/src/router/routes/refund.js b/src/router/routes/refund.js deleted file mode 100644 index f97bb34..0000000 --- a/src/router/routes/refund.js +++ /dev/null @@ -1,76 +0,0 @@ -import { SettingOutlined } from '@ant-design/icons-vue' - -export default [ - { - path: 'paySet', - name: 'paySet', - component: 'RouteViewLayout', - meta: { - icon: 'icon-zhifudingjin', - title: '支付设置', - isMenu: true, - keepAlive: true, - permission: '*', - }, - children: [ - { - path: 'payChannel', - name: 'payChannel', - component: 'paySet/payChannel/index.vue', - meta: { - title: '支付渠道设置', - isMenu: true, - keepAlive: true, - permission: '*', - }, - }, - ], - }, - { - path: 'refund', - name: 'refund', - component: 'RouteViewLayout', - meta: { - icon: 'icon-icon', - title: '退款管理', - isMenu: true, - keepAlive: true, - permission: '*', - }, - children: [ - { - path: 'toBeConfirmed', - name: 'toBeConfirmed', - component: 'refund/toBeConfirmed/index.vue', - meta: { - title: '待确认列表', - isMenu: true, - keepAlive: true, - permission: '*', - }, - }, - { - path: 'refunded', - name: 'refunded', - component: 'refund/refunded/index.vue', - meta: { - title: '已退款列表', - isMenu: true, - keepAlive: true, - permission: '*', - }, - }, - { - path: 'refundFailed', - name: 'refundFailed', - component: 'refund/refundFailed/index.vue', - meta: { - title: '退款失败列表', - isMenu: true, - keepAlive: true, - permission: '*', - }, - }, - ], - }, -] diff --git a/src/router/routes/resource.js b/src/router/routes/resource.js index 338e91f..dc2937d 100644 --- a/src/router/routes/resource.js +++ b/src/router/routes/resource.js @@ -7,40 +7,29 @@ export default [ component: 'RouteViewLayout', meta: { icon: 'icon-zhifudingjin', - title: '资源管理', + title: 'GPU资源管理', isMenu: true, keepAlive: true, permission: '*', }, children: [ { - path: 'host', - name: 'host', - component: 'resource/host/index.vue', - meta: { - title: '主机列表', + path: 'resourceAdmin', + name: 'resourceAdmin', + component: 'resource/resourceAdmin/index.vue', + meta: { + title: '资源池管理 ', isMenu: true, keepAlive: true, permission: '*', }, }, { - path: 'computerCard', - name: 'computerCard', - component: 'resource/computerCard/index.vue', - meta: { - title: '计算卡列表', - isMenu: true, - keepAlive: true, - permission: '*', - }, - }, - { - path: 'computerArea', - name: 'computerArea', - component: 'resource/computerArea/index.vue', - meta: { - title: '主机区域列表', + path: 'resourceStatistics', + name: 'resourceStatistics', + component: 'resource/resourceStatistics/index.vue', + meta: { + title: '资源池统计信息', isMenu: true, keepAlive: true, permission: '*', @@ -48,5 +37,4 @@ export default [ }, ], } - ] diff --git a/src/router/routes/user.js b/src/router/routes/userControl.js similarity index 60% rename from src/router/routes/user.js rename to src/router/routes/userControl.js index 547c7a5..a44a83f 100644 --- a/src/router/routes/user.js +++ b/src/router/routes/userControl.js @@ -2,8 +2,8 @@ import { SettingOutlined } from '@ant-design/icons-vue' export default [ { - path: 'user', - name: 'user', + path: 'userControl', + name: 'userControl', component: 'RouteViewLayout', meta: { icon: 'icon-zhifudingjin', @@ -13,21 +13,10 @@ export default [ permission: '*', }, children: [ - { - path: 'userSure', - name: 'userSure', - component: 'user/userSure/index.vue', - meta: { - title: '待认证列表', - isMenu: true, - keepAlive: true, - permission: '*', - }, - }, { path: 'userList', name: 'userList', - component: 'user/userList/index.vue', + component: 'userControl/userList/index.vue', meta: { title: '用户列表', isMenu: true, @@ -36,9 +25,9 @@ export default [ }, }, { - path: 'userBlack', - name: 'userBlack', - component: 'user/userBlack/index.vue', + path: 'blackList', + name: 'blackList', + component: 'userControl/blackList/index.vue', meta: { title: '黑名单列表', isMenu: true, diff --git a/src/router/routes/withdrawal.js b/src/router/routes/withdrawal.js new file mode 100644 index 0000000..cd51ac4 --- /dev/null +++ b/src/router/routes/withdrawal.js @@ -0,0 +1,73 @@ +import { SettingOutlined } from '@ant-design/icons-vue' + +export default [ + { + path: 'withdrawal', + name: 'withdrawal', + component: 'RouteViewLayout', + meta: { + icon: 'icon-chongzhi', + title: '', + isMenu: true, + keepAlive: true, + permission: '*', + }, + children: [ + { + path: 'pendingReviewList', + name: 'pendingReviewList', + component: 'withdrawal/pendingReviewList/index.vue', + meta: { + title: '待审核列表', + isMenu: true, + keepAlive: true, + permission: '*', + }, + }, + { + path: 'withdrawList', + name: 'withdrawList', + component: 'withdrawal/withdrawList/index.vue', + meta: { + title: '待提现列表', + isMenu: true, + keepAlive: true, + permission: '*', + }, + }, + { + path: 'withdrawErrorList', + name: 'withdrawErrorList', + component: 'withdrawal/withdrawErrorList/index.vue', + meta: { + title: '已取消订单', + isMenu: true, + keepAlive: true, + permission: '*', + }, + }, + { + path: 'withdrawSuccessList', + name: 'withdrawSuccessList', + component: 'withdrawal/withdrawSuccessList/index.vue', + meta: { + title: '提现成功列表', + isMenu: true, + keepAlive: true, + permission: '*', + }, + }, + { + path: 'withdrawRejectList', + name: 'withdrawRejectList', + component: 'withdrawal/withdrawRejectList/index.vue', + meta: { + title: '审核拒绝', + isMenu: true, + keepAlive: true, + permission: '*', + }, + } + ], + }, +] diff --git a/src/views/balance/components/EditDialog.vue b/src/views/balance/components/EditDialog.vue new file mode 100644 index 0000000..aa18d80 --- /dev/null +++ b/src/views/balance/components/EditDialog.vue @@ -0,0 +1,158 @@ + + + + + diff --git a/src/views/balance/index.vue b/src/views/balance/index.vue new file mode 100644 index 0000000..fac9c70 --- /dev/null +++ b/src/views/balance/index.vue @@ -0,0 +1,199 @@ + + + + + diff --git a/src/views/refund/toBeConfirmed/index.vue b/src/views/computing/computingCard/index.vue similarity index 100% rename from src/views/refund/toBeConfirmed/index.vue rename to src/views/computing/computingCard/index.vue diff --git a/src/views/refund/refunded/index.vue b/src/views/computing/computingCenter/index.vue similarity index 100% rename from src/views/refund/refunded/index.vue rename to src/views/computing/computingCenter/index.vue diff --git a/src/views/refund/refundFaild/index.vue b/src/views/computing/host/index.vue similarity index 100% rename from src/views/refund/refundFaild/index.vue rename to src/views/computing/host/index.vue diff --git a/src/views/computingPoints/pointsList/components/EditDialog.vue b/src/views/computingPoints/pointsList/components/EditDialog.vue new file mode 100644 index 0000000..b76d71c --- /dev/null +++ b/src/views/computingPoints/pointsList/components/EditDialog.vue @@ -0,0 +1,315 @@ + + + + + diff --git a/src/views/computingPoints/pointsList/index.vue b/src/views/computingPoints/pointsList/index.vue new file mode 100644 index 0000000..03686e3 --- /dev/null +++ b/src/views/computingPoints/pointsList/index.vue @@ -0,0 +1,218 @@ + + + + + diff --git a/src/views/computingTicket/ticketList/components/EditDialog.vue b/src/views/computingTicket/ticketList/components/EditDialog.vue new file mode 100644 index 0000000..b76d71c --- /dev/null +++ b/src/views/computingTicket/ticketList/components/EditDialog.vue @@ -0,0 +1,315 @@ + + + + + diff --git a/src/views/computingTicket/ticketList/index.vue b/src/views/computingTicket/ticketList/index.vue new file mode 100644 index 0000000..03686e3 --- /dev/null +++ b/src/views/computingTicket/ticketList/index.vue @@ -0,0 +1,218 @@ + + + + + diff --git a/src/views/container/containerList/components/EditDialog.vue b/src/views/container/containerList/components/EditDialog.vue new file mode 100644 index 0000000..b76d71c --- /dev/null +++ b/src/views/container/containerList/components/EditDialog.vue @@ -0,0 +1,315 @@ + + + + + diff --git a/src/views/container/containerList/index.vue b/src/views/container/containerList/index.vue new file mode 100644 index 0000000..03686e3 --- /dev/null +++ b/src/views/container/containerList/index.vue @@ -0,0 +1,218 @@ + + + + + diff --git a/src/views/order/orderAll/components/EditDialog.vue b/src/views/contract/contractPendingList/components/EditDialog.vue similarity index 100% rename from src/views/order/orderAll/components/EditDialog.vue rename to src/views/contract/contractPendingList/components/EditDialog.vue diff --git a/src/views/resource/computerArea/index.vue b/src/views/contract/contractPendingList/index.vue similarity index 100% rename from src/views/resource/computerArea/index.vue rename to src/views/contract/contractPendingList/index.vue diff --git a/src/views/order/orderArrearage/components/EditDialog.vue b/src/views/contract/rejectContractList/components/EditDialog.vue similarity index 100% rename from src/views/order/orderArrearage/components/EditDialog.vue rename to src/views/contract/rejectContractList/components/EditDialog.vue diff --git a/src/views/resource/host/index.vue b/src/views/contract/rejectContractList/index.vue similarity index 92% rename from src/views/resource/host/index.vue rename to src/views/contract/rejectContractList/index.vue index a9592fe..0687a05 100644 --- a/src/views/resource/host/index.vue +++ b/src/views/contract/rejectContractList/index.vue @@ -171,19 +171,13 @@ defineOptions({ }) const columns = [ - { title: '主机ID', dataIndex: 'hostId' }, - { title: '主机名称', dataIndex: 'hostName' }, - { title: '所属区域ID', dataIndex: 'regionId' }, - { title: '硬件配置—CPU', dataIndex: 'cpu' }, - { title: '硬件配置—内存', dataIndex: 'memory' }, - { title: '硬件配置—存储(硬盘容量)', dataIndex: 'storage' }, - { title: '挂载计算卡信息', dataIndex: 'gpu' }, - { title: 'IP地址', dataIndex: 'ip' }, - { title: '运行状态', dataIndex: 'status' }, - { title: '网络带宽', dataIndex: 'bandwidth' }, - { title: '创建时间', dataIndex: 'createdAt' }, - { title: '更新时间(最后更新时间)', dataIndex: 'updatedAt' }, - { title: '操作人', dataIndex: 'operator' }, + { title: '区域ID', dataIndex: 'hostId' }, + { title: '区域名称', dataIndex: 'hostName' }, + { title: '区域编码', dataIndex: 'regionId' }, + { title: '数据中心地址', dataIndex: 'cpu' }, + { title: '状态', dataIndex: 'memory' }, + { title: '部署主机数量(主机数量)', dataIndex: 'storage' }, + { title: '可用计算卡总数', dataIndex: 'ip' }, { title: '操作', key: 'action', width: 160 }, ] // const { listData, paginationState, loading, showLoading, hideLoading, resetPagination, searchFormData } = diff --git a/src/views/order/orderIng/components/EditDialog.vue b/src/views/contract/sealedtrueList/components/EditDialog.vue similarity index 100% rename from src/views/order/orderIng/components/EditDialog.vue rename to src/views/contract/sealedtrueList/components/EditDialog.vue diff --git a/src/views/user/userSure/index.vue b/src/views/contract/sealedtrueList/index.vue similarity index 91% rename from src/views/user/userSure/index.vue rename to src/views/contract/sealedtrueList/index.vue index b106e85..0687a05 100644 --- a/src/views/user/userSure/index.vue +++ b/src/views/contract/sealedtrueList/index.vue @@ -171,22 +171,13 @@ defineOptions({ }) const columns = [ - { title: '用户ID', dataIndex: 'hostId' }, - { title: '用户名', dataIndex: 'hostName' }, - { title: '手机号', dataIndex: 'regionId' }, - { title: '邮箱', dataIndex: 'cpu' }, - { title: '认证类型', dataIndex: 'memory' }, - { title: '真实姓名', dataIndex: 'ip' }, - { title: '身份证号', dataIndex: 'hostId' }, - { title: '企业名称', dataIndex: 'hostName' }, - { title: '统一社会信用代码', dataIndex: 'regionId' }, - { title: '认证材料(认证材料URL)', dataIndex: 'cpu' }, - { title: '提交时间(提交认证时间)', dataIndex: 'memory' }, - { title: '驳回原因(备注)', dataIndex: 'storage' }, - { title: '审核时间', dataIndex: 'ip' }, - { title: '审核人ID', dataIndex: 'storage' }, - { title: '审核时间', dataIndex: 'storage' }, - { title: '备注', dataIndex: 'ip' }, + { title: '区域ID', dataIndex: 'hostId' }, + { title: '区域名称', dataIndex: 'hostName' }, + { title: '区域编码', dataIndex: 'regionId' }, + { title: '数据中心地址', dataIndex: 'cpu' }, + { title: '状态', dataIndex: 'memory' }, + { title: '部署主机数量(主机数量)', dataIndex: 'storage' }, + { title: '可用计算卡总数', dataIndex: 'ip' }, { title: '操作', key: 'action', width: 160 }, ] // const { listData, paginationState, loading, showLoading, hideLoading, resetPagination, searchFormData } = diff --git a/src/views/order/orderTally/components/EditDialog.vue b/src/views/contract/signatureList/components/EditDialog.vue similarity index 100% rename from src/views/order/orderTally/components/EditDialog.vue rename to src/views/contract/signatureList/components/EditDialog.vue diff --git a/src/views/resource/computerCard/index.vue b/src/views/contract/signatureList/index.vue similarity index 100% rename from src/views/resource/computerCard/index.vue rename to src/views/contract/signatureList/index.vue diff --git a/src/views/resource/computerArea/components/EditDialog.vue b/src/views/exchangeRecord/exchangeList/components/EditDialog.vue similarity index 100% rename from src/views/resource/computerArea/components/EditDialog.vue rename to src/views/exchangeRecord/exchangeList/components/EditDialog.vue diff --git a/src/views/order/orderAll/index.vue b/src/views/exchangeRecord/exchangeList/index.vue similarity index 89% rename from src/views/order/orderAll/index.vue rename to src/views/exchangeRecord/exchangeList/index.vue index 7273030..0687a05 100644 --- a/src/views/order/orderAll/index.vue +++ b/src/views/exchangeRecord/exchangeList/index.vue @@ -171,28 +171,13 @@ defineOptions({ }) const columns = [ - { title: '订单ID', dataIndex: 'hostId' }, - { title: '订单编号', dataIndex: 'hostName' }, - { title: '所属用户ID', dataIndex: 'regionId' }, - { title: '用户名', dataIndex: 'cpu' }, - { title: '手机号', dataIndex: 'memory' }, - { title: '实例ID', dataIndex: 'ip' }, - { title: '实例名称', dataIndex: 'hostId' }, - { title: '租赁配置', dataIndex: 'hostName' }, - { title: '计费方式', dataIndex: 'regionId' }, - { title: '订单金额', dataIndex: 'cpu' }, - { title: '实付金额', dataIndex: 'hostId' }, - { title: '创建时间', dataIndex: 'hostName' }, - { title: '支付时间', dataIndex: 'regionId' }, - { title: '订单状态', dataIndex: 'cpu' }, - { title: '到期时间', dataIndex: 'hostName' }, - { title: '续费状态', dataIndex: 'regionId' }, - { title: '支付方式', dataIndex: 'cpu' }, - { title: '支付订单ID', dataIndex: 'hostId' }, - { title: '发票状态', dataIndex: 'hostName' }, - { title: '合同ID', dataIndex: 'regionId' }, - { title: '是否开票', dataIndex: 'cpu' }, - { title: '备注', dataIndex: 'hostId' }, + { title: '区域ID', dataIndex: 'hostId' }, + { title: '区域名称', dataIndex: 'hostName' }, + { title: '区域编码', dataIndex: 'regionId' }, + { title: '数据中心地址', dataIndex: 'cpu' }, + { title: '状态', dataIndex: 'memory' }, + { title: '部署主机数量(主机数量)', dataIndex: 'storage' }, + { title: '可用计算卡总数', dataIndex: 'ip' }, { title: '操作', key: 'action', width: 160 }, ] // const { listData, paginationState, loading, showLoading, hideLoading, resetPagination, searchFormData } = diff --git a/src/views/resource/computerCard/components/EditDialog.vue b/src/views/img/imgList/components/EditDialog.vue similarity index 100% rename from src/views/resource/computerCard/components/EditDialog.vue rename to src/views/img/imgList/components/EditDialog.vue diff --git a/src/views/order/orderIng/index.vue b/src/views/img/imgList/index.vue similarity index 88% rename from src/views/order/orderIng/index.vue rename to src/views/img/imgList/index.vue index f561e7d..0687a05 100644 --- a/src/views/order/orderIng/index.vue +++ b/src/views/img/imgList/index.vue @@ -171,30 +171,13 @@ defineOptions({ }) const columns = [ - { title: '订单ID', dataIndex: 'hostId' }, - { title: '订单编号', dataIndex: 'hostName' }, - { title: '所属用户ID', dataIndex: 'regionId' }, - { title: '用户名', dataIndex: 'cpu' }, - { title: '手机号', dataIndex: 'memory' }, - { title: '实例ID', dataIndex: 'ip' }, - { title: '实例名称', dataIndex: 'hostId' }, - { title: '租赁配置', dataIndex: 'hostName' }, - { title: '计费方式', dataIndex: 'regionId' }, - { title: '订单金额', dataIndex: 'cpu' }, - { title: '实付金额', dataIndex: 'hostId' }, - { title: '创建时间', dataIndex: 'hostName' }, - { title: '支付时间', dataIndex: 'regionId' }, - { title: '订单状态', dataIndex: 'cpu' }, - { title: '到期时间', dataIndex: 'hostName' }, - { title: '续费状态', dataIndex: 'regionId' }, - { title: '支付方式', dataIndex: 'cpu' }, - { title: '支付订单ID', dataIndex: 'hostId' }, - { title: '发票状态', dataIndex: 'hostName' }, - { title: '合同ID', dataIndex: 'regionId' }, - { title: '是否开票', dataIndex: 'cpu' }, - { title: '备注', dataIndex: 'hostId' }, - { title: '当前运行状态', dataIndex: 'cpu' }, - { title: '剩余时长', dataIndex: 'hostId' }, + { title: '区域ID', dataIndex: 'hostId' }, + { title: '区域名称', dataIndex: 'hostName' }, + { title: '区域编码', dataIndex: 'regionId' }, + { title: '数据中心地址', dataIndex: 'cpu' }, + { title: '状态', dataIndex: 'memory' }, + { title: '部署主机数量(主机数量)', dataIndex: 'storage' }, + { title: '可用计算卡总数', dataIndex: 'ip' }, { title: '操作', key: 'action', width: 160 }, ] // const { listData, paginationState, loading, showLoading, hideLoading, resetPagination, searchFormData } = diff --git a/src/views/invoice/index.vue b/src/views/invoice/index.vue deleted file mode 100644 index 16d35a8..0000000 --- a/src/views/invoice/index.vue +++ /dev/null @@ -1,3 +0,0 @@ - \ No newline at end of file diff --git a/src/views/resource/host/components/EditDialog.vue b/src/views/invoice/invoceBeSentList/components/EditDialog.vue similarity index 100% rename from src/views/resource/host/components/EditDialog.vue rename to src/views/invoice/invoceBeSentList/components/EditDialog.vue diff --git a/src/views/invoice/invoceBeSentList/index.vue b/src/views/invoice/invoceBeSentList/index.vue new file mode 100644 index 0000000..0687a05 --- /dev/null +++ b/src/views/invoice/invoceBeSentList/index.vue @@ -0,0 +1,281 @@ + + + + + diff --git a/src/views/user/userBlack/components/EditDialog.vue b/src/views/invoice/invoceFailedList/components/EditDialog.vue similarity index 100% rename from src/views/user/userBlack/components/EditDialog.vue rename to src/views/invoice/invoceFailedList/components/EditDialog.vue diff --git a/src/views/invoice/invoceFailedList/index.vue b/src/views/invoice/invoceFailedList/index.vue new file mode 100644 index 0000000..0687a05 --- /dev/null +++ b/src/views/invoice/invoceFailedList/index.vue @@ -0,0 +1,281 @@ + + + + + diff --git a/src/views/user/userList/components/EditDialog.vue b/src/views/invoice/invoiceDeliveriesFailed/components/EditDialog.vue similarity index 100% rename from src/views/user/userList/components/EditDialog.vue rename to src/views/invoice/invoiceDeliveriesFailed/components/EditDialog.vue diff --git a/src/views/invoice/invoiceDeliveriesFailed/index.vue b/src/views/invoice/invoiceDeliveriesFailed/index.vue new file mode 100644 index 0000000..0687a05 --- /dev/null +++ b/src/views/invoice/invoiceDeliveriesFailed/index.vue @@ -0,0 +1,281 @@ + + + + + diff --git a/src/views/user/userSure/components/EditDialog.vue b/src/views/invoice/invoicePendingList/components/EditDialog.vue similarity index 100% rename from src/views/user/userSure/components/EditDialog.vue rename to src/views/invoice/invoicePendingList/components/EditDialog.vue diff --git a/src/views/invoice/invoicePendingList/index.vue b/src/views/invoice/invoicePendingList/index.vue new file mode 100644 index 0000000..8ca067b --- /dev/null +++ b/src/views/invoice/invoicePendingList/index.vue @@ -0,0 +1,285 @@ + + + + + diff --git a/src/views/invoice/invoiceReviewList/components/EditDialog.vue b/src/views/invoice/invoiceReviewList/components/EditDialog.vue new file mode 100644 index 0000000..51f7a3a --- /dev/null +++ b/src/views/invoice/invoiceReviewList/components/EditDialog.vue @@ -0,0 +1,119 @@ + + + + + diff --git a/src/views/invoice/invoiceReviewList/index.vue b/src/views/invoice/invoiceReviewList/index.vue new file mode 100644 index 0000000..0687a05 --- /dev/null +++ b/src/views/invoice/invoiceReviewList/index.vue @@ -0,0 +1,281 @@ + + + + + diff --git a/src/views/invoice/invoiceSuccessList/components/EditDialog.vue b/src/views/invoice/invoiceSuccessList/components/EditDialog.vue new file mode 100644 index 0000000..51f7a3a --- /dev/null +++ b/src/views/invoice/invoiceSuccessList/components/EditDialog.vue @@ -0,0 +1,119 @@ + + + + + diff --git a/src/views/invoice/invoiceSuccessList/index.vue b/src/views/invoice/invoiceSuccessList/index.vue new file mode 100644 index 0000000..0687a05 --- /dev/null +++ b/src/views/invoice/invoiceSuccessList/index.vue @@ -0,0 +1,281 @@ + + + + + diff --git a/src/views/invoice/invoicingFailedList/components/EditDialog.vue b/src/views/invoice/invoicingFailedList/components/EditDialog.vue new file mode 100644 index 0000000..51f7a3a --- /dev/null +++ b/src/views/invoice/invoicingFailedList/components/EditDialog.vue @@ -0,0 +1,119 @@ + + + + + diff --git a/src/views/invoice/invoicingFailedList/index.vue b/src/views/invoice/invoicingFailedList/index.vue new file mode 100644 index 0000000..0687a05 --- /dev/null +++ b/src/views/invoice/invoicingFailedList/index.vue @@ -0,0 +1,281 @@ + + + + + diff --git a/src/views/order/orderArrearage/index.vue b/src/views/order/orderArrearage/index.vue deleted file mode 100644 index 0121c54..0000000 --- a/src/views/order/orderArrearage/index.vue +++ /dev/null @@ -1,301 +0,0 @@ - - - - - diff --git a/src/views/order/orderList/components/EditDialog.vue b/src/views/order/orderList/components/EditDialog.vue new file mode 100644 index 0000000..51f7a3a --- /dev/null +++ b/src/views/order/orderList/components/EditDialog.vue @@ -0,0 +1,119 @@ + + + + + diff --git a/src/views/order/orderTally/index.vue b/src/views/order/orderList/index.vue similarity index 100% rename from src/views/order/orderTally/index.vue rename to src/views/order/orderList/index.vue diff --git a/src/views/rechargeRecord/rechargeList/components/EditDialog.vue b/src/views/rechargeRecord/rechargeList/components/EditDialog.vue new file mode 100644 index 0000000..51f7a3a --- /dev/null +++ b/src/views/rechargeRecord/rechargeList/components/EditDialog.vue @@ -0,0 +1,119 @@ + + + + + diff --git a/src/views/rechargeRecord/rechargeList/index.vue b/src/views/rechargeRecord/rechargeList/index.vue new file mode 100644 index 0000000..0687a05 --- /dev/null +++ b/src/views/rechargeRecord/rechargeList/index.vue @@ -0,0 +1,281 @@ + + + + + diff --git a/src/views/resource/resourceAdmin/components/EditDialog.vue b/src/views/resource/resourceAdmin/components/EditDialog.vue new file mode 100644 index 0000000..51f7a3a --- /dev/null +++ b/src/views/resource/resourceAdmin/components/EditDialog.vue @@ -0,0 +1,119 @@ + + + + + diff --git a/src/views/resource/resourceAdmin/index.vue b/src/views/resource/resourceAdmin/index.vue new file mode 100644 index 0000000..0687a05 --- /dev/null +++ b/src/views/resource/resourceAdmin/index.vue @@ -0,0 +1,281 @@ + + + + + diff --git a/src/views/resource/resourceStatistics/components/EditDialog.vue b/src/views/resource/resourceStatistics/components/EditDialog.vue new file mode 100644 index 0000000..51f7a3a --- /dev/null +++ b/src/views/resource/resourceStatistics/components/EditDialog.vue @@ -0,0 +1,119 @@ + + + + + diff --git a/src/views/resource/resourceStatistics/index.vue b/src/views/resource/resourceStatistics/index.vue new file mode 100644 index 0000000..8ca067b --- /dev/null +++ b/src/views/resource/resourceStatistics/index.vue @@ -0,0 +1,285 @@ + + + + + diff --git a/src/views/userControl/ blackList/components/EditDialog.vue b/src/views/userControl/ blackList/components/EditDialog.vue new file mode 100644 index 0000000..51f7a3a --- /dev/null +++ b/src/views/userControl/ blackList/components/EditDialog.vue @@ -0,0 +1,119 @@ + + + + + diff --git a/src/views/user/userBlack/index.vue b/src/views/userControl/ blackList/index.vue similarity index 100% rename from src/views/user/userBlack/index.vue rename to src/views/userControl/ blackList/index.vue diff --git a/src/views/userControl/userList/components/EditDialog.vue b/src/views/userControl/userList/components/EditDialog.vue new file mode 100644 index 0000000..51f7a3a --- /dev/null +++ b/src/views/userControl/userList/components/EditDialog.vue @@ -0,0 +1,119 @@ + + + + + diff --git a/src/views/user/userList/index.vue b/src/views/userControl/userList/index.vue similarity index 100% rename from src/views/user/userList/index.vue rename to src/views/userControl/userList/index.vue diff --git a/src/views/water/userList/index.vue b/src/views/water/ certificationList/index.vue similarity index 100% rename from src/views/water/userList/index.vue rename to src/views/water/ certificationList/index.vue diff --git a/src/views/withdrawal/pendingReviewList/components/EditDialog.vue b/src/views/withdrawal/pendingReviewList/components/EditDialog.vue new file mode 100644 index 0000000..51f7a3a --- /dev/null +++ b/src/views/withdrawal/pendingReviewList/components/EditDialog.vue @@ -0,0 +1,119 @@ + + + + + diff --git a/src/views/withdrawal/pendingReviewList/index.vue b/src/views/withdrawal/pendingReviewList/index.vue new file mode 100644 index 0000000..0687a05 --- /dev/null +++ b/src/views/withdrawal/pendingReviewList/index.vue @@ -0,0 +1,281 @@ + + + + + diff --git a/src/views/withdrawal/withdrawErrorList/components/EditDialog.vue b/src/views/withdrawal/withdrawErrorList/components/EditDialog.vue new file mode 100644 index 0000000..51f7a3a --- /dev/null +++ b/src/views/withdrawal/withdrawErrorList/components/EditDialog.vue @@ -0,0 +1,119 @@ + + + + + diff --git a/src/views/withdrawal/withdrawErrorList/index.vue b/src/views/withdrawal/withdrawErrorList/index.vue new file mode 100644 index 0000000..8ca067b --- /dev/null +++ b/src/views/withdrawal/withdrawErrorList/index.vue @@ -0,0 +1,285 @@ + + + + + diff --git a/src/views/withdrawal/withdrawList/components/EditDialog.vue b/src/views/withdrawal/withdrawList/components/EditDialog.vue new file mode 100644 index 0000000..51f7a3a --- /dev/null +++ b/src/views/withdrawal/withdrawList/components/EditDialog.vue @@ -0,0 +1,119 @@ + + + + + diff --git a/src/views/withdrawal/withdrawList/index.vue b/src/views/withdrawal/withdrawList/index.vue new file mode 100644 index 0000000..0687a05 --- /dev/null +++ b/src/views/withdrawal/withdrawList/index.vue @@ -0,0 +1,281 @@ + + + + + diff --git a/src/views/withdrawal/withdrawRejectList/components/EditDialog.vue b/src/views/withdrawal/withdrawRejectList/components/EditDialog.vue new file mode 100644 index 0000000..51f7a3a --- /dev/null +++ b/src/views/withdrawal/withdrawRejectList/components/EditDialog.vue @@ -0,0 +1,119 @@ + + + + + diff --git a/src/views/withdrawal/withdrawRejectList/index.vue b/src/views/withdrawal/withdrawRejectList/index.vue new file mode 100644 index 0000000..0687a05 --- /dev/null +++ b/src/views/withdrawal/withdrawRejectList/index.vue @@ -0,0 +1,281 @@ + + + + + diff --git a/src/views/withdrawal/withdrawSuccessList/components/EditDialog.vue b/src/views/withdrawal/withdrawSuccessList/components/EditDialog.vue new file mode 100644 index 0000000..51f7a3a --- /dev/null +++ b/src/views/withdrawal/withdrawSuccessList/components/EditDialog.vue @@ -0,0 +1,119 @@ + + + + + diff --git a/src/views/withdrawal/withdrawSuccessList/index.vue b/src/views/withdrawal/withdrawSuccessList/index.vue new file mode 100644 index 0000000..0687a05 --- /dev/null +++ b/src/views/withdrawal/withdrawSuccessList/index.vue @@ -0,0 +1,281 @@ + + + + +