12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- const _Http = getApp().globalData.http;
- Component({
- options: {
- addGlobalClass: true
- },
- properties: {
- },
- data: {
- sys_enterpriseid: 0,
- content: {
- "nacache": true,
- "pageNumber": 1,
- "pageSize": 10,
- "pageTotal": 1,
- "total": null,
- "where": {
- "condition": ""
- }
- },
- list: []
- },
- methods: {
- changeTotal() {
- this.setData({
- "content.total": this.data.content.total - 1
- })
- },
- getList(id, init) {
- let content = this.data.content;
- console.log(id)
- content.sys_enterpriseid = id;
- if (init) {
- content.pageNumber = 1
- content.pageTotal = 1
- }
- _Http.basic({
- "id": "20221013160602",
- content
- }).then(res => {
- console.log("客户财务信息", res)
- if (res.msg != '成功') return wx.showToast({
- title: res.data,
- icon: "none"
- })
- this.setData({
- list: res.pageNumber == 1 ? res.data : this.data.list.concat(res.data),
- "content.pageNumber": res.pageNumber + 1,
- "content.pageSize": res.pageSize,
- "content.pageTotal": res.pageTotal,
- "content.total": res.total,
- sys_enterpriseid: id
- })
- setTimeout(() => {
- this.selectComponent("#List").queryDefault()
- }, 300)
- })
- },
- toSearch() {
- wx.navigateTo({
- url: '/packageA/setclient/modules/financing/search/index?perams=' + JSON.stringify({
- sys_enterpriseid: this.data.sys_enterpriseid,
- "nacache": true,
- "pageNumber": 1,
- "pageSize": 20,
- "pageTotal": 1,
- "total": 0,
- "where": {
- "condition": ""
- }
- }),
- })
- }
- }
- })
|