From 888fa361f9895ea676d646e30832f24b6a2e5f27 Mon Sep 17 00:00:00 2001 From: yunuo970428 <405378304@qq.com> Date: Tue, 7 May 2024 10:45:49 +0800 Subject: [PATCH 1/3] =?UTF-8?q?=E5=AE=8C=E5=96=84=E8=B5=84=E6=96=B9?= =?UTF-8?q?=E4=BF=A1=E5=AE=A1=E7=BB=88=E5=AE=A1=E7=BB=93=E6=9E=9C=E5=8F=8D?= =?UTF-8?q?=E9=A6=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/views/managementcreditaudit/managementcreditaudit.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anrui-riskcenter-ui/src/views/managementcreditaudit/managementcreditaudit.vue b/anrui-riskcenter-ui/src/views/managementcreditaudit/managementcreditaudit.vue index 1d2af03a3d..3b9f6673ee 100644 --- a/anrui-riskcenter-ui/src/views/managementcreditaudit/managementcreditaudit.vue +++ b/anrui-riskcenter-ui/src/views/managementcreditaudit/managementcreditaudit.vue @@ -72,7 +72,7 @@ - + From e26c8a779cb53165e9afec6afa5850377dedefe2 Mon Sep 17 00:00:00 2001 From: yunuo970428 <405378304@qq.com> Date: Tue, 7 May 2024 11:06:36 +0800 Subject: [PATCH 2/3] =?UTF-8?q?=E5=AE=8C=E5=96=84=E4=BE=9B=E5=BA=94?= =?UTF-8?q?=E5=95=86=E7=B1=BB=E5=9E=8B=E7=AE=A1=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/api/basicinformation/supplier.js | 38 +++ .../src/api/basicinformation/suppliertype.js | 31 ++ .../suppliertype/suppliertype.vue | 296 ++++++++++++++++++ 3 files changed, 365 insertions(+) create mode 100644 yxt-as-ui/src/api/basicinformation/supplier.js create mode 100644 yxt-as-ui/src/api/basicinformation/suppliertype.js create mode 100644 yxt-as-ui/src/views/basicinformation/suppliertype/suppliertype.vue diff --git a/yxt-as-ui/src/api/basicinformation/supplier.js b/yxt-as-ui/src/api/basicinformation/supplier.js new file mode 100644 index 0000000000..e7a9f908aa --- /dev/null +++ b/yxt-as-ui/src/api/basicinformation/supplier.js @@ -0,0 +1,38 @@ +import request from '@/utils/request' + +export default { + // 列表查询 + listPage: function(data) { + return request({ + url: 'pms/v1/pmssupplierinfo/listPage', + method: 'post', + data: data, + headers: { 'Content-Type': 'application/json' } + }) + }, + // 保存 + saveOrUpdate: function(data) { + return request({ + url: 'pms/v1/pmssupplierinfo/save', + method: 'post', + data: data, + headers: { 'Content-Type': 'application/json' } + }) + }, + // 回显 + fetchDetailsBySid: function(data) { + return request({ + url: 'pms/v1/pmssupplierinfo/fetchDetailsBySid/' + data, + method: 'get' + }) + }, + // 删除 + delBySids: function(data) { + return request({ + url: 'pms/v1/pmssupplierinfo/delBySids', + method: 'post', + data: data, + headers: { 'Content-Type': 'application/json' } + }) + } +} diff --git a/yxt-as-ui/src/api/basicinformation/suppliertype.js b/yxt-as-ui/src/api/basicinformation/suppliertype.js new file mode 100644 index 0000000000..84e17b5dbc --- /dev/null +++ b/yxt-as-ui/src/api/basicinformation/suppliertype.js @@ -0,0 +1,31 @@ +import request from '@/utils/request' + +export default { + // 列表查询 + listPage: function(data) { + return request({ + url: '/pms/v1/pmssuppliertype/listPage', + method: 'post', + data: data, + headers: { 'Content-Type': 'application/json' } + }) + }, + // 保存 + saveOrUpdate: function(data) { + return request({ + url: '/pms/v1/pmssuppliertype/save', + method: 'post', + data: data, + headers: { 'Content-Type': 'application/json' } + }) + }, + // 删除 + delBySids: function(data) { + return request({ + url: '/pms/v1/pmssuppliertype/delBySids', + method: 'post', + data: data, + headers: { 'Content-Type': 'application/json' } + }) + } +} diff --git a/yxt-as-ui/src/views/basicinformation/suppliertype/suppliertype.vue b/yxt-as-ui/src/views/basicinformation/suppliertype/suppliertype.vue new file mode 100644 index 0000000000..b2b6905fbb --- /dev/null +++ b/yxt-as-ui/src/views/basicinformation/suppliertype/suppliertype.vue @@ -0,0 +1,296 @@ + + + + + + + + + {{ searchxianshitit }} + + + + + + + + + + + 查询 + 重置 + + + + + + 供应商类型列表 + + + + + + + + + + 编辑 + + + + + + + + + + + + + + + + + + + + 供应商类型 + + + + 供应商编码 + + + + + + 确定 + 取消 + + + + + + + From c4981a0b3107aea0a2fbfd9b378d24ef61fe6f96 Mon Sep 17 00:00:00 2001 From: yunuo970428 <405378304@qq.com> Date: Tue, 7 May 2024 11:09:28 +0800 Subject: [PATCH 3/3] =?UTF-8?q?=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- yxt-as-ui/src/router/index.js | 54 +++++++++++++++++++++++++++++++++-- 1 file changed, 51 insertions(+), 3 deletions(-) diff --git a/yxt-as-ui/src/router/index.js b/yxt-as-ui/src/router/index.js index 6d5e104ee5..dbca01d881 100644 --- a/yxt-as-ui/src/router/index.js +++ b/yxt-as-ui/src/router/index.js @@ -61,8 +61,44 @@ export const constantRoutes = [ path: '/repairbill/repairbill', component: () => import('@/views/operation/repairbill/repairbill.vue'), name: 'RepairBill', - meta: { title: '维修开单', noCache: true } - } + meta: { title: '维修开单管理(登记)', noCache: true } + }, + { + path: '/repairbill/repairbillBySendWork', + component: () => import('@/views/operation/repairbill/repairbillBySendWork.vue'), + name: 'RepairBillBySendWork', + meta: { title: '维修开单管理(派工)', noCache: true } + }, + { + path: '/repairbill/repairbillByMaintain', + component: () => import('@/views/operation/repairbill/repairbillByMaintain.vue'), + name: 'RepairBillByMaintain', + meta: { title: '维修开单管理(维修)', noCache: true } + }, + { + path: '/repairbill/repairbillByBeCompleted', + component: () => import('@/views/operation/repairbill/repairbillByBeCompleted.vue'), + name: 'RepairBillByBeCompleted', + meta: { title: '维修开单管理(竣工)', noCache: true } + }, + { + path: '/repairbill/repairbillBySettleAccounts', + component: () => import('@/views/operation/repairbill/repairbillBySettleAccounts.vue'), + name: 'RepairBillBySettleAccounts', + meta: { title: '维修开单管理(结算)', noCache: true } + }, + { + path: '/repairbill/repairbillBYLeaveFactory', + component: () => import('@/views/operation/repairbill/repairbillBYLeaveFactory.vue'), + name: 'RepairBillBYLeaveFactory', + meta: { title: '维修开单管理(出厂)', noCache: true } + }, + // { + // path: '/workslrsettlement/workslrsettlement', + // component: () => import('@/views/operation/workslrsettlement/workslrsettlement.vue'), + // name: 'WorkSLRSettlement', + // meta: { title: '工单反结算管理', noCache: true } + // }, ] }, @@ -305,7 +341,19 @@ export const constantRoutes = [ component: () => import('@/views/basicinformation/team/team.vue'), name: 'Team', meta: { title: '班组管理', noCache: true } - } + }, + { + path: '/suppliertype/suppliertype', + component: () => import('@/views/basicinformation/suppliertype/suppliertype.vue'), + name: 'SupplierType', + meta: { title: '供应商类型管理', noCache: true } + }, + // { + // path: '/supplier/supplier', + // component: () => import('@/views/basicinformation/supplier/supplier.vue'), + // name: 'Supplier', + // meta: { title: '供应商管理', noCache: true } + // } ] }, // 404 page must be placed at the end !!!