非遗工坊首页、服务类展示
This commit is contained in:
parent
6382845f8b
commit
a5becf53ac
|
@ -1,3 +1,5 @@
|
|||
export const baseUrl = 'http://localhost:9092/api' //后端接口文档
|
||||
export const Url = 'http://localhost:9092/api' //后端接口文档
|
||||
export const testUrl = 'http://123.249.108.160:8888/api' //自己组的服务器接口地址
|
||||
export const suiUrl = 'http://154.8.193.216:9092/api' //隋宇霏的接口地址
|
||||
export const suiUrl = 'http://154.8.193.216:9092/api' //隋宇霏的接口地址
|
||||
|
||||
export const baseUrl = testUrl
|
|
@ -50,9 +50,10 @@
|
|||
/* 快应用特有相关 */
|
||||
"mp-weixin" : {
|
||||
/* 小程序特有相关 */
|
||||
"appid" : "wx3f968a09e31d6bed",
|
||||
"appid" : "wx61b63e27bddf4ea2",
|
||||
"setting" : {
|
||||
"urlCheck" : false
|
||||
"urlCheck" : false,
|
||||
"minified" : true
|
||||
},
|
||||
"usingComponents" : true
|
||||
},
|
||||
|
|
14
pages.json
14
pages.json
|
@ -189,6 +189,20 @@
|
|||
{
|
||||
"navigationBarTitleText" : ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"path" : "pages/mine/Contact/Contact",
|
||||
"style" :
|
||||
{
|
||||
"navigationBarTitleText" : ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"path" : "pages/workshop/productmain/productmain",
|
||||
"style" :
|
||||
{
|
||||
"navigationBarTitleText" : ""
|
||||
}
|
||||
}
|
||||
],
|
||||
"globalStyle": {
|
||||
|
|
|
@ -1,113 +1,178 @@
|
|||
<template>
|
||||
<view class="flex-col page">
|
||||
<image
|
||||
class="image"
|
||||
src="https://ide.code.fun/api/image?token=674e57d6797f850011f0b062&name=81b265c5869f092903cecdb6ba7eb11d.png"
|
||||
/>
|
||||
<view class="flex-col justify-start items-center text-wrapper"><text class="text">最新活动</text></view>
|
||||
<view class="flex-col justify-start section">
|
||||
<view class="grid">
|
||||
<view class="flex-col grid-item_1" v-for="(item, index) in items" :key="index" @click="jump_detail(index,item)">
|
||||
<view class="flex-col">
|
||||
<image
|
||||
class="image_1"
|
||||
src="https://ide.code.fun/api/image?token=674e57d6797f850011f0b062&name=59b2ee9b1885663ab247ad633a0c01f2.png"
|
||||
/>
|
||||
<text class="font text_2 mt-4">【非遗手工艺体验】玉雕-古法制玉体验</text>
|
||||
</view>
|
||||
<view class="flex-row items-center group mt-10">
|
||||
<image class="image_3" src="https://ide.code.fun/api/image?token=674e57d6797f850011f0b062&name=rmb.png" />
|
||||
<text class="font_2">99.00</text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="flex-col justify-start relative page">
|
||||
<view class="section"></view>
|
||||
<view class="flex-col justify-start items-center section_2 pos">
|
||||
<view class="flex-row section_3">
|
||||
<image
|
||||
class="image"
|
||||
src="https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FqiUJHqkm-fangdajing.png"
|
||||
/>
|
||||
<input class="text-wrapper ml-7" placeholder="搜索课程" placeholder-class="placeholderStyle"/>
|
||||
</view>
|
||||
</view>
|
||||
<image
|
||||
class="image_2 pos_2"
|
||||
src="https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FaHtvfdev-test.png"
|
||||
/>
|
||||
<view class="flex-col justify-start items-start pos_3">
|
||||
<view class="flexbox">
|
||||
<view class="flex-col grid-item" v-for="(item, index) in products" :key="index" @click="jump_detail(item,index)">
|
||||
<view class="flex-col">
|
||||
<image
|
||||
class="image_1"
|
||||
:src="item.goodImg"
|
||||
/>
|
||||
<text class="font text_2 mt-1">{{ item.name }}</text>
|
||||
</view>
|
||||
<view class="flex-row items-center group_2 mt-17">
|
||||
<image
|
||||
class="image_4"
|
||||
src="https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FTDckKcXA-rmb.png"
|
||||
/>
|
||||
<text class="font_2">{{ item.price }}</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { ref , onMounted } from 'vue'
|
||||
import { baseUrl } from '../../../api/request';
|
||||
const products = ref()
|
||||
const cookie = wx.getStorageSync("cookie")
|
||||
const items = ref([null,null])
|
||||
onMounted(()=>{
|
||||
getProducts()
|
||||
})
|
||||
const getProducts = async ()=> {
|
||||
const res = await uni.request({
|
||||
url: baseUrl + '/goods/service/list/card',
|
||||
method: 'GET',
|
||||
header: {
|
||||
cookie
|
||||
}
|
||||
})
|
||||
console.log(res.data.data);
|
||||
if(res.data.code === 1) {
|
||||
products.value = res.data.data
|
||||
}
|
||||
}
|
||||
const jump_detail =(index,item)=>{
|
||||
console.log(index);
|
||||
uni.navigateTo({
|
||||
url: '../../store-home/ProductDetails/ProductDetails?info=' + JSON.stringify(item)
|
||||
url: '../productmain/productmain?info=' + + JSON.stringify(item)
|
||||
})
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.mt-1 {
|
||||
margin-top: 1.88rpx;
|
||||
}
|
||||
.mt-17 {
|
||||
margin-top: 31.88rpx;
|
||||
}
|
||||
.page {
|
||||
padding-top: 37.5rpx;
|
||||
background-color: #f5f5dc;
|
||||
background-color: #ffffff;
|
||||
background-image: url('https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FJULGLADX-feiyigongfang.png');
|
||||
background-size: 100% 100%;
|
||||
background-repeat: no-repeat;
|
||||
width: 100%;
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
height: 100vh;
|
||||
}
|
||||
.image {
|
||||
margin: 0 30rpx;
|
||||
border-radius: 18.75rpx;
|
||||
width: 92vw;
|
||||
height: 61.25vw;
|
||||
}
|
||||
.text-wrapper {
|
||||
margin-top: 26.25rpx;
|
||||
padding: 27.41rpx 0 23.7rpx;
|
||||
background-color: #f7de98;
|
||||
}
|
||||
.text {
|
||||
color: #323232;
|
||||
font-size: 30rpx;
|
||||
font-family: Open Sans;
|
||||
line-height: 27.64rpx;
|
||||
height: 100%;
|
||||
}
|
||||
.section {
|
||||
padding: 54.38rpx 0 223.13rpx;
|
||||
background-color: #fff8dc;
|
||||
background-image: url('https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FJULGLADX-feiyigongfang.png');
|
||||
background-size: 100% 100%;
|
||||
background-repeat: no-repeat;
|
||||
width: 750rpx;
|
||||
height: 2096.25rpx;
|
||||
}
|
||||
.grid {
|
||||
margin-left: 28.13rpx;
|
||||
margin-right: 28.13rpx;
|
||||
height: 976.88rpx;
|
||||
display: grid;
|
||||
grid-template-rows: repeat(2, minmax(0, 1fr));
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
row-gap: 39.51rpx;
|
||||
column-gap: 28.26rpx;
|
||||
.section_2 {
|
||||
padding: 15rpx 0;
|
||||
background-color: #ffffff;
|
||||
}
|
||||
.grid-item_1 {
|
||||
.pos {
|
||||
position: fixed;
|
||||
left: 0;
|
||||
right: 0;
|
||||
top: 0;
|
||||
z-index: 1; //设置positon优先级
|
||||
}
|
||||
.section_3 {
|
||||
padding: 0 15rpx;
|
||||
background-color: #f1e8e9;
|
||||
border-radius: 18.75rpx;
|
||||
width: 506.25rpx;
|
||||
}
|
||||
.image {
|
||||
width: 43.13rpx;
|
||||
height: 46.88rpx;
|
||||
}
|
||||
.font {
|
||||
font-size: 24.38rpx;
|
||||
font-family: FZSongKeBenXiuKaiS-R-GB;
|
||||
color: #000000;
|
||||
}
|
||||
.text {
|
||||
line-height: 23.04rpx;
|
||||
letter-spacing: 9.75rpx;
|
||||
}
|
||||
.image_2 {
|
||||
width: 100vw;
|
||||
height: 62.5vw;
|
||||
}
|
||||
.pos_2 {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
right: 0;
|
||||
top: 80.63rpx;
|
||||
}
|
||||
.pos_3 {
|
||||
position: absolute;
|
||||
left: 30.75rpx;
|
||||
top: 577.5rpx;
|
||||
}
|
||||
.grid-item {
|
||||
padding-bottom: 30.23rpx;
|
||||
background-color: #ffffff;
|
||||
border-radius: 18.75rpx;
|
||||
width: 332.85rpx;
|
||||
// border: 1px solid red;
|
||||
margin: 0 26rpx 20rpx 0;
|
||||
}
|
||||
.image_1 {
|
||||
border-radius: 18.75rpx 18.75rpx 0rpx 0rpx;
|
||||
width: 333.75rpx;
|
||||
height: 324.38rpx;
|
||||
}
|
||||
.font {
|
||||
font-size: 24.38rpx;
|
||||
font-family: Open Sans;
|
||||
line-height: 30rpx;
|
||||
color: #000000;
|
||||
}
|
||||
.text_2 {
|
||||
margin-left: 14.04rpx;
|
||||
margin-right: 8.46rpx;
|
||||
margin-left: 15.56rpx;
|
||||
margin-right: 3.19rpx;
|
||||
line-height: 30rpx;
|
||||
}
|
||||
.group {
|
||||
padding: 0 24.38rpx;
|
||||
.group_2 {
|
||||
padding: 0 24.3rpx;
|
||||
}
|
||||
.image_3 {
|
||||
.image_4 {
|
||||
width: 26.25rpx;
|
||||
height: 26.25rpx;
|
||||
}
|
||||
.font_2 {
|
||||
color: #c35c5d;
|
||||
font-size: 30rpx;
|
||||
font-family: Times New Roman;
|
||||
line-height: 20.68rpx;
|
||||
color: #fbb612;
|
||||
}
|
||||
.flexbox {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
.placeholderStyle {
|
||||
color: #c35c5d;
|
||||
}
|
||||
@import url(../../../common/css/global.css);
|
||||
</style>
|
||||
|
|
2
unpackage/dist/dev/mp-weixin/addProduct.js
vendored
2
unpackage/dist/dev/mp-weixin/addProduct.js
vendored
|
@ -75,5 +75,5 @@ const _sfc_main = {
|
|||
};
|
||||
}
|
||||
};
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-ac6f555c"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/Shopping-cart/component/addProduct.vue"]]);
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-ac6f555c"]]);
|
||||
exports.MiniProgramPage = MiniProgramPage;
|
||||
|
|
3
unpackage/dist/dev/mp-weixin/api/request.js
vendored
3
unpackage/dist/dev/mp-weixin/api/request.js
vendored
|
@ -1,3 +1,4 @@
|
|||
"use strict";
|
||||
const baseUrl = "http://localhost:9092/api";
|
||||
const testUrl = "http://123.249.108.160:8888/api";
|
||||
const baseUrl = testUrl;
|
||||
exports.baseUrl = baseUrl;
|
||||
|
|
8
unpackage/dist/dev/mp-weixin/app.js
vendored
8
unpackage/dist/dev/mp-weixin/app.js
vendored
|
@ -27,17 +27,17 @@ 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";
|
||||
"./pages/workshop/index/index.js";
|
||||
"./pages/booking/CostumeDisplay/CostumeDisplay.js";
|
||||
"./pages/booking/CostumeDetails/CostumeDetails.js";
|
||||
"./pages/mine/Contact/Contact.js";
|
||||
"./pages/workshop/productmain/productmain.js";
|
||||
}
|
||||
const _sfc_main = {};
|
||||
function _sfc_render(_ctx, _cache) {
|
||||
return {};
|
||||
}
|
||||
const App = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__file", "D:/jiangchengfeiyi-xiaochengxu/App.vue"]]);
|
||||
const App = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render]]);
|
||||
function createApp() {
|
||||
const app = common_vendor.createSSRApp(App);
|
||||
app.use(store_index.pinia);
|
||||
|
|
8
unpackage/dist/dev/mp-weixin/app.json
vendored
8
unpackage/dist/dev/mp-weixin/app.json
vendored
|
@ -24,11 +24,11 @@
|
|||
"pages/Shopping-cart/component/addProduct",
|
||||
"pages/mine/OrderDetails/OrderDetails",
|
||||
"pages/service/productDetail/productDetail",
|
||||
"pages/mine/bookings/booking",
|
||||
"pages/mine/bookings/bookings",
|
||||
"pages/mine/Contact/Contact",
|
||||
"pages/workshop/index/index",
|
||||
"pages/booking/CostumeDisplay/CostumeDisplay",
|
||||
"pages/booking/CostumeDetails/CostumeDetails"
|
||||
"pages/booking/CostumeDetails/CostumeDetails",
|
||||
"pages/mine/Contact/Contact",
|
||||
"pages/workshop/productmain/productmain"
|
||||
],
|
||||
"window": {
|
||||
"navigationBarTextStyle": "black",
|
||||
|
|
22
unpackage/dist/dev/mp-weixin/common/vendor.js
vendored
22
unpackage/dist/dev/mp-weixin/common/vendor.js
vendored
|
@ -180,7 +180,6 @@ 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";
|
||||
|
@ -621,7 +620,7 @@ function getApiCallbacks(args) {
|
|||
}
|
||||
return apiCallbacks;
|
||||
}
|
||||
function normalizeErrMsg$1(errMsg, name) {
|
||||
function normalizeErrMsg(errMsg, name) {
|
||||
if (!errMsg || errMsg.indexOf(":fail") === -1) {
|
||||
return name + ":ok";
|
||||
}
|
||||
|
@ -638,7 +637,7 @@ function createAsyncApiCallback(name, args = {}, { beforeAll, beforeSuccess } =
|
|||
const callbackId = invokeCallbackId++;
|
||||
addInvokeCallback(callbackId, name, (res) => {
|
||||
res = res || {};
|
||||
res.errMsg = normalizeErrMsg$1(res.errMsg, name);
|
||||
res.errMsg = normalizeErrMsg(res.errMsg, name);
|
||||
isFunction(beforeAll) && beforeAll(res);
|
||||
if (res.errMsg === name + ":ok") {
|
||||
isFunction(beforeSuccess) && beforeSuccess(res, args);
|
||||
|
@ -770,7 +769,7 @@ function promisify$1(name, fn) {
|
|||
}
|
||||
function formatApiArgs(args, options) {
|
||||
const params = args[0];
|
||||
if (!options || !isPlainObject$1(options.formatArgs) && isPlainObject$1(params)) {
|
||||
if (!options || !options.formatArgs || !isPlainObject$1(options.formatArgs) && isPlainObject$1(params)) {
|
||||
return;
|
||||
}
|
||||
const formatArgs = options.formatArgs;
|
||||
|
@ -817,12 +816,12 @@ function beforeInvokeApi(name, args, protocol, options) {
|
|||
return errMsg;
|
||||
}
|
||||
}
|
||||
function normalizeErrMsg(errMsg) {
|
||||
function parseErrMsg(errMsg) {
|
||||
if (!errMsg || isString(errMsg)) {
|
||||
return errMsg;
|
||||
}
|
||||
if (errMsg.stack) {
|
||||
console.error(errMsg.message + LINEFEED + errMsg.stack);
|
||||
console.error(errMsg.message + "\n" + errMsg.stack);
|
||||
return errMsg.message;
|
||||
}
|
||||
return errMsg;
|
||||
|
@ -836,7 +835,7 @@ function wrapperTaskApi(name, fn, protocol, options) {
|
|||
}
|
||||
return fn(args, {
|
||||
resolve: (res) => invokeSuccess(id, name, res),
|
||||
reject: (errMsg2, errRes) => invokeFail(id, name, normalizeErrMsg(errMsg2), errRes)
|
||||
reject: (errMsg2, errRes) => invokeFail(id, name, parseErrMsg(errMsg2), errRes)
|
||||
});
|
||||
};
|
||||
}
|
||||
|
@ -1298,8 +1297,8 @@ function populateParameters(fromRes, toRes) {
|
|||
appVersion: "1.0.0",
|
||||
appVersionCode: "100",
|
||||
appLanguage: getAppLanguage(hostLanguage),
|
||||
uniCompileVersion: "4.15",
|
||||
uniRuntimeVersion: "4.15",
|
||||
uniCompileVersion: "4.23",
|
||||
uniRuntimeVersion: "4.23",
|
||||
uniPlatform: "mp-weixin",
|
||||
deviceBrand,
|
||||
deviceModel: model,
|
||||
|
@ -7304,7 +7303,7 @@ function initDefaultProps(options, isBehavior = false) {
|
|||
};
|
||||
}
|
||||
if (options.behaviors) {
|
||||
if (options.behaviors.includes("__GLOBAL__://form-field")) {
|
||||
if (options.behaviors.includes("wx://form-field")) {
|
||||
if (!options.properties || !options.properties.name) {
|
||||
properties.name = {
|
||||
type: null,
|
||||
|
@ -7475,7 +7474,7 @@ function initBehaviors(vueOptions) {
|
|||
const behaviors = [];
|
||||
if (isArray(vueBehaviors)) {
|
||||
vueBehaviors.forEach((behavior) => {
|
||||
behaviors.push(behavior.replace("uni://", "__GLOBAL__://"));
|
||||
behaviors.push(behavior.replace("uni://", "wx://"));
|
||||
if (behavior === "uni://form-field") {
|
||||
if (isArray(vueProps)) {
|
||||
vueProps.push("name");
|
||||
|
@ -8372,4 +8371,5 @@ exports.sr = sr;
|
|||
exports.t = t;
|
||||
exports.toRaw = toRaw;
|
||||
exports.unref = unref;
|
||||
exports.watch = watch;
|
||||
exports.wx$1 = wx$1;
|
||||
|
|
|
@ -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"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/Shopping-cart/Phone/Phone.vue"]]);
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-6d058dc0"]]);
|
||||
wx.createPage(MiniProgramPage);
|
||||
|
|
|
@ -72,5 +72,5 @@ const _sfc_main = {
|
|||
};
|
||||
}
|
||||
};
|
||||
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"]]);
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-fb57d854"]]);
|
||||
wx.createPage(MiniProgramPage);
|
||||
|
|
|
@ -163,5 +163,5 @@ const _sfc_main = {
|
|||
};
|
||||
}
|
||||
};
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-641af6de"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/Shopping-cart/productmain/productmain.vue"]]);
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-641af6de"]]);
|
||||
wx.createPage(MiniProgramPage);
|
||||
|
|
|
@ -15,5 +15,5 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
|
|||
};
|
||||
}
|
||||
});
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-60893f73"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/booking/AppointmentHome.vue"]]);
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-60893f73"]]);
|
||||
wx.createPage(MiniProgramPage);
|
||||
|
|
|
@ -15,5 +15,5 @@ const _sfc_main = {
|
|||
};
|
||||
}
|
||||
};
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-cab9a6c6"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/booking/BillingOfFees/BillingOfFees.vue"]]);
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-cab9a6c6"]]);
|
||||
wx.createPage(MiniProgramPage);
|
||||
|
|
|
@ -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"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/booking/ContactInformation.vue"]]);
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-43413e24"]]);
|
||||
wx.createPage(MiniProgramPage);
|
||||
|
|
|
@ -45,5 +45,4 @@ const _sfc_main = {
|
|||
};
|
||||
}
|
||||
};
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/booking/CostumeDetails/CostumeDetails.vue"]]);
|
||||
wx.createPage(MiniProgramPage);
|
||||
wx.createPage(_sfc_main);
|
||||
|
|
|
@ -57,5 +57,5 @@ const _sfc_main = {
|
|||
};
|
||||
}
|
||||
};
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-d97852c0"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/booking/CostumeDisplay/CostumeDisplay.vue"]]);
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-d97852c0"]]);
|
||||
wx.createPage(MiniProgramPage);
|
||||
|
|
|
@ -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"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/booking/ReservationInstructions/ReservationInstructions.vue"]]);
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-a9d91b4b"]]);
|
||||
wx.createPage(MiniProgramPage);
|
||||
|
|
|
@ -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"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/booking/Simple/Simple.vue"]]);
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-d54bd2fc"]]);
|
||||
wx.createPage(MiniProgramPage);
|
||||
|
|
|
@ -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"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/booking/bookingpay/bookingpay.vue"]]);
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-1d20d48c"]]);
|
||||
wx.createPage(MiniProgramPage);
|
||||
|
|
|
@ -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"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/booking/date.vue"]]);
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-f815bf4c"]]);
|
||||
wx.createPage(MiniProgramPage);
|
||||
|
|
|
@ -153,5 +153,5 @@ const _sfc_main = {
|
|||
};
|
||||
}
|
||||
};
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-cad4fb76"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/booking/respectable/respectable.vue"]]);
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-cad4fb76"]]);
|
||||
wx.createPage(MiniProgramPage);
|
||||
|
|
|
@ -76,5 +76,5 @@ const _sfc_main = {
|
|||
};
|
||||
}
|
||||
};
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-07e72d3c"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/home/home.vue"]]);
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-07e72d3c"]]);
|
||||
wx.createPage(MiniProgramPage);
|
||||
|
|
|
@ -54,5 +54,5 @@ const _sfc_main = {
|
|||
};
|
||||
}
|
||||
};
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-e4e4508d"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/login/login.vue"]]);
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-e4e4508d"]]);
|
||||
wx.createPage(MiniProgramPage);
|
||||
|
|
|
@ -181,5 +181,5 @@ const _sfc_main = {
|
|||
};
|
||||
}
|
||||
};
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-0aa6b83b"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/mine/Contact/Contact.vue"]]);
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-0aa6b83b"]]);
|
||||
wx.createPage(MiniProgramPage);
|
||||
|
|
|
@ -62,5 +62,5 @@ const _sfc_main = {
|
|||
};
|
||||
}
|
||||
};
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-add9df0c"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/mine/OrderDetails/OrderDetails.vue"]]);
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-add9df0c"]]);
|
||||
wx.createPage(MiniProgramPage);
|
||||
|
|
|
@ -1,23 +0,0 @@
|
|||
"use strict";
|
||||
const common_vendor = require("../../../common/vendor.js");
|
||||
const _sfc_main = {
|
||||
__name: "booking",
|
||||
setup(__props) {
|
||||
const item = common_vendor.ref([null, null, null]);
|
||||
const goto = () => {
|
||||
common_vendor.index.navigateTo({
|
||||
url: "/pages/mine/bookings/bookings"
|
||||
});
|
||||
};
|
||||
return (_ctx, _cache) => {
|
||||
return {
|
||||
a: common_vendor.o(($event) => goto()),
|
||||
b: common_vendor.f(item.value, (i, k0, i0) => {
|
||||
return {};
|
||||
})
|
||||
};
|
||||
};
|
||||
}
|
||||
};
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-8f30db34"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/mine/bookings/booking.vue"]]);
|
||||
wx.createPage(MiniProgramPage);
|
|
@ -1,4 +0,0 @@
|
|||
{
|
||||
"navigationBarTitleText": "",
|
||||
"usingComponents": {}
|
||||
}
|
|
@ -1 +0,0 @@
|
|||
<view class="flex-col page data-v-8f30db34"><view class="flex-col section data-v-8f30db34"><view class="flex-row justify-between self-stretch group data-v-8f30db34"><text class="font text data-v-8f30db34">待消费</text><text class="font text_2 data-v-8f30db34" bindtap="{{a}}">已消费</text></view><view class="self-start section_2 data-v-8f30db34"></view></view><view wx:for="{{b}}" wx:for-item="i" class="flex-col section_3 mt-13 data-v-8f30db34"><text class="self-end font_2 text_3 data-v-8f30db34">待消费</text><view class="flex-row items-baseline self-stretch group_2 data-v-8f30db34"><text class="font_3 text_4 data-v-8f30db34">订单编号:</text><text class="font_3 text_5 ml-5 data-v-8f30db34">E20241005095840091406189</text></view><view class="flex-row self-stretch group_3 data-v-8f30db34"><image class="shrink-0 image data-v-8f30db34" src="https://ide.code.fun/api/image?token=6736eddfc471750012df05d6&name=bc0e955304da0a2ccafe3a66ac1f3aca.png"/><view class="flex-col flex-1 group_4 data-v-8f30db34"><view class="flex-row justify-center self-stretch relative data-v-8f30db34"><text class="font_2 text_6 pos data-v-8f30db34">整套约拍</text><text class="font_2 text_7 data-v-8f30db34">【时尚精选】</text></view><text class="self-start font_5 text_10 data-v-8f30db34">到店日期:2024-10-15</text><text class="self-start font_5 text_1 data-v-8f30db34">具体场次:上午场(09:30-12:00)</text><text class="self-stretch text_11 data-v-8f30db34">已选服务:妆发服务;摄影服务;室内;</text></view><view class="flex-row items-center shrink-0 self-start group_5 data-v-8f30db34"><text class="text_8 data-v-8f30db34">138.</text><image class="shrink-0 image_2 image_3 data-v-8f30db34" src="https://ide.code.fun/api/image?token=6736eddfc471750012df05d6&name=6c5700b3ac5fd83a23d838cb456bdd10.png"/><text class="font_4 text_9 data-v-8f30db34">00</text></view></view><view class="flex-row justify-end items-center self-stretch group_6 data-v-8f30db34"><text class="font_2 text_12 data-v-8f30db34">去支付:</text><image class="image_2 data-v-8f30db34" src="https://ide.code.fun/api/image?token=6736eddfc471750012df05d6&name=ea05ec17023763edb8cfe919508e0459.png"/><view class="group_7 data-v-8f30db34"><text class="text_13 data-v-8f30db34">88</text><text class="font_4 text_14 data-v-8f30db34">.00</text></view></view></view></view>
|
|
@ -1,567 +0,0 @@
|
|||
/* 水平间距 */
|
||||
/* 水平间距 */
|
||||
/************************************************************
|
||||
** 请将全局样式拷贝到项目的全局 CSS 文件或者当前页面的顶部 **
|
||||
** 否则页面将无法正常显示 **
|
||||
************************************************************/
|
||||
html.data-v-8f30db34 {
|
||||
font-size: 16px;
|
||||
}
|
||||
body.data-v-8f30db34 {
|
||||
margin: 0;
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans',
|
||||
'Droid Sans', 'Helvetica Neue', 'Microsoft Yahei', sans-serif;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
view.data-v-8f30db34,
|
||||
image.data-v-8f30db34,
|
||||
text.data-v-8f30db34 {
|
||||
box-sizing: border-box;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
#app.data-v-8f30db34 {
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
}
|
||||
.flex-row.data-v-8f30db34 {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
}
|
||||
.flex-col.data-v-8f30db34 {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.justify-start.data-v-8f30db34 {
|
||||
justify-content: flex-start;
|
||||
}
|
||||
.justify-end.data-v-8f30db34 {
|
||||
justify-content: flex-end;
|
||||
}
|
||||
.justify-center.data-v-8f30db34 {
|
||||
justify-content: center;
|
||||
}
|
||||
.justify-between.data-v-8f30db34 {
|
||||
justify-content: space-between;
|
||||
}
|
||||
.justify-around.data-v-8f30db34 {
|
||||
justify-content: space-around;
|
||||
}
|
||||
.justify-evenly.data-v-8f30db34 {
|
||||
justify-content: space-evenly;
|
||||
}
|
||||
.items-start.data-v-8f30db34 {
|
||||
align-items: flex-start;
|
||||
}
|
||||
.items-end.data-v-8f30db34 {
|
||||
align-items: flex-end;
|
||||
}
|
||||
.items-center.data-v-8f30db34 {
|
||||
align-items: center;
|
||||
}
|
||||
.items-baseline.data-v-8f30db34 {
|
||||
align-items: baseline;
|
||||
}
|
||||
.items-stretch.data-v-8f30db34 {
|
||||
align-items: stretch;
|
||||
}
|
||||
.self-start.data-v-8f30db34 {
|
||||
align-self: flex-start;
|
||||
}
|
||||
.self-end.data-v-8f30db34 {
|
||||
align-self: flex-end;
|
||||
}
|
||||
.self-center.data-v-8f30db34 {
|
||||
align-self: center;
|
||||
}
|
||||
.self-baseline.data-v-8f30db34 {
|
||||
align-self: baseline;
|
||||
}
|
||||
.self-stretch.data-v-8f30db34 {
|
||||
align-self: stretch;
|
||||
}
|
||||
.flex-1.data-v-8f30db34 {
|
||||
flex: 1 1 0%;
|
||||
}
|
||||
.flex-auto.data-v-8f30db34 {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.grow.data-v-8f30db34 {
|
||||
flex-grow: 1;
|
||||
}
|
||||
.grow-0.data-v-8f30db34 {
|
||||
flex-grow: 0;
|
||||
}
|
||||
.shrink.data-v-8f30db34 {
|
||||
flex-shrink: 1;
|
||||
}
|
||||
.shrink-0.data-v-8f30db34 {
|
||||
flex-shrink: 0;
|
||||
}
|
||||
.relative.data-v-8f30db34 {
|
||||
position: relative;
|
||||
}
|
||||
.ml-2.data-v-8f30db34 {
|
||||
margin-left: 3.75rpx;
|
||||
}
|
||||
.mt-2.data-v-8f30db34 {
|
||||
margin-top: 3.75rpx;
|
||||
}
|
||||
.ml-4.data-v-8f30db34 {
|
||||
margin-left: 7.5rpx;
|
||||
}
|
||||
.mt-4.data-v-8f30db34 {
|
||||
margin-top: 7.5rpx;
|
||||
}
|
||||
.ml-6.data-v-8f30db34 {
|
||||
margin-left: 11.25rpx;
|
||||
}
|
||||
.mt-6.data-v-8f30db34 {
|
||||
margin-top: 11.25rpx;
|
||||
}
|
||||
.ml-8.data-v-8f30db34 {
|
||||
margin-left: 15rpx;
|
||||
}
|
||||
.mt-8.data-v-8f30db34 {
|
||||
margin-top: 15rpx;
|
||||
}
|
||||
.ml-10.data-v-8f30db34 {
|
||||
margin-left: 18.75rpx;
|
||||
}
|
||||
.mt-10.data-v-8f30db34 {
|
||||
margin-top: 18.75rpx;
|
||||
}
|
||||
.ml-12.data-v-8f30db34 {
|
||||
margin-left: 22.5rpx;
|
||||
}
|
||||
.mt-12.data-v-8f30db34 {
|
||||
margin-top: 22.5rpx;
|
||||
}
|
||||
.ml-14.data-v-8f30db34 {
|
||||
margin-left: 26.25rpx;
|
||||
}
|
||||
.mt-14.data-v-8f30db34 {
|
||||
margin-top: 26.25rpx;
|
||||
}
|
||||
.ml-16.data-v-8f30db34 {
|
||||
margin-left: 30rpx;
|
||||
}
|
||||
.mt-16.data-v-8f30db34 {
|
||||
margin-top: 30rpx;
|
||||
}
|
||||
.ml-18.data-v-8f30db34 {
|
||||
margin-left: 33.75rpx;
|
||||
}
|
||||
.mt-18.data-v-8f30db34 {
|
||||
margin-top: 33.75rpx;
|
||||
}
|
||||
.ml-20.data-v-8f30db34 {
|
||||
margin-left: 37.5rpx;
|
||||
}
|
||||
.mt-20.data-v-8f30db34 {
|
||||
margin-top: 37.5rpx;
|
||||
}
|
||||
.ml-22.data-v-8f30db34 {
|
||||
margin-left: 41.25rpx;
|
||||
}
|
||||
.mt-22.data-v-8f30db34 {
|
||||
margin-top: 41.25rpx;
|
||||
}
|
||||
.ml-24.data-v-8f30db34 {
|
||||
margin-left: 45rpx;
|
||||
}
|
||||
.mt-24.data-v-8f30db34 {
|
||||
margin-top: 45rpx;
|
||||
}
|
||||
.ml-26.data-v-8f30db34 {
|
||||
margin-left: 48.75rpx;
|
||||
}
|
||||
.mt-26.data-v-8f30db34 {
|
||||
margin-top: 48.75rpx;
|
||||
}
|
||||
.ml-28.data-v-8f30db34 {
|
||||
margin-left: 52.5rpx;
|
||||
}
|
||||
.mt-28.data-v-8f30db34 {
|
||||
margin-top: 52.5rpx;
|
||||
}
|
||||
.ml-30.data-v-8f30db34 {
|
||||
margin-left: 56.25rpx;
|
||||
}
|
||||
.mt-30.data-v-8f30db34 {
|
||||
margin-top: 56.25rpx;
|
||||
}
|
||||
.ml-32.data-v-8f30db34 {
|
||||
margin-left: 60rpx;
|
||||
}
|
||||
.mt-32.data-v-8f30db34 {
|
||||
margin-top: 60rpx;
|
||||
}
|
||||
.ml-34.data-v-8f30db34 {
|
||||
margin-left: 63.75rpx;
|
||||
}
|
||||
.mt-34.data-v-8f30db34 {
|
||||
margin-top: 63.75rpx;
|
||||
}
|
||||
.ml-36.data-v-8f30db34 {
|
||||
margin-left: 67.5rpx;
|
||||
}
|
||||
.mt-36.data-v-8f30db34 {
|
||||
margin-top: 67.5rpx;
|
||||
}
|
||||
.ml-38.data-v-8f30db34 {
|
||||
margin-left: 71.25rpx;
|
||||
}
|
||||
.mt-38.data-v-8f30db34 {
|
||||
margin-top: 71.25rpx;
|
||||
}
|
||||
.ml-40.data-v-8f30db34 {
|
||||
margin-left: 75rpx;
|
||||
}
|
||||
.mt-40.data-v-8f30db34 {
|
||||
margin-top: 75rpx;
|
||||
}
|
||||
.ml-42.data-v-8f30db34 {
|
||||
margin-left: 78.75rpx;
|
||||
}
|
||||
.mt-42.data-v-8f30db34 {
|
||||
margin-top: 78.75rpx;
|
||||
}
|
||||
.ml-44.data-v-8f30db34 {
|
||||
margin-left: 82.5rpx;
|
||||
}
|
||||
.mt-44.data-v-8f30db34 {
|
||||
margin-top: 82.5rpx;
|
||||
}
|
||||
.ml-46.data-v-8f30db34 {
|
||||
margin-left: 86.25rpx;
|
||||
}
|
||||
.mt-46.data-v-8f30db34 {
|
||||
margin-top: 86.25rpx;
|
||||
}
|
||||
.ml-48.data-v-8f30db34 {
|
||||
margin-left: 90rpx;
|
||||
}
|
||||
.mt-48.data-v-8f30db34 {
|
||||
margin-top: 90rpx;
|
||||
}
|
||||
.ml-50.data-v-8f30db34 {
|
||||
margin-left: 93.75rpx;
|
||||
}
|
||||
.mt-50.data-v-8f30db34 {
|
||||
margin-top: 93.75rpx;
|
||||
}
|
||||
.ml-52.data-v-8f30db34 {
|
||||
margin-left: 97.5rpx;
|
||||
}
|
||||
.mt-52.data-v-8f30db34 {
|
||||
margin-top: 97.5rpx;
|
||||
}
|
||||
.ml-54.data-v-8f30db34 {
|
||||
margin-left: 101.25rpx;
|
||||
}
|
||||
.mt-54.data-v-8f30db34 {
|
||||
margin-top: 101.25rpx;
|
||||
}
|
||||
.ml-56.data-v-8f30db34 {
|
||||
margin-left: 105rpx;
|
||||
}
|
||||
.mt-56.data-v-8f30db34 {
|
||||
margin-top: 105rpx;
|
||||
}
|
||||
.ml-58.data-v-8f30db34 {
|
||||
margin-left: 108.75rpx;
|
||||
}
|
||||
.mt-58.data-v-8f30db34 {
|
||||
margin-top: 108.75rpx;
|
||||
}
|
||||
.ml-60.data-v-8f30db34 {
|
||||
margin-left: 112.5rpx;
|
||||
}
|
||||
.mt-60.data-v-8f30db34 {
|
||||
margin-top: 112.5rpx;
|
||||
}
|
||||
.ml-62.data-v-8f30db34 {
|
||||
margin-left: 116.25rpx;
|
||||
}
|
||||
.mt-62.data-v-8f30db34 {
|
||||
margin-top: 116.25rpx;
|
||||
}
|
||||
.ml-64.data-v-8f30db34 {
|
||||
margin-left: 120rpx;
|
||||
}
|
||||
.mt-64.data-v-8f30db34 {
|
||||
margin-top: 120rpx;
|
||||
}
|
||||
.ml-66.data-v-8f30db34 {
|
||||
margin-left: 123.75rpx;
|
||||
}
|
||||
.mt-66.data-v-8f30db34 {
|
||||
margin-top: 123.75rpx;
|
||||
}
|
||||
.ml-68.data-v-8f30db34 {
|
||||
margin-left: 127.5rpx;
|
||||
}
|
||||
.mt-68.data-v-8f30db34 {
|
||||
margin-top: 127.5rpx;
|
||||
}
|
||||
.ml-70.data-v-8f30db34 {
|
||||
margin-left: 131.25rpx;
|
||||
}
|
||||
.mt-70.data-v-8f30db34 {
|
||||
margin-top: 131.25rpx;
|
||||
}
|
||||
.ml-72.data-v-8f30db34 {
|
||||
margin-left: 135rpx;
|
||||
}
|
||||
.mt-72.data-v-8f30db34 {
|
||||
margin-top: 135rpx;
|
||||
}
|
||||
.ml-74.data-v-8f30db34 {
|
||||
margin-left: 138.75rpx;
|
||||
}
|
||||
.mt-74.data-v-8f30db34 {
|
||||
margin-top: 138.75rpx;
|
||||
}
|
||||
.ml-76.data-v-8f30db34 {
|
||||
margin-left: 142.5rpx;
|
||||
}
|
||||
.mt-76.data-v-8f30db34 {
|
||||
margin-top: 142.5rpx;
|
||||
}
|
||||
.ml-78.data-v-8f30db34 {
|
||||
margin-left: 146.25rpx;
|
||||
}
|
||||
.mt-78.data-v-8f30db34 {
|
||||
margin-top: 146.25rpx;
|
||||
}
|
||||
.ml-80.data-v-8f30db34 {
|
||||
margin-left: 150rpx;
|
||||
}
|
||||
.mt-80.data-v-8f30db34 {
|
||||
margin-top: 150rpx;
|
||||
}
|
||||
.ml-82.data-v-8f30db34 {
|
||||
margin-left: 153.75rpx;
|
||||
}
|
||||
.mt-82.data-v-8f30db34 {
|
||||
margin-top: 153.75rpx;
|
||||
}
|
||||
.ml-84.data-v-8f30db34 {
|
||||
margin-left: 157.5rpx;
|
||||
}
|
||||
.mt-84.data-v-8f30db34 {
|
||||
margin-top: 157.5rpx;
|
||||
}
|
||||
.ml-86.data-v-8f30db34 {
|
||||
margin-left: 161.25rpx;
|
||||
}
|
||||
.mt-86.data-v-8f30db34 {
|
||||
margin-top: 161.25rpx;
|
||||
}
|
||||
.ml-88.data-v-8f30db34 {
|
||||
margin-left: 165rpx;
|
||||
}
|
||||
.mt-88.data-v-8f30db34 {
|
||||
margin-top: 165rpx;
|
||||
}
|
||||
.ml-90.data-v-8f30db34 {
|
||||
margin-left: 168.75rpx;
|
||||
}
|
||||
.mt-90.data-v-8f30db34 {
|
||||
margin-top: 168.75rpx;
|
||||
}
|
||||
.ml-92.data-v-8f30db34 {
|
||||
margin-left: 172.5rpx;
|
||||
}
|
||||
.mt-92.data-v-8f30db34 {
|
||||
margin-top: 172.5rpx;
|
||||
}
|
||||
.ml-94.data-v-8f30db34 {
|
||||
margin-left: 176.25rpx;
|
||||
}
|
||||
.mt-94.data-v-8f30db34 {
|
||||
margin-top: 176.25rpx;
|
||||
}
|
||||
.ml-96.data-v-8f30db34 {
|
||||
margin-left: 180rpx;
|
||||
}
|
||||
.mt-96.data-v-8f30db34 {
|
||||
margin-top: 180rpx;
|
||||
}
|
||||
.ml-98.data-v-8f30db34 {
|
||||
margin-left: 183.75rpx;
|
||||
}
|
||||
.mt-98.data-v-8f30db34 {
|
||||
margin-top: 183.75rpx;
|
||||
}
|
||||
.ml-100.data-v-8f30db34 {
|
||||
margin-left: 187.5rpx;
|
||||
}
|
||||
.mt-100.data-v-8f30db34 {
|
||||
margin-top: 187.5rpx;
|
||||
}
|
||||
.mt-13.data-v-8f30db34 {
|
||||
margin-top: 24.38rpx;
|
||||
}
|
||||
.ml-5.data-v-8f30db34 {
|
||||
margin-left: 9.38rpx;
|
||||
}
|
||||
.page.data-v-8f30db34 {
|
||||
padding-bottom: 1185rpx;
|
||||
background-color: #f8e8c1;
|
||||
width: 100%;
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
height: 100%;
|
||||
}
|
||||
.section.data-v-8f30db34 {
|
||||
padding: 0 121.88rpx;
|
||||
background-color: #fffef8;
|
||||
}
|
||||
.group.data-v-8f30db34 {
|
||||
padding: 21.68rpx 4.71rpx 18.23rpx 10.22rpx;
|
||||
}
|
||||
.font.data-v-8f30db34 {
|
||||
font-size: 30rpx;
|
||||
font-family: Open Sans;
|
||||
line-height: 26.25rpx;
|
||||
color: #323232;
|
||||
}
|
||||
.text.data-v-8f30db34 {
|
||||
line-height: 27.6rpx;
|
||||
}
|
||||
.text_2.data-v-8f30db34 {
|
||||
line-height: 27.6rpx;
|
||||
}
|
||||
.section_2.data-v-8f30db34 {
|
||||
background-color: #fb8b05;
|
||||
width: 112.5rpx;
|
||||
height: 5.63rpx;
|
||||
}
|
||||
.section_3.data-v-8f30db34 {
|
||||
margin-left: 16.88rpx;
|
||||
margin-right: 15rpx;
|
||||
padding: 35.4rpx 19.89rpx 35.4rpx 24.38rpx;
|
||||
background-color: #fffef8;
|
||||
border-radius: 18.75rpx;
|
||||
}
|
||||
.font_2.data-v-8f30db34 {
|
||||
font-size: 26.25rpx;
|
||||
font-family: Open Sans;
|
||||
line-height: 26.25rpx;
|
||||
color: #323232;
|
||||
}
|
||||
.text_3.data-v-8f30db34 {
|
||||
color: #fb8b05;
|
||||
line-height: 24.15rpx;
|
||||
}
|
||||
.group_2.data-v-8f30db34 {
|
||||
margin-top: 18.49rpx;
|
||||
}
|
||||
.font_3.data-v-8f30db34 {
|
||||
font-size: 22.5rpx;
|
||||
font-family: Open Sans;
|
||||
color: #818181;
|
||||
}
|
||||
.text_4.data-v-8f30db34 {
|
||||
line-height: 20.85rpx;
|
||||
}
|
||||
.text_5.data-v-8f30db34 {
|
||||
line-height: 16.54rpx;
|
||||
}
|
||||
.group_3.data-v-8f30db34 {
|
||||
margin-top: 29.81rpx;
|
||||
}
|
||||
.image.data-v-8f30db34 {
|
||||
border-radius: 9.38rpx;
|
||||
width: 118.13rpx;
|
||||
height: 151.88rpx;
|
||||
}
|
||||
.group_4.data-v-8f30db34 {
|
||||
margin-left: 23.38rpx;
|
||||
margin-top: 2.19rpx;
|
||||
}
|
||||
.text_6.data-v-8f30db34 {
|
||||
line-height: 24.49rpx;
|
||||
}
|
||||
.pos.data-v-8f30db34 {
|
||||
position: absolute;
|
||||
left: 0.15rpx;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
}
|
||||
.text_7.data-v-8f30db34 {
|
||||
line-height: 24.43rpx;
|
||||
}
|
||||
.font_5.data-v-8f30db34 {
|
||||
font-size: 22.5rpx;
|
||||
font-family: Open Sans;
|
||||
line-height: 26.25rpx;
|
||||
color: #323232;
|
||||
}
|
||||
.text_10.data-v-8f30db34 {
|
||||
margin-top: 22.91rpx;
|
||||
}
|
||||
.text_1.data-v-8f30db34 {
|
||||
margin-top: 3.39rpx;
|
||||
}
|
||||
.text_11.data-v-8f30db34 {
|
||||
margin-top: 20.89rpx;
|
||||
color: #939393;
|
||||
font-size: 22.5rpx;
|
||||
font-family: Inter;
|
||||
line-height: 22.97rpx;
|
||||
}
|
||||
.group_5.data-v-8f30db34 {
|
||||
margin-left: 3.52rpx;
|
||||
margin-right: 14.59rpx;
|
||||
}
|
||||
.text_8.data-v-8f30db34 {
|
||||
margin-left: 25.03rpx;
|
||||
color: #323232;
|
||||
font-size: 33.75rpx;
|
||||
font-family: Open Sans;
|
||||
font-weight: 600;
|
||||
line-height: 24.88rpx;
|
||||
}
|
||||
.image_2.data-v-8f30db34 {
|
||||
width: 30rpx;
|
||||
height: 26.25rpx;
|
||||
}
|
||||
.image_3.data-v-8f30db34 {
|
||||
margin-left: -90.66rpx;
|
||||
}
|
||||
.font_4.data-v-8f30db34 {
|
||||
font-size: 26.25rpx;
|
||||
font-family: Open Sans;
|
||||
line-height: 19.29rpx;
|
||||
font-weight: 600;
|
||||
}
|
||||
.text_9.data-v-8f30db34 {
|
||||
margin-left: 61.14rpx;
|
||||
color: #323232;
|
||||
}
|
||||
.group_6.data-v-8f30db34 {
|
||||
margin-top: 26.68rpx;
|
||||
padding: 0 9.54rpx;
|
||||
}
|
||||
.text_12.data-v-8f30db34 {
|
||||
margin-right: -8.06rpx;
|
||||
line-height: 24.23rpx;
|
||||
}
|
||||
.group_7.data-v-8f30db34 {
|
||||
line-height: 21.99rpx;
|
||||
height: 22.05rpx;
|
||||
}
|
||||
.text_13.data-v-8f30db34 {
|
||||
color: #fb8b05;
|
||||
font-size: 30rpx;
|
||||
font-family: Open Sans;
|
||||
font-weight: 600;
|
||||
line-height: 21.99rpx;
|
||||
}
|
||||
.text_14.data-v-8f30db34 {
|
||||
color: #fb8b05;
|
||||
line-height: 19.39rpx;
|
||||
}
|
|
@ -1,23 +0,0 @@
|
|||
"use strict";
|
||||
const common_vendor = require("../../../common/vendor.js");
|
||||
const _sfc_main = {
|
||||
__name: "bookings",
|
||||
setup(__props) {
|
||||
const goto = () => {
|
||||
common_vendor.index.navigateTo({
|
||||
url: "/pages/mine/bookings/booking"
|
||||
});
|
||||
};
|
||||
const item = common_vendor.ref([null, null, null]);
|
||||
return (_ctx, _cache) => {
|
||||
return {
|
||||
a: common_vendor.o(($event) => goto()),
|
||||
b: common_vendor.f(item.value, (i, k0, i0) => {
|
||||
return {};
|
||||
})
|
||||
};
|
||||
};
|
||||
}
|
||||
};
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-ba0a1264"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/mine/bookings/bookings.vue"]]);
|
||||
wx.createPage(MiniProgramPage);
|
|
@ -1,4 +0,0 @@
|
|||
{
|
||||
"navigationBarTitleText": "",
|
||||
"usingComponents": {}
|
||||
}
|
|
@ -1 +0,0 @@
|
|||
<view class="flex-col page data-v-ba0a1264"><view class="flex-col section data-v-ba0a1264"><view class="flex-row justify-between self-stretch group data-v-ba0a1264"><text class="font text data-v-ba0a1264" bindtap="{{a}}">待消费</text><text class="font text_2 data-v-ba0a1264">已消费</text></view><view class="self-end section_2 data-v-ba0a1264"></view></view><view wx:for="{{b}}" wx:for-item="i" class="flex-col section_3 mt-16 data-v-ba0a1264"><text class="self-end font_2 text_3 data-v-ba0a1264">已消费</text><view class="flex-row items-baseline self-stretch group_2 data-v-ba0a1264"><text class="font_3 text_4 data-v-ba0a1264">订单编号:</text><text class="font_3 text_5 ml-5 data-v-ba0a1264">E20241005095840091406189</text></view><view class="flex-row self-stretch group_3 data-v-ba0a1264"><image class="shrink-0 image data-v-ba0a1264" src="https://ide.code.fun/api/image?token=6736eddfc471750012df05d6&name=bc0e955304da0a2ccafe3a66ac1f3aca.png"/><view class="flex-col flex-1 group_4 data-v-ba0a1264"><view class="flex-row justify-center self-stretch relative data-v-ba0a1264"><text class="font_2 text_6 pos data-v-ba0a1264">整套约拍</text><text class="font_2 text_7 data-v-ba0a1264">【时尚精选】</text></view><text class="self-start font_5 text_10 data-v-ba0a1264">到店日期:2024-10-15</text><text class="self-start font_5 text_1 data-v-ba0a1264">具体场次:上午场(09:30-12:00)</text><text class="self-stretch text_11 data-v-ba0a1264">已选服务:妆发服务;摄影服务;室内;</text></view><view class="flex-row items-center shrink-0 self-start group_5 data-v-ba0a1264"><text class="text_8 data-v-ba0a1264">138.</text><image class="shrink-0 image_2 image_3 data-v-ba0a1264" src="https://ide.code.fun/api/image?token=6736eddfc471750012df05d6&name=6c5700b3ac5fd83a23d838cb456bdd10.png"/><text class="font_4 text_9 data-v-ba0a1264">00</text></view></view><view class="flex-row justify-end items-center self-stretch group_6 data-v-ba0a1264"><text class="font_2 text_12 data-v-ba0a1264">已付款:</text><image class="image_2 data-v-ba0a1264" src="https://ide.code.fun/api/image?token=6736eddfc471750012df05d6&name=ea05ec17023763edb8cfe919508e0459.png"/><view class="group_7 data-v-ba0a1264"><text class="text_13 data-v-ba0a1264">88</text><text class="font_4 text_14 data-v-ba0a1264">.00</text></view></view><view class="flex-col justify-start items-center self-end text-wrapper data-v-ba0a1264"><text class="font_2 text_15 data-v-ba0a1264">删除记录</text></view></view></view>
|
|
@ -1,577 +0,0 @@
|
|||
/* 水平间距 */
|
||||
/* 水平间距 */
|
||||
/************************************************************
|
||||
** 请将全局样式拷贝到项目的全局 CSS 文件或者当前页面的顶部 **
|
||||
** 否则页面将无法正常显示 **
|
||||
************************************************************/
|
||||
html.data-v-ba0a1264 {
|
||||
font-size: 16px;
|
||||
}
|
||||
body.data-v-ba0a1264 {
|
||||
margin: 0;
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans',
|
||||
'Droid Sans', 'Helvetica Neue', 'Microsoft Yahei', sans-serif;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
view.data-v-ba0a1264,
|
||||
image.data-v-ba0a1264,
|
||||
text.data-v-ba0a1264 {
|
||||
box-sizing: border-box;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
#app.data-v-ba0a1264 {
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
}
|
||||
.flex-row.data-v-ba0a1264 {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
}
|
||||
.flex-col.data-v-ba0a1264 {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.justify-start.data-v-ba0a1264 {
|
||||
justify-content: flex-start;
|
||||
}
|
||||
.justify-end.data-v-ba0a1264 {
|
||||
justify-content: flex-end;
|
||||
}
|
||||
.justify-center.data-v-ba0a1264 {
|
||||
justify-content: center;
|
||||
}
|
||||
.justify-between.data-v-ba0a1264 {
|
||||
justify-content: space-between;
|
||||
}
|
||||
.justify-around.data-v-ba0a1264 {
|
||||
justify-content: space-around;
|
||||
}
|
||||
.justify-evenly.data-v-ba0a1264 {
|
||||
justify-content: space-evenly;
|
||||
}
|
||||
.items-start.data-v-ba0a1264 {
|
||||
align-items: flex-start;
|
||||
}
|
||||
.items-end.data-v-ba0a1264 {
|
||||
align-items: flex-end;
|
||||
}
|
||||
.items-center.data-v-ba0a1264 {
|
||||
align-items: center;
|
||||
}
|
||||
.items-baseline.data-v-ba0a1264 {
|
||||
align-items: baseline;
|
||||
}
|
||||
.items-stretch.data-v-ba0a1264 {
|
||||
align-items: stretch;
|
||||
}
|
||||
.self-start.data-v-ba0a1264 {
|
||||
align-self: flex-start;
|
||||
}
|
||||
.self-end.data-v-ba0a1264 {
|
||||
align-self: flex-end;
|
||||
}
|
||||
.self-center.data-v-ba0a1264 {
|
||||
align-self: center;
|
||||
}
|
||||
.self-baseline.data-v-ba0a1264 {
|
||||
align-self: baseline;
|
||||
}
|
||||
.self-stretch.data-v-ba0a1264 {
|
||||
align-self: stretch;
|
||||
}
|
||||
.flex-1.data-v-ba0a1264 {
|
||||
flex: 1 1 0%;
|
||||
}
|
||||
.flex-auto.data-v-ba0a1264 {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.grow.data-v-ba0a1264 {
|
||||
flex-grow: 1;
|
||||
}
|
||||
.grow-0.data-v-ba0a1264 {
|
||||
flex-grow: 0;
|
||||
}
|
||||
.shrink.data-v-ba0a1264 {
|
||||
flex-shrink: 1;
|
||||
}
|
||||
.shrink-0.data-v-ba0a1264 {
|
||||
flex-shrink: 0;
|
||||
}
|
||||
.relative.data-v-ba0a1264 {
|
||||
position: relative;
|
||||
}
|
||||
.ml-2.data-v-ba0a1264 {
|
||||
margin-left: 3.75rpx;
|
||||
}
|
||||
.mt-2.data-v-ba0a1264 {
|
||||
margin-top: 3.75rpx;
|
||||
}
|
||||
.ml-4.data-v-ba0a1264 {
|
||||
margin-left: 7.5rpx;
|
||||
}
|
||||
.mt-4.data-v-ba0a1264 {
|
||||
margin-top: 7.5rpx;
|
||||
}
|
||||
.ml-6.data-v-ba0a1264 {
|
||||
margin-left: 11.25rpx;
|
||||
}
|
||||
.mt-6.data-v-ba0a1264 {
|
||||
margin-top: 11.25rpx;
|
||||
}
|
||||
.ml-8.data-v-ba0a1264 {
|
||||
margin-left: 15rpx;
|
||||
}
|
||||
.mt-8.data-v-ba0a1264 {
|
||||
margin-top: 15rpx;
|
||||
}
|
||||
.ml-10.data-v-ba0a1264 {
|
||||
margin-left: 18.75rpx;
|
||||
}
|
||||
.mt-10.data-v-ba0a1264 {
|
||||
margin-top: 18.75rpx;
|
||||
}
|
||||
.ml-12.data-v-ba0a1264 {
|
||||
margin-left: 22.5rpx;
|
||||
}
|
||||
.mt-12.data-v-ba0a1264 {
|
||||
margin-top: 22.5rpx;
|
||||
}
|
||||
.ml-14.data-v-ba0a1264 {
|
||||
margin-left: 26.25rpx;
|
||||
}
|
||||
.mt-14.data-v-ba0a1264 {
|
||||
margin-top: 26.25rpx;
|
||||
}
|
||||
.ml-16.data-v-ba0a1264 {
|
||||
margin-left: 30rpx;
|
||||
}
|
||||
.mt-16.data-v-ba0a1264 {
|
||||
margin-top: 30rpx;
|
||||
}
|
||||
.ml-18.data-v-ba0a1264 {
|
||||
margin-left: 33.75rpx;
|
||||
}
|
||||
.mt-18.data-v-ba0a1264 {
|
||||
margin-top: 33.75rpx;
|
||||
}
|
||||
.ml-20.data-v-ba0a1264 {
|
||||
margin-left: 37.5rpx;
|
||||
}
|
||||
.mt-20.data-v-ba0a1264 {
|
||||
margin-top: 37.5rpx;
|
||||
}
|
||||
.ml-22.data-v-ba0a1264 {
|
||||
margin-left: 41.25rpx;
|
||||
}
|
||||
.mt-22.data-v-ba0a1264 {
|
||||
margin-top: 41.25rpx;
|
||||
}
|
||||
.ml-24.data-v-ba0a1264 {
|
||||
margin-left: 45rpx;
|
||||
}
|
||||
.mt-24.data-v-ba0a1264 {
|
||||
margin-top: 45rpx;
|
||||
}
|
||||
.ml-26.data-v-ba0a1264 {
|
||||
margin-left: 48.75rpx;
|
||||
}
|
||||
.mt-26.data-v-ba0a1264 {
|
||||
margin-top: 48.75rpx;
|
||||
}
|
||||
.ml-28.data-v-ba0a1264 {
|
||||
margin-left: 52.5rpx;
|
||||
}
|
||||
.mt-28.data-v-ba0a1264 {
|
||||
margin-top: 52.5rpx;
|
||||
}
|
||||
.ml-30.data-v-ba0a1264 {
|
||||
margin-left: 56.25rpx;
|
||||
}
|
||||
.mt-30.data-v-ba0a1264 {
|
||||
margin-top: 56.25rpx;
|
||||
}
|
||||
.ml-32.data-v-ba0a1264 {
|
||||
margin-left: 60rpx;
|
||||
}
|
||||
.mt-32.data-v-ba0a1264 {
|
||||
margin-top: 60rpx;
|
||||
}
|
||||
.ml-34.data-v-ba0a1264 {
|
||||
margin-left: 63.75rpx;
|
||||
}
|
||||
.mt-34.data-v-ba0a1264 {
|
||||
margin-top: 63.75rpx;
|
||||
}
|
||||
.ml-36.data-v-ba0a1264 {
|
||||
margin-left: 67.5rpx;
|
||||
}
|
||||
.mt-36.data-v-ba0a1264 {
|
||||
margin-top: 67.5rpx;
|
||||
}
|
||||
.ml-38.data-v-ba0a1264 {
|
||||
margin-left: 71.25rpx;
|
||||
}
|
||||
.mt-38.data-v-ba0a1264 {
|
||||
margin-top: 71.25rpx;
|
||||
}
|
||||
.ml-40.data-v-ba0a1264 {
|
||||
margin-left: 75rpx;
|
||||
}
|
||||
.mt-40.data-v-ba0a1264 {
|
||||
margin-top: 75rpx;
|
||||
}
|
||||
.ml-42.data-v-ba0a1264 {
|
||||
margin-left: 78.75rpx;
|
||||
}
|
||||
.mt-42.data-v-ba0a1264 {
|
||||
margin-top: 78.75rpx;
|
||||
}
|
||||
.ml-44.data-v-ba0a1264 {
|
||||
margin-left: 82.5rpx;
|
||||
}
|
||||
.mt-44.data-v-ba0a1264 {
|
||||
margin-top: 82.5rpx;
|
||||
}
|
||||
.ml-46.data-v-ba0a1264 {
|
||||
margin-left: 86.25rpx;
|
||||
}
|
||||
.mt-46.data-v-ba0a1264 {
|
||||
margin-top: 86.25rpx;
|
||||
}
|
||||
.ml-48.data-v-ba0a1264 {
|
||||
margin-left: 90rpx;
|
||||
}
|
||||
.mt-48.data-v-ba0a1264 {
|
||||
margin-top: 90rpx;
|
||||
}
|
||||
.ml-50.data-v-ba0a1264 {
|
||||
margin-left: 93.75rpx;
|
||||
}
|
||||
.mt-50.data-v-ba0a1264 {
|
||||
margin-top: 93.75rpx;
|
||||
}
|
||||
.ml-52.data-v-ba0a1264 {
|
||||
margin-left: 97.5rpx;
|
||||
}
|
||||
.mt-52.data-v-ba0a1264 {
|
||||
margin-top: 97.5rpx;
|
||||
}
|
||||
.ml-54.data-v-ba0a1264 {
|
||||
margin-left: 101.25rpx;
|
||||
}
|
||||
.mt-54.data-v-ba0a1264 {
|
||||
margin-top: 101.25rpx;
|
||||
}
|
||||
.ml-56.data-v-ba0a1264 {
|
||||
margin-left: 105rpx;
|
||||
}
|
||||
.mt-56.data-v-ba0a1264 {
|
||||
margin-top: 105rpx;
|
||||
}
|
||||
.ml-58.data-v-ba0a1264 {
|
||||
margin-left: 108.75rpx;
|
||||
}
|
||||
.mt-58.data-v-ba0a1264 {
|
||||
margin-top: 108.75rpx;
|
||||
}
|
||||
.ml-60.data-v-ba0a1264 {
|
||||
margin-left: 112.5rpx;
|
||||
}
|
||||
.mt-60.data-v-ba0a1264 {
|
||||
margin-top: 112.5rpx;
|
||||
}
|
||||
.ml-62.data-v-ba0a1264 {
|
||||
margin-left: 116.25rpx;
|
||||
}
|
||||
.mt-62.data-v-ba0a1264 {
|
||||
margin-top: 116.25rpx;
|
||||
}
|
||||
.ml-64.data-v-ba0a1264 {
|
||||
margin-left: 120rpx;
|
||||
}
|
||||
.mt-64.data-v-ba0a1264 {
|
||||
margin-top: 120rpx;
|
||||
}
|
||||
.ml-66.data-v-ba0a1264 {
|
||||
margin-left: 123.75rpx;
|
||||
}
|
||||
.mt-66.data-v-ba0a1264 {
|
||||
margin-top: 123.75rpx;
|
||||
}
|
||||
.ml-68.data-v-ba0a1264 {
|
||||
margin-left: 127.5rpx;
|
||||
}
|
||||
.mt-68.data-v-ba0a1264 {
|
||||
margin-top: 127.5rpx;
|
||||
}
|
||||
.ml-70.data-v-ba0a1264 {
|
||||
margin-left: 131.25rpx;
|
||||
}
|
||||
.mt-70.data-v-ba0a1264 {
|
||||
margin-top: 131.25rpx;
|
||||
}
|
||||
.ml-72.data-v-ba0a1264 {
|
||||
margin-left: 135rpx;
|
||||
}
|
||||
.mt-72.data-v-ba0a1264 {
|
||||
margin-top: 135rpx;
|
||||
}
|
||||
.ml-74.data-v-ba0a1264 {
|
||||
margin-left: 138.75rpx;
|
||||
}
|
||||
.mt-74.data-v-ba0a1264 {
|
||||
margin-top: 138.75rpx;
|
||||
}
|
||||
.ml-76.data-v-ba0a1264 {
|
||||
margin-left: 142.5rpx;
|
||||
}
|
||||
.mt-76.data-v-ba0a1264 {
|
||||
margin-top: 142.5rpx;
|
||||
}
|
||||
.ml-78.data-v-ba0a1264 {
|
||||
margin-left: 146.25rpx;
|
||||
}
|
||||
.mt-78.data-v-ba0a1264 {
|
||||
margin-top: 146.25rpx;
|
||||
}
|
||||
.ml-80.data-v-ba0a1264 {
|
||||
margin-left: 150rpx;
|
||||
}
|
||||
.mt-80.data-v-ba0a1264 {
|
||||
margin-top: 150rpx;
|
||||
}
|
||||
.ml-82.data-v-ba0a1264 {
|
||||
margin-left: 153.75rpx;
|
||||
}
|
||||
.mt-82.data-v-ba0a1264 {
|
||||
margin-top: 153.75rpx;
|
||||
}
|
||||
.ml-84.data-v-ba0a1264 {
|
||||
margin-left: 157.5rpx;
|
||||
}
|
||||
.mt-84.data-v-ba0a1264 {
|
||||
margin-top: 157.5rpx;
|
||||
}
|
||||
.ml-86.data-v-ba0a1264 {
|
||||
margin-left: 161.25rpx;
|
||||
}
|
||||
.mt-86.data-v-ba0a1264 {
|
||||
margin-top: 161.25rpx;
|
||||
}
|
||||
.ml-88.data-v-ba0a1264 {
|
||||
margin-left: 165rpx;
|
||||
}
|
||||
.mt-88.data-v-ba0a1264 {
|
||||
margin-top: 165rpx;
|
||||
}
|
||||
.ml-90.data-v-ba0a1264 {
|
||||
margin-left: 168.75rpx;
|
||||
}
|
||||
.mt-90.data-v-ba0a1264 {
|
||||
margin-top: 168.75rpx;
|
||||
}
|
||||
.ml-92.data-v-ba0a1264 {
|
||||
margin-left: 172.5rpx;
|
||||
}
|
||||
.mt-92.data-v-ba0a1264 {
|
||||
margin-top: 172.5rpx;
|
||||
}
|
||||
.ml-94.data-v-ba0a1264 {
|
||||
margin-left: 176.25rpx;
|
||||
}
|
||||
.mt-94.data-v-ba0a1264 {
|
||||
margin-top: 176.25rpx;
|
||||
}
|
||||
.ml-96.data-v-ba0a1264 {
|
||||
margin-left: 180rpx;
|
||||
}
|
||||
.mt-96.data-v-ba0a1264 {
|
||||
margin-top: 180rpx;
|
||||
}
|
||||
.ml-98.data-v-ba0a1264 {
|
||||
margin-left: 183.75rpx;
|
||||
}
|
||||
.mt-98.data-v-ba0a1264 {
|
||||
margin-top: 183.75rpx;
|
||||
}
|
||||
.ml-100.data-v-ba0a1264 {
|
||||
margin-left: 187.5rpx;
|
||||
}
|
||||
.mt-100.data-v-ba0a1264 {
|
||||
margin-top: 187.5rpx;
|
||||
}
|
||||
.ml-5.data-v-ba0a1264 {
|
||||
margin-left: 9.38rpx;
|
||||
}
|
||||
.page.data-v-ba0a1264 {
|
||||
padding-bottom: 1085.63rpx;
|
||||
background-color: #f8e8c1;
|
||||
width: 100%;
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
height: 100%;
|
||||
}
|
||||
.section.data-v-ba0a1264 {
|
||||
padding-left: 132.09rpx;
|
||||
padding-right: 116.25rpx;
|
||||
background-color: #fffef8;
|
||||
}
|
||||
.group.data-v-ba0a1264 {
|
||||
padding: 21.68rpx 0 19.16rpx;
|
||||
}
|
||||
.font.data-v-ba0a1264 {
|
||||
font-size: 30rpx;
|
||||
font-family: Open Sans;
|
||||
line-height: 26.25rpx;
|
||||
color: #323232;
|
||||
}
|
||||
.text.data-v-ba0a1264 {
|
||||
line-height: 27.6rpx;
|
||||
}
|
||||
.text_2.data-v-ba0a1264 {
|
||||
margin-right: 10.33rpx;
|
||||
line-height: 27.6rpx;
|
||||
}
|
||||
.section_2.data-v-ba0a1264 {
|
||||
background-color: #fb8b05;
|
||||
width: 112.5rpx;
|
||||
height: 5.63rpx;
|
||||
}
|
||||
.section_3.data-v-ba0a1264 {
|
||||
margin-left: 16.88rpx;
|
||||
margin-right: 15rpx;
|
||||
padding: 30rpx 20.06rpx 30rpx 24.38rpx;
|
||||
background-color: #fffef8;
|
||||
border-radius: 18.75rpx;
|
||||
}
|
||||
.font_2.data-v-ba0a1264 {
|
||||
font-size: 26.25rpx;
|
||||
font-family: Open Sans;
|
||||
line-height: 26.25rpx;
|
||||
color: #323232;
|
||||
}
|
||||
.text_3.data-v-ba0a1264 {
|
||||
color: #fb8b05;
|
||||
line-height: 24.15rpx;
|
||||
}
|
||||
.group_2.data-v-ba0a1264 {
|
||||
margin-top: 18.49rpx;
|
||||
}
|
||||
.font_3.data-v-ba0a1264 {
|
||||
font-size: 22.5rpx;
|
||||
font-family: Open Sans;
|
||||
color: #818181;
|
||||
}
|
||||
.text_4.data-v-ba0a1264 {
|
||||
line-height: 20.85rpx;
|
||||
}
|
||||
.text_5.data-v-ba0a1264 {
|
||||
line-height: 16.54rpx;
|
||||
}
|
||||
.group_3.data-v-ba0a1264 {
|
||||
margin-top: 29.81rpx;
|
||||
}
|
||||
.image.data-v-ba0a1264 {
|
||||
border-radius: 9.38rpx;
|
||||
width: 118.13rpx;
|
||||
height: 151.88rpx;
|
||||
}
|
||||
.group_4.data-v-ba0a1264 {
|
||||
margin: 2.19rpx 0 5.38rpx 23.38rpx;
|
||||
}
|
||||
.text_6.data-v-ba0a1264 {
|
||||
line-height: 24.49rpx;
|
||||
}
|
||||
.pos.data-v-ba0a1264 {
|
||||
position: absolute;
|
||||
left: 0.15rpx;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
}
|
||||
.text_7.data-v-ba0a1264 {
|
||||
line-height: 24.43rpx;
|
||||
}
|
||||
.font_5.data-v-ba0a1264 {
|
||||
font-size: 22.5rpx;
|
||||
font-family: Open Sans;
|
||||
line-height: 26.25rpx;
|
||||
color: #323232;
|
||||
}
|
||||
.text_10.data-v-ba0a1264 {
|
||||
margin-top: 21.04rpx;
|
||||
}
|
||||
.text_1.data-v-ba0a1264 {
|
||||
margin-top: 3.39rpx;
|
||||
}
|
||||
.text_11.data-v-ba0a1264 {
|
||||
margin-top: 19.01rpx;
|
||||
color: #939393;
|
||||
font-size: 22.5rpx;
|
||||
font-family: Inter;
|
||||
line-height: 22.97rpx;
|
||||
}
|
||||
.group_5.data-v-ba0a1264 {
|
||||
margin-left: 3.52rpx;
|
||||
margin-right: 14.42rpx;
|
||||
}
|
||||
.text_8.data-v-ba0a1264 {
|
||||
margin-left: 25.03rpx;
|
||||
color: #323232;
|
||||
font-size: 33.75rpx;
|
||||
font-family: Open Sans;
|
||||
font-weight: 600;
|
||||
line-height: 24.88rpx;
|
||||
}
|
||||
.image_2.data-v-ba0a1264 {
|
||||
width: 30rpx;
|
||||
height: 26.25rpx;
|
||||
}
|
||||
.image_3.data-v-ba0a1264 {
|
||||
margin-left: -90.66rpx;
|
||||
}
|
||||
.font_4.data-v-ba0a1264 {
|
||||
font-size: 26.25rpx;
|
||||
font-family: Open Sans;
|
||||
line-height: 19.29rpx;
|
||||
font-weight: 600;
|
||||
}
|
||||
.text_9.data-v-ba0a1264 {
|
||||
margin-left: 61.14rpx;
|
||||
color: #323232;
|
||||
}
|
||||
.group_6.data-v-ba0a1264 {
|
||||
margin-top: 37.93rpx;
|
||||
padding: 0 9.38rpx;
|
||||
}
|
||||
.text_12.data-v-ba0a1264 {
|
||||
margin-right: -8.06rpx;
|
||||
line-height: 24.23rpx;
|
||||
}
|
||||
.group_7.data-v-ba0a1264 {
|
||||
line-height: 21.99rpx;
|
||||
height: 22.05rpx;
|
||||
}
|
||||
.text_13.data-v-ba0a1264 {
|
||||
color: #fb8b05;
|
||||
font-size: 30rpx;
|
||||
font-family: Open Sans;
|
||||
font-weight: 600;
|
||||
line-height: 21.99rpx;
|
||||
}
|
||||
.text_14.data-v-ba0a1264 {
|
||||
color: #fb8b05;
|
||||
line-height: 19.39rpx;
|
||||
}
|
||||
.text-wrapper.data-v-ba0a1264 {
|
||||
margin-right: 2.44rpx;
|
||||
margin-top: 35.4rpx;
|
||||
padding: 13.54rpx 0 14.83rpx;
|
||||
background-color: #fffef8;
|
||||
border-radius: 75rpx;
|
||||
width: 155.63rpx;
|
||||
border: solid 1.88rpx #cbcbcb;
|
||||
}
|
||||
.text_15.data-v-ba0a1264 {
|
||||
line-height: 24.13rpx;
|
||||
}
|
|
@ -42,5 +42,5 @@ const _sfc_main = {
|
|||
};
|
||||
}
|
||||
};
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-8172b2ba"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/mine/main/main.vue"]]);
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-8172b2ba"]]);
|
||||
wx.createPage(MiniProgramPage);
|
||||
|
|
|
@ -65,19 +65,19 @@ const _sfc_main = {
|
|||
};
|
||||
return (_ctx, _cache) => {
|
||||
return {
|
||||
a: _ctx.orderStatus === "全部" ? 1 : "",
|
||||
a: "",
|
||||
b: isSelected("全") ? 1 : "",
|
||||
c: common_vendor.o(($event) => changeTab("全部")),
|
||||
d: _ctx.orderStatus === "待支付" ? 1 : "",
|
||||
d: "",
|
||||
e: isSelected("待支付") ? 1 : "",
|
||||
f: common_vendor.o(($event) => changeTab("待支付")),
|
||||
g: _ctx.orderStatus === "待发货" ? 1 : "",
|
||||
g: "",
|
||||
h: isSelected("待发货") ? 1 : "",
|
||||
i: common_vendor.o(($event) => changeTab("待发货")),
|
||||
j: _ctx.orderStatus === "已发货" ? 1 : "",
|
||||
j: "",
|
||||
k: isSelected("已发货") ? 1 : "",
|
||||
l: common_vendor.o(($event) => changeTab("已发货")),
|
||||
m: _ctx.orderStatus === "售后" ? 1 : "",
|
||||
m: "",
|
||||
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"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/mine/mineorders/mineorders.vue"]]);
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-7d0f2622"]]);
|
||||
wx.createPage(MiniProgramPage);
|
||||
|
|
|
@ -76,5 +76,5 @@ const _sfc_main = {
|
|||
};
|
||||
}
|
||||
};
|
||||
const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-c20b9e4d"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/order/component/addressComponent.vue"]]);
|
||||
const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-c20b9e4d"]]);
|
||||
wx.createComponent(Component);
|
||||
|
|
|
@ -55,5 +55,5 @@ const _sfc_main = {
|
|||
};
|
||||
}
|
||||
};
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-0b647166"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/order/paysuccess/paysuccess.vue"]]);
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-0b647166"]]);
|
||||
wx.createPage(MiniProgramPage);
|
||||
|
|
|
@ -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"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/order/product-unpay/product-unpay.vue"]]);
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-8a444854"]]);
|
||||
wx.createPage(MiniProgramPage);
|
||||
|
|
|
@ -180,5 +180,5 @@ const _sfc_main = {
|
|||
};
|
||||
}
|
||||
};
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-eda1e8f0"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/order/product-waitpay/product-waitpay.vue"]]);
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-eda1e8f0"]]);
|
||||
wx.createPage(MiniProgramPage);
|
||||
|
|
|
@ -14,5 +14,5 @@ const _sfc_main = {
|
|||
};
|
||||
}
|
||||
};
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-f0df60ad"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/order/productOrderDetail/productOrderDetail.vue"]]);
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-f0df60ad"]]);
|
||||
wx.createPage(MiniProgramPage);
|
||||
|
|
|
@ -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"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/service/productDetail/productDetail.vue"]]);
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-4d02f7b2"]]);
|
||||
wx.createPage(MiniProgramPage);
|
||||
|
|
|
@ -83,5 +83,5 @@ const _sfc_main = {
|
|||
};
|
||||
}
|
||||
};
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-3361b524"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/store-home/ProductDetails/ProductDetails.vue"]]);
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-3361b524"]]);
|
||||
wx.createPage(MiniProgramPage);
|
||||
|
|
|
@ -104,5 +104,5 @@ const _sfc_main = {
|
|||
};
|
||||
}
|
||||
};
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-7e3c386d"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/store-home/main/main.vue"]]);
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-7e3c386d"]]);
|
||||
wx.createPage(MiniProgramPage);
|
||||
|
|
|
@ -1,21 +1,43 @@
|
|||
"use strict";
|
||||
const common_vendor = require("../../../common/vendor.js");
|
||||
const api_request = require("../../../api/request.js");
|
||||
const _sfc_main = {
|
||||
__name: "index",
|
||||
setup(__props) {
|
||||
const items = common_vendor.ref([null, null]);
|
||||
const products = common_vendor.ref();
|
||||
const cookie = common_vendor.wx$1.getStorageSync("cookie");
|
||||
common_vendor.ref([null, null]);
|
||||
common_vendor.onMounted(() => {
|
||||
getProducts();
|
||||
});
|
||||
const getProducts = async () => {
|
||||
const res = await common_vendor.index.request({
|
||||
url: api_request.baseUrl + "/goods/service/list/card",
|
||||
method: "GET",
|
||||
header: {
|
||||
cookie
|
||||
}
|
||||
});
|
||||
console.log(res.data.data);
|
||||
if (res.data.code === 1) {
|
||||
products.value = res.data.data;
|
||||
}
|
||||
};
|
||||
const jump_detail = (index, item) => {
|
||||
console.log(index);
|
||||
common_vendor.index.navigateTo({
|
||||
url: "../../store-home/ProductDetails/ProductDetails?info=" + JSON.stringify(item)
|
||||
url: "../productmain/productmain?info=" + +JSON.stringify(item)
|
||||
});
|
||||
};
|
||||
return (_ctx, _cache) => {
|
||||
return {
|
||||
a: common_vendor.f(items.value, (item, index, i0) => {
|
||||
a: common_vendor.f(products.value, (item, index, i0) => {
|
||||
return {
|
||||
a: index,
|
||||
b: common_vendor.o(($event) => jump_detail(index, item), index)
|
||||
a: item.goodImg,
|
||||
b: common_vendor.t(item.name),
|
||||
c: common_vendor.t(item.price),
|
||||
d: index,
|
||||
e: common_vendor.o(($event) => jump_detail(item, index), index)
|
||||
};
|
||||
})
|
||||
};
|
||||
|
|
|
@ -1 +1 @@
|
|||
<view class="flex-col page data-v-6d033fba"><image class="image data-v-6d033fba" src="https://ide.code.fun/api/image?token=674e57d6797f850011f0b062&name=81b265c5869f092903cecdb6ba7eb11d.png"/><view class="flex-col justify-start items-center text-wrapper data-v-6d033fba"><text class="text data-v-6d033fba">最新活动</text></view><view class="flex-col justify-start section data-v-6d033fba"><view class="grid data-v-6d033fba"><view wx:for="{{a}}" wx:for-item="item" wx:key="a" class="flex-col grid-item_1 data-v-6d033fba" bindtap="{{item.b}}"><view class="flex-col data-v-6d033fba"><image class="image_1 data-v-6d033fba" src="https://ide.code.fun/api/image?token=674e57d6797f850011f0b062&name=59b2ee9b1885663ab247ad633a0c01f2.png"/><text class="font text_2 mt-4 data-v-6d033fba">【非遗手工艺体验】玉雕-古法制玉体验</text></view><view class="flex-row items-center group mt-10 data-v-6d033fba"><image class="image_3 data-v-6d033fba" src="https://ide.code.fun/api/image?token=674e57d6797f850011f0b062&name=rmb.png"/><text class="font_2 data-v-6d033fba">99.00</text></view></view></view></view></view>
|
||||
<view class="flex-col justify-start relative page data-v-6d033fba"><view class="section data-v-6d033fba"></view><view class="flex-col justify-start items-center section_2 pos data-v-6d033fba"><view class="flex-row section_3 data-v-6d033fba"><image class="image data-v-6d033fba" src="https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FqiUJHqkm-fangdajing.png"/><input class="text-wrapper ml-7 data-v-6d033fba" placeholder="搜索课程" placeholder-class="placeholderStyle"/></view></view><image class="image_2 pos_2 data-v-6d033fba" src="https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FaHtvfdev-test.png"/><view class="flex-col justify-start items-start pos_3 data-v-6d033fba"><view class="flexbox data-v-6d033fba"><view wx:for="{{a}}" wx:for-item="item" wx:key="d" class="flex-col grid-item data-v-6d033fba" bindtap="{{item.e}}"><view class="flex-col data-v-6d033fba"><image class="image_1 data-v-6d033fba" src="{{item.a}}"/><text class="font text_2 mt-1 data-v-6d033fba">{{item.b}}</text></view><view class="flex-row items-center group_2 mt-17 data-v-6d033fba"><image class="image_4 data-v-6d033fba" src="https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FTDckKcXA-rmb.png"/><text class="font_2 data-v-6d033fba">{{item.c}}</text></view></view></view></view></view>
|
|
@ -401,75 +401,108 @@ text.data-v-6d033fba {
|
|||
.mt-100.data-v-6d033fba {
|
||||
margin-top: 187.5rpx;
|
||||
}
|
||||
.mt-1.data-v-6d033fba {
|
||||
margin-top: 1.88rpx;
|
||||
}
|
||||
.mt-17.data-v-6d033fba {
|
||||
margin-top: 31.88rpx;
|
||||
}
|
||||
.page.data-v-6d033fba {
|
||||
padding-top: 37.5rpx;
|
||||
background-color: #f5f5dc;
|
||||
background-color: #ffffff;
|
||||
background-image: url("https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FJULGLADX-feiyigongfang.png");
|
||||
background-size: 100% 100%;
|
||||
background-repeat: no-repeat;
|
||||
width: 100%;
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
height: 100vh;
|
||||
}
|
||||
.image.data-v-6d033fba {
|
||||
margin: 0 30rpx;
|
||||
border-radius: 18.75rpx;
|
||||
width: 92vw;
|
||||
height: 61.25vw;
|
||||
}
|
||||
.text-wrapper.data-v-6d033fba {
|
||||
margin-top: 26.25rpx;
|
||||
padding: 27.41rpx 0 23.7rpx;
|
||||
background-color: #f7de98;
|
||||
}
|
||||
.text.data-v-6d033fba {
|
||||
color: #323232;
|
||||
font-size: 30rpx;
|
||||
font-family: Open Sans;
|
||||
line-height: 27.64rpx;
|
||||
height: 100%;
|
||||
}
|
||||
.section.data-v-6d033fba {
|
||||
padding: 54.38rpx 0 223.13rpx;
|
||||
background-color: #fff8dc;
|
||||
background-image: url("https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FJULGLADX-feiyigongfang.png");
|
||||
background-size: 100% 100%;
|
||||
background-repeat: no-repeat;
|
||||
width: 750rpx;
|
||||
height: 2096.25rpx;
|
||||
}
|
||||
.grid.data-v-6d033fba {
|
||||
margin-left: 28.13rpx;
|
||||
margin-right: 28.13rpx;
|
||||
height: 976.88rpx;
|
||||
display: grid;
|
||||
grid-template-rows: repeat(2, minmax(0, 1fr));
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
row-gap: 39.51rpx;
|
||||
column-gap: 28.26rpx;
|
||||
.section_2.data-v-6d033fba {
|
||||
padding: 15rpx 0;
|
||||
background-color: #ffffff;
|
||||
}
|
||||
.grid-item_1.data-v-6d033fba {
|
||||
.pos.data-v-6d033fba {
|
||||
position: fixed;
|
||||
left: 0;
|
||||
right: 0;
|
||||
top: 0;
|
||||
z-index: 1;
|
||||
}
|
||||
.section_3.data-v-6d033fba {
|
||||
padding: 0 15rpx;
|
||||
background-color: #f1e8e9;
|
||||
border-radius: 18.75rpx;
|
||||
width: 506.25rpx;
|
||||
}
|
||||
.image.data-v-6d033fba {
|
||||
width: 43.13rpx;
|
||||
height: 46.88rpx;
|
||||
}
|
||||
.font.data-v-6d033fba {
|
||||
font-size: 24.38rpx;
|
||||
font-family: FZSongKeBenXiuKaiS-R-GB;
|
||||
color: #000000;
|
||||
}
|
||||
.text.data-v-6d033fba {
|
||||
line-height: 23.04rpx;
|
||||
letter-spacing: 9.75rpx;
|
||||
}
|
||||
.image_2.data-v-6d033fba {
|
||||
width: 100vw;
|
||||
height: 62.5vw;
|
||||
}
|
||||
.pos_2.data-v-6d033fba {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
right: 0;
|
||||
top: 80.63rpx;
|
||||
}
|
||||
.pos_3.data-v-6d033fba {
|
||||
position: absolute;
|
||||
left: 30.75rpx;
|
||||
top: 577.5rpx;
|
||||
}
|
||||
.grid-item.data-v-6d033fba {
|
||||
padding-bottom: 30.23rpx;
|
||||
background-color: #ffffff;
|
||||
border-radius: 18.75rpx;
|
||||
width: 332.85rpx;
|
||||
margin: 0 26rpx 20rpx 0;
|
||||
}
|
||||
.image_1.data-v-6d033fba {
|
||||
border-radius: 18.75rpx 18.75rpx 0rpx 0rpx;
|
||||
width: 333.75rpx;
|
||||
height: 324.38rpx;
|
||||
}
|
||||
.font.data-v-6d033fba {
|
||||
font-size: 24.38rpx;
|
||||
font-family: Open Sans;
|
||||
line-height: 30rpx;
|
||||
color: #000000;
|
||||
}
|
||||
.text_2.data-v-6d033fba {
|
||||
margin-left: 14.04rpx;
|
||||
margin-right: 8.46rpx;
|
||||
margin-left: 15.56rpx;
|
||||
margin-right: 3.19rpx;
|
||||
line-height: 30rpx;
|
||||
}
|
||||
.group.data-v-6d033fba {
|
||||
padding: 0 24.38rpx;
|
||||
.group_2.data-v-6d033fba {
|
||||
padding: 0 24.3rpx;
|
||||
}
|
||||
.image_3.data-v-6d033fba {
|
||||
.image_4.data-v-6d033fba {
|
||||
width: 26.25rpx;
|
||||
height: 26.25rpx;
|
||||
}
|
||||
.font_2.data-v-6d033fba {
|
||||
color: #c35c5d;
|
||||
font-size: 30rpx;
|
||||
font-family: Times New Roman;
|
||||
line-height: 20.68rpx;
|
||||
color: #fbb612;
|
||||
}
|
||||
.flexbox.data-v-6d033fba {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
.placeholderStyle.data-v-6d033fba {
|
||||
color: #c35c5d;
|
||||
}
|
|
@ -8,7 +8,7 @@
|
|||
"urlCheck": false,
|
||||
"es6": true,
|
||||
"postcss": false,
|
||||
"minified": false,
|
||||
"minified": true,
|
||||
"newFeature": true,
|
||||
"bigPackageSizeSupport": true,
|
||||
"babelSetting": {
|
||||
|
@ -19,7 +19,7 @@
|
|||
},
|
||||
"compileType": "miniprogram",
|
||||
"libVersion": "3.7.0",
|
||||
"appid": "wx3f968a09e31d6bed",
|
||||
"appid": "wx61b63e27bddf4ea2",
|
||||
"projectname": "FeiYi",
|
||||
"condition": {
|
||||
"search": {
|
||||
|
|
|
@ -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], ["__file", "D:/jiangchengfeiyi-xiaochengxu/uni_modules/uni-popup/components/uni-popup/uni-popup.vue"]]);
|
||||
const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render]]);
|
||||
wx.createComponent(Component);
|
||||
|
|
|
@ -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], ["__file", "D:/jiangchengfeiyi-xiaochengxu/uni_modules/uni-transition/components/uni-transition/uni-transition.vue"]]);
|
||||
const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render]]);
|
||||
wx.createComponent(Component);
|
||||
|
|
Loading…
Reference in New Issue
Block a user