浏览代码

产权交易注册检索

rongxin_prod
庞东旭 1年前
父节点
当前提交
2319a53fbc
共有 3 个文件被更改,包括 20 次插入4 次删除
  1. +2
    -2
      src/views/register/companyRegister.vue
  2. +2
    -2
      src/views/register/userRegister.vue
  3. +16
    -0
      src/views/user/accountSetting/bankInformation/index.vue

+ 2
- 2
src/views/register/companyRegister.vue 查看文件

@@ -346,7 +346,7 @@ export default {
}
depositList(data).then(response => {
if (response.rows.length<1){
if (this.sheng==''||this.shi==''){
if (this.form.sheng==''||this.form.shi==''){
this.$toast({
icon: 'fail', // 找到自己需要的图标
message: '请选择省市',
@@ -354,7 +354,7 @@ export default {
})
return;
}
if (this.bankDeposit==''){
if (this.form.bankDeposit==''){
this.$toast({
icon: 'fail', // 找到自己需要的图标
message: '请输入关键词',


+ 2
- 2
src/views/register/userRegister.vue 查看文件

@@ -309,7 +309,7 @@ export default {
}
depositList(data).then(response => {
if (response.rows.length<1){
if (this.sheng==''||this.shi==''){
if (this.form.sheng==''||this.form.shi==''){
this.$toast({
icon: 'fail', // 找到自己需要的图标
message: '请选择省市',
@@ -317,7 +317,7 @@ export default {
})
return;
}
if (this.bankDeposit==''){
if (this.form.bankDeposit==''){
this.$toast({
icon: 'fail', // 找到自己需要的图标
message: '请输入关键词',


+ 16
- 0
src/views/user/accountSetting/bankInformation/index.vue 查看文件

@@ -164,6 +164,22 @@ import {depositList, realtimeBackList} from "@/api/register";
}
depositList(data).then(response => {
if (response.rows.length<1){
if (this.form.sheng==''||this.form.shi==''){
this.$toast({
icon: 'fail', // 找到自己需要的图标
message: '请选择省市',
duration:"1000",
})
return;
}
if (this.form.bankDeposit==''){
this.$toast({
icon: 'fail', // 找到自己需要的图标
message: '请输入关键词',
duration:"1000",
})
return;
}
realtimeBackList(data).then(response2 => {
console.log(response2)
this.bankAddressOption = response2.data;


正在加载...
取消
保存