1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
| "use strict";
| const common_vendor = require("../../common/vendor.js");
| const _sfc_main = {
| data() {
| return {
| title: "Hello"
| };
| },
| onShareAppMessage: function() {
| return {
| title: "淘券获取",
| path: "/pages/index/index"
| // promise
| };
| },
| onShareTimeline() {
| return {
| title: "淘券获取",
| query: "/pages/index/index"
| };
| },
| onTabItemTap() {
| common_vendor.index.navigateToMiniProgram({
| appId: "wx47cef388625e8b93",
| // path: 'pages/index/index?id=123', // 不填默认首页
| extraData: {
| "data1": "test"
| },
| success(res) {
| }
| });
| },
| onLoad() {
| },
| methods: {}
| };
| function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
| return {};
| }
| const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__file", "D:/项目/Yfcodes/crm_app_new/pages/mine/index.vue"]]);
| _sfc_main.__runtimeHooks = 6;
| wx.createPage(MiniProgramPage);
|
|