2024-10-18 14:49:08 +00:00
|
|
|
"use strict";
|
|
|
|
const common_vendor = require("../../common/vendor.js");
|
2024-11-05 06:39:58 +00:00
|
|
|
const api_request = require("../../api/request.js");
|
2024-10-18 14:49:08 +00:00
|
|
|
const _sfc_main = {
|
|
|
|
__name: "home",
|
|
|
|
setup(__props) {
|
2024-11-05 06:39:58 +00:00
|
|
|
common_vendor.onShow(() => {
|
|
|
|
common_vendor.index.removeStorageSync("businessId");
|
|
|
|
getMyUser();
|
|
|
|
});
|
2025-01-02 03:18:59 +00:00
|
|
|
common_vendor.onLoad(() => {
|
|
|
|
getFonts();
|
|
|
|
});
|
2024-11-05 06:39:58 +00:00
|
|
|
const getMyUser = async () => {
|
|
|
|
const res = await common_vendor.index.request({
|
|
|
|
url: api_request.baseUrl + "/user/get/login",
|
|
|
|
method: "GET",
|
|
|
|
header: {
|
|
|
|
// 读取JSESSIONID
|
|
|
|
"cookie": common_vendor.wx$1.getStorageSync("cookie")
|
|
|
|
}
|
|
|
|
});
|
2025-01-02 03:18:59 +00:00
|
|
|
console.log("获取用户信息==>", res.data);
|
2024-11-05 06:39:58 +00:00
|
|
|
if (res.data.code === 40100) {
|
|
|
|
common_vendor.index.navigateTo({
|
|
|
|
url: "/pages/login/login"
|
|
|
|
});
|
|
|
|
common_vendor.index.showToast({
|
|
|
|
icon: "loading",
|
|
|
|
title: "请登录"
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
2025-01-02 03:18:59 +00:00
|
|
|
const jump_xiezhen = () => {
|
2024-10-18 16:55:25 +00:00
|
|
|
common_vendor.index.navigateTo({
|
2025-01-02 03:18:59 +00:00
|
|
|
url: "../../pages/booking/respectable/respectable"
|
2024-10-18 16:55:25 +00:00
|
|
|
});
|
|
|
|
};
|
2025-01-02 03:18:59 +00:00
|
|
|
const jump_feiyi = () => {
|
2024-10-20 05:16:38 +00:00
|
|
|
common_vendor.index.navigateTo({
|
2025-01-02 03:18:59 +00:00
|
|
|
url: "/pages/workshop/index/index"
|
|
|
|
});
|
|
|
|
};
|
|
|
|
const jump_store = () => {
|
|
|
|
common_vendor.index.switchTab({
|
2025-02-18 06:46:34 +00:00
|
|
|
url: "/pages/store-home/main/testMain"
|
2025-01-02 03:18:59 +00:00
|
|
|
});
|
|
|
|
};
|
|
|
|
const getFonts = () => {
|
|
|
|
common_vendor.index.loadFontFace({
|
|
|
|
family: "ZhongShanFonts",
|
|
|
|
source: `url("https://carbon2.obs.cn-north-4.myhuaweicloud.com/fonts/ZhongShanFonts.ttf")`,
|
|
|
|
success: (res) => {
|
|
|
|
console.log("success", res);
|
|
|
|
},
|
|
|
|
fail: (err) => {
|
|
|
|
console.log("err", err);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
const showStop = () => {
|
|
|
|
common_vendor.index.showModal({
|
|
|
|
title: "提示",
|
|
|
|
content: "正在开发中!"
|
2024-10-20 05:16:38 +00:00
|
|
|
});
|
|
|
|
};
|
2024-10-18 14:49:08 +00:00
|
|
|
return (_ctx, _cache) => {
|
|
|
|
return {
|
2025-01-02 03:18:59 +00:00
|
|
|
a: common_vendor.o(jump_xiezhen),
|
2024-12-02 02:25:04 +00:00
|
|
|
b: common_vendor.o(jump_feiyi),
|
2025-01-02 03:18:59 +00:00
|
|
|
c: common_vendor.o(jump_store),
|
|
|
|
d: common_vendor.o(showStop)
|
2024-10-18 14:49:08 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|
|
|
|
};
|
2025-01-02 03:18:59 +00:00
|
|
|
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-07e72d3c"], ["__file", "D:/微信小程序/课设整合/匠承非遗小程序端/jiangchengfeiyi-xiaochengxu/pages/home/home.vue"]]);
|
2024-10-18 14:49:08 +00:00
|
|
|
wx.createPage(MiniProgramPage);
|