forked from angelo/web-retail-admin
feat(business): 办理业务走全免逻辑
This commit is contained in:
parent
e6f63aee5f
commit
ebf362ab49
|
@ -318,6 +318,7 @@
|
|||
<div class="footer">
|
||||
<div style="margin: 0 auto">
|
||||
<el-button class="thebtn"> {{ '取消' }}</el-button>
|
||||
<!-- v-hasButtons="['ReviewBusinessExemptAll']" -->
|
||||
<el-button
|
||||
v-hasButtons="['BasicBusinessConfirm']"
|
||||
type="primary"
|
||||
|
@ -417,7 +418,8 @@ import {
|
|||
getHandleBusinessEnum,
|
||||
getBusinessList,
|
||||
businessCheck,
|
||||
getCompanyAreaList
|
||||
getCompanyAreaList,
|
||||
saveHandelBusiness
|
||||
} from '@/api/business'
|
||||
import { getAwardsListChiose, getgradeRanglist } from '@/api/level'
|
||||
import { getvertexValue, getmemberTeamList } from '@/api/financialCase'
|
||||
|
@ -614,11 +616,20 @@ export default {
|
|||
businessMemberList: this.multipleSelection,
|
||||
handleBusinessList: this.handleBusinessList
|
||||
}).then((res) => {
|
||||
if (res.code == 200) {
|
||||
this.$message({
|
||||
message: res.msg,
|
||||
type: 'success'
|
||||
})
|
||||
if (res.code === 200) {
|
||||
// saveHandelBusiness({
|
||||
// processType: 3,
|
||||
// handleBusinessList: res.data.handleBusinessList,
|
||||
// businessMemberList: res.data.businessMemberList
|
||||
// }).then(res => {
|
||||
// if (res.code === 200) {
|
||||
// this.$message({
|
||||
// message: res.msg || '操作成功',
|
||||
// type: 'success'
|
||||
// })
|
||||
// this.reChongzhi()
|
||||
// }
|
||||
// })
|
||||
this.$router.push({
|
||||
path: '/information/business/shyw',
|
||||
query: {
|
||||
|
@ -626,7 +637,7 @@ export default {
|
|||
handleBusinessList: JSON.stringify(this.handleBusinessList)
|
||||
}
|
||||
})
|
||||
} else if (res.code == 504 && res.data) {
|
||||
} else if (res.code === 504 && res.data) {
|
||||
this.errorShow = true
|
||||
this.errorData = res.data
|
||||
}
|
||||
|
|
|
@ -216,7 +216,7 @@
|
|||
|
||||
<el-button class="thebtn0" @click="saveDate(0)">
|
||||
{{ '取消' }}</el-button>
|
||||
<el-button
|
||||
<!-- <el-button
|
||||
v-hasButtons="['ReviewBusinessExemptSign']"
|
||||
class="thebtn1"
|
||||
@click="saveDate(1)"
|
||||
|
@ -225,18 +225,18 @@
|
|||
v-hasButtons="['ReviewBusinessExemptPay']"
|
||||
class="thebtn2"
|
||||
@click="saveDate(2)"
|
||||
>{{ '免付' }}</el-button>
|
||||
>{{ '免付' }}</el-button> -->
|
||||
<el-button
|
||||
v-hasButtons="['ReviewBusinessExemptAll']"
|
||||
class="thebtn3"
|
||||
@click="saveDate(3)"
|
||||
>{{ '全免' }}</el-button>
|
||||
<el-button
|
||||
>{{ '确认' }}</el-button>
|
||||
<!-- <el-button
|
||||
v-hasButtons="['ReviewBusinessConfirm']"
|
||||
class="thebtn4"
|
||||
@click="saveDate(4)"
|
||||
>
|
||||
{{ '确认' }}</el-button>
|
||||
{{ '确认' }}</el-button> -->
|
||||
</div>
|
||||
</div>
|
||||
<el-dialog
|
||||
|
|
Loading…
Reference in New Issue