TakeOutShop/pages/user/user.vue
2025-04-07 20:51:00 +08:00

167 lines
4.8 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<view class="mian">
<view class="head">
<view :style="{'height':headerHeight+45+'px'}"></view>
<view class="head_user_message">
<view class="head_user_message_l">
<view class="head_user_message_photo">
<image class="head_user_message_photo_img" src="" mode="widthFix"></image>
</view>
<view class="head_user_message_text">
<view class="head_user_message_name">餐饮爱好者</view>
<view class="head_user_message_desc"><image class="head_user_message_desc_img" src="../../static/user/tel.png"></image>152****9869</view>
</view>
</view>
<image class="head_user_message_set" src="../../static/user/setting.png" mode="widthFix"></image>
</view>
</view>
<view class="user_account">
<view class="user_account_li" @click="goCoupon()">
<view class="user_account_message">
<view class="user_account_amount">5</view>
<view class="user_account_name">优惠券</view>
</view>
<image class="user_account_img" src="../../static/user/coupon.png" mode="widthFix"></image>
</view>
<view class="user_account_border"></view>
<view class="user_account_li">
<view class="user_account_message">
<view class="user_account_amount">0.00</view>
<view class="user_account_name">余额()</view>
</view>
<image class="user_account_img" src="../../static/user/purse.png" mode="widthFix"></image>
</view>
<view class="user_account_tag">
<view class="user_account_tag_num">前往领券</view>
<view class="user_account_tag_j"></view>
</view>
</view>
<view class="user_cont_list">
<view class="user_cont_li" v-for="(item,index) in order" :key="index" :class="item.id == 0?'user_cont_li_left_boder':''" @click="orderList(item)">
<image class="user_cont_li_img" :src="item.imgUrl" mode="widthFix"></image>
<view class="user_cont_li_name">{{item.name}}</view>
</view>
</view>
<view class="user_cont_list">
<view class="user_cont_li" v-for="(item,index) in contList" :key="index" @click="goServe(item,index)">
<image class="user_cont_li_img" :src="item.imgUrl" mode="widthFix"></image>
<view class="user_cont_li_name">{{item.name}}</view>
</view>
</view>
<recomGoods v-if="token" :apiType="5"></recomGoods>
<view style="height: 200rpx;"></view>
</view>
</template>
<script setup>
import recomGoods from '@/components/recomGoods/recomGoods.vue';
import { computed,ref } from 'vue';
import { useCounterStore } from '@/store/counter'; // 引入 Pinia Store
import { storeToRefs } from 'pinia';//实现解构付值
import { onLoad,onShow,onPullDownRefresh,onReachBottom } from "@dcloudio/uni-app"
const counterStore = useCounterStore(); // 使用 Store
//使用piniastoreToRefs方法包裹(保持响应式更新,不使用视图无法更新)
const { statusHeight,headerHeight,token } = storeToRefs(counterStore);
// const statusHeight = ref(uni.getMenuButtonBoundingClientRect()['height'])
// const headerHeight = ref(uni.getSystemInfoSync()['statusBarHeight'])
const order = ref([
{
id:1,
imgUrl:'../../static/user/staypay.png',
name:'待支付',
url:'/order/orderList/orderList?type=1'
},
{
id:3,
imgUrl:'../../static/user/staytake.png',
name:'待收货',
url:'/order/orderList/orderList?type=3'
},
{
id:4,
imgUrl:'../../static/user/evaluate.png',
name:'待评价',
url:'/order/orderevallist/orderevallist?type=0'
},
{
id:5,
imgUrl:'../../static/user/refund.png',
name:'退款/售后',
url:'/order/assList/assList?type=0'
},
{
id:0,
imgUrl:'../../static/user/order.png',
name:'全部订单',
url:'/order/orderList/orderList?type=0'
}
])
const contList = ref([
{
id:1,
imgUrl:'../../static/user/service.png',
name:'客户服务',
url:'/userserve/clientserve/clientserve'
},
{
id:2,
imgUrl:'../../static/user/collect.png',
name:'商品收藏',
url:'/userserve/favorite/favorite'
},
{
id:3,
imgUrl:'../../static/user/certification.png',
name:'证照资质',
url:'/userserve/certificate/certificate'
},
{
id:4,
imgUrl:'../../static/user/feedback.png',
name:'意见反馈',
url:'/userserve/feedback/feedback'
},
{
id:5,
imgUrl:'../../static/user/address.png',
name:'地址管理',
url:'/userserve/addressList/addressList'
}
])
const goDetail=()=>{
uni.navigateTo({
url:`/shopProDetail/detail/detail`
})
};
const goCoupon=()=>{
uni.navigateTo({
url:`/order/coupon/coupon`
})
};
const goServe=(item,index)=>{
const { url } = item;
uni.navigateTo({url})
}
//使用piniastoreToRefs方法包裹(保持响应式更新,不使用视图无法更新)
//const { count,doubleCount } = storeToRefs(counterStore);
const orderList=(item)=>{
const { url } = item;
uni.navigateTo({url})
}
onLoad((options) => {
});
onShow(() => {
});
onPullDownRefresh(()=>{
})
onReachBottom(()=>{
})
</script>
<style lang="scss">
@import './style.scss';
</style>