此次提交主要实现了以下功能: 1. 添加了分销功能,包括分销员申请、佣金计算和分享功能。 2. 优化了订单和支付流程,增加了订单退款状态的处理。 3. 修改了发票申请逻辑,增加了用户发票信息检查。 4. 更新了商品展示页面,支持特殊套餐的展示和购买。 5. 修复了多个页面的样式问题和功能缺陷。 这些改动旨在提升用户体验,支持分销业务,并优化现有功能的稳定性和性能。
199 lines
5.5 KiB
Vue
199 lines
5.5 KiB
Vue
<template>
|
||
<layout>
|
||
<uv-sticky
|
||
bg-color="#F5F5F5"
|
||
offset-top="0"
|
||
customNavHeight="0"
|
||
>
|
||
<!-- <uv-navbar
|
||
:fixed="false"
|
||
:safeAreaInsetTop="true"
|
||
height="0"
|
||
bgColor="transparent"
|
||
leftIcon=""
|
||
/> -->
|
||
<!-- #ifndef MP -->
|
||
<blank size="0"></blank>
|
||
<!-- #endif -->
|
||
|
||
<blank size="0"></blank>
|
||
</uv-sticky>
|
||
|
||
<blank size="0"></blank>
|
||
|
||
|
||
<view class="page flex-col">
|
||
<view class="group_6 flex-row">
|
||
<view class="group_7 flex-col">
|
||
<view class="group_8 flex-row justify-between">
|
||
<view class="group_9 flex-col" @tap="takein">
|
||
<image
|
||
class="image_1"
|
||
referrerpolicy="no-referrer"
|
||
src="/static/images/index/store_pickup.png"
|
||
mode="widthFix"
|
||
/>
|
||
<view class="text-group_13 flex-col justify-between">
|
||
<text class="text_1">到店自取</text>
|
||
<text class="text_2">下单免排队</text>
|
||
</view>
|
||
</view>
|
||
<view class="image-text_7 flex-col" @tap="takeout">
|
||
<image
|
||
class="image_2"
|
||
referrerpolicy="no-referrer"
|
||
src="/static/images/index/delivery.png"
|
||
/>
|
||
<view class="text-group_14 flex-col justify-between">
|
||
<text class="text_3">外卖外送</text>
|
||
<text class="text_4">美食送到家</text>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
<!-- <view class="text-wrapper_3 flex-row justify-between">
|
||
<text class="text_2">下单免排队</text>
|
||
<text class="text_4">美食送到家</text>
|
||
</view> -->
|
||
<view class="block_5 flex-row" @tap="coupons">
|
||
<view class="image-text_8 flex-row justify-between">
|
||
<image
|
||
class="label_3"
|
||
referrerpolicy="no-referrer"
|
||
src="/static/images/index/coupons.png"
|
||
/>
|
||
<text class="text-group_9">我的卡券</text>
|
||
</view>
|
||
<view class="image-text_9 flex-row justify-between">
|
||
<text class="text-group_10">去领取</text>
|
||
<view class="iconfont iconarrow-right line-height-100 green flex-fill"></view>
|
||
<!-- <view class="section_2 flex-col"></view> -->
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
<view class="group_2 flex-col">
|
||
<view class="box_3 flex-col">
|
||
<view class="block_6 flex-row"></view>
|
||
<view class="image-wrapper_7 flex-row"></view>
|
||
</view>
|
||
<view class="box_6 flex-row">
|
||
<view class="image-wrapper_3 flex-col">
|
||
<image
|
||
class="image_10"
|
||
referrerpolicy="no-referrer"
|
||
src="/static/images/index/user.png"
|
||
/>
|
||
</view>
|
||
<view class="text-group_15 flex-col justify-between">
|
||
<text class="text_6">Hi,{{ isLogin ? member.nickname : '新朋友' }}</text>
|
||
<text class="text_7">爱愈膳汤铺随时欢迎您回家</text>
|
||
</view>
|
||
<!-- <view class="text-group_16 flex-col justify-between">
|
||
<text class="text_8">积分</text>
|
||
<text class="text_9">1000</text>
|
||
</view> -->
|
||
</view>
|
||
</view>
|
||
</view>
|
||
|
||
</layout>
|
||
</template>
|
||
|
||
<script setup>
|
||
import {
|
||
ref
|
||
} from 'vue'
|
||
import { onLoad } from '@dcloudio/uni-app'
|
||
import {
|
||
menuAds
|
||
} from '@/api/market'
|
||
import { storeToRefs } from 'pinia'
|
||
import { useMainStore } from '@/store/store'
|
||
//
|
||
const main = useMainStore()
|
||
const { member,store, isLogin} = storeToRefs(main)
|
||
//const store = ref(main.store)
|
||
const listAds = ref([])
|
||
// const isLogin = ref(main.isLogin)
|
||
|
||
const handGetListAds = async () => {
|
||
let shop_id = store.id ? store.id : 0;
|
||
let data = await menuAds({
|
||
shop_id: shop_id
|
||
});
|
||
if (data) {
|
||
listAds.value = data.list;
|
||
console.log('listAds:',listAds.value)
|
||
uni.setStorage({
|
||
key: 'isActive',
|
||
data: data.isActive
|
||
});
|
||
if(data.list.length > 0){
|
||
uni.setStorage({
|
||
key: 'shopAd',
|
||
data: data.list[0].image
|
||
});
|
||
}
|
||
}
|
||
}
|
||
|
||
const takein = () => {
|
||
main.SET_ORDER_TYPE('takein')
|
||
uni.switchTab({
|
||
url: '/pages/menu/menu'
|
||
})
|
||
}
|
||
|
||
const takeout = () => {
|
||
main.SET_ORDER_TYPE('takeout')
|
||
uni.switchTab({
|
||
url: '/pages/menu/menu'
|
||
})
|
||
}
|
||
|
||
const coupons = () => {
|
||
console.log("--> % orderType:\n", main.orderType)
|
||
console.log("--> % isLogin:\n", main.isLogin)
|
||
if(!main.isLogin) {
|
||
uni.navigateTo({url: '/pages/components/pages/login/login'})
|
||
return
|
||
}
|
||
uni.navigateTo({
|
||
url: '/pages/components/pages/coupons/coupons'
|
||
})
|
||
}
|
||
|
||
const goScore = () => {
|
||
uni.navigateTo({
|
||
url: '/pages/components/pages/scoreproduct/list'
|
||
})
|
||
}
|
||
|
||
|
||
|
||
|
||
onLoad(() => {
|
||
// main.init()
|
||
handGetListAds()
|
||
})
|
||
const onShareAppMessage = (res) => {
|
||
return {
|
||
title: '爱愈膳汤浦', // 分享卡片标题
|
||
path: '/pages/index/index', // 分享后打开的页面路径(可携带参数)
|
||
imageUrl: 'https://file.aiyushantp.com/file/b22aa4e4625714e2747b15cfa174ea2351e59df4bacec69d338f9c87c7dae5ca.png' // 分享卡片图片(建议300x300像素)
|
||
}
|
||
}
|
||
|
||
const onShareTimeline = () => {
|
||
return {
|
||
title: '爱愈膳汤浦', // 分享卡片标题
|
||
imageUrl: 'https://file.aiyushantp.com/file/b22aa4e4625714e2747b15cfa174ea2351e59df4bacec69d338f9c87c7dae5ca.png' // 分享卡片图片(建议300x300像素)
|
||
}
|
||
}
|
||
|
||
</script>
|
||
|
||
<style lang="scss">
|
||
@import '../../static/style/common.css';
|
||
@import './index.rpx.css';
|
||
</style> |