Compare commits
5 Commits
ea5855a3ca
...
4df55ee87a
Author | SHA1 | Date | |
---|---|---|---|
4df55ee87a | |||
9b581df06c | |||
a5becf53ac | |||
6382845f8b | |||
7d2f662690 |
|
@ -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
|
||||
},
|
||||
|
|
178
pages/workshop/index/index.vue
Normal file
178
pages/workshop/index/index.vue
Normal file
|
@ -0,0 +1,178 @@
|
|||
<template>
|
||||
<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: '../productmain/productmain?info=' + + JSON.stringify(item)
|
||||
})
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.mt-1 {
|
||||
margin-top: 1.88rpx;
|
||||
}
|
||||
.mt-17 {
|
||||
margin-top: 31.88rpx;
|
||||
}
|
||||
.page {
|
||||
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: 100%;
|
||||
}
|
||||
.section {
|
||||
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;
|
||||
}
|
||||
.section_2 {
|
||||
padding: 15rpx 0;
|
||||
background-color: #ffffff;
|
||||
}
|
||||
.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;
|
||||
}
|
||||
.text_2 {
|
||||
margin-left: 15.56rpx;
|
||||
margin-right: 3.19rpx;
|
||||
line-height: 30rpx;
|
||||
}
|
||||
.group_2 {
|
||||
padding: 0 24.3rpx;
|
||||
}
|
||||
.image_4 {
|
||||
width: 26.25rpx;
|
||||
height: 26.25rpx;
|
||||
}
|
||||
.font_2 {
|
||||
color: #c35c5d;
|
||||
font-size: 30rpx;
|
||||
font-family: Times New Roman;
|
||||
line-height: 20.68rpx;
|
||||
}
|
||||
.flexbox {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
.placeholderStyle {
|
||||
color: #c35c5d;
|
||||
}
|
||||
@import url(../../../common/css/global.css);
|
||||
</style>
|
271
pages/workshop/productmain/productmain.vue
Normal file
271
pages/workshop/productmain/productmain.vue
Normal file
|
@ -0,0 +1,271 @@
|
|||
<template>
|
||||
<view class="flex-col page">
|
||||
<view class="flex-col self-stretch section">
|
||||
<view class="flex-row items-center section_2">
|
||||
<image
|
||||
class="image_2"
|
||||
src="https://ide.code.fun/api/image?token=6753b6f64ae84d00121f2f30&name=75f234eb83cd7a5f71855f98a032e4ec.png"
|
||||
/>
|
||||
<text class="font text ml-13">玲泷水月阁</text>
|
||||
<image
|
||||
class="image ml-13"
|
||||
src="https://ide.code.fun/api/image?token=6753b6f64ae84d00121f2f30&name=3a5de3282a233625f0aeb36d18f12110.png"
|
||||
/>
|
||||
</view>
|
||||
<image
|
||||
class="image_3"
|
||||
src="https://ide.code.fun/api/image?token=6753b6f64ae84d00121f2f30&name=af8962eb86012862edbadd7512290883.png"
|
||||
/>
|
||||
<view class="flex-col list">
|
||||
<view class="flex-col section_3">
|
||||
<view class="self-start group">
|
||||
<text class="font_2 text_3">¥</text>
|
||||
<text class="text_2">299</text>
|
||||
</view>
|
||||
<view class="flex-col self-stretch mt-15">
|
||||
<text class="font text_4">【非遗手工艺体验】纸笺加工技艺-流沙笺团扇制作体验</text>
|
||||
<text class="font_2 text_5 mt-11">
|
||||
产品简介:纸笺加工技艺-流沙笺团扇制作体验,带您领略国家级非物质文化遗产的魅力。本活动让您亲手体验传统纸笺加工技艺,感受流沙笺团扇的制作过程,传承千年匠心精神。
|
||||
</text>
|
||||
</view>
|
||||
<view class="flex-row items-baseline self-stretch group_2 mt-15">
|
||||
<text class="font_3">最近可预约时间:2024.11.11</text>
|
||||
<text class="font_3 ml-1">9:30 - 10:30</text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="flex-col section_4 mt-6">
|
||||
<text class="self-start font text_6">用户须知</text>
|
||||
<text class="self-start font_2 text_7 text_1 mt-16">
|
||||
1.请根据预约时间,提前10-15分钟到达活动地点,以便顺利参与体验。
|
||||
</text>
|
||||
<text class="self-start font_2 text_8 mt-16">2.穿着轻便、易清洗的衣物,以防止材料染色。</text>
|
||||
<text class="self-stretch font_2 text_9 mt-16">
|
||||
3.如您在购买服务后,因个人原因需要取消服务或者变更服务的预约时间,请您务必联系我们的客服。
|
||||
</text>
|
||||
<text class="self-start font_2 text_7 mt-16">
|
||||
4.只要您在体验活动开始前取消购买,我们将为您提供全额退款服务。
|
||||
</text>
|
||||
<text class="self-stretch font_2 text_10 mt-16">
|
||||
5.如遇特殊情况,如突发疾病或其他不可抗力因素,请及时与客服沟通,我们将根据实际情况处理退款事宜。
|
||||
</text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="flex-row section_5">
|
||||
<view class="flex-col items-center shrink-0 self-start">
|
||||
<image
|
||||
class="image_4"
|
||||
src="https://ide.code.fun/api/image?token=6753b6f64ae84d00121f2f30&name=b51a8f2b2d8a67d51ce7365971207fdc.png"
|
||||
/>
|
||||
<text class="text_13 mt-3">客服</text>
|
||||
</view>
|
||||
<view class="flex-row flex-1 self-center ml-26">
|
||||
<view class="flex-col justify-start items-center text-wrapper">
|
||||
<text class="font_3 text_11">加入购物车</text>
|
||||
</view>
|
||||
<view class="flex-col justify-start items-center text-wrapper_2 ml-31">
|
||||
<text class="font text_12">立即预约</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<text class="self-start text_14">服务详情</text>
|
||||
<image
|
||||
class="self-stretch image_5"
|
||||
src="https://ide.code.fun/api/image?token=6753b6f64ae84d00121f2f30&name=15cfcb6dc1d8e692d8b51cd736373921.png"
|
||||
/>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
|
||||
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.ml-13 {
|
||||
margin-left: 24.38rpx;
|
||||
}
|
||||
.mt-11 {
|
||||
margin-top: 20.63rpx;
|
||||
}
|
||||
.mt-15 {
|
||||
margin-top: 28.13rpx;
|
||||
}
|
||||
.ml-1 {
|
||||
margin-left: 1.88rpx;
|
||||
}
|
||||
.mt-3 {
|
||||
margin-top: 5.63rpx;
|
||||
}
|
||||
.ml-31 {
|
||||
margin-left: 58.13rpx;
|
||||
}
|
||||
.page {
|
||||
background-color: #ffffff;
|
||||
width: 100%;
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
height: 100%;
|
||||
}
|
||||
.section {
|
||||
padding-bottom: 41.25rpx;
|
||||
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;
|
||||
}
|
||||
.section_2 {
|
||||
padding: 22.5rpx 22.5rpx 20.63rpx;
|
||||
background-color: #ffffff;
|
||||
}
|
||||
.image_2 {
|
||||
width: 33.75rpx;
|
||||
height: 35.63rpx;
|
||||
}
|
||||
.font {
|
||||
font-size: 30rpx;
|
||||
font-family: FZSongKeBenXiuKaiS-R-GB;
|
||||
line-height: 29.7rpx;
|
||||
}
|
||||
.text {
|
||||
color: #000000;
|
||||
line-height: 28.37rpx;
|
||||
}
|
||||
.image {
|
||||
border-radius: 50%;
|
||||
width: 46.88rpx;
|
||||
height: 46.88rpx;
|
||||
}
|
||||
.image_3 {
|
||||
margin-top: 15rpx;
|
||||
width: 100vw;
|
||||
height: 70vw;
|
||||
}
|
||||
.list {
|
||||
margin-top: 18.75rpx;
|
||||
}
|
||||
.section_3 {
|
||||
padding: 36.73rpx 17.1rpx 39.64rpx 17.12rpx;
|
||||
background-color: #ffffffcc;
|
||||
border-radius: 37.5rpx;
|
||||
}
|
||||
.group {
|
||||
margin-left: 12.04rpx;
|
||||
line-height: 29.7rpx;
|
||||
}
|
||||
.font_2 {
|
||||
font-size: 26.25rpx;
|
||||
font-family: FZSongKeBenXiuKaiS-R-GB;
|
||||
line-height: 31.88rpx;
|
||||
color: #323232;
|
||||
}
|
||||
.text_3 {
|
||||
color: #ff0000;
|
||||
line-height: 16.91rpx;
|
||||
}
|
||||
.text_2 {
|
||||
color: #ff0000;
|
||||
font-size: 45rpx;
|
||||
font-family: FZSongKeBenXiuKaiS-R-GB;
|
||||
line-height: 29.7rpx;
|
||||
}
|
||||
.text_4 {
|
||||
color: #323233;
|
||||
line-height: 35.63rpx;
|
||||
}
|
||||
.text_5 {
|
||||
margin-left: 5.79rpx;
|
||||
margin-right: 3.58rpx;
|
||||
}
|
||||
.group_2 {
|
||||
padding: 0 14.94rpx;
|
||||
}
|
||||
.font_3 {
|
||||
font-size: 26.25rpx;
|
||||
font-family: FZSongKeBenXiuKaiS-R-GB;
|
||||
line-height: 24.92rpx;
|
||||
color: #000000;
|
||||
}
|
||||
.section_4 {
|
||||
padding: 31.63rpx 18.04rpx 56.83rpx 26.76rpx;
|
||||
background-color: #ffffffcc;
|
||||
border-radius: 37.5rpx;
|
||||
}
|
||||
.text_6 {
|
||||
margin-left: 3.71rpx;
|
||||
color: #323232;
|
||||
line-height: 28.01rpx;
|
||||
text-decoration: underline;
|
||||
}
|
||||
.text_7 {
|
||||
width: 648.75rpx;
|
||||
}
|
||||
.text_1 {
|
||||
margin-left: 3.66rpx;
|
||||
}
|
||||
.text_8 {
|
||||
margin-left: 3.86rpx;
|
||||
line-height: 25.63rpx;
|
||||
}
|
||||
.text_9 {
|
||||
margin-left: 3.96rpx;
|
||||
}
|
||||
.text_10 {
|
||||
margin-left: 3.96rpx;
|
||||
margin-right: 3.77rpx;
|
||||
}
|
||||
.section_5 {
|
||||
position: fixed;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
margin-top: 31.88rpx;
|
||||
padding: 22.5rpx 33.75rpx 30.13rpx 39.38rpx;
|
||||
background-color: #ffffff;
|
||||
}
|
||||
.image_4 {
|
||||
width: 46.88rpx;
|
||||
height: 46.88rpx;
|
||||
}
|
||||
.text_13 {
|
||||
color: #9d2624;
|
||||
font-size: 22.5rpx;
|
||||
font-family: Open Sans;
|
||||
line-height: 20.72rpx;
|
||||
}
|
||||
.text-wrapper {
|
||||
padding: 29.1rpx 0 28.69rpx;
|
||||
flex: 1 1 260.63rpx;
|
||||
background-color: #e79ea14d;
|
||||
border-radius: 93.75rpx;
|
||||
height: 82.5rpx;
|
||||
}
|
||||
.text_11 {
|
||||
color: #ffffff;
|
||||
line-height: 24.71rpx;
|
||||
}
|
||||
.text-wrapper_2 {
|
||||
padding: 26.49rpx 0 28.57rpx;
|
||||
flex: 1 1 260.63rpx;
|
||||
background-color: #e79ea1;
|
||||
border-radius: 93.75rpx;
|
||||
height: 82.5rpx;
|
||||
}
|
||||
.text_12 {
|
||||
color: #ffffff;
|
||||
line-height: 27.43rpx;
|
||||
}
|
||||
.text_14 {
|
||||
margin-left: 4.74rpx;
|
||||
margin-top: 32.87rpx;
|
||||
color: #000000;
|
||||
font-size: 30rpx;
|
||||
font-family: Open Sans;
|
||||
line-height: 27.71rpx;
|
||||
}
|
||||
.image_5 {
|
||||
margin-top: 18.17rpx;
|
||||
width: 100vw;
|
||||
height: 531.5vw;
|
||||
}
|
||||
@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;
|
||||
|
|
3
unpackage/dist/dev/mp-weixin/app.js
vendored
3
unpackage/dist/dev/mp-weixin/app.js
vendored
|
@ -27,6 +27,7 @@ if (!Math) {
|
|||
"./pages/Shopping-cart/component/addProduct.js";
|
||||
"./pages/mine/OrderDetails/OrderDetails.js";
|
||||
"./pages/service/productDetail/productDetail.js";
|
||||
"./pages/workshop/index/index.js";
|
||||
"./pages/booking/CostumeDisplay/CostumeDisplay.js";
|
||||
"./pages/booking/CostumeDetails/CostumeDetails.js";
|
||||
"./pages/mine/Contact/Contact.js";
|
||||
|
@ -35,7 +36,7 @@ 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);
|
||||
|
|
21
unpackage/dist/dev/mp-weixin/common/vendor.js
vendored
21
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");
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -256,5 +256,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);
|
||||
|
|
|
@ -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);
|
||||
|
|
48
unpackage/dist/dev/mp-weixin/pages/workshop/index/index.js
vendored
Normal file
48
unpackage/dist/dev/mp-weixin/pages/workshop/index/index.js
vendored
Normal file
|
@ -0,0 +1,48 @@
|
|||
"use strict";
|
||||
const common_vendor = require("../../../common/vendor.js");
|
||||
const api_request = require("../../../api/request.js");
|
||||
const _sfc_main = {
|
||||
__name: "index",
|
||||
setup(__props) {
|
||||
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: "../productmain/productmain?info=" + +JSON.stringify(item)
|
||||
});
|
||||
};
|
||||
return (_ctx, _cache) => {
|
||||
return {
|
||||
a: common_vendor.f(products.value, (item, index, i0) => {
|
||||
return {
|
||||
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)
|
||||
};
|
||||
})
|
||||
};
|
||||
};
|
||||
}
|
||||
};
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-6d033fba"]]);
|
||||
wx.createPage(MiniProgramPage);
|
1
unpackage/dist/dev/mp-weixin/pages/workshop/index/index.wxml
vendored
Normal file
1
unpackage/dist/dev/mp-weixin/pages/workshop/index/index.wxml
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
<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>
|
508
unpackage/dist/dev/mp-weixin/pages/workshop/index/index.wxss
vendored
Normal file
508
unpackage/dist/dev/mp-weixin/pages/workshop/index/index.wxss
vendored
Normal file
|
@ -0,0 +1,508 @@
|
|||
/* 水平间距 */
|
||||
/* 水平间距 */
|
||||
/************************************************************
|
||||
** 请将全局样式拷贝到项目的全局 CSS 文件或者当前页面的顶部 **
|
||||
** 否则页面将无法正常显示 **
|
||||
************************************************************/
|
||||
html.data-v-6d033fba {
|
||||
font-size: 16px;
|
||||
}
|
||||
body.data-v-6d033fba {
|
||||
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-6d033fba,
|
||||
image.data-v-6d033fba,
|
||||
text.data-v-6d033fba {
|
||||
box-sizing: border-box;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
#app.data-v-6d033fba {
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
}
|
||||
.flex-row.data-v-6d033fba {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
}
|
||||
.flex-col.data-v-6d033fba {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.justify-start.data-v-6d033fba {
|
||||
justify-content: flex-start;
|
||||
}
|
||||
.justify-end.data-v-6d033fba {
|
||||
justify-content: flex-end;
|
||||
}
|
||||
.justify-center.data-v-6d033fba {
|
||||
justify-content: center;
|
||||
}
|
||||
.justify-between.data-v-6d033fba {
|
||||
justify-content: space-between;
|
||||
}
|
||||
.justify-around.data-v-6d033fba {
|
||||
justify-content: space-around;
|
||||
}
|
||||
.justify-evenly.data-v-6d033fba {
|
||||
justify-content: space-evenly;
|
||||
}
|
||||
.items-start.data-v-6d033fba {
|
||||
align-items: flex-start;
|
||||
}
|
||||
.items-end.data-v-6d033fba {
|
||||
align-items: flex-end;
|
||||
}
|
||||
.items-center.data-v-6d033fba {
|
||||
align-items: center;
|
||||
}
|
||||
.items-baseline.data-v-6d033fba {
|
||||
align-items: baseline;
|
||||
}
|
||||
.items-stretch.data-v-6d033fba {
|
||||
align-items: stretch;
|
||||
}
|
||||
.self-start.data-v-6d033fba {
|
||||
align-self: flex-start;
|
||||
}
|
||||
.self-end.data-v-6d033fba {
|
||||
align-self: flex-end;
|
||||
}
|
||||
.self-center.data-v-6d033fba {
|
||||
align-self: center;
|
||||
}
|
||||
.self-baseline.data-v-6d033fba {
|
||||
align-self: baseline;
|
||||
}
|
||||
.self-stretch.data-v-6d033fba {
|
||||
align-self: stretch;
|
||||
}
|
||||
.flex-1.data-v-6d033fba {
|
||||
flex: 1 1 0%;
|
||||
}
|
||||
.flex-auto.data-v-6d033fba {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.grow.data-v-6d033fba {
|
||||
flex-grow: 1;
|
||||
}
|
||||
.grow-0.data-v-6d033fba {
|
||||
flex-grow: 0;
|
||||
}
|
||||
.shrink.data-v-6d033fba {
|
||||
flex-shrink: 1;
|
||||
}
|
||||
.shrink-0.data-v-6d033fba {
|
||||
flex-shrink: 0;
|
||||
}
|
||||
.relative.data-v-6d033fba {
|
||||
position: relative;
|
||||
}
|
||||
.ml-2.data-v-6d033fba {
|
||||
margin-left: 3.75rpx;
|
||||
}
|
||||
.mt-2.data-v-6d033fba {
|
||||
margin-top: 3.75rpx;
|
||||
}
|
||||
.ml-4.data-v-6d033fba {
|
||||
margin-left: 7.5rpx;
|
||||
}
|
||||
.mt-4.data-v-6d033fba {
|
||||
margin-top: 7.5rpx;
|
||||
}
|
||||
.ml-6.data-v-6d033fba {
|
||||
margin-left: 11.25rpx;
|
||||
}
|
||||
.mt-6.data-v-6d033fba {
|
||||
margin-top: 11.25rpx;
|
||||
}
|
||||
.ml-8.data-v-6d033fba {
|
||||
margin-left: 15rpx;
|
||||
}
|
||||
.mt-8.data-v-6d033fba {
|
||||
margin-top: 15rpx;
|
||||
}
|
||||
.ml-10.data-v-6d033fba {
|
||||
margin-left: 18.75rpx;
|
||||
}
|
||||
.mt-10.data-v-6d033fba {
|
||||
margin-top: 18.75rpx;
|
||||
}
|
||||
.ml-12.data-v-6d033fba {
|
||||
margin-left: 22.5rpx;
|
||||
}
|
||||
.mt-12.data-v-6d033fba {
|
||||
margin-top: 22.5rpx;
|
||||
}
|
||||
.ml-14.data-v-6d033fba {
|
||||
margin-left: 26.25rpx;
|
||||
}
|
||||
.mt-14.data-v-6d033fba {
|
||||
margin-top: 26.25rpx;
|
||||
}
|
||||
.ml-16.data-v-6d033fba {
|
||||
margin-left: 30rpx;
|
||||
}
|
||||
.mt-16.data-v-6d033fba {
|
||||
margin-top: 30rpx;
|
||||
}
|
||||
.ml-18.data-v-6d033fba {
|
||||
margin-left: 33.75rpx;
|
||||
}
|
||||
.mt-18.data-v-6d033fba {
|
||||
margin-top: 33.75rpx;
|
||||
}
|
||||
.ml-20.data-v-6d033fba {
|
||||
margin-left: 37.5rpx;
|
||||
}
|
||||
.mt-20.data-v-6d033fba {
|
||||
margin-top: 37.5rpx;
|
||||
}
|
||||
.ml-22.data-v-6d033fba {
|
||||
margin-left: 41.25rpx;
|
||||
}
|
||||
.mt-22.data-v-6d033fba {
|
||||
margin-top: 41.25rpx;
|
||||
}
|
||||
.ml-24.data-v-6d033fba {
|
||||
margin-left: 45rpx;
|
||||
}
|
||||
.mt-24.data-v-6d033fba {
|
||||
margin-top: 45rpx;
|
||||
}
|
||||
.ml-26.data-v-6d033fba {
|
||||
margin-left: 48.75rpx;
|
||||
}
|
||||
.mt-26.data-v-6d033fba {
|
||||
margin-top: 48.75rpx;
|
||||
}
|
||||
.ml-28.data-v-6d033fba {
|
||||
margin-left: 52.5rpx;
|
||||
}
|
||||
.mt-28.data-v-6d033fba {
|
||||
margin-top: 52.5rpx;
|
||||
}
|
||||
.ml-30.data-v-6d033fba {
|
||||
margin-left: 56.25rpx;
|
||||
}
|
||||
.mt-30.data-v-6d033fba {
|
||||
margin-top: 56.25rpx;
|
||||
}
|
||||
.ml-32.data-v-6d033fba {
|
||||
margin-left: 60rpx;
|
||||
}
|
||||
.mt-32.data-v-6d033fba {
|
||||
margin-top: 60rpx;
|
||||
}
|
||||
.ml-34.data-v-6d033fba {
|
||||
margin-left: 63.75rpx;
|
||||
}
|
||||
.mt-34.data-v-6d033fba {
|
||||
margin-top: 63.75rpx;
|
||||
}
|
||||
.ml-36.data-v-6d033fba {
|
||||
margin-left: 67.5rpx;
|
||||
}
|
||||
.mt-36.data-v-6d033fba {
|
||||
margin-top: 67.5rpx;
|
||||
}
|
||||
.ml-38.data-v-6d033fba {
|
||||
margin-left: 71.25rpx;
|
||||
}
|
||||
.mt-38.data-v-6d033fba {
|
||||
margin-top: 71.25rpx;
|
||||
}
|
||||
.ml-40.data-v-6d033fba {
|
||||
margin-left: 75rpx;
|
||||
}
|
||||
.mt-40.data-v-6d033fba {
|
||||
margin-top: 75rpx;
|
||||
}
|
||||
.ml-42.data-v-6d033fba {
|
||||
margin-left: 78.75rpx;
|
||||
}
|
||||
.mt-42.data-v-6d033fba {
|
||||
margin-top: 78.75rpx;
|
||||
}
|
||||
.ml-44.data-v-6d033fba {
|
||||
margin-left: 82.5rpx;
|
||||
}
|
||||
.mt-44.data-v-6d033fba {
|
||||
margin-top: 82.5rpx;
|
||||
}
|
||||
.ml-46.data-v-6d033fba {
|
||||
margin-left: 86.25rpx;
|
||||
}
|
||||
.mt-46.data-v-6d033fba {
|
||||
margin-top: 86.25rpx;
|
||||
}
|
||||
.ml-48.data-v-6d033fba {
|
||||
margin-left: 90rpx;
|
||||
}
|
||||
.mt-48.data-v-6d033fba {
|
||||
margin-top: 90rpx;
|
||||
}
|
||||
.ml-50.data-v-6d033fba {
|
||||
margin-left: 93.75rpx;
|
||||
}
|
||||
.mt-50.data-v-6d033fba {
|
||||
margin-top: 93.75rpx;
|
||||
}
|
||||
.ml-52.data-v-6d033fba {
|
||||
margin-left: 97.5rpx;
|
||||
}
|
||||
.mt-52.data-v-6d033fba {
|
||||
margin-top: 97.5rpx;
|
||||
}
|
||||
.ml-54.data-v-6d033fba {
|
||||
margin-left: 101.25rpx;
|
||||
}
|
||||
.mt-54.data-v-6d033fba {
|
||||
margin-top: 101.25rpx;
|
||||
}
|
||||
.ml-56.data-v-6d033fba {
|
||||
margin-left: 105rpx;
|
||||
}
|
||||
.mt-56.data-v-6d033fba {
|
||||
margin-top: 105rpx;
|
||||
}
|
||||
.ml-58.data-v-6d033fba {
|
||||
margin-left: 108.75rpx;
|
||||
}
|
||||
.mt-58.data-v-6d033fba {
|
||||
margin-top: 108.75rpx;
|
||||
}
|
||||
.ml-60.data-v-6d033fba {
|
||||
margin-left: 112.5rpx;
|
||||
}
|
||||
.mt-60.data-v-6d033fba {
|
||||
margin-top: 112.5rpx;
|
||||
}
|
||||
.ml-62.data-v-6d033fba {
|
||||
margin-left: 116.25rpx;
|
||||
}
|
||||
.mt-62.data-v-6d033fba {
|
||||
margin-top: 116.25rpx;
|
||||
}
|
||||
.ml-64.data-v-6d033fba {
|
||||
margin-left: 120rpx;
|
||||
}
|
||||
.mt-64.data-v-6d033fba {
|
||||
margin-top: 120rpx;
|
||||
}
|
||||
.ml-66.data-v-6d033fba {
|
||||
margin-left: 123.75rpx;
|
||||
}
|
||||
.mt-66.data-v-6d033fba {
|
||||
margin-top: 123.75rpx;
|
||||
}
|
||||
.ml-68.data-v-6d033fba {
|
||||
margin-left: 127.5rpx;
|
||||
}
|
||||
.mt-68.data-v-6d033fba {
|
||||
margin-top: 127.5rpx;
|
||||
}
|
||||
.ml-70.data-v-6d033fba {
|
||||
margin-left: 131.25rpx;
|
||||
}
|
||||
.mt-70.data-v-6d033fba {
|
||||
margin-top: 131.25rpx;
|
||||
}
|
||||
.ml-72.data-v-6d033fba {
|
||||
margin-left: 135rpx;
|
||||
}
|
||||
.mt-72.data-v-6d033fba {
|
||||
margin-top: 135rpx;
|
||||
}
|
||||
.ml-74.data-v-6d033fba {
|
||||
margin-left: 138.75rpx;
|
||||
}
|
||||
.mt-74.data-v-6d033fba {
|
||||
margin-top: 138.75rpx;
|
||||
}
|
||||
.ml-76.data-v-6d033fba {
|
||||
margin-left: 142.5rpx;
|
||||
}
|
||||
.mt-76.data-v-6d033fba {
|
||||
margin-top: 142.5rpx;
|
||||
}
|
||||
.ml-78.data-v-6d033fba {
|
||||
margin-left: 146.25rpx;
|
||||
}
|
||||
.mt-78.data-v-6d033fba {
|
||||
margin-top: 146.25rpx;
|
||||
}
|
||||
.ml-80.data-v-6d033fba {
|
||||
margin-left: 150rpx;
|
||||
}
|
||||
.mt-80.data-v-6d033fba {
|
||||
margin-top: 150rpx;
|
||||
}
|
||||
.ml-82.data-v-6d033fba {
|
||||
margin-left: 153.75rpx;
|
||||
}
|
||||
.mt-82.data-v-6d033fba {
|
||||
margin-top: 153.75rpx;
|
||||
}
|
||||
.ml-84.data-v-6d033fba {
|
||||
margin-left: 157.5rpx;
|
||||
}
|
||||
.mt-84.data-v-6d033fba {
|
||||
margin-top: 157.5rpx;
|
||||
}
|
||||
.ml-86.data-v-6d033fba {
|
||||
margin-left: 161.25rpx;
|
||||
}
|
||||
.mt-86.data-v-6d033fba {
|
||||
margin-top: 161.25rpx;
|
||||
}
|
||||
.ml-88.data-v-6d033fba {
|
||||
margin-left: 165rpx;
|
||||
}
|
||||
.mt-88.data-v-6d033fba {
|
||||
margin-top: 165rpx;
|
||||
}
|
||||
.ml-90.data-v-6d033fba {
|
||||
margin-left: 168.75rpx;
|
||||
}
|
||||
.mt-90.data-v-6d033fba {
|
||||
margin-top: 168.75rpx;
|
||||
}
|
||||
.ml-92.data-v-6d033fba {
|
||||
margin-left: 172.5rpx;
|
||||
}
|
||||
.mt-92.data-v-6d033fba {
|
||||
margin-top: 172.5rpx;
|
||||
}
|
||||
.ml-94.data-v-6d033fba {
|
||||
margin-left: 176.25rpx;
|
||||
}
|
||||
.mt-94.data-v-6d033fba {
|
||||
margin-top: 176.25rpx;
|
||||
}
|
||||
.ml-96.data-v-6d033fba {
|
||||
margin-left: 180rpx;
|
||||
}
|
||||
.mt-96.data-v-6d033fba {
|
||||
margin-top: 180rpx;
|
||||
}
|
||||
.ml-98.data-v-6d033fba {
|
||||
margin-left: 183.75rpx;
|
||||
}
|
||||
.mt-98.data-v-6d033fba {
|
||||
margin-top: 183.75rpx;
|
||||
}
|
||||
.ml-100.data-v-6d033fba {
|
||||
margin-left: 187.5rpx;
|
||||
}
|
||||
.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 {
|
||||
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: 100%;
|
||||
}
|
||||
.section.data-v-6d033fba {
|
||||
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;
|
||||
}
|
||||
.section_2.data-v-6d033fba {
|
||||
padding: 15rpx 0;
|
||||
background-color: #ffffff;
|
||||
}
|
||||
.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;
|
||||
}
|
||||
.text_2.data-v-6d033fba {
|
||||
margin-left: 15.56rpx;
|
||||
margin-right: 3.19rpx;
|
||||
line-height: 30rpx;
|
||||
}
|
||||
.group_2.data-v-6d033fba {
|
||||
padding: 0 24.3rpx;
|
||||
}
|
||||
.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;
|
||||
}
|
||||
.flexbox.data-v-6d033fba {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
.placeholderStyle.data-v-6d033fba {
|
||||
color: #c35c5d;
|
||||
}
|
8
unpackage/dist/dev/mp-weixin/pages/workshop/productmain/productmain.js
vendored
Normal file
8
unpackage/dist/dev/mp-weixin/pages/workshop/productmain/productmain.js
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
"use strict";
|
||||
const common_vendor = require("../../../common/vendor.js");
|
||||
const _sfc_main = {};
|
||||
function _sfc_render(_ctx, _cache) {
|
||||
return {};
|
||||
}
|
||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-521289db"]]);
|
||||
wx.createPage(MiniProgramPage);
|
4
unpackage/dist/dev/mp-weixin/pages/workshop/productmain/productmain.json
vendored
Normal file
4
unpackage/dist/dev/mp-weixin/pages/workshop/productmain/productmain.json
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"navigationBarTitleText": "",
|
||||
"usingComponents": {}
|
||||
}
|
1
unpackage/dist/dev/mp-weixin/pages/workshop/productmain/productmain.wxml
vendored
Normal file
1
unpackage/dist/dev/mp-weixin/pages/workshop/productmain/productmain.wxml
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
<view class="flex-col page data-v-521289db"><view class="flex-col self-stretch section data-v-521289db"><view class="flex-row items-center section_2 data-v-521289db"><image class="image_2 data-v-521289db" src="https://ide.code.fun/api/image?token=6753b6f64ae84d00121f2f30&name=75f234eb83cd7a5f71855f98a032e4ec.png"/><text class="font text ml-13 data-v-521289db">玲泷水月阁</text><image class="image ml-13 data-v-521289db" src="https://ide.code.fun/api/image?token=6753b6f64ae84d00121f2f30&name=3a5de3282a233625f0aeb36d18f12110.png"/></view><image class="image_3 data-v-521289db" src="https://ide.code.fun/api/image?token=6753b6f64ae84d00121f2f30&name=af8962eb86012862edbadd7512290883.png"/><view class="flex-col list data-v-521289db"><view class="flex-col section_3 data-v-521289db"><view class="self-start group data-v-521289db"><text class="font_2 text_3 data-v-521289db">¥</text><text class="text_2 data-v-521289db">299</text></view><view class="flex-col self-stretch mt-15 data-v-521289db"><text class="font text_4 data-v-521289db">【非遗手工艺体验】纸笺加工技艺-流沙笺团扇制作体验</text><text class="font_2 text_5 mt-11 data-v-521289db"> 产品简介:纸笺加工技艺-流沙笺团扇制作体验,带您领略国家级非物质文化遗产的魅力。本活动让您亲手体验传统纸笺加工技艺,感受流沙笺团扇的制作过程,传承千年匠心精神。 </text></view><view class="flex-row items-baseline self-stretch group_2 mt-15 data-v-521289db"><text class="font_3 data-v-521289db">最近可预约时间:2024.11.11</text><text class="font_3 ml-1 data-v-521289db">9:30 - 10:30</text></view></view><view class="flex-col section_4 mt-6 data-v-521289db"><text class="self-start font text_6 data-v-521289db">用户须知</text><text class="self-start font_2 text_7 text_1 mt-16 data-v-521289db"> 1.请根据预约时间,提前10-15分钟到达活动地点,以便顺利参与体验。 </text><text class="self-start font_2 text_8 mt-16 data-v-521289db">2.穿着轻便、易清洗的衣物,以防止材料染色。</text><text class="self-stretch font_2 text_9 mt-16 data-v-521289db"> 3.如您在购买服务后,因个人原因需要取消服务或者变更服务的预约时间,请您务必联系我们的客服。 </text><text class="self-start font_2 text_7 mt-16 data-v-521289db"> 4.只要您在体验活动开始前取消购买,我们将为您提供全额退款服务。 </text><text class="self-stretch font_2 text_10 mt-16 data-v-521289db"> 5.如遇特殊情况,如突发疾病或其他不可抗力因素,请及时与客服沟通,我们将根据实际情况处理退款事宜。 </text></view></view><view class="flex-row section_5 data-v-521289db"><view class="flex-col items-center shrink-0 self-start data-v-521289db"><image class="image_4 data-v-521289db" src="https://ide.code.fun/api/image?token=6753b6f64ae84d00121f2f30&name=b51a8f2b2d8a67d51ce7365971207fdc.png"/><text class="text_13 mt-3 data-v-521289db">客服</text></view><view class="flex-row flex-1 self-center ml-26 data-v-521289db"><view class="flex-col justify-start items-center text-wrapper data-v-521289db"><text class="font_3 text_11 data-v-521289db">加入购物车</text></view><view class="flex-col justify-start items-center text-wrapper_2 ml-31 data-v-521289db"><text class="font text_12 data-v-521289db">立即预约</text></view></view></view></view><text class="self-start text_14 data-v-521289db">服务详情</text><image class="self-stretch image_5 data-v-521289db" src="https://ide.code.fun/api/image?token=6753b6f64ae84d00121f2f30&name=15cfcb6dc1d8e692d8b51cd736373921.png"/></view>
|
588
unpackage/dist/dev/mp-weixin/pages/workshop/productmain/productmain.wxss
vendored
Normal file
588
unpackage/dist/dev/mp-weixin/pages/workshop/productmain/productmain.wxss
vendored
Normal file
|
@ -0,0 +1,588 @@
|
|||
/* 水平间距 */
|
||||
/* 水平间距 */
|
||||
/************************************************************
|
||||
** 请将全局样式拷贝到项目的全局 CSS 文件或者当前页面的顶部 **
|
||||
** 否则页面将无法正常显示 **
|
||||
************************************************************/
|
||||
html.data-v-521289db {
|
||||
font-size: 16px;
|
||||
}
|
||||
body.data-v-521289db {
|
||||
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-521289db,
|
||||
image.data-v-521289db,
|
||||
text.data-v-521289db {
|
||||
box-sizing: border-box;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
#app.data-v-521289db {
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
}
|
||||
.flex-row.data-v-521289db {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
}
|
||||
.flex-col.data-v-521289db {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.justify-start.data-v-521289db {
|
||||
justify-content: flex-start;
|
||||
}
|
||||
.justify-end.data-v-521289db {
|
||||
justify-content: flex-end;
|
||||
}
|
||||
.justify-center.data-v-521289db {
|
||||
justify-content: center;
|
||||
}
|
||||
.justify-between.data-v-521289db {
|
||||
justify-content: space-between;
|
||||
}
|
||||
.justify-around.data-v-521289db {
|
||||
justify-content: space-around;
|
||||
}
|
||||
.justify-evenly.data-v-521289db {
|
||||
justify-content: space-evenly;
|
||||
}
|
||||
.items-start.data-v-521289db {
|
||||
align-items: flex-start;
|
||||
}
|
||||
.items-end.data-v-521289db {
|
||||
align-items: flex-end;
|
||||
}
|
||||
.items-center.data-v-521289db {
|
||||
align-items: center;
|
||||
}
|
||||
.items-baseline.data-v-521289db {
|
||||
align-items: baseline;
|
||||
}
|
||||
.items-stretch.data-v-521289db {
|
||||
align-items: stretch;
|
||||
}
|
||||
.self-start.data-v-521289db {
|
||||
align-self: flex-start;
|
||||
}
|
||||
.self-end.data-v-521289db {
|
||||
align-self: flex-end;
|
||||
}
|
||||
.self-center.data-v-521289db {
|
||||
align-self: center;
|
||||
}
|
||||
.self-baseline.data-v-521289db {
|
||||
align-self: baseline;
|
||||
}
|
||||
.self-stretch.data-v-521289db {
|
||||
align-self: stretch;
|
||||
}
|
||||
.flex-1.data-v-521289db {
|
||||
flex: 1 1 0%;
|
||||
}
|
||||
.flex-auto.data-v-521289db {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.grow.data-v-521289db {
|
||||
flex-grow: 1;
|
||||
}
|
||||
.grow-0.data-v-521289db {
|
||||
flex-grow: 0;
|
||||
}
|
||||
.shrink.data-v-521289db {
|
||||
flex-shrink: 1;
|
||||
}
|
||||
.shrink-0.data-v-521289db {
|
||||
flex-shrink: 0;
|
||||
}
|
||||
.relative.data-v-521289db {
|
||||
position: relative;
|
||||
}
|
||||
.ml-2.data-v-521289db {
|
||||
margin-left: 3.75rpx;
|
||||
}
|
||||
.mt-2.data-v-521289db {
|
||||
margin-top: 3.75rpx;
|
||||
}
|
||||
.ml-4.data-v-521289db {
|
||||
margin-left: 7.5rpx;
|
||||
}
|
||||
.mt-4.data-v-521289db {
|
||||
margin-top: 7.5rpx;
|
||||
}
|
||||
.ml-6.data-v-521289db {
|
||||
margin-left: 11.25rpx;
|
||||
}
|
||||
.mt-6.data-v-521289db {
|
||||
margin-top: 11.25rpx;
|
||||
}
|
||||
.ml-8.data-v-521289db {
|
||||
margin-left: 15rpx;
|
||||
}
|
||||
.mt-8.data-v-521289db {
|
||||
margin-top: 15rpx;
|
||||
}
|
||||
.ml-10.data-v-521289db {
|
||||
margin-left: 18.75rpx;
|
||||
}
|
||||
.mt-10.data-v-521289db {
|
||||
margin-top: 18.75rpx;
|
||||
}
|
||||
.ml-12.data-v-521289db {
|
||||
margin-left: 22.5rpx;
|
||||
}
|
||||
.mt-12.data-v-521289db {
|
||||
margin-top: 22.5rpx;
|
||||
}
|
||||
.ml-14.data-v-521289db {
|
||||
margin-left: 26.25rpx;
|
||||
}
|
||||
.mt-14.data-v-521289db {
|
||||
margin-top: 26.25rpx;
|
||||
}
|
||||
.ml-16.data-v-521289db {
|
||||
margin-left: 30rpx;
|
||||
}
|
||||
.mt-16.data-v-521289db {
|
||||
margin-top: 30rpx;
|
||||
}
|
||||
.ml-18.data-v-521289db {
|
||||
margin-left: 33.75rpx;
|
||||
}
|
||||
.mt-18.data-v-521289db {
|
||||
margin-top: 33.75rpx;
|
||||
}
|
||||
.ml-20.data-v-521289db {
|
||||
margin-left: 37.5rpx;
|
||||
}
|
||||
.mt-20.data-v-521289db {
|
||||
margin-top: 37.5rpx;
|
||||
}
|
||||
.ml-22.data-v-521289db {
|
||||
margin-left: 41.25rpx;
|
||||
}
|
||||
.mt-22.data-v-521289db {
|
||||
margin-top: 41.25rpx;
|
||||
}
|
||||
.ml-24.data-v-521289db {
|
||||
margin-left: 45rpx;
|
||||
}
|
||||
.mt-24.data-v-521289db {
|
||||
margin-top: 45rpx;
|
||||
}
|
||||
.ml-26.data-v-521289db {
|
||||
margin-left: 48.75rpx;
|
||||
}
|
||||
.mt-26.data-v-521289db {
|
||||
margin-top: 48.75rpx;
|
||||
}
|
||||
.ml-28.data-v-521289db {
|
||||
margin-left: 52.5rpx;
|
||||
}
|
||||
.mt-28.data-v-521289db {
|
||||
margin-top: 52.5rpx;
|
||||
}
|
||||
.ml-30.data-v-521289db {
|
||||
margin-left: 56.25rpx;
|
||||
}
|
||||
.mt-30.data-v-521289db {
|
||||
margin-top: 56.25rpx;
|
||||
}
|
||||
.ml-32.data-v-521289db {
|
||||
margin-left: 60rpx;
|
||||
}
|
||||
.mt-32.data-v-521289db {
|
||||
margin-top: 60rpx;
|
||||
}
|
||||
.ml-34.data-v-521289db {
|
||||
margin-left: 63.75rpx;
|
||||
}
|
||||
.mt-34.data-v-521289db {
|
||||
margin-top: 63.75rpx;
|
||||
}
|
||||
.ml-36.data-v-521289db {
|
||||
margin-left: 67.5rpx;
|
||||
}
|
||||
.mt-36.data-v-521289db {
|
||||
margin-top: 67.5rpx;
|
||||
}
|
||||
.ml-38.data-v-521289db {
|
||||
margin-left: 71.25rpx;
|
||||
}
|
||||
.mt-38.data-v-521289db {
|
||||
margin-top: 71.25rpx;
|
||||
}
|
||||
.ml-40.data-v-521289db {
|
||||
margin-left: 75rpx;
|
||||
}
|
||||
.mt-40.data-v-521289db {
|
||||
margin-top: 75rpx;
|
||||
}
|
||||
.ml-42.data-v-521289db {
|
||||
margin-left: 78.75rpx;
|
||||
}
|
||||
.mt-42.data-v-521289db {
|
||||
margin-top: 78.75rpx;
|
||||
}
|
||||
.ml-44.data-v-521289db {
|
||||
margin-left: 82.5rpx;
|
||||
}
|
||||
.mt-44.data-v-521289db {
|
||||
margin-top: 82.5rpx;
|
||||
}
|
||||
.ml-46.data-v-521289db {
|
||||
margin-left: 86.25rpx;
|
||||
}
|
||||
.mt-46.data-v-521289db {
|
||||
margin-top: 86.25rpx;
|
||||
}
|
||||
.ml-48.data-v-521289db {
|
||||
margin-left: 90rpx;
|
||||
}
|
||||
.mt-48.data-v-521289db {
|
||||
margin-top: 90rpx;
|
||||
}
|
||||
.ml-50.data-v-521289db {
|
||||
margin-left: 93.75rpx;
|
||||
}
|
||||
.mt-50.data-v-521289db {
|
||||
margin-top: 93.75rpx;
|
||||
}
|
||||
.ml-52.data-v-521289db {
|
||||
margin-left: 97.5rpx;
|
||||
}
|
||||
.mt-52.data-v-521289db {
|
||||
margin-top: 97.5rpx;
|
||||
}
|
||||
.ml-54.data-v-521289db {
|
||||
margin-left: 101.25rpx;
|
||||
}
|
||||
.mt-54.data-v-521289db {
|
||||
margin-top: 101.25rpx;
|
||||
}
|
||||
.ml-56.data-v-521289db {
|
||||
margin-left: 105rpx;
|
||||
}
|
||||
.mt-56.data-v-521289db {
|
||||
margin-top: 105rpx;
|
||||
}
|
||||
.ml-58.data-v-521289db {
|
||||
margin-left: 108.75rpx;
|
||||
}
|
||||
.mt-58.data-v-521289db {
|
||||
margin-top: 108.75rpx;
|
||||
}
|
||||
.ml-60.data-v-521289db {
|
||||
margin-left: 112.5rpx;
|
||||
}
|
||||
.mt-60.data-v-521289db {
|
||||
margin-top: 112.5rpx;
|
||||
}
|
||||
.ml-62.data-v-521289db {
|
||||
margin-left: 116.25rpx;
|
||||
}
|
||||
.mt-62.data-v-521289db {
|
||||
margin-top: 116.25rpx;
|
||||
}
|
||||
.ml-64.data-v-521289db {
|
||||
margin-left: 120rpx;
|
||||
}
|
||||
.mt-64.data-v-521289db {
|
||||
margin-top: 120rpx;
|
||||
}
|
||||
.ml-66.data-v-521289db {
|
||||
margin-left: 123.75rpx;
|
||||
}
|
||||
.mt-66.data-v-521289db {
|
||||
margin-top: 123.75rpx;
|
||||
}
|
||||
.ml-68.data-v-521289db {
|
||||
margin-left: 127.5rpx;
|
||||
}
|
||||
.mt-68.data-v-521289db {
|
||||
margin-top: 127.5rpx;
|
||||
}
|
||||
.ml-70.data-v-521289db {
|
||||
margin-left: 131.25rpx;
|
||||
}
|
||||
.mt-70.data-v-521289db {
|
||||
margin-top: 131.25rpx;
|
||||
}
|
||||
.ml-72.data-v-521289db {
|
||||
margin-left: 135rpx;
|
||||
}
|
||||
.mt-72.data-v-521289db {
|
||||
margin-top: 135rpx;
|
||||
}
|
||||
.ml-74.data-v-521289db {
|
||||
margin-left: 138.75rpx;
|
||||
}
|
||||
.mt-74.data-v-521289db {
|
||||
margin-top: 138.75rpx;
|
||||
}
|
||||
.ml-76.data-v-521289db {
|
||||
margin-left: 142.5rpx;
|
||||
}
|
||||
.mt-76.data-v-521289db {
|
||||
margin-top: 142.5rpx;
|
||||
}
|
||||
.ml-78.data-v-521289db {
|
||||
margin-left: 146.25rpx;
|
||||
}
|
||||
.mt-78.data-v-521289db {
|
||||
margin-top: 146.25rpx;
|
||||
}
|
||||
.ml-80.data-v-521289db {
|
||||
margin-left: 150rpx;
|
||||
}
|
||||
.mt-80.data-v-521289db {
|
||||
margin-top: 150rpx;
|
||||
}
|
||||
.ml-82.data-v-521289db {
|
||||
margin-left: 153.75rpx;
|
||||
}
|
||||
.mt-82.data-v-521289db {
|
||||
margin-top: 153.75rpx;
|
||||
}
|
||||
.ml-84.data-v-521289db {
|
||||
margin-left: 157.5rpx;
|
||||
}
|
||||
.mt-84.data-v-521289db {
|
||||
margin-top: 157.5rpx;
|
||||
}
|
||||
.ml-86.data-v-521289db {
|
||||
margin-left: 161.25rpx;
|
||||
}
|
||||
.mt-86.data-v-521289db {
|
||||
margin-top: 161.25rpx;
|
||||
}
|
||||
.ml-88.data-v-521289db {
|
||||
margin-left: 165rpx;
|
||||
}
|
||||
.mt-88.data-v-521289db {
|
||||
margin-top: 165rpx;
|
||||
}
|
||||
.ml-90.data-v-521289db {
|
||||
margin-left: 168.75rpx;
|
||||
}
|
||||
.mt-90.data-v-521289db {
|
||||
margin-top: 168.75rpx;
|
||||
}
|
||||
.ml-92.data-v-521289db {
|
||||
margin-left: 172.5rpx;
|
||||
}
|
||||
.mt-92.data-v-521289db {
|
||||
margin-top: 172.5rpx;
|
||||
}
|
||||
.ml-94.data-v-521289db {
|
||||
margin-left: 176.25rpx;
|
||||
}
|
||||
.mt-94.data-v-521289db {
|
||||
margin-top: 176.25rpx;
|
||||
}
|
||||
.ml-96.data-v-521289db {
|
||||
margin-left: 180rpx;
|
||||
}
|
||||
.mt-96.data-v-521289db {
|
||||
margin-top: 180rpx;
|
||||
}
|
||||
.ml-98.data-v-521289db {
|
||||
margin-left: 183.75rpx;
|
||||
}
|
||||
.mt-98.data-v-521289db {
|
||||
margin-top: 183.75rpx;
|
||||
}
|
||||
.ml-100.data-v-521289db {
|
||||
margin-left: 187.5rpx;
|
||||
}
|
||||
.mt-100.data-v-521289db {
|
||||
margin-top: 187.5rpx;
|
||||
}
|
||||
.ml-13.data-v-521289db {
|
||||
margin-left: 24.38rpx;
|
||||
}
|
||||
.mt-11.data-v-521289db {
|
||||
margin-top: 20.63rpx;
|
||||
}
|
||||
.mt-15.data-v-521289db {
|
||||
margin-top: 28.13rpx;
|
||||
}
|
||||
.ml-1.data-v-521289db {
|
||||
margin-left: 1.88rpx;
|
||||
}
|
||||
.mt-3.data-v-521289db {
|
||||
margin-top: 5.63rpx;
|
||||
}
|
||||
.ml-31.data-v-521289db {
|
||||
margin-left: 58.13rpx;
|
||||
}
|
||||
.page.data-v-521289db {
|
||||
background-color: #ffffff;
|
||||
width: 100%;
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
height: 100%;
|
||||
}
|
||||
.section.data-v-521289db {
|
||||
padding-bottom: 41.25rpx;
|
||||
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;
|
||||
}
|
||||
.section_2.data-v-521289db {
|
||||
padding: 22.5rpx 22.5rpx 20.63rpx;
|
||||
background-color: #ffffff;
|
||||
}
|
||||
.image_2.data-v-521289db {
|
||||
width: 33.75rpx;
|
||||
height: 35.63rpx;
|
||||
}
|
||||
.font.data-v-521289db {
|
||||
font-size: 30rpx;
|
||||
font-family: FZSongKeBenXiuKaiS-R-GB;
|
||||
line-height: 29.7rpx;
|
||||
}
|
||||
.text.data-v-521289db {
|
||||
color: #000000;
|
||||
line-height: 28.37rpx;
|
||||
}
|
||||
.image.data-v-521289db {
|
||||
border-radius: 50%;
|
||||
width: 46.88rpx;
|
||||
height: 46.88rpx;
|
||||
}
|
||||
.image_3.data-v-521289db {
|
||||
margin-top: 15rpx;
|
||||
width: 100vw;
|
||||
height: 70vw;
|
||||
}
|
||||
.list.data-v-521289db {
|
||||
margin-top: 18.75rpx;
|
||||
}
|
||||
.section_3.data-v-521289db {
|
||||
padding: 36.73rpx 17.1rpx 39.64rpx 17.12rpx;
|
||||
background-color: #ffffffcc;
|
||||
border-radius: 37.5rpx;
|
||||
}
|
||||
.group.data-v-521289db {
|
||||
margin-left: 12.04rpx;
|
||||
line-height: 29.7rpx;
|
||||
}
|
||||
.font_2.data-v-521289db {
|
||||
font-size: 26.25rpx;
|
||||
font-family: FZSongKeBenXiuKaiS-R-GB;
|
||||
line-height: 31.88rpx;
|
||||
color: #323232;
|
||||
}
|
||||
.text_3.data-v-521289db {
|
||||
color: #ff0000;
|
||||
line-height: 16.91rpx;
|
||||
}
|
||||
.text_2.data-v-521289db {
|
||||
color: #ff0000;
|
||||
font-size: 45rpx;
|
||||
font-family: FZSongKeBenXiuKaiS-R-GB;
|
||||
line-height: 29.7rpx;
|
||||
}
|
||||
.text_4.data-v-521289db {
|
||||
color: #323233;
|
||||
line-height: 35.63rpx;
|
||||
}
|
||||
.text_5.data-v-521289db {
|
||||
margin-left: 5.79rpx;
|
||||
margin-right: 3.58rpx;
|
||||
}
|
||||
.group_2.data-v-521289db {
|
||||
padding: 0 14.94rpx;
|
||||
}
|
||||
.font_3.data-v-521289db {
|
||||
font-size: 26.25rpx;
|
||||
font-family: FZSongKeBenXiuKaiS-R-GB;
|
||||
line-height: 24.92rpx;
|
||||
color: #000000;
|
||||
}
|
||||
.section_4.data-v-521289db {
|
||||
padding: 31.63rpx 18.04rpx 56.83rpx 26.76rpx;
|
||||
background-color: #ffffffcc;
|
||||
border-radius: 37.5rpx;
|
||||
}
|
||||
.text_6.data-v-521289db {
|
||||
margin-left: 3.71rpx;
|
||||
color: #323232;
|
||||
line-height: 28.01rpx;
|
||||
text-decoration: underline;
|
||||
}
|
||||
.text_7.data-v-521289db {
|
||||
width: 648.75rpx;
|
||||
}
|
||||
.text_1.data-v-521289db {
|
||||
margin-left: 3.66rpx;
|
||||
}
|
||||
.text_8.data-v-521289db {
|
||||
margin-left: 3.86rpx;
|
||||
line-height: 25.63rpx;
|
||||
}
|
||||
.text_9.data-v-521289db {
|
||||
margin-left: 3.96rpx;
|
||||
}
|
||||
.text_10.data-v-521289db {
|
||||
margin-left: 3.96rpx;
|
||||
margin-right: 3.77rpx;
|
||||
}
|
||||
.section_5.data-v-521289db {
|
||||
position: fixed;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
margin-top: 31.88rpx;
|
||||
padding: 22.5rpx 33.75rpx 30.13rpx 39.38rpx;
|
||||
background-color: #ffffff;
|
||||
}
|
||||
.image_4.data-v-521289db {
|
||||
width: 46.88rpx;
|
||||
height: 46.88rpx;
|
||||
}
|
||||
.text_13.data-v-521289db {
|
||||
color: #9d2624;
|
||||
font-size: 22.5rpx;
|
||||
font-family: Open Sans;
|
||||
line-height: 20.72rpx;
|
||||
}
|
||||
.text-wrapper.data-v-521289db {
|
||||
padding: 29.1rpx 0 28.69rpx;
|
||||
flex: 1 1 260.63rpx;
|
||||
background-color: #e79ea14d;
|
||||
border-radius: 93.75rpx;
|
||||
height: 82.5rpx;
|
||||
}
|
||||
.text_11.data-v-521289db {
|
||||
color: #ffffff;
|
||||
line-height: 24.71rpx;
|
||||
}
|
||||
.text-wrapper_2.data-v-521289db {
|
||||
padding: 26.49rpx 0 28.57rpx;
|
||||
flex: 1 1 260.63rpx;
|
||||
background-color: #e79ea1;
|
||||
border-radius: 93.75rpx;
|
||||
height: 82.5rpx;
|
||||
}
|
||||
.text_12.data-v-521289db {
|
||||
color: #ffffff;
|
||||
line-height: 27.43rpx;
|
||||
}
|
||||
.text_14.data-v-521289db {
|
||||
margin-left: 4.74rpx;
|
||||
margin-top: 32.87rpx;
|
||||
color: #000000;
|
||||
font-size: 30rpx;
|
||||
font-family: Open Sans;
|
||||
line-height: 27.71rpx;
|
||||
}
|
||||
.image_5.data-v-521289db {
|
||||
margin-top: 18.17rpx;
|
||||
width: 100vw;
|
||||
height: 531.5vw;
|
||||
}
|
|
@ -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