This commit is contained in:
mx 2024-09-13 10:06:26 +08:00
parent 3d4fadf43a
commit 8362ea89fd
6 changed files with 24 additions and 5 deletions

View File

@ -126,10 +126,10 @@
onLoad: function(options) { onLoad: function(options) {
this.queryParams.id = options.id; this.queryParams.id = options.id;
this.getInfo(); this.getInfo();
}, },
methods: { methods: {
getInfo() { getInfo() {
var that = this; var that = this;
getFxDetails(this.queryParams).then(response => { getFxDetails(this.queryParams).then(response => {

View File

@ -150,7 +150,7 @@
statusBarHeight: 0, statusBarHeight: 0,
queryParams: { queryParams: {
pageNum: 1, pageNum: 1,
pageSize: 3, pageSize: 10,
dateStatus: 0, dateStatus: 0,
taskName: null, taskName: null,
taskDate: null, taskDate: null,
@ -197,6 +197,9 @@
this.getList(); this.getList();
}, },
methods:{ methods:{
reload(){
this.refresh();
},
openSelect(){ openSelect(){
// refuni-popup , type ['top','left','bottom','right','center'] // refuni-popup , type ['top','left','bottom','right','center']
this.$refs.popup.open('bottom') this.$refs.popup.open('bottom')

View File

@ -112,9 +112,19 @@
onLoad: function(options) { onLoad: function(options) {
this.queryParams.id = options.id; this.queryParams.id = options.id;
this.getInfo(); this.getInfo();
}, },
onUnload: function() {
// console.log('');
var pages = getCurrentPages();
// console.log(pages.length);
var Page = pages[pages.length-1];//
// console.log(pages[pages.length-1].route);//
var prevPage = pages[pages.length-2];
// console.log(pages[pages.length-2].route);//
if(pages[pages.length-2].route == 'pages/index'){ //
prevPage.$vm.reload()
}
},
methods:{ methods:{
getInfo() { getInfo() {
var that = this; var that = this;

View File

@ -910,7 +910,13 @@
height: 35rpx; height: 35rpx;
} }
.status2{ .status2{
background-image: url("/static/images/fundrecord/wf.png"); background-image: url("/static/images/fundrecord/paystatus-2.png");
background-size: 100% 100%;
width: 100rpx;
height: 35rpx;
}
.status3{
background-image: url("/static/images/fundrecord/paystatus-3.png");
background-size: 100% 100%; background-size: 100% 100%;
width: 100rpx; width: 100rpx;
height: 35rpx; height: 35rpx;

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 940 B