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
| "use strict";
| const common_vendor = require("../../common/vendor.js");
| const _sfc_main = {
| data() {
| return {
| webviewStyles: {
| progress: {
| color: "#FF3333"
| }
| },
| srcUrl: ""
| };
| },
| onLoad(opt) {
| this.srcUrl = decodeURIComponent(opt.url);
| }
| };
| function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
| return {
| a: $data.webviewStyles,
| b: $data.srcUrl
| };
| }
| const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__file", "D:/项目/Yfcodes/crm_app_new/pages/webShow/index.vue"]]);
| wx.createPage(MiniProgramPage);
|
|