9.29
This commit is contained in:
parent
2176938b4e
commit
8f34536411
@ -85,6 +85,8 @@ public class MtStore extends BaseEntity implements Serializable {
|
|||||||
|
|
||||||
@ApiModelProperty("门头照")
|
@ApiModelProperty("门头照")
|
||||||
private String doorstepPhoto;
|
private String doorstepPhoto;
|
||||||
|
@ApiModelProperty("退款密码")
|
||||||
|
private String refPass;
|
||||||
@ApiModelProperty("服务到期时间")
|
@ApiModelProperty("服务到期时间")
|
||||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
|
||||||
private Date expirationTime;
|
private Date expirationTime;
|
||||||
|
@ -4,6 +4,7 @@ import com.baomidou.mybatisplus.annotation.IdType;
|
|||||||
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
||||||
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
||||||
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
||||||
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||||
import com.fuint.business.petrolStationManagement.vo.OilNumberNameVo;
|
import com.fuint.business.petrolStationManagement.vo.OilNumberNameVo;
|
||||||
import com.fuint.repository.model.base.BaseEntity;
|
import com.fuint.repository.model.base.BaseEntity;
|
||||||
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModel;
|
||||||
@ -13,6 +14,7 @@ import lombok.Setter;
|
|||||||
|
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
import java.math.BigDecimal;
|
import java.math.BigDecimal;
|
||||||
|
import java.util.Date;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -89,6 +91,9 @@ public class LJStore extends BaseEntity implements Serializable {
|
|||||||
private String ifDelete;
|
private String ifDelete;
|
||||||
private String refPass;
|
private String refPass;
|
||||||
|
|
||||||
|
@ApiModelProperty("服务到期时间")
|
||||||
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
|
||||||
|
private Date expirationTime;
|
||||||
@TableField(exist = false)
|
@TableField(exist = false)
|
||||||
private List<String> welfareList;
|
private List<String> welfareList;
|
||||||
|
|
||||||
|
@ -28,6 +28,10 @@ public class SysNotificationlog extends BaseEntity {
|
|||||||
*/
|
*/
|
||||||
private Integer notifyId;
|
private Integer notifyId;
|
||||||
private Long deptId;
|
private Long deptId;
|
||||||
|
/**
|
||||||
|
* 店铺id
|
||||||
|
*/
|
||||||
|
private Integer storeId;
|
||||||
/**
|
/**
|
||||||
* 接收者,字符长度最多255,不能为空
|
* 接收者,字符长度最多255,不能为空
|
||||||
*/
|
*/
|
||||||
|
@ -78,6 +78,10 @@ public class TAccount extends BaseEntity implements Serializable {
|
|||||||
@TableField(exist = false)
|
@TableField(exist = false)
|
||||||
private String deptType;
|
private String deptType;
|
||||||
// @TableField(exist = false)
|
// @TableField(exist = false)
|
||||||
|
/**
|
||||||
|
* 0未删除 1 删除
|
||||||
|
*/
|
||||||
|
private String ifDelete;
|
||||||
private String mobile;
|
private String mobile;
|
||||||
|
|
||||||
@TableField(exist = false)
|
@TableField(exist = false)
|
||||||
|
@ -100,63 +100,40 @@
|
|||||||
code: 'https://qm.qq.com/cgi-bin/qm/qr?k=LKqML292dD2WvwQfAJXBUmvgbiB_TZWF&noverify=0', // 生成二维码的值
|
code: 'https://qm.qq.com/cgi-bin/qm/qr?k=LKqML292dD2WvwQfAJXBUmvgbiB_TZWF&noverify=0', // 生成二维码的值
|
||||||
size: 300, // 460代表生成的二维码的宽高均为460rpx
|
size: 300, // 460代表生成的二维码的宽高均为460rpx
|
||||||
},
|
},
|
||||||
|
orderId:'',
|
||||||
}
|
}
|
||||||
},
|
|
||||||
onLoad() {
|
|
||||||
|
|
||||||
},
|
},
|
||||||
onPullDownRefresh() {
|
onPullDownRefresh() {
|
||||||
//下拉刷新
|
//下拉刷新
|
||||||
this.resetting() //重置方法
|
|
||||||
this.getList() //调用请求
|
|
||||||
uni.stopPullDownRefresh()
|
uni.stopPullDownRefresh()
|
||||||
},
|
},
|
||||||
onReachBottom() {
|
onReachBottom() {
|
||||||
// 触底加载
|
// 触底加载
|
||||||
if (this.pageNo >= this.totalPage) {
|
if (this.pageNo >= this.totalPage) {
|
||||||
uni.showToast({
|
|
||||||
title: '没有下一页数据',
|
|
||||||
icon: 'none'
|
|
||||||
})
|
|
||||||
} else {
|
} else {
|
||||||
this.pageNo++
|
this.pageNo++
|
||||||
this.getList()
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
onLoad(e) {
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
components: {
|
components: {
|
||||||
|
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
//滞空方法
|
getInfo(){
|
||||||
resetting() {
|
request({
|
||||||
this.pageNo = 1
|
url: 'business/integral/integralOrders/queryByPageUni',
|
||||||
this.pageSize = 10
|
|
||||||
this.totalPage = ''
|
|
||||||
this.List = []
|
|
||||||
},
|
|
||||||
// 分页——网络请求
|
|
||||||
async getList() {
|
|
||||||
uni.showLoading({
|
|
||||||
title: '加载中'
|
|
||||||
});
|
|
||||||
let res = await request({
|
|
||||||
url: '网络请求',
|
|
||||||
method: 'get',
|
method: 'get',
|
||||||
data: {
|
params: this.query
|
||||||
pageNo: this.pageNo,
|
|
||||||
pageSize: this.pageSize,
|
}).then((res) => {
|
||||||
|
if (res.code == 200) {
|
||||||
|
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
if (res.code == 200) {
|
|
||||||
uni.hideLoading(); //交互反馈
|
|
||||||
if (this.pageNo != 1) {
|
|
||||||
this.List = this.ruleList.concat(res.result.records)
|
|
||||||
} else {
|
|
||||||
this.List = res.result.records
|
|
||||||
}
|
|
||||||
this.totalPage = res.result.pages
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
goback() {
|
goback() {
|
||||||
uni.navigateBack()
|
uni.navigateBack()
|
||||||
|
Loading…
Reference in New Issue
Block a user