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

新增需求

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