12345678910111213141516171819202122232425262728293031 |
- "use strict";
- var common_vendor = require("../common/vendor.js");
- const _sfc_main = {
- data() {
- return {
- tel: void 0,
- version: "1.0"
- };
- },
- onLoad() {
- const accountInfo = wx.getAccountInfoSync();
- this.version = accountInfo.miniProgram.version;
- },
- methods: {
- callPhone() {
- common_vendor.index.makePhoneCall({
- phoneNumber: "4000717770"
- });
- },
- submit() {
- }
- }
- };
- function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
- return {
- a: common_vendor.o(($event) => $options.callPhone()),
- b: common_vendor.t($data.version)
- };
- }
- var MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-a0a52d9c"], ["__file", "E:/Project/2023/\u95EE\u8BCA\u5E73\u53F0/his_user_miniapp/pages_user/about.vue"]]);
- wx.createPage(MiniProgramPage);
|