123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- const _Http = getApp().globalData.http;
- let pageNumber = 1,
- pageTotal = 1,
- currency = require("../../utils/currency"),
- CNY = value => currency(value, {
- symbol: "¥",
- precision: 2
- }).format();
- import {
- formatTime
- } from "../../utils/getTime";
- Page({
- data: {
- accountList: [],
- active: 0,
- dateEnd: "",
- begindate: "",
- enddate: "",
- },
- onLoad(options) {
- this.setData({
- dateEnd: formatTime(new Date(), '-').split(" ")[0]
- });
- _Http.basic({
- id: 20221008145903,
- "content": {
- pageSize: 999,
- type: 1,
- "where": {
- "condition": ""
- }
- }
- }).then(res => {
- this.setData({
- accountList: res.data.map(v => {
- v.creditquota = CNY(v.creditquota);
- v.usable = CNY(currency(v.creditquota).add(v.balance));
- v.balance = CNY(v.balance)
- return v
- })
- });
- this.getList(true);
- })
- },
-
- changeAccount(e) {
- this.setData({
- active: e.detail.value || e.detail.current
- });
- this.getList(true);
- },
-
- changeDate(e) {
- this.setData({
- [`${e.currentTarget.dataset.name}`]: e.detail.value
- })
- this.getList(true);
- },
- getList(init = false) {
- if (init) {
- pageNumber = 1;
- pageTotal = 1
- }
- if (pageNumber > pageTotal) return;
- let data = this.data.accountList[this.data.active];
- _Http.basic({
- "id": "20230111103403",
- "version": 1,
- "content": {
- pageNumber,
- "sys_enterpriseid": data.sys_enterpriseid,
- "sa_accountclassid": data.sa_accountclassid,
- "where": {
- begindate: this.data.begindate,
- enddate: this.data.enddate
- }
- }
- }).then(res => {
- console.log("账户流水", res)
- if (res.msg == '成功') {
- let expend = 0,
- earning = 0;
- if (res.data.length) {
- let expendObj = res.data[0].total.find(v => v.type == 1);
- if (expendObj) expend = CNY(expendObj.sumamount);
- let earningObj = res.data[0].total.find(v => v.type == 0);
- if (earningObj) earning = CNY(earningObj.sumamount);
- }
- res.data = res.data.map(v => {
- v.amount = CNY(v.amount)
- v.showBalance = CNY(v.balance)
- return v
- })
- pageNumber += 1;
- pageTotal = res.pageTotal;
- this.setData({
- recordList: res.pageNumber == 1 ? res.data : this.data.recordList.concat(res.data),
- expend,
- earning
- });
- }
- })
- },
- onReachBottom() {
- this.getList();
- }
- })
|