业务办理审核-减免审核,审核状态筛选状态与结果不一致;
This commit is contained in:
parent
cd0f0d4d3f
commit
57d086bfcb
|
|
@ -33,6 +33,7 @@
|
|||
<el-option label="待审核" value="0"></el-option>
|
||||
<el-option label="审核中" value="1"></el-option>
|
||||
<el-option label="已审核" value="2"></el-option>
|
||||
<el-option label="已驳回" value="3"></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
|
|
@ -445,7 +446,7 @@ export default {
|
|||
uploadUrl: process.env.VUE_APP_BASE_API + '/file/upload', // 上传的图片服务器地址
|
||||
upload: {
|
||||
// 设置上传的请求头部
|
||||
headers: { Authorization: 'Bearer ' + getToken() },
|
||||
headers: { Authorization: 'Bearer ' + getToken() },
|
||||
},
|
||||
|
||||
delBusinessFileIdList: [], // 删除的图片id
|
||||
|
|
@ -584,7 +585,7 @@ export default {
|
|||
this.title = '查看'
|
||||
this.uploadKey = Date.now()
|
||||
// 清空附件列表
|
||||
this.dialogAppy.decreaseFile = []
|
||||
this.dialogAppy.decreaseFile = []
|
||||
|
||||
getDiscountViewList(row.id).then(async response => {
|
||||
if (response.code == 200) {
|
||||
|
|
@ -614,7 +615,7 @@ export default {
|
|||
this.title = '修改'
|
||||
this.uploadKey = Date.now()
|
||||
// 清空附件列表
|
||||
this.dialogAppy.decreaseFile = []
|
||||
this.dialogAppy.decreaseFile = []
|
||||
|
||||
getDiscountViewList(row.id).then(async response => {
|
||||
if (response.code == 200) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue