diff --git a/unpackage/dist/dev/mp-weixin/pages/Shopping-cart/productmain/testproductmain.js b/unpackage/dist/dev/mp-weixin/pages/Shopping-cart/productmain/testproductmain.js
new file mode 100644
index 0000000..1ea3f53
--- /dev/null
+++ b/unpackage/dist/dev/mp-weixin/pages/Shopping-cart/productmain/testproductmain.js
@@ -0,0 +1,253 @@
+"use strict";
+const common_vendor = require("../../../common/vendor.js");
+const api_request = require("../../../api/request.js");
+const _sfc_main = {
+ __name: "testproductmain",
+ 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);
+ const searchText = common_vendor.ref("");
+ const stateText = common_vendor.ref({
+ topBtn: "编辑",
+ bottomBtn: "去结算"
+ });
+ common_vendor.onShow(() => {
+ getProductCart();
+ });
+ common_vendor.onLoad(() => {
+ getProductCart();
+ getFonts();
+ });
+ const getProductCart = async () => {
+ const res = await common_vendor.index.request({
+ url: api_request.baseUrl + "/cart/list",
+ method: "POST",
+ header: {
+ "cookie": common_vendor.wx$1.getStorageSync("cookie")
+ }
+ });
+ if (res.data.code === 1) {
+ products.value = res.data.data;
+ products.value.forEach((item) => {
+ item.checked = false;
+ });
+ }
+ console.log("products-->", products.value);
+ };
+ const deleteProduct = async (idArr) => {
+ const res = await common_vendor.index.request({
+ url: api_request.baseUrl + "/cart/delete",
+ method: "POST",
+ data: idArr,
+ header: {
+ "cookie": common_vendor.wx$1.getStorageSync("cookie")
+ }
+ });
+ console.log(res.data);
+ if (res.data.code === 1) {
+ common_vendor.index.reLaunch({
+ url: "/pages/Shopping-cart/testproductmain/testproductmain"
+ });
+ totalPrice.value = 0;
+ }
+ };
+ 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("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;
+ console.log("event--->", event.detail);
+ if (event.detail.value.length) {
+ products.value[parseInt(event.detail.value)].checked = true;
+ } else {
+ products.value.forEach((item) => {
+ item.checked = false;
+ });
+ }
+ for (let key in event.detail.value) {
+ let temp = parseInt(event.detail.value[parseInt(key)]);
+ computed(products.value[temp].cartGoodVO.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.push(products.value[parseInt(item)].id);
+ }
+ });
+ 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.cartGoodVO.price, item.quantity);
+ });
+ checkedData.value = products.value.map((item) => item.id);
+ console.log("checkedData--->", checkedData.value);
+ } else {
+ products.value.forEach((item) => {
+ item.checked = false;
+ });
+ }
+ };
+ const decrease = (index, item) => {
+ console.log("decrease,index-->", index);
+ console.log("decrease,item-->", item);
+ if (products.value[index].quantity > 1) {
+ products.value[index].quantity -= 1;
+ if (item && products.value[index].quantity >= 1) {
+ computed(-products.value[index].cartGoodVO.price, 1);
+ }
+ }
+ };
+ const increase = (index, item) => {
+ console.log("increase,index-->", index);
+ console.log("increase,item-->", item);
+ if (products.value[index].quantity < products.value[index].cartGoodVO.inventory) {
+ if (item && products.value[index].quantity <= products.value[index].cartGoodVO.inventory) {
+ computed(products.value[index].cartGoodVO.price, 1);
+ }
+ products.value[index].quantity += 1;
+ }
+ };
+ const computed = (price, quantity) => {
+ totalPrice.value = common_vendor.round(totalPrice.value + price * quantity, 2);
+ return totalPrice.value;
+ };
+ const jump_product = (gid) => {
+ common_vendor.index.navigateTo({
+ url: "../../../pages/store-home/ProductDetails/ProductDetails?gid=" + JSON.stringify(gid)
+ });
+ };
+ const editOrSettle = async () => {
+ if (stateText.value.bottomBtn === "去结算") {
+ if (checkedData.value.length === 0) {
+ return;
+ }
+ const res = await common_vendor.index.request({
+ url: api_request.baseUrl + "/cart/submit/error",
+ method: "POST",
+ header: {
+ "cookie": common_vendor.wx$1.getStorageSync("cookie")
+ }
+ });
+ console.log(res.data);
+ if (res.data.data.length != 0) {
+ common_vendor.index.showModal({
+ title: "提示",
+ content: "购物车商品发生改变,点击移除变化商品",
+ showCancel: false,
+ success: (e) => {
+ if (e.confirm) {
+ common_vendor.index.reLaunch({
+ url: "/pages/Shopping-cart/productmain/productmain"
+ });
+ }
+ }
+ });
+ } else {
+ common_vendor.index.navigateTo({
+ url: "/pages/order/product-waitpay/product-waitpay?cartInfo=" + JSON.stringify(checkedData.value)
+ });
+ checkedData.value.splice(0, checkedData.value.length);
+ }
+ } else {
+ common_vendor.index.showModal({
+ title: "提示",
+ content: "是否删除商品?",
+ success: (e) => {
+ if (e.confirm) {
+ deleteProduct(checkedData.value);
+ } else if (e.cancel)
+ return;
+ }
+ });
+ }
+ };
+ const changeState = () => {
+ if (stateText.value.topBtn === "编辑") {
+ stateText.value.topBtn = "完成", stateText.value.bottomBtn = "删除";
+ } else {
+ stateText.value.topBtn = "编辑", stateText.value.bottomBtn = "去结算";
+ }
+ };
+ const getFonts = () => {
+ common_vendor.index.loadFontFace({
+ family: "FangZhengFonts",
+ source: `url("https://carbon2.obs.cn-north-4.myhuaweicloud.com/fonts/FangZhengFonts.TTF")`,
+ success: (res) => {
+ console.log("success", res);
+ },
+ fail: (err) => {
+ console.log("err", err);
+ }
+ });
+ };
+ return (_ctx, _cache) => {
+ return {
+ a: searchText.value,
+ b: common_vendor.o(($event) => searchText.value = $event.detail.value),
+ c: common_vendor.t(stateText.value.topBtn),
+ d: common_vendor.o(changeState),
+ e: common_vendor.s(getTextStyle(1)),
+ f: common_vendor.o(($event) => changeType(1)),
+ g: common_vendor.s(getTextStyle(2)),
+ h: common_vendor.o(($event) => changeType(2)),
+ i: common_vendor.f(products.value, (item, index, i0) => {
+ return common_vendor.e(current.value == 1 ? {
+ a: index,
+ b: item.checked,
+ c: item.cartGoodVO.goodImg.split(";")[0],
+ d: common_vendor.o(($event) => jump_product(item.goodId), index),
+ e: common_vendor.t(item.cartGoodVO.name),
+ f: common_vendor.o(($event) => jump_product(item.goodId), index),
+ g: common_vendor.t(item.cartGoodVO.type),
+ h: common_vendor.o(($event) => jump_product(item.goodId), index),
+ i: common_vendor.t(item.cartGoodVO.price),
+ j: common_vendor.o(($event) => jump_product(item.goodId), index),
+ k: common_vendor.o(($event) => decrease(index, item.checked), index),
+ l: common_vendor.t(item.quantity),
+ m: common_vendor.o(($event) => increase(index, item.checked), index)
+ } : {}, current.value == 2 ? {} : {}, {
+ n: index
+ });
+ }),
+ j: current.value == 1,
+ k: current.value == 2,
+ l: common_vendor.o(checkBoxChange),
+ m: allCheck.value,
+ n: common_vendor.o(allChecked),
+ o: common_vendor.t(totalPrice.value),
+ p: common_vendor.t(stateText.value.bottomBtn),
+ q: common_vendor.o(editOrSettle)
+ };
+ };
+ }
+};
+const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-25074af5"], ["__file", "D:/微信小程序/课设整合/匠承非遗小程序端/jiangchengfeiyi-xiaochengxu/pages/Shopping-cart/productmain/testproductmain.vue"]]);
+wx.createPage(MiniProgramPage);
diff --git a/unpackage/dist/dev/mp-weixin/pages/Shopping-cart/productmain/testproductmain.json b/unpackage/dist/dev/mp-weixin/pages/Shopping-cart/productmain/testproductmain.json
new file mode 100644
index 0000000..a0812ee
--- /dev/null
+++ b/unpackage/dist/dev/mp-weixin/pages/Shopping-cart/productmain/testproductmain.json
@@ -0,0 +1,4 @@
+{
+ "navigationBarTitleText": "",
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/unpackage/dist/dev/mp-weixin/pages/Shopping-cart/productmain/testproductmain.wxml b/unpackage/dist/dev/mp-weixin/pages/Shopping-cart/productmain/testproductmain.wxml
new file mode 100644
index 0000000..31d44e6
--- /dev/null
+++ b/unpackage/dist/dev/mp-weixin/pages/Shopping-cart/productmain/testproductmain.wxml
@@ -0,0 +1 @@
+购物车{{c}}商品类服务类{{item.e}}【{{item.g}}】¥{{item.i}}{{item.l}}【非遗手工艺体验】纸笺加工技艺-流沙笺团扇制作体验仿真丝团扇;上午场(09:30-12:00)预约日期:2024-10-15138.001全选合计:{{o}}元{{p}}
\ No newline at end of file
diff --git a/unpackage/dist/dev/mp-weixin/pages/Shopping-cart/productmain/testproductmain.wxss b/unpackage/dist/dev/mp-weixin/pages/Shopping-cart/productmain/testproductmain.wxss
new file mode 100644
index 0000000..3196f93
--- /dev/null
+++ b/unpackage/dist/dev/mp-weixin/pages/Shopping-cart/productmain/testproductmain.wxss
@@ -0,0 +1,700 @@
+/* 水平间距 */
+/* 水平间距 */
+/************************************************************
+** 请将全局样式拷贝到项目的全局 CSS 文件或者当前页面的顶部 **
+** 否则页面将无法正常显示 **
+************************************************************/
+html.data-v-25074af5 {
+ font-size: 16px;
+}
+body.data-v-25074af5 {
+ 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-25074af5,
+image.data-v-25074af5,
+text.data-v-25074af5 {
+ box-sizing: border-box;
+ flex-shrink: 0;
+}
+#app.data-v-25074af5 {
+ width: 100vw;
+ height: 100vh;
+}
+.flex-row.data-v-25074af5 {
+ display: flex;
+ flex-direction: row;
+}
+.flex-col.data-v-25074af5 {
+ display: flex;
+ flex-direction: column;
+}
+.justify-start.data-v-25074af5 {
+ justify-content: flex-start;
+}
+.justify-end.data-v-25074af5 {
+ justify-content: flex-end;
+}
+.justify-center.data-v-25074af5 {
+ justify-content: center;
+}
+.justify-between.data-v-25074af5 {
+ justify-content: space-between;
+}
+.justify-around.data-v-25074af5 {
+ justify-content: space-around;
+}
+.justify-evenly.data-v-25074af5 {
+ justify-content: space-evenly;
+}
+.items-start.data-v-25074af5 {
+ align-items: flex-start;
+}
+.items-end.data-v-25074af5 {
+ align-items: flex-end;
+}
+.items-center.data-v-25074af5 {
+ align-items: center;
+}
+.items-baseline.data-v-25074af5 {
+ align-items: baseline;
+}
+.items-stretch.data-v-25074af5 {
+ align-items: stretch;
+}
+.self-start.data-v-25074af5 {
+ align-self: flex-start;
+}
+.self-end.data-v-25074af5 {
+ align-self: flex-end;
+}
+.self-center.data-v-25074af5 {
+ align-self: center;
+}
+.self-baseline.data-v-25074af5 {
+ align-self: baseline;
+}
+.self-stretch.data-v-25074af5 {
+ align-self: stretch;
+}
+.flex-1.data-v-25074af5 {
+ flex: 1 1 0%;
+}
+.flex-auto.data-v-25074af5 {
+ flex: 1 1 auto;
+}
+.grow.data-v-25074af5 {
+ flex-grow: 1;
+}
+.grow-0.data-v-25074af5 {
+ flex-grow: 0;
+}
+.shrink.data-v-25074af5 {
+ flex-shrink: 1;
+}
+.shrink-0.data-v-25074af5 {
+ flex-shrink: 0;
+}
+.relative.data-v-25074af5 {
+ position: relative;
+}
+.ml-2.data-v-25074af5 {
+ margin-left: 3.75rpx;
+}
+.mt-2.data-v-25074af5 {
+ margin-top: 3.75rpx;
+}
+.ml-4.data-v-25074af5 {
+ margin-left: 7.5rpx;
+}
+.mt-4.data-v-25074af5 {
+ margin-top: 7.5rpx;
+}
+.ml-6.data-v-25074af5 {
+ margin-left: 11.25rpx;
+}
+.mt-6.data-v-25074af5 {
+ margin-top: 11.25rpx;
+}
+.ml-8.data-v-25074af5 {
+ margin-left: 15rpx;
+}
+.mt-8.data-v-25074af5 {
+ margin-top: 15rpx;
+}
+.ml-10.data-v-25074af5 {
+ margin-left: 18.75rpx;
+}
+.mt-10.data-v-25074af5 {
+ margin-top: 18.75rpx;
+}
+.ml-12.data-v-25074af5 {
+ margin-left: 22.5rpx;
+}
+.mt-12.data-v-25074af5 {
+ margin-top: 22.5rpx;
+}
+.ml-14.data-v-25074af5 {
+ margin-left: 26.25rpx;
+}
+.mt-14.data-v-25074af5 {
+ margin-top: 26.25rpx;
+}
+.ml-16.data-v-25074af5 {
+ margin-left: 30rpx;
+}
+.mt-16.data-v-25074af5 {
+ margin-top: 30rpx;
+}
+.ml-18.data-v-25074af5 {
+ margin-left: 33.75rpx;
+}
+.mt-18.data-v-25074af5 {
+ margin-top: 33.75rpx;
+}
+.ml-20.data-v-25074af5 {
+ margin-left: 37.5rpx;
+}
+.mt-20.data-v-25074af5 {
+ margin-top: 37.5rpx;
+}
+.ml-22.data-v-25074af5 {
+ margin-left: 41.25rpx;
+}
+.mt-22.data-v-25074af5 {
+ margin-top: 41.25rpx;
+}
+.ml-24.data-v-25074af5 {
+ margin-left: 45rpx;
+}
+.mt-24.data-v-25074af5 {
+ margin-top: 45rpx;
+}
+.ml-26.data-v-25074af5 {
+ margin-left: 48.75rpx;
+}
+.mt-26.data-v-25074af5 {
+ margin-top: 48.75rpx;
+}
+.ml-28.data-v-25074af5 {
+ margin-left: 52.5rpx;
+}
+.mt-28.data-v-25074af5 {
+ margin-top: 52.5rpx;
+}
+.ml-30.data-v-25074af5 {
+ margin-left: 56.25rpx;
+}
+.mt-30.data-v-25074af5 {
+ margin-top: 56.25rpx;
+}
+.ml-32.data-v-25074af5 {
+ margin-left: 60rpx;
+}
+.mt-32.data-v-25074af5 {
+ margin-top: 60rpx;
+}
+.ml-34.data-v-25074af5 {
+ margin-left: 63.75rpx;
+}
+.mt-34.data-v-25074af5 {
+ margin-top: 63.75rpx;
+}
+.ml-36.data-v-25074af5 {
+ margin-left: 67.5rpx;
+}
+.mt-36.data-v-25074af5 {
+ margin-top: 67.5rpx;
+}
+.ml-38.data-v-25074af5 {
+ margin-left: 71.25rpx;
+}
+.mt-38.data-v-25074af5 {
+ margin-top: 71.25rpx;
+}
+.ml-40.data-v-25074af5 {
+ margin-left: 75rpx;
+}
+.mt-40.data-v-25074af5 {
+ margin-top: 75rpx;
+}
+.ml-42.data-v-25074af5 {
+ margin-left: 78.75rpx;
+}
+.mt-42.data-v-25074af5 {
+ margin-top: 78.75rpx;
+}
+.ml-44.data-v-25074af5 {
+ margin-left: 82.5rpx;
+}
+.mt-44.data-v-25074af5 {
+ margin-top: 82.5rpx;
+}
+.ml-46.data-v-25074af5 {
+ margin-left: 86.25rpx;
+}
+.mt-46.data-v-25074af5 {
+ margin-top: 86.25rpx;
+}
+.ml-48.data-v-25074af5 {
+ margin-left: 90rpx;
+}
+.mt-48.data-v-25074af5 {
+ margin-top: 90rpx;
+}
+.ml-50.data-v-25074af5 {
+ margin-left: 93.75rpx;
+}
+.mt-50.data-v-25074af5 {
+ margin-top: 93.75rpx;
+}
+.ml-52.data-v-25074af5 {
+ margin-left: 97.5rpx;
+}
+.mt-52.data-v-25074af5 {
+ margin-top: 97.5rpx;
+}
+.ml-54.data-v-25074af5 {
+ margin-left: 101.25rpx;
+}
+.mt-54.data-v-25074af5 {
+ margin-top: 101.25rpx;
+}
+.ml-56.data-v-25074af5 {
+ margin-left: 105rpx;
+}
+.mt-56.data-v-25074af5 {
+ margin-top: 105rpx;
+}
+.ml-58.data-v-25074af5 {
+ margin-left: 108.75rpx;
+}
+.mt-58.data-v-25074af5 {
+ margin-top: 108.75rpx;
+}
+.ml-60.data-v-25074af5 {
+ margin-left: 112.5rpx;
+}
+.mt-60.data-v-25074af5 {
+ margin-top: 112.5rpx;
+}
+.ml-62.data-v-25074af5 {
+ margin-left: 116.25rpx;
+}
+.mt-62.data-v-25074af5 {
+ margin-top: 116.25rpx;
+}
+.ml-64.data-v-25074af5 {
+ margin-left: 120rpx;
+}
+.mt-64.data-v-25074af5 {
+ margin-top: 120rpx;
+}
+.ml-66.data-v-25074af5 {
+ margin-left: 123.75rpx;
+}
+.mt-66.data-v-25074af5 {
+ margin-top: 123.75rpx;
+}
+.ml-68.data-v-25074af5 {
+ margin-left: 127.5rpx;
+}
+.mt-68.data-v-25074af5 {
+ margin-top: 127.5rpx;
+}
+.ml-70.data-v-25074af5 {
+ margin-left: 131.25rpx;
+}
+.mt-70.data-v-25074af5 {
+ margin-top: 131.25rpx;
+}
+.ml-72.data-v-25074af5 {
+ margin-left: 135rpx;
+}
+.mt-72.data-v-25074af5 {
+ margin-top: 135rpx;
+}
+.ml-74.data-v-25074af5 {
+ margin-left: 138.75rpx;
+}
+.mt-74.data-v-25074af5 {
+ margin-top: 138.75rpx;
+}
+.ml-76.data-v-25074af5 {
+ margin-left: 142.5rpx;
+}
+.mt-76.data-v-25074af5 {
+ margin-top: 142.5rpx;
+}
+.ml-78.data-v-25074af5 {
+ margin-left: 146.25rpx;
+}
+.mt-78.data-v-25074af5 {
+ margin-top: 146.25rpx;
+}
+.ml-80.data-v-25074af5 {
+ margin-left: 150rpx;
+}
+.mt-80.data-v-25074af5 {
+ margin-top: 150rpx;
+}
+.ml-82.data-v-25074af5 {
+ margin-left: 153.75rpx;
+}
+.mt-82.data-v-25074af5 {
+ margin-top: 153.75rpx;
+}
+.ml-84.data-v-25074af5 {
+ margin-left: 157.5rpx;
+}
+.mt-84.data-v-25074af5 {
+ margin-top: 157.5rpx;
+}
+.ml-86.data-v-25074af5 {
+ margin-left: 161.25rpx;
+}
+.mt-86.data-v-25074af5 {
+ margin-top: 161.25rpx;
+}
+.ml-88.data-v-25074af5 {
+ margin-left: 165rpx;
+}
+.mt-88.data-v-25074af5 {
+ margin-top: 165rpx;
+}
+.ml-90.data-v-25074af5 {
+ margin-left: 168.75rpx;
+}
+.mt-90.data-v-25074af5 {
+ margin-top: 168.75rpx;
+}
+.ml-92.data-v-25074af5 {
+ margin-left: 172.5rpx;
+}
+.mt-92.data-v-25074af5 {
+ margin-top: 172.5rpx;
+}
+.ml-94.data-v-25074af5 {
+ margin-left: 176.25rpx;
+}
+.mt-94.data-v-25074af5 {
+ margin-top: 176.25rpx;
+}
+.ml-96.data-v-25074af5 {
+ margin-left: 180rpx;
+}
+.mt-96.data-v-25074af5 {
+ margin-top: 180rpx;
+}
+.ml-98.data-v-25074af5 {
+ margin-left: 183.75rpx;
+}
+.mt-98.data-v-25074af5 {
+ margin-top: 183.75rpx;
+}
+.ml-100.data-v-25074af5 {
+ margin-left: 187.5rpx;
+}
+.mt-100.data-v-25074af5 {
+ margin-top: 187.5rpx;
+}
+.ml-17.data-v-25074af5 {
+ margin-left: 31.88rpx;
+}
+.ml-83.data-v-25074af5 {
+ margin-left: 155.63rpx;
+}
+.ml-9.data-v-25074af5 {
+ margin-left: 16.88rpx;
+}
+.ml-7.data-v-25074af5 {
+ margin-left: 13.13rpx;
+}
+.page.data-v-25074af5 {
+ background-image: url("https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FQfLHXSAU-feiyigongfangbeijin.png");
+ background-size: 100% 100%;
+ background-repeat: no-repeat;
+ width: 100%;
+ overflow-y: auto;
+ overflow-x: hidden;
+ height: 100vh;
+}
+.section_2.data-v-25074af5 {
+ position: fixed;
+ left: 0;
+ right: 0;
+ top: 0;
+ padding: 28.13rpx 30.69rpx 18.75rpx;
+ background-color: #fbdedf;
+ z-index: 99;
+}
+.font.data-v-25074af5 {
+ font-size: 30rpx;
+ font-family: FangZhengFonts;
+ line-height: 27.77rpx;
+ color: #c35c5d;
+}
+.text.data-v-25074af5 {
+ line-height: 28.24rpx;
+}
+.section_3.data-v-25074af5 {
+ padding: 0 15rpx;
+ background-color: #ffffff;
+ border-radius: 9.38rpx;
+ height: 56.25rpx;
+}
+.image.data-v-25074af5 {
+ width: 54.38rpx;
+ height: 52.5rpx;
+}
+.section_1.data-v-25074af5 {
+ flex: 1 1 0;
+ margin-right: 7.5rpx;
+}
+.text_2.data-v-25074af5 {
+ margin-right: 4.46rpx;
+}
+.section_5.data-v-25074af5 {
+ position: fixed;
+ left: 0;
+ right: 0;
+ top: 102rpx;
+ padding: 0 121.88rpx;
+ background-color: #ffffff;
+ z-index: 99;
+}
+.group.data-v-25074af5 {
+ padding: 27.06rpx 4.33rpx 23.08rpx 10.89rpx;
+ z-index: 1;
+}
+.font_2.data-v-25074af5 {
+ font-size: 30rpx;
+ font-family: FangZhengFonts;
+ line-height: 27.77rpx;
+ color: #323232;
+}
+.text_3.data-v-25074af5 {
+ line-height: 27.9rpx;
+}
+.text_4.data-v-25074af5 {
+ line-height: 28.71rpx;
+}
+.section_6.data-v-25074af5 {
+ background-color: #fb8b05;
+ width: 112.5rpx;
+ height: 5.63rpx;
+}
+.list.data-v-25074af5 {
+ margin: 192rpx 24rpx 120rpx 24rpx;
+}
+.list-item.data-v-25074af5:first-child {
+ margin-top: 0;
+}
+.mt-14.data-v-25074af5 {
+ margin-top: 16rpx;
+}
+.section_10.data-v-25074af5 {
+ padding: 38.1rpx 31.52rpx 30.07rpx 27.31rpx;
+ background-color: #ffffff;
+ border-radius: 18.75rpx;
+}
+.image_3.data-v-25074af5 {
+ transform: scale(0.7);
+ width: 37.5rpx;
+ height: 37.5rpx;
+}
+.image_2.data-v-25074af5 {
+ border-radius: 9.38rpx;
+ width: 127.5rpx;
+ height: 170rpx;
+}
+.group_2.data-v-25074af5 {
+ margin-left: 23.31rpx;
+ margin-top: 2.33rpx;
+}
+.group_3.data-v-25074af5 {
+ padding: 0 9.49rpx;
+}
+.font_3.data-v-25074af5 {
+ font-size: 26.25rpx;
+ font-family: FangZhengFonts;
+ line-height: 25.01rpx;
+ color: #323232;
+}
+.text_5.data-v-25074af5 {
+ line-height: 25.54rpx;
+}
+.font_4.data-v-25074af5 {
+ font-size: 33.75rpx;
+ font-family: FangZhengFonts;
+ line-height: 22.07rpx;
+ color: #e79ea1;
+}
+.text_6.data-v-25074af5 {
+ margin-left: 24.19rpx;
+ margin-bottom: 7.78rpx;
+ line-height: 22.54rpx;
+}
+.image_6.data-v-25074af5 {
+ margin-left: -76.69rpx;
+ width: 30rpx;
+ height: 28.13rpx;
+}
+.font_5.data-v-25074af5 {
+ font-size: 26.25rpx;
+ font-family: FangZhengFonts;
+ line-height: 18.73rpx;
+ color: #e79ea1;
+}
+.text_7.data-v-25074af5 {
+ margin-left: 61.44rpx;
+ margin-bottom: 6.15rpx;
+ line-height: 17.53rpx;
+}
+.image_4.data-v-25074af5 {
+ border-radius: 9.38rpx 0rpx 0rpx 9.38rpx;
+ width: 45.21rpx;
+ height: 48.13rpx;
+}
+.group_4.data-v-25074af5 {
+ margin-left: 3.77rpx;
+}
+.text-wrapper.data-v-25074af5 {
+ padding: 14.74rpx 0 14.66rpx;
+ background-color: #fbdedf;
+ width: 58.41rpx;
+ height: 48.13rpx;
+}
+.font_6.data-v-25074af5 {
+ font-size: 26.25rpx;
+ font-family: Open Sans;
+ line-height: 18.73rpx;
+ color: #323232;
+}
+.image_5.data-v-25074af5 {
+ border-radius: 0rpx 9.38rpx 9.38rpx 0rpx;
+ width: 45.21rpx;
+ height: 48.13rpx;
+}
+.list-item_2.data-v-25074af5 {
+ padding: 22.01rpx 18.84rpx 33.75rpx;
+ background-color: #ffffff;
+ border-radius: 18.75rpx;
+}
+.image_8.data-v-25074af5 {
+ transform: scale(0.7);
+ width: 37.5rpx;
+ height: 37.5rpx;
+}
+.image_7.data-v-25074af5 {
+ margin-left: 39.79rpx;
+ margin-top: 2.36rpx;
+ width: 121.88rpx;
+ height: 172.5rpx;
+}
+.group_5.data-v-25074af5 {
+ margin: 0 13.99rpx 7.5rpx 23.25rpx;
+}
+.font_7.data-v-25074af5 {
+ font-size: 26.25rpx;
+ font-family: FangZhengFonts;
+ line-height: 31.88rpx;
+ color: #323233;
+}
+.section_7.data-v-25074af5 {
+ margin-right: 8.63rpx;
+ padding: 11.1rpx 10.14rpx 14.25rpx;
+ background-color: #fbdedf;
+ border-radius: 9.38rpx;
+}
+.font_8.data-v-25074af5 {
+ font-size: 22.5rpx;
+ font-family: FangZhengFonts;
+ line-height: 22.07rpx;
+ color: #6b6e72;
+}
+.text_8.data-v-25074af5 {
+ line-height: 20.83rpx;
+}
+.image_9.data-v-25074af5 {
+ margin-right: 5.06rpx;
+ width: 22.5rpx;
+ height: 22.5rpx;
+}
+.group_6.data-v-25074af5 {
+ padding: 0 22.61rpx;
+}
+.font_9.data-v-25074af5 {
+ font-size: 33.75rpx;
+ font-family: Open Sans;
+ line-height: 25.01rpx;
+ font-weight: 600;
+ color: #e79ea1;
+}
+.text_9.data-v-25074af5 {
+ margin-left: 25.14rpx;
+ line-height: 24.88rpx;
+}
+.image_12.data-v-25074af5 {
+ margin-left: -90.77rpx;
+ width: 30rpx;
+ height: 26.25rpx;
+}
+.font_10.data-v-25074af5 {
+ font-size: 26.25rpx;
+ font-family: Open Sans;
+ line-height: 18.73rpx;
+ font-weight: 600;
+ color: #e79ea1;
+}
+.text_10.data-v-25074af5 {
+ margin-left: 61.61rpx;
+ line-height: 19.29rpx;
+}
+.image_10.data-v-25074af5 {
+ border-radius: 9.38rpx 0rpx 0rpx 9.38rpx;
+ width: 45.24rpx;
+ height: 45rpx;
+}
+.text-wrapper_2.data-v-25074af5 {
+ padding: 12.39rpx 0 13.88rpx;
+ background-color: #fbdedf;
+ width: 58.42rpx;
+ height: 45rpx;
+}
+.image_11.data-v-25074af5 {
+ border-radius: 0rpx 9.38rpx 9.38rpx 0rpx;
+ width: 45.24rpx;
+ height: 45rpx;
+}
+.section_8.data-v-25074af5 {
+ position: fixed;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ padding: 20.63rpx 20.63rpx 15rpx;
+ background-color: #ffffff;
+}
+.image_13.data-v-25074af5 {
+ margin-top: 0;
+}
+.text_11.data-v-25074af5 {
+ line-height: 27.3rpx;
+}
+.text_12.data-v-25074af5 {
+ color: #000000;
+}
+.text-wrapper_3.data-v-25074af5 {
+ padding: 20.93rpx 0 25.24rpx;
+ background-color: #e79ea1;
+ border-radius: 75rpx;
+ width: 219.38rpx;
+ height: 76.88rpx;
+}
+.text_13.data-v-25074af5 {
+ color: #ffffff;
+ line-height: 30.71rpx;
+}
\ No newline at end of file
diff --git a/unpackage/dist/dev/mp-weixin/pages/mine/addressList/addressList.js b/unpackage/dist/dev/mp-weixin/pages/mine/addressList/addressList.js
new file mode 100644
index 0000000..967b0c6
--- /dev/null
+++ b/unpackage/dist/dev/mp-weixin/pages/mine/addressList/addressList.js
@@ -0,0 +1,83 @@
+"use strict";
+const common_vendor = require("../../../common/vendor.js");
+const api_request = require("../../../api/request.js");
+const _sfc_main = {
+ __name: "addressList",
+ setup(__props) {
+ common_vendor.ref([null, null, null, null, null, null, null, null, null]);
+ const addressArr = common_vendor.ref([]);
+ common_vendor.onShow(() => {
+ getAddress();
+ });
+ const getAddress = async () => {
+ const res = await common_vendor.index.request({
+ url: api_request.baseUrl + "/address/list",
+ method: "POST",
+ header: {
+ cookie: common_vendor.wx$1.getStorageSync("cookie")
+ }
+ });
+ if (res.data.code === 1) {
+ addressArr.value = res.data.data;
+ console.log("获取的地址信息--->", res.data.data);
+ }
+ };
+ const editAddress = (value) => {
+ console.log("地址信息", value);
+ common_vendor.index.navigateTo({
+ url: "/pages/Shopping-cart/newaddress_Info/newaddress_Info?editInfo=" + JSON.stringify(value)
+ });
+ };
+ const confirmPop = (id) => {
+ common_vendor.index.showModal({
+ title: "提示",
+ content: "是否删除地址?",
+ success: (e) => {
+ if (e.confirm) {
+ deleteAddress(id);
+ } else {
+ return;
+ }
+ }
+ });
+ };
+ const deleteAddress = async (id) => {
+ const res = await common_vendor.index.request({
+ url: api_request.baseUrl + "/address/delete",
+ method: "POST",
+ header: {
+ "cookie": common_vendor.wx$1.getStorageSync("cookie")
+ },
+ data: { id }
+ });
+ if (res.data.code === 1) {
+ getAddress();
+ }
+ };
+ const jump_newAddress = () => {
+ common_vendor.index.navigateTo({
+ url: "/pages/Shopping-cart/newaddress_Info/newaddress_Info"
+ });
+ };
+ return (_ctx, _cache) => {
+ return {
+ a: common_vendor.f(addressArr.value, (item, index, i0) => {
+ return common_vendor.e({
+ a: common_vendor.t(item.name),
+ b: common_vendor.t(item.phone),
+ c: item.isDefault === 1
+ }, item.isDefault === 1 ? {} : {}, {
+ d: common_vendor.o(($event) => editAddress(item), index),
+ e: common_vendor.o(($event) => confirmPop(item.id), index),
+ f: common_vendor.t(item.region),
+ g: common_vendor.t(item.detailAddress),
+ h: index
+ });
+ }),
+ b: common_vendor.o(($event) => jump_newAddress())
+ };
+ };
+ }
+};
+const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-3ed0d3c0"], ["__file", "D:/微信小程序/课设整合/匠承非遗小程序端/jiangchengfeiyi-xiaochengxu/pages/mine/addressList/addressList.vue"]]);
+wx.createPage(MiniProgramPage);
diff --git a/unpackage/dist/dev/mp-weixin/pages/mine/addressList/addressList.json b/unpackage/dist/dev/mp-weixin/pages/mine/addressList/addressList.json
new file mode 100644
index 0000000..a0812ee
--- /dev/null
+++ b/unpackage/dist/dev/mp-weixin/pages/mine/addressList/addressList.json
@@ -0,0 +1,4 @@
+{
+ "navigationBarTitleText": "",
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/unpackage/dist/dev/mp-weixin/pages/mine/addressList/addressList.wxml b/unpackage/dist/dev/mp-weixin/pages/mine/addressList/addressList.wxml
new file mode 100644
index 0000000..8a0457f
--- /dev/null
+++ b/unpackage/dist/dev/mp-weixin/pages/mine/addressList/addressList.wxml
@@ -0,0 +1 @@
+{{item.a}}{{item.b}}默认{{item.f}} {{item.g}}新增地址
\ No newline at end of file
diff --git a/unpackage/dist/dev/mp-weixin/pages/mine/addressList/addressList.wxss b/unpackage/dist/dev/mp-weixin/pages/mine/addressList/addressList.wxss
new file mode 100644
index 0000000..9bd5213
--- /dev/null
+++ b/unpackage/dist/dev/mp-weixin/pages/mine/addressList/addressList.wxss
@@ -0,0 +1,485 @@
+/* 水平间距 */
+/* 水平间距 */
+/************************************************************
+** 请将全局样式拷贝到项目的全局 CSS 文件或者当前页面的顶部 **
+** 否则页面将无法正常显示 **
+************************************************************/
+html.data-v-3ed0d3c0 {
+ font-size: 16px;
+}
+body.data-v-3ed0d3c0 {
+ 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-3ed0d3c0,
+image.data-v-3ed0d3c0,
+text.data-v-3ed0d3c0 {
+ box-sizing: border-box;
+ flex-shrink: 0;
+}
+#app.data-v-3ed0d3c0 {
+ width: 100vw;
+ height: 100vh;
+}
+.flex-row.data-v-3ed0d3c0 {
+ display: flex;
+ flex-direction: row;
+}
+.flex-col.data-v-3ed0d3c0 {
+ display: flex;
+ flex-direction: column;
+}
+.justify-start.data-v-3ed0d3c0 {
+ justify-content: flex-start;
+}
+.justify-end.data-v-3ed0d3c0 {
+ justify-content: flex-end;
+}
+.justify-center.data-v-3ed0d3c0 {
+ justify-content: center;
+}
+.justify-between.data-v-3ed0d3c0 {
+ justify-content: space-between;
+}
+.justify-around.data-v-3ed0d3c0 {
+ justify-content: space-around;
+}
+.justify-evenly.data-v-3ed0d3c0 {
+ justify-content: space-evenly;
+}
+.items-start.data-v-3ed0d3c0 {
+ align-items: flex-start;
+}
+.items-end.data-v-3ed0d3c0 {
+ align-items: flex-end;
+}
+.items-center.data-v-3ed0d3c0 {
+ align-items: center;
+}
+.items-baseline.data-v-3ed0d3c0 {
+ align-items: baseline;
+}
+.items-stretch.data-v-3ed0d3c0 {
+ align-items: stretch;
+}
+.self-start.data-v-3ed0d3c0 {
+ align-self: flex-start;
+}
+.self-end.data-v-3ed0d3c0 {
+ align-self: flex-end;
+}
+.self-center.data-v-3ed0d3c0 {
+ align-self: center;
+}
+.self-baseline.data-v-3ed0d3c0 {
+ align-self: baseline;
+}
+.self-stretch.data-v-3ed0d3c0 {
+ align-self: stretch;
+}
+.flex-1.data-v-3ed0d3c0 {
+ flex: 1 1 0%;
+}
+.flex-auto.data-v-3ed0d3c0 {
+ flex: 1 1 auto;
+}
+.grow.data-v-3ed0d3c0 {
+ flex-grow: 1;
+}
+.grow-0.data-v-3ed0d3c0 {
+ flex-grow: 0;
+}
+.shrink.data-v-3ed0d3c0 {
+ flex-shrink: 1;
+}
+.shrink-0.data-v-3ed0d3c0 {
+ flex-shrink: 0;
+}
+.relative.data-v-3ed0d3c0 {
+ position: relative;
+}
+.ml-2.data-v-3ed0d3c0 {
+ margin-left: 3.75rpx;
+}
+.mt-2.data-v-3ed0d3c0 {
+ margin-top: 3.75rpx;
+}
+.ml-4.data-v-3ed0d3c0 {
+ margin-left: 7.5rpx;
+}
+.mt-4.data-v-3ed0d3c0 {
+ margin-top: 7.5rpx;
+}
+.ml-6.data-v-3ed0d3c0 {
+ margin-left: 11.25rpx;
+}
+.mt-6.data-v-3ed0d3c0 {
+ margin-top: 11.25rpx;
+}
+.ml-8.data-v-3ed0d3c0 {
+ margin-left: 15rpx;
+}
+.mt-8.data-v-3ed0d3c0 {
+ margin-top: 15rpx;
+}
+.ml-10.data-v-3ed0d3c0 {
+ margin-left: 18.75rpx;
+}
+.mt-10.data-v-3ed0d3c0 {
+ margin-top: 18.75rpx;
+}
+.ml-12.data-v-3ed0d3c0 {
+ margin-left: 22.5rpx;
+}
+.mt-12.data-v-3ed0d3c0 {
+ margin-top: 22.5rpx;
+}
+.ml-14.data-v-3ed0d3c0 {
+ margin-left: 26.25rpx;
+}
+.mt-14.data-v-3ed0d3c0 {
+ margin-top: 26.25rpx;
+}
+.ml-16.data-v-3ed0d3c0 {
+ margin-left: 30rpx;
+}
+.mt-16.data-v-3ed0d3c0 {
+ margin-top: 30rpx;
+}
+.ml-18.data-v-3ed0d3c0 {
+ margin-left: 33.75rpx;
+}
+.mt-18.data-v-3ed0d3c0 {
+ margin-top: 33.75rpx;
+}
+.ml-20.data-v-3ed0d3c0 {
+ margin-left: 37.5rpx;
+}
+.mt-20.data-v-3ed0d3c0 {
+ margin-top: 37.5rpx;
+}
+.ml-22.data-v-3ed0d3c0 {
+ margin-left: 41.25rpx;
+}
+.mt-22.data-v-3ed0d3c0 {
+ margin-top: 41.25rpx;
+}
+.ml-24.data-v-3ed0d3c0 {
+ margin-left: 45rpx;
+}
+.mt-24.data-v-3ed0d3c0 {
+ margin-top: 45rpx;
+}
+.ml-26.data-v-3ed0d3c0 {
+ margin-left: 48.75rpx;
+}
+.mt-26.data-v-3ed0d3c0 {
+ margin-top: 48.75rpx;
+}
+.ml-28.data-v-3ed0d3c0 {
+ margin-left: 52.5rpx;
+}
+.mt-28.data-v-3ed0d3c0 {
+ margin-top: 52.5rpx;
+}
+.ml-30.data-v-3ed0d3c0 {
+ margin-left: 56.25rpx;
+}
+.mt-30.data-v-3ed0d3c0 {
+ margin-top: 56.25rpx;
+}
+.ml-32.data-v-3ed0d3c0 {
+ margin-left: 60rpx;
+}
+.mt-32.data-v-3ed0d3c0 {
+ margin-top: 60rpx;
+}
+.ml-34.data-v-3ed0d3c0 {
+ margin-left: 63.75rpx;
+}
+.mt-34.data-v-3ed0d3c0 {
+ margin-top: 63.75rpx;
+}
+.ml-36.data-v-3ed0d3c0 {
+ margin-left: 67.5rpx;
+}
+.mt-36.data-v-3ed0d3c0 {
+ margin-top: 67.5rpx;
+}
+.ml-38.data-v-3ed0d3c0 {
+ margin-left: 71.25rpx;
+}
+.mt-38.data-v-3ed0d3c0 {
+ margin-top: 71.25rpx;
+}
+.ml-40.data-v-3ed0d3c0 {
+ margin-left: 75rpx;
+}
+.mt-40.data-v-3ed0d3c0 {
+ margin-top: 75rpx;
+}
+.ml-42.data-v-3ed0d3c0 {
+ margin-left: 78.75rpx;
+}
+.mt-42.data-v-3ed0d3c0 {
+ margin-top: 78.75rpx;
+}
+.ml-44.data-v-3ed0d3c0 {
+ margin-left: 82.5rpx;
+}
+.mt-44.data-v-3ed0d3c0 {
+ margin-top: 82.5rpx;
+}
+.ml-46.data-v-3ed0d3c0 {
+ margin-left: 86.25rpx;
+}
+.mt-46.data-v-3ed0d3c0 {
+ margin-top: 86.25rpx;
+}
+.ml-48.data-v-3ed0d3c0 {
+ margin-left: 90rpx;
+}
+.mt-48.data-v-3ed0d3c0 {
+ margin-top: 90rpx;
+}
+.ml-50.data-v-3ed0d3c0 {
+ margin-left: 93.75rpx;
+}
+.mt-50.data-v-3ed0d3c0 {
+ margin-top: 93.75rpx;
+}
+.ml-52.data-v-3ed0d3c0 {
+ margin-left: 97.5rpx;
+}
+.mt-52.data-v-3ed0d3c0 {
+ margin-top: 97.5rpx;
+}
+.ml-54.data-v-3ed0d3c0 {
+ margin-left: 101.25rpx;
+}
+.mt-54.data-v-3ed0d3c0 {
+ margin-top: 101.25rpx;
+}
+.ml-56.data-v-3ed0d3c0 {
+ margin-left: 105rpx;
+}
+.mt-56.data-v-3ed0d3c0 {
+ margin-top: 105rpx;
+}
+.ml-58.data-v-3ed0d3c0 {
+ margin-left: 108.75rpx;
+}
+.mt-58.data-v-3ed0d3c0 {
+ margin-top: 108.75rpx;
+}
+.ml-60.data-v-3ed0d3c0 {
+ margin-left: 112.5rpx;
+}
+.mt-60.data-v-3ed0d3c0 {
+ margin-top: 112.5rpx;
+}
+.ml-62.data-v-3ed0d3c0 {
+ margin-left: 116.25rpx;
+}
+.mt-62.data-v-3ed0d3c0 {
+ margin-top: 116.25rpx;
+}
+.ml-64.data-v-3ed0d3c0 {
+ margin-left: 120rpx;
+}
+.mt-64.data-v-3ed0d3c0 {
+ margin-top: 120rpx;
+}
+.ml-66.data-v-3ed0d3c0 {
+ margin-left: 123.75rpx;
+}
+.mt-66.data-v-3ed0d3c0 {
+ margin-top: 123.75rpx;
+}
+.ml-68.data-v-3ed0d3c0 {
+ margin-left: 127.5rpx;
+}
+.mt-68.data-v-3ed0d3c0 {
+ margin-top: 127.5rpx;
+}
+.ml-70.data-v-3ed0d3c0 {
+ margin-left: 131.25rpx;
+}
+.mt-70.data-v-3ed0d3c0 {
+ margin-top: 131.25rpx;
+}
+.ml-72.data-v-3ed0d3c0 {
+ margin-left: 135rpx;
+}
+.mt-72.data-v-3ed0d3c0 {
+ margin-top: 135rpx;
+}
+.ml-74.data-v-3ed0d3c0 {
+ margin-left: 138.75rpx;
+}
+.mt-74.data-v-3ed0d3c0 {
+ margin-top: 138.75rpx;
+}
+.ml-76.data-v-3ed0d3c0 {
+ margin-left: 142.5rpx;
+}
+.mt-76.data-v-3ed0d3c0 {
+ margin-top: 142.5rpx;
+}
+.ml-78.data-v-3ed0d3c0 {
+ margin-left: 146.25rpx;
+}
+.mt-78.data-v-3ed0d3c0 {
+ margin-top: 146.25rpx;
+}
+.ml-80.data-v-3ed0d3c0 {
+ margin-left: 150rpx;
+}
+.mt-80.data-v-3ed0d3c0 {
+ margin-top: 150rpx;
+}
+.ml-82.data-v-3ed0d3c0 {
+ margin-left: 153.75rpx;
+}
+.mt-82.data-v-3ed0d3c0 {
+ margin-top: 153.75rpx;
+}
+.ml-84.data-v-3ed0d3c0 {
+ margin-left: 157.5rpx;
+}
+.mt-84.data-v-3ed0d3c0 {
+ margin-top: 157.5rpx;
+}
+.ml-86.data-v-3ed0d3c0 {
+ margin-left: 161.25rpx;
+}
+.mt-86.data-v-3ed0d3c0 {
+ margin-top: 161.25rpx;
+}
+.ml-88.data-v-3ed0d3c0 {
+ margin-left: 165rpx;
+}
+.mt-88.data-v-3ed0d3c0 {
+ margin-top: 165rpx;
+}
+.ml-90.data-v-3ed0d3c0 {
+ margin-left: 168.75rpx;
+}
+.mt-90.data-v-3ed0d3c0 {
+ margin-top: 168.75rpx;
+}
+.ml-92.data-v-3ed0d3c0 {
+ margin-left: 172.5rpx;
+}
+.mt-92.data-v-3ed0d3c0 {
+ margin-top: 172.5rpx;
+}
+.ml-94.data-v-3ed0d3c0 {
+ margin-left: 176.25rpx;
+}
+.mt-94.data-v-3ed0d3c0 {
+ margin-top: 176.25rpx;
+}
+.ml-96.data-v-3ed0d3c0 {
+ margin-left: 180rpx;
+}
+.mt-96.data-v-3ed0d3c0 {
+ margin-top: 180rpx;
+}
+.ml-98.data-v-3ed0d3c0 {
+ margin-left: 183.75rpx;
+}
+.mt-98.data-v-3ed0d3c0 {
+ margin-top: 183.75rpx;
+}
+.ml-100.data-v-3ed0d3c0 {
+ margin-left: 187.5rpx;
+}
+.mt-100.data-v-3ed0d3c0 {
+ margin-top: 187.5rpx;
+}
+.mt-13.data-v-3ed0d3c0 {
+ margin-top: 24.38rpx;
+}
+.page.data-v-3ed0d3c0 {
+ padding-top: 31.88rpx;
+ background-image: url("https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FQfLHXSAU-feiyigongfangbeijin.png");
+ background-size: 100% 100%;
+ background-repeat: no-repeat;
+ width: 100%;
+ overflow-y: auto;
+ overflow-x: hidden;
+ height: 100vh;
+}
+.list.data-v-3ed0d3c0 {
+ margin-left: 28.13rpx;
+ margin-right: 26.27rpx;
+}
+.list-item.data-v-3ed0d3c0 {
+ padding: 31.88rpx 18.75rpx 36.11rpx 24.62rpx;
+ background-color: #ffffff;
+ border-radius: 9.38rpx;
+}
+.list-item.data-v-3ed0d3c0:first-child {
+ margin-top: 0;
+}
+.font.data-v-3ed0d3c0 {
+ font-size: 30rpx;
+ font-family: FZSongKeBenXiuKaiS-R-GB;
+ line-height: 25.89rpx;
+ color: #323232;
+}
+.font_2.data-v-3ed0d3c0 {
+ font-size: 30rpx;
+ font-family: FZSongKeBenXiuKaiS-R-GB;
+ line-height: 20.04rpx;
+ color: #323232;
+}
+.text.data-v-3ed0d3c0 {
+ margin-left: 16.18rpx;
+}
+.text-wrapper.data-v-3ed0d3c0 {
+ margin-left: 28.57rpx;
+ padding: 5.1rpx 0 8.06rpx;
+ background-color: #fbdedf;
+ border-radius: 9.38rpx;
+ width: 69.38rpx;
+ height: 31.88rpx;
+}
+.text_2.data-v-3ed0d3c0 {
+ color: #c35c5d;
+ font-size: 22.5rpx;
+ font-family: FZSongKeBenXiuKaiS-R-GB;
+}
+.image.data-v-3ed0d3c0 {
+ border-radius: 9.38rpx;
+ width: 39.38rpx;
+ height: 39.38rpx;
+}
+.font_3.data-v-3ed0d3c0 {
+ font-size: 26.25rpx;
+ font-family: FZSongKeBenXiuKaiS-R-GB;
+ line-height: 31.88rpx;
+ color: #818181;
+}
+.section_2.data-v-3ed0d3c0 {
+ position: fixed;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ padding: 16.88rpx 0;
+ background-color: #ffffff;
+}
+.text-wrapper_2.data-v-3ed0d3c0 {
+ padding: 25.43rpx 0 24.51rpx;
+ background-color: #fbdedf;
+ border-radius: 46.88rpx;
+ width: 629.77rpx;
+}
+.text_3.data-v-3ed0d3c0 {
+ color: #c35c5d;
+ line-height: 28.84rpx;
+}
\ No newline at end of file
diff --git a/unpackage/dist/dev/mp-weixin/pages/workshop/component/testTimePopUp.js b/unpackage/dist/dev/mp-weixin/pages/workshop/component/testTimePopUp.js
new file mode 100644
index 0000000..32bb5ed
--- /dev/null
+++ b/unpackage/dist/dev/mp-weixin/pages/workshop/component/testTimePopUp.js
@@ -0,0 +1,56 @@
+"use strict";
+const common_vendor = require("../../../common/vendor.js");
+const api_request = require("../../../api/request.js");
+const _sfc_main = {
+ __name: "testTimePopUp",
+ props: ["pid"],
+ setup(__props) {
+ const cookie = common_vendor.wx$1.getStorageSync("cookie");
+ const items = common_vendor.ref([null, null, null, null, null, null, null]);
+ const father = __props;
+ const pid = common_vendor.ref(0);
+ const productInfo = common_vendor.ref({});
+ const bookTimeList = common_vendor.ref([]);
+ const textColor = common_vendor.ref(["#000", "#000", "#000", "#000", "#000", "#000", "#000"]);
+ common_vendor.onLoad((options) => {
+ });
+ common_vendor.onMounted(() => {
+ getProduct();
+ });
+ const choose = (index) => {
+ console.log(textColor.value[index]);
+ textColor.value[index] = "#C35C5D";
+ };
+ const getProduct = async () => {
+ pid.value = father.pid;
+ const res = await common_vendor.index.request({
+ url: api_request.baseUrl + "/goods/service/list/id",
+ method: "POST",
+ data: { id: pid.value },
+ header: { cookie }
+ });
+ console.log("后端传来的商品信息--->", res.data.data);
+ if (res.data.code === 1) {
+ productInfo.value = res.data.data;
+ bookTimeList.value = res.data.data.appointmentDateVOList;
+ }
+ console.log("商品信息--->", productInfo.value);
+ console.log("时间段信息--->", bookTimeList.value);
+ };
+ return (_ctx, _cache) => {
+ return {
+ a: productInfo.value.goodImg,
+ b: common_vendor.t(productInfo.value.price),
+ c: common_vendor.f(items.value, (item, index, i0) => {
+ return {
+ a: textColor.value[index],
+ b: index,
+ c: common_vendor.o(($event) => choose(index), index)
+ };
+ })
+ };
+ };
+ }
+};
+const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-ca17cad5"], ["__file", "D:/微信小程序/课设整合/匠承非遗小程序端/jiangchengfeiyi-xiaochengxu/pages/workshop/component/testTimePopUp.vue"]]);
+wx.createPage(MiniProgramPage);
diff --git a/unpackage/dist/dev/mp-weixin/pages/workshop/component/testTimePopUp.json b/unpackage/dist/dev/mp-weixin/pages/workshop/component/testTimePopUp.json
new file mode 100644
index 0000000..a0812ee
--- /dev/null
+++ b/unpackage/dist/dev/mp-weixin/pages/workshop/component/testTimePopUp.json
@@ -0,0 +1,4 @@
+{
+ "navigationBarTitleText": "",
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/unpackage/dist/dev/mp-weixin/pages/workshop/component/testTimePopUp.wxml b/unpackage/dist/dev/mp-weixin/pages/workshop/component/testTimePopUp.wxml
new file mode 100644
index 0000000..8055878
--- /dev/null
+++ b/unpackage/dist/dev/mp-weixin/pages/workshop/component/testTimePopUp.wxml
@@ -0,0 +1 @@
+¥{{b}}请选择场次参加日期:2024年11月当前预约人数:10选择预约时间 今天12-09 10:00-12:00可预约12:00-14:00可预约可预约14:00-16:0016:00-18:00可预约预约时间2024-12-09暂未选择购买须知:本次课程活动最少需要到达5人才能进行授课加入购物车
\ No newline at end of file
diff --git a/unpackage/dist/dev/mp-weixin/pages/workshop/component/testTimePopUp.wxss b/unpackage/dist/dev/mp-weixin/pages/workshop/component/testTimePopUp.wxss
new file mode 100644
index 0000000..46771a3
--- /dev/null
+++ b/unpackage/dist/dev/mp-weixin/pages/workshop/component/testTimePopUp.wxss
@@ -0,0 +1,684 @@
+/* 水平间距 */
+/* 水平间距 */
+/************************************************************
+** 请将全局样式拷贝到项目的全局 CSS 文件或者当前页面的顶部 **
+** 否则页面将无法正常显示 **
+************************************************************/
+html.data-v-ca17cad5 {
+ font-size: 16px;
+}
+body.data-v-ca17cad5 {
+ 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-ca17cad5,
+image.data-v-ca17cad5,
+text.data-v-ca17cad5 {
+ box-sizing: border-box;
+ flex-shrink: 0;
+}
+#app.data-v-ca17cad5 {
+ width: 100vw;
+ height: 100vh;
+}
+.flex-row.data-v-ca17cad5 {
+ display: flex;
+ flex-direction: row;
+}
+.flex-col.data-v-ca17cad5 {
+ display: flex;
+ flex-direction: column;
+}
+.justify-start.data-v-ca17cad5 {
+ justify-content: flex-start;
+}
+.justify-end.data-v-ca17cad5 {
+ justify-content: flex-end;
+}
+.justify-center.data-v-ca17cad5 {
+ justify-content: center;
+}
+.justify-between.data-v-ca17cad5 {
+ justify-content: space-between;
+}
+.justify-around.data-v-ca17cad5 {
+ justify-content: space-around;
+}
+.justify-evenly.data-v-ca17cad5 {
+ justify-content: space-evenly;
+}
+.items-start.data-v-ca17cad5 {
+ align-items: flex-start;
+}
+.items-end.data-v-ca17cad5 {
+ align-items: flex-end;
+}
+.items-center.data-v-ca17cad5 {
+ align-items: center;
+}
+.items-baseline.data-v-ca17cad5 {
+ align-items: baseline;
+}
+.items-stretch.data-v-ca17cad5 {
+ align-items: stretch;
+}
+.self-start.data-v-ca17cad5 {
+ align-self: flex-start;
+}
+.self-end.data-v-ca17cad5 {
+ align-self: flex-end;
+}
+.self-center.data-v-ca17cad5 {
+ align-self: center;
+}
+.self-baseline.data-v-ca17cad5 {
+ align-self: baseline;
+}
+.self-stretch.data-v-ca17cad5 {
+ align-self: stretch;
+}
+.flex-1.data-v-ca17cad5 {
+ flex: 1 1 0%;
+}
+.flex-auto.data-v-ca17cad5 {
+ flex: 1 1 auto;
+}
+.grow.data-v-ca17cad5 {
+ flex-grow: 1;
+}
+.grow-0.data-v-ca17cad5 {
+ flex-grow: 0;
+}
+.shrink.data-v-ca17cad5 {
+ flex-shrink: 1;
+}
+.shrink-0.data-v-ca17cad5 {
+ flex-shrink: 0;
+}
+.relative.data-v-ca17cad5 {
+ position: relative;
+}
+.ml-2.data-v-ca17cad5 {
+ margin-left: 3.75rpx;
+}
+.mt-2.data-v-ca17cad5 {
+ margin-top: 3.75rpx;
+}
+.ml-4.data-v-ca17cad5 {
+ margin-left: 7.5rpx;
+}
+.mt-4.data-v-ca17cad5 {
+ margin-top: 7.5rpx;
+}
+.ml-6.data-v-ca17cad5 {
+ margin-left: 11.25rpx;
+}
+.mt-6.data-v-ca17cad5 {
+ margin-top: 11.25rpx;
+}
+.ml-8.data-v-ca17cad5 {
+ margin-left: 15rpx;
+}
+.mt-8.data-v-ca17cad5 {
+ margin-top: 15rpx;
+}
+.ml-10.data-v-ca17cad5 {
+ margin-left: 18.75rpx;
+}
+.mt-10.data-v-ca17cad5 {
+ margin-top: 18.75rpx;
+}
+.ml-12.data-v-ca17cad5 {
+ margin-left: 22.5rpx;
+}
+.mt-12.data-v-ca17cad5 {
+ margin-top: 22.5rpx;
+}
+.ml-14.data-v-ca17cad5 {
+ margin-left: 26.25rpx;
+}
+.mt-14.data-v-ca17cad5 {
+ margin-top: 26.25rpx;
+}
+.ml-16.data-v-ca17cad5 {
+ margin-left: 30rpx;
+}
+.mt-16.data-v-ca17cad5 {
+ margin-top: 30rpx;
+}
+.ml-18.data-v-ca17cad5 {
+ margin-left: 33.75rpx;
+}
+.mt-18.data-v-ca17cad5 {
+ margin-top: 33.75rpx;
+}
+.ml-20.data-v-ca17cad5 {
+ margin-left: 37.5rpx;
+}
+.mt-20.data-v-ca17cad5 {
+ margin-top: 37.5rpx;
+}
+.ml-22.data-v-ca17cad5 {
+ margin-left: 41.25rpx;
+}
+.mt-22.data-v-ca17cad5 {
+ margin-top: 41.25rpx;
+}
+.ml-24.data-v-ca17cad5 {
+ margin-left: 45rpx;
+}
+.mt-24.data-v-ca17cad5 {
+ margin-top: 45rpx;
+}
+.ml-26.data-v-ca17cad5 {
+ margin-left: 48.75rpx;
+}
+.mt-26.data-v-ca17cad5 {
+ margin-top: 48.75rpx;
+}
+.ml-28.data-v-ca17cad5 {
+ margin-left: 52.5rpx;
+}
+.mt-28.data-v-ca17cad5 {
+ margin-top: 52.5rpx;
+}
+.ml-30.data-v-ca17cad5 {
+ margin-left: 56.25rpx;
+}
+.mt-30.data-v-ca17cad5 {
+ margin-top: 56.25rpx;
+}
+.ml-32.data-v-ca17cad5 {
+ margin-left: 60rpx;
+}
+.mt-32.data-v-ca17cad5 {
+ margin-top: 60rpx;
+}
+.ml-34.data-v-ca17cad5 {
+ margin-left: 63.75rpx;
+}
+.mt-34.data-v-ca17cad5 {
+ margin-top: 63.75rpx;
+}
+.ml-36.data-v-ca17cad5 {
+ margin-left: 67.5rpx;
+}
+.mt-36.data-v-ca17cad5 {
+ margin-top: 67.5rpx;
+}
+.ml-38.data-v-ca17cad5 {
+ margin-left: 71.25rpx;
+}
+.mt-38.data-v-ca17cad5 {
+ margin-top: 71.25rpx;
+}
+.ml-40.data-v-ca17cad5 {
+ margin-left: 75rpx;
+}
+.mt-40.data-v-ca17cad5 {
+ margin-top: 75rpx;
+}
+.ml-42.data-v-ca17cad5 {
+ margin-left: 78.75rpx;
+}
+.mt-42.data-v-ca17cad5 {
+ margin-top: 78.75rpx;
+}
+.ml-44.data-v-ca17cad5 {
+ margin-left: 82.5rpx;
+}
+.mt-44.data-v-ca17cad5 {
+ margin-top: 82.5rpx;
+}
+.ml-46.data-v-ca17cad5 {
+ margin-left: 86.25rpx;
+}
+.mt-46.data-v-ca17cad5 {
+ margin-top: 86.25rpx;
+}
+.ml-48.data-v-ca17cad5 {
+ margin-left: 90rpx;
+}
+.mt-48.data-v-ca17cad5 {
+ margin-top: 90rpx;
+}
+.ml-50.data-v-ca17cad5 {
+ margin-left: 93.75rpx;
+}
+.mt-50.data-v-ca17cad5 {
+ margin-top: 93.75rpx;
+}
+.ml-52.data-v-ca17cad5 {
+ margin-left: 97.5rpx;
+}
+.mt-52.data-v-ca17cad5 {
+ margin-top: 97.5rpx;
+}
+.ml-54.data-v-ca17cad5 {
+ margin-left: 101.25rpx;
+}
+.mt-54.data-v-ca17cad5 {
+ margin-top: 101.25rpx;
+}
+.ml-56.data-v-ca17cad5 {
+ margin-left: 105rpx;
+}
+.mt-56.data-v-ca17cad5 {
+ margin-top: 105rpx;
+}
+.ml-58.data-v-ca17cad5 {
+ margin-left: 108.75rpx;
+}
+.mt-58.data-v-ca17cad5 {
+ margin-top: 108.75rpx;
+}
+.ml-60.data-v-ca17cad5 {
+ margin-left: 112.5rpx;
+}
+.mt-60.data-v-ca17cad5 {
+ margin-top: 112.5rpx;
+}
+.ml-62.data-v-ca17cad5 {
+ margin-left: 116.25rpx;
+}
+.mt-62.data-v-ca17cad5 {
+ margin-top: 116.25rpx;
+}
+.ml-64.data-v-ca17cad5 {
+ margin-left: 120rpx;
+}
+.mt-64.data-v-ca17cad5 {
+ margin-top: 120rpx;
+}
+.ml-66.data-v-ca17cad5 {
+ margin-left: 123.75rpx;
+}
+.mt-66.data-v-ca17cad5 {
+ margin-top: 123.75rpx;
+}
+.ml-68.data-v-ca17cad5 {
+ margin-left: 127.5rpx;
+}
+.mt-68.data-v-ca17cad5 {
+ margin-top: 127.5rpx;
+}
+.ml-70.data-v-ca17cad5 {
+ margin-left: 131.25rpx;
+}
+.mt-70.data-v-ca17cad5 {
+ margin-top: 131.25rpx;
+}
+.ml-72.data-v-ca17cad5 {
+ margin-left: 135rpx;
+}
+.mt-72.data-v-ca17cad5 {
+ margin-top: 135rpx;
+}
+.ml-74.data-v-ca17cad5 {
+ margin-left: 138.75rpx;
+}
+.mt-74.data-v-ca17cad5 {
+ margin-top: 138.75rpx;
+}
+.ml-76.data-v-ca17cad5 {
+ margin-left: 142.5rpx;
+}
+.mt-76.data-v-ca17cad5 {
+ margin-top: 142.5rpx;
+}
+.ml-78.data-v-ca17cad5 {
+ margin-left: 146.25rpx;
+}
+.mt-78.data-v-ca17cad5 {
+ margin-top: 146.25rpx;
+}
+.ml-80.data-v-ca17cad5 {
+ margin-left: 150rpx;
+}
+.mt-80.data-v-ca17cad5 {
+ margin-top: 150rpx;
+}
+.ml-82.data-v-ca17cad5 {
+ margin-left: 153.75rpx;
+}
+.mt-82.data-v-ca17cad5 {
+ margin-top: 153.75rpx;
+}
+.ml-84.data-v-ca17cad5 {
+ margin-left: 157.5rpx;
+}
+.mt-84.data-v-ca17cad5 {
+ margin-top: 157.5rpx;
+}
+.ml-86.data-v-ca17cad5 {
+ margin-left: 161.25rpx;
+}
+.mt-86.data-v-ca17cad5 {
+ margin-top: 161.25rpx;
+}
+.ml-88.data-v-ca17cad5 {
+ margin-left: 165rpx;
+}
+.mt-88.data-v-ca17cad5 {
+ margin-top: 165rpx;
+}
+.ml-90.data-v-ca17cad5 {
+ margin-left: 168.75rpx;
+}
+.mt-90.data-v-ca17cad5 {
+ margin-top: 168.75rpx;
+}
+.ml-92.data-v-ca17cad5 {
+ margin-left: 172.5rpx;
+}
+.mt-92.data-v-ca17cad5 {
+ margin-top: 172.5rpx;
+}
+.ml-94.data-v-ca17cad5 {
+ margin-left: 176.25rpx;
+}
+.mt-94.data-v-ca17cad5 {
+ margin-top: 176.25rpx;
+}
+.ml-96.data-v-ca17cad5 {
+ margin-left: 180rpx;
+}
+.mt-96.data-v-ca17cad5 {
+ margin-top: 180rpx;
+}
+.ml-98.data-v-ca17cad5 {
+ margin-left: 183.75rpx;
+}
+.mt-98.data-v-ca17cad5 {
+ margin-top: 183.75rpx;
+}
+.ml-100.data-v-ca17cad5 {
+ margin-left: 187.5rpx;
+}
+.mt-100.data-v-ca17cad5 {
+ margin-top: 187.5rpx;
+}
+.ml-13.data-v-ca17cad5 {
+ margin-left: 24.38rpx;
+}
+.mt-5.data-v-ca17cad5 {
+ margin-top: 9.38rpx;
+}
+.ml-21.data-v-ca17cad5 {
+ margin-left: 39.38rpx;
+}
+.page.data-v-ca17cad5 {
+ padding-bottom: 18.75rpx;
+ width: 100%;
+ overflow-y: auto;
+ overflow-x: hidden;
+ height: 100%;
+}
+.section.data-v-ca17cad5 {
+ padding: 28.13rpx 0;
+ background-color: #ffffff;
+ border-radius: 37.5rpx 37.5rpx 0rpx 0rpx;
+}
+.group.data-v-ca17cad5 {
+ padding: 0 30rpx;
+}
+.image.data-v-ca17cad5 {
+ border-radius: 5.63rpx;
+ width: 195rpx;
+ height: 204.38rpx;
+}
+.group_2.data-v-ca17cad5 {
+ margin-bottom: 5.29rpx;
+ padding-bottom: 28.86rpx;
+ width: 157.8rpx;
+}
+.group_3.data-v-ca17cad5 {
+ margin-left: 17.51rpx;
+ line-height: 29.7rpx;
+}
+.font.data-v-ca17cad5 {
+ font-size: 37.5rpx;
+ font-family: FZSongKeBenXiuKaiS-R-GB;
+ line-height: 45rpx;
+ color: #323232;
+}
+.text_2.data-v-ca17cad5 {
+ color: #c35c5d;
+ line-height: 24.17rpx;
+}
+.text.data-v-ca17cad5 {
+ color: #c35c5d;
+ font-size: 45rpx;
+ font-family: FZSongKeBenXiuKaiS-R-GB;
+ line-height: 29.7rpx;
+}
+.font_2.data-v-ca17cad5 {
+ font-size: 26.25rpx;
+ font-family: FZSongKeBenXiuKaiS-R-GB;
+ line-height: 31.88rpx;
+ color: #818181;
+}
+.text_3.data-v-ca17cad5 {
+ margin-top: 21.26rpx;
+}
+.pos_2.data-v-ca17cad5 {
+ position: absolute;
+ left: 0;
+ bottom: 0;
+}
+.pos.data-v-ca17cad5 {
+ position: absolute;
+ right: 0;
+ bottom: 28.03rpx;
+}
+.image_2.data-v-ca17cad5 {
+ margin-right: 20.63rpx;
+ margin-top: 5.63rpx;
+ width: 37.5rpx;
+ height: 37.5rpx;
+}
+.section_2.data-v-ca17cad5 {
+ padding: 30.53rpx 21.86rpx 30.36rpx;
+ background-color: #ffffff;
+ border-radius: 28.13rpx;
+}
+.text_4.data-v-ca17cad5 {
+ color: #000000;
+ line-height: 36.62rpx;
+}
+.text_5.data-v-ca17cad5 {
+ margin-right: 16.14rpx;
+ line-height: 25.43rpx;
+}
+.group_4.data-v-ca17cad5 {
+ padding: 0 20.63rpx 35.63rpx;
+}
+.group_5.data-v-ca17cad5 {
+ padding: 31.76rpx 7.5rpx 0;
+ border-top: solid 1.88rpx #d9d9d9;
+}
+.font_3.data-v-ca17cad5 {
+ font-size: 30rpx;
+ font-family: FZSongKeBenXiuKaiS-R-GB;
+ line-height: 27.07rpx;
+ color: #000000;
+}
+.text_6.data-v-ca17cad5 {
+ line-height: 28.01rpx;
+}
+.view.data-v-ca17cad5 {
+ margin-right: 7.5rpx;
+ padding: 35.98rpx 0 35.87rpx 20rpx;
+ background-color: #faddde;
+ border-radius: 18.75rpx;
+}
+.group_10.data-v-ca17cad5 {
+ margin-right: 14.83rpx;
+}
+.font_4.data-v-ca17cad5 {
+ font-size: 30rpx;
+ font-family: FZSongKeBenXiuKaiS-R-GB;
+ line-height: 27.07rpx;
+ color: #c35c5d;
+}
+.text_7.data-v-ca17cad5 {
+ margin-right: 20rpx;
+ line-height: 27.3rpx;
+}
+.grid.data-v-ca17cad5 {
+ margin-top: 75rpx;
+ width: 605.63rpx;
+ height: 228.75rpx;
+}
+.grid-item.data-v-ca17cad5 {
+ background-color: #fbdedf;
+ border-radius: 18.75rpx;
+ background-image: url("https://ide.code.fun/api/image?token=67582be6797f850011f1edb7&name=5f9759dd4fc5b6049913f513ad7248f2.png");
+ background-size: 100% 100%;
+ background-repeat: no-repeat;
+ width: 253.13rpx;
+}
+.pos_1.data-v-ca17cad5 {
+ position: absolute;
+ left: 3.75rpx;
+ top: 0;
+}
+.section_4.data-v-ca17cad5 {
+ background-image: url("https://ide.code.fun/api/image?token=67582be6797f850011f1edb7&name=5f9759dd4fc5b6049913f513ad7248f2.png");
+ background-size: 100% 100%;
+ background-repeat: no-repeat;
+ height: 90rpx;
+}
+.font_5.data-v-ca17cad5 {
+ font-size: 30rpx;
+ font-family: FZSongKeBenXiuKaiS-R-GB;
+ line-height: 20.04rpx;
+ color: #000000;
+}
+.text_11.data-v-ca17cad5 {
+ width: 150rpx;
+}
+.pos_3.data-v-ca17cad5 {
+ position: absolute;
+ left: 50%;
+ top: 16.99rpx;
+ transform: translateX(-50%);
+}
+.pos_5.data-v-ca17cad5 {
+ position: absolute;
+ left: 74.53rpx;
+ bottom: 12.06rpx;
+}
+.grid-item_2.data-v-ca17cad5 {
+ background-color: #ffffff;
+ border-radius: 18.75rpx;
+ background-image: url("https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FVQSWQJrq-selectbox.png");
+ background-size: 100% 100%;
+ background-repeat: no-repeat;
+ width: 253.13rpx;
+}
+.pos_14.data-v-ca17cad5 {
+ position: absolute;
+ right: 0;
+ top: 0;
+}
+.pos_4.data-v-ca17cad5 {
+ position: absolute;
+ right: 42.83rpx;
+ top: 20.74rpx;
+}
+.pos_6.data-v-ca17cad5 {
+ position: absolute;
+ left: 50%;
+ bottom: 13.93rpx;
+ transform: translateX(-50%);
+}
+.grid-item_3.data-v-ca17cad5 {
+ padding: 54.62rpx 0 8.31rpx;
+ background-color: #ffffff;
+ border-radius: 18.75rpx;
+ width: 253.13rpx;
+}
+.pos_15.data-v-ca17cad5 {
+ position: absolute;
+ left: 0;
+ top: 138.75rpx;
+}
+.text-wrapper.data-v-ca17cad5 {
+ padding: 22.61rpx 0 47.34rpx;
+ background-image: url("https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FVQSWQJrq-selectbox.png");
+ background-size: 100% 100%;
+ background-repeat: no-repeat;
+ width: 256.88rpx;
+}
+.pos_7.data-v-ca17cad5 {
+ position: absolute;
+ left: 3.75rpx;
+ right: -7.5rpx;
+ top: 0;
+}
+.pos_11.data-v-ca17cad5 {
+ position: absolute;
+ right: 0;
+ top: 138.75rpx;
+}
+.pos_8.data-v-ca17cad5 {
+ position: absolute;
+ right: 39.67rpx;
+ top: 18.86rpx;
+}
+.pos_9.data-v-ca17cad5 {
+ position: absolute;
+ left: 50%;
+ bottom: 8.31rpx;
+ transform: translateX(-50%);
+}
+.group_6.data-v-ca17cad5 {
+ margin-top: 97.5rpx;
+ padding-bottom: 9.38rpx;
+ border-bottom: solid 1.88rpx #d9d9d9;
+}
+.section_5.data-v-ca17cad5 {
+ margin-left: 22.5rpx;
+ margin-right: 11.27rpx;
+ padding: 12.66rpx 14.42rpx 27.9rpx;
+ background-color: #ffffff;
+}
+.text_12.data-v-ca17cad5 {
+ line-height: 28.01rpx;
+}
+.group_7.data-v-ca17cad5 {
+ margin-right: 13.74rpx;
+}
+.section_6.data-v-ca17cad5 {
+ margin: 43.13rpx 46.88rpx 0 41.25rpx;
+ padding: 25.28rpx 6.62rpx 38.19rpx 12.13rpx;
+ background-color: #fff2f2f5;
+ border-radius: 18.75rpx;
+}
+.section_7.data-v-ca17cad5 {
+ position: fixed;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ margin-left: 7.5rpx;
+ margin-right: 5.63rpx;
+ padding: 16.88rpx 0;
+ background-color: #ffffff;
+}
+.section_8.data-v-ca17cad5 {
+ padding: 26.14rpx 0 25.07rpx;
+ background-color: #fbdedf;
+ border-radius: 46.88rpx;
+ width: 618.75rpx;
+}
+.text_13.data-v-ca17cad5 {
+ margin-left: 240.94rpx;
+ line-height: 27.54rpx;
+}
+.text_14.data-v-ca17cad5 {
+ line-height: 27.54rpx;
+}
\ No newline at end of file