Compare commits
2 Commits
4628d14aab
...
22408b0da2
Author | SHA1 | Date | |
---|---|---|---|
22408b0da2 | |||
038f983977 |
|
@ -1,8 +0,0 @@
|
||||||
{
|
|
||||||
"hash": "3d001b98",
|
|
||||||
"configHash": "dacccf34",
|
|
||||||
"lockfileHash": "e3b0c442",
|
|
||||||
"browserHash": "0970ca37",
|
|
||||||
"optimized": {},
|
|
||||||
"chunks": {}
|
|
||||||
}
|
|
3
unpackage/dist/cache/.vite/deps/package.json
vendored
|
@ -1,3 +0,0 @@
|
||||||
{
|
|
||||||
"type": "module"
|
|
||||||
}
|
|
1
unpackage/dist/dev/.vue-devtools/port.js
vendored
|
@ -1 +0,0 @@
|
||||||
9098
|
|
0
unpackage/dist/dev/mp-alipay/App.axml
vendored
79
unpackage/dist/dev/mp-alipay/addProduct.js
vendored
|
@ -1,79 +0,0 @@
|
||||||
"use strict";
|
|
||||||
const common_vendor = require("./common/vendor.js");
|
|
||||||
const utils_emitter = require("./utils/emitter.js");
|
|
||||||
const api_request = require("./api/request.js");
|
|
||||||
const _sfc_main = {
|
|
||||||
__name: "addProduct",
|
|
||||||
setup(__props) {
|
|
||||||
const productBrief = common_vendor.ref({});
|
|
||||||
const quantity = common_vendor.ref(1);
|
|
||||||
const userInfo = common_vendor.ref({});
|
|
||||||
common_vendor.onMounted(() => {
|
|
||||||
utils_emitter.emitter.on("product", (val) => {
|
|
||||||
productBrief.value = val;
|
|
||||||
});
|
|
||||||
});
|
|
||||||
common_vendor.onShow(() => {
|
|
||||||
userInfo.value = wx.getStorageSync("userInfo");
|
|
||||||
});
|
|
||||||
const close = () => {
|
|
||||||
utils_emitter.emitter.emit("close");
|
|
||||||
};
|
|
||||||
const addCart = async () => {
|
|
||||||
console.log("商品brief-->", productBrief.value);
|
|
||||||
console.log("用户信息-->", userInfo.value);
|
|
||||||
const res = await common_vendor.index.request({
|
|
||||||
url: api_request.baseUrl + "/cart/add",
|
|
||||||
method: "POST",
|
|
||||||
header: {
|
|
||||||
cookie: wx.getStorageSync("cookie")
|
|
||||||
},
|
|
||||||
data: {
|
|
||||||
userId: userInfo.value.id,
|
|
||||||
goodId: productBrief.value.id,
|
|
||||||
quantity: quantity.value,
|
|
||||||
subtotal: productBrief.value.price * quantity.value,
|
|
||||||
isGoodType: productBrief.value.isGoodType
|
|
||||||
}
|
|
||||||
});
|
|
||||||
if (res.data.code === 1) {
|
|
||||||
common_vendor.index.showToast({
|
|
||||||
icon: "success",
|
|
||||||
title: "加入购物车成功"
|
|
||||||
});
|
|
||||||
close();
|
|
||||||
} else {
|
|
||||||
console.log("失败原因-->", res.data);
|
|
||||||
common_vendor.index.showToast({
|
|
||||||
icon: "error",
|
|
||||||
title: "请求失败"
|
|
||||||
});
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
const decrease = () => {
|
|
||||||
if (quantity.value > 0) {
|
|
||||||
quantity.value -= 1;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
const increase = () => {
|
|
||||||
if (quantity.value <= productBrief.value.inventory) {
|
|
||||||
quantity.value += 1;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
return (_ctx, _cache) => {
|
|
||||||
return {
|
|
||||||
a: productBrief.value.goodImg,
|
|
||||||
b: common_vendor.t(productBrief.value.price),
|
|
||||||
c: common_vendor.t(productBrief.value.name),
|
|
||||||
d: common_vendor.o(($event) => close()),
|
|
||||||
e: common_vendor.o(decrease),
|
|
||||||
f: common_vendor.t(quantity.value),
|
|
||||||
g: common_vendor.o(increase),
|
|
||||||
h: common_vendor.o(addCart)
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
};
|
|
||||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-ac6f555c"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/Shopping-cart/component/addProduct.vue"]]);
|
|
||||||
exports.MiniProgramPage = MiniProgramPage;
|
|
3
unpackage/dist/dev/mp-alipay/api/request.js
vendored
|
@ -1,3 +0,0 @@
|
||||||
"use strict";
|
|
||||||
const baseUrl = "http://localhost:9092/api";
|
|
||||||
exports.baseUrl = baseUrl;
|
|
1
unpackage/dist/dev/mp-alipay/app.acss
vendored
|
@ -1 +0,0 @@
|
||||||
page{--status-bar-height:25px;--top-window-height:0px;--window-top:0px;--window-bottom:0px;--window-left:0px;--window-right:0px;--window-magin:0px}
|
|
47
unpackage/dist/dev/mp-alipay/app.js
vendored
|
@ -1,47 +0,0 @@
|
||||||
"use strict";
|
|
||||||
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
||||||
const common_vendor = require("./common/vendor.js");
|
|
||||||
const store_index = require("./store/index.js");
|
|
||||||
if (!Math) {
|
|
||||||
"./pages/home/home.js";
|
|
||||||
"./pages/store-home/main/main.js";
|
|
||||||
"./pages/mine/main/main.js";
|
|
||||||
"./pages/mine/mineorders/mineorders.js";
|
|
||||||
"./pages/Shopping-cart/productmain/productmain.js";
|
|
||||||
"./pages/booking/AppointmentHome.js";
|
|
||||||
"./pages/booking/ContactInformation.js";
|
|
||||||
"./pages/booking/date.js";
|
|
||||||
"./pages/store-home/ProductDetails/ProductDetails.js";
|
|
||||||
"./pages/Shopping-cart/Phone/Phone.js";
|
|
||||||
"./pages/order/product-unpay/product-unpay.js";
|
|
||||||
"./pages/booking/BillingOfFees/BillingOfFees.js";
|
|
||||||
"./pages/booking/ReservationInstructions/ReservationInstructions.js";
|
|
||||||
"./pages/booking/respectable/respectable.js";
|
|
||||||
"./pages/Shopping-cart/newaddress_Info/newaddress_Info.js";
|
|
||||||
"./pages/order/product-waitpay/product-waitpay.js";
|
|
||||||
"./pages/order/paysuccess/paysuccess.js";
|
|
||||||
"./pages/booking/Simple/Simple.js";
|
|
||||||
"./pages/booking/bookingpay/bookingpay.js";
|
|
||||||
"./pages/order/productOrderDetail/productOrderDetail.js";
|
|
||||||
"./pages/login/login.js";
|
|
||||||
"./pages/Shopping-cart/component/addProduct.js";
|
|
||||||
"./pages/mine/OrderDetails/OrderDetails.js";
|
|
||||||
"./pages/service/productDetail/productDetail.js";
|
|
||||||
"./pages/booking/CostumeDisplay/CostumeDisplay.js";
|
|
||||||
"./pages/booking/CostumeDetails/CostumeDetails.js";
|
|
||||||
"./pages/mine/Contact/Contact.js";
|
|
||||||
}
|
|
||||||
const _sfc_main = {};
|
|
||||||
function _sfc_render(_ctx, _cache) {
|
|
||||||
return {};
|
|
||||||
}
|
|
||||||
const App = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__file", "D:/jiangchengfeiyi-xiaochengxu/App.vue"]]);
|
|
||||||
function createApp() {
|
|
||||||
const app = common_vendor.createSSRApp(App);
|
|
||||||
app.use(store_index.pinia);
|
|
||||||
return {
|
|
||||||
app
|
|
||||||
};
|
|
||||||
}
|
|
||||||
createApp().app.mount("#app");
|
|
||||||
exports.createApp = createApp;
|
|
68
unpackage/dist/dev/mp-alipay/app.json
vendored
|
@ -1,68 +0,0 @@
|
||||||
{
|
|
||||||
"pages": [
|
|
||||||
"pages/home/home",
|
|
||||||
"pages/store-home/main/main",
|
|
||||||
"pages/mine/main/main",
|
|
||||||
"pages/mine/mineorders/mineorders",
|
|
||||||
"pages/Shopping-cart/productmain/productmain",
|
|
||||||
"pages/booking/AppointmentHome",
|
|
||||||
"pages/booking/ContactInformation",
|
|
||||||
"pages/booking/date",
|
|
||||||
"pages/store-home/ProductDetails/ProductDetails",
|
|
||||||
"pages/Shopping-cart/Phone/Phone",
|
|
||||||
"pages/order/product-unpay/product-unpay",
|
|
||||||
"pages/booking/BillingOfFees/BillingOfFees",
|
|
||||||
"pages/booking/ReservationInstructions/ReservationInstructions",
|
|
||||||
"pages/booking/respectable/respectable",
|
|
||||||
"pages/Shopping-cart/newaddress_Info/newaddress_Info",
|
|
||||||
"pages/order/product-waitpay/product-waitpay",
|
|
||||||
"pages/order/paysuccess/paysuccess",
|
|
||||||
"pages/booking/Simple/Simple",
|
|
||||||
"pages/booking/bookingpay/bookingpay",
|
|
||||||
"pages/order/productOrderDetail/productOrderDetail",
|
|
||||||
"pages/login/login",
|
|
||||||
"pages/Shopping-cart/component/addProduct",
|
|
||||||
"pages/mine/OrderDetails/OrderDetails",
|
|
||||||
"pages/service/productDetail/productDetail",
|
|
||||||
"pages/workshop/index/index",
|
|
||||||
"pages/booking/CostumeDisplay/CostumeDisplay",
|
|
||||||
"pages/booking/CostumeDetails/CostumeDetails",
|
|
||||||
"pages/mine/Contact/Contact"
|
|
||||||
],
|
|
||||||
"window": {
|
|
||||||
"defaultTitle": "uni-app",
|
|
||||||
"titleBarColor": "#F8F8F8",
|
|
||||||
"backgroundColor": "#F8F8F8"
|
|
||||||
},
|
|
||||||
"tabBar": {
|
|
||||||
"backgroundColor": "#F7E7C6",
|
|
||||||
"items": [
|
|
||||||
{
|
|
||||||
"pagePath": "pages/home/home",
|
|
||||||
"name": "首页",
|
|
||||||
"icon": "./static/home.png",
|
|
||||||
"activeIcon": "./static/homeselected.png"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"pagePath": "pages/store-home/main/main",
|
|
||||||
"name": "商城",
|
|
||||||
"icon": "./static/store.png",
|
|
||||||
"activeIcon": "./static/storeselected.png"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"pagePath": "pages/Shopping-cart/productmain/productmain",
|
|
||||||
"name": "购物车",
|
|
||||||
"icon": "./static/shopcar.png",
|
|
||||||
"activeIcon": "./static/shopcarselected.png"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"pagePath": "pages/mine/main/main",
|
|
||||||
"name": "我的",
|
|
||||||
"icon": "./static/mine.png",
|
|
||||||
"activeIcon": "./static/mineselected.png"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"subPackageBuildType": "shared",
|
|
||||||
"usingComponents": {}
|
|
||||||
}
|
|
BIN
unpackage/dist/dev/mp-alipay/assets/add.c73b1e4b.png
vendored
Before Width: | Height: | Size: 688 B |
BIN
unpackage/dist/dev/mp-alipay/assets/add.dace8cf5.png
vendored
Before Width: | Height: | Size: 657 B |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 41 KiB |
Before Width: | Height: | Size: 76 KiB |
Before Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 911 B |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.6 KiB |
BIN
unpackage/dist/dev/mp-alipay/assets/dec.1cf16d78.png
vendored
Before Width: | Height: | Size: 20 KiB |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 988 KiB |
Before Width: | Height: | Size: 2.5 KiB |
Before Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 34 KiB |
Before Width: | Height: | Size: 101 KiB |
Before Width: | Height: | Size: 104 KiB |
Before Width: | Height: | Size: 32 KiB |
Before Width: | Height: | Size: 308 B |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 946 B |
Before Width: | Height: | Size: 3.4 KiB |
BIN
unpackage/dist/dev/mp-alipay/assets/rmb.6e85dd4a.png
vendored
Before Width: | Height: | Size: 545 B |
BIN
unpackage/dist/dev/mp-alipay/assets/rmb.dd886a2c.png
vendored
Before Width: | Height: | Size: 551 B |
Before Width: | Height: | Size: 555 B |
Before Width: | Height: | Size: 624 B |
Before Width: | Height: | Size: 663 B |
Before Width: | Height: | Size: 679 B |
Before Width: | Height: | Size: 895 B |
Before Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 46 KiB |
Before Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 494 B |
Before Width: | Height: | Size: 482 B |
Before Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 3.0 KiB |
Before Width: | Height: | Size: 5.1 KiB |
Before Width: | Height: | Size: 145 B |
Before Width: | Height: | Size: 145 B |
Before Width: | Height: | Size: 55 KiB |
Before Width: | Height: | Size: 692 B |
BIN
unpackage/dist/dev/mp-alipay/assets/you.60391a00.png
vendored
Before Width: | Height: | Size: 608 B |
BIN
unpackage/dist/dev/mp-alipay/assets/you.70a370f0.png
vendored
Before Width: | Height: | Size: 542 B |
Before Width: | Height: | Size: 492 B |
Before Width: | Height: | Size: 356 B |
73
unpackage/dist/dev/mp-alipay/common/assets.js
vendored
|
@ -1,73 +0,0 @@
|
||||||
"use strict";
|
|
||||||
const product$1 = "/assets/product.7900e336.png";
|
|
||||||
const rili = "/assets/rili.7746043b.png";
|
|
||||||
const xuanchuan = "/assets/xuanchuan.f0fc207c.png";
|
|
||||||
const shizi = "/assets/shizi.dd0347ec.png";
|
|
||||||
const you$1 = "/assets/you.60391a00.png";
|
|
||||||
const add_img = "/assets/tianjia.187834c9.png";
|
|
||||||
const sousuokuang = "/assets/sousuokuang.6160c4c7.png";
|
|
||||||
const address = "/assets/address.e91cc3a1.png";
|
|
||||||
const avator = "/assets/avator.7ac17437.png";
|
|
||||||
const daifahuo = "/assets/daifahuo.8369326b.png";
|
|
||||||
const daishouhuo = "/assets/daishouhuo.ff694766.png";
|
|
||||||
const dingdan = "/assets/dingdan.6b4043d6.png";
|
|
||||||
const lianxiren_s = "/assets/lianxiren_s.17e4954c.png";
|
|
||||||
const qianbao = "/assets/qianbao.bbfd6c3d.png";
|
|
||||||
const setting_s = "/assets/setting_s.3e5c5149.png";
|
|
||||||
const tuikuan = "/assets/tuikuan.d34aac5f.png";
|
|
||||||
const you = "/assets/you.70a370f0.png";
|
|
||||||
const denglong = "/assets/denglong.a91d13af.png";
|
|
||||||
const kefu = "/assets/kefu.eef0848c.png";
|
|
||||||
const show1 = "/assets/show1.6119e6ca.png";
|
|
||||||
const show2 = "/assets/show2.6ef01c5d.png";
|
|
||||||
const show3 = "/assets/show3.4b906849.png";
|
|
||||||
const show4 = "/assets/show4.00c949b6.png";
|
|
||||||
const dingwei$1 = "/assets/dingwei.69908177.png";
|
|
||||||
const add = "/assets/add.dace8cf5.png";
|
|
||||||
const dingwei = "/assets/dingwei.a57a6fb6.png";
|
|
||||||
const rmb_36px = "/assets/rmb_36px.929d25f5.png";
|
|
||||||
const rmb_huang = "/assets/rmb_huang.28b44dfc.png";
|
|
||||||
const short = "/assets/short.be252386.png";
|
|
||||||
const yiwen = "/assets/yiwen.9096364a.png";
|
|
||||||
const you_cheng = "/assets/you_cheng.a0b56a7d.png";
|
|
||||||
const success = "/assets/success.3df77989.png";
|
|
||||||
const xian = "/assets/xian.51ee54bc.png";
|
|
||||||
const xian2 = "/assets/xian2.316f0e4c.png";
|
|
||||||
const rmb = "/assets/rmb.dd886a2c.png";
|
|
||||||
const product = "/assets/product.d45a003d.png";
|
|
||||||
exports.add = add;
|
|
||||||
exports.add_img = add_img;
|
|
||||||
exports.address = address;
|
|
||||||
exports.avator = avator;
|
|
||||||
exports.daifahuo = daifahuo;
|
|
||||||
exports.daishouhuo = daishouhuo;
|
|
||||||
exports.denglong = denglong;
|
|
||||||
exports.dingdan = dingdan;
|
|
||||||
exports.dingwei = dingwei$1;
|
|
||||||
exports.dingwei$1 = dingwei;
|
|
||||||
exports.kefu = kefu;
|
|
||||||
exports.lianxiren_s = lianxiren_s;
|
|
||||||
exports.product = product$1;
|
|
||||||
exports.product$1 = product;
|
|
||||||
exports.qianbao = qianbao;
|
|
||||||
exports.rili = rili;
|
|
||||||
exports.rmb = rmb;
|
|
||||||
exports.rmb_36px = rmb_36px;
|
|
||||||
exports.rmb_huang = rmb_huang;
|
|
||||||
exports.setting_s = setting_s;
|
|
||||||
exports.shizi = shizi;
|
|
||||||
exports.short = short;
|
|
||||||
exports.show1 = show1;
|
|
||||||
exports.show2 = show2;
|
|
||||||
exports.show3 = show3;
|
|
||||||
exports.show4 = show4;
|
|
||||||
exports.sousuokuang = sousuokuang;
|
|
||||||
exports.success = success;
|
|
||||||
exports.tuikuan = tuikuan;
|
|
||||||
exports.xian = xian;
|
|
||||||
exports.xian2 = xian2;
|
|
||||||
exports.xuanchuan = xuanchuan;
|
|
||||||
exports.yiwen = yiwen;
|
|
||||||
exports.you = you$1;
|
|
||||||
exports.you$1 = you;
|
|
||||||
exports.you_cheng = you_cheng;
|
|
8923
unpackage/dist/dev/mp-alipay/common/vendor.js
vendored
11
unpackage/dist/dev/mp-alipay/mini.project.json
vendored
|
@ -1,11 +0,0 @@
|
||||||
{
|
|
||||||
"format": 2,
|
|
||||||
"compileOptions": {
|
|
||||||
"component2": true,
|
|
||||||
"enableNodeModuleBabelTransform": true
|
|
||||||
},
|
|
||||||
"unknownConfig": {
|
|
||||||
"appid": "touristappid",
|
|
||||||
"projectname": "FeiYi"
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,478 +0,0 @@
|
||||||
/* 水平间距 */
|
|
||||||
/* 水平间距 */
|
|
||||||
/************************************************************
|
|
||||||
** 请将全局样式拷贝到项目的全局 CSS 文件或者当前页面的顶部 **
|
|
||||||
** 否则页面将无法正常显示 **
|
|
||||||
************************************************************/
|
|
||||||
html.data-v-6d058dc0 {
|
|
||||||
font-size: 16px;
|
|
||||||
}
|
|
||||||
body.data-v-6d058dc0 {
|
|
||||||
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-6d058dc0,
|
|
||||||
image.data-v-6d058dc0,
|
|
||||||
text.data-v-6d058dc0 {
|
|
||||||
box-sizing: border-box;
|
|
||||||
flex-shrink: 0;
|
|
||||||
}
|
|
||||||
#app.data-v-6d058dc0 {
|
|
||||||
width: 100vw;
|
|
||||||
height: 100vh;
|
|
||||||
}
|
|
||||||
.flex-row.data-v-6d058dc0 {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
}
|
|
||||||
.flex-col.data-v-6d058dc0 {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
.justify-start.data-v-6d058dc0 {
|
|
||||||
justify-content: flex-start;
|
|
||||||
}
|
|
||||||
.justify-end.data-v-6d058dc0 {
|
|
||||||
justify-content: flex-end;
|
|
||||||
}
|
|
||||||
.justify-center.data-v-6d058dc0 {
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
.justify-between.data-v-6d058dc0 {
|
|
||||||
justify-content: space-between;
|
|
||||||
}
|
|
||||||
.justify-around.data-v-6d058dc0 {
|
|
||||||
justify-content: space-around;
|
|
||||||
}
|
|
||||||
.justify-evenly.data-v-6d058dc0 {
|
|
||||||
justify-content: space-evenly;
|
|
||||||
}
|
|
||||||
.items-start.data-v-6d058dc0 {
|
|
||||||
align-items: flex-start;
|
|
||||||
}
|
|
||||||
.items-end.data-v-6d058dc0 {
|
|
||||||
align-items: flex-end;
|
|
||||||
}
|
|
||||||
.items-center.data-v-6d058dc0 {
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
.items-baseline.data-v-6d058dc0 {
|
|
||||||
align-items: baseline;
|
|
||||||
}
|
|
||||||
.items-stretch.data-v-6d058dc0 {
|
|
||||||
align-items: stretch;
|
|
||||||
}
|
|
||||||
.self-start.data-v-6d058dc0 {
|
|
||||||
align-self: flex-start;
|
|
||||||
}
|
|
||||||
.self-end.data-v-6d058dc0 {
|
|
||||||
align-self: flex-end;
|
|
||||||
}
|
|
||||||
.self-center.data-v-6d058dc0 {
|
|
||||||
align-self: center;
|
|
||||||
}
|
|
||||||
.self-baseline.data-v-6d058dc0 {
|
|
||||||
align-self: baseline;
|
|
||||||
}
|
|
||||||
.self-stretch.data-v-6d058dc0 {
|
|
||||||
align-self: stretch;
|
|
||||||
}
|
|
||||||
.flex-1.data-v-6d058dc0 {
|
|
||||||
flex: 1 1 0%;
|
|
||||||
}
|
|
||||||
.flex-auto.data-v-6d058dc0 {
|
|
||||||
flex: 1 1 auto;
|
|
||||||
}
|
|
||||||
.grow.data-v-6d058dc0 {
|
|
||||||
flex-grow: 1;
|
|
||||||
}
|
|
||||||
.grow-0.data-v-6d058dc0 {
|
|
||||||
flex-grow: 0;
|
|
||||||
}
|
|
||||||
.shrink.data-v-6d058dc0 {
|
|
||||||
flex-shrink: 1;
|
|
||||||
}
|
|
||||||
.shrink-0.data-v-6d058dc0 {
|
|
||||||
flex-shrink: 0;
|
|
||||||
}
|
|
||||||
.relative.data-v-6d058dc0 {
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
.ml-2.data-v-6d058dc0 {
|
|
||||||
margin-left: 3.75rpx;
|
|
||||||
}
|
|
||||||
.mt-2.data-v-6d058dc0 {
|
|
||||||
margin-top: 3.75rpx;
|
|
||||||
}
|
|
||||||
.ml-4.data-v-6d058dc0 {
|
|
||||||
margin-left: 7.5rpx;
|
|
||||||
}
|
|
||||||
.mt-4.data-v-6d058dc0 {
|
|
||||||
margin-top: 7.5rpx;
|
|
||||||
}
|
|
||||||
.ml-6.data-v-6d058dc0 {
|
|
||||||
margin-left: 11.25rpx;
|
|
||||||
}
|
|
||||||
.mt-6.data-v-6d058dc0 {
|
|
||||||
margin-top: 11.25rpx;
|
|
||||||
}
|
|
||||||
.ml-8.data-v-6d058dc0 {
|
|
||||||
margin-left: 15rpx;
|
|
||||||
}
|
|
||||||
.mt-8.data-v-6d058dc0 {
|
|
||||||
margin-top: 15rpx;
|
|
||||||
}
|
|
||||||
.ml-10.data-v-6d058dc0 {
|
|
||||||
margin-left: 18.75rpx;
|
|
||||||
}
|
|
||||||
.mt-10.data-v-6d058dc0 {
|
|
||||||
margin-top: 18.75rpx;
|
|
||||||
}
|
|
||||||
.ml-12.data-v-6d058dc0 {
|
|
||||||
margin-left: 22.5rpx;
|
|
||||||
}
|
|
||||||
.mt-12.data-v-6d058dc0 {
|
|
||||||
margin-top: 22.5rpx;
|
|
||||||
}
|
|
||||||
.ml-14.data-v-6d058dc0 {
|
|
||||||
margin-left: 26.25rpx;
|
|
||||||
}
|
|
||||||
.mt-14.data-v-6d058dc0 {
|
|
||||||
margin-top: 26.25rpx;
|
|
||||||
}
|
|
||||||
.ml-16.data-v-6d058dc0 {
|
|
||||||
margin-left: 30rpx;
|
|
||||||
}
|
|
||||||
.mt-16.data-v-6d058dc0 {
|
|
||||||
margin-top: 30rpx;
|
|
||||||
}
|
|
||||||
.ml-18.data-v-6d058dc0 {
|
|
||||||
margin-left: 33.75rpx;
|
|
||||||
}
|
|
||||||
.mt-18.data-v-6d058dc0 {
|
|
||||||
margin-top: 33.75rpx;
|
|
||||||
}
|
|
||||||
.ml-20.data-v-6d058dc0 {
|
|
||||||
margin-left: 37.5rpx;
|
|
||||||
}
|
|
||||||
.mt-20.data-v-6d058dc0 {
|
|
||||||
margin-top: 37.5rpx;
|
|
||||||
}
|
|
||||||
.ml-22.data-v-6d058dc0 {
|
|
||||||
margin-left: 41.25rpx;
|
|
||||||
}
|
|
||||||
.mt-22.data-v-6d058dc0 {
|
|
||||||
margin-top: 41.25rpx;
|
|
||||||
}
|
|
||||||
.ml-24.data-v-6d058dc0 {
|
|
||||||
margin-left: 45rpx;
|
|
||||||
}
|
|
||||||
.mt-24.data-v-6d058dc0 {
|
|
||||||
margin-top: 45rpx;
|
|
||||||
}
|
|
||||||
.ml-26.data-v-6d058dc0 {
|
|
||||||
margin-left: 48.75rpx;
|
|
||||||
}
|
|
||||||
.mt-26.data-v-6d058dc0 {
|
|
||||||
margin-top: 48.75rpx;
|
|
||||||
}
|
|
||||||
.ml-28.data-v-6d058dc0 {
|
|
||||||
margin-left: 52.5rpx;
|
|
||||||
}
|
|
||||||
.mt-28.data-v-6d058dc0 {
|
|
||||||
margin-top: 52.5rpx;
|
|
||||||
}
|
|
||||||
.ml-30.data-v-6d058dc0 {
|
|
||||||
margin-left: 56.25rpx;
|
|
||||||
}
|
|
||||||
.mt-30.data-v-6d058dc0 {
|
|
||||||
margin-top: 56.25rpx;
|
|
||||||
}
|
|
||||||
.ml-32.data-v-6d058dc0 {
|
|
||||||
margin-left: 60rpx;
|
|
||||||
}
|
|
||||||
.mt-32.data-v-6d058dc0 {
|
|
||||||
margin-top: 60rpx;
|
|
||||||
}
|
|
||||||
.ml-34.data-v-6d058dc0 {
|
|
||||||
margin-left: 63.75rpx;
|
|
||||||
}
|
|
||||||
.mt-34.data-v-6d058dc0 {
|
|
||||||
margin-top: 63.75rpx;
|
|
||||||
}
|
|
||||||
.ml-36.data-v-6d058dc0 {
|
|
||||||
margin-left: 67.5rpx;
|
|
||||||
}
|
|
||||||
.mt-36.data-v-6d058dc0 {
|
|
||||||
margin-top: 67.5rpx;
|
|
||||||
}
|
|
||||||
.ml-38.data-v-6d058dc0 {
|
|
||||||
margin-left: 71.25rpx;
|
|
||||||
}
|
|
||||||
.mt-38.data-v-6d058dc0 {
|
|
||||||
margin-top: 71.25rpx;
|
|
||||||
}
|
|
||||||
.ml-40.data-v-6d058dc0 {
|
|
||||||
margin-left: 75rpx;
|
|
||||||
}
|
|
||||||
.mt-40.data-v-6d058dc0 {
|
|
||||||
margin-top: 75rpx;
|
|
||||||
}
|
|
||||||
.ml-42.data-v-6d058dc0 {
|
|
||||||
margin-left: 78.75rpx;
|
|
||||||
}
|
|
||||||
.mt-42.data-v-6d058dc0 {
|
|
||||||
margin-top: 78.75rpx;
|
|
||||||
}
|
|
||||||
.ml-44.data-v-6d058dc0 {
|
|
||||||
margin-left: 82.5rpx;
|
|
||||||
}
|
|
||||||
.mt-44.data-v-6d058dc0 {
|
|
||||||
margin-top: 82.5rpx;
|
|
||||||
}
|
|
||||||
.ml-46.data-v-6d058dc0 {
|
|
||||||
margin-left: 86.25rpx;
|
|
||||||
}
|
|
||||||
.mt-46.data-v-6d058dc0 {
|
|
||||||
margin-top: 86.25rpx;
|
|
||||||
}
|
|
||||||
.ml-48.data-v-6d058dc0 {
|
|
||||||
margin-left: 90rpx;
|
|
||||||
}
|
|
||||||
.mt-48.data-v-6d058dc0 {
|
|
||||||
margin-top: 90rpx;
|
|
||||||
}
|
|
||||||
.ml-50.data-v-6d058dc0 {
|
|
||||||
margin-left: 93.75rpx;
|
|
||||||
}
|
|
||||||
.mt-50.data-v-6d058dc0 {
|
|
||||||
margin-top: 93.75rpx;
|
|
||||||
}
|
|
||||||
.ml-52.data-v-6d058dc0 {
|
|
||||||
margin-left: 97.5rpx;
|
|
||||||
}
|
|
||||||
.mt-52.data-v-6d058dc0 {
|
|
||||||
margin-top: 97.5rpx;
|
|
||||||
}
|
|
||||||
.ml-54.data-v-6d058dc0 {
|
|
||||||
margin-left: 101.25rpx;
|
|
||||||
}
|
|
||||||
.mt-54.data-v-6d058dc0 {
|
|
||||||
margin-top: 101.25rpx;
|
|
||||||
}
|
|
||||||
.ml-56.data-v-6d058dc0 {
|
|
||||||
margin-left: 105rpx;
|
|
||||||
}
|
|
||||||
.mt-56.data-v-6d058dc0 {
|
|
||||||
margin-top: 105rpx;
|
|
||||||
}
|
|
||||||
.ml-58.data-v-6d058dc0 {
|
|
||||||
margin-left: 108.75rpx;
|
|
||||||
}
|
|
||||||
.mt-58.data-v-6d058dc0 {
|
|
||||||
margin-top: 108.75rpx;
|
|
||||||
}
|
|
||||||
.ml-60.data-v-6d058dc0 {
|
|
||||||
margin-left: 112.5rpx;
|
|
||||||
}
|
|
||||||
.mt-60.data-v-6d058dc0 {
|
|
||||||
margin-top: 112.5rpx;
|
|
||||||
}
|
|
||||||
.ml-62.data-v-6d058dc0 {
|
|
||||||
margin-left: 116.25rpx;
|
|
||||||
}
|
|
||||||
.mt-62.data-v-6d058dc0 {
|
|
||||||
margin-top: 116.25rpx;
|
|
||||||
}
|
|
||||||
.ml-64.data-v-6d058dc0 {
|
|
||||||
margin-left: 120rpx;
|
|
||||||
}
|
|
||||||
.mt-64.data-v-6d058dc0 {
|
|
||||||
margin-top: 120rpx;
|
|
||||||
}
|
|
||||||
.ml-66.data-v-6d058dc0 {
|
|
||||||
margin-left: 123.75rpx;
|
|
||||||
}
|
|
||||||
.mt-66.data-v-6d058dc0 {
|
|
||||||
margin-top: 123.75rpx;
|
|
||||||
}
|
|
||||||
.ml-68.data-v-6d058dc0 {
|
|
||||||
margin-left: 127.5rpx;
|
|
||||||
}
|
|
||||||
.mt-68.data-v-6d058dc0 {
|
|
||||||
margin-top: 127.5rpx;
|
|
||||||
}
|
|
||||||
.ml-70.data-v-6d058dc0 {
|
|
||||||
margin-left: 131.25rpx;
|
|
||||||
}
|
|
||||||
.mt-70.data-v-6d058dc0 {
|
|
||||||
margin-top: 131.25rpx;
|
|
||||||
}
|
|
||||||
.ml-72.data-v-6d058dc0 {
|
|
||||||
margin-left: 135rpx;
|
|
||||||
}
|
|
||||||
.mt-72.data-v-6d058dc0 {
|
|
||||||
margin-top: 135rpx;
|
|
||||||
}
|
|
||||||
.ml-74.data-v-6d058dc0 {
|
|
||||||
margin-left: 138.75rpx;
|
|
||||||
}
|
|
||||||
.mt-74.data-v-6d058dc0 {
|
|
||||||
margin-top: 138.75rpx;
|
|
||||||
}
|
|
||||||
.ml-76.data-v-6d058dc0 {
|
|
||||||
margin-left: 142.5rpx;
|
|
||||||
}
|
|
||||||
.mt-76.data-v-6d058dc0 {
|
|
||||||
margin-top: 142.5rpx;
|
|
||||||
}
|
|
||||||
.ml-78.data-v-6d058dc0 {
|
|
||||||
margin-left: 146.25rpx;
|
|
||||||
}
|
|
||||||
.mt-78.data-v-6d058dc0 {
|
|
||||||
margin-top: 146.25rpx;
|
|
||||||
}
|
|
||||||
.ml-80.data-v-6d058dc0 {
|
|
||||||
margin-left: 150rpx;
|
|
||||||
}
|
|
||||||
.mt-80.data-v-6d058dc0 {
|
|
||||||
margin-top: 150rpx;
|
|
||||||
}
|
|
||||||
.ml-82.data-v-6d058dc0 {
|
|
||||||
margin-left: 153.75rpx;
|
|
||||||
}
|
|
||||||
.mt-82.data-v-6d058dc0 {
|
|
||||||
margin-top: 153.75rpx;
|
|
||||||
}
|
|
||||||
.ml-84.data-v-6d058dc0 {
|
|
||||||
margin-left: 157.5rpx;
|
|
||||||
}
|
|
||||||
.mt-84.data-v-6d058dc0 {
|
|
||||||
margin-top: 157.5rpx;
|
|
||||||
}
|
|
||||||
.ml-86.data-v-6d058dc0 {
|
|
||||||
margin-left: 161.25rpx;
|
|
||||||
}
|
|
||||||
.mt-86.data-v-6d058dc0 {
|
|
||||||
margin-top: 161.25rpx;
|
|
||||||
}
|
|
||||||
.ml-88.data-v-6d058dc0 {
|
|
||||||
margin-left: 165rpx;
|
|
||||||
}
|
|
||||||
.mt-88.data-v-6d058dc0 {
|
|
||||||
margin-top: 165rpx;
|
|
||||||
}
|
|
||||||
.ml-90.data-v-6d058dc0 {
|
|
||||||
margin-left: 168.75rpx;
|
|
||||||
}
|
|
||||||
.mt-90.data-v-6d058dc0 {
|
|
||||||
margin-top: 168.75rpx;
|
|
||||||
}
|
|
||||||
.ml-92.data-v-6d058dc0 {
|
|
||||||
margin-left: 172.5rpx;
|
|
||||||
}
|
|
||||||
.mt-92.data-v-6d058dc0 {
|
|
||||||
margin-top: 172.5rpx;
|
|
||||||
}
|
|
||||||
.ml-94.data-v-6d058dc0 {
|
|
||||||
margin-left: 176.25rpx;
|
|
||||||
}
|
|
||||||
.mt-94.data-v-6d058dc0 {
|
|
||||||
margin-top: 176.25rpx;
|
|
||||||
}
|
|
||||||
.ml-96.data-v-6d058dc0 {
|
|
||||||
margin-left: 180rpx;
|
|
||||||
}
|
|
||||||
.mt-96.data-v-6d058dc0 {
|
|
||||||
margin-top: 180rpx;
|
|
||||||
}
|
|
||||||
.ml-98.data-v-6d058dc0 {
|
|
||||||
margin-left: 183.75rpx;
|
|
||||||
}
|
|
||||||
.mt-98.data-v-6d058dc0 {
|
|
||||||
margin-top: 183.75rpx;
|
|
||||||
}
|
|
||||||
.ml-100.data-v-6d058dc0 {
|
|
||||||
margin-left: 187.5rpx;
|
|
||||||
}
|
|
||||||
.mt-100.data-v-6d058dc0 {
|
|
||||||
margin-top: 187.5rpx;
|
|
||||||
}
|
|
||||||
.mt-9.data-v-6d058dc0 {
|
|
||||||
margin-top: 17.18rpx;
|
|
||||||
}
|
|
||||||
.ml-9.data-v-6d058dc0 {
|
|
||||||
margin-left: 17.18rpx;
|
|
||||||
}
|
|
||||||
.mt-593.data-v-6d058dc0 {
|
|
||||||
margin-top: 1131.68rpx;
|
|
||||||
}
|
|
||||||
.page.data-v-6d058dc0 {
|
|
||||||
padding-top: 20.99rpx;
|
|
||||||
background-color: #fffaf0;
|
|
||||||
width: 100%;
|
|
||||||
overflow-y: auto;
|
|
||||||
overflow-x: hidden;
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
.list.data-v-6d058dc0 {
|
|
||||||
padding: 0 20.99rpx;
|
|
||||||
}
|
|
||||||
.list-item.data-v-6d058dc0 {
|
|
||||||
padding: 30.53rpx 15.27rpx 30.53rpx 22.9rpx;
|
|
||||||
background-color: #ffffff;
|
|
||||||
border-radius: 9.54rpx;
|
|
||||||
border-left: solid 1.91rpx #818181;
|
|
||||||
border-right: solid 1.91rpx #818181;
|
|
||||||
border-top: solid 1.91rpx #818181;
|
|
||||||
border-bottom: solid 1.91rpx #818181;
|
|
||||||
}
|
|
||||||
.list-item.data-v-6d058dc0:first-child {
|
|
||||||
margin-top: 0;
|
|
||||||
}
|
|
||||||
.font.data-v-6d058dc0 {
|
|
||||||
font-size: 30.53rpx;
|
|
||||||
font-family: Open Sans;
|
|
||||||
line-height: 27.67rpx;
|
|
||||||
color: #323232;
|
|
||||||
}
|
|
||||||
.font_2.data-v-6d058dc0 {
|
|
||||||
font-size: 30.53rpx;
|
|
||||||
font-family: Open Sans;
|
|
||||||
line-height: 22.44rpx;
|
|
||||||
color: #323232;
|
|
||||||
}
|
|
||||||
.text-wrapper.data-v-6d058dc0 {
|
|
||||||
background-color: #ffbe55;
|
|
||||||
border-radius: 9.54rpx;
|
|
||||||
width: 70.61rpx;
|
|
||||||
height: 32.44rpx;
|
|
||||||
}
|
|
||||||
.text.data-v-6d058dc0 {
|
|
||||||
color: #ffffff;
|
|
||||||
font-size: 22.9rpx;
|
|
||||||
font-family: Open Sans;
|
|
||||||
line-height: 21.07rpx;
|
|
||||||
}
|
|
||||||
.image.data-v-6d058dc0 {
|
|
||||||
border-radius: 9.54rpx;
|
|
||||||
width: 40.08rpx;
|
|
||||||
height: 40.08rpx;
|
|
||||||
}
|
|
||||||
.section.data-v-6d058dc0 {
|
|
||||||
padding: 17.18rpx 0;
|
|
||||||
background-color: #ffffff;
|
|
||||||
}
|
|
||||||
.text-wrapper_2.data-v-6d058dc0 {
|
|
||||||
padding: 26.72rpx 0 22.9rpx;
|
|
||||||
background-color: #ffa948;
|
|
||||||
border-radius: 47.71rpx;
|
|
||||||
width: 629.77rpx;
|
|
||||||
}
|
|
||||||
.text_2.data-v-6d058dc0 {
|
|
||||||
color: #ffffff;
|
|
||||||
line-height: 28.24rpx;
|
|
||||||
}
|
|
|
@ -1 +0,0 @@
|
||||||
<view class="flex-col page data-v-6d058dc0"><view class="flex-col list data-v-6d058dc0"><view a:for="{{a}}" a:for-item="item" a:key="a" class="flex-row justify-between items-center list-item mt-9 data-v-6d058dc0"><view class="flex-row items-center data-v-6d058dc0"><text class="font data-v-6d058dc0">张三</text><text class="font_2 ml-9 data-v-6d058dc0">15888610253</text><view class="flex-col justify-start items-center shrink-0 text-wrapper ml-9 data-v-6d058dc0"><text class="text data-v-6d058dc0">默认</text></view></view><view class="flex-row data-v-6d058dc0"><image class="image data-v-6d058dc0" src="https://ide.code.fun/api/image?token=6711f04f38a7c1001587de59&name=6ff8502391df0676ffa6f9a4c72cf204.png"/><image class="ml-12 image data-v-6d058dc0" src="https://ide.code.fun/api/image?token=6711f04f38a7c1001587de59&name=33bb1d0b853cc38a598105b3dab0d494.png"/></view></view></view><view class="flex-col justify-start items-center section mt-593 data-v-6d058dc0"><view class="flex-col justify-start items-center text-wrapper_2 data-v-6d058dc0"><text class="font text_2 data-v-6d058dc0">新增联系人</text></view></view></view>
|
|
|
@ -1,14 +0,0 @@
|
||||||
"use strict";
|
|
||||||
const common_vendor = require("../../../common/vendor.js");
|
|
||||||
const _sfc_main = {};
|
|
||||||
function _sfc_render(_ctx, _cache) {
|
|
||||||
return {
|
|
||||||
a: common_vendor.f(_ctx.items, (item, index, i0) => {
|
|
||||||
return {
|
|
||||||
a: index
|
|
||||||
};
|
|
||||||
})
|
|
||||||
};
|
|
||||||
}
|
|
||||||
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"]]);
|
|
||||||
my.createPage(MiniProgramPage);
|
|
|
@ -1,5 +0,0 @@
|
||||||
{
|
|
||||||
"defaultTitle": "",
|
|
||||||
"titleBarColor": "#a0522d",
|
|
||||||
"usingComponents": {}
|
|
||||||
}
|
|
|
@ -1,517 +0,0 @@
|
||||||
/* 水平间距 */
|
|
||||||
/* 水平间距 */
|
|
||||||
/************************************************************
|
|
||||||
** 请将全局样式拷贝到项目的全局 CSS 文件或者当前页面的顶部 **
|
|
||||||
** 否则页面将无法正常显示 **
|
|
||||||
************************************************************/
|
|
||||||
html.data-v-ac6f555c {
|
|
||||||
font-size: 16px;
|
|
||||||
}
|
|
||||||
body.data-v-ac6f555c {
|
|
||||||
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-ac6f555c,
|
|
||||||
image.data-v-ac6f555c,
|
|
||||||
text.data-v-ac6f555c {
|
|
||||||
box-sizing: border-box;
|
|
||||||
flex-shrink: 0;
|
|
||||||
}
|
|
||||||
#app.data-v-ac6f555c {
|
|
||||||
width: 100vw;
|
|
||||||
height: 100vh;
|
|
||||||
}
|
|
||||||
.flex-row.data-v-ac6f555c {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
}
|
|
||||||
.flex-col.data-v-ac6f555c {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
.justify-start.data-v-ac6f555c {
|
|
||||||
justify-content: flex-start;
|
|
||||||
}
|
|
||||||
.justify-end.data-v-ac6f555c {
|
|
||||||
justify-content: flex-end;
|
|
||||||
}
|
|
||||||
.justify-center.data-v-ac6f555c {
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
.justify-between.data-v-ac6f555c {
|
|
||||||
justify-content: space-between;
|
|
||||||
}
|
|
||||||
.justify-around.data-v-ac6f555c {
|
|
||||||
justify-content: space-around;
|
|
||||||
}
|
|
||||||
.justify-evenly.data-v-ac6f555c {
|
|
||||||
justify-content: space-evenly;
|
|
||||||
}
|
|
||||||
.items-start.data-v-ac6f555c {
|
|
||||||
align-items: flex-start;
|
|
||||||
}
|
|
||||||
.items-end.data-v-ac6f555c {
|
|
||||||
align-items: flex-end;
|
|
||||||
}
|
|
||||||
.items-center.data-v-ac6f555c {
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
.items-baseline.data-v-ac6f555c {
|
|
||||||
align-items: baseline;
|
|
||||||
}
|
|
||||||
.items-stretch.data-v-ac6f555c {
|
|
||||||
align-items: stretch;
|
|
||||||
}
|
|
||||||
.self-start.data-v-ac6f555c {
|
|
||||||
align-self: flex-start;
|
|
||||||
}
|
|
||||||
.self-end.data-v-ac6f555c {
|
|
||||||
align-self: flex-end;
|
|
||||||
}
|
|
||||||
.self-center.data-v-ac6f555c {
|
|
||||||
align-self: center;
|
|
||||||
}
|
|
||||||
.self-baseline.data-v-ac6f555c {
|
|
||||||
align-self: baseline;
|
|
||||||
}
|
|
||||||
.self-stretch.data-v-ac6f555c {
|
|
||||||
align-self: stretch;
|
|
||||||
}
|
|
||||||
.flex-1.data-v-ac6f555c {
|
|
||||||
flex: 1 1 0%;
|
|
||||||
}
|
|
||||||
.flex-auto.data-v-ac6f555c {
|
|
||||||
flex: 1 1 auto;
|
|
||||||
}
|
|
||||||
.grow.data-v-ac6f555c {
|
|
||||||
flex-grow: 1;
|
|
||||||
}
|
|
||||||
.grow-0.data-v-ac6f555c {
|
|
||||||
flex-grow: 0;
|
|
||||||
}
|
|
||||||
.shrink.data-v-ac6f555c {
|
|
||||||
flex-shrink: 1;
|
|
||||||
}
|
|
||||||
.shrink-0.data-v-ac6f555c {
|
|
||||||
flex-shrink: 0;
|
|
||||||
}
|
|
||||||
.relative.data-v-ac6f555c {
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
.ml-2.data-v-ac6f555c {
|
|
||||||
margin-left: 3.75rpx;
|
|
||||||
}
|
|
||||||
.mt-2.data-v-ac6f555c {
|
|
||||||
margin-top: 3.75rpx;
|
|
||||||
}
|
|
||||||
.ml-4.data-v-ac6f555c {
|
|
||||||
margin-left: 7.5rpx;
|
|
||||||
}
|
|
||||||
.mt-4.data-v-ac6f555c {
|
|
||||||
margin-top: 7.5rpx;
|
|
||||||
}
|
|
||||||
.ml-6.data-v-ac6f555c {
|
|
||||||
margin-left: 11.25rpx;
|
|
||||||
}
|
|
||||||
.mt-6.data-v-ac6f555c {
|
|
||||||
margin-top: 11.25rpx;
|
|
||||||
}
|
|
||||||
.ml-8.data-v-ac6f555c {
|
|
||||||
margin-left: 15rpx;
|
|
||||||
}
|
|
||||||
.mt-8.data-v-ac6f555c {
|
|
||||||
margin-top: 15rpx;
|
|
||||||
}
|
|
||||||
.ml-10.data-v-ac6f555c {
|
|
||||||
margin-left: 18.75rpx;
|
|
||||||
}
|
|
||||||
.mt-10.data-v-ac6f555c {
|
|
||||||
margin-top: 18.75rpx;
|
|
||||||
}
|
|
||||||
.ml-12.data-v-ac6f555c {
|
|
||||||
margin-left: 22.5rpx;
|
|
||||||
}
|
|
||||||
.mt-12.data-v-ac6f555c {
|
|
||||||
margin-top: 22.5rpx;
|
|
||||||
}
|
|
||||||
.ml-14.data-v-ac6f555c {
|
|
||||||
margin-left: 26.25rpx;
|
|
||||||
}
|
|
||||||
.mt-14.data-v-ac6f555c {
|
|
||||||
margin-top: 26.25rpx;
|
|
||||||
}
|
|
||||||
.ml-16.data-v-ac6f555c {
|
|
||||||
margin-left: 30rpx;
|
|
||||||
}
|
|
||||||
.mt-16.data-v-ac6f555c {
|
|
||||||
margin-top: 30rpx;
|
|
||||||
}
|
|
||||||
.ml-18.data-v-ac6f555c {
|
|
||||||
margin-left: 33.75rpx;
|
|
||||||
}
|
|
||||||
.mt-18.data-v-ac6f555c {
|
|
||||||
margin-top: 33.75rpx;
|
|
||||||
}
|
|
||||||
.ml-20.data-v-ac6f555c {
|
|
||||||
margin-left: 37.5rpx;
|
|
||||||
}
|
|
||||||
.mt-20.data-v-ac6f555c {
|
|
||||||
margin-top: 37.5rpx;
|
|
||||||
}
|
|
||||||
.ml-22.data-v-ac6f555c {
|
|
||||||
margin-left: 41.25rpx;
|
|
||||||
}
|
|
||||||
.mt-22.data-v-ac6f555c {
|
|
||||||
margin-top: 41.25rpx;
|
|
||||||
}
|
|
||||||
.ml-24.data-v-ac6f555c {
|
|
||||||
margin-left: 45rpx;
|
|
||||||
}
|
|
||||||
.mt-24.data-v-ac6f555c {
|
|
||||||
margin-top: 45rpx;
|
|
||||||
}
|
|
||||||
.ml-26.data-v-ac6f555c {
|
|
||||||
margin-left: 48.75rpx;
|
|
||||||
}
|
|
||||||
.mt-26.data-v-ac6f555c {
|
|
||||||
margin-top: 48.75rpx;
|
|
||||||
}
|
|
||||||
.ml-28.data-v-ac6f555c {
|
|
||||||
margin-left: 52.5rpx;
|
|
||||||
}
|
|
||||||
.mt-28.data-v-ac6f555c {
|
|
||||||
margin-top: 52.5rpx;
|
|
||||||
}
|
|
||||||
.ml-30.data-v-ac6f555c {
|
|
||||||
margin-left: 56.25rpx;
|
|
||||||
}
|
|
||||||
.mt-30.data-v-ac6f555c {
|
|
||||||
margin-top: 56.25rpx;
|
|
||||||
}
|
|
||||||
.ml-32.data-v-ac6f555c {
|
|
||||||
margin-left: 60rpx;
|
|
||||||
}
|
|
||||||
.mt-32.data-v-ac6f555c {
|
|
||||||
margin-top: 60rpx;
|
|
||||||
}
|
|
||||||
.ml-34.data-v-ac6f555c {
|
|
||||||
margin-left: 63.75rpx;
|
|
||||||
}
|
|
||||||
.mt-34.data-v-ac6f555c {
|
|
||||||
margin-top: 63.75rpx;
|
|
||||||
}
|
|
||||||
.ml-36.data-v-ac6f555c {
|
|
||||||
margin-left: 67.5rpx;
|
|
||||||
}
|
|
||||||
.mt-36.data-v-ac6f555c {
|
|
||||||
margin-top: 67.5rpx;
|
|
||||||
}
|
|
||||||
.ml-38.data-v-ac6f555c {
|
|
||||||
margin-left: 71.25rpx;
|
|
||||||
}
|
|
||||||
.mt-38.data-v-ac6f555c {
|
|
||||||
margin-top: 71.25rpx;
|
|
||||||
}
|
|
||||||
.ml-40.data-v-ac6f555c {
|
|
||||||
margin-left: 75rpx;
|
|
||||||
}
|
|
||||||
.mt-40.data-v-ac6f555c {
|
|
||||||
margin-top: 75rpx;
|
|
||||||
}
|
|
||||||
.ml-42.data-v-ac6f555c {
|
|
||||||
margin-left: 78.75rpx;
|
|
||||||
}
|
|
||||||
.mt-42.data-v-ac6f555c {
|
|
||||||
margin-top: 78.75rpx;
|
|
||||||
}
|
|
||||||
.ml-44.data-v-ac6f555c {
|
|
||||||
margin-left: 82.5rpx;
|
|
||||||
}
|
|
||||||
.mt-44.data-v-ac6f555c {
|
|
||||||
margin-top: 82.5rpx;
|
|
||||||
}
|
|
||||||
.ml-46.data-v-ac6f555c {
|
|
||||||
margin-left: 86.25rpx;
|
|
||||||
}
|
|
||||||
.mt-46.data-v-ac6f555c {
|
|
||||||
margin-top: 86.25rpx;
|
|
||||||
}
|
|
||||||
.ml-48.data-v-ac6f555c {
|
|
||||||
margin-left: 90rpx;
|
|
||||||
}
|
|
||||||
.mt-48.data-v-ac6f555c {
|
|
||||||
margin-top: 90rpx;
|
|
||||||
}
|
|
||||||
.ml-50.data-v-ac6f555c {
|
|
||||||
margin-left: 93.75rpx;
|
|
||||||
}
|
|
||||||
.mt-50.data-v-ac6f555c {
|
|
||||||
margin-top: 93.75rpx;
|
|
||||||
}
|
|
||||||
.ml-52.data-v-ac6f555c {
|
|
||||||
margin-left: 97.5rpx;
|
|
||||||
}
|
|
||||||
.mt-52.data-v-ac6f555c {
|
|
||||||
margin-top: 97.5rpx;
|
|
||||||
}
|
|
||||||
.ml-54.data-v-ac6f555c {
|
|
||||||
margin-left: 101.25rpx;
|
|
||||||
}
|
|
||||||
.mt-54.data-v-ac6f555c {
|
|
||||||
margin-top: 101.25rpx;
|
|
||||||
}
|
|
||||||
.ml-56.data-v-ac6f555c {
|
|
||||||
margin-left: 105rpx;
|
|
||||||
}
|
|
||||||
.mt-56.data-v-ac6f555c {
|
|
||||||
margin-top: 105rpx;
|
|
||||||
}
|
|
||||||
.ml-58.data-v-ac6f555c {
|
|
||||||
margin-left: 108.75rpx;
|
|
||||||
}
|
|
||||||
.mt-58.data-v-ac6f555c {
|
|
||||||
margin-top: 108.75rpx;
|
|
||||||
}
|
|
||||||
.ml-60.data-v-ac6f555c {
|
|
||||||
margin-left: 112.5rpx;
|
|
||||||
}
|
|
||||||
.mt-60.data-v-ac6f555c {
|
|
||||||
margin-top: 112.5rpx;
|
|
||||||
}
|
|
||||||
.ml-62.data-v-ac6f555c {
|
|
||||||
margin-left: 116.25rpx;
|
|
||||||
}
|
|
||||||
.mt-62.data-v-ac6f555c {
|
|
||||||
margin-top: 116.25rpx;
|
|
||||||
}
|
|
||||||
.ml-64.data-v-ac6f555c {
|
|
||||||
margin-left: 120rpx;
|
|
||||||
}
|
|
||||||
.mt-64.data-v-ac6f555c {
|
|
||||||
margin-top: 120rpx;
|
|
||||||
}
|
|
||||||
.ml-66.data-v-ac6f555c {
|
|
||||||
margin-left: 123.75rpx;
|
|
||||||
}
|
|
||||||
.mt-66.data-v-ac6f555c {
|
|
||||||
margin-top: 123.75rpx;
|
|
||||||
}
|
|
||||||
.ml-68.data-v-ac6f555c {
|
|
||||||
margin-left: 127.5rpx;
|
|
||||||
}
|
|
||||||
.mt-68.data-v-ac6f555c {
|
|
||||||
margin-top: 127.5rpx;
|
|
||||||
}
|
|
||||||
.ml-70.data-v-ac6f555c {
|
|
||||||
margin-left: 131.25rpx;
|
|
||||||
}
|
|
||||||
.mt-70.data-v-ac6f555c {
|
|
||||||
margin-top: 131.25rpx;
|
|
||||||
}
|
|
||||||
.ml-72.data-v-ac6f555c {
|
|
||||||
margin-left: 135rpx;
|
|
||||||
}
|
|
||||||
.mt-72.data-v-ac6f555c {
|
|
||||||
margin-top: 135rpx;
|
|
||||||
}
|
|
||||||
.ml-74.data-v-ac6f555c {
|
|
||||||
margin-left: 138.75rpx;
|
|
||||||
}
|
|
||||||
.mt-74.data-v-ac6f555c {
|
|
||||||
margin-top: 138.75rpx;
|
|
||||||
}
|
|
||||||
.ml-76.data-v-ac6f555c {
|
|
||||||
margin-left: 142.5rpx;
|
|
||||||
}
|
|
||||||
.mt-76.data-v-ac6f555c {
|
|
||||||
margin-top: 142.5rpx;
|
|
||||||
}
|
|
||||||
.ml-78.data-v-ac6f555c {
|
|
||||||
margin-left: 146.25rpx;
|
|
||||||
}
|
|
||||||
.mt-78.data-v-ac6f555c {
|
|
||||||
margin-top: 146.25rpx;
|
|
||||||
}
|
|
||||||
.ml-80.data-v-ac6f555c {
|
|
||||||
margin-left: 150rpx;
|
|
||||||
}
|
|
||||||
.mt-80.data-v-ac6f555c {
|
|
||||||
margin-top: 150rpx;
|
|
||||||
}
|
|
||||||
.ml-82.data-v-ac6f555c {
|
|
||||||
margin-left: 153.75rpx;
|
|
||||||
}
|
|
||||||
.mt-82.data-v-ac6f555c {
|
|
||||||
margin-top: 153.75rpx;
|
|
||||||
}
|
|
||||||
.ml-84.data-v-ac6f555c {
|
|
||||||
margin-left: 157.5rpx;
|
|
||||||
}
|
|
||||||
.mt-84.data-v-ac6f555c {
|
|
||||||
margin-top: 157.5rpx;
|
|
||||||
}
|
|
||||||
.ml-86.data-v-ac6f555c {
|
|
||||||
margin-left: 161.25rpx;
|
|
||||||
}
|
|
||||||
.mt-86.data-v-ac6f555c {
|
|
||||||
margin-top: 161.25rpx;
|
|
||||||
}
|
|
||||||
.ml-88.data-v-ac6f555c {
|
|
||||||
margin-left: 165rpx;
|
|
||||||
}
|
|
||||||
.mt-88.data-v-ac6f555c {
|
|
||||||
margin-top: 165rpx;
|
|
||||||
}
|
|
||||||
.ml-90.data-v-ac6f555c {
|
|
||||||
margin-left: 168.75rpx;
|
|
||||||
}
|
|
||||||
.mt-90.data-v-ac6f555c {
|
|
||||||
margin-top: 168.75rpx;
|
|
||||||
}
|
|
||||||
.ml-92.data-v-ac6f555c {
|
|
||||||
margin-left: 172.5rpx;
|
|
||||||
}
|
|
||||||
.mt-92.data-v-ac6f555c {
|
|
||||||
margin-top: 172.5rpx;
|
|
||||||
}
|
|
||||||
.ml-94.data-v-ac6f555c {
|
|
||||||
margin-left: 176.25rpx;
|
|
||||||
}
|
|
||||||
.mt-94.data-v-ac6f555c {
|
|
||||||
margin-top: 176.25rpx;
|
|
||||||
}
|
|
||||||
.ml-96.data-v-ac6f555c {
|
|
||||||
margin-left: 180rpx;
|
|
||||||
}
|
|
||||||
.mt-96.data-v-ac6f555c {
|
|
||||||
margin-top: 180rpx;
|
|
||||||
}
|
|
||||||
.ml-98.data-v-ac6f555c {
|
|
||||||
margin-left: 183.75rpx;
|
|
||||||
}
|
|
||||||
.mt-98.data-v-ac6f555c {
|
|
||||||
margin-top: 183.75rpx;
|
|
||||||
}
|
|
||||||
.ml-100.data-v-ac6f555c {
|
|
||||||
margin-left: 187.5rpx;
|
|
||||||
}
|
|
||||||
.mt-100.data-v-ac6f555c {
|
|
||||||
margin-top: 187.5rpx;
|
|
||||||
}
|
|
||||||
.ml-23.data-v-ac6f555c {
|
|
||||||
margin-left: 43.13rpx;
|
|
||||||
}
|
|
||||||
.mt-9.data-v-ac6f555c {
|
|
||||||
margin-top: 16.88rpx;
|
|
||||||
}
|
|
||||||
.ml-5.data-v-ac6f555c {
|
|
||||||
margin-left: 9.38rpx;
|
|
||||||
}
|
|
||||||
.mt-104.data-v-ac6f555c {
|
|
||||||
margin-top: 195rpx;
|
|
||||||
}
|
|
||||||
.page.data-v-ac6f555c {
|
|
||||||
padding: 0 31.88rpx 31.88rpx 45rpx;
|
|
||||||
background-color: #fffef8;
|
|
||||||
border-radius: 37.5rpx 37.5rpx 0rpx 0rpx;
|
|
||||||
width: 100%;
|
|
||||||
overflow-y: auto;
|
|
||||||
overflow-x: hidden;
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
.group.data-v-ac6f555c {
|
|
||||||
padding: 28.13rpx 0 37.5rpx 11.25rpx;
|
|
||||||
}
|
|
||||||
.image-wrapper.data-v-ac6f555c {
|
|
||||||
margin-top: 76.88rpx;
|
|
||||||
border-radius: 5.63rpx;
|
|
||||||
background-size: 100% 100%;
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
width: 191.25rpx;
|
|
||||||
height: 189.38rpx;
|
|
||||||
}
|
|
||||||
.image_2.data-v-ac6f555c {
|
|
||||||
border-radius: 5.63rpx;
|
|
||||||
width: 37.5rpx;
|
|
||||||
height: 37.5rpx;
|
|
||||||
}
|
|
||||||
.group_2.data-v-ac6f555c {
|
|
||||||
margin-top: 112.5rpx;
|
|
||||||
}
|
|
||||||
.group_3.data-v-ac6f555c {
|
|
||||||
margin-left: 3.75rpx;
|
|
||||||
}
|
|
||||||
.text_2.data-v-ac6f555c {
|
|
||||||
color: #ff0000;
|
|
||||||
font-size: 26.25rpx;
|
|
||||||
font-family: STZhongsong;
|
|
||||||
line-height: 18.13rpx;
|
|
||||||
}
|
|
||||||
.text.data-v-ac6f555c {
|
|
||||||
color: #ff0000;
|
|
||||||
font-size: 37.5rpx;
|
|
||||||
font-family: STZhongsong;
|
|
||||||
line-height: 26.92rpx;
|
|
||||||
}
|
|
||||||
.text_3.data-v-ac6f555c {
|
|
||||||
color: #000000;
|
|
||||||
font-size: 28.13rpx;
|
|
||||||
font-family: Open Sans;
|
|
||||||
line-height: 26.21rpx;
|
|
||||||
}
|
|
||||||
.text_4.data-v-ac6f555c {
|
|
||||||
color: #000000;
|
|
||||||
font-size: 26.25rpx;
|
|
||||||
font-family: Open Sans;
|
|
||||||
line-height: 24.34rpx;
|
|
||||||
}
|
|
||||||
.image.data-v-ac6f555c {
|
|
||||||
width: 52.5rpx;
|
|
||||||
height: 52.5rpx;
|
|
||||||
}
|
|
||||||
.image-wrapper_2.data-v-ac6f555c {
|
|
||||||
padding: 11.25rpx 0;
|
|
||||||
background-color: #f5f5dc;
|
|
||||||
border-radius: 5.63rpx 0rpx 0rpx 5.63rpx;
|
|
||||||
width: 52.5rpx;
|
|
||||||
height: 52.5rpx;
|
|
||||||
}
|
|
||||||
.image_3.data-v-ac6f555c {
|
|
||||||
width: 33.75rpx;
|
|
||||||
height: 33.75rpx;
|
|
||||||
}
|
|
||||||
.text-wrapper.data-v-ac6f555c {
|
|
||||||
padding: 15rpx 0 11.25rpx;
|
|
||||||
background-color: #f5f5dc;
|
|
||||||
width: 52.5rpx;
|
|
||||||
height: 52.5rpx;
|
|
||||||
}
|
|
||||||
.text_5.data-v-ac6f555c {
|
|
||||||
color: #000000;
|
|
||||||
font-size: 30rpx;
|
|
||||||
font-family: Open Sans;
|
|
||||||
line-height: 21.41rpx;
|
|
||||||
}
|
|
||||||
.image-wrapper_3.data-v-ac6f555c {
|
|
||||||
padding: 11.25rpx 0;
|
|
||||||
background-color: #f5f5dc;
|
|
||||||
border-radius: 0rpx 5.63rpx 5.63rpx 0rpx;
|
|
||||||
width: 52.5rpx;
|
|
||||||
height: 52.5rpx;
|
|
||||||
}
|
|
||||||
.text-wrapper_2.data-v-ac6f555c {
|
|
||||||
margin-right: 15rpx;
|
|
||||||
padding: 22.5rpx 0;
|
|
||||||
background-color: #ffd45a;
|
|
||||||
border-radius: 93.75rpx;
|
|
||||||
}
|
|
||||||
.text_6.data-v-ac6f555c {
|
|
||||||
color: #ffffff;
|
|
||||||
font-size: 30rpx;
|
|
||||||
font-family: Inter;
|
|
||||||
font-weight: 700;
|
|
||||||
line-height: 28.2rpx;
|
|
||||||
}
|
|
|
@ -1 +0,0 @@
|
||||||
<view class="flex-col page data-v-ac6f555c"><view class="flex-row group data-v-ac6f555c"><view class=" data-v-ac6f555c"><image class="flex-col justify-start items-end shrink-0 self-start image-wrapper data-v-ac6f555c" src="{{a}}"/></view><view class="flex-row flex-1 ml-23 data-v-ac6f555c"><view class="flex-col flex-1 self-start group_2 data-v-ac6f555c"><view class="self-start group_3 data-v-ac6f555c"><text class="text_2 data-v-ac6f555c">¥</text><text class="text data-v-ac6f555c">{{b}}</text></view><view class="mt-14 flex-col items-start self-stretch data-v-ac6f555c"><text class="text_3 data-v-ac6f555c">{{c}}</text></view></view><view class="flex-col shrink-0 ml-5 data-v-ac6f555c"><image class="self-end image data-v-ac6f555c" src="https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FxSHTnKhk-close.png" onTap="{{d}}"/><view class="flex-row self-stretch mt-104 data-v-ac6f555c"><view class="flex-col justify-start items-center image-wrapper_2 data-v-ac6f555c"><image class="image_3 data-v-ac6f555c" src="https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FosWvYyNx-short1.png" onTap="{{e}}"/></view><view class="ml-2 flex-col justify-start items-center text-wrapper data-v-ac6f555c"><text class="text_5 data-v-ac6f555c">{{f}}</text></view><view class="ml-2 flex-col justify-start items-center image-wrapper_3 data-v-ac6f555c"><image class="image_3 data-v-ac6f555c" src="https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FGbdSQDul-add1.png" onTap="{{g}}"/></view></view></view></view></view><view class="flex-col justify-start items-center text-wrapper_2 data-v-ac6f555c" onTap="{{h}}"><text class="text_6 data-v-ac6f555c">加入购物车</text></view></view>
|
|
|
@ -1,3 +0,0 @@
|
||||||
"use strict";
|
|
||||||
const addProduct = require("../../../addProduct.js");
|
|
||||||
my.createPage(addProduct.MiniProgramPage);
|
|
|
@ -1,4 +0,0 @@
|
||||||
{
|
|
||||||
"defaultTitle": "",
|
|
||||||
"usingComponents": {}
|
|
||||||
}
|
|
|
@ -1,3 +0,0 @@
|
||||||
"use strict";
|
|
||||||
const addProduct = require("../../../addProduct.js");
|
|
||||||
my.createPage(addProduct.MiniProgramPage);
|
|
|
@ -1,527 +0,0 @@
|
||||||
/* 水平间距 */
|
|
||||||
/* 水平间距 */
|
|
||||||
/************************************************************
|
|
||||||
** 请将全局样式拷贝到项目的全局 CSS 文件或者当前页面的顶部 **
|
|
||||||
** 否则页面将无法正常显示 **
|
|
||||||
************************************************************/
|
|
||||||
html.data-v-fb57d854 {
|
|
||||||
font-size: 16px;
|
|
||||||
}
|
|
||||||
body.data-v-fb57d854 {
|
|
||||||
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-fb57d854,
|
|
||||||
image.data-v-fb57d854,
|
|
||||||
text.data-v-fb57d854 {
|
|
||||||
box-sizing: border-box;
|
|
||||||
flex-shrink: 0;
|
|
||||||
}
|
|
||||||
#app.data-v-fb57d854 {
|
|
||||||
width: 100vw;
|
|
||||||
height: 100vh;
|
|
||||||
}
|
|
||||||
.flex-row.data-v-fb57d854 {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
}
|
|
||||||
.flex-col.data-v-fb57d854 {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
.justify-start.data-v-fb57d854 {
|
|
||||||
justify-content: flex-start;
|
|
||||||
}
|
|
||||||
.justify-end.data-v-fb57d854 {
|
|
||||||
justify-content: flex-end;
|
|
||||||
}
|
|
||||||
.justify-center.data-v-fb57d854 {
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
.justify-between.data-v-fb57d854 {
|
|
||||||
justify-content: space-between;
|
|
||||||
}
|
|
||||||
.justify-around.data-v-fb57d854 {
|
|
||||||
justify-content: space-around;
|
|
||||||
}
|
|
||||||
.justify-evenly.data-v-fb57d854 {
|
|
||||||
justify-content: space-evenly;
|
|
||||||
}
|
|
||||||
.items-start.data-v-fb57d854 {
|
|
||||||
align-items: flex-start;
|
|
||||||
}
|
|
||||||
.items-end.data-v-fb57d854 {
|
|
||||||
align-items: flex-end;
|
|
||||||
}
|
|
||||||
.items-center.data-v-fb57d854 {
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
.items-baseline.data-v-fb57d854 {
|
|
||||||
align-items: baseline;
|
|
||||||
}
|
|
||||||
.items-stretch.data-v-fb57d854 {
|
|
||||||
align-items: stretch;
|
|
||||||
}
|
|
||||||
.self-start.data-v-fb57d854 {
|
|
||||||
align-self: flex-start;
|
|
||||||
}
|
|
||||||
.self-end.data-v-fb57d854 {
|
|
||||||
align-self: flex-end;
|
|
||||||
}
|
|
||||||
.self-center.data-v-fb57d854 {
|
|
||||||
align-self: center;
|
|
||||||
}
|
|
||||||
.self-baseline.data-v-fb57d854 {
|
|
||||||
align-self: baseline;
|
|
||||||
}
|
|
||||||
.self-stretch.data-v-fb57d854 {
|
|
||||||
align-self: stretch;
|
|
||||||
}
|
|
||||||
.flex-1.data-v-fb57d854 {
|
|
||||||
flex: 1 1 0%;
|
|
||||||
}
|
|
||||||
.flex-auto.data-v-fb57d854 {
|
|
||||||
flex: 1 1 auto;
|
|
||||||
}
|
|
||||||
.grow.data-v-fb57d854 {
|
|
||||||
flex-grow: 1;
|
|
||||||
}
|
|
||||||
.grow-0.data-v-fb57d854 {
|
|
||||||
flex-grow: 0;
|
|
||||||
}
|
|
||||||
.shrink.data-v-fb57d854 {
|
|
||||||
flex-shrink: 1;
|
|
||||||
}
|
|
||||||
.shrink-0.data-v-fb57d854 {
|
|
||||||
flex-shrink: 0;
|
|
||||||
}
|
|
||||||
.relative.data-v-fb57d854 {
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
.ml-2.data-v-fb57d854 {
|
|
||||||
margin-left: 3.75rpx;
|
|
||||||
}
|
|
||||||
.mt-2.data-v-fb57d854 {
|
|
||||||
margin-top: 3.75rpx;
|
|
||||||
}
|
|
||||||
.ml-4.data-v-fb57d854 {
|
|
||||||
margin-left: 7.5rpx;
|
|
||||||
}
|
|
||||||
.mt-4.data-v-fb57d854 {
|
|
||||||
margin-top: 7.5rpx;
|
|
||||||
}
|
|
||||||
.ml-6.data-v-fb57d854 {
|
|
||||||
margin-left: 11.25rpx;
|
|
||||||
}
|
|
||||||
.mt-6.data-v-fb57d854 {
|
|
||||||
margin-top: 11.25rpx;
|
|
||||||
}
|
|
||||||
.ml-8.data-v-fb57d854 {
|
|
||||||
margin-left: 15rpx;
|
|
||||||
}
|
|
||||||
.mt-8.data-v-fb57d854 {
|
|
||||||
margin-top: 15rpx;
|
|
||||||
}
|
|
||||||
.ml-10.data-v-fb57d854 {
|
|
||||||
margin-left: 18.75rpx;
|
|
||||||
}
|
|
||||||
.mt-10.data-v-fb57d854 {
|
|
||||||
margin-top: 18.75rpx;
|
|
||||||
}
|
|
||||||
.ml-12.data-v-fb57d854 {
|
|
||||||
margin-left: 22.5rpx;
|
|
||||||
}
|
|
||||||
.mt-12.data-v-fb57d854 {
|
|
||||||
margin-top: 22.5rpx;
|
|
||||||
}
|
|
||||||
.ml-14.data-v-fb57d854 {
|
|
||||||
margin-left: 26.25rpx;
|
|
||||||
}
|
|
||||||
.mt-14.data-v-fb57d854 {
|
|
||||||
margin-top: 26.25rpx;
|
|
||||||
}
|
|
||||||
.ml-16.data-v-fb57d854 {
|
|
||||||
margin-left: 30rpx;
|
|
||||||
}
|
|
||||||
.mt-16.data-v-fb57d854 {
|
|
||||||
margin-top: 30rpx;
|
|
||||||
}
|
|
||||||
.ml-18.data-v-fb57d854 {
|
|
||||||
margin-left: 33.75rpx;
|
|
||||||
}
|
|
||||||
.mt-18.data-v-fb57d854 {
|
|
||||||
margin-top: 33.75rpx;
|
|
||||||
}
|
|
||||||
.ml-20.data-v-fb57d854 {
|
|
||||||
margin-left: 37.5rpx;
|
|
||||||
}
|
|
||||||
.mt-20.data-v-fb57d854 {
|
|
||||||
margin-top: 37.5rpx;
|
|
||||||
}
|
|
||||||
.ml-22.data-v-fb57d854 {
|
|
||||||
margin-left: 41.25rpx;
|
|
||||||
}
|
|
||||||
.mt-22.data-v-fb57d854 {
|
|
||||||
margin-top: 41.25rpx;
|
|
||||||
}
|
|
||||||
.ml-24.data-v-fb57d854 {
|
|
||||||
margin-left: 45rpx;
|
|
||||||
}
|
|
||||||
.mt-24.data-v-fb57d854 {
|
|
||||||
margin-top: 45rpx;
|
|
||||||
}
|
|
||||||
.ml-26.data-v-fb57d854 {
|
|
||||||
margin-left: 48.75rpx;
|
|
||||||
}
|
|
||||||
.mt-26.data-v-fb57d854 {
|
|
||||||
margin-top: 48.75rpx;
|
|
||||||
}
|
|
||||||
.ml-28.data-v-fb57d854 {
|
|
||||||
margin-left: 52.5rpx;
|
|
||||||
}
|
|
||||||
.mt-28.data-v-fb57d854 {
|
|
||||||
margin-top: 52.5rpx;
|
|
||||||
}
|
|
||||||
.ml-30.data-v-fb57d854 {
|
|
||||||
margin-left: 56.25rpx;
|
|
||||||
}
|
|
||||||
.mt-30.data-v-fb57d854 {
|
|
||||||
margin-top: 56.25rpx;
|
|
||||||
}
|
|
||||||
.ml-32.data-v-fb57d854 {
|
|
||||||
margin-left: 60rpx;
|
|
||||||
}
|
|
||||||
.mt-32.data-v-fb57d854 {
|
|
||||||
margin-top: 60rpx;
|
|
||||||
}
|
|
||||||
.ml-34.data-v-fb57d854 {
|
|
||||||
margin-left: 63.75rpx;
|
|
||||||
}
|
|
||||||
.mt-34.data-v-fb57d854 {
|
|
||||||
margin-top: 63.75rpx;
|
|
||||||
}
|
|
||||||
.ml-36.data-v-fb57d854 {
|
|
||||||
margin-left: 67.5rpx;
|
|
||||||
}
|
|
||||||
.mt-36.data-v-fb57d854 {
|
|
||||||
margin-top: 67.5rpx;
|
|
||||||
}
|
|
||||||
.ml-38.data-v-fb57d854 {
|
|
||||||
margin-left: 71.25rpx;
|
|
||||||
}
|
|
||||||
.mt-38.data-v-fb57d854 {
|
|
||||||
margin-top: 71.25rpx;
|
|
||||||
}
|
|
||||||
.ml-40.data-v-fb57d854 {
|
|
||||||
margin-left: 75rpx;
|
|
||||||
}
|
|
||||||
.mt-40.data-v-fb57d854 {
|
|
||||||
margin-top: 75rpx;
|
|
||||||
}
|
|
||||||
.ml-42.data-v-fb57d854 {
|
|
||||||
margin-left: 78.75rpx;
|
|
||||||
}
|
|
||||||
.mt-42.data-v-fb57d854 {
|
|
||||||
margin-top: 78.75rpx;
|
|
||||||
}
|
|
||||||
.ml-44.data-v-fb57d854 {
|
|
||||||
margin-left: 82.5rpx;
|
|
||||||
}
|
|
||||||
.mt-44.data-v-fb57d854 {
|
|
||||||
margin-top: 82.5rpx;
|
|
||||||
}
|
|
||||||
.ml-46.data-v-fb57d854 {
|
|
||||||
margin-left: 86.25rpx;
|
|
||||||
}
|
|
||||||
.mt-46.data-v-fb57d854 {
|
|
||||||
margin-top: 86.25rpx;
|
|
||||||
}
|
|
||||||
.ml-48.data-v-fb57d854 {
|
|
||||||
margin-left: 90rpx;
|
|
||||||
}
|
|
||||||
.mt-48.data-v-fb57d854 {
|
|
||||||
margin-top: 90rpx;
|
|
||||||
}
|
|
||||||
.ml-50.data-v-fb57d854 {
|
|
||||||
margin-left: 93.75rpx;
|
|
||||||
}
|
|
||||||
.mt-50.data-v-fb57d854 {
|
|
||||||
margin-top: 93.75rpx;
|
|
||||||
}
|
|
||||||
.ml-52.data-v-fb57d854 {
|
|
||||||
margin-left: 97.5rpx;
|
|
||||||
}
|
|
||||||
.mt-52.data-v-fb57d854 {
|
|
||||||
margin-top: 97.5rpx;
|
|
||||||
}
|
|
||||||
.ml-54.data-v-fb57d854 {
|
|
||||||
margin-left: 101.25rpx;
|
|
||||||
}
|
|
||||||
.mt-54.data-v-fb57d854 {
|
|
||||||
margin-top: 101.25rpx;
|
|
||||||
}
|
|
||||||
.ml-56.data-v-fb57d854 {
|
|
||||||
margin-left: 105rpx;
|
|
||||||
}
|
|
||||||
.mt-56.data-v-fb57d854 {
|
|
||||||
margin-top: 105rpx;
|
|
||||||
}
|
|
||||||
.ml-58.data-v-fb57d854 {
|
|
||||||
margin-left: 108.75rpx;
|
|
||||||
}
|
|
||||||
.mt-58.data-v-fb57d854 {
|
|
||||||
margin-top: 108.75rpx;
|
|
||||||
}
|
|
||||||
.ml-60.data-v-fb57d854 {
|
|
||||||
margin-left: 112.5rpx;
|
|
||||||
}
|
|
||||||
.mt-60.data-v-fb57d854 {
|
|
||||||
margin-top: 112.5rpx;
|
|
||||||
}
|
|
||||||
.ml-62.data-v-fb57d854 {
|
|
||||||
margin-left: 116.25rpx;
|
|
||||||
}
|
|
||||||
.mt-62.data-v-fb57d854 {
|
|
||||||
margin-top: 116.25rpx;
|
|
||||||
}
|
|
||||||
.ml-64.data-v-fb57d854 {
|
|
||||||
margin-left: 120rpx;
|
|
||||||
}
|
|
||||||
.mt-64.data-v-fb57d854 {
|
|
||||||
margin-top: 120rpx;
|
|
||||||
}
|
|
||||||
.ml-66.data-v-fb57d854 {
|
|
||||||
margin-left: 123.75rpx;
|
|
||||||
}
|
|
||||||
.mt-66.data-v-fb57d854 {
|
|
||||||
margin-top: 123.75rpx;
|
|
||||||
}
|
|
||||||
.ml-68.data-v-fb57d854 {
|
|
||||||
margin-left: 127.5rpx;
|
|
||||||
}
|
|
||||||
.mt-68.data-v-fb57d854 {
|
|
||||||
margin-top: 127.5rpx;
|
|
||||||
}
|
|
||||||
.ml-70.data-v-fb57d854 {
|
|
||||||
margin-left: 131.25rpx;
|
|
||||||
}
|
|
||||||
.mt-70.data-v-fb57d854 {
|
|
||||||
margin-top: 131.25rpx;
|
|
||||||
}
|
|
||||||
.ml-72.data-v-fb57d854 {
|
|
||||||
margin-left: 135rpx;
|
|
||||||
}
|
|
||||||
.mt-72.data-v-fb57d854 {
|
|
||||||
margin-top: 135rpx;
|
|
||||||
}
|
|
||||||
.ml-74.data-v-fb57d854 {
|
|
||||||
margin-left: 138.75rpx;
|
|
||||||
}
|
|
||||||
.mt-74.data-v-fb57d854 {
|
|
||||||
margin-top: 138.75rpx;
|
|
||||||
}
|
|
||||||
.ml-76.data-v-fb57d854 {
|
|
||||||
margin-left: 142.5rpx;
|
|
||||||
}
|
|
||||||
.mt-76.data-v-fb57d854 {
|
|
||||||
margin-top: 142.5rpx;
|
|
||||||
}
|
|
||||||
.ml-78.data-v-fb57d854 {
|
|
||||||
margin-left: 146.25rpx;
|
|
||||||
}
|
|
||||||
.mt-78.data-v-fb57d854 {
|
|
||||||
margin-top: 146.25rpx;
|
|
||||||
}
|
|
||||||
.ml-80.data-v-fb57d854 {
|
|
||||||
margin-left: 150rpx;
|
|
||||||
}
|
|
||||||
.mt-80.data-v-fb57d854 {
|
|
||||||
margin-top: 150rpx;
|
|
||||||
}
|
|
||||||
.ml-82.data-v-fb57d854 {
|
|
||||||
margin-left: 153.75rpx;
|
|
||||||
}
|
|
||||||
.mt-82.data-v-fb57d854 {
|
|
||||||
margin-top: 153.75rpx;
|
|
||||||
}
|
|
||||||
.ml-84.data-v-fb57d854 {
|
|
||||||
margin-left: 157.5rpx;
|
|
||||||
}
|
|
||||||
.mt-84.data-v-fb57d854 {
|
|
||||||
margin-top: 157.5rpx;
|
|
||||||
}
|
|
||||||
.ml-86.data-v-fb57d854 {
|
|
||||||
margin-left: 161.25rpx;
|
|
||||||
}
|
|
||||||
.mt-86.data-v-fb57d854 {
|
|
||||||
margin-top: 161.25rpx;
|
|
||||||
}
|
|
||||||
.ml-88.data-v-fb57d854 {
|
|
||||||
margin-left: 165rpx;
|
|
||||||
}
|
|
||||||
.mt-88.data-v-fb57d854 {
|
|
||||||
margin-top: 165rpx;
|
|
||||||
}
|
|
||||||
.ml-90.data-v-fb57d854 {
|
|
||||||
margin-left: 168.75rpx;
|
|
||||||
}
|
|
||||||
.mt-90.data-v-fb57d854 {
|
|
||||||
margin-top: 168.75rpx;
|
|
||||||
}
|
|
||||||
.ml-92.data-v-fb57d854 {
|
|
||||||
margin-left: 172.5rpx;
|
|
||||||
}
|
|
||||||
.mt-92.data-v-fb57d854 {
|
|
||||||
margin-top: 172.5rpx;
|
|
||||||
}
|
|
||||||
.ml-94.data-v-fb57d854 {
|
|
||||||
margin-left: 176.25rpx;
|
|
||||||
}
|
|
||||||
.mt-94.data-v-fb57d854 {
|
|
||||||
margin-top: 176.25rpx;
|
|
||||||
}
|
|
||||||
.ml-96.data-v-fb57d854 {
|
|
||||||
margin-left: 180rpx;
|
|
||||||
}
|
|
||||||
.mt-96.data-v-fb57d854 {
|
|
||||||
margin-top: 180rpx;
|
|
||||||
}
|
|
||||||
.ml-98.data-v-fb57d854 {
|
|
||||||
margin-left: 183.75rpx;
|
|
||||||
}
|
|
||||||
.mt-98.data-v-fb57d854 {
|
|
||||||
margin-top: 183.75rpx;
|
|
||||||
}
|
|
||||||
.ml-100.data-v-fb57d854 {
|
|
||||||
margin-left: 187.5rpx;
|
|
||||||
}
|
|
||||||
.mt-100.data-v-fb57d854 {
|
|
||||||
margin-top: 187.5rpx;
|
|
||||||
}
|
|
||||||
.mt-15.data-v-fb57d854 {
|
|
||||||
margin-top: 28.13rpx;
|
|
||||||
}
|
|
||||||
.ml-27.data-v-fb57d854 {
|
|
||||||
margin-left: 50.63rpx;
|
|
||||||
}
|
|
||||||
.ml-13.data-v-fb57d854 {
|
|
||||||
margin-left: 24.38rpx;
|
|
||||||
}
|
|
||||||
.mt-462.data-v-fb57d854 {
|
|
||||||
margin-top: 866.25rpx;
|
|
||||||
}
|
|
||||||
.page.data-v-fb57d854 {
|
|
||||||
padding-top: 26.44rpx;
|
|
||||||
background-color: #fffaf0;
|
|
||||||
width: 100%;
|
|
||||||
overflow-y: auto;
|
|
||||||
overflow-x: hidden;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
.group.data-v-fb57d854 {
|
|
||||||
padding: 0 23.4rpx;
|
|
||||||
}
|
|
||||||
.font_2.data-v-fb57d854 {
|
|
||||||
font-size: 26.25rpx;
|
|
||||||
font-family: Open Sans;
|
|
||||||
line-height: 24.34rpx;
|
|
||||||
color: #323232;
|
|
||||||
}
|
|
||||||
.text.data-v-fb57d854 {
|
|
||||||
line-height: 24.49rpx;
|
|
||||||
}
|
|
||||||
.section.data-v-fb57d854 {
|
|
||||||
margin-left: 2.85rpx;
|
|
||||||
margin-right: 14.1rpx;
|
|
||||||
padding-left: 20.49rpx;
|
|
||||||
padding-right: 15.13rpx;
|
|
||||||
background-color: #fffef8;
|
|
||||||
border-radius: 9.38rpx;
|
|
||||||
border: solid 1.88rpx #818181;
|
|
||||||
}
|
|
||||||
.group_2.data-v-fb57d854 {
|
|
||||||
padding: 24.24rpx 4.65rpx 12.19rpx;
|
|
||||||
border-bottom: solid 1.88rpx #efefef;
|
|
||||||
}
|
|
||||||
.text-wrapper.data-v-fb57d854 {
|
|
||||||
flex: 1 1 0;
|
|
||||||
margin-right: 29.1rpx;
|
|
||||||
}
|
|
||||||
.group_3.data-v-fb57d854 {
|
|
||||||
padding: 14.06rpx 5.04rpx 12.19rpx;
|
|
||||||
border-bottom: solid 1.88rpx #efefef;
|
|
||||||
}
|
|
||||||
.text_3.data-v-fb57d854 {
|
|
||||||
line-height: 24.17rpx;
|
|
||||||
}
|
|
||||||
.text-wrapper_2.data-v-fb57d854 {
|
|
||||||
flex: 1 1 0;
|
|
||||||
margin-right: 28.71rpx;
|
|
||||||
}
|
|
||||||
.group_4.data-v-fb57d854 {
|
|
||||||
padding: 12.19rpx 4.29rpx 10.31rpx;
|
|
||||||
border-bottom: solid 1.88rpx #efefef;
|
|
||||||
}
|
|
||||||
.text_5.data-v-fb57d854 {
|
|
||||||
line-height: 24.21rpx;
|
|
||||||
}
|
|
||||||
.group_5.data-v-fb57d854 {
|
|
||||||
margin-right: 12.58rpx;
|
|
||||||
}
|
|
||||||
.text-wrapper_3.data-v-fb57d854 {
|
|
||||||
margin-right: 16.88rpx;
|
|
||||||
}
|
|
||||||
.image.data-v-fb57d854 {
|
|
||||||
width: 48.75rpx;
|
|
||||||
height: 48.75rpx;
|
|
||||||
}
|
|
||||||
.pos.data-v-fb57d854 {
|
|
||||||
position: absolute;
|
|
||||||
right: 0;
|
|
||||||
bottom: 0;
|
|
||||||
}
|
|
||||||
.group_6.data-v-fb57d854 {
|
|
||||||
padding: 14.06rpx 4.8rpx 8.44rpx;
|
|
||||||
border-bottom: solid 1.88rpx #efefef;
|
|
||||||
}
|
|
||||||
.text_7.data-v-fb57d854 {
|
|
||||||
line-height: 24.26rpx;
|
|
||||||
}
|
|
||||||
.section_2.data-v-fb57d854 {
|
|
||||||
width: 300rpx;
|
|
||||||
height: 150rpx;
|
|
||||||
flex: 1 1 0;
|
|
||||||
margin-right: 19.57rpx;
|
|
||||||
}
|
|
||||||
.group_7.data-v-fb57d854 {
|
|
||||||
padding: 25.31rpx 4.88rpx 32.01rpx;
|
|
||||||
}
|
|
||||||
.image_2.data-v-fb57d854 {
|
|
||||||
margin-right: 19.5rpx;
|
|
||||||
width: 33.75rpx;
|
|
||||||
height: 33.75rpx;
|
|
||||||
}
|
|
||||||
.section_3.data-v-fb57d854 {
|
|
||||||
position: fixed;
|
|
||||||
left: 0;
|
|
||||||
right: 0;
|
|
||||||
bottom: 0;
|
|
||||||
margin-right: 13.13rpx;
|
|
||||||
padding: 16.88rpx 0;
|
|
||||||
background-color: #fffef8;
|
|
||||||
}
|
|
||||||
.text-wrapper_4.data-v-fb57d854 {
|
|
||||||
padding: 27.24rpx 0 23.61rpx;
|
|
||||||
background-color: #ffa948;
|
|
||||||
border-radius: 46.88rpx;
|
|
||||||
width: 618.75rpx;
|
|
||||||
}
|
|
||||||
.text_8.data-v-fb57d854 {
|
|
||||||
color: #ffffff;
|
|
||||||
font-size: 30rpx;
|
|
||||||
font-family: Open Sans;
|
|
||||||
line-height: 27.9rpx;
|
|
||||||
}
|
|
|
@ -1 +0,0 @@
|
||||||
<view class="flex-col page data-v-fb57d854"><view class="flex-col group data-v-fb57d854"><text class="self-start font_2 text data-v-fb57d854">收货信息</text><view class="flex-col self-stretch section mt-15 data-v-fb57d854"><view class="flex-row items-center group_2 data-v-fb57d854"><text class="font_2 data-v-fb57d854">收货人</text><input class="text-wrapper ml-27 data-v-fb57d854" placeholder="请输入姓名" value="{{a}}" onInput="{{b}}"/></view><view class="flex-row items-center group_3 data-v-fb57d854"><text class="font_2 text_3 data-v-fb57d854">手机号码</text><input class="text-wrapper_2 ml-12 data-v-fb57d854" placeholder="请输入手机号码" value="{{c}}" onInput="{{d}}"/></view><view class="flex-row items-center group_4 data-v-fb57d854"><text class="font_2 text_5 data-v-fb57d854">所在地区</text><view class="flex-col justify-start flex-1 relative group_5 ml-13 data-v-fb57d854"><input class="text-wrapper_3 data-v-fb57d854" placeholder="请输入地区" value="{{e}}" onInput="{{f}}"/><image class="image pos data-v-fb57d854" src="{{g}}"/></view></view><view class="flex-row items-center group_6 data-v-fb57d854"><text class="font_2 text_7 data-v-fb57d854">详细地址</text><textarea class="section_2 ml-12 data-v-fb57d854" placeholder="输入详细地址" value="{{h}}" onInput="{{i}}"/></view><view class="flex-row justify-between items-center group_7 data-v-fb57d854"><checkbox-group class="data-v-fb57d854" onChange="{{j}}"><text class="font_2 data-v-fb57d854">设为默认收货地址</text><checkbox class="data-v-fb57d854" value="1"/></checkbox-group></view></view></view><view class="flex-col justify-start items-center section_3 mt-462 data-v-fb57d854"><view class="flex-col justify-start items-center text-wrapper_4 data-v-fb57d854" onTap="{{k}}"><text class="text_8 data-v-fb57d854">保存并使用</text></view></view></view>
|
|
|
@ -1,76 +0,0 @@
|
||||||
"use strict";
|
|
||||||
const common_vendor = require("../../../common/vendor.js");
|
|
||||||
const api_request = require("../../../api/request.js");
|
|
||||||
const common_assets = require("../../../common/assets.js");
|
|
||||||
const _sfc_main = {
|
|
||||||
__name: "newaddress_Info",
|
|
||||||
setup(__props) {
|
|
||||||
const userInfo = common_vendor.ref({});
|
|
||||||
const addressParam = common_vendor.ref({
|
|
||||||
userId: 0,
|
|
||||||
name: "",
|
|
||||||
phone: "",
|
|
||||||
region: "",
|
|
||||||
detailAddress: "",
|
|
||||||
isDefault: 0
|
|
||||||
});
|
|
||||||
common_vendor.onLoad((options) => {
|
|
||||||
addressParam.value = JSON.parse(options.editInfo);
|
|
||||||
});
|
|
||||||
common_vendor.onMounted(() => {
|
|
||||||
userInfo.value = common_vendor.index.getStorageSync("userInfo");
|
|
||||||
});
|
|
||||||
const defaultAddress = (event) => {
|
|
||||||
event.detail.value[0] ? addressParam.value.isDefault = 1 : addressParam.value.isDefault = 0;
|
|
||||||
};
|
|
||||||
const newAddress = async () => {
|
|
||||||
console.log(addressParam.value);
|
|
||||||
addressParam.value.userId = userInfo.value.id;
|
|
||||||
const values = Object.values(addressParam.value);
|
|
||||||
if (values.some((value) => value === null || value === void 0 || value === "")) {
|
|
||||||
await common_vendor.index.showToast({
|
|
||||||
icon: "error",
|
|
||||||
title: "字段不能为空"
|
|
||||||
});
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
const res = await common_vendor.index.request({
|
|
||||||
url: api_request.baseUrl + "/address/add",
|
|
||||||
method: "POST",
|
|
||||||
header: {
|
|
||||||
"cookie": wx.getStorageSync("cookie")
|
|
||||||
},
|
|
||||||
data: { ...addressParam.value }
|
|
||||||
});
|
|
||||||
console.log("res==>", res.data);
|
|
||||||
if (res.data.code === 1) {
|
|
||||||
common_vendor.index.navigateBack({
|
|
||||||
//返回上一页
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
common_vendor.index.showToast({
|
|
||||||
icon: "error",
|
|
||||||
title: "新增地址失败"
|
|
||||||
});
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
return (_ctx, _cache) => {
|
|
||||||
return {
|
|
||||||
a: addressParam.value.name,
|
|
||||||
b: common_vendor.o(($event) => addressParam.value.name = $event.detail.value),
|
|
||||||
c: addressParam.value.phone,
|
|
||||||
d: common_vendor.o(($event) => addressParam.value.phone = $event.detail.value),
|
|
||||||
e: addressParam.value.region,
|
|
||||||
f: common_vendor.o(($event) => addressParam.value.region = $event.detail.value),
|
|
||||||
g: common_vendor.unref(common_assets.dingwei),
|
|
||||||
h: addressParam.value.detailAddress,
|
|
||||||
i: common_vendor.o(($event) => addressParam.value.detailAddress = $event.detail.value),
|
|
||||||
j: common_vendor.o(defaultAddress),
|
|
||||||
k: common_vendor.o(newAddress)
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
};
|
|
||||||
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"]]);
|
|
||||||
my.createPage(MiniProgramPage);
|
|
|
@ -1,4 +0,0 @@
|
||||||
{
|
|
||||||
"defaultTitle": "",
|
|
||||||
"usingComponents": {}
|
|
||||||
}
|
|
|
@ -1,683 +0,0 @@
|
||||||
/* 水平间距 */
|
|
||||||
/* 水平间距 */
|
|
||||||
/************************************************************
|
|
||||||
** 请将全局样式拷贝到项目的全局 CSS 文件或者当前页面的顶部 **
|
|
||||||
** 否则页面将无法正常显示 **
|
|
||||||
************************************************************/
|
|
||||||
html.data-v-641af6de {
|
|
||||||
font-size: 16px;
|
|
||||||
}
|
|
||||||
body.data-v-641af6de {
|
|
||||||
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-641af6de,
|
|
||||||
image.data-v-641af6de,
|
|
||||||
text.data-v-641af6de {
|
|
||||||
box-sizing: border-box;
|
|
||||||
flex-shrink: 0;
|
|
||||||
}
|
|
||||||
#app.data-v-641af6de {
|
|
||||||
width: 100vw;
|
|
||||||
height: 100vh;
|
|
||||||
}
|
|
||||||
.flex-row.data-v-641af6de {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
}
|
|
||||||
.flex-col.data-v-641af6de {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
.justify-start.data-v-641af6de {
|
|
||||||
justify-content: flex-start;
|
|
||||||
}
|
|
||||||
.justify-end.data-v-641af6de {
|
|
||||||
justify-content: flex-end;
|
|
||||||
}
|
|
||||||
.justify-center.data-v-641af6de {
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
.justify-between.data-v-641af6de {
|
|
||||||
justify-content: space-between;
|
|
||||||
}
|
|
||||||
.justify-around.data-v-641af6de {
|
|
||||||
justify-content: space-around;
|
|
||||||
}
|
|
||||||
.justify-evenly.data-v-641af6de {
|
|
||||||
justify-content: space-evenly;
|
|
||||||
}
|
|
||||||
.items-start.data-v-641af6de {
|
|
||||||
align-items: flex-start;
|
|
||||||
}
|
|
||||||
.items-end.data-v-641af6de {
|
|
||||||
align-items: flex-end;
|
|
||||||
}
|
|
||||||
.items-center.data-v-641af6de {
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
.items-baseline.data-v-641af6de {
|
|
||||||
align-items: baseline;
|
|
||||||
}
|
|
||||||
.items-stretch.data-v-641af6de {
|
|
||||||
align-items: stretch;
|
|
||||||
}
|
|
||||||
.self-start.data-v-641af6de {
|
|
||||||
align-self: flex-start;
|
|
||||||
}
|
|
||||||
.self-end.data-v-641af6de {
|
|
||||||
align-self: flex-end;
|
|
||||||
}
|
|
||||||
.self-center.data-v-641af6de {
|
|
||||||
align-self: center;
|
|
||||||
}
|
|
||||||
.self-baseline.data-v-641af6de {
|
|
||||||
align-self: baseline;
|
|
||||||
}
|
|
||||||
.self-stretch.data-v-641af6de {
|
|
||||||
align-self: stretch;
|
|
||||||
}
|
|
||||||
.flex-1.data-v-641af6de {
|
|
||||||
flex: 1 1 0%;
|
|
||||||
}
|
|
||||||
.flex-auto.data-v-641af6de {
|
|
||||||
flex: 1 1 auto;
|
|
||||||
}
|
|
||||||
.grow.data-v-641af6de {
|
|
||||||
flex-grow: 1;
|
|
||||||
}
|
|
||||||
.grow-0.data-v-641af6de {
|
|
||||||
flex-grow: 0;
|
|
||||||
}
|
|
||||||
.shrink.data-v-641af6de {
|
|
||||||
flex-shrink: 1;
|
|
||||||
}
|
|
||||||
.shrink-0.data-v-641af6de {
|
|
||||||
flex-shrink: 0;
|
|
||||||
}
|
|
||||||
.relative.data-v-641af6de {
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
.ml-2.data-v-641af6de {
|
|
||||||
margin-left: 3.75rpx;
|
|
||||||
}
|
|
||||||
.mt-2.data-v-641af6de {
|
|
||||||
margin-top: 3.75rpx;
|
|
||||||
}
|
|
||||||
.ml-4.data-v-641af6de {
|
|
||||||
margin-left: 7.5rpx;
|
|
||||||
}
|
|
||||||
.mt-4.data-v-641af6de {
|
|
||||||
margin-top: 7.5rpx;
|
|
||||||
}
|
|
||||||
.ml-6.data-v-641af6de {
|
|
||||||
margin-left: 11.25rpx;
|
|
||||||
}
|
|
||||||
.mt-6.data-v-641af6de {
|
|
||||||
margin-top: 11.25rpx;
|
|
||||||
}
|
|
||||||
.ml-8.data-v-641af6de {
|
|
||||||
margin-left: 15rpx;
|
|
||||||
}
|
|
||||||
.mt-8.data-v-641af6de {
|
|
||||||
margin-top: 15rpx;
|
|
||||||
}
|
|
||||||
.ml-10.data-v-641af6de {
|
|
||||||
margin-left: 18.75rpx;
|
|
||||||
}
|
|
||||||
.mt-10.data-v-641af6de {
|
|
||||||
margin-top: 18.75rpx;
|
|
||||||
}
|
|
||||||
.ml-12.data-v-641af6de {
|
|
||||||
margin-left: 22.5rpx;
|
|
||||||
}
|
|
||||||
.mt-12.data-v-641af6de {
|
|
||||||
margin-top: 22.5rpx;
|
|
||||||
}
|
|
||||||
.ml-14.data-v-641af6de {
|
|
||||||
margin-left: 26.25rpx;
|
|
||||||
}
|
|
||||||
.mt-14.data-v-641af6de {
|
|
||||||
margin-top: 26.25rpx;
|
|
||||||
}
|
|
||||||
.ml-16.data-v-641af6de {
|
|
||||||
margin-left: 30rpx;
|
|
||||||
}
|
|
||||||
.mt-16.data-v-641af6de {
|
|
||||||
margin-top: 30rpx;
|
|
||||||
}
|
|
||||||
.ml-18.data-v-641af6de {
|
|
||||||
margin-left: 33.75rpx;
|
|
||||||
}
|
|
||||||
.mt-18.data-v-641af6de {
|
|
||||||
margin-top: 33.75rpx;
|
|
||||||
}
|
|
||||||
.ml-20.data-v-641af6de {
|
|
||||||
margin-left: 37.5rpx;
|
|
||||||
}
|
|
||||||
.mt-20.data-v-641af6de {
|
|
||||||
margin-top: 37.5rpx;
|
|
||||||
}
|
|
||||||
.ml-22.data-v-641af6de {
|
|
||||||
margin-left: 41.25rpx;
|
|
||||||
}
|
|
||||||
.mt-22.data-v-641af6de {
|
|
||||||
margin-top: 41.25rpx;
|
|
||||||
}
|
|
||||||
.ml-24.data-v-641af6de {
|
|
||||||
margin-left: 45rpx;
|
|
||||||
}
|
|
||||||
.mt-24.data-v-641af6de {
|
|
||||||
margin-top: 45rpx;
|
|
||||||
}
|
|
||||||
.ml-26.data-v-641af6de {
|
|
||||||
margin-left: 48.75rpx;
|
|
||||||
}
|
|
||||||
.mt-26.data-v-641af6de {
|
|
||||||
margin-top: 48.75rpx;
|
|
||||||
}
|
|
||||||
.ml-28.data-v-641af6de {
|
|
||||||
margin-left: 52.5rpx;
|
|
||||||
}
|
|
||||||
.mt-28.data-v-641af6de {
|
|
||||||
margin-top: 52.5rpx;
|
|
||||||
}
|
|
||||||
.ml-30.data-v-641af6de {
|
|
||||||
margin-left: 56.25rpx;
|
|
||||||
}
|
|
||||||
.mt-30.data-v-641af6de {
|
|
||||||
margin-top: 56.25rpx;
|
|
||||||
}
|
|
||||||
.ml-32.data-v-641af6de {
|
|
||||||
margin-left: 60rpx;
|
|
||||||
}
|
|
||||||
.mt-32.data-v-641af6de {
|
|
||||||
margin-top: 60rpx;
|
|
||||||
}
|
|
||||||
.ml-34.data-v-641af6de {
|
|
||||||
margin-left: 63.75rpx;
|
|
||||||
}
|
|
||||||
.mt-34.data-v-641af6de {
|
|
||||||
margin-top: 63.75rpx;
|
|
||||||
}
|
|
||||||
.ml-36.data-v-641af6de {
|
|
||||||
margin-left: 67.5rpx;
|
|
||||||
}
|
|
||||||
.mt-36.data-v-641af6de {
|
|
||||||
margin-top: 67.5rpx;
|
|
||||||
}
|
|
||||||
.ml-38.data-v-641af6de {
|
|
||||||
margin-left: 71.25rpx;
|
|
||||||
}
|
|
||||||
.mt-38.data-v-641af6de {
|
|
||||||
margin-top: 71.25rpx;
|
|
||||||
}
|
|
||||||
.ml-40.data-v-641af6de {
|
|
||||||
margin-left: 75rpx;
|
|
||||||
}
|
|
||||||
.mt-40.data-v-641af6de {
|
|
||||||
margin-top: 75rpx;
|
|
||||||
}
|
|
||||||
.ml-42.data-v-641af6de {
|
|
||||||
margin-left: 78.75rpx;
|
|
||||||
}
|
|
||||||
.mt-42.data-v-641af6de {
|
|
||||||
margin-top: 78.75rpx;
|
|
||||||
}
|
|
||||||
.ml-44.data-v-641af6de {
|
|
||||||
margin-left: 82.5rpx;
|
|
||||||
}
|
|
||||||
.mt-44.data-v-641af6de {
|
|
||||||
margin-top: 82.5rpx;
|
|
||||||
}
|
|
||||||
.ml-46.data-v-641af6de {
|
|
||||||
margin-left: 86.25rpx;
|
|
||||||
}
|
|
||||||
.mt-46.data-v-641af6de {
|
|
||||||
margin-top: 86.25rpx;
|
|
||||||
}
|
|
||||||
.ml-48.data-v-641af6de {
|
|
||||||
margin-left: 90rpx;
|
|
||||||
}
|
|
||||||
.mt-48.data-v-641af6de {
|
|
||||||
margin-top: 90rpx;
|
|
||||||
}
|
|
||||||
.ml-50.data-v-641af6de {
|
|
||||||
margin-left: 93.75rpx;
|
|
||||||
}
|
|
||||||
.mt-50.data-v-641af6de {
|
|
||||||
margin-top: 93.75rpx;
|
|
||||||
}
|
|
||||||
.ml-52.data-v-641af6de {
|
|
||||||
margin-left: 97.5rpx;
|
|
||||||
}
|
|
||||||
.mt-52.data-v-641af6de {
|
|
||||||
margin-top: 97.5rpx;
|
|
||||||
}
|
|
||||||
.ml-54.data-v-641af6de {
|
|
||||||
margin-left: 101.25rpx;
|
|
||||||
}
|
|
||||||
.mt-54.data-v-641af6de {
|
|
||||||
margin-top: 101.25rpx;
|
|
||||||
}
|
|
||||||
.ml-56.data-v-641af6de {
|
|
||||||
margin-left: 105rpx;
|
|
||||||
}
|
|
||||||
.mt-56.data-v-641af6de {
|
|
||||||
margin-top: 105rpx;
|
|
||||||
}
|
|
||||||
.ml-58.data-v-641af6de {
|
|
||||||
margin-left: 108.75rpx;
|
|
||||||
}
|
|
||||||
.mt-58.data-v-641af6de {
|
|
||||||
margin-top: 108.75rpx;
|
|
||||||
}
|
|
||||||
.ml-60.data-v-641af6de {
|
|
||||||
margin-left: 112.5rpx;
|
|
||||||
}
|
|
||||||
.mt-60.data-v-641af6de {
|
|
||||||
margin-top: 112.5rpx;
|
|
||||||
}
|
|
||||||
.ml-62.data-v-641af6de {
|
|
||||||
margin-left: 116.25rpx;
|
|
||||||
}
|
|
||||||
.mt-62.data-v-641af6de {
|
|
||||||
margin-top: 116.25rpx;
|
|
||||||
}
|
|
||||||
.ml-64.data-v-641af6de {
|
|
||||||
margin-left: 120rpx;
|
|
||||||
}
|
|
||||||
.mt-64.data-v-641af6de {
|
|
||||||
margin-top: 120rpx;
|
|
||||||
}
|
|
||||||
.ml-66.data-v-641af6de {
|
|
||||||
margin-left: 123.75rpx;
|
|
||||||
}
|
|
||||||
.mt-66.data-v-641af6de {
|
|
||||||
margin-top: 123.75rpx;
|
|
||||||
}
|
|
||||||
.ml-68.data-v-641af6de {
|
|
||||||
margin-left: 127.5rpx;
|
|
||||||
}
|
|
||||||
.mt-68.data-v-641af6de {
|
|
||||||
margin-top: 127.5rpx;
|
|
||||||
}
|
|
||||||
.ml-70.data-v-641af6de {
|
|
||||||
margin-left: 131.25rpx;
|
|
||||||
}
|
|
||||||
.mt-70.data-v-641af6de {
|
|
||||||
margin-top: 131.25rpx;
|
|
||||||
}
|
|
||||||
.ml-72.data-v-641af6de {
|
|
||||||
margin-left: 135rpx;
|
|
||||||
}
|
|
||||||
.mt-72.data-v-641af6de {
|
|
||||||
margin-top: 135rpx;
|
|
||||||
}
|
|
||||||
.ml-74.data-v-641af6de {
|
|
||||||
margin-left: 138.75rpx;
|
|
||||||
}
|
|
||||||
.mt-74.data-v-641af6de {
|
|
||||||
margin-top: 138.75rpx;
|
|
||||||
}
|
|
||||||
.ml-76.data-v-641af6de {
|
|
||||||
margin-left: 142.5rpx;
|
|
||||||
}
|
|
||||||
.mt-76.data-v-641af6de {
|
|
||||||
margin-top: 142.5rpx;
|
|
||||||
}
|
|
||||||
.ml-78.data-v-641af6de {
|
|
||||||
margin-left: 146.25rpx;
|
|
||||||
}
|
|
||||||
.mt-78.data-v-641af6de {
|
|
||||||
margin-top: 146.25rpx;
|
|
||||||
}
|
|
||||||
.ml-80.data-v-641af6de {
|
|
||||||
margin-left: 150rpx;
|
|
||||||
}
|
|
||||||
.mt-80.data-v-641af6de {
|
|
||||||
margin-top: 150rpx;
|
|
||||||
}
|
|
||||||
.ml-82.data-v-641af6de {
|
|
||||||
margin-left: 153.75rpx;
|
|
||||||
}
|
|
||||||
.mt-82.data-v-641af6de {
|
|
||||||
margin-top: 153.75rpx;
|
|
||||||
}
|
|
||||||
.ml-84.data-v-641af6de {
|
|
||||||
margin-left: 157.5rpx;
|
|
||||||
}
|
|
||||||
.mt-84.data-v-641af6de {
|
|
||||||
margin-top: 157.5rpx;
|
|
||||||
}
|
|
||||||
.ml-86.data-v-641af6de {
|
|
||||||
margin-left: 161.25rpx;
|
|
||||||
}
|
|
||||||
.mt-86.data-v-641af6de {
|
|
||||||
margin-top: 161.25rpx;
|
|
||||||
}
|
|
||||||
.ml-88.data-v-641af6de {
|
|
||||||
margin-left: 165rpx;
|
|
||||||
}
|
|
||||||
.mt-88.data-v-641af6de {
|
|
||||||
margin-top: 165rpx;
|
|
||||||
}
|
|
||||||
.ml-90.data-v-641af6de {
|
|
||||||
margin-left: 168.75rpx;
|
|
||||||
}
|
|
||||||
.mt-90.data-v-641af6de {
|
|
||||||
margin-top: 168.75rpx;
|
|
||||||
}
|
|
||||||
.ml-92.data-v-641af6de {
|
|
||||||
margin-left: 172.5rpx;
|
|
||||||
}
|
|
||||||
.mt-92.data-v-641af6de {
|
|
||||||
margin-top: 172.5rpx;
|
|
||||||
}
|
|
||||||
.ml-94.data-v-641af6de {
|
|
||||||
margin-left: 176.25rpx;
|
|
||||||
}
|
|
||||||
.mt-94.data-v-641af6de {
|
|
||||||
margin-top: 176.25rpx;
|
|
||||||
}
|
|
||||||
.ml-96.data-v-641af6de {
|
|
||||||
margin-left: 180rpx;
|
|
||||||
}
|
|
||||||
.mt-96.data-v-641af6de {
|
|
||||||
margin-top: 180rpx;
|
|
||||||
}
|
|
||||||
.ml-98.data-v-641af6de {
|
|
||||||
margin-left: 183.75rpx;
|
|
||||||
}
|
|
||||||
.mt-98.data-v-641af6de {
|
|
||||||
margin-top: 183.75rpx;
|
|
||||||
}
|
|
||||||
.ml-100.data-v-641af6de {
|
|
||||||
margin-left: 187.5rpx;
|
|
||||||
}
|
|
||||||
.mt-100.data-v-641af6de {
|
|
||||||
margin-top: 187.5rpx;
|
|
||||||
}
|
|
||||||
.mt-47.data-v-641af6de {
|
|
||||||
margin-top: 88.13rpx;
|
|
||||||
}
|
|
||||||
.mt-7.data-v-641af6de {
|
|
||||||
margin-top: 13.13rpx;
|
|
||||||
}
|
|
||||||
.mt-173.data-v-641af6de {
|
|
||||||
margin-top: 324.38rpx;
|
|
||||||
}
|
|
||||||
.page.data-v-641af6de {
|
|
||||||
background-color: #f8e8c1;
|
|
||||||
width: 100%;
|
|
||||||
overflow-y: auto;
|
|
||||||
overflow-x: hidden;
|
|
||||||
height: 100vh;
|
|
||||||
}
|
|
||||||
.text-wrapper.data-v-641af6de {
|
|
||||||
position: fixed;
|
|
||||||
left: 0;
|
|
||||||
right: 0;
|
|
||||||
top: 0;
|
|
||||||
padding: 25.46rpx 0 25.5rpx;
|
|
||||||
background-color: #f5f5dc;
|
|
||||||
}
|
|
||||||
.font.data-v-641af6de {
|
|
||||||
font-size: 30rpx;
|
|
||||||
font-family: Open Sans;
|
|
||||||
line-height: 27.69rpx;
|
|
||||||
color: #323232;
|
|
||||||
}
|
|
||||||
.text.data-v-641af6de {
|
|
||||||
margin-right: 30.86rpx;
|
|
||||||
line-height: 27.79rpx;
|
|
||||||
}
|
|
||||||
.section.data-v-641af6de {
|
|
||||||
position: fixed;
|
|
||||||
left: 0;
|
|
||||||
right: 0;
|
|
||||||
top: 74rpx;
|
|
||||||
padding: 0 121.88rpx;
|
|
||||||
background-color: #fffef8;
|
|
||||||
}
|
|
||||||
.group.data-v-641af6de {
|
|
||||||
padding: 21.64rpx 4.63rpx 18.17rpx 11.42rpx;
|
|
||||||
}
|
|
||||||
.text_2.data-v-641af6de {
|
|
||||||
line-height: 27.6rpx;
|
|
||||||
}
|
|
||||||
.section_2.data-v-641af6de {
|
|
||||||
background-color: #fb8b05;
|
|
||||||
width: 112.5rpx;
|
|
||||||
height: 5.63rpx;
|
|
||||||
}
|
|
||||||
.list.data-v-641af6de {
|
|
||||||
padding: 155rpx 15rpx 110rpx;
|
|
||||||
}
|
|
||||||
.list-item.data-v-641af6de:first-child {
|
|
||||||
margin-top: 0;
|
|
||||||
}
|
|
||||||
.section_1.data-v-641af6de {
|
|
||||||
padding: 35.63rpx 20.63rpx 28.13rpx;
|
|
||||||
background-color: #fffef8;
|
|
||||||
border-radius: 18.75rpx;
|
|
||||||
}
|
|
||||||
.image_2.data-v-641af6de {
|
|
||||||
width: 37.5rpx;
|
|
||||||
height: 37.5rpx;
|
|
||||||
}
|
|
||||||
.group_2.data-v-641af6de {
|
|
||||||
margin-left: 41.25rpx;
|
|
||||||
}
|
|
||||||
.image.data-v-641af6de {
|
|
||||||
border-radius: 9.38rpx;
|
|
||||||
width: 146.25rpx;
|
|
||||||
height: 144.38rpx;
|
|
||||||
}
|
|
||||||
.group_3.data-v-641af6de {
|
|
||||||
margin-top: 2.19rpx;
|
|
||||||
}
|
|
||||||
.group_4.data-v-641af6de {
|
|
||||||
padding-left: 8.53rpx;
|
|
||||||
}
|
|
||||||
.font_2.data-v-641af6de {
|
|
||||||
font-size: 26.25rpx;
|
|
||||||
font-family: Open Sans;
|
|
||||||
line-height: 24.43rpx;
|
|
||||||
color: #323232;
|
|
||||||
}
|
|
||||||
.group_5.data-v-641af6de {
|
|
||||||
width: 90.66rpx;
|
|
||||||
}
|
|
||||||
.font_3.data-v-641af6de {
|
|
||||||
font-size: 33.75rpx;
|
|
||||||
font-family: Open Sans;
|
|
||||||
line-height: 24.43rpx;
|
|
||||||
font-weight: 600;
|
|
||||||
color: #fb8b05;
|
|
||||||
}
|
|
||||||
.text_3.data-v-641af6de {
|
|
||||||
margin-left: 25.03rpx;
|
|
||||||
line-height: 24.88rpx;
|
|
||||||
}
|
|
||||||
.image_6.data-v-641af6de {
|
|
||||||
margin-left: -90.66rpx;
|
|
||||||
width: 30rpx;
|
|
||||||
height: 26.25rpx;
|
|
||||||
}
|
|
||||||
.font_4.data-v-641af6de {
|
|
||||||
font-size: 26.25rpx;
|
|
||||||
font-family: Open Sans;
|
|
||||||
line-height: 19.29rpx;
|
|
||||||
font-weight: 600;
|
|
||||||
color: #fb8b05;
|
|
||||||
}
|
|
||||||
.image_3.data-v-641af6de {
|
|
||||||
border-radius: 9.38rpx 0rpx 0rpx 9.38rpx;
|
|
||||||
width: 45rpx;
|
|
||||||
height: 45rpx;
|
|
||||||
}
|
|
||||||
.image_4.data-v-641af6de {
|
|
||||||
margin-left: 18.15rpx;
|
|
||||||
margin-top: 106.88rpx;
|
|
||||||
}
|
|
||||||
.group_9.data-v-641af6de {
|
|
||||||
margin: 106.88rpx 3.77rpx 0 3.75rpx;
|
|
||||||
}
|
|
||||||
.text-wrapper_2.data-v-641af6de {
|
|
||||||
padding: 12.39rpx 0 13.88rpx;
|
|
||||||
background-color: #f5f5dc;
|
|
||||||
width: 58.13rpx;
|
|
||||||
height: 45rpx;
|
|
||||||
}
|
|
||||||
.font_5.data-v-641af6de {
|
|
||||||
font-size: 26.25rpx;
|
|
||||||
font-family: Open Sans;
|
|
||||||
line-height: 19.29rpx;
|
|
||||||
color: #323232;
|
|
||||||
}
|
|
||||||
.text_4.data-v-641af6de {
|
|
||||||
line-height: 18.73rpx;
|
|
||||||
}
|
|
||||||
.image_5.data-v-641af6de {
|
|
||||||
border-radius: 0rpx 9.38rpx 9.38rpx 0rpx;
|
|
||||||
width: 45rpx;
|
|
||||||
height: 45rpx;
|
|
||||||
}
|
|
||||||
.list-item_2.data-v-641af6de {
|
|
||||||
padding: 24.38rpx 18.75rpx 18.75rpx;
|
|
||||||
background-color: #fffef8;
|
|
||||||
border-radius: 18.75rpx;
|
|
||||||
}
|
|
||||||
.image_8.data-v-641af6de {
|
|
||||||
margin-top: 108.75rpx;
|
|
||||||
}
|
|
||||||
.image_7.data-v-641af6de {
|
|
||||||
margin-left: 39.38rpx;
|
|
||||||
width: 121.88rpx;
|
|
||||||
height: 172.5rpx;
|
|
||||||
}
|
|
||||||
.group_1.data-v-641af6de {
|
|
||||||
margin: 3.07rpx 17.76rpx 7.5rpx 22.5rpx;
|
|
||||||
}
|
|
||||||
.font_6.data-v-641af6de {
|
|
||||||
font-size: 26.25rpx;
|
|
||||||
font-family: Open Sans;
|
|
||||||
line-height: 31.88rpx;
|
|
||||||
color: #323233;
|
|
||||||
}
|
|
||||||
.section_3.data-v-641af6de {
|
|
||||||
margin-right: 4.74rpx;
|
|
||||||
padding: 12.94rpx 9.83rpx 13.09rpx;
|
|
||||||
background-color: #f5f5dc;
|
|
||||||
border-radius: 9.38rpx;
|
|
||||||
}
|
|
||||||
.font_7.data-v-641af6de {
|
|
||||||
font-size: 22.5rpx;
|
|
||||||
font-family: Open Sans;
|
|
||||||
line-height: 22.5rpx;
|
|
||||||
color: #6b6e72;
|
|
||||||
}
|
|
||||||
.font_8.data-v-641af6de {
|
|
||||||
font-size: 22.5rpx;
|
|
||||||
font-family: Open Sans;
|
|
||||||
line-height: 19.29rpx;
|
|
||||||
color: #6b6e72;
|
|
||||||
}
|
|
||||||
.text_5.data-v-641af6de {
|
|
||||||
line-height: 20.79rpx;
|
|
||||||
}
|
|
||||||
.image_9.data-v-641af6de {
|
|
||||||
margin-right: 5.17rpx;
|
|
||||||
width: 22.5rpx;
|
|
||||||
height: 22.5rpx;
|
|
||||||
}
|
|
||||||
.group_7.data-v-641af6de {
|
|
||||||
padding: 0 22.5rpx;
|
|
||||||
}
|
|
||||||
.text_6.data-v-641af6de {
|
|
||||||
margin-left: 25.03rpx;
|
|
||||||
line-height: 24.88rpx;
|
|
||||||
}
|
|
||||||
.text_7.data-v-641af6de {
|
|
||||||
margin-left: 61.14rpx;
|
|
||||||
}
|
|
||||||
.text_8.data-v-641af6de {
|
|
||||||
line-height: 18.73rpx;
|
|
||||||
}
|
|
||||||
.section_4.data-v-641af6de {
|
|
||||||
position: fixed;
|
|
||||||
right: 0;
|
|
||||||
left: 0;
|
|
||||||
bottom: 0;
|
|
||||||
padding: 18.75rpx 18.75rpx 16.88rpx;
|
|
||||||
background-color: #fffef8;
|
|
||||||
}
|
|
||||||
.text_9.data-v-641af6de {
|
|
||||||
line-height: 27.64rpx;
|
|
||||||
}
|
|
||||||
.text-wrapper_3.data-v-641af6de {
|
|
||||||
margin-right: 3.77rpx;
|
|
||||||
padding: 22.37rpx 0 23.53rpx;
|
|
||||||
background-color: #ffd45a;
|
|
||||||
border-radius: 75rpx;
|
|
||||||
width: 219.38rpx;
|
|
||||||
height: 76.88rpx;
|
|
||||||
}
|
|
||||||
.text_10.data-v-641af6de {
|
|
||||||
color: #ffffff;
|
|
||||||
font-size: 33.75rpx;
|
|
||||||
font-family: Open Sans;
|
|
||||||
line-height: 30.97rpx;
|
|
||||||
}
|
|
||||||
.mt-569.data-v-641af6de {
|
|
||||||
margin-top: 1066.88rpx;
|
|
||||||
}
|
|
||||||
.image_2.data-v-641af6de {
|
|
||||||
width: 37.5rpx;
|
|
||||||
height: 37.5rpx;
|
|
||||||
}
|
|
||||||
.image_7.data-v-641af6de {
|
|
||||||
width: 30rpx;
|
|
||||||
height: 26.25rpx;
|
|
||||||
}
|
|
||||||
.section_4.data-v-641af6de {
|
|
||||||
padding: 18.75rpx;
|
|
||||||
background-color: #fffef8;
|
|
||||||
}
|
|
||||||
.font.data-v-641af6de {
|
|
||||||
font-size: 30rpx;
|
|
||||||
font-family: Open Sans;
|
|
||||||
line-height: 27.54rpx;
|
|
||||||
color: #323232;
|
|
||||||
}
|
|
||||||
.text_10.data-v-641af6de {
|
|
||||||
line-height: 27.64rpx;
|
|
||||||
}
|
|
||||||
.group_3.data-v-641af6de {
|
|
||||||
margin-right: 3.75rpx;
|
|
||||||
}
|
|
||||||
.image_9.data-v-641af6de {
|
|
||||||
margin-left: -11.25rpx;
|
|
||||||
}
|
|
||||||
.text_12.data-v-641af6de {
|
|
||||||
color: #fb8b05;
|
|
||||||
line-height: 22.01rpx;
|
|
||||||
}
|
|
||||||
.text-wrapper_3.data-v-641af6de {
|
|
||||||
margin-left: 22.5rpx;
|
|
||||||
padding: 22.5rpx 0;
|
|
||||||
background-color: #ffd45a;
|
|
||||||
border-radius: 75rpx;
|
|
||||||
width: 219.38rpx;
|
|
||||||
height: 76.88rpx;
|
|
||||||
}
|
|
||||||
.text_11.data-v-641af6de {
|
|
||||||
color: #ffffff;
|
|
||||||
font-size: 33.75rpx;
|
|
||||||
font-family: Open Sans;
|
|
||||||
line-height: 31.48rpx;
|
|
||||||
}
|
|
|
@ -1 +0,0 @@
|
||||||
<view class="flex-col page data-v-641af6de"><view class="flex-col data-v-641af6de"><view class="flex-col justify-start items-end text-wrapper data-v-641af6de"><text class="font text data-v-641af6de">编辑</text></view><view class="flex-col section data-v-641af6de"><view class="flex-row justify-between self-stretch group data-v-641af6de"><text class="font text_2 data-v-641af6de" style="{{a}}" onTap="{{b}}">商品类</text><text class="font data-v-641af6de" style="{{c}}" onTap="{{d}}">服务类</text></view></view><view class="flex-col list data-v-641af6de"><checkbox-group class="data-v-641af6de" onChange="{{h}}"><view a:for="{{e}}" a:for-item="item" a:key="n" class="flex-col list-item mt-8 data-v-641af6de"><view a:if="{{f}}" class="flex-row section_1 data-v-641af6de"><checkbox class="shrink-0 self-center image_2 data-v-641af6de" value="{{item.a}}" checked="{{item.b}}"/><view class="flex-row flex-1 self-center group_2 data-v-641af6de"><image class="shrink-0 image data-v-641af6de" src="{{item.c}}" onTap="{{item.d}}"/><view class="flex-col flex-1 group_3 ml-12 data-v-641af6de"><view class="flex-row group_4 data-v-641af6de"><text class="font_2 data-v-641af6de" onTap="{{item.f}}">{{item.e}}</text><text class="font_2 ml-4 data-v-641af6de" onTap="{{item.h}}">【{{item.g}}】</text></view><view class="flex-row items-center mt-47 data-v-641af6de"><view class="flex-row items-center self-stretch group_5 data-v-641af6de"><text class="font_3 text_3 data-v-641af6de" onTap="{{item.j}}"><text class="font_4 data-v-641af6de">¥</text>{{item.i}}.<text class="font_4 data-v-641af6de">00</text></text></view></view></view></view><image class="shrink-0 self-start image_3 image_4 data-v-641af6de" src="https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FosWvYyNx-short1.png" onTap="{{item.k}}"/><view class="flex-row shrink-0 self-start group_9 data-v-641af6de"><view class="flex-col justify-start items-center text-wrapper_2 data-v-641af6de"><text class="font_5 text_4 data-v-641af6de">{{item.l}}</text></view><image class="image_5 ml-2 data-v-641af6de" src="https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FGbdSQDul-add1.png" onTap="{{item.m}}"/></view></view><view a:if="{{g}}" class="flex-col list-item_2 mt-8 data-v-641af6de"><view class="flex-row data-v-641af6de"><image class="shrink-0 self-start image_2 image_8 data-v-641af6de" src="https://ide.code.fun/api/image?token=672db25dc471750012de4901&name=radio.png"/><image class="shrink-0 image_7 data-v-641af6de" src="https://ide.code.fun/api/image?token=672db25dc471750012de4901&name=service.png"/><view class="flex-col flex-1 group_1 data-v-641af6de"><text class="font_6 data-v-641af6de">【非遗手工艺体验】纸笺加工技艺-流沙笺团扇制作体验</text><view class="flex-row justify-between items-center section_3 mt-7 data-v-641af6de"><view class="flex-col items-start data-v-641af6de"><text class="font_7 data-v-641af6de">仿真丝团扇;上午场(09:30-12:00)</text><text class="font_8 text_5 mt-6 data-v-641af6de">预约日期:2024-10-15</text></view><image class="image_9 data-v-641af6de" src="https://ide.code.fun/api/image?token=672db25dc471750012de4901&name=pull.png"/></view></view></view><view class="flex-row justify-end items-center group_7 mt-14 data-v-641af6de"><view class="flex-row items-center data-v-641af6de"><text class="font_3 text_6 data-v-641af6de">138.</text><image class="shrink-0 image_6 data-v-641af6de" src="https://ide.code.fun/api/image?token=672db25dc471750012de4901&name=storeRmb.png"/><text class="font_4 text_7 data-v-641af6de">00</text></view><view class="flex-row ml-82 data-v-641af6de"><image class="image_3 data-v-641af6de" src="https://ide.code.fun/api/image?token=672db25dc471750012de4901&name=short1.png"/><view class="flex-col justify-start items-center text-wrapper_2 ml-2 data-v-641af6de"><text class="font_5 text_8 data-v-641af6de">1</text></view><image class="image_5 ml-2 data-v-641af6de" src="https://ide.code.fun/api/image?token=672db25dc471750012de4901&name=add1.png"/></view></view></view></view></checkbox-group></view></view><view class="flex-row justify-between items-center section_4 mt-569 data-v-641af6de"><view class="flex-row items-center data-v-641af6de"><checkbox class="shrink-0 image_2 data-v-641af6de" checked="{{i}}" onTap="{{j}}"/><text class="ml-10 font text_10 data-v-641af6de">全选</text></view><view class="flex-row items-center group_3 data-v-641af6de"><text class="font data-v-641af6de">合计:</text><image class="shrink-0 image_7 image_9 data-v-641af6de" src="https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FJipaVPoQ-storeRmb.png"/><text class="font text_12 data-v-641af6de">{{k}}</text><view class="flex-col justify-start items-center shrink-0 text-wrapper_3 data-v-641af6de" onTap="{{l}}"><text class="text_11 data-v-641af6de">去结算</text></view></view></view></view>
|
|
|
@ -1,167 +0,0 @@
|
||||||
"use strict";
|
|
||||||
const common_vendor = require("../../../common/vendor.js");
|
|
||||||
const api_request = require("../../../api/request.js");
|
|
||||||
const _sfc_main = {
|
|
||||||
__name: "productmain",
|
|
||||||
setup(__props) {
|
|
||||||
const products = common_vendor.ref([]);
|
|
||||||
const current = common_vendor.ref(1);
|
|
||||||
const allCheck = common_vendor.ref(false);
|
|
||||||
const checkedData = common_vendor.ref([]);
|
|
||||||
const totalPrice = common_vendor.ref(0);
|
|
||||||
wx.getStorageSync("userInfo");
|
|
||||||
common_vendor.onMounted(() => {
|
|
||||||
});
|
|
||||||
common_vendor.onShow(() => {
|
|
||||||
getProductCart();
|
|
||||||
});
|
|
||||||
const getProductCart = async () => {
|
|
||||||
const res = await common_vendor.index.request({
|
|
||||||
url: api_request.baseUrl + "/cart/list",
|
|
||||||
method: "POST",
|
|
||||||
header: {
|
|
||||||
"cookie": wx.getStorageSync("cookie")
|
|
||||||
}
|
|
||||||
});
|
|
||||||
if (res.data.code === 1) {
|
|
||||||
products.value = res.data.data;
|
|
||||||
products.value.forEach((item) => {
|
|
||||||
item.checked = false;
|
|
||||||
});
|
|
||||||
}
|
|
||||||
console.log("res--->", res);
|
|
||||||
console.log("products-->", products.value);
|
|
||||||
};
|
|
||||||
const changeType = async (num) => {
|
|
||||||
current.value = num;
|
|
||||||
};
|
|
||||||
const getTextStyle = (num) => ({
|
|
||||||
"border-bottom": current.value === num ? "2px solid orange" : "2px solid #ffffff"
|
|
||||||
});
|
|
||||||
const checkBoxChange = (event) => {
|
|
||||||
console.log("方法被触发");
|
|
||||||
console.log("length---->", event.detail.value.length);
|
|
||||||
if (event.detail.value.length == products.value.length) {
|
|
||||||
allCheck.value = true;
|
|
||||||
} else {
|
|
||||||
allCheck.value = false;
|
|
||||||
}
|
|
||||||
checkedData.value = [{}];
|
|
||||||
totalPrice.value = 0;
|
|
||||||
let count = 0;
|
|
||||||
console.log("event--->", event.detail);
|
|
||||||
products.value[parseInt(event.detail.value)].checked = true;
|
|
||||||
for (let key in event.detail.value) {
|
|
||||||
let temp = parseInt(event.detail.value[parseInt(key)]);
|
|
||||||
computed(products.value[temp].goodVO.price, products.value[temp].quantity);
|
|
||||||
}
|
|
||||||
event.detail.value.forEach((item) => {
|
|
||||||
products.value[parseInt(item)].checked = true;
|
|
||||||
});
|
|
||||||
products.value.forEach((x) => {
|
|
||||||
event.detail.value.forEach((y) => {
|
|
||||||
if (x.value == y) {
|
|
||||||
x.checked = true;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
event.detail.value.forEach((item) => {
|
|
||||||
console.log("products.value[parseInt(item)].goodId", products.value[parseInt(item)].goodId);
|
|
||||||
if (products.value[parseInt(item)] !== null) {
|
|
||||||
checkedData.value[count] = {
|
|
||||||
goodId: products.value[parseInt(item)].goodId,
|
|
||||||
quantity: products.value[parseInt(item)].quantity
|
|
||||||
};
|
|
||||||
count += 1;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
console.log("checkedData--->", checkedData.value);
|
|
||||||
};
|
|
||||||
const allChecked = () => {
|
|
||||||
allCheck.value = !allCheck.value;
|
|
||||||
totalPrice.value = 0;
|
|
||||||
if (allCheck.value == true) {
|
|
||||||
products.value.forEach((item) => {
|
|
||||||
item.checked = true;
|
|
||||||
computed(item.goodVO.price, item.quantity);
|
|
||||||
});
|
|
||||||
checkedData.value = products.value.map((item) => ({
|
|
||||||
goodId: item.goodId,
|
|
||||||
quantity: item.quantity
|
|
||||||
}));
|
|
||||||
console.log("checkedData--->", checkedData.value);
|
|
||||||
} else {
|
|
||||||
products.value.forEach((item) => {
|
|
||||||
item.checked = false;
|
|
||||||
});
|
|
||||||
}
|
|
||||||
};
|
|
||||||
const decrease = (index, item) => {
|
|
||||||
if (products.value[index].quantity > 1) {
|
|
||||||
products.value[index].quantity -= 1;
|
|
||||||
if (item && products.value[index].quantity >= 1) {
|
|
||||||
computed(-products.value[index].goodVO.price, 1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
const increase = (index, item) => {
|
|
||||||
if (products.value[index].quantity <= 99) {
|
|
||||||
products.value[index].quantity += 1;
|
|
||||||
}
|
|
||||||
if (item) {
|
|
||||||
computed(products.value[index].goodVO.price, 1);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
const computed = (price, quantity) => {
|
|
||||||
totalPrice.value += price * quantity;
|
|
||||||
return totalPrice.value;
|
|
||||||
};
|
|
||||||
const jump_product = () => {
|
|
||||||
common_vendor.index.navigateTo({
|
|
||||||
url: "../../../pages/store-home/ProductDetails/ProductDetails"
|
|
||||||
});
|
|
||||||
};
|
|
||||||
const goToBuy = () => {
|
|
||||||
console.log("要传到订单详情页面的checked--->", checkedData.value);
|
|
||||||
common_vendor.index.navigateTo({
|
|
||||||
url: "/pages/order/product-waitpay/product-waitpay?cartInfo=" + JSON.stringify(checkedData.value)
|
|
||||||
});
|
|
||||||
};
|
|
||||||
return (_ctx, _cache) => {
|
|
||||||
return {
|
|
||||||
a: common_vendor.s(getTextStyle(1)),
|
|
||||||
b: common_vendor.o(($event) => changeType(1)),
|
|
||||||
c: common_vendor.s(getTextStyle(2)),
|
|
||||||
d: common_vendor.o(($event) => changeType(2)),
|
|
||||||
e: common_vendor.f(products.value, (item, index, i0) => {
|
|
||||||
return common_vendor.e(current.value == 1 ? {
|
|
||||||
a: index,
|
|
||||||
b: item.checked,
|
|
||||||
c: item.goodVO.goodImg,
|
|
||||||
d: common_vendor.o(jump_product),
|
|
||||||
e: common_vendor.t(item.goodVO.name),
|
|
||||||
f: common_vendor.o(jump_product),
|
|
||||||
g: common_vendor.t(item.goodVO.type),
|
|
||||||
h: common_vendor.o(jump_product),
|
|
||||||
i: common_vendor.t(item.goodVO.price),
|
|
||||||
j: common_vendor.o(jump_product),
|
|
||||||
k: common_vendor.o(($event) => decrease(index, item.checked)),
|
|
||||||
l: common_vendor.t(item.quantity),
|
|
||||||
m: common_vendor.o(($event) => increase(index, item.checked))
|
|
||||||
} : {}, current.value == 2 ? {} : {}, {
|
|
||||||
n: index
|
|
||||||
});
|
|
||||||
}),
|
|
||||||
f: current.value == 1,
|
|
||||||
g: current.value == 2,
|
|
||||||
h: common_vendor.o(checkBoxChange),
|
|
||||||
i: allCheck.value,
|
|
||||||
j: common_vendor.o(allChecked),
|
|
||||||
k: common_vendor.t(totalPrice.value),
|
|
||||||
l: common_vendor.o(goToBuy)
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
};
|
|
||||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-641af6de"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/Shopping-cart/productmain/productmain.vue"]]);
|
|
||||||
my.createPage(MiniProgramPage);
|
|
|
@ -1,4 +0,0 @@
|
||||||
{
|
|
||||||
"defaultTitle": "",
|
|
||||||
"usingComponents": {}
|
|
||||||
}
|
|
|
@ -1,719 +0,0 @@
|
||||||
/* 水平间距 */
|
|
||||||
/* 水平间距 */
|
|
||||||
/************************************************************
|
|
||||||
** 请将全局样式拷贝到项目的全局 CSS 文件或者当前页面的顶部 **
|
|
||||||
** 否则页面将无法正常显示 **
|
|
||||||
************************************************************/
|
|
||||||
html.data-v-60893f73 {
|
|
||||||
font-size: 16px;
|
|
||||||
}
|
|
||||||
body.data-v-60893f73 {
|
|
||||||
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-60893f73,
|
|
||||||
image.data-v-60893f73,
|
|
||||||
text.data-v-60893f73 {
|
|
||||||
box-sizing: border-box;
|
|
||||||
flex-shrink: 0;
|
|
||||||
}
|
|
||||||
#app.data-v-60893f73 {
|
|
||||||
width: 100vw;
|
|
||||||
height: 100vh;
|
|
||||||
}
|
|
||||||
.flex-row.data-v-60893f73 {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
}
|
|
||||||
.flex-col.data-v-60893f73 {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
.justify-start.data-v-60893f73 {
|
|
||||||
justify-content: flex-start;
|
|
||||||
}
|
|
||||||
.justify-end.data-v-60893f73 {
|
|
||||||
justify-content: flex-end;
|
|
||||||
}
|
|
||||||
.justify-center.data-v-60893f73 {
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
.justify-between.data-v-60893f73 {
|
|
||||||
justify-content: space-between;
|
|
||||||
}
|
|
||||||
.justify-around.data-v-60893f73 {
|
|
||||||
justify-content: space-around;
|
|
||||||
}
|
|
||||||
.justify-evenly.data-v-60893f73 {
|
|
||||||
justify-content: space-evenly;
|
|
||||||
}
|
|
||||||
.items-start.data-v-60893f73 {
|
|
||||||
align-items: flex-start;
|
|
||||||
}
|
|
||||||
.items-end.data-v-60893f73 {
|
|
||||||
align-items: flex-end;
|
|
||||||
}
|
|
||||||
.items-center.data-v-60893f73 {
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
.items-baseline.data-v-60893f73 {
|
|
||||||
align-items: baseline;
|
|
||||||
}
|
|
||||||
.items-stretch.data-v-60893f73 {
|
|
||||||
align-items: stretch;
|
|
||||||
}
|
|
||||||
.self-start.data-v-60893f73 {
|
|
||||||
align-self: flex-start;
|
|
||||||
}
|
|
||||||
.self-end.data-v-60893f73 {
|
|
||||||
align-self: flex-end;
|
|
||||||
}
|
|
||||||
.self-center.data-v-60893f73 {
|
|
||||||
align-self: center;
|
|
||||||
}
|
|
||||||
.self-baseline.data-v-60893f73 {
|
|
||||||
align-self: baseline;
|
|
||||||
}
|
|
||||||
.self-stretch.data-v-60893f73 {
|
|
||||||
align-self: stretch;
|
|
||||||
}
|
|
||||||
.flex-1.data-v-60893f73 {
|
|
||||||
flex: 1 1 0%;
|
|
||||||
}
|
|
||||||
.flex-auto.data-v-60893f73 {
|
|
||||||
flex: 1 1 auto;
|
|
||||||
}
|
|
||||||
.grow.data-v-60893f73 {
|
|
||||||
flex-grow: 1;
|
|
||||||
}
|
|
||||||
.grow-0.data-v-60893f73 {
|
|
||||||
flex-grow: 0;
|
|
||||||
}
|
|
||||||
.shrink.data-v-60893f73 {
|
|
||||||
flex-shrink: 1;
|
|
||||||
}
|
|
||||||
.shrink-0.data-v-60893f73 {
|
|
||||||
flex-shrink: 0;
|
|
||||||
}
|
|
||||||
.relative.data-v-60893f73 {
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
.ml-2.data-v-60893f73 {
|
|
||||||
margin-left: 3.75rpx;
|
|
||||||
}
|
|
||||||
.mt-2.data-v-60893f73 {
|
|
||||||
margin-top: 3.75rpx;
|
|
||||||
}
|
|
||||||
.ml-4.data-v-60893f73 {
|
|
||||||
margin-left: 7.5rpx;
|
|
||||||
}
|
|
||||||
.mt-4.data-v-60893f73 {
|
|
||||||
margin-top: 7.5rpx;
|
|
||||||
}
|
|
||||||
.ml-6.data-v-60893f73 {
|
|
||||||
margin-left: 11.25rpx;
|
|
||||||
}
|
|
||||||
.mt-6.data-v-60893f73 {
|
|
||||||
margin-top: 11.25rpx;
|
|
||||||
}
|
|
||||||
.ml-8.data-v-60893f73 {
|
|
||||||
margin-left: 15rpx;
|
|
||||||
}
|
|
||||||
.mt-8.data-v-60893f73 {
|
|
||||||
margin-top: 15rpx;
|
|
||||||
}
|
|
||||||
.ml-10.data-v-60893f73 {
|
|
||||||
margin-left: 18.75rpx;
|
|
||||||
}
|
|
||||||
.mt-10.data-v-60893f73 {
|
|
||||||
margin-top: 18.75rpx;
|
|
||||||
}
|
|
||||||
.ml-12.data-v-60893f73 {
|
|
||||||
margin-left: 22.5rpx;
|
|
||||||
}
|
|
||||||
.mt-12.data-v-60893f73 {
|
|
||||||
margin-top: 22.5rpx;
|
|
||||||
}
|
|
||||||
.ml-14.data-v-60893f73 {
|
|
||||||
margin-left: 26.25rpx;
|
|
||||||
}
|
|
||||||
.mt-14.data-v-60893f73 {
|
|
||||||
margin-top: 26.25rpx;
|
|
||||||
}
|
|
||||||
.ml-16.data-v-60893f73 {
|
|
||||||
margin-left: 30rpx;
|
|
||||||
}
|
|
||||||
.mt-16.data-v-60893f73 {
|
|
||||||
margin-top: 30rpx;
|
|
||||||
}
|
|
||||||
.ml-18.data-v-60893f73 {
|
|
||||||
margin-left: 33.75rpx;
|
|
||||||
}
|
|
||||||
.mt-18.data-v-60893f73 {
|
|
||||||
margin-top: 33.75rpx;
|
|
||||||
}
|
|
||||||
.ml-20.data-v-60893f73 {
|
|
||||||
margin-left: 37.5rpx;
|
|
||||||
}
|
|
||||||
.mt-20.data-v-60893f73 {
|
|
||||||
margin-top: 37.5rpx;
|
|
||||||
}
|
|
||||||
.ml-22.data-v-60893f73 {
|
|
||||||
margin-left: 41.25rpx;
|
|
||||||
}
|
|
||||||
.mt-22.data-v-60893f73 {
|
|
||||||
margin-top: 41.25rpx;
|
|
||||||
}
|
|
||||||
.ml-24.data-v-60893f73 {
|
|
||||||
margin-left: 45rpx;
|
|
||||||
}
|
|
||||||
.mt-24.data-v-60893f73 {
|
|
||||||
margin-top: 45rpx;
|
|
||||||
}
|
|
||||||
.ml-26.data-v-60893f73 {
|
|
||||||
margin-left: 48.75rpx;
|
|
||||||
}
|
|
||||||
.mt-26.data-v-60893f73 {
|
|
||||||
margin-top: 48.75rpx;
|
|
||||||
}
|
|
||||||
.ml-28.data-v-60893f73 {
|
|
||||||
margin-left: 52.5rpx;
|
|
||||||
}
|
|
||||||
.mt-28.data-v-60893f73 {
|
|
||||||
margin-top: 52.5rpx;
|
|
||||||
}
|
|
||||||
.ml-30.data-v-60893f73 {
|
|
||||||
margin-left: 56.25rpx;
|
|
||||||
}
|
|
||||||
.mt-30.data-v-60893f73 {
|
|
||||||
margin-top: 56.25rpx;
|
|
||||||
}
|
|
||||||
.ml-32.data-v-60893f73 {
|
|
||||||
margin-left: 60rpx;
|
|
||||||
}
|
|
||||||
.mt-32.data-v-60893f73 {
|
|
||||||
margin-top: 60rpx;
|
|
||||||
}
|
|
||||||
.ml-34.data-v-60893f73 {
|
|
||||||
margin-left: 63.75rpx;
|
|
||||||
}
|
|
||||||
.mt-34.data-v-60893f73 {
|
|
||||||
margin-top: 63.75rpx;
|
|
||||||
}
|
|
||||||
.ml-36.data-v-60893f73 {
|
|
||||||
margin-left: 67.5rpx;
|
|
||||||
}
|
|
||||||
.mt-36.data-v-60893f73 {
|
|
||||||
margin-top: 67.5rpx;
|
|
||||||
}
|
|
||||||
.ml-38.data-v-60893f73 {
|
|
||||||
margin-left: 71.25rpx;
|
|
||||||
}
|
|
||||||
.mt-38.data-v-60893f73 {
|
|
||||||
margin-top: 71.25rpx;
|
|
||||||
}
|
|
||||||
.ml-40.data-v-60893f73 {
|
|
||||||
margin-left: 75rpx;
|
|
||||||
}
|
|
||||||
.mt-40.data-v-60893f73 {
|
|
||||||
margin-top: 75rpx;
|
|
||||||
}
|
|
||||||
.ml-42.data-v-60893f73 {
|
|
||||||
margin-left: 78.75rpx;
|
|
||||||
}
|
|
||||||
.mt-42.data-v-60893f73 {
|
|
||||||
margin-top: 78.75rpx;
|
|
||||||
}
|
|
||||||
.ml-44.data-v-60893f73 {
|
|
||||||
margin-left: 82.5rpx;
|
|
||||||
}
|
|
||||||
.mt-44.data-v-60893f73 {
|
|
||||||
margin-top: 82.5rpx;
|
|
||||||
}
|
|
||||||
.ml-46.data-v-60893f73 {
|
|
||||||
margin-left: 86.25rpx;
|
|
||||||
}
|
|
||||||
.mt-46.data-v-60893f73 {
|
|
||||||
margin-top: 86.25rpx;
|
|
||||||
}
|
|
||||||
.ml-48.data-v-60893f73 {
|
|
||||||
margin-left: 90rpx;
|
|
||||||
}
|
|
||||||
.mt-48.data-v-60893f73 {
|
|
||||||
margin-top: 90rpx;
|
|
||||||
}
|
|
||||||
.ml-50.data-v-60893f73 {
|
|
||||||
margin-left: 93.75rpx;
|
|
||||||
}
|
|
||||||
.mt-50.data-v-60893f73 {
|
|
||||||
margin-top: 93.75rpx;
|
|
||||||
}
|
|
||||||
.ml-52.data-v-60893f73 {
|
|
||||||
margin-left: 97.5rpx;
|
|
||||||
}
|
|
||||||
.mt-52.data-v-60893f73 {
|
|
||||||
margin-top: 97.5rpx;
|
|
||||||
}
|
|
||||||
.ml-54.data-v-60893f73 {
|
|
||||||
margin-left: 101.25rpx;
|
|
||||||
}
|
|
||||||
.mt-54.data-v-60893f73 {
|
|
||||||
margin-top: 101.25rpx;
|
|
||||||
}
|
|
||||||
.ml-56.data-v-60893f73 {
|
|
||||||
margin-left: 105rpx;
|
|
||||||
}
|
|
||||||
.mt-56.data-v-60893f73 {
|
|
||||||
margin-top: 105rpx;
|
|
||||||
}
|
|
||||||
.ml-58.data-v-60893f73 {
|
|
||||||
margin-left: 108.75rpx;
|
|
||||||
}
|
|
||||||
.mt-58.data-v-60893f73 {
|
|
||||||
margin-top: 108.75rpx;
|
|
||||||
}
|
|
||||||
.ml-60.data-v-60893f73 {
|
|
||||||
margin-left: 112.5rpx;
|
|
||||||
}
|
|
||||||
.mt-60.data-v-60893f73 {
|
|
||||||
margin-top: 112.5rpx;
|
|
||||||
}
|
|
||||||
.ml-62.data-v-60893f73 {
|
|
||||||
margin-left: 116.25rpx;
|
|
||||||
}
|
|
||||||
.mt-62.data-v-60893f73 {
|
|
||||||
margin-top: 116.25rpx;
|
|
||||||
}
|
|
||||||
.ml-64.data-v-60893f73 {
|
|
||||||
margin-left: 120rpx;
|
|
||||||
}
|
|
||||||
.mt-64.data-v-60893f73 {
|
|
||||||
margin-top: 120rpx;
|
|
||||||
}
|
|
||||||
.ml-66.data-v-60893f73 {
|
|
||||||
margin-left: 123.75rpx;
|
|
||||||
}
|
|
||||||
.mt-66.data-v-60893f73 {
|
|
||||||
margin-top: 123.75rpx;
|
|
||||||
}
|
|
||||||
.ml-68.data-v-60893f73 {
|
|
||||||
margin-left: 127.5rpx;
|
|
||||||
}
|
|
||||||
.mt-68.data-v-60893f73 {
|
|
||||||
margin-top: 127.5rpx;
|
|
||||||
}
|
|
||||||
.ml-70.data-v-60893f73 {
|
|
||||||
margin-left: 131.25rpx;
|
|
||||||
}
|
|
||||||
.mt-70.data-v-60893f73 {
|
|
||||||
margin-top: 131.25rpx;
|
|
||||||
}
|
|
||||||
.ml-72.data-v-60893f73 {
|
|
||||||
margin-left: 135rpx;
|
|
||||||
}
|
|
||||||
.mt-72.data-v-60893f73 {
|
|
||||||
margin-top: 135rpx;
|
|
||||||
}
|
|
||||||
.ml-74.data-v-60893f73 {
|
|
||||||
margin-left: 138.75rpx;
|
|
||||||
}
|
|
||||||
.mt-74.data-v-60893f73 {
|
|
||||||
margin-top: 138.75rpx;
|
|
||||||
}
|
|
||||||
.ml-76.data-v-60893f73 {
|
|
||||||
margin-left: 142.5rpx;
|
|
||||||
}
|
|
||||||
.mt-76.data-v-60893f73 {
|
|
||||||
margin-top: 142.5rpx;
|
|
||||||
}
|
|
||||||
.ml-78.data-v-60893f73 {
|
|
||||||
margin-left: 146.25rpx;
|
|
||||||
}
|
|
||||||
.mt-78.data-v-60893f73 {
|
|
||||||
margin-top: 146.25rpx;
|
|
||||||
}
|
|
||||||
.ml-80.data-v-60893f73 {
|
|
||||||
margin-left: 150rpx;
|
|
||||||
}
|
|
||||||
.mt-80.data-v-60893f73 {
|
|
||||||
margin-top: 150rpx;
|
|
||||||
}
|
|
||||||
.ml-82.data-v-60893f73 {
|
|
||||||
margin-left: 153.75rpx;
|
|
||||||
}
|
|
||||||
.mt-82.data-v-60893f73 {
|
|
||||||
margin-top: 153.75rpx;
|
|
||||||
}
|
|
||||||
.ml-84.data-v-60893f73 {
|
|
||||||
margin-left: 157.5rpx;
|
|
||||||
}
|
|
||||||
.mt-84.data-v-60893f73 {
|
|
||||||
margin-top: 157.5rpx;
|
|
||||||
}
|
|
||||||
.ml-86.data-v-60893f73 {
|
|
||||||
margin-left: 161.25rpx;
|
|
||||||
}
|
|
||||||
.mt-86.data-v-60893f73 {
|
|
||||||
margin-top: 161.25rpx;
|
|
||||||
}
|
|
||||||
.ml-88.data-v-60893f73 {
|
|
||||||
margin-left: 165rpx;
|
|
||||||
}
|
|
||||||
.mt-88.data-v-60893f73 {
|
|
||||||
margin-top: 165rpx;
|
|
||||||
}
|
|
||||||
.ml-90.data-v-60893f73 {
|
|
||||||
margin-left: 168.75rpx;
|
|
||||||
}
|
|
||||||
.mt-90.data-v-60893f73 {
|
|
||||||
margin-top: 168.75rpx;
|
|
||||||
}
|
|
||||||
.ml-92.data-v-60893f73 {
|
|
||||||
margin-left: 172.5rpx;
|
|
||||||
}
|
|
||||||
.mt-92.data-v-60893f73 {
|
|
||||||
margin-top: 172.5rpx;
|
|
||||||
}
|
|
||||||
.ml-94.data-v-60893f73 {
|
|
||||||
margin-left: 176.25rpx;
|
|
||||||
}
|
|
||||||
.mt-94.data-v-60893f73 {
|
|
||||||
margin-top: 176.25rpx;
|
|
||||||
}
|
|
||||||
.ml-96.data-v-60893f73 {
|
|
||||||
margin-left: 180rpx;
|
|
||||||
}
|
|
||||||
.mt-96.data-v-60893f73 {
|
|
||||||
margin-top: 180rpx;
|
|
||||||
}
|
|
||||||
.ml-98.data-v-60893f73 {
|
|
||||||
margin-left: 183.75rpx;
|
|
||||||
}
|
|
||||||
.mt-98.data-v-60893f73 {
|
|
||||||
margin-top: 183.75rpx;
|
|
||||||
}
|
|
||||||
.ml-100.data-v-60893f73 {
|
|
||||||
margin-left: 187.5rpx;
|
|
||||||
}
|
|
||||||
.mt-100.data-v-60893f73 {
|
|
||||||
margin-top: 187.5rpx;
|
|
||||||
}
|
|
||||||
.ml-7.data-v-60893f73 {
|
|
||||||
margin-left: 13.13rpx;
|
|
||||||
}
|
|
||||||
.ml-9.data-v-60893f73 {
|
|
||||||
margin-left: 16.88rpx;
|
|
||||||
}
|
|
||||||
.ml-23.data-v-60893f73 {
|
|
||||||
margin-left: 43.13rpx;
|
|
||||||
}
|
|
||||||
.mt-23.data-v-60893f73 {
|
|
||||||
margin-top: 43.13rpx;
|
|
||||||
}
|
|
||||||
.ml-13.data-v-60893f73 {
|
|
||||||
margin-left: 24.38rpx;
|
|
||||||
}
|
|
||||||
.mt-9.data-v-60893f73 {
|
|
||||||
margin-top: 16.88rpx;
|
|
||||||
}
|
|
||||||
.mt-11.data-v-60893f73 {
|
|
||||||
margin-top: 20.63rpx;
|
|
||||||
}
|
|
||||||
.ml-1.data-v-60893f73 {
|
|
||||||
margin-left: 1.88rpx;
|
|
||||||
}
|
|
||||||
.mt-15.data-v-60893f73 {
|
|
||||||
margin-top: 28.13rpx;
|
|
||||||
}
|
|
||||||
.mt-19.data-v-60893f73 {
|
|
||||||
position: fixed;
|
|
||||||
bottom: 0;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
.ml-51.data-v-60893f73 {
|
|
||||||
margin-left: 95.63rpx;
|
|
||||||
}
|
|
||||||
.ml-3.data-v-60893f73 {
|
|
||||||
margin-left: 5.63rpx;
|
|
||||||
}
|
|
||||||
.page.data-v-60893f73 {
|
|
||||||
background-color: #ffffff;
|
|
||||||
height: 100%;
|
|
||||||
width: 100%;
|
|
||||||
overflow-y: auto;
|
|
||||||
overflow-x: hidden;
|
|
||||||
}
|
|
||||||
.section.data-v-60893f73 {
|
|
||||||
background-color: #f5f5dc;
|
|
||||||
}
|
|
||||||
.group.data-v-60893f73 {
|
|
||||||
padding: 45.75rpx 0;
|
|
||||||
}
|
|
||||||
.group_2.data-v-60893f73 {
|
|
||||||
padding-top: 12.38rpx;
|
|
||||||
}
|
|
||||||
.section_2.data-v-60893f73 {
|
|
||||||
margin-left: 71.25rpx;
|
|
||||||
background-color: #ffffff00;
|
|
||||||
border-radius: 18.75rpx;
|
|
||||||
width: 281.25rpx;
|
|
||||||
height: 281.25rpx;
|
|
||||||
}
|
|
||||||
.font.data-v-60893f73 {
|
|
||||||
font-size: 30rpx;
|
|
||||||
font-family: Open Sans;
|
|
||||||
line-height: 27.75rpx;
|
|
||||||
color: #323232;
|
|
||||||
}
|
|
||||||
.text.data-v-60893f73 {
|
|
||||||
line-height: 27.96rpx;
|
|
||||||
}
|
|
||||||
.pos.data-v-60893f73 {
|
|
||||||
position: absolute;
|
|
||||||
left: 21.62rpx;
|
|
||||||
top: 0;
|
|
||||||
}
|
|
||||||
.section_3.data-v-60893f73 {
|
|
||||||
padding-left: 33.75rpx;
|
|
||||||
padding-right: 28.13rpx;
|
|
||||||
background-color: #fffef8;
|
|
||||||
border-radius: 18.75rpx;
|
|
||||||
}
|
|
||||||
.pos_2.data-v-60893f73 {
|
|
||||||
position: absolute;
|
|
||||||
left: 20.63rpx;
|
|
||||||
right: 20.63rpx;
|
|
||||||
top: 53.63rpx;
|
|
||||||
}
|
|
||||||
.group_3.data-v-60893f73 {
|
|
||||||
padding: 31.88rpx 0 15.94rpx;
|
|
||||||
border-bottom: solid 1.88rpx #e2e0e0;
|
|
||||||
}
|
|
||||||
.image.data-v-60893f73 {
|
|
||||||
width: 43.13rpx;
|
|
||||||
height: 43.13rpx;
|
|
||||||
}
|
|
||||||
.font_2.data-v-60893f73 {
|
|
||||||
font-size: 26.25rpx;
|
|
||||||
font-family: Open Sans;
|
|
||||||
line-height: 24.3rpx;
|
|
||||||
color: #323232;
|
|
||||||
}
|
|
||||||
.text_2.data-v-60893f73 {
|
|
||||||
line-height: 24rpx;
|
|
||||||
}
|
|
||||||
.text_3.data-v-60893f73 {
|
|
||||||
line-height: 24rpx;
|
|
||||||
}
|
|
||||||
.image_2.data-v-60893f73 {
|
|
||||||
width: 33.75rpx;
|
|
||||||
height: 33.75rpx;
|
|
||||||
}
|
|
||||||
.group_4.data-v-60893f73 {
|
|
||||||
padding: 22.97rpx 0 36.51rpx;
|
|
||||||
}
|
|
||||||
.font_3.data-v-60893f73 {
|
|
||||||
font-size: 26.25rpx;
|
|
||||||
font-family: Open Sans;
|
|
||||||
line-height: 31.88rpx;
|
|
||||||
color: #323232;
|
|
||||||
}
|
|
||||||
.group_5.data-v-60893f73 {
|
|
||||||
padding: 0 30rpx;
|
|
||||||
}
|
|
||||||
.text_4.data-v-60893f73 {
|
|
||||||
line-height: 27.69rpx;
|
|
||||||
}
|
|
||||||
.section_4.data-v-60893f73 {
|
|
||||||
padding: 31.88rpx 0;
|
|
||||||
background-color: #fffef8;
|
|
||||||
border-radius: 18.75rpx;
|
|
||||||
}
|
|
||||||
.equal-division.data-v-60893f73 {
|
|
||||||
margin-left: 41.25rpx;
|
|
||||||
margin-right: 41.27rpx;
|
|
||||||
}
|
|
||||||
.equal-division-item_1.data-v-60893f73 {
|
|
||||||
flex: 1 1 281.25rpx;
|
|
||||||
}
|
|
||||||
.section_5.data-v-60893f73 {
|
|
||||||
padding: 31.57rpx 0 40.58rpx;
|
|
||||||
background-color: #fff291;
|
|
||||||
border-radius: 18.75rpx;
|
|
||||||
height: 281.25rpx;
|
|
||||||
}
|
|
||||||
.image_3.data-v-60893f73 {
|
|
||||||
width: 159.99rpx;
|
|
||||||
height: 159.99rpx;
|
|
||||||
}
|
|
||||||
.font_4.data-v-60893f73 {
|
|
||||||
font-size: 30rpx;
|
|
||||||
font-family: Inter;
|
|
||||||
line-height: 27.75rpx;
|
|
||||||
color: #323232;
|
|
||||||
}
|
|
||||||
.equal-division-item_2.data-v-60893f73 {
|
|
||||||
position: relative;
|
|
||||||
flex: 1 1 281.25rpx;
|
|
||||||
}
|
|
||||||
.equal-division-item.data-v-60893f73 {
|
|
||||||
padding: 31.56rpx 0 42.49rpx;
|
|
||||||
background-color: #fff291;
|
|
||||||
border-radius: 18.75rpx;
|
|
||||||
height: 281.25rpx;
|
|
||||||
}
|
|
||||||
.text_5.data-v-60893f73 {
|
|
||||||
margin-top: 19.46rpx;
|
|
||||||
}
|
|
||||||
.section_7.data-v-60893f73 {
|
|
||||||
background-color: #ffffff99;
|
|
||||||
border-radius: 18.75rpx;
|
|
||||||
width: 281.25rpx;
|
|
||||||
height: 281.25rpx;
|
|
||||||
}
|
|
||||||
.pos_3.data-v-60893f73 {
|
|
||||||
position: absolute;
|
|
||||||
left: 0;
|
|
||||||
right: 0;
|
|
||||||
top: 0;
|
|
||||||
bottom: 0;
|
|
||||||
}
|
|
||||||
.text_6.data-v-60893f73 {
|
|
||||||
line-height: 27.86rpx;
|
|
||||||
}
|
|
||||||
.section_8.data-v-60893f73 {
|
|
||||||
padding: 30rpx 30rpx 26.25rpx;
|
|
||||||
background-color: #fff3c3;
|
|
||||||
}
|
|
||||||
.section_1.data-v-60893f73 {
|
|
||||||
padding: 24.38rpx 26.25rpx 26.25rpx 39.38rpx;
|
|
||||||
background-color: #fffef8;
|
|
||||||
border-radius: 18.75rpx;
|
|
||||||
}
|
|
||||||
.image_4.data-v-60893f73 {
|
|
||||||
border-radius: 9.38rpx;
|
|
||||||
width: 118.13rpx;
|
|
||||||
height: 151.88rpx;
|
|
||||||
}
|
|
||||||
.text_7.data-v-60893f73 {
|
|
||||||
line-height: 24.26rpx;
|
|
||||||
}
|
|
||||||
.font_5.data-v-60893f73 {
|
|
||||||
font-size: 33.75rpx;
|
|
||||||
font-family: Open Sans;
|
|
||||||
line-height: 24.3rpx;
|
|
||||||
color: #ff3c3c;
|
|
||||||
}
|
|
||||||
.text_1.data-v-60893f73 {
|
|
||||||
line-height: 24.81rpx;
|
|
||||||
}
|
|
||||||
.font_6.data-v-60893f73 {
|
|
||||||
font-size: 22.5rpx;
|
|
||||||
font-family: Open Sans;
|
|
||||||
line-height: 21.36rpx;
|
|
||||||
color: #898989;
|
|
||||||
}
|
|
||||||
.image_5.data-v-60893f73 {
|
|
||||||
width: 37.5rpx;
|
|
||||||
height: 37.5rpx;
|
|
||||||
}
|
|
||||||
.section_13.data-v-60893f73 {
|
|
||||||
padding: 26.27rpx 26.25rpx 24.36rpx 39.38rpx;
|
|
||||||
background-color: #fffef8;
|
|
||||||
border-radius: 18.75rpx;
|
|
||||||
}
|
|
||||||
.group_6.data-v-60893f73 {
|
|
||||||
margin-left: 24.77rpx;
|
|
||||||
}
|
|
||||||
.text_9.data-v-60893f73 {
|
|
||||||
line-height: 24.15rpx;
|
|
||||||
}
|
|
||||||
.text_10.data-v-60893f73 {
|
|
||||||
line-height: 24.81rpx;
|
|
||||||
}
|
|
||||||
.text_11.data-v-60893f73 {
|
|
||||||
line-height: 21.38rpx;
|
|
||||||
}
|
|
||||||
.image_6.data-v-60893f73 {
|
|
||||||
margin-left: 39.99rpx;
|
|
||||||
}
|
|
||||||
.image_7.data-v-60893f73 {
|
|
||||||
width: 118.13rpx;
|
|
||||||
height: 151.88rpx;
|
|
||||||
}
|
|
||||||
.text_12.data-v-60893f73 {
|
|
||||||
line-height: 24.23rpx;
|
|
||||||
}
|
|
||||||
.text_20.data-v-60893f73 {
|
|
||||||
line-height: 24.81rpx;
|
|
||||||
}
|
|
||||||
.image_8.data-v-60893f73 {
|
|
||||||
width: 28.13rpx;
|
|
||||||
height: 28.13rpx;
|
|
||||||
}
|
|
||||||
.text_13.data-v-60893f73 {
|
|
||||||
color: #000000;
|
|
||||||
line-height: 20.77rpx;
|
|
||||||
}
|
|
||||||
.section_9.data-v-60893f73 {
|
|
||||||
padding: 16.88rpx 20.63rpx 15rpx 21.6rpx;
|
|
||||||
background-color: #fffef8;
|
|
||||||
}
|
|
||||||
.group_7.data-v-60893f73 {
|
|
||||||
width: 236.23rpx;
|
|
||||||
}
|
|
||||||
.group_8.data-v-60893f73 {
|
|
||||||
padding: 4.22rpx 0 5.25rpx;
|
|
||||||
}
|
|
||||||
.text_14.data-v-60893f73 {
|
|
||||||
color: #000000;
|
|
||||||
font-size: 26.25rpx;
|
|
||||||
font-family: Inter;
|
|
||||||
line-height: 24.28rpx;
|
|
||||||
}
|
|
||||||
.pos_4.data-v-60893f73 {
|
|
||||||
position: absolute;
|
|
||||||
right: 0;
|
|
||||||
bottom: 0;
|
|
||||||
}
|
|
||||||
.text_15.data-v-60893f73 {
|
|
||||||
color: #fbb612;
|
|
||||||
font-weight: 700;
|
|
||||||
line-height: 24.84rpx;
|
|
||||||
}
|
|
||||||
.text_17.data-v-60893f73 {
|
|
||||||
margin-left: 3.52rpx;
|
|
||||||
color: #fbb612;
|
|
||||||
font-size: 26.25rpx;
|
|
||||||
font-family: Open Sans;
|
|
||||||
font-weight: 700;
|
|
||||||
line-height: 19.29rpx;
|
|
||||||
}
|
|
||||||
.section_10.data-v-60893f73 {
|
|
||||||
padding: 9.38rpx 9.38rpx 9.38rpx 10.18rpx;
|
|
||||||
background-color: #d9d9d9;
|
|
||||||
border-radius: 9.38rpx;
|
|
||||||
height: 37.5rpx;
|
|
||||||
}
|
|
||||||
.text_18.data-v-60893f73 {
|
|
||||||
color: #323232;
|
|
||||||
font-size: 18.75rpx;
|
|
||||||
font-family: Inter;
|
|
||||||
line-height: 17.36rpx;
|
|
||||||
}
|
|
||||||
.image_9.data-v-60893f73 {
|
|
||||||
width: 18.75rpx;
|
|
||||||
height: 18.75rpx;
|
|
||||||
}
|
|
||||||
.text-wrapper.data-v-60893f73 {
|
|
||||||
padding: 27.3rpx 0 27.45rpx;
|
|
||||||
background-color: #fbb612;
|
|
||||||
border-radius: 75rpx;
|
|
||||||
height: 82.5rpx;
|
|
||||||
}
|
|
||||||
.text_16.data-v-60893f73 {
|
|
||||||
color: #ffffff;
|
|
||||||
}
|
|
|
@ -1,19 +0,0 @@
|
||||||
"use strict";
|
|
||||||
const common_vendor = require("../../common/vendor.js");
|
|
||||||
const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
|
|
||||||
__name: "AppointmentHome",
|
|
||||||
setup(__props) {
|
|
||||||
const goto = () => {
|
|
||||||
common_vendor.index.navigateTo({
|
|
||||||
url: "/pages/booking/BillingOfFees/BillingOfFees"
|
|
||||||
});
|
|
||||||
};
|
|
||||||
return (_ctx, _cache) => {
|
|
||||||
return {
|
|
||||||
a: common_vendor.o(goto)
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
});
|
|
||||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-60893f73"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/booking/AppointmentHome.vue"]]);
|
|
||||||
my.createPage(MiniProgramPage);
|
|
|
@ -1,4 +0,0 @@
|
||||||
{
|
|
||||||
"defaultTitle": "",
|
|
||||||
"usingComponents": {}
|
|
||||||
}
|
|
|
@ -1,496 +0,0 @@
|
||||||
/* 水平间距 */
|
|
||||||
/* 水平间距 */
|
|
||||||
/************************************************************
|
|
||||||
** 请将全局样式拷贝到项目的全局 CSS 文件或者当前页面的顶部 **
|
|
||||||
** 否则页面将无法正常显示 **
|
|
||||||
************************************************************/
|
|
||||||
html.data-v-cab9a6c6 {
|
|
||||||
font-size: 16px;
|
|
||||||
}
|
|
||||||
body.data-v-cab9a6c6 {
|
|
||||||
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-cab9a6c6,
|
|
||||||
image.data-v-cab9a6c6,
|
|
||||||
text.data-v-cab9a6c6 {
|
|
||||||
box-sizing: border-box;
|
|
||||||
flex-shrink: 0;
|
|
||||||
}
|
|
||||||
#app.data-v-cab9a6c6 {
|
|
||||||
width: 100vw;
|
|
||||||
height: 100vh;
|
|
||||||
}
|
|
||||||
.flex-row.data-v-cab9a6c6 {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
}
|
|
||||||
.flex-col.data-v-cab9a6c6 {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
.justify-start.data-v-cab9a6c6 {
|
|
||||||
justify-content: flex-start;
|
|
||||||
}
|
|
||||||
.justify-end.data-v-cab9a6c6 {
|
|
||||||
justify-content: flex-end;
|
|
||||||
}
|
|
||||||
.justify-center.data-v-cab9a6c6 {
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
.justify-between.data-v-cab9a6c6 {
|
|
||||||
justify-content: space-between;
|
|
||||||
}
|
|
||||||
.justify-around.data-v-cab9a6c6 {
|
|
||||||
justify-content: space-around;
|
|
||||||
}
|
|
||||||
.justify-evenly.data-v-cab9a6c6 {
|
|
||||||
justify-content: space-evenly;
|
|
||||||
}
|
|
||||||
.items-start.data-v-cab9a6c6 {
|
|
||||||
align-items: flex-start;
|
|
||||||
}
|
|
||||||
.items-end.data-v-cab9a6c6 {
|
|
||||||
align-items: flex-end;
|
|
||||||
}
|
|
||||||
.items-center.data-v-cab9a6c6 {
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
.items-baseline.data-v-cab9a6c6 {
|
|
||||||
align-items: baseline;
|
|
||||||
}
|
|
||||||
.items-stretch.data-v-cab9a6c6 {
|
|
||||||
align-items: stretch;
|
|
||||||
}
|
|
||||||
.self-start.data-v-cab9a6c6 {
|
|
||||||
align-self: flex-start;
|
|
||||||
}
|
|
||||||
.self-end.data-v-cab9a6c6 {
|
|
||||||
align-self: flex-end;
|
|
||||||
}
|
|
||||||
.self-center.data-v-cab9a6c6 {
|
|
||||||
align-self: center;
|
|
||||||
}
|
|
||||||
.self-baseline.data-v-cab9a6c6 {
|
|
||||||
align-self: baseline;
|
|
||||||
}
|
|
||||||
.self-stretch.data-v-cab9a6c6 {
|
|
||||||
align-self: stretch;
|
|
||||||
}
|
|
||||||
.flex-1.data-v-cab9a6c6 {
|
|
||||||
flex: 1 1 0%;
|
|
||||||
}
|
|
||||||
.flex-auto.data-v-cab9a6c6 {
|
|
||||||
flex: 1 1 auto;
|
|
||||||
}
|
|
||||||
.grow.data-v-cab9a6c6 {
|
|
||||||
flex-grow: 1;
|
|
||||||
}
|
|
||||||
.grow-0.data-v-cab9a6c6 {
|
|
||||||
flex-grow: 0;
|
|
||||||
}
|
|
||||||
.shrink.data-v-cab9a6c6 {
|
|
||||||
flex-shrink: 1;
|
|
||||||
}
|
|
||||||
.shrink-0.data-v-cab9a6c6 {
|
|
||||||
flex-shrink: 0;
|
|
||||||
}
|
|
||||||
.relative.data-v-cab9a6c6 {
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
.ml-2.data-v-cab9a6c6 {
|
|
||||||
margin-left: 3.75rpx;
|
|
||||||
}
|
|
||||||
.mt-2.data-v-cab9a6c6 {
|
|
||||||
margin-top: 3.75rpx;
|
|
||||||
}
|
|
||||||
.ml-4.data-v-cab9a6c6 {
|
|
||||||
margin-left: 7.5rpx;
|
|
||||||
}
|
|
||||||
.mt-4.data-v-cab9a6c6 {
|
|
||||||
margin-top: 7.5rpx;
|
|
||||||
}
|
|
||||||
.ml-6.data-v-cab9a6c6 {
|
|
||||||
margin-left: 11.25rpx;
|
|
||||||
}
|
|
||||||
.mt-6.data-v-cab9a6c6 {
|
|
||||||
margin-top: 11.25rpx;
|
|
||||||
}
|
|
||||||
.ml-8.data-v-cab9a6c6 {
|
|
||||||
margin-left: 15rpx;
|
|
||||||
}
|
|
||||||
.mt-8.data-v-cab9a6c6 {
|
|
||||||
margin-top: 15rpx;
|
|
||||||
}
|
|
||||||
.ml-10.data-v-cab9a6c6 {
|
|
||||||
margin-left: 18.75rpx;
|
|
||||||
}
|
|
||||||
.mt-10.data-v-cab9a6c6 {
|
|
||||||
margin-top: 18.75rpx;
|
|
||||||
}
|
|
||||||
.ml-12.data-v-cab9a6c6 {
|
|
||||||
margin-left: 22.5rpx;
|
|
||||||
}
|
|
||||||
.mt-12.data-v-cab9a6c6 {
|
|
||||||
margin-top: 22.5rpx;
|
|
||||||
}
|
|
||||||
.ml-14.data-v-cab9a6c6 {
|
|
||||||
margin-left: 26.25rpx;
|
|
||||||
}
|
|
||||||
.mt-14.data-v-cab9a6c6 {
|
|
||||||
margin-top: 26.25rpx;
|
|
||||||
}
|
|
||||||
.ml-16.data-v-cab9a6c6 {
|
|
||||||
margin-left: 30rpx;
|
|
||||||
}
|
|
||||||
.mt-16.data-v-cab9a6c6 {
|
|
||||||
margin-top: 30rpx;
|
|
||||||
}
|
|
||||||
.ml-18.data-v-cab9a6c6 {
|
|
||||||
margin-left: 33.75rpx;
|
|
||||||
}
|
|
||||||
.mt-18.data-v-cab9a6c6 {
|
|
||||||
margin-top: 33.75rpx;
|
|
||||||
}
|
|
||||||
.ml-20.data-v-cab9a6c6 {
|
|
||||||
margin-left: 37.5rpx;
|
|
||||||
}
|
|
||||||
.mt-20.data-v-cab9a6c6 {
|
|
||||||
margin-top: 37.5rpx;
|
|
||||||
}
|
|
||||||
.ml-22.data-v-cab9a6c6 {
|
|
||||||
margin-left: 41.25rpx;
|
|
||||||
}
|
|
||||||
.mt-22.data-v-cab9a6c6 {
|
|
||||||
margin-top: 41.25rpx;
|
|
||||||
}
|
|
||||||
.ml-24.data-v-cab9a6c6 {
|
|
||||||
margin-left: 45rpx;
|
|
||||||
}
|
|
||||||
.mt-24.data-v-cab9a6c6 {
|
|
||||||
margin-top: 45rpx;
|
|
||||||
}
|
|
||||||
.ml-26.data-v-cab9a6c6 {
|
|
||||||
margin-left: 48.75rpx;
|
|
||||||
}
|
|
||||||
.mt-26.data-v-cab9a6c6 {
|
|
||||||
margin-top: 48.75rpx;
|
|
||||||
}
|
|
||||||
.ml-28.data-v-cab9a6c6 {
|
|
||||||
margin-left: 52.5rpx;
|
|
||||||
}
|
|
||||||
.mt-28.data-v-cab9a6c6 {
|
|
||||||
margin-top: 52.5rpx;
|
|
||||||
}
|
|
||||||
.ml-30.data-v-cab9a6c6 {
|
|
||||||
margin-left: 56.25rpx;
|
|
||||||
}
|
|
||||||
.mt-30.data-v-cab9a6c6 {
|
|
||||||
margin-top: 56.25rpx;
|
|
||||||
}
|
|
||||||
.ml-32.data-v-cab9a6c6 {
|
|
||||||
margin-left: 60rpx;
|
|
||||||
}
|
|
||||||
.mt-32.data-v-cab9a6c6 {
|
|
||||||
margin-top: 60rpx;
|
|
||||||
}
|
|
||||||
.ml-34.data-v-cab9a6c6 {
|
|
||||||
margin-left: 63.75rpx;
|
|
||||||
}
|
|
||||||
.mt-34.data-v-cab9a6c6 {
|
|
||||||
margin-top: 63.75rpx;
|
|
||||||
}
|
|
||||||
.ml-36.data-v-cab9a6c6 {
|
|
||||||
margin-left: 67.5rpx;
|
|
||||||
}
|
|
||||||
.mt-36.data-v-cab9a6c6 {
|
|
||||||
margin-top: 67.5rpx;
|
|
||||||
}
|
|
||||||
.ml-38.data-v-cab9a6c6 {
|
|
||||||
margin-left: 71.25rpx;
|
|
||||||
}
|
|
||||||
.mt-38.data-v-cab9a6c6 {
|
|
||||||
margin-top: 71.25rpx;
|
|
||||||
}
|
|
||||||
.ml-40.data-v-cab9a6c6 {
|
|
||||||
margin-left: 75rpx;
|
|
||||||
}
|
|
||||||
.mt-40.data-v-cab9a6c6 {
|
|
||||||
margin-top: 75rpx;
|
|
||||||
}
|
|
||||||
.ml-42.data-v-cab9a6c6 {
|
|
||||||
margin-left: 78.75rpx;
|
|
||||||
}
|
|
||||||
.mt-42.data-v-cab9a6c6 {
|
|
||||||
margin-top: 78.75rpx;
|
|
||||||
}
|
|
||||||
.ml-44.data-v-cab9a6c6 {
|
|
||||||
margin-left: 82.5rpx;
|
|
||||||
}
|
|
||||||
.mt-44.data-v-cab9a6c6 {
|
|
||||||
margin-top: 82.5rpx;
|
|
||||||
}
|
|
||||||
.ml-46.data-v-cab9a6c6 {
|
|
||||||
margin-left: 86.25rpx;
|
|
||||||
}
|
|
||||||
.mt-46.data-v-cab9a6c6 {
|
|
||||||
margin-top: 86.25rpx;
|
|
||||||
}
|
|
||||||
.ml-48.data-v-cab9a6c6 {
|
|
||||||
margin-left: 90rpx;
|
|
||||||
}
|
|
||||||
.mt-48.data-v-cab9a6c6 {
|
|
||||||
margin-top: 90rpx;
|
|
||||||
}
|
|
||||||
.ml-50.data-v-cab9a6c6 {
|
|
||||||
margin-left: 93.75rpx;
|
|
||||||
}
|
|
||||||
.mt-50.data-v-cab9a6c6 {
|
|
||||||
margin-top: 93.75rpx;
|
|
||||||
}
|
|
||||||
.ml-52.data-v-cab9a6c6 {
|
|
||||||
margin-left: 97.5rpx;
|
|
||||||
}
|
|
||||||
.mt-52.data-v-cab9a6c6 {
|
|
||||||
margin-top: 97.5rpx;
|
|
||||||
}
|
|
||||||
.ml-54.data-v-cab9a6c6 {
|
|
||||||
margin-left: 101.25rpx;
|
|
||||||
}
|
|
||||||
.mt-54.data-v-cab9a6c6 {
|
|
||||||
margin-top: 101.25rpx;
|
|
||||||
}
|
|
||||||
.ml-56.data-v-cab9a6c6 {
|
|
||||||
margin-left: 105rpx;
|
|
||||||
}
|
|
||||||
.mt-56.data-v-cab9a6c6 {
|
|
||||||
margin-top: 105rpx;
|
|
||||||
}
|
|
||||||
.ml-58.data-v-cab9a6c6 {
|
|
||||||
margin-left: 108.75rpx;
|
|
||||||
}
|
|
||||||
.mt-58.data-v-cab9a6c6 {
|
|
||||||
margin-top: 108.75rpx;
|
|
||||||
}
|
|
||||||
.ml-60.data-v-cab9a6c6 {
|
|
||||||
margin-left: 112.5rpx;
|
|
||||||
}
|
|
||||||
.mt-60.data-v-cab9a6c6 {
|
|
||||||
margin-top: 112.5rpx;
|
|
||||||
}
|
|
||||||
.ml-62.data-v-cab9a6c6 {
|
|
||||||
margin-left: 116.25rpx;
|
|
||||||
}
|
|
||||||
.mt-62.data-v-cab9a6c6 {
|
|
||||||
margin-top: 116.25rpx;
|
|
||||||
}
|
|
||||||
.ml-64.data-v-cab9a6c6 {
|
|
||||||
margin-left: 120rpx;
|
|
||||||
}
|
|
||||||
.mt-64.data-v-cab9a6c6 {
|
|
||||||
margin-top: 120rpx;
|
|
||||||
}
|
|
||||||
.ml-66.data-v-cab9a6c6 {
|
|
||||||
margin-left: 123.75rpx;
|
|
||||||
}
|
|
||||||
.mt-66.data-v-cab9a6c6 {
|
|
||||||
margin-top: 123.75rpx;
|
|
||||||
}
|
|
||||||
.ml-68.data-v-cab9a6c6 {
|
|
||||||
margin-left: 127.5rpx;
|
|
||||||
}
|
|
||||||
.mt-68.data-v-cab9a6c6 {
|
|
||||||
margin-top: 127.5rpx;
|
|
||||||
}
|
|
||||||
.ml-70.data-v-cab9a6c6 {
|
|
||||||
margin-left: 131.25rpx;
|
|
||||||
}
|
|
||||||
.mt-70.data-v-cab9a6c6 {
|
|
||||||
margin-top: 131.25rpx;
|
|
||||||
}
|
|
||||||
.ml-72.data-v-cab9a6c6 {
|
|
||||||
margin-left: 135rpx;
|
|
||||||
}
|
|
||||||
.mt-72.data-v-cab9a6c6 {
|
|
||||||
margin-top: 135rpx;
|
|
||||||
}
|
|
||||||
.ml-74.data-v-cab9a6c6 {
|
|
||||||
margin-left: 138.75rpx;
|
|
||||||
}
|
|
||||||
.mt-74.data-v-cab9a6c6 {
|
|
||||||
margin-top: 138.75rpx;
|
|
||||||
}
|
|
||||||
.ml-76.data-v-cab9a6c6 {
|
|
||||||
margin-left: 142.5rpx;
|
|
||||||
}
|
|
||||||
.mt-76.data-v-cab9a6c6 {
|
|
||||||
margin-top: 142.5rpx;
|
|
||||||
}
|
|
||||||
.ml-78.data-v-cab9a6c6 {
|
|
||||||
margin-left: 146.25rpx;
|
|
||||||
}
|
|
||||||
.mt-78.data-v-cab9a6c6 {
|
|
||||||
margin-top: 146.25rpx;
|
|
||||||
}
|
|
||||||
.ml-80.data-v-cab9a6c6 {
|
|
||||||
margin-left: 150rpx;
|
|
||||||
}
|
|
||||||
.mt-80.data-v-cab9a6c6 {
|
|
||||||
margin-top: 150rpx;
|
|
||||||
}
|
|
||||||
.ml-82.data-v-cab9a6c6 {
|
|
||||||
margin-left: 153.75rpx;
|
|
||||||
}
|
|
||||||
.mt-82.data-v-cab9a6c6 {
|
|
||||||
margin-top: 153.75rpx;
|
|
||||||
}
|
|
||||||
.ml-84.data-v-cab9a6c6 {
|
|
||||||
margin-left: 157.5rpx;
|
|
||||||
}
|
|
||||||
.mt-84.data-v-cab9a6c6 {
|
|
||||||
margin-top: 157.5rpx;
|
|
||||||
}
|
|
||||||
.ml-86.data-v-cab9a6c6 {
|
|
||||||
margin-left: 161.25rpx;
|
|
||||||
}
|
|
||||||
.mt-86.data-v-cab9a6c6 {
|
|
||||||
margin-top: 161.25rpx;
|
|
||||||
}
|
|
||||||
.ml-88.data-v-cab9a6c6 {
|
|
||||||
margin-left: 165rpx;
|
|
||||||
}
|
|
||||||
.mt-88.data-v-cab9a6c6 {
|
|
||||||
margin-top: 165rpx;
|
|
||||||
}
|
|
||||||
.ml-90.data-v-cab9a6c6 {
|
|
||||||
margin-left: 168.75rpx;
|
|
||||||
}
|
|
||||||
.mt-90.data-v-cab9a6c6 {
|
|
||||||
margin-top: 168.75rpx;
|
|
||||||
}
|
|
||||||
.ml-92.data-v-cab9a6c6 {
|
|
||||||
margin-left: 172.5rpx;
|
|
||||||
}
|
|
||||||
.mt-92.data-v-cab9a6c6 {
|
|
||||||
margin-top: 172.5rpx;
|
|
||||||
}
|
|
||||||
.ml-94.data-v-cab9a6c6 {
|
|
||||||
margin-left: 176.25rpx;
|
|
||||||
}
|
|
||||||
.mt-94.data-v-cab9a6c6 {
|
|
||||||
margin-top: 176.25rpx;
|
|
||||||
}
|
|
||||||
.ml-96.data-v-cab9a6c6 {
|
|
||||||
margin-left: 180rpx;
|
|
||||||
}
|
|
||||||
.mt-96.data-v-cab9a6c6 {
|
|
||||||
margin-top: 180rpx;
|
|
||||||
}
|
|
||||||
.ml-98.data-v-cab9a6c6 {
|
|
||||||
margin-left: 183.75rpx;
|
|
||||||
}
|
|
||||||
.mt-98.data-v-cab9a6c6 {
|
|
||||||
margin-top: 183.75rpx;
|
|
||||||
}
|
|
||||||
.ml-100.data-v-cab9a6c6 {
|
|
||||||
margin-left: 187.5rpx;
|
|
||||||
}
|
|
||||||
.mt-100.data-v-cab9a6c6 {
|
|
||||||
margin-top: 187.5rpx;
|
|
||||||
}
|
|
||||||
.mt-15.data-v-cab9a6c6 {
|
|
||||||
margin-top: 28.13rpx;
|
|
||||||
}
|
|
||||||
.page.data-v-cab9a6c6 {
|
|
||||||
padding: 48.75rpx 11.75rpx 61.88rpx;
|
|
||||||
background-color: #fffef8;
|
|
||||||
border-radius: 37.5rpx 37.5rpx 0rpx 0rpx;
|
|
||||||
width: 100%;
|
|
||||||
overflow-y: auto;
|
|
||||||
overflow-x: hidden;
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
.text.data-v-cab9a6c6 {
|
|
||||||
color: #323232;
|
|
||||||
font-size: 37.5rpx;
|
|
||||||
font-family: Open Sans;
|
|
||||||
line-height: 34.73rpx;
|
|
||||||
}
|
|
||||||
.group.data-v-cab9a6c6 {
|
|
||||||
margin-right: 11.25rpx;
|
|
||||||
margin-top: 67.5rpx;
|
|
||||||
}
|
|
||||||
.font.data-v-cab9a6c6 {
|
|
||||||
font-size: 30rpx;
|
|
||||||
font-family: Open Sans;
|
|
||||||
line-height: 27.71rpx;
|
|
||||||
color: #323232;
|
|
||||||
}
|
|
||||||
.text_2.data-v-cab9a6c6 {
|
|
||||||
line-height: 35.63rpx;
|
|
||||||
}
|
|
||||||
.font_2.data-v-cab9a6c6 {
|
|
||||||
font-size: 26.25rpx;
|
|
||||||
font-family: Inter;
|
|
||||||
line-height: 31.88rpx;
|
|
||||||
color: #323232;
|
|
||||||
}
|
|
||||||
.text_3.data-v-cab9a6c6 {
|
|
||||||
margin-left: 22.5rpx;
|
|
||||||
margin-top: 15rpx;
|
|
||||||
}
|
|
||||||
.text_4.data-v-cab9a6c6 {
|
|
||||||
margin-left: 18.75rpx;
|
|
||||||
margin-right: 15rpx;
|
|
||||||
}
|
|
||||||
.group_2.data-v-cab9a6c6 {
|
|
||||||
margin-right: 18.75rpx;
|
|
||||||
margin-top: 63.75rpx;
|
|
||||||
}
|
|
||||||
.font_3.data-v-cab9a6c6 {
|
|
||||||
font-size: 26.25rpx;
|
|
||||||
font-family: Open Sans;
|
|
||||||
line-height: 31.88rpx;
|
|
||||||
color: #323232;
|
|
||||||
}
|
|
||||||
.text_5.data-v-cab9a6c6 {
|
|
||||||
margin-left: 15rpx;
|
|
||||||
}
|
|
||||||
.group_3.data-v-cab9a6c6 {
|
|
||||||
margin-right: 18.75rpx;
|
|
||||||
margin-top: 63.75rpx;
|
|
||||||
}
|
|
||||||
.text_6.data-v-cab9a6c6 {
|
|
||||||
line-height: 27.84rpx;
|
|
||||||
}
|
|
||||||
.text_7.data-v-cab9a6c6 {
|
|
||||||
margin-left: 15rpx;
|
|
||||||
}
|
|
||||||
.group_4.data-v-cab9a6c6 {
|
|
||||||
margin-right: 22.5rpx;
|
|
||||||
margin-top: 56.25rpx;
|
|
||||||
}
|
|
||||||
.text_8.data-v-cab9a6c6 {
|
|
||||||
line-height: 27.75rpx;
|
|
||||||
}
|
|
||||||
.text_9.data-v-cab9a6c6 {
|
|
||||||
margin-left: 3.75rpx;
|
|
||||||
}
|
|
||||||
.text-wrapper.data-v-cab9a6c6 {
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
margin: 75rpx 22.5rpx 0;
|
|
||||||
padding: 30rpx 0;
|
|
||||||
background-color: #fbb612;
|
|
||||||
border-radius: 75rpx;
|
|
||||||
}
|
|
||||||
.text_10.data-v-cab9a6c6 {
|
|
||||||
color: #ffffff;
|
|
||||||
font-size: 30rpx;
|
|
||||||
font-family: Inter;
|
|
||||||
line-height: 27.71rpx;
|
|
||||||
}
|
|
|
@ -1 +0,0 @@
|
||||||
<view class="flex-col page data-v-cab9a6c6"><text class="self-center text data-v-cab9a6c6">费用说明</text><view class="flex-col self-stretch group data-v-cab9a6c6"><text class="self-start font text_2 data-v-cab9a6c6">一、费用支付流程</text><text class="self-stretch font_2 text_3 data-v-cab9a6c6"> 确定等级:您将根据个人需求选择合适的服装价位区间,并完成预约操作。 <view class="data-v-cab9a6c6"/> 预约成功:预约成功后,您需前往店铺挑选对应等级的服装。 <view class="data-v-cab9a6c6"/></text><text class="self-stretch font_2 text_4 data-v-cab9a6c6"> 补缴尾款及押金:在挑选服装时,您需要补缴尾款(扣除已支付定金后的剩余服务或商品费用)以及押金(用于保障服装归还时的完好)。 </text></view><view class="flex-col self-stretch group_2 data-v-cab9a6c6"><text class="self-start font data-v-cab9a6c6">二、尾款具体事项</text><text class="mt-18 self-stretch font_3 text_5 data-v-cab9a6c6"> 租赁服装:若您选择租赁我们店铺没有的服装,租赁费用将在您支付尾款时一并结算。无论拍摄是否进行,租赁费用均不予退还。 <view class="data-v-cab9a6c6"/> 购买服装:如您希望购买我们店铺的服装,且我们同意购买,将按照服装的稀有程度分等级定价。您需按照所选等级支付尾款。 <view class="data-v-cab9a6c6"/> 定制服务:若您自带衣服,我们提供妆发及摄影服务。若需我们额外购买服装,将按照上述等级定价,您需支付相应的尾款。 </text></view><view class="flex-col self-stretch group_3 data-v-cab9a6c6"><text class="self-start font text_6 data-v-cab9a6c6">三、定金与押金说明</text><text class="self-stretch font_3 text_7 mt-15 data-v-cab9a6c6"> 定金:预约时支付的定金用于确认您的预约意向,定金 不予退还。 <view class="data-v-cab9a6c6"/> 押金:拍摄完成后,我们将根据服装的归还情况决定是否扣除押金。若服装无损坏,押金将全额退还。 </text></view><view class="flex-col self-stretch group_4 data-v-cab9a6c6"><text class="self-start font text_8 data-v-cab9a6c6">四、特殊情况处理</text><text class="mt-18 self-stretch font_3 text_9 data-v-cab9a6c6"> 若因特殊情况您需要取消预约,请及时与我们联系。未拍摄情况下,定金不予退还,已支付的租赁费用亦不退还。 <view class="data-v-cab9a6c6"/></text></view><view class="flex-col justify-start items-center self-stretch text-wrapper data-v-cab9a6c6" onTap="{{a}}"><text class="text_10 data-v-cab9a6c6">我知道了</text></view></view>
|
|
|
@ -1,19 +0,0 @@
|
||||||
"use strict";
|
|
||||||
const common_vendor = require("../../../common/vendor.js");
|
|
||||||
const _sfc_main = {
|
|
||||||
__name: "BillingOfFees",
|
|
||||||
setup(__props) {
|
|
||||||
const jump_pay = () => {
|
|
||||||
common_vendor.index.navigateTo({
|
|
||||||
url: "../../../pages/booking/bookingpay/bookingpay"
|
|
||||||
});
|
|
||||||
};
|
|
||||||
return (_ctx, _cache) => {
|
|
||||||
return {
|
|
||||||
a: common_vendor.o(jump_pay)
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
};
|
|
||||||
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-cab9a6c6"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/booking/BillingOfFees/BillingOfFees.vue"]]);
|
|
||||||
my.createPage(MiniProgramPage);
|
|
|
@ -1,4 +0,0 @@
|
||||||
{
|
|
||||||
"defaultTitle": "",
|
|
||||||
"usingComponents": {}
|
|
||||||
}
|
|
|
@ -1,464 +0,0 @@
|
||||||
/* 水平间距 */
|
|
||||||
/* 水平间距 */
|
|
||||||
/************************************************************
|
|
||||||
** 请将全局样式拷贝到项目的全局 CSS 文件或者当前页面的顶部 **
|
|
||||||
** 否则页面将无法正常显示 **
|
|
||||||
************************************************************/
|
|
||||||
html.data-v-43413e24 {
|
|
||||||
font-size: 16px;
|
|
||||||
}
|
|
||||||
body.data-v-43413e24 {
|
|
||||||
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-43413e24,
|
|
||||||
image.data-v-43413e24,
|
|
||||||
text.data-v-43413e24 {
|
|
||||||
box-sizing: border-box;
|
|
||||||
flex-shrink: 0;
|
|
||||||
}
|
|
||||||
#app.data-v-43413e24 {
|
|
||||||
width: 100vw;
|
|
||||||
height: 100vh;
|
|
||||||
}
|
|
||||||
.flex-row.data-v-43413e24 {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
}
|
|
||||||
.flex-col.data-v-43413e24 {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
.justify-start.data-v-43413e24 {
|
|
||||||
justify-content: flex-start;
|
|
||||||
}
|
|
||||||
.justify-end.data-v-43413e24 {
|
|
||||||
justify-content: flex-end;
|
|
||||||
}
|
|
||||||
.justify-center.data-v-43413e24 {
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
.justify-between.data-v-43413e24 {
|
|
||||||
justify-content: space-between;
|
|
||||||
}
|
|
||||||
.justify-around.data-v-43413e24 {
|
|
||||||
justify-content: space-around;
|
|
||||||
}
|
|
||||||
.justify-evenly.data-v-43413e24 {
|
|
||||||
justify-content: space-evenly;
|
|
||||||
}
|
|
||||||
.items-start.data-v-43413e24 {
|
|
||||||
align-items: flex-start;
|
|
||||||
}
|
|
||||||
.items-end.data-v-43413e24 {
|
|
||||||
align-items: flex-end;
|
|
||||||
}
|
|
||||||
.items-center.data-v-43413e24 {
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
.items-baseline.data-v-43413e24 {
|
|
||||||
align-items: baseline;
|
|
||||||
}
|
|
||||||
.items-stretch.data-v-43413e24 {
|
|
||||||
align-items: stretch;
|
|
||||||
}
|
|
||||||
.self-start.data-v-43413e24 {
|
|
||||||
align-self: flex-start;
|
|
||||||
}
|
|
||||||
.self-end.data-v-43413e24 {
|
|
||||||
align-self: flex-end;
|
|
||||||
}
|
|
||||||
.self-center.data-v-43413e24 {
|
|
||||||
align-self: center;
|
|
||||||
}
|
|
||||||
.self-baseline.data-v-43413e24 {
|
|
||||||
align-self: baseline;
|
|
||||||
}
|
|
||||||
.self-stretch.data-v-43413e24 {
|
|
||||||
align-self: stretch;
|
|
||||||
}
|
|
||||||
.flex-1.data-v-43413e24 {
|
|
||||||
flex: 1 1 0%;
|
|
||||||
}
|
|
||||||
.flex-auto.data-v-43413e24 {
|
|
||||||
flex: 1 1 auto;
|
|
||||||
}
|
|
||||||
.grow.data-v-43413e24 {
|
|
||||||
flex-grow: 1;
|
|
||||||
}
|
|
||||||
.grow-0.data-v-43413e24 {
|
|
||||||
flex-grow: 0;
|
|
||||||
}
|
|
||||||
.shrink.data-v-43413e24 {
|
|
||||||
flex-shrink: 1;
|
|
||||||
}
|
|
||||||
.shrink-0.data-v-43413e24 {
|
|
||||||
flex-shrink: 0;
|
|
||||||
}
|
|
||||||
.relative.data-v-43413e24 {
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
.ml-2.data-v-43413e24 {
|
|
||||||
margin-left: 3.75rpx;
|
|
||||||
}
|
|
||||||
.mt-2.data-v-43413e24 {
|
|
||||||
margin-top: 3.75rpx;
|
|
||||||
}
|
|
||||||
.ml-4.data-v-43413e24 {
|
|
||||||
margin-left: 7.5rpx;
|
|
||||||
}
|
|
||||||
.mt-4.data-v-43413e24 {
|
|
||||||
margin-top: 7.5rpx;
|
|
||||||
}
|
|
||||||
.ml-6.data-v-43413e24 {
|
|
||||||
margin-left: 11.25rpx;
|
|
||||||
}
|
|
||||||
.mt-6.data-v-43413e24 {
|
|
||||||
margin-top: 11.25rpx;
|
|
||||||
}
|
|
||||||
.ml-8.data-v-43413e24 {
|
|
||||||
margin-left: 15rpx;
|
|
||||||
}
|
|
||||||
.mt-8.data-v-43413e24 {
|
|
||||||
margin-top: 15rpx;
|
|
||||||
}
|
|
||||||
.ml-10.data-v-43413e24 {
|
|
||||||
margin-left: 18.75rpx;
|
|
||||||
}
|
|
||||||
.mt-10.data-v-43413e24 {
|
|
||||||
margin-top: 18.75rpx;
|
|
||||||
}
|
|
||||||
.ml-12.data-v-43413e24 {
|
|
||||||
margin-left: 22.5rpx;
|
|
||||||
}
|
|
||||||
.mt-12.data-v-43413e24 {
|
|
||||||
margin-top: 22.5rpx;
|
|
||||||
}
|
|
||||||
.ml-14.data-v-43413e24 {
|
|
||||||
margin-left: 26.25rpx;
|
|
||||||
}
|
|
||||||
.mt-14.data-v-43413e24 {
|
|
||||||
margin-top: 26.25rpx;
|
|
||||||
}
|
|
||||||
.ml-16.data-v-43413e24 {
|
|
||||||
margin-left: 30rpx;
|
|
||||||
}
|
|
||||||
.mt-16.data-v-43413e24 {
|
|
||||||
margin-top: 30rpx;
|
|
||||||
}
|
|
||||||
.ml-18.data-v-43413e24 {
|
|
||||||
margin-left: 33.75rpx;
|
|
||||||
}
|
|
||||||
.mt-18.data-v-43413e24 {
|
|
||||||
margin-top: 33.75rpx;
|
|
||||||
}
|
|
||||||
.ml-20.data-v-43413e24 {
|
|
||||||
margin-left: 37.5rpx;
|
|
||||||
}
|
|
||||||
.mt-20.data-v-43413e24 {
|
|
||||||
margin-top: 37.5rpx;
|
|
||||||
}
|
|
||||||
.ml-22.data-v-43413e24 {
|
|
||||||
margin-left: 41.25rpx;
|
|
||||||
}
|
|
||||||
.mt-22.data-v-43413e24 {
|
|
||||||
margin-top: 41.25rpx;
|
|
||||||
}
|
|
||||||
.ml-24.data-v-43413e24 {
|
|
||||||
margin-left: 45rpx;
|
|
||||||
}
|
|
||||||
.mt-24.data-v-43413e24 {
|
|
||||||
margin-top: 45rpx;
|
|
||||||
}
|
|
||||||
.ml-26.data-v-43413e24 {
|
|
||||||
margin-left: 48.75rpx;
|
|
||||||
}
|
|
||||||
.mt-26.data-v-43413e24 {
|
|
||||||
margin-top: 48.75rpx;
|
|
||||||
}
|
|
||||||
.ml-28.data-v-43413e24 {
|
|
||||||
margin-left: 52.5rpx;
|
|
||||||
}
|
|
||||||
.mt-28.data-v-43413e24 {
|
|
||||||
margin-top: 52.5rpx;
|
|
||||||
}
|
|
||||||
.ml-30.data-v-43413e24 {
|
|
||||||
margin-left: 56.25rpx;
|
|
||||||
}
|
|
||||||
.mt-30.data-v-43413e24 {
|
|
||||||
margin-top: 56.25rpx;
|
|
||||||
}
|
|
||||||
.ml-32.data-v-43413e24 {
|
|
||||||
margin-left: 60rpx;
|
|
||||||
}
|
|
||||||
.mt-32.data-v-43413e24 {
|
|
||||||
margin-top: 60rpx;
|
|
||||||
}
|
|
||||||
.ml-34.data-v-43413e24 {
|
|
||||||
margin-left: 63.75rpx;
|
|
||||||
}
|
|
||||||
.mt-34.data-v-43413e24 {
|
|
||||||
margin-top: 63.75rpx;
|
|
||||||
}
|
|
||||||
.ml-36.data-v-43413e24 {
|
|
||||||
margin-left: 67.5rpx;
|
|
||||||
}
|
|
||||||
.mt-36.data-v-43413e24 {
|
|
||||||
margin-top: 67.5rpx;
|
|
||||||
}
|
|
||||||
.ml-38.data-v-43413e24 {
|
|
||||||
margin-left: 71.25rpx;
|
|
||||||
}
|
|
||||||
.mt-38.data-v-43413e24 {
|
|
||||||
margin-top: 71.25rpx;
|
|
||||||
}
|
|
||||||
.ml-40.data-v-43413e24 {
|
|
||||||
margin-left: 75rpx;
|
|
||||||
}
|
|
||||||
.mt-40.data-v-43413e24 {
|
|
||||||
margin-top: 75rpx;
|
|
||||||
}
|
|
||||||
.ml-42.data-v-43413e24 {
|
|
||||||
margin-left: 78.75rpx;
|
|
||||||
}
|
|
||||||
.mt-42.data-v-43413e24 {
|
|
||||||
margin-top: 78.75rpx;
|
|
||||||
}
|
|
||||||
.ml-44.data-v-43413e24 {
|
|
||||||
margin-left: 82.5rpx;
|
|
||||||
}
|
|
||||||
.mt-44.data-v-43413e24 {
|
|
||||||
margin-top: 82.5rpx;
|
|
||||||
}
|
|
||||||
.ml-46.data-v-43413e24 {
|
|
||||||
margin-left: 86.25rpx;
|
|
||||||
}
|
|
||||||
.mt-46.data-v-43413e24 {
|
|
||||||
margin-top: 86.25rpx;
|
|
||||||
}
|
|
||||||
.ml-48.data-v-43413e24 {
|
|
||||||
margin-left: 90rpx;
|
|
||||||
}
|
|
||||||
.mt-48.data-v-43413e24 {
|
|
||||||
margin-top: 90rpx;
|
|
||||||
}
|
|
||||||
.ml-50.data-v-43413e24 {
|
|
||||||
margin-left: 93.75rpx;
|
|
||||||
}
|
|
||||||
.mt-50.data-v-43413e24 {
|
|
||||||
margin-top: 93.75rpx;
|
|
||||||
}
|
|
||||||
.ml-52.data-v-43413e24 {
|
|
||||||
margin-left: 97.5rpx;
|
|
||||||
}
|
|
||||||
.mt-52.data-v-43413e24 {
|
|
||||||
margin-top: 97.5rpx;
|
|
||||||
}
|
|
||||||
.ml-54.data-v-43413e24 {
|
|
||||||
margin-left: 101.25rpx;
|
|
||||||
}
|
|
||||||
.mt-54.data-v-43413e24 {
|
|
||||||
margin-top: 101.25rpx;
|
|
||||||
}
|
|
||||||
.ml-56.data-v-43413e24 {
|
|
||||||
margin-left: 105rpx;
|
|
||||||
}
|
|
||||||
.mt-56.data-v-43413e24 {
|
|
||||||
margin-top: 105rpx;
|
|
||||||
}
|
|
||||||
.ml-58.data-v-43413e24 {
|
|
||||||
margin-left: 108.75rpx;
|
|
||||||
}
|
|
||||||
.mt-58.data-v-43413e24 {
|
|
||||||
margin-top: 108.75rpx;
|
|
||||||
}
|
|
||||||
.ml-60.data-v-43413e24 {
|
|
||||||
margin-left: 112.5rpx;
|
|
||||||
}
|
|
||||||
.mt-60.data-v-43413e24 {
|
|
||||||
margin-top: 112.5rpx;
|
|
||||||
}
|
|
||||||
.ml-62.data-v-43413e24 {
|
|
||||||
margin-left: 116.25rpx;
|
|
||||||
}
|
|
||||||
.mt-62.data-v-43413e24 {
|
|
||||||
margin-top: 116.25rpx;
|
|
||||||
}
|
|
||||||
.ml-64.data-v-43413e24 {
|
|
||||||
margin-left: 120rpx;
|
|
||||||
}
|
|
||||||
.mt-64.data-v-43413e24 {
|
|
||||||
margin-top: 120rpx;
|
|
||||||
}
|
|
||||||
.ml-66.data-v-43413e24 {
|
|
||||||
margin-left: 123.75rpx;
|
|
||||||
}
|
|
||||||
.mt-66.data-v-43413e24 {
|
|
||||||
margin-top: 123.75rpx;
|
|
||||||
}
|
|
||||||
.ml-68.data-v-43413e24 {
|
|
||||||
margin-left: 127.5rpx;
|
|
||||||
}
|
|
||||||
.mt-68.data-v-43413e24 {
|
|
||||||
margin-top: 127.5rpx;
|
|
||||||
}
|
|
||||||
.ml-70.data-v-43413e24 {
|
|
||||||
margin-left: 131.25rpx;
|
|
||||||
}
|
|
||||||
.mt-70.data-v-43413e24 {
|
|
||||||
margin-top: 131.25rpx;
|
|
||||||
}
|
|
||||||
.ml-72.data-v-43413e24 {
|
|
||||||
margin-left: 135rpx;
|
|
||||||
}
|
|
||||||
.mt-72.data-v-43413e24 {
|
|
||||||
margin-top: 135rpx;
|
|
||||||
}
|
|
||||||
.ml-74.data-v-43413e24 {
|
|
||||||
margin-left: 138.75rpx;
|
|
||||||
}
|
|
||||||
.mt-74.data-v-43413e24 {
|
|
||||||
margin-top: 138.75rpx;
|
|
||||||
}
|
|
||||||
.ml-76.data-v-43413e24 {
|
|
||||||
margin-left: 142.5rpx;
|
|
||||||
}
|
|
||||||
.mt-76.data-v-43413e24 {
|
|
||||||
margin-top: 142.5rpx;
|
|
||||||
}
|
|
||||||
.ml-78.data-v-43413e24 {
|
|
||||||
margin-left: 146.25rpx;
|
|
||||||
}
|
|
||||||
.mt-78.data-v-43413e24 {
|
|
||||||
margin-top: 146.25rpx;
|
|
||||||
}
|
|
||||||
.ml-80.data-v-43413e24 {
|
|
||||||
margin-left: 150rpx;
|
|
||||||
}
|
|
||||||
.mt-80.data-v-43413e24 {
|
|
||||||
margin-top: 150rpx;
|
|
||||||
}
|
|
||||||
.ml-82.data-v-43413e24 {
|
|
||||||
margin-left: 153.75rpx;
|
|
||||||
}
|
|
||||||
.mt-82.data-v-43413e24 {
|
|
||||||
margin-top: 153.75rpx;
|
|
||||||
}
|
|
||||||
.ml-84.data-v-43413e24 {
|
|
||||||
margin-left: 157.5rpx;
|
|
||||||
}
|
|
||||||
.mt-84.data-v-43413e24 {
|
|
||||||
margin-top: 157.5rpx;
|
|
||||||
}
|
|
||||||
.ml-86.data-v-43413e24 {
|
|
||||||
margin-left: 161.25rpx;
|
|
||||||
}
|
|
||||||
.mt-86.data-v-43413e24 {
|
|
||||||
margin-top: 161.25rpx;
|
|
||||||
}
|
|
||||||
.ml-88.data-v-43413e24 {
|
|
||||||
margin-left: 165rpx;
|
|
||||||
}
|
|
||||||
.mt-88.data-v-43413e24 {
|
|
||||||
margin-top: 165rpx;
|
|
||||||
}
|
|
||||||
.ml-90.data-v-43413e24 {
|
|
||||||
margin-left: 168.75rpx;
|
|
||||||
}
|
|
||||||
.mt-90.data-v-43413e24 {
|
|
||||||
margin-top: 168.75rpx;
|
|
||||||
}
|
|
||||||
.ml-92.data-v-43413e24 {
|
|
||||||
margin-left: 172.5rpx;
|
|
||||||
}
|
|
||||||
.mt-92.data-v-43413e24 {
|
|
||||||
margin-top: 172.5rpx;
|
|
||||||
}
|
|
||||||
.ml-94.data-v-43413e24 {
|
|
||||||
margin-left: 176.25rpx;
|
|
||||||
}
|
|
||||||
.mt-94.data-v-43413e24 {
|
|
||||||
margin-top: 176.25rpx;
|
|
||||||
}
|
|
||||||
.ml-96.data-v-43413e24 {
|
|
||||||
margin-left: 180rpx;
|
|
||||||
}
|
|
||||||
.mt-96.data-v-43413e24 {
|
|
||||||
margin-top: 180rpx;
|
|
||||||
}
|
|
||||||
.ml-98.data-v-43413e24 {
|
|
||||||
margin-left: 183.75rpx;
|
|
||||||
}
|
|
||||||
.mt-98.data-v-43413e24 {
|
|
||||||
margin-top: 183.75rpx;
|
|
||||||
}
|
|
||||||
.ml-100.data-v-43413e24 {
|
|
||||||
margin-left: 187.5rpx;
|
|
||||||
}
|
|
||||||
.mt-100.data-v-43413e24 {
|
|
||||||
margin-top: 187.5rpx;
|
|
||||||
}
|
|
||||||
.ml-9.data-v-43413e24 {
|
|
||||||
margin-left: 16.88rpx;
|
|
||||||
}
|
|
||||||
.mt-251.data-v-43413e24 {
|
|
||||||
position: fixed;
|
|
||||||
bottom: 0;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
.page.data-v-43413e24 {
|
|
||||||
background-color: #f5f5dc;
|
|
||||||
border-radius: 28.13rpx 28.13rpx 0rpx 0rpx;
|
|
||||||
width: 100%;
|
|
||||||
overflow-y: auto;
|
|
||||||
overflow-x: hidden;
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
.group_2.data-v-43413e24 {
|
|
||||||
overflow-y: auto;
|
|
||||||
}
|
|
||||||
.section.data-v-43413e24 {
|
|
||||||
padding: 52.5rpx 15rpx;
|
|
||||||
background-color: #fffef8;
|
|
||||||
border-bottom: solid 1.88rpx #c8c8c8;
|
|
||||||
}
|
|
||||||
.image_3.data-v-43413e24 {
|
|
||||||
width: 33.75rpx;
|
|
||||||
height: 33.75rpx;
|
|
||||||
}
|
|
||||||
.font.data-v-43413e24 {
|
|
||||||
font-size: 30rpx;
|
|
||||||
font-family: Open Sans;
|
|
||||||
line-height: 27.19rpx;
|
|
||||||
color: #323232;
|
|
||||||
}
|
|
||||||
.font_2.data-v-43413e24 {
|
|
||||||
font-size: 30rpx;
|
|
||||||
font-family: Open Sans;
|
|
||||||
line-height: 22.05rpx;
|
|
||||||
color: #323232;
|
|
||||||
}
|
|
||||||
.group_3.data-v-43413e24 {
|
|
||||||
margin-right: 11.25rpx;
|
|
||||||
}
|
|
||||||
.image_2.data-v-43413e24 {
|
|
||||||
width: 39.38rpx;
|
|
||||||
height: 39.38rpx;
|
|
||||||
}
|
|
||||||
.section_2.data-v-43413e24 {
|
|
||||||
padding: 22.5rpx 0 15rpx;
|
|
||||||
background-color: #fffef8;
|
|
||||||
}
|
|
||||||
.button.data-v-43413e24 {
|
|
||||||
padding: 30rpx 0;
|
|
||||||
background-color: #fbb612;
|
|
||||||
border-radius: 75rpx;
|
|
||||||
width: 639.38rpx;
|
|
||||||
}
|
|
||||||
.text_2.data-v-43413e24 {
|
|
||||||
color: #ffffff;
|
|
||||||
line-height: 27.75rpx;
|
|
||||||
}
|
|
|
@ -1 +0,0 @@
|
||||||
<view class="flex-col page data-v-43413e24"><view class="flex-col flex-1 group_2 data-v-43413e24"><view class="flex-col data-v-43413e24"><view class="flex-row justify-between items-center section data-v-43413e24"><view class="flex-row items-center data-v-43413e24"><image class="shrink-0 image_3 data-v-43413e24" src="https://ide.code.fun/api/image?token=6710a29d1511d900114ac910&name=3a9304082db1a0ce59900947da89bfaf.png"/><text class="font ml-9 data-v-43413e24">张三</text><text class="font_2 ml-9 data-v-43413e24">15888610253</text></view><view class="flex-row group_3 data-v-43413e24"><image class="image_2 data-v-43413e24" src="https://ide.code.fun/api/image?token=6710a29d1511d900114ac910&name=4ea2c3040a66adfdc3cd18d7fe9fea60.png"/><image class="ml-12 image_2 data-v-43413e24" src="https://ide.code.fun/api/image?token=6710a29d1511d900114ac910&name=6184b59dfc6e09773e972bd085509877.png"/></view></view><view class="flex-row justify-between items-center section data-v-43413e24"><view class="flex-row items-center data-v-43413e24"><image class="shrink-0 image_3 data-v-43413e24" src="https://ide.code.fun/api/image?token=6710a29d1511d900114ac910&name=3a9304082db1a0ce59900947da89bfaf.png"/><text class="font ml-9 data-v-43413e24">张三</text><text class="font_2 ml-9 data-v-43413e24">15888610253</text></view><view class="flex-row group_3 data-v-43413e24"><image class="image_2 data-v-43413e24" src="https://ide.code.fun/api/image?token=6710a29d1511d900114ac910&name=4ea2c3040a66adfdc3cd18d7fe9fea60.png"/><image class="ml-12 image_2 data-v-43413e24" src="https://ide.code.fun/api/image?token=6710a29d1511d900114ac910&name=6184b59dfc6e09773e972bd085509877.png"/></view></view><view class="flex-row justify-between items-center section data-v-43413e24"><view class="flex-row items-center data-v-43413e24"><image class="shrink-0 image_3 data-v-43413e24" src="https://ide.code.fun/api/image?token=6710a29d1511d900114ac910&name=3a9304082db1a0ce59900947da89bfaf.png"/><text class="font ml-9 data-v-43413e24">张三</text><text class="font_2 ml-9 data-v-43413e24">15888610253</text></view><view class="flex-row group_3 data-v-43413e24"><image class="image_2 data-v-43413e24" src="https://ide.code.fun/api/image?token=6710a29d1511d900114ac910&name=4ea2c3040a66adfdc3cd18d7fe9fea60.png"/><image class="ml-12 image_2 data-v-43413e24" src="https://ide.code.fun/api/image?token=6710a29d1511d900114ac910&name=6184b59dfc6e09773e972bd085509877.png"/></view></view><view class="flex-row justify-between items-center section data-v-43413e24"><view class="flex-row items-center data-v-43413e24"><image class="shrink-0 image_3 data-v-43413e24" src="https://ide.code.fun/api/image?token=6710a29d1511d900114ac910&name=3a9304082db1a0ce59900947da89bfaf.png"/><text class="font ml-9 data-v-43413e24">张三</text><text class="font_2 ml-9 data-v-43413e24">15888610253</text></view><view class="flex-row group_3 data-v-43413e24"><image class="image_2 data-v-43413e24" src="https://ide.code.fun/api/image?token=6710a29d1511d900114ac910&name=4ea2c3040a66adfdc3cd18d7fe9fea60.png"/><image class="ml-12 image_2 data-v-43413e24" src="https://ide.code.fun/api/image?token=6710a29d1511d900114ac910&name=6184b59dfc6e09773e972bd085509877.png"/></view></view></view><view class="flex-col justify-start items-center section_2 mt-251 data-v-43413e24"><view class="flex-col justify-start items-center button data-v-43413e24"><text class="font text_2 data-v-43413e24">添加新联系人</text></view></view></view></view>
|
|
|
@ -1,8 +0,0 @@
|
||||||
"use strict";
|
|
||||||
const common_vendor = require("../../common/vendor.js");
|
|
||||||
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"]]);
|
|
||||||
my.createPage(MiniProgramPage);
|
|