Commit 7bff7e30 authored by linxin's avatar linxin

Merge branch 'liuin' into uat

parents 12eb86f0 a94f95d6
...@@ -322,6 +322,30 @@ export default { ...@@ -322,6 +322,30 @@ export default {
}, },
created () {}, created () {},
methods: { methods: {
// 跳转银行信息录入
// entryInfo () {
// let idCard = ''
// if (this.baseInfo.auth_flag) {
// this.baseInfo.auth_flag === '是'
// ? (idCard = this.baseInfo.auth_person_id_card)
// : this.baseInfo.id_card_no
// console.log(',,,,,,,,,,,', idCard)
// } else {
// idCard = this.baseInfo.id_card_no
// }
// this.$router.push({
// name: 'EntryInfo',
// params: {
// id_card_no: idCard,
// bp_name: this.bp_name,
// project_id: this.project_id,
// confirm_status: this.con_confirm_status,
// entry_info_flag: this.entry_info_flag,
// user_bp_type: this.user_bp_type,
// bp_id: this.baseInfo.bp_id,
// },
// })
// },
charge (val, status) { charge (val, status) {
let vm = this let vm = this
this.hlsPopup.showConfirm({ this.hlsPopup.showConfirm({
......
...@@ -431,18 +431,18 @@ export default { ...@@ -431,18 +431,18 @@ export default {
// 进入待签约功能,客户类型为经销商则进入经销商功能,非经销商则进入合同签约 // 进入待签约功能,客户类型为经销商则进入经销商功能,非经销商则进入合同签约
goSign () { goSign () {
if (this.bp_id) { if (this.bp_id) {
if (this.user_bp_type === 'AGENT') { // if (this.user_bp_type === 'AGENT') {
this.$router.push({ // this.$router.push({
name: 'ContractList', // name: 'ContractList',
}) // })
} else { // } else {
this.$router.push({ this.$router.push({
name: 'ContractSigning', name: 'ContractSigning',
params: { params: {
user_bp_type: this.user_bp_type, user_bp_type: this.user_bp_type,
}, },
}) })
} // }
} else { } else {
hlsPopup.showLongCenter('请先进行用户绑定') hlsPopup.showLongCenter('请先进行用户绑定')
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment