|
@@ -42,14 +42,38 @@
|
|
|
</view>
|
|
</view>
|
|
|
</view>
|
|
</view>
|
|
|
<view class="flex-row justify-between bordBot" >
|
|
<view class="flex-row justify-between bordBot" >
|
|
|
- <view class="key flex-col justify-center ">
|
|
|
|
|
- <text>找回密码</text>
|
|
|
|
|
- </view>
|
|
|
|
|
- <view class="flex-row justify-end nikeName " @click="updatePassword">
|
|
|
|
|
- <text>点击修改</text>
|
|
|
|
|
- <u-icon name="arrow-right" color="#666" size="18"></u-icon>
|
|
|
|
|
- </view>
|
|
|
|
|
- </view>
|
|
|
|
|
|
|
+ <view class="key flex-col justify-center ">
|
|
|
|
|
+ <text>找回密码</text>
|
|
|
|
|
+ </view>
|
|
|
|
|
+ <view class="flex-row justify-end nikeName " @click="updatePassword">
|
|
|
|
|
+ <text>点击修改</text>
|
|
|
|
|
+ <u-icon name="arrow-right" color="#666" size="18"></u-icon>
|
|
|
|
|
+ </view>
|
|
|
|
|
+ </view>
|
|
|
|
|
+ <view class="flex-row justify-between bordBot" >
|
|
|
|
|
+ <view class="key flex-col justify-center ">
|
|
|
|
|
+ <text>银行卡号</text>
|
|
|
|
|
+ </view>
|
|
|
|
|
+ <view v-if="userInfo.bankCard" class="nikeName flex-row justify-center">
|
|
|
|
|
+ <input name="phone" disabled v-model="userInfo.bankCard"/>
|
|
|
|
|
+ </view>
|
|
|
|
|
+ <view v-else class="flex-row justify-end nikeName " @click="updateCardNumber">
|
|
|
|
|
+ <text>去填写</text>
|
|
|
|
|
+ <u-icon name="arrow-right" color="#666" size="18"></u-icon>
|
|
|
|
|
+ </view>
|
|
|
|
|
+ </view>
|
|
|
|
|
+ <view class="flex-row justify-between bordBot" >
|
|
|
|
|
+ <view class="key flex-col justify-center ">
|
|
|
|
|
+ <text>开户行</text>
|
|
|
|
|
+ </view>
|
|
|
|
|
+ <view v-if="userInfo.openingBank" class="nikeName flex-row justify-center">
|
|
|
|
|
+ <input name="phone" disabled v-model="userInfo.openingBank"/>
|
|
|
|
|
+ </view>
|
|
|
|
|
+ <view v-else class="flex-row justify-end nikeName " @click="updateCardNumber">
|
|
|
|
|
+ <text>去填写</text>
|
|
|
|
|
+ <u-icon name="arrow-right" color="#666" size="18"></u-icon>
|
|
|
|
|
+ </view>
|
|
|
|
|
+ </view>
|
|
|
|
|
|
|
|
<!-- <button class="updateButton" formType="submit">-->
|
|
<!-- <button class="updateButton" formType="submit">-->
|
|
|
<!-- <text>保存</text>-->
|
|
<!-- <text>保存</text>-->
|
|
@@ -71,7 +95,6 @@
|
|
|
@close="showSex = false"
|
|
@close="showSex = false"
|
|
|
@select="sexSelect">
|
|
@select="sexSelect">
|
|
|
</u-action-sheet>
|
|
</u-action-sheet>
|
|
|
-
|
|
|
|
|
</view>
|
|
</view>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
@@ -83,6 +106,7 @@
|
|
|
photoUrl:'',
|
|
photoUrl:'',
|
|
|
userInfo: {},
|
|
userInfo: {},
|
|
|
genderIndex:0,
|
|
genderIndex:0,
|
|
|
|
|
+ bankCardNumber:'',
|
|
|
actions: [{
|
|
actions: [{
|
|
|
name: '男',
|
|
name: '男',
|
|
|
value:'1'
|
|
value:'1'
|
|
@@ -109,12 +133,12 @@
|
|
|
inputValue(e){
|
|
inputValue(e){
|
|
|
console.log('+++++++++++++inputValue+++++++++++',e)
|
|
console.log('+++++++++++++inputValue+++++++++++',e)
|
|
|
this.userInfo.name = e.detail.value.name
|
|
this.userInfo.name = e.detail.value.name
|
|
|
-
|
|
|
|
|
-
|
|
|
|
|
-
|
|
|
|
|
-
|
|
|
|
|
},
|
|
},
|
|
|
-
|
|
|
|
|
|
|
+ updateCardNumber(){
|
|
|
|
|
+ uni.navigateTo({
|
|
|
|
|
+ url:'/pages/updateBankCardData/index'
|
|
|
|
|
+ })
|
|
|
|
|
+ },
|
|
|
updateAvatar(){
|
|
updateAvatar(){
|
|
|
let that = this
|
|
let that = this
|
|
|
uni.chooseImage({
|
|
uni.chooseImage({
|