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
| "use strict";
| const common_vendor = require("../../common/vendor.js");
| if (!Array) {
| const _easycom_navbar2 = common_vendor.resolveComponent("navbar");
| _easycom_navbar2();
| }
| const _easycom_navbar = () => "../../components/navbar/navbar.js";
| if (!Math) {
| _easycom_navbar();
| }
| const _sfc_main = {
| __name: "index",
| setup(__props) {
| function navBackTo() {
| common_vendor.index.navigateBack();
| }
| const banlanceList = common_vendor.ref([1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]);
| return (_ctx, _cache) => {
| return {
| a: common_vendor.o(($event) => navBackTo()),
| b: common_vendor.p({
| title: "余额记录"
| }),
| c: common_vendor.f(banlanceList.value, (item, index, i0) => {
| return {};
| })
| };
| };
| }
| };
| wx.createPage(_sfc_main);
|
|