From a933f7bc93bf0acb975e2bafc224b94be7fc2d0e Mon Sep 17 00:00:00 2001 From: yunuo970428 <405378304@qq.com> Date: Sat, 9 Apr 2022 09:31:11 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8E=92=E4=BA=A7=E7=94=B3=E8=AF=B7=E7=9A=84?= =?UTF-8?q?=E5=88=86=E9=A1=B5=E5=88=97=E8=A1=A8=E3=80=81=E7=BC=96=E8=BE=91?= =?UTF-8?q?=E3=80=81=E8=AF=A6=E6=83=85=E3=80=81=E6=B5=81=E7=A8=8B=E5=8F=8A?= =?UTF-8?q?=E8=BD=A6=E5=9E=8B=E5=B8=B8=E7=94=A8=E9=85=8D=E7=BD=AE=E5=88=97?= =?UTF-8?q?=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/api/supplychain/busvehicleapply.js | 42 +- .../cheliangpaichan/cheliangpaichan.vue | 505 ++++++++--------- .../cheliangpaichan/cheliangpaichanAdd.vue | 521 ++++++++--------- .../cheliangpaichan/cheliangpaichanInfo.vue | 456 +++++++++------ .../chexingbyconfiguration.vue | 191 +++++++ .../paichanguanli/cheliangpaichanEdit.vue | 455 +++++++++++++++ .../paichanguanli/cheliangpaichanInfo.vue | 529 ++++++++++++++++++ .../paichanguanli/chexingbyconfiguration.vue | 191 +++++++ 8 files changed, 2145 insertions(+), 745 deletions(-) create mode 100644 anrui-scm/anrui-scm-ui/src/views/workFlow/paichanguanliFlow/paichanguanli/cheliangpaichanEdit.vue create mode 100644 anrui-scm/anrui-scm-ui/src/views/workFlow/paichanguanliFlow/paichanguanli/cheliangpaichanInfo.vue create mode 100644 anrui-scm/anrui-scm-ui/src/views/workFlow/paichanguanliFlow/paichanguanli/chexingbyconfiguration.vue diff --git a/anrui-scm/anrui-scm-ui/src/api/supplychain/busvehicleapply.js b/anrui-scm/anrui-scm-ui/src/api/supplychain/busvehicleapply.js index b285cfce28..13a5af1a68 100644 --- a/anrui-scm/anrui-scm-ui/src/api/supplychain/busvehicleapply.js +++ b/anrui-scm/anrui-scm-ui/src/api/supplychain/busvehicleapply.js @@ -1,6 +1,5 @@ import request from '@/utils/request' // import qs from 'qs' -// 其他入库单 export default { // 查询分页列表 @@ -12,6 +11,15 @@ export default { headers: { 'Content-Type': 'application/json' } }) }, + // 查询车型和常用配置列表 + configurationlistPage: function(parmas) { + return request({ + url: '/base/basevehmodelconfig/listPage', + method: 'post', + data: parmas, + headers: { 'Content-Type': 'application/json' } + }) + }, // 保存新增记录 saveAdd: function(params) { return request({ @@ -22,9 +30,18 @@ export default { }) }, // 保存修改记录 - saveEdit: function(params, sid) { + saveEdit: function(params) { + return request({ + url: '/base/v1/busvehicleapply/update', + method: 'post', + data: params, + headers: { 'Content-Type': 'application/json' } + }) + }, + // 提交流程 + submitVehicleApply: function(params) { return request({ - url: '/base/v1/busvehicleapply/update/' + sid, + url: '/base/v1/busvehicleapply/submitVehicleApply', method: 'post', data: params, headers: { 'Content-Type': 'application/json' } @@ -46,15 +63,6 @@ export default { method: 'get' }) }, - - // // 根据单据编号查看详情 - // fetchByBillNo: function(sid) { - // return request({ - // url: '/base/busvehicleapply/fetchBySid/' + sid, - // method: 'get' - // }) - // }, - // 获取下拉列表(数据字典) pullDown: function(data) { return request({ @@ -72,16 +80,6 @@ export default { params: data }) }, - - // 获取下拉列表(简述配置) - getList: function(data) { - return request({ - url: '/base/v1/basemodelconfig/getListByVeSid', - method: 'get', - params: data - }) - }, - // 提交 doSubmit: function(params) { return request({ diff --git a/anrui-scm/anrui-scm-ui/src/views/supplychain/vehicle/cheliangpaichan/cheliangpaichan.vue b/anrui-scm/anrui-scm-ui/src/views/supplychain/vehicle/cheliangpaichan/cheliangpaichan.vue index e266541c59..987a0684df 100644 --- a/anrui-scm/anrui-scm-ui/src/views/supplychain/vehicle/cheliangpaichan/cheliangpaichan.vue +++ b/anrui-scm/anrui-scm-ui/src/views/supplychain/vehicle/cheliangpaichan/cheliangpaichan.vue @@ -1,19 +1,16 @@ diff --git a/anrui-scm/anrui-scm-ui/src/views/supplychain/vehicle/cheliangpaichan/cheliangpaichanAdd.vue b/anrui-scm/anrui-scm-ui/src/views/supplychain/vehicle/cheliangpaichan/cheliangpaichanAdd.vue index d8518b36b0..8d65425e21 100644 --- a/anrui-scm/anrui-scm-ui/src/views/supplychain/vehicle/cheliangpaichan/cheliangpaichanAdd.vue +++ b/anrui-scm/anrui-scm-ui/src/views/supplychain/vehicle/cheliangpaichan/cheliangpaichanAdd.vue @@ -1,173 +1,182 @@ diff --git a/anrui-scm/anrui-scm-ui/src/views/supplychain/vehicle/cheliangpaichan/chexingbyconfiguration.vue b/anrui-scm/anrui-scm-ui/src/views/supplychain/vehicle/cheliangpaichan/chexingbyconfiguration.vue index e69de29bb2..7a94bf557b 100644 --- a/anrui-scm/anrui-scm-ui/src/views/supplychain/vehicle/cheliangpaichan/chexingbyconfiguration.vue +++ b/anrui-scm/anrui-scm-ui/src/views/supplychain/vehicle/cheliangpaichan/chexingbyconfiguration.vue @@ -0,0 +1,191 @@ + + + + diff --git a/anrui-scm/anrui-scm-ui/src/views/workFlow/paichanguanliFlow/paichanguanli/cheliangpaichanEdit.vue b/anrui-scm/anrui-scm-ui/src/views/workFlow/paichanguanliFlow/paichanguanli/cheliangpaichanEdit.vue new file mode 100644 index 0000000000..3cf8f53257 --- /dev/null +++ b/anrui-scm/anrui-scm-ui/src/views/workFlow/paichanguanliFlow/paichanguanli/cheliangpaichanEdit.vue @@ -0,0 +1,455 @@ + + + + + + diff --git a/anrui-scm/anrui-scm-ui/src/views/workFlow/paichanguanliFlow/paichanguanli/cheliangpaichanInfo.vue b/anrui-scm/anrui-scm-ui/src/views/workFlow/paichanguanliFlow/paichanguanli/cheliangpaichanInfo.vue new file mode 100644 index 0000000000..656cf0b6d5 --- /dev/null +++ b/anrui-scm/anrui-scm-ui/src/views/workFlow/paichanguanliFlow/paichanguanli/cheliangpaichanInfo.vue @@ -0,0 +1,529 @@ + + + + + diff --git a/anrui-scm/anrui-scm-ui/src/views/workFlow/paichanguanliFlow/paichanguanli/chexingbyconfiguration.vue b/anrui-scm/anrui-scm-ui/src/views/workFlow/paichanguanliFlow/paichanguanli/chexingbyconfiguration.vue new file mode 100644 index 0000000000..2f2d56aadc --- /dev/null +++ b/anrui-scm/anrui-scm-ui/src/views/workFlow/paichanguanliFlow/paichanguanli/chexingbyconfiguration.vue @@ -0,0 +1,191 @@ + + + +