A 页面(tabbar页面)
onLoad(() => {
uni.preloadPage({url: "/pages/wallet/withdraw/record"})
})
B 页面
<u-popup :show="isShowStatusPicker" mode="top" :round="8" @close="isShowStatusPicker = false">
<u-navbar title="提现记录" bg-color="#fff"></u-navbar>
<view class="status-picker">
<view class="filter">
<view class="filter-item" @click="isShowStatusPicker = false">
<text class="filter-item-text">提现状态:{{ statusList[currentStatusIndex].label }}</text>
<m-icon name="arrow-top-fill" color="#333" :size="10"></m-icon>
</view>
</view>
<view class="list">
<view class="list-item" :class="{active: index === currentStatusIndex, nomargin: (index+1)%4===0}" v-for="(item, index) in statusList" :key="index" @click="currentStatusIndex = index">
<text class="list-item-text" :class="{active: index === currentStatusIndex }">{{item.label}}</text>
</view>
</view>
<view class="action">
<m-button text="取消" :customStyle="btnStyle" @click="isShowStatusPicker = false"></m-button>
<m-button text="确认" type="primary" bold :customStyle="btnStyle" @click="setStatus"></m-button>
</view>
</view>
</u-popup>
3 个回复
2***@qq.com (作者)
2***@qq.com (作者)
评论可以正常插入图片
2***@qq.com (作者)
所以现在 nvue 的 bug 也直接不管了是吗