26 lines
789 B
JavaScript
26 lines
789 B
JavaScript
"use strict";
|
|
const common_vendor = require("../../common/vendor.js");
|
|
const _sfc_main = {
|
|
__name: "special",
|
|
setup(__props) {
|
|
const phonenumber = common_vendor.ref("");
|
|
const jumpto = () => {
|
|
common_vendor.index.redirectTo({
|
|
url: `/pages/login/threeselectone`
|
|
});
|
|
};
|
|
common_vendor.onLoad(() => {
|
|
phonenumber.value = common_vendor.index.getStorageSync("tel");
|
|
});
|
|
return (_ctx, _cache) => {
|
|
return {
|
|
a: common_vendor.t(phonenumber.value),
|
|
b: common_vendor.o(jumpto)
|
|
};
|
|
};
|
|
}
|
|
};
|
|
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-aaa5af2f"]]);
|
|
wx.createPage(MiniProgramPage);
|
|
//# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/login/special.js.map
|