整存整取:开户,存款,取款(不包括点击弹窗提交)

零存整取:开户,续存,支取销户(不包括点击弹窗提交)
20240205
e 3 years ago
parent 028c5768f4
commit c2a1617311
  1. 6
      src/pages/manage/list/personal/callDeposits/callDeposits.vue
  2. 54
      src/pages/manage/list/personal/callDeposits/openAccount.vue

@ -66,15 +66,11 @@ export default {
options:[], options:[],
activeIndex:'1', activeIndex:'1',
second:[// second:[//
], ],
} }
}, },
created() { created() {
this.handleSelect('1')
}, },
methods: { methods: {
handleSelect(val){ handleSelect(val){

@ -69,7 +69,7 @@
</template> </template>
<script> <script>
import { mobPattern, namePattern, ratePattern, vercustomer } from '@/utils/verify.js' import { mobPattern, namePattern, ratePattern, vercustomer } from '@/utils/verify.js'
import { myValidate, checkHanzi, checkName, ismoney } from '@/utils/utilFunction.js' import { myValidate, checkHanzi, checkName, ismoney, autoPlay2, autoPlay } from '@/utils/utilFunction.js';
export default{ export default{
name:'', name:'',
props:{}, props:{},
@ -135,22 +135,66 @@ export default{
} }
], ],
}, },
myTable: {
195: {
prop: 'certificateType',//
type: '1'
},
197: {
prop: 'clientNumber',//
type: '3'
},
},
myTable2: {
198: {
prop: 'customerName',//
type: '3'
},
199: {
prop: 'currency',//
type: '1'
},
200: {
prop: 'currencyMark',//
type: '1'
},
201: {
prop: 'voucherType',//
type: '1'
},
// : {
// prop: 'voucherType',//
// type: '1'
// },
// 127: {
// prop: 'voucherType',//
// type: '1'
// },
// 129: {
// prop: 'withdrawingWay',//
// type: '1'
// },
},
} }
}, },
mounted() { mounted() {
this.getFormData()
this.$refs.clientNumber.focus() this.$refs.clientNumber.focus()
}, },
methods: { methods: {
getFormData(){
const parentId = '0,5,26,60,193'
autoPlay2(parentId, this.form, this.myTable2, this.myTable)
},
popUp(text) { popUp(text) {
this.$store.commit('system/changePop',{show:true,text}) this.$store.commit('system/changePop',{show:true,text})
}, },
submitForm() { submitForm() {
this.$refs.form.validate(myValidate(() => { this.$refs.form.validate(myValidate(() => {
// //
this.$message({ this.visible = true;
message: '验证成功', const parentId = '0,5,26,60,193'
center: true autoPlay(parentId, this.form, this.myTable2, this.myTable)
});
}, this.$refs)); }, this.$refs));
}, },
ismoney: ismoney, ismoney: ismoney,

Loading…
Cancel
Save