20240205
luoJunYong.123 3 years ago
parent 01beeb9683
commit a9603e9096
  1. 8
      src/components/case/index.vue
  2. 2
      src/pages/counter/list/index.vue
  3. 23
      src/pages/manage/list/personal/timeDeposit/withdrawal.vue

@ -855,9 +855,15 @@ export default {
// location.href = 'http://124.71.12.62/banksystem/#/index/list?'+'token='+token+'&cid='+cid+'&systemId='+systemId
// location.href = 'http://www.huorantech.cn/banksystem/#/index/list?'+'token='+token+'&cid='+cid+'&systemId='+systemId
//
location.href = 'http://39.108.250.202/banksystem/#/index/list?'+'token='+token+'&cid='+cid+'&systemId='+systemId
if(process.env.NODE_ENV === 'development') {
location.href = "http://192.168.31.155:8093/#/index/list?"+'token='+token+'&cid='+cid+'&systemId='+systemId
}else {
location.href = 'http://39.108.250.202/banksystem/#/index/list?'+'token='+token+'&cid='+cid+'&systemId='+systemId
}
//
// location.href = "http://192.168.31.155:8093/#/index/list?"+'token='+token+'&cid='+cid+'&systemId='+systemId
console.log(process.env.NODE_ENV)
},
checkVer() {

@ -860,6 +860,8 @@ export default {
// }
},
created() {
console.log('---')
console.log(process.env.NODE_ENV)
if(!sessionStorage.getItem('firstLoad')) {
const loading = this.$loading({
lock: true,

@ -90,12 +90,13 @@ export default{
MyDialog
},
created() {
if(this.form.depositNumber) {
this.form.depositNumber = '0912'
}
if(sessionStorage.getItem('nomtimeDepositWithdrawalPassword')) {
this.form.drawPassword = sessionStorage.getItem('nomtimeDepositWithdrawalPassword')
}
const { withdrawWay } = this.dataFlow
console.log('withdrawWay---')
console.log(withdrawWay)
if(withdrawWay === 126) {
this.form.interest = 5.75
this.rules.withdrawAmount[0].required = false
@ -132,6 +133,7 @@ export default{
// this.form.withdrawWay = withdrawWay
}
}
this.getFormData()
},
data(){
@ -319,6 +321,9 @@ export default{
// 154: 'nomtimeDepositWithdrawalPassword'
}
const callback = () => {
if(this.form.depositNumber) {
this.form.depositNumber = '0912'
}
// if(this.form.voucherNumber) {
// this.cardNumberJudge = true
// }
@ -427,10 +432,10 @@ export default{
this.$router.push('/counter/list/')
},
submitIt() {
if(!this.form.voucherNumber) {
messageCard()
return
}
// if(!this.form.voucherNumber) {
// messageCard()
// return
// }
if(!this.form.drawPassword) {
messagePassword()
return
@ -475,15 +480,15 @@ export default{
'form.withdrawWay': {
handler(newVal) {
// withdrawWay
const { withdrawWay } = this.dataFlow
if(withdrawWay === 126 && newVal === 126) {
// const { withdrawWay } = this.dataFlow
if(newVal === 126) {
this.form.withdrawAmount = Number(this.form.interest) + Number(this.form.capital)
this.capitalDisabled = true
this.form.interest = 5.75
this.rules.newVoucherNumber = []
sessionStorage.setItem('newVoucherNumber', this.form.newVoucherNumber)
this.form.newVoucherNumber = ''
}else if(withdrawWay === 126 && newVal !== 126) {
}else {
if(sessionStorage.getItem('newVoucherNumber')) {
this.form.newVoucherNumber = sessionStorage.getItem('newVoucherNumber')
}

Loading…
Cancel
Save