第一次上传

This commit is contained in:
Ls
2026-03-09 16:39:03 +08:00
commit 3d9efaf15c
924 changed files with 326227 additions and 0 deletions

View File

@@ -0,0 +1,309 @@
<template>
<view class="favorites-page">
<!-- 沉浸式状态栏 -->
<view class="status-bar"></view>
<!-- 顶部导航栏 -->
<view class="nav-bar">
<image class="back-icon" src="/static/icons/back.svg" @click="goBack" mode="aspectFit" />
<text class="nav-title">我的收藏</text>
<view class="nav-placeholder"></view>
</view>
<!-- 收藏列表 -->
<view class="content">
<view v-if="collectList.length > 0" class="favorites-list">
<view v-for="item in collectList" :key="item.merchId" class="shop-card" @click="Service.GoPage('/pages/community/merchantDetail?merchId='+item.merchId)">
<!-- 店铺图片 -->
<image class="shop-image" :src="Service.GetMateUrlByImg(item.logo)" mode="aspectFill" />
<!-- 店铺信息 -->
<view class="shop-info">
<text class="shop-name">{{ item.name }}</text>
<view class="shop-meta">
<text class="ri-star-fill rating-icon"></text>
<text class="rating-text">{{ item.score }}分</text>
<text class="sales-text">月售{{ item.sale }}</text>
</view>
<view class="shop-tags">
<view v-for="(coupon, idx) in item.tips" :key="idx" :class="getTagClass(coupon)" style="font-size: 24rpx;"
class="shop-tag">
{{ coupon }}
</view>
</view>
</view>
<!-- 取消收藏按钮 -->
<view class="cancel-btn" @click.stop="cancelFavorite(item)">
<text :class="{ 'ri-heart-fill': item.state==1,'ri-heart-line':item.state!==1 }"
class="action-pill-icon"></text>
</view>
</view>
<up-loadmore :status="status" />
</view>
<!-- 空状态 -->
<view v-else class="empty-state">
<text class="ri-heart-line empty-icon"></text>
<text class="empty-text">暂无收藏店铺</text>
<text class="empty-desc">去首页逛逛,收藏喜欢的店铺吧</text>
</view>
</view>
</view>
</template>
<script lang="ts" setup>
import {onShow,onLoad,onReachBottom} from "@dcloudio/uni-app";
import {Service} from "@/Service/Service"
import { ref, computed } from "vue";
import { vpDiscountService } from "@/Service/vp/vpDiscountService"
import { vpUserService } from "@/Service/vp/vpUserService"
let collectList = ref<Array<any>>([])
let status = ref<string>('loadmore')
let pageNo = ref<number>(1)
let longitude=ref(0)
let latitude=ref(0)
onLoad(()=>{
getLocation()
})
// 返回
const goBack = () => {
Service.GoPageBack()
}
const getLocation = () => {
uni.getLocation({
type: 'wgs84',
success: function (res) {
longitude.value = res.longitude
latitude.value = res.latitude
getData()
},
fail: function (e) {
console.log(e);
}
});
}
const getData=()=>{
pageNo.value=1
status.value='loadmore'
collectList.value=[]
getList()
}
const getList=()=>{
if (status.value !== 'loadmore') {
return
}
status.value = 'loading'
vpUserService.GetUserCollectList(longitude.value,latitude.value,pageNo.value).then(res=>{
if(res.code==0){
collectList.value=[...collectList.value,...res.data.collectList]
status.value=res.data.collectList.length==10?'loadmore':'nomore'
pageNo.value++
}
})
}
// 根据标签文本获取样式类
const getTagClass = (tagText : string) => {
const tagMap = {
'可用积分': 'tag-points-available',
'可用券': 'tag-coupon'
}
return tagMap[tagText] || 'tag-points'
}
// 取消收藏
const cancelFavorite = (item:any) => {
uni.showModal({
title: '取消收藏',
content: `确定取消收藏吗?`,
success: (res) => {
if (res.confirm) {
vpUserService.CollectMerch(item.merchId).then(res=>{
if(res.code==0){
getData()
}else{
Service.Msg(res.msg)
}
})
}
}
})
}
</script>
<style lang="scss" scoped>
.favorites-page {
min-height: 100vh;
background: #F5F5F5;
}
.action-pill-icon {
font-size: 28rpx;
color: #FF6B00;
line-height: 1;
}
/* 状态栏 */
.status-bar {
background: linear-gradient(135deg, #FF6B00, #FF9500);
height: var(--status-bar-height);
width: 100%;
}
/* 导航栏 */
.nav-bar {
display: flex;
align-items: center;
justify-content: space-between;
padding: 60rpx 24rpx 20rpx 24rpx;
background: linear-gradient(135deg, #FF6B00, #FF9500);
}
.back-icon {
width: 48rpx;
height: 48rpx;
padding: 8rpx;
}
.nav-title {
font-size: 36rpx;
font-weight: 600;
color: #FFFFFF;
}
.nav-placeholder {
width: 48rpx;
}
/* 内容区域 */
.content {
padding: 20rpx;
}
/* 收藏列表 */
.favorites-list {
display: flex;
flex-direction: column;
gap: 16rpx;
}
.shop-card {
background: #FFFFFF;
border-radius: 16rpx;
padding: 20rpx;
display: flex;
align-items: center;
box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.04);
position: relative;
}
.shop-image {
width: 160rpx;
height: 160rpx;
border-radius: 12rpx;
margin-right: 20rpx;
flex-shrink: 0;
}
.shop-info {
flex: 1;
display: flex;
flex-direction: column;
gap: 12rpx;
}
.shop-name {
font-size: 32rpx;
font-weight: 600;
color: #222222;
}
.shop-meta {
display: flex;
align-items: center;
gap: 8rpx;
}
.rating-icon {
font-size: 24rpx;
color: #FFB800;
}
.rating-text {
font-size: 24rpx;
color: #FF6B00;
font-weight: 600;
}
.sales-text {
font-size: 22rpx;
color: #999999;
}
.shop-tags {
display: flex;
gap: 12rpx;
}
.tag {
font-size: 20rpx;
color: #666666;
background: #F5F5F5;
padding: 4rpx 12rpx;
border-radius: 8rpx;
}
.cancel-btn {
width: 64rpx;
height: 64rpx;
background: #FFEBEE;
border-radius: 32rpx;
display: flex;
align-items: center;
justify-content: center;
margin-left: 16rpx;
flex-shrink: 0;
}
.cancel-icon {
font-size: 32rpx;
color: #F44336;
}
/* 空状态 */
.empty-state {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 200rpx 0;
gap: 16rpx;
}
.empty-icon {
font-size: 120rpx;
color: #CCCCCC;
}
.empty-text {
font-size: 28rpx;
color: #999999;
font-weight: 500;
}
.empty-desc {
font-size: 24rpx;
color: #CCCCCC;
}
</style>

View File

@@ -0,0 +1,114 @@
<template>
<view style="margin: 20rpx 40rpx;">
<up-form labelPosition="left" labelWidth='90' :model="data" ref="form1">
<up-form-item v-if="data.phone" label="手机号:" prop="userInfo.name" :borderBottom="true" ref="item1">
<up-input inputAlign='right' v-model="data.phone" readonly='true' border="none"></up-input>
</up-form-item>
<up-form-item :label="data.phone? '新手机号':'手机号'" prop="userInfo.name" :borderBottom="true" ref="item1">
<up-input inputAlign='right' v-model="data.newPhone" placeholder="请输入手机号" border="none"></up-input>
</up-form-item>
<up-form-item label="验证码:" prop="userInfo.name" :borderBottom="true" ref="item1">
<up-input inputAlign='right' type='number' v-model="data.code" clearable='true' placeholder="请输入验证码"
border="none">
<template #suffix>
<up-code ref="uCodeRef" @change="codeChange" seconds="60" changeText="X秒重新获取"></up-code>
<up-button @tap="getCode" :text="tips" type="success" size="mini"></up-button>
</template>
</up-input>
</up-form-item>
</up-form>
<view class="" style="margin-top: 20rpx;">
<button @click="save()" class="logout-btn"> {{ data.phone?'修改手机号':'添加手机号' }} </button>
</view>
</view>
</template>
<script setup lang="ts">
import { onShow, onLoad } from "@dcloudio/uni-app";
import { ref } from "vue";
import { Service } from "../../Service/Service";
let data = ref({
realPhone: '',
phone: '',
code: '',
newPhone: ''
})
let tips = ref('')
const uCodeRef = ref(null);
onLoad((data : any) => {
getData()
});
onShow(() => {
});
const getData = () => {
}
// 验证码
const codeChange = (text) => {
tips.value = text;
};
const getCode = () => {
// if(data.value.phone===data.value.newPhone && data.value.phone ){
// Service.Msg('新手机号不能与原手机号相同')
// return
// }
// if(!data.value.newPhone){
// Service.Msg('请填写手机号')
// return
// }
if (uCodeRef.value.canGetCode) {
// 模拟向后端请求验证码
uni.showLoading({
title: '正在获取验证码',
});
} else {
uni.$u.toast('倒计时结束后再发送');
}
};
const change = (e) => {
console.log('change', e);
};
const save = () => {
}
</script>
<style lang="scss">
page {
background-color: #fff;
}
.logout-btn {
background-color: var(--nav-mian);
color: #fff;
font-weight: 500;
border-radius: 10rpx;
height: 80rpx;
line-height: 80rpx;
font-size: 30rpx;
margin: 0;
border: none;
}
</style>