合并代码
This commit is contained in:
parent
16d69c5116
commit
ff3913769c
|
@ -59,15 +59,9 @@
|
||||||
// 待释放列表
|
// 待释放列表
|
||||||
const releasedLst = ref([])
|
const releasedLst = ref([])
|
||||||
// 用户信息
|
// 用户信息
|
||||||
const userinfo = computed(() => {
|
const userinfo = computed(() => store.state.userinfo || {})
|
||||||
let result = store.state.userinfo || {}
|
|
||||||
return result
|
|
||||||
})
|
|
||||||
// 我的钱包
|
// 我的钱包
|
||||||
const wallet = computed(() => {
|
const wallet = computed(() => store.state.purse || {})
|
||||||
let result = store.state.purse || {}
|
|
||||||
return result
|
|
||||||
})
|
|
||||||
|
|
||||||
onLoad(() => {
|
onLoad(() => {
|
||||||
// 获取待释放
|
// 获取待释放
|
||||||
|
@ -190,7 +184,7 @@
|
||||||
<uni-icons type="right" color="" />
|
<uni-icons type="right" color="" />
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<view class="rows mtb30 ptb20 plr30 cfff f34 b000 br10">
|
<view class="rows mtb30 ptb20 plr30 cfff f34 b000 br10" v-if="userinfo.isShop == 1">
|
||||||
<text>商家明细</text>
|
<text>商家明细</text>
|
||||||
<uni-icons type="right" c1olor="" />
|
<uni-icons type="right" c1olor="" />
|
||||||
</view>
|
</view>
|
||||||
|
|
|
@ -236,7 +236,7 @@ defineExpose({
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<!-- 按钮区 -->
|
<!-- 按钮区 -->
|
||||||
<view class="btns w150">
|
<view class="btns w180">
|
||||||
<view>
|
<view>
|
||||||
<view @click="handleCollectStore" class="btn sm warm fmid fdr plr30">
|
<view @click="handleCollectStore" class="btn sm warm fmid fdr plr30">
|
||||||
<uni-icons class="mr10" color="#fff" type="plusempty" size="13" v-if="detail.isFollow != 1" />
|
<uni-icons class="mr10" color="#fff" type="plusempty" size="13" v-if="detail.isFollow != 1" />
|
||||||
|
|
Loading…
Reference in New Issue