From 3003870a9ea33110775ab9079e3ef2766f1e2eba Mon Sep 17 00:00:00 2001 From: yunuo970428 <405378304@qq.com> Date: Wed, 27 Apr 2022 19:56:06 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BC=80=E5=8F=91=E7=9B=96=E7=AB=A0=E7=94=B3?= =?UTF-8?q?=E8=AF=B7=E7=AE=A1=E7=90=86=E7=9A=84=E5=88=86=E9=A1=B5=E5=88=97?= =?UTF-8?q?=E8=A1=A8=E9=A1=B5=E9=9D=A2=E3=80=81=E6=96=B0=E5=A2=9E=E3=80=81?= =?UTF-8?q?=E7=BC=96=E8=BE=91=E3=80=81=E8=AF=A6=E6=83=85=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/api/sealContract/sealContract.js | 52 +++ .../uploadFile/HeTongMoBanUpload.vue | 57 +++ .../src/components/uploadFile/filesUpload.vue | 80 ++++ .../anrui-buscenter-ui/src/router/index.js | 20 + .../gaizhangshenqingguanli/gaizhangAdd.vue | 210 ++++++++++ .../gaizhangshenqingguanli/gaizhangInfo.vue | 140 +++++++ .../gaizhangshenqingguanli/gaizhangguanli.vue | 248 ++++++++++++ .../gaizhangshenqingEdit.vue | 237 ++++++++++++ .../gaizhangshenqingInfo.vue | 366 ++++++++++++++++++ 9 files changed, 1410 insertions(+) create mode 100644 anrui-buscenter/anrui-buscenter-ui/src/api/sealContract/sealContract.js create mode 100644 anrui-buscenter/anrui-buscenter-ui/src/components/uploadFile/HeTongMoBanUpload.vue create mode 100644 anrui-buscenter/anrui-buscenter-ui/src/components/uploadFile/filesUpload.vue create mode 100644 anrui-buscenter/anrui-buscenter-ui/src/views/gaizhanggunali/gaizhangshenqingguanli/gaizhangAdd.vue create mode 100644 anrui-buscenter/anrui-buscenter-ui/src/views/gaizhanggunali/gaizhangshenqingguanli/gaizhangInfo.vue create mode 100644 anrui-buscenter/anrui-buscenter-ui/src/views/gaizhanggunali/gaizhangshenqingguanli/gaizhangguanli.vue create mode 100644 anrui-buscenter/anrui-buscenter-ui/src/views/workflow/gaizhangguanliFlow/gaizhangshenqingguanli/gaizhangshenqingEdit.vue create mode 100644 anrui-buscenter/anrui-buscenter-ui/src/views/workflow/gaizhangguanliFlow/gaizhangshenqingguanli/gaizhangshenqingInfo.vue diff --git a/anrui-buscenter/anrui-buscenter-ui/src/api/sealContract/sealContract.js b/anrui-buscenter/anrui-buscenter-ui/src/api/sealContract/sealContract.js new file mode 100644 index 0000000000..2809b37904 --- /dev/null +++ b/anrui-buscenter/anrui-buscenter-ui/src/api/sealContract/sealContract.js @@ -0,0 +1,52 @@ +import request from '@/utils/request' +import qs from 'qs' + +// 盖章申请管理分页列表 +export function listPage(data) { + return request({ + url: '/buscenter/v1/bussealapply/listPage', + method: 'post', + data: data, + headers: { + 'Content-Type': 'application/json' + } + }) +} + +// 盖章申请管理保存(新增、编辑) +export function save(data) { + return request({ + url: '/buscenter/v1/bussealapply/save', + method: 'post', + data: data, + headers: { + 'Content-Type': 'application/json' + } + }) +} + +// 盖章申请管理分页列表删除 +export function delBySids(data) { + return request({ + url: '/buscenter/v1/bussealapply/delBySids?sids=' + data, + method: 'DELETE', + data: qs.stringify(data) + }) +} + +// 盖章申请管理根据Sid获取一条记录 +export function fetchDetailsBySid(data) { + return request({ + url: '/buscenter/v1/bussealapply/fetchDetailsBySid/' + data, + method: 'get' + }) +} + +// 数据字典 +export function dataDictionary(data) { + return request({ + url: '/portal/v1/dictcommons/typeValues', + method: 'get', + params: data + }) +} diff --git a/anrui-buscenter/anrui-buscenter-ui/src/components/uploadFile/HeTongMoBanUpload.vue b/anrui-buscenter/anrui-buscenter-ui/src/components/uploadFile/HeTongMoBanUpload.vue new file mode 100644 index 0000000000..dd49128807 --- /dev/null +++ b/anrui-buscenter/anrui-buscenter-ui/src/components/uploadFile/HeTongMoBanUpload.vue @@ -0,0 +1,57 @@ + + + + 选择文件 + + + + + + + diff --git a/anrui-buscenter/anrui-buscenter-ui/src/components/uploadFile/filesUpload.vue b/anrui-buscenter/anrui-buscenter-ui/src/components/uploadFile/filesUpload.vue new file mode 100644 index 0000000000..a22065ff3e --- /dev/null +++ b/anrui-buscenter/anrui-buscenter-ui/src/components/uploadFile/filesUpload.vue @@ -0,0 +1,80 @@ + + + + 选择文件 + 单个文件大小不允许超过100M,支持上传文件类型: {{ accept }} + + + + + + + diff --git a/anrui-buscenter/anrui-buscenter-ui/src/router/index.js b/anrui-buscenter/anrui-buscenter-ui/src/router/index.js index 95c19e5479..7b31ae0086 100644 --- a/anrui-buscenter/anrui-buscenter-ui/src/router/index.js +++ b/anrui-buscenter/anrui-buscenter-ui/src/router/index.js @@ -490,6 +490,26 @@ export const constantRoutes = [{ } ] }, + // 车型查询 + { + path: '/gaizhangguanli', + component: Layout, + redirect: '/gaizhangguanli', + meta: { + title: '车型查询' + }, + children: [ + { + path: '/gaizhangguanli/gaizhangshenqingguanli', + component: () => + import('@/views/gaizhanggunali/gaizhangshenqingguanli/gaizhangguanli.vue'), + name: 'gaizhangguanli', + meta: { + title: '盖章申请管理' + } + } + ] + }, // 流程所需页面路径 // 订金收取审批、发起人详情页面 diff --git a/anrui-buscenter/anrui-buscenter-ui/src/views/gaizhanggunali/gaizhangshenqingguanli/gaizhangAdd.vue b/anrui-buscenter/anrui-buscenter-ui/src/views/gaizhanggunali/gaizhangshenqingguanli/gaizhangAdd.vue new file mode 100644 index 0000000000..11bb1674aa --- /dev/null +++ b/anrui-buscenter/anrui-buscenter-ui/src/views/gaizhanggunali/gaizhangshenqingguanli/gaizhangAdd.vue @@ -0,0 +1,210 @@ + + + + {{ viewTitle }} + + 保存 + + 提交 + + 返回 + + + + + 盖章申请单 + + + 申请人 + + + + + + + + 盖章日期 + + + + + + + + + + 盖章类型 + + + + + + + + 盖章个数 + + + + + + + + + + 文章名称或盖章事由 + + + + + + + + + + 盖章文件 + + + + + + + + + + + + + + + diff --git a/anrui-buscenter/anrui-buscenter-ui/src/views/gaizhanggunali/gaizhangshenqingguanli/gaizhangInfo.vue b/anrui-buscenter/anrui-buscenter-ui/src/views/gaizhanggunali/gaizhangshenqingguanli/gaizhangInfo.vue new file mode 100644 index 0000000000..205fa5c5a8 --- /dev/null +++ b/anrui-buscenter/anrui-buscenter-ui/src/views/gaizhanggunali/gaizhangshenqingguanli/gaizhangInfo.vue @@ -0,0 +1,140 @@ + + + + {{ viewTitle }} + + 返回 + + + + + 盖章申请单 + + + 申请人 + + + + {{ formobj.applyName }} + + + + 盖章日期 + + + + {{ formobj.sealDate }} + + + + + + 盖章类型 + + + {{ formobj.sealTypeValue }} + + + 盖章个数 + + + + {{ formobj.sealNum }} + + + + + + 文章名称或盖章事由 + + + + {{ formobj.fileNameOrSealReason }} + + + + + + 盖章文件 + + + + + {{ item.name }} + + + + + + + + + + + + diff --git a/anrui-buscenter/anrui-buscenter-ui/src/views/gaizhanggunali/gaizhangshenqingguanli/gaizhangguanli.vue b/anrui-buscenter/anrui-buscenter-ui/src/views/gaizhanggunali/gaizhangshenqingguanli/gaizhangguanli.vue new file mode 100644 index 0000000000..de92755f2a --- /dev/null +++ b/anrui-buscenter/anrui-buscenter-ui/src/views/gaizhanggunali/gaizhangshenqingguanli/gaizhangguanli.vue @@ -0,0 +1,248 @@ + + + + + 盖章申请管理 + + 新增 + 删除 + 关闭 + + + + + {{ searchxianshitit }} + + + + + + + + + 至 + + + + + 查询 + 重置 + + + + + + + 盖章申请列表 + + + + + + + + + 办理 + 查看 + + + + + {{ scope.row.applyName }} + + + + + {{ scope.row.applyName }} + + + + + {{ scope.row.sealDate }} + + + + + {{ scope.row.sealTypeValue }} + + + + + {{ scope.row.fileNameOrSealReason }} + + + + + + + + + + + + + + + + + + diff --git a/anrui-buscenter/anrui-buscenter-ui/src/views/workflow/gaizhangguanliFlow/gaizhangshenqingguanli/gaizhangshenqingEdit.vue b/anrui-buscenter/anrui-buscenter-ui/src/views/workflow/gaizhangguanliFlow/gaizhangshenqingguanli/gaizhangshenqingEdit.vue new file mode 100644 index 0000000000..50f6d757f8 --- /dev/null +++ b/anrui-buscenter/anrui-buscenter-ui/src/views/workflow/gaizhangguanliFlow/gaizhangshenqingguanli/gaizhangshenqingEdit.vue @@ -0,0 +1,237 @@ + + + + {{ viewTitle }} + + 保存 + + 提交 + + 返回 + + + + + 盖章申请单 + + + 申请人 + + + + + + + + 盖章日期 + + + + + + + + + + 盖章类型 + + + + + + + + 盖章个数 + + + + + + + + + + 文章名称或盖章事由 + + + + + + + + + + 盖章文件 + + + + + + + + + + + + + + + diff --git a/anrui-buscenter/anrui-buscenter-ui/src/views/workflow/gaizhangguanliFlow/gaizhangshenqingguanli/gaizhangshenqingInfo.vue b/anrui-buscenter/anrui-buscenter-ui/src/views/workflow/gaizhangguanliFlow/gaizhangshenqingguanli/gaizhangshenqingInfo.vue new file mode 100644 index 0000000000..8f2fb3c374 --- /dev/null +++ b/anrui-buscenter/anrui-buscenter-ui/src/views/workflow/gaizhangguanliFlow/gaizhangshenqingguanli/gaizhangshenqingInfo.vue @@ -0,0 +1,366 @@ + + + + {{ viewTitle }} + + 同 意 + 驳 回 + 终 止 + 撤 回 + 关 闭 + + + + + 盖章申请单 + + + 申请人 + + + + {{ formobj.applyName }} + + + + 盖章日期 + + + + {{ formobj.sealDate }} + + + + + + 盖章类型 + + + {{ formobj.sealTypeValue }} + + + 盖章个数 + + + + {{ formobj.sealNum }} + + + + + + 文章名称或盖章事由 + + + + {{ formobj.fileNameOrSealReason }} + + + + + + 盖章文件 + + + + + {{ item.name }} + + + + + + + + + + + + + + + + + + + + + + +