Browse Source

交接代码

dev
岳鹏龙 6 months ago
parent
commit
6809a26546
  1. 3
      src/pages/mine/index.vue

3
src/pages/mine/index.vue

@ -123,6 +123,7 @@ onPullDownRefresh(() => userStore.getUserInfo())
<block v-if="list.length > 0"> <block v-if="list.length > 0">
<view <view
class="userview-info box" class="userview-info box"
style="margin-bottom: 120rpx;"
:class="{ active: activeKey === index }" :class="{ active: activeKey === index }"
v-for="(row, index) in list" v-for="(row, index) in list"
:key="index" :key="index"
@ -143,7 +144,7 @@ onPullDownRefresh(() => userStore.getUserInfo())
</view> </view>
</block> </block>
<ex-empty v-show="list.length <= 0" /> <ex-empty v-show="list.length <= 0" />
<view class="flex-center-evenly"> <view class="flex-center-evenly" style="position: fixed;bottom: 0;width: calc(100% - 64rpx);">
<view class="bts plain" v-if="list.length > 0" @click.stop="updateUserInfo">确认信息</view> <view class="bts plain" v-if="list.length > 0" @click.stop="updateUserInfo">确认信息</view>
<view :class="list.length > 0?'bts':'bts1'" @click="navto('pages/mine/add')">新建信息</view> <view :class="list.length > 0?'bts':'bts1'" @click="navto('pages/mine/add')">新建信息</view>
</view> </view>

Loading…
Cancel
Save