This commit is contained in:
sa_10_0 2024-12-02 11:01:34 +08:00
parent 99d45bd090
commit 70a4accda5
39 changed files with 1420 additions and 1002 deletions

View File

@ -168,6 +168,27 @@
{
"navigationBarTitleText" : ""
}
},
{
"path" : "pages/mine/bookings/booking",
"style" :
{
"navigationBarTitleText" : ""
}
},
{
"path" : "pages/mine/bookings/bookings",
"style" :
{
"navigationBarTitleText" : ""
}
},
{
"path" : "pages/mine/Contact/Contact",
"style" :
{
"navigationBarTitleText" : ""
}
}
],
"globalStyle": {

File diff suppressed because it is too large Load Diff

View File

@ -1,355 +1,372 @@
<template>
<view class="flex-col page">
<view class="flex-row section" >
<image
class="self-center image"
:src="avator"
/>
<view class="flex-col self-start group">
<text class="self-start text">默认用户</text>
<view class="flex-col justify-start items-center self-stretch text-wrapper mt-6">
<text class="font text_2">剩余积分0</text>
</view>
</view>
<view class="flex-col justify-start items-center self-start text-wrapper_2">
<text class="font text_3">优惠卷0 </text>
</view>
</view>
<view class="flex-col relative group_2">
<view class="flex-row equal-division">
<view class="flex-col items-center group_3 group_1" @click="goto()">
<image
class="image_2"
:src="dingdan"
/>
<text class="font text_4" >总订单</text>
</view>
<view class="flex-col items-center group_3 group_4">
<image
class="image_2"
:src="qianbao"
/>
<text class="font text_1">待付款</text>
</view>
<view class="flex-col items-center group_3 group_5">
<image
class="image_2"
:src="daifahuo"
/>
<text class="font">待发货</text>
</view>
<view class="flex-col items-start group_3 group_6">
<image
class="image_2"
:src="daishouhuo"
/>
<text class="font">待收货</text>
</view>
<view class="flex-col items-center group_3 group_7">
<image
class="image_2"
:src="tuikuan"
/>
<text class="font text_9">退款/售后</text>
</view>
</view>
<view class="flex-col mt-37">
<view class="flex-row justify-between items-center section_2">
<view class="flex-row items-center">
<image
class="shrink-0 image_3"
:src="address"
/>
<text class="font_2 ml-5">地址列表</text>
</view>
<image
class="image_4 image_5"
:src="you"
/>
</view>
<view class="list-divider mt-5"></view>
<view class="flex-row justify-between items-center section_4 mt-5">
<view class="flex-row items-center">
<image
class="shrink-0 image_3"
:src="lianxiren_s"
/>
<text class="font_2 text_5 ml-5">联系人列表</text>
</view>
<image
class="image_6"
:src="you"
/>
</view>
<view class="list-divider mt-5"></view>
<view class="flex-row justify-between items-center list-item_2 mt-5">
<view class="flex-row items-center">
<image
class="shrink-0 image_8"
:src="setting_s"
/>
<text class="font_2 text_6 ml-7">设置</text>
</view>
<image
class="image_4 image_7"
:src="you"
/>
</view>
</view>
</view>
</view>
<view class="flex-col page">
<view class="flex-row section">
<image class="self-center image" :src="avator" />
<view class="flex-col self-start group">
<text class="self-start text">默认用户</text>
<view class="flex-col justify-start items-center self-stretch text-wrapper mt-6">
<text class="font text_2">剩余积分0</text>
</view>
</view>
<view class="flex-col justify-start items-center self-start text-wrapper_2">
<text class="font text_3">优惠卷0 </text>
</view>
</view>
<view class="flex-col relative group_2">
<view class="flex-row equal-division">
<view class="flex-col items-center group_3 group_1" @click="goto()">
<image class="image_2" :src="dingdan" />
<text class="font text_4">总订单</text>
</view>
<view class="flex-col items-center group_3 group_4">
<image class="image_2" :src="qianbao" />
<text class="font text_1">待付款</text>
</view>
<view class="flex-col items-center group_3 group_5">
<image class="image_2" :src="daifahuo" />
<text class="font">待发货</text>
</view>
<view class="flex-col items-start group_3 group_6">
<image class="image_2" :src="daishouhuo" />
<text class="font">待收货</text>
</view>
<view class="flex-col items-center group_3 group_7">
<image class="image_2" :src="tuikuan" />
<text class="font text_9">退款/售后</text>
</view>
</view>
<view class="flex-col mt-37">
<view class="flex-row justify-between items-center section_2">
<view class="flex-row items-center">
<image class="shrink-0 image_3" :src="address" />
<text class="font_2 ml-5">地址列表</text>
</view>
<image class="image_4 image_5" :src="you" />
</view>
<view class="list-divider mt-5"></view>
<view class="flex-row justify-between items-center section_4 mt-5" @click="goToText()">
<view class="flex-row items-center">
<image class="shrink-0 image_3" :src="lianxiren_s" />
<text class="font_2 text_5 ml-5">联系人列表</text>
</view>
<image class="image_6" :src="you" />
</view>
<view class="list-divider mt-5"></view>
<view class="flex-row justify-between items-center list-item_2 mt-5" @click="goTo()">
<view class="flex-row items-center">
<image class="shrink-0 image_8" :src="setting_s" />
<text class="font_2 text_6 ml-7">设置</text>
</view>
<image class="image_4 image_7" :src="you" />
</view>
</view>
</view>
</view>
</template>
<script setup>
import {ref} from 'vue'
import { userStore } from '../../../store/userStore'
import address from '@/pages/mine/main/img/address.png'
import avator from '@/pages/mine/main/img/avator.png'
import background from '@/pages/mine/main/img/background.png'
import daifahuo from '@/pages/mine/main/img/daifahuo.png'
import daishouhuo from '@/pages/mine/main/img/daishouhuo.png'
import dingdan from '@/pages/mine/main/img/dingdan.png'
import lianxiren_s from '@/pages/mine/main/img/lianxiren_s.png'
import qianbao from '@/pages/mine/main/img/qianbao.png'
import setting_s from '@/pages/mine/main/img/setting_s.png'
import tuikuan from '@/pages/mine/main/img/tuikuan.png'
import you from '@/pages/mine/main/img/you.png'
import {
ref
} from 'vue'
import {
userStore
} from '../../../store/userStore'
import address from '@/pages/mine/main/img/address.png'
import avator from '@/pages/mine/main/img/avator.png'
import background from '@/pages/mine/main/img/background.png'
import daifahuo from '@/pages/mine/main/img/daifahuo.png'
import daishouhuo from '@/pages/mine/main/img/daishouhuo.png'
import dingdan from '@/pages/mine/main/img/dingdan.png'
import lianxiren_s from '@/pages/mine/main/img/lianxiren_s.png'
import qianbao from '@/pages/mine/main/img/qianbao.png'
import setting_s from '@/pages/mine/main/img/setting_s.png'
import tuikuan from '@/pages/mine/main/img/tuikuan.png'
import you from '@/pages/mine/main/img/you.png'
const goto=()=>{
uni.navigateTo({
url:"/pages/mine/mineorders/mineorders"
})
}
const goto = () => {
uni.navigateTo({
url: "/pages/mine/mineorders/mineorders"
})
}
const store = userStore()
const login = () => {
uni.getUserProfile({
lang: 'zh_CN',
desc: '用户登录', //
success: (res) => {
console.log(res, 'resss')
resolve(res.userInfo)
},
fail: (err) => {
reject(err)
}
})
// uni.login({
// provider: 'weixin',
// success: (loginRes) => {
// if(loginRes.code !== null) {
// console.log("code:" + loginRes.code)
// loginUser(loginRes.code);
// } else {
// console.log("code");
// }
// }
// })
}
const loginUser=(code)=>{
uni.request({
url:apiImageUrl+'user/login/wx_open',
method:'GET',
data:{
code:code
},
success: (res) => {
console.log(res,"是否有code")
uni.removeStorageSync('cookie');// fCookieStorage
uni.setStorageSync("cookie", res.header['Set-Cookie']);
if(res.data.code==1){
uni.showToast({
title:'登录成功',
duration:2000
})
//
uni.setStorageSync('userInfo',res.data.data)
uni.switchTab({
url:'/pages/index/index'
})
}else{
uni.showToast({
icon: 'error',
title: "登录失败,请联系管理员"
})
return
const store = userStore()
const login = () => {
uni.getUserProfile({
lang: 'zh_CN',
desc: '用户登录', //
success: (res) => {
console.log(res, 'resss')
resolve(res.userInfo)
},
fail: (err) => {
reject(err)
}
})
}
})
}
// uni.login({
// provider: 'weixin',
// success: (loginRes) => {
// if(loginRes.code !== null) {
// console.log("code:" + loginRes.code)
// loginUser(loginRes.code);
// } else {
// console.log("code");
// }
// }
// })
}
const loginUser = (code) => {
uni.request({
url: apiImageUrl + 'user/login/wx_open',
method: 'GET',
data: {
code: code
},
success: (res) => {
console.log(res, "是否有code")
uni.removeStorageSync('cookie'); // fCookieStorage
uni.setStorageSync("cookie", res.header['Set-Cookie']);
if (res.data.code == 1) {
uni.showToast({
title: '登录成功',
duration: 2000
})
//
uni.setStorageSync('userInfo', res.data.data)
uni.switchTab({
url: '/pages/index/index'
})
} else {
uni.showToast({
icon: 'error',
title: "登录失败,请联系管理员"
})
return
}
}
})
}
const goToText = () => {
uni.navigateTo({
url: '/pages/mine/Contact/Contact'
})
}
const goTo = ()=>{
uni.navigateTo({
url: '/pages/mine/bookings/booking'
})
}
</script>
<style lang="scss" scoped>
.mt-37 {
margin-top: 69.38rpx;
}
.ml-5 {
margin-left: 9.38rpx;
}
.mt-5 {
margin-top: 9.38rpx;
}
.ml-7 {
margin-left: 13.13rpx;
}
.page {
// padding-bottom: 564.38rpx;
background-color: #ffffff;
// height: 100%;
width: 100%;
overflow-y: auto;
overflow-x: hidden;
overflow: hidden;
}
.section {
padding: 213.75rpx 0 105rpx;
background-image: url('https://ide.code.fun/api/image?token=6711ccc71511d900114adddf&name=608ce961205c6b6c4a5f231d50bcfd3e.png');
background-size: 100% 100%;
background-repeat: no-repeat;
}
.image {
border-radius: 50%;
width: 150rpx;
height: 151.88rpx;
}
.group {
margin-left: 34.67rpx;
margin-top: 32.06rpx;
}
.text {
color: #000000;
font-size: 37.5rpx;
font-family: Open Sans;
line-height: 34.91rpx;
}
.text-wrapper {
padding: 23.34rpx 0 23.85rpx;
background-color: #fbdab4;
border-radius: 18.75rpx;
width: 222.34rpx;
}
.font {
font-size: 26.25rpx;
font-family: Open Sans;
line-height: 24.34rpx;
color: #000000;
}
.text_2 {
font-size: 28.13rpx;
line-height: 25.93rpx;
}
.text-wrapper_2 {
margin-left: 24.49rpx;
margin-top: 78.75rpx;
padding: 23.27rpx 0 23.85rpx;
background-color: #ffdab1;
border-radius: 18.75rpx;
width: 222.34rpx;
height: 73.13rpx;
}
.text_3 {
font-size: 28.13rpx;
line-height: 26.03rpx;
}
.group_2 {
margin-top: -48.75rpx;
padding-left: 26.25rpx;
padding-right: 26.23rpx;
}
.equal-division {
padding: 14.38rpx 18.92rpx 31.05rpx;
background-color: #fff1e2;
border-radius: 9.38rpx;
}
.group_3 {
flex: 1 1 131.93rpx;
}
.group_1 {
padding: 9.99rpx 0 9.99rpx;
}
.image_2 {
width: 95.63rpx;
height: 95.63rpx;
}
.text_4 {
line-height: 24.07rpx;
}
.group_4 {
padding: 9.99rpx 0 11.79rpx;
}
.text_1 {
line-height: 24.23rpx;
}
.group_5 {
padding: 9.99rpx 0 11.76rpx;
}
.group_6 {
padding: 9.99rpx 6.64rpx 11.76rpx 29.66rpx;
}
.group_7 {
padding: 10.01rpx 0 11.94rpx;
}
.text_9 {
font-size: 24.38rpx;
line-height: 22.52rpx;
}
.section_2 {
padding: 22.5rpx 26.61rpx;
background-color: #fffef8;
border-radius: 18.75rpx;
}
.image_3 {
width: 43.13rpx;
height: 43.13rpx;
}
.font_2 {
font-size: 30rpx;
font-family: Open Sans;
line-height: 27.69rpx;
color: #000000;
}
.image_4 {
width: 48.75rpx;
height: 48.75rpx;
}
.image_5 {
margin-right: 6.38rpx;
}
.list-divider {
background-color: #0000002e;
height: 1.89rpx;
}
.section_4 {
padding: 22.95rpx 26.61rpx 22.05rpx;
background-color: #fffef8;
border-radius: 18.75rpx;
}
.text_5 {
line-height: 27.86rpx;
}
.image_6 {
margin-right: 6.38rpx;
width: 48.75rpx;
height: 50.63rpx;
}
.list-item_2 {
padding: 22.5rpx;
background-color: #fffef8;
border-radius: 18.75rpx;
}
.image_8 {
filter: drop-shadow(0rpx 7.5rpx 3.75rpx #00000040);
width: 43.13rpx;
height: 43.13rpx;
}
.text_6 {
line-height: 27.11rpx;
}
.image_7 {
margin-right: 10.48rpx;
}
@import url(../../../common/css/global.css);
</style>
.mt-37 {
margin-top: 69.38rpx;
}
.ml-5 {
margin-left: 9.38rpx;
}
.mt-5 {
margin-top: 9.38rpx;
}
.ml-7 {
margin-left: 13.13rpx;
}
.page {
// padding-bottom: 564.38rpx;
background-color: #ffffff;
// height: 100%;
width: 100%;
overflow-y: auto;
overflow-x: hidden;
overflow: hidden;
}
.section {
padding: 213.75rpx 0 105rpx;
background-image: url('https://ide.code.fun/api/image?token=6711ccc71511d900114adddf&name=608ce961205c6b6c4a5f231d50bcfd3e.png');
background-size: 100% 100%;
background-repeat: no-repeat;
}
.image {
border-radius: 50%;
width: 150rpx;
height: 151.88rpx;
}
.group {
margin-left: 34.67rpx;
margin-top: 32.06rpx;
}
.text {
color: #000000;
font-size: 37.5rpx;
font-family: Open Sans;
line-height: 34.91rpx;
}
.text-wrapper {
padding: 23.34rpx 0 23.85rpx;
background-color: #fbdab4;
border-radius: 18.75rpx;
width: 222.34rpx;
}
.font {
font-size: 26.25rpx;
font-family: Open Sans;
line-height: 24.34rpx;
color: #000000;
}
.text_2 {
font-size: 28.13rpx;
line-height: 25.93rpx;
}
.text-wrapper_2 {
margin-left: 24.49rpx;
margin-top: 78.75rpx;
padding: 23.27rpx 0 23.85rpx;
background-color: #ffdab1;
border-radius: 18.75rpx;
width: 222.34rpx;
height: 73.13rpx;
}
.text_3 {
font-size: 28.13rpx;
line-height: 26.03rpx;
}
.group_2 {
margin-top: -48.75rpx;
padding-left: 26.25rpx;
padding-right: 26.23rpx;
}
.equal-division {
padding: 14.38rpx 18.92rpx 31.05rpx;
background-color: #fff1e2;
border-radius: 9.38rpx;
}
.group_3 {
flex: 1 1 131.93rpx;
}
.group_1 {
padding: 9.99rpx 0 9.99rpx;
}
.image_2 {
width: 95.63rpx;
height: 95.63rpx;
}
.text_4 {
line-height: 24.07rpx;
}
.group_4 {
padding: 9.99rpx 0 11.79rpx;
}
.text_1 {
line-height: 24.23rpx;
}
.group_5 {
padding: 9.99rpx 0 11.76rpx;
}
.group_6 {
padding: 9.99rpx 6.64rpx 11.76rpx 29.66rpx;
}
.group_7 {
padding: 10.01rpx 0 11.94rpx;
}
.text_9 {
font-size: 24.38rpx;
line-height: 22.52rpx;
}
.section_2 {
padding: 22.5rpx 26.61rpx;
background-color: #fffef8;
border-radius: 18.75rpx;
}
.image_3 {
width: 43.13rpx;
height: 43.13rpx;
}
.font_2 {
font-size: 30rpx;
font-family: Open Sans;
line-height: 27.69rpx;
color: #000000;
}
.image_4 {
width: 48.75rpx;
height: 48.75rpx;
}
.image_5 {
margin-right: 6.38rpx;
}
.list-divider {
background-color: #0000002e;
height: 1.89rpx;
}
.section_4 {
padding: 22.95rpx 26.61rpx 22.05rpx;
background-color: #fffef8;
border-radius: 18.75rpx;
}
.text_5 {
line-height: 27.86rpx;
}
.image_6 {
margin-right: 6.38rpx;
width: 48.75rpx;
height: 50.63rpx;
}
.list-item_2 {
padding: 22.5rpx;
background-color: #fffef8;
border-radius: 18.75rpx;
}
.image_8 {
filter: drop-shadow(0rpx 7.5rpx 3.75rpx #00000040);
width: 43.13rpx;
height: 43.13rpx;
}
.text_6 {
line-height: 27.11rpx;
}
.image_7 {
margin-right: 10.48rpx;
}
@import url(../../../common/css/global.css);
</style>

View File

@ -75,5 +75,5 @@ const _sfc_main = {
};
}
};
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-ac6f555c"]]);
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-ac6f555c"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/Shopping-cart/component/addProduct.vue"]]);
exports.MiniProgramPage = MiniProgramPage;

View File

@ -27,12 +27,15 @@ if (!Math) {
"./pages/Shopping-cart/component/addProduct.js";
"./pages/mine/OrderDetails/OrderDetails.js";
"./pages/service/productDetail/productDetail.js";
"./pages/mine/bookings/booking.js";
"./pages/mine/bookings/bookings.js";
"./pages/mine/Contact/Contact.js";
}
const _sfc_main = {};
function _sfc_render(_ctx, _cache) {
return {};
}
const App = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render]]);
const App = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__file", "D:/jiangchengfeiyi-xiaochengxu/App.vue"]]);
function createApp() {
const app = common_vendor.createSSRApp(App);
app.use(store_index.pinia);

View File

@ -23,7 +23,10 @@
"pages/login/login",
"pages/Shopping-cart/component/addProduct",
"pages/mine/OrderDetails/OrderDetails",
"pages/service/productDetail/productDetail"
"pages/service/productDetail/productDetail",
"pages/mine/bookings/booking",
"pages/mine/bookings/bookings",
"pages/mine/Contact/Contact"
],
"window": {
"navigationBarTextStyle": "black",

View File

@ -180,6 +180,7 @@ const stringifySymbol = (v, i = "") => {
var _a;
return isSymbol(v) ? `Symbol(${(_a = v.description) != null ? _a : i})` : v;
};
const LINEFEED = "\n";
const SLOT_DEFAULT_NAME = "d";
const ON_SHOW = "onShow";
const ON_HIDE = "onHide";
@ -620,7 +621,7 @@ function getApiCallbacks(args) {
}
return apiCallbacks;
}
function normalizeErrMsg(errMsg, name) {
function normalizeErrMsg$1(errMsg, name) {
if (!errMsg || errMsg.indexOf(":fail") === -1) {
return name + ":ok";
}
@ -637,7 +638,7 @@ function createAsyncApiCallback(name, args = {}, { beforeAll, beforeSuccess } =
const callbackId = invokeCallbackId++;
addInvokeCallback(callbackId, name, (res) => {
res = res || {};
res.errMsg = normalizeErrMsg(res.errMsg, name);
res.errMsg = normalizeErrMsg$1(res.errMsg, name);
isFunction(beforeAll) && beforeAll(res);
if (res.errMsg === name + ":ok") {
isFunction(beforeSuccess) && beforeSuccess(res, args);
@ -769,7 +770,7 @@ function promisify$1(name, fn) {
}
function formatApiArgs(args, options) {
const params = args[0];
if (!options || !options.formatArgs || !isPlainObject$1(options.formatArgs) && isPlainObject$1(params)) {
if (!options || !isPlainObject$1(options.formatArgs) && isPlainObject$1(params)) {
return;
}
const formatArgs = options.formatArgs;
@ -816,12 +817,12 @@ function beforeInvokeApi(name, args, protocol, options) {
return errMsg;
}
}
function parseErrMsg(errMsg) {
function normalizeErrMsg(errMsg) {
if (!errMsg || isString(errMsg)) {
return errMsg;
}
if (errMsg.stack) {
console.error(errMsg.message + "\n" + errMsg.stack);
console.error(errMsg.message + LINEFEED + errMsg.stack);
return errMsg.message;
}
return errMsg;
@ -835,7 +836,7 @@ function wrapperTaskApi(name, fn, protocol, options) {
}
return fn(args, {
resolve: (res) => invokeSuccess(id, name, res),
reject: (errMsg2, errRes) => invokeFail(id, name, parseErrMsg(errMsg2), errRes)
reject: (errMsg2, errRes) => invokeFail(id, name, normalizeErrMsg(errMsg2), errRes)
});
};
}
@ -1297,8 +1298,8 @@ function populateParameters(fromRes, toRes) {
appVersion: "1.0.0",
appVersionCode: "100",
appLanguage: getAppLanguage(hostLanguage),
uniCompileVersion: "4.23",
uniRuntimeVersion: "4.23",
uniCompileVersion: "4.15",
uniRuntimeVersion: "4.15",
uniPlatform: "mp-weixin",
deviceBrand,
deviceModel: model,
@ -7303,7 +7304,7 @@ function initDefaultProps(options, isBehavior = false) {
};
}
if (options.behaviors) {
if (options.behaviors.includes("wx://form-field")) {
if (options.behaviors.includes("__GLOBAL__://form-field")) {
if (!options.properties || !options.properties.name) {
properties.name = {
type: null,
@ -7474,7 +7475,7 @@ function initBehaviors(vueOptions) {
const behaviors = [];
if (isArray(vueBehaviors)) {
vueBehaviors.forEach((behavior) => {
behaviors.push(behavior.replace("uni://", "wx://"));
behaviors.push(behavior.replace("uni://", "__GLOBAL__://"));
if (behavior === "uni://form-field") {
if (isArray(vueProps)) {
vueProps.push("name");
@ -8371,4 +8372,5 @@ exports.sr = sr;
exports.t = t;
exports.toRaw = toRaw;
exports.unref = unref;
exports.watch = watch;
exports.wx$1 = wx$1;

View File

@ -10,5 +10,5 @@ function _sfc_render(_ctx, _cache) {
})
};
}
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-6d058dc0"]]);
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-6d058dc0"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/Shopping-cart/Phone/Phone.vue"]]);
wx.createPage(MiniProgramPage);

View File

@ -72,5 +72,5 @@ const _sfc_main = {
};
}
};
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-fb57d854"]]);
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-fb57d854"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/Shopping-cart/newaddress_Info/newaddress_Info.vue"]]);
wx.createPage(MiniProgramPage);

View File

@ -163,5 +163,5 @@ const _sfc_main = {
};
}
};
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-641af6de"]]);
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-641af6de"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/Shopping-cart/productmain/productmain.vue"]]);
wx.createPage(MiniProgramPage);

View File

@ -15,5 +15,5 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
};
}
});
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-60893f73"]]);
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-60893f73"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/booking/AppointmentHome.vue"]]);
wx.createPage(MiniProgramPage);

View File

@ -15,5 +15,5 @@ const _sfc_main = {
};
}
};
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-cab9a6c6"]]);
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-cab9a6c6"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/booking/BillingOfFees/BillingOfFees.vue"]]);
wx.createPage(MiniProgramPage);

View File

@ -4,5 +4,5 @@ const _sfc_main = {};
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
return {};
}
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-43413e24"]]);
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-43413e24"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/booking/ContactInformation.vue"]]);
wx.createPage(MiniProgramPage);

View File

@ -4,5 +4,5 @@ const _sfc_main = {};
function _sfc_render(_ctx, _cache) {
return {};
}
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-a9d91b4b"]]);
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-a9d91b4b"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/booking/ReservationInstructions/ReservationInstructions.vue"]]);
wx.createPage(MiniProgramPage);

View File

@ -10,5 +10,5 @@ function _sfc_render(_ctx, _cache) {
})
};
}
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-d54bd2fc"]]);
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-d54bd2fc"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/booking/Simple/Simple.vue"]]);
wx.createPage(MiniProgramPage);

View File

@ -4,5 +4,5 @@ const _sfc_main = {};
function _sfc_render(_ctx, _cache) {
return {};
}
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-1d20d48c"]]);
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-1d20d48c"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/booking/bookingpay/bookingpay.vue"]]);
wx.createPage(MiniProgramPage);

View File

@ -4,5 +4,5 @@ const _sfc_main = {};
function _sfc_render(_ctx, _cache) {
return {};
}
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-f815bf4c"]]);
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-f815bf4c"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/booking/date.vue"]]);
wx.createPage(MiniProgramPage);

View File

@ -1,48 +1,149 @@
"use strict";
const common_vendor = require("../../../common/vendor.js");
if (!Array) {
const _easycom_uni_popup2 = common_vendor.resolveComponent("uni-popup");
_easycom_uni_popup2();
}
const _easycom_uni_popup = () => "../../../uni_modules/uni-popup/components/uni-popup/uni-popup.js";
if (!Math) {
_easycom_uni_popup();
}
const _sfc_main = {
__name: "respectable",
setup(__props) {
common_vendor.ref([
// tab:'选择服装价位',
// {
// img:'',
// name:'简约风尚',
// price:'100-200',
// title:'传承非遗之美,简约演绎经典'
// },
// {
// img:'',
// name:'时尚精选',
// price:'200-400',
// title:'融合时尚与传统,精选非遗划账'
// },
// {
// img:'',
// name:'奢华专属',
// price:'400-800',
// title:'非遗匠心独运,奢华专属定制'
// }
common_vendor.ref([]);
const Whole = common_vendor.ref([
{
img: "https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FFQDXFHYB-000-2.png",
name: "简约风尚",
price: "100-200",
title: "传承非遗之美,简约演绎经典"
},
{
img: "https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FdTSYNsqi-000-3.png",
name: "时尚精选",
price: "200-400",
title: "融合时尚与传统,精选非遗划账"
},
{
img: " https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FDSCaeopg-000-1.png",
name: "奢华专属",
price: "400-800",
title: "非遗匠心独运,奢华专属定制"
}
]);
common_vendor.ref([
// tab:'选择服务'
// {
// img:'',
// name:'妆发预约',
// price:'20',
// title:'包括底妆,眉毛,眼妆,腮红和唇妆,根据您的肤色和服装风格进行个性化设计'
// },
// {
// img:'',
// name:'摄影服务',
// price:'15',
// title:'提供专业的摄影棚和灯光设备,为客户打造舒适的拍摄环境'
// },
const Own = common_vendor.ref([
{
img: "https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FObQGBPnJ-zhuangfa.png",
name: "妆发预约",
price: "20",
title: "包括底妆,眉毛,眼妆,腮红和唇妆,根据您的肤色和服装风格进行个性化设计"
},
{
img: "https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FDFNymmCN-sheying.png",
name: "摄影服务",
price: "15",
title: "提供专业的摄影棚和灯光设备,为客户打造舒适的拍摄环境"
}
]);
const zhi = common_vendor.ref("0");
const showWhole = (zhiValue) => {
zhi.value = zhiValue;
console.log(zhi.value);
};
const showOwn = (zhiValue) => {
zhi.value = zhiValue;
console.log(zhi.value);
};
const close1 = () => {
popup1.value.close();
};
const close2 = () => {
popup2.value.close();
};
const popup1 = common_vendor.ref(null);
const popup2 = common_vendor.ref(null);
const showPopup1 = common_vendor.ref(false);
const showPopup2 = common_vendor.ref(false);
const openPopup1 = () => {
showPopup1.value = true;
popup1.value.open("center");
};
const openPopup2 = () => {
showPopup2.value = true;
popup2.value.open("center");
};
common_vendor.ref(null);
const goToText = (index) => {
console.log(index);
common_vendor.index.navigateTo({
url: "/pages/booking/CostumeDisplay/CostumeDisplay?info=" + JSON.stringify(Whole.value[index])
});
};
const goToContact = () => {
common_vendor.index.navigateTo({
url: "/pages/mine/Contact/Contact"
});
};
console.log(Whole.value[1]);
return (_ctx, _cache) => {
return {};
return common_vendor.e({
a: showPopup1.value
}, showPopup1.value ? {
b: common_vendor.o(close1),
c: common_vendor.sr(popup1, "cad4fb76-0", {
"k": "popup1"
}),
d: common_vendor.p({
["mask-click"]: false,
["background-color"]: "white"
})
} : {}, {
e: showPopup2.value
}, showPopup2.value ? {
f: common_vendor.o(close2),
g: common_vendor.sr(popup2, "cad4fb76-1", {
"k": "popup2"
}),
h: common_vendor.p({
["mask-click"]: false,
["background-color"]: "white"
})
} : {}, {
i: common_vendor.o(($event) => goToContact()),
j: common_vendor.o(($event) => showWhole("0")),
k: common_vendor.o(($event) => showOwn("1")),
l: zhi.value === "0"
}, zhi.value === "0" ? {
m: common_vendor.f(Whole.value, (item, index, i0) => {
return {
a: item.img,
b: common_vendor.t(item.name),
c: common_vendor.t(item.price),
d: common_vendor.t(item.title),
e: item,
f: common_vendor.o(($event) => goToText(index), item)
};
}),
n: common_vendor.o(openPopup1)
} : {}, {
o: zhi.value === "1"
}, zhi.value === "1" ? {
p: common_vendor.f(Own.value, (item, k0, i0) => {
return {
a: item.img,
b: common_vendor.t(item.name),
c: common_vendor.t(item.price),
d: common_vendor.t(item.title),
e: item
};
}),
q: common_vendor.o(openPopup1)
} : {}, {
r: common_vendor.o(openPopup2)
});
};
}
};
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-cad4fb76"]]);
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-cad4fb76"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/booking/respectable/respectable.vue"]]);
wx.createPage(MiniProgramPage);

View File

@ -1,4 +1,6 @@
{
"navigationBarTitleText": "",
"usingComponents": {}
"usingComponents": {
"uni-popup": "../../../uni_modules/uni-popup/components/uni-popup/uni-popup"
}
}

File diff suppressed because one or more lines are too long

View File

@ -436,6 +436,12 @@ text.data-v-cad4fb76 {
overflow-x: hidden;
height: 100%;
}
.font_66.data-v-cad4fb76 {
font-size: 22.5rpx;
font-family: Open Sans;
line-height: 26.25rpx;
color: #898989;
}
.group.data-v-cad4fb76 {
padding-top: 11.25rpx;
}
@ -540,11 +546,23 @@ text.data-v-cad4fb76 {
position: relative;
flex: 1 1 281.25rpx;
}
.equal-division-item.data-v-cad4fb76 {
.clickable-item.data-v-cad4fb76 {
padding: 15rpx 0 41.25rpx;
background-color: #fff291;
background-color: white;
border-radius: 18.75rpx;
height: 281.25rpx;
flex: 1 1 281.25rpx;
align-items: center;
display: flex;
flex-direction: column;
box-sizing: border-box;
flex-shrink: 0;
}
.clickable-item.selected.data-v-cad4fb76 {
background-color: #f08b00;
}
.clickable-item.selected.data-v-cad4fb76::after {
background-color: #f08b00;
}
.section_6.data-v-cad4fb76 {
background-color: #ffffff99;
@ -587,6 +605,9 @@ text.data-v-cad4fb76 {
.text_7.data-v-cad4fb76 {
line-height: 24.26rpx;
}
.text_77.data-v-cad4fb76 {
line-height: 24.96rpx;
}
.font_6.data-v-cad4fb76 {
font-size: 33.75rpx;
font-family: Open Sans;
@ -603,6 +624,13 @@ text.data-v-cad4fb76 {
width: 75rpx;
height: 37.5rpx;
}
.button2.data-v-cad4fb76 {
padding: 7.5rpx 0;
background-color: #f5f5dc;
border-radius: 50rpx;
width: 37.5rpx;
height: 37.5rpx;
}
.font_5.data-v-cad4fb76 {
font-size: 22.5rpx;
font-family: Open Sans;
@ -633,6 +661,11 @@ text.data-v-cad4fb76 {
width: 118.13rpx;
height: 151.88rpx;
}
.image_66.data-v-cad4fb76 {
border-radius: 9.38rpx;
width: 93.75rpx;
height: 118.13rpx;
}
.text_14.data-v-cad4fb76 {
line-height: 24.23rpx;
}
@ -659,12 +692,20 @@ text.data-v-cad4fb76 {
width: 123.75rpx;
height: 101.25rpx;
}
.image_77.data-v-cad4fb76 {
margin-left: 48.75rpx;
}
.font_8.data-v-cad4fb76 {
font-size: 26.25rpx;
font-family: Inter;
line-height: 24.3rpx;
color: #000000;
}
.group_10.data-v-cad4fb76 {
margin-left: 22.5rpx;
margin-top: 15rpx;
width: 405rpx;
}
.text_16.data-v-cad4fb76 {
line-height: 24.21rpx;
}
@ -709,6 +750,9 @@ text.data-v-cad4fb76 {
.group_7.data-v-cad4fb76 {
width: 180.06rpx;
}
.group_77.data-v-cad4fb76 {
margin-left: 37.5rpx;
}
.pos_4.data-v-cad4fb76 {
position: absolute;
right: 0;
@ -751,4 +795,10 @@ text.data-v-cad4fb76 {
}
.text_20.data-v-cad4fb76 {
color: #ffffff;
}
.section_12.data-v-cad4fb76 {
margin: 26.25rpx 16.88rpx 0 11.25rpx;
padding: 15rpx 26.25rpx;
background-color: #fffef8;
border-radius: 18.75rpx;
}

View File

@ -76,5 +76,5 @@ const _sfc_main = {
};
}
};
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-07e72d3c"]]);
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-07e72d3c"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/home/home.vue"]]);
wx.createPage(MiniProgramPage);

View File

@ -54,5 +54,5 @@ const _sfc_main = {
};
}
};
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-e4e4508d"]]);
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-e4e4508d"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/login/login.vue"]]);
wx.createPage(MiniProgramPage);

View File

@ -62,5 +62,5 @@ const _sfc_main = {
};
}
};
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-add9df0c"]]);
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-add9df0c"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/mine/OrderDetails/OrderDetails.vue"]]);
wx.createPage(MiniProgramPage);

View File

@ -11,6 +11,16 @@ const _sfc_main = {
});
};
store_userStore.userStore();
const goToText = () => {
common_vendor.index.navigateTo({
url: "/pages/mine/Contact/Contact"
});
};
const goTo = () => {
common_vendor.index.navigateTo({
url: "/pages/mine/bookings/booking"
});
};
return (_ctx, _cache) => {
return {
a: common_vendor.unref(common_assets.avator),
@ -24,11 +34,13 @@ const _sfc_main = {
i: common_vendor.unref(common_assets.you$1),
j: common_vendor.unref(common_assets.lianxiren_s),
k: common_vendor.unref(common_assets.you$1),
l: common_vendor.unref(common_assets.setting_s),
m: common_vendor.unref(common_assets.you$1)
l: common_vendor.o(($event) => goToText()),
m: common_vendor.unref(common_assets.setting_s),
n: common_vendor.unref(common_assets.you$1),
o: common_vendor.o(($event) => goTo())
};
};
}
};
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-8172b2ba"]]);
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-8172b2ba"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/mine/main/main.vue"]]);
wx.createPage(MiniProgramPage);

View File

@ -1 +1 @@
<view class="flex-col page data-v-8172b2ba"><view class="flex-row section data-v-8172b2ba"><image class="self-center image data-v-8172b2ba" src="{{a}}"/><view class="flex-col self-start group data-v-8172b2ba"><text class="self-start text data-v-8172b2ba">默认用户</text><view class="flex-col justify-start items-center self-stretch text-wrapper mt-6 data-v-8172b2ba"><text class="font text_2 data-v-8172b2ba">剩余积分0</text></view></view><view class="flex-col justify-start items-center self-start text-wrapper_2 data-v-8172b2ba"><text class="font text_3 data-v-8172b2ba">优惠卷0 张</text></view></view><view class="flex-col relative group_2 data-v-8172b2ba"><view class="flex-row equal-division data-v-8172b2ba"><view class="flex-col items-center group_3 group_1 data-v-8172b2ba" bindtap="{{c}}"><image class="image_2 data-v-8172b2ba" src="{{b}}"/><text class="font text_4 data-v-8172b2ba">总订单</text></view><view class="flex-col items-center group_3 group_4 data-v-8172b2ba"><image class="image_2 data-v-8172b2ba" src="{{d}}"/><text class="font text_1 data-v-8172b2ba">待付款</text></view><view class="flex-col items-center group_3 group_5 data-v-8172b2ba"><image class="image_2 data-v-8172b2ba" src="{{e}}"/><text class="font data-v-8172b2ba">待发货</text></view><view class="flex-col items-start group_3 group_6 data-v-8172b2ba"><image class="image_2 data-v-8172b2ba" src="{{f}}"/><text class="font data-v-8172b2ba">待收货</text></view><view class="flex-col items-center group_3 group_7 data-v-8172b2ba"><image class="image_2 data-v-8172b2ba" src="{{g}}"/><text class="font text_9 data-v-8172b2ba">退款/售后</text></view></view><view class="flex-col mt-37 data-v-8172b2ba"><view class="flex-row justify-between items-center section_2 data-v-8172b2ba"><view class="flex-row items-center data-v-8172b2ba"><image class="shrink-0 image_3 data-v-8172b2ba" src="{{h}}"/><text class="font_2 ml-5 data-v-8172b2ba">地址列表</text></view><image class="image_4 image_5 data-v-8172b2ba" src="{{i}}"/></view><view class="list-divider mt-5 data-v-8172b2ba"></view><view class="flex-row justify-between items-center section_4 mt-5 data-v-8172b2ba"><view class="flex-row items-center data-v-8172b2ba"><image class="shrink-0 image_3 data-v-8172b2ba" src="{{j}}"/><text class="font_2 text_5 ml-5 data-v-8172b2ba">联系人列表</text></view><image class="image_6 data-v-8172b2ba" src="{{k}}"/></view><view class="list-divider mt-5 data-v-8172b2ba"></view><view class="flex-row justify-between items-center list-item_2 mt-5 data-v-8172b2ba"><view class="flex-row items-center data-v-8172b2ba"><image class="shrink-0 image_8 data-v-8172b2ba" src="{{l}}"/><text class="font_2 text_6 ml-7 data-v-8172b2ba">设置</text></view><image class="image_4 image_7 data-v-8172b2ba" src="{{m}}"/></view></view></view></view>
<view class="flex-col page data-v-8172b2ba"><view class="flex-row section data-v-8172b2ba"><image class="self-center image data-v-8172b2ba" src="{{a}}"/><view class="flex-col self-start group data-v-8172b2ba"><text class="self-start text data-v-8172b2ba">默认用户</text><view class="flex-col justify-start items-center self-stretch text-wrapper mt-6 data-v-8172b2ba"><text class="font text_2 data-v-8172b2ba">剩余积分0</text></view></view><view class="flex-col justify-start items-center self-start text-wrapper_2 data-v-8172b2ba"><text class="font text_3 data-v-8172b2ba">优惠卷0 张</text></view></view><view class="flex-col relative group_2 data-v-8172b2ba"><view class="flex-row equal-division data-v-8172b2ba"><view class="flex-col items-center group_3 group_1 data-v-8172b2ba" bindtap="{{c}}"><image class="image_2 data-v-8172b2ba" src="{{b}}"/><text class="font text_4 data-v-8172b2ba">总订单</text></view><view class="flex-col items-center group_3 group_4 data-v-8172b2ba"><image class="image_2 data-v-8172b2ba" src="{{d}}"/><text class="font text_1 data-v-8172b2ba">待付款</text></view><view class="flex-col items-center group_3 group_5 data-v-8172b2ba"><image class="image_2 data-v-8172b2ba" src="{{e}}"/><text class="font data-v-8172b2ba">待发货</text></view><view class="flex-col items-start group_3 group_6 data-v-8172b2ba"><image class="image_2 data-v-8172b2ba" src="{{f}}"/><text class="font data-v-8172b2ba">待收货</text></view><view class="flex-col items-center group_3 group_7 data-v-8172b2ba"><image class="image_2 data-v-8172b2ba" src="{{g}}"/><text class="font text_9 data-v-8172b2ba">退款/售后</text></view></view><view class="flex-col mt-37 data-v-8172b2ba"><view class="flex-row justify-between items-center section_2 data-v-8172b2ba"><view class="flex-row items-center data-v-8172b2ba"><image class="shrink-0 image_3 data-v-8172b2ba" src="{{h}}"/><text class="font_2 ml-5 data-v-8172b2ba">地址列表</text></view><image class="image_4 image_5 data-v-8172b2ba" src="{{i}}"/></view><view class="list-divider mt-5 data-v-8172b2ba"></view><view class="flex-row justify-between items-center section_4 mt-5 data-v-8172b2ba" bindtap="{{l}}"><view class="flex-row items-center data-v-8172b2ba"><image class="shrink-0 image_3 data-v-8172b2ba" src="{{j}}"/><text class="font_2 text_5 ml-5 data-v-8172b2ba">联系人列表</text></view><image class="image_6 data-v-8172b2ba" src="{{k}}"/></view><view class="list-divider mt-5 data-v-8172b2ba"></view><view class="flex-row justify-between items-center list-item_2 mt-5 data-v-8172b2ba" bindtap="{{o}}"><view class="flex-row items-center data-v-8172b2ba"><image class="shrink-0 image_8 data-v-8172b2ba" src="{{m}}"/><text class="font_2 text_6 ml-7 data-v-8172b2ba">设置</text></view><image class="image_4 image_7 data-v-8172b2ba" src="{{n}}"/></view></view></view></view>

View File

@ -65,19 +65,19 @@ const _sfc_main = {
};
return (_ctx, _cache) => {
return {
a: "",
a: _ctx.orderStatus === "全部" ? 1 : "",
b: isSelected("全") ? 1 : "",
c: common_vendor.o(($event) => changeTab("全部")),
d: "",
d: _ctx.orderStatus === "待支付" ? 1 : "",
e: isSelected("待支付") ? 1 : "",
f: common_vendor.o(($event) => changeTab("待支付")),
g: "",
g: _ctx.orderStatus === "待发货" ? 1 : "",
h: isSelected("待发货") ? 1 : "",
i: common_vendor.o(($event) => changeTab("待发货")),
j: "",
j: _ctx.orderStatus === "已发货" ? 1 : "",
k: isSelected("已发货") ? 1 : "",
l: common_vendor.o(($event) => changeTab("已发货")),
m: "",
m: _ctx.orderStatus === "售后" ? 1 : "",
n: isSelected("售后") ? 1 : "",
o: common_vendor.o(($event) => changeTab("售后")),
p: common_vendor.f(Status.value.displayedOrders, (order, index, i0) => {
@ -122,5 +122,5 @@ const _sfc_main = {
};
}
};
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-7d0f2622"]]);
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-7d0f2622"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/mine/mineorders/mineorders.vue"]]);
wx.createPage(MiniProgramPage);

View File

@ -76,5 +76,5 @@ const _sfc_main = {
};
}
};
const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-c20b9e4d"]]);
const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-c20b9e4d"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/order/component/addressComponent.vue"]]);
wx.createComponent(Component);

View File

@ -55,5 +55,5 @@ const _sfc_main = {
};
}
};
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-0b647166"]]);
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-0b647166"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/order/paysuccess/paysuccess.vue"]]);
wx.createPage(MiniProgramPage);

View File

@ -4,5 +4,5 @@ const _sfc_main = {};
function _sfc_render(_ctx, _cache) {
return {};
}
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-8a444854"]]);
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-8a444854"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/order/product-unpay/product-unpay.vue"]]);
wx.createPage(MiniProgramPage);

View File

@ -180,5 +180,5 @@ const _sfc_main = {
};
}
};
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-eda1e8f0"]]);
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-eda1e8f0"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/order/product-waitpay/product-waitpay.vue"]]);
wx.createPage(MiniProgramPage);

View File

@ -14,5 +14,5 @@ const _sfc_main = {
};
}
};
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-f0df60ad"]]);
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-f0df60ad"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/order/productOrderDetail/productOrderDetail.vue"]]);
wx.createPage(MiniProgramPage);

View File

@ -4,5 +4,5 @@ const _sfc_main = {};
function _sfc_render(_ctx, _cache) {
return {};
}
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-4d02f7b2"]]);
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-4d02f7b2"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/service/productDetail/productDetail.vue"]]);
wx.createPage(MiniProgramPage);

View File

@ -83,5 +83,5 @@ const _sfc_main = {
};
}
};
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-3361b524"]]);
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-3361b524"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/store-home/ProductDetails/ProductDetails.vue"]]);
wx.createPage(MiniProgramPage);

View File

@ -105,5 +105,5 @@ const _sfc_main = {
};
}
};
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-7e3c386d"]]);
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-7e3c386d"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/store-home/main/main.vue"]]);
wx.createPage(MiniProgramPage);

View File

@ -18,7 +18,7 @@
}
},
"compileType": "miniprogram",
"libVersion": "3.6.0",
"libVersion": "3.6.5",
"appid": "wx3f968a09e31d6bed",
"projectname": "FeiYi",
"condition": {

View File

@ -389,5 +389,5 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
l: common_vendor.n($options.isDesktop ? "fixforpc-z-index" : "")
}) : {});
}
const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render]]);
const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__file", "D:/jiangchengfeiyi-xiaochengxu/uni_modules/uni-popup/components/uni-popup/uni-popup.vue"]]);
wx.createComponent(Component);

View File

@ -1 +1 @@
<view wx:if="{{a}}" class="{{['uni-popup', k, l]}}"><view bindtouchstart="{{j}}"><uni-transition wx:if="{{b}}" key="1" bindclick="{{c}}" u-i="4302e1fd-0" bind:__l="__l" u-p="{{d}}"/><uni-transition wx:if="{{i}}" u-s="{{['d']}}" key="2" bindclick="{{h}}" u-i="4302e1fd-1" bind:__l="__l" u-p="{{i}}"><view style="{{e}}" class="{{['uni-popup__wrapper', f]}}" bindtap="{{g}}"><slot/></view></uni-transition></view></view>
<view wx:if="{{a}}" class="{{['uni-popup', k, l]}}"><view bindtouchstart="{{j}}"><uni-transition wx:if="{{b}}" key="1" bindclick="{{c}}" u-i="6f1d5c71-0" bind:__l="__l" u-p="{{d}}"/><uni-transition wx:if="{{i}}" u-s="{{['d']}}" key="2" bindclick="{{h}}" u-i="6f1d5c71-1" bind:__l="__l" u-p="{{i}}"><view style="{{e}}" class="{{['uni-popup__wrapper', f]}}" bindtap="{{g}}"><slot/></view></uni-transition></view></view>

View File

@ -261,5 +261,5 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
e: common_vendor.o((...args) => $options.onClick && $options.onClick(...args))
};
}
const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render]]);
const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__file", "D:/jiangchengfeiyi-xiaochengxu/uni_modules/uni-transition/components/uni-transition/uni-transition.vue"]]);
wx.createComponent(Component);