Browse Source

挂牌项目数据对接。

wulanhaote
nsgkyjk 3 years ago
parent
commit
e3ddea4282
3 changed files with 11 additions and 4 deletions
  1. +4
    -3
      src/views/project/index.vue
  2. +1
    -0
      src/views/project/projectDetail.vue
  3. +6
    -1
      src/views/project/signUp.vue

+ 4
- 3
src/views/project/index.vue View File

@@ -3,7 +3,7 @@
<van-search v-model="value" placeholder="请输入搜索关键词" @search="onSearch"/>
<van-dropdown-menu>
<van-dropdown-item v-model="value1" :options="projectTypeOption" @change="getList"/>
<van-dropdown-item :value="value2" :title="value2">
<van-dropdown-item :value="value2" :title="value2" ref="item">
<van-tree-select
:active-id.sync="activeId"
:items="deptListOption"
@@ -88,10 +88,10 @@ export default {
}else{
this.deptListOption.push({ text: item.deptName,children: list});
}

});
});
});
this.getList();
},
mounted() {},
methods: {
@@ -100,7 +100,7 @@ export default {
if(this.infoList.length>0){
let newList = []
for(let j = 0 ;j<this.infoList.length;j++){
if(this.infoList[j].content.indexOf(val)>-1){
if(this.infoList[j].projectName.indexOf(val)>-1){
newList.push(this.infoList[j]);
}
}
@@ -132,6 +132,7 @@ export default {
this.value2=data.text
}
this.getList()
this.$refs.item.toggle();
},
},
};


+ 1
- 0
src/views/project/projectDetail.vue View File

@@ -326,6 +326,7 @@ export default {
getBiddingList(this.id).then(response =>{
this.biddinglistInformation = response.rows
});

},
methods: {
onChange(index) {


+ 6
- 1
src/views/project/signUp.vue View File

@@ -34,32 +34,37 @@
name="姓名"
label="姓名"
placeholder="姓名"
required
/>
<van-field
v-model="password"
name="会员账号"
label="会员账号"
placeholder="会员账号"
required
/>
<van-field
v-model="password"
name="开户银行"
label="开户银行"
placeholder="密码"
required
/>
<van-field
v-model="password"
name="银行卡号"
label="银行卡号"
placeholder="银行卡号"
required
/>
<van-field
v-model="password"
name="身份证号"
label="身份证号"
placeholder="身份证号"
required
/>
<van-field label="上传相关凭证" >
<van-field label="上传相关凭证" required>
<template #input>
<van-uploader accept="*" :after-read="onRead">
<van-button icon="plus" size="small" round color="#007E72">点击上传</van-button>


Loading…
Cancel
Save