diff --git a/anrui-buscenter/anrui-buscenter-ui/src/api/sealContract/sealContract.js b/anrui-buscenter/anrui-buscenter-ui/src/api/sealContract/sealContract.js
index 2809b37904..e7997aef4a 100644
--- a/anrui-buscenter/anrui-buscenter-ui/src/api/sealContract/sealContract.js
+++ b/anrui-buscenter/anrui-buscenter-ui/src/api/sealContract/sealContract.js
@@ -1,5 +1,4 @@
import request from '@/utils/request'
-import qs from 'qs'
// 盖章申请管理分页列表
export function listPage(data) {
@@ -25,12 +24,27 @@ export function save(data) {
})
}
+// 盖章申请管理提交
+export function submitSealApply(data) {
+ return request({
+ url: '/buscenter/v1/bussealapply/submitSealApply',
+ method: 'post',
+ data: data,
+ headers: {
+ 'Content-Type': 'application/json'
+ }
+ })
+}
+
// 盖章申请管理分页列表删除
export function delBySids(data) {
return request({
- url: '/buscenter/v1/bussealapply/delBySids?sids=' + data,
+ url: '/buscenter/v1/bussealapply/delBySids',
method: 'DELETE',
- data: qs.stringify(data)
+ data: data,
+ headers: {
+ 'Content-Type': 'application/json'
+ }
})
}
@@ -50,3 +64,51 @@ export function dataDictionary(data) {
params: data
})
}
+
+// 待办任务同意办理
+export function businessAgree(data) {
+ return request({
+ url: '/buscenter/v1/scmapplyinbound/complete',
+ method: 'post',
+ data: data,
+ headers: {
+ 'Content-Type': 'application/json'
+ }
+ })
+}
+
+// 待办任务驳回任务
+export function rejectTask(data) {
+ return request({
+ url: '/buscenter/v1/scmapplyinbound/reject/' + data.businessSid,
+ method: 'post',
+ data: data,
+ headers: {
+ 'Content-Type': 'application/json'
+ }
+ })
+}
+
+// 待办任务终止任务
+export function breakTask(data) {
+ return request({
+ url: '/buscenter/v1/scmapplyinbound/breakProcess/' + data.businessSid,
+ method: 'post',
+ data: data,
+ headers: {
+ 'Content-Type': 'application/json'
+ }
+ })
+}
+
+// 待办任务撤回任务
+export function revokeTask(data) {
+ return request({
+ url: '/buscenter/v1/scmapplyinbound/revokeProcess/' + data.userSid + '/' + data.businessSid,
+ method: 'post',
+ data: data,
+ headers: {
+ 'Content-Type': 'application/json'
+ }
+ })
+}
diff --git a/anrui-buscenter/anrui-buscenter-ui/src/components/uploadFile/filesUpload.vue b/anrui-buscenter/anrui-buscenter-ui/src/components/uploadFile/filesUpload.vue
index a22065ff3e..9542883498 100644
--- a/anrui-buscenter/anrui-buscenter-ui/src/components/uploadFile/filesUpload.vue
+++ b/anrui-buscenter/anrui-buscenter-ui/src/components/uploadFile/filesUpload.vue
@@ -41,7 +41,7 @@ export default {
},
methods: {
show(val) {
- console.log(val)
+ this.fileList_FuJian = []
this.fileList_FuJian = val
},
handleChange(file, fileList) {
diff --git a/anrui-buscenter/anrui-buscenter-ui/src/router/index.js b/anrui-buscenter/anrui-buscenter-ui/src/router/index.js
index 7b31ae0086..2995bf378b 100644
--- a/anrui-buscenter/anrui-buscenter-ui/src/router/index.js
+++ b/anrui-buscenter/anrui-buscenter-ui/src/router/index.js
@@ -43,7 +43,7 @@ export const constantRoutes = [{
import('@/views/404'),
hidden: true
},
- //询价车型
+ // 询价车型
{
path: '/xunjiachexing',
component: Layout,
@@ -96,7 +96,7 @@ export const constantRoutes = [{
meta: {
title: '欠款提车申请'
}
- },
+ }
]
},
// 客户管理
@@ -220,7 +220,7 @@ export const constantRoutes = [{
meta: {
title: '出库办理'
}
- },
+ }
]
},
// 销售管理
@@ -496,7 +496,7 @@ export const constantRoutes = [{
component: Layout,
redirect: '/gaizhangguanli',
meta: {
- title: '车型查询'
+ title: '盖章管理'
},
children: [
{
@@ -517,21 +517,21 @@ export const constantRoutes = [{
path: '/xiaoshouguanliFlow/xunidingdan/dingjinshouquInfo',
component: () =>
import('@/views/workflow/xiaoshouguanliFlow/xunidingdanFlow/dingjinshouquInfo.vue'),
- name: 'dingjinshouquInfo',
+ name: 'dingjinshouquInfo'
},
// 订金收取发起人办理编辑页面
{
path: '/xiaoshouguanliFlow/xunidingdan/dingjinshouquEdit',
component: () =>
import('@/views/workflow/xiaoshouguanliFlow/xunidingdanFlow/dingjinshouquEdit.vue'),
- name: 'dingjinshouquEdit',
+ name: 'dingjinshouquEdit'
},
// 订金收取审批办理页面
{
path: '/xiaoshouguanliFlow/xunidingdan/dingjinshouqu',
component: () =>
import('@/views/workflow/xiaoshouguanliFlow/xunidingdanFlow/dingjinshouqu.vue'),
- name: 'dingjinshouqu',
+ name: 'dingjinshouqu'
},
// 车辆预定审批办理页面
@@ -539,68 +539,68 @@ export const constantRoutes = [{
path: '/xiaoshouguanliFlow/xunidingdan/cheliangyuding',
component: () =>
import('@/views/workflow/xiaoshouguanliFlow/xunidingdanFlow/cheliangyuding.vue'),
- name: 'cheliangyuding',
+ name: 'cheliangyuding'
},
// 车辆预定发起人办理编辑页面
{
path: '/xiaoshouguanliFlow/xunidingdan/cheliangyudingEdit',
component: () =>
import('@/views/workflow/xiaoshouguanliFlow/xunidingdanFlow/cheliangyudingEdit.vue'),
- name: 'cheliangyudingEdit',
+ name: 'cheliangyudingEdit'
},
// 车辆预定审批、发起人详情页面
{
path: '/xiaoshouguanliFlow/xunidingdan/cheliangyudingInfo',
component: () =>
import('@/views/workflow/xiaoshouguanliFlow/xunidingdanFlow/cheliangyudingInfo.vue'),
- name: 'cheliangyudingInfo',
+ name: 'cheliangyudingInfo'
},
- //特殊审批
- //欠款提车申请详情
+ // 特殊审批
+ // 欠款提车申请详情
{
path: '/teshushenpiFlow/qiankuanticheguanli/qiankuanticheInfo',
component: () =>
import('@/views/workflow/teshushenpiFlow/qiankuanticheguanli/qiankuanticheInfo.vue'),
- name: 'qiankuanticheInfo',
+ name: 'qiankuanticheInfo'
},
- //欠款提车编辑
+ // 欠款提车编辑
{
path: '/teshushenpiFlow/qiankuanticheguanli/qiankuanticheEdit',
component: () =>
import('@/views/workflow/teshushenpiFlow/qiankuanticheguanli/qiankuanticheEdit.vue'),
- name: 'qiankuanticheEdit',
+ name: 'qiankuanticheEdit'
},
- //欠款提车复核
+ // 欠款提车复核
{
path: '/teshushenpiFlow/qiankuanticheguanli/qiankuantichefuhe',
component: () =>
import('@/views/workflow/teshushenpiFlow/qiankuanticheguanli/qiankuantichefuhe.vue'),
- name: 'qiankuantichefuhe',
+ name: 'qiankuantichefuhe'
},
- //欠款提车复核详情
+ // 欠款提车复核详情
{
path: '/teshushenpiFlow/qiankuanticheguanli/qiankuantichefuheInfo',
component: () =>
import('@/views/workflow/teshushenpiFlow/qiankuanticheguanli/qiankuantichefuheInfo.vue'),
- name: 'qiankuantichefuheInfo',
+ name: 'qiankuantichefuheInfo'
},
- //合同管理
- //合同档案详情
+ // 合同管理
+ // 合同档案详情
{
path: '/hetongguanliFlow/hetongdanganguanli/hetongdangan',
component: () =>
import('@/views/workflow/hetongguanliFlow/hetongdanganguanli/hetongdangan.vue'),
- name: 'hetongdangan',
+ name: 'hetongdangan'
},
- //合同档案编辑
+ // 合同档案编辑
{
path: '/hetongguanliFlow/hetongdanganguanli/hetongdanganEdit',
component: () =>
import('@/views/workflow/hetongguanliFlow/hetongdanganguanli/hetongdanganEdit.vue'),
- name: 'hetongdanganEdit',
- },
+ name: 'hetongdanganEdit'
+ }
// 销售订单
// 销售管理详情
@@ -617,8 +617,6 @@ export const constantRoutes = [{
// import('@/views/workflow/hetongguanliFlow/hetongdanganguanli/hetongdangan.vue'),
// name: 'hetongdangan',
// },
-
-
// 404 page must be placed at the end !!!
// { path: '*', redirect: '/404', hidden: true }
]
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
index 11bb1674aa..dd59a28978 100644
--- a/anrui-buscenter/anrui-buscenter-ui/src/views/gaizhanggunali/gaizhangshenqingguanli/gaizhangAdd.vue
+++ b/anrui-buscenter/anrui-buscenter-ui/src/views/gaizhanggunali/gaizhangshenqingguanli/gaizhangAdd.vue
@@ -7,7 +7,7 @@