This commit is contained in:
liuyuan
2025-05-19 15:59:34 +08:00
parent 0bbcd61bde
commit cbc3465c57
7 changed files with 38 additions and 32 deletions

View File

@@ -41,11 +41,6 @@
<text style="font-weight: blod" class="catalogue_title">{{ slotProps.data.title }}</text>
</view>
</view>
<view class="right">
<u-icon class="editIcon" name="shopping-cart-fill"
color="#FF2B57" size="30"
style="display: inline-block; margin-left: 10rpx"></u-icon>
</view>
</view>
</view>
</view>
@@ -217,6 +212,20 @@
});
return list;
},
toLogin(){
uni.showModal({
title: '提示',
content: '为了方便您后期用不同的设备查阅订购的记录,请先完成登录或注册。',
confirmText: '确认',
success(res){
if (res.confirm) {
uni.navigateTo({
url: '/pages/user/login'
})
}
}
})
}
}
};
</script>