Commit c8f7e2f6 authored by 刘雅文's avatar 刘雅文

新增需求

parent bcc0c2c0
......@@ -182,7 +182,7 @@ export default {
} = this.$route.query;
this.query = this.$route.query
if (clientNo && clientProductName && phoneNo && loanNo) {
if (clientNo && clientProductName && phoneNo) {
this.clientNos = clientNo;
this.clientProducts = clientProductName;
this.clientCells = phoneNo;
......
......@@ -286,7 +286,7 @@ export default {
type: 'warning',
beforeClose: (action, instance, done) => {
if (action === 'confirm') {
this.$$get('/client/resetAuthen?clientNo=' + value)
this.$$get(`/client/resetAuthen?clientNo=${value}&appName=${appName}`)
.then(res => {
if (res.data.code != 200) {
this.$message.error(res.data.message);
......
......@@ -246,7 +246,7 @@ export default {
},
//解绑
unSign(n) {
console.log(n);
console.log(n,'88888');
// console.log(this.params);
this.$confirm("确定要解绑吗?", "提示", {
confirmButtonText: "确定",
......@@ -258,6 +258,7 @@ export default {
// this.dataInfo.clientNo = n.clientNo;
this.dataInfo.bizType = n.bizType;
this.dataInfo.bankAccount = n.bankAccount;
this.dataInfo.loanSign = n.loanSign;
})
.catch(() => {
this.$message({
......
......@@ -111,7 +111,7 @@ export default {
},
rules: {
bankAccount: [{required: true, message: '支付银行卡不能为空', trigger: 'blur'}],
// paymentChannel: [{required: true, message: '支付渠道不能为空', trigger: 'blur'}],
paymentChannel: [{required: true, message: '支付渠道不能为空', trigger: 'blur'}],
backAmt: [{required: true, message: "扣款金额不能为空", trigger: 'blur'}],
},
loginName: '',
......
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