diff --git a/page_fenbao/statulist/myshop/index.vue b/page_fenbao/statulist/myshop/index.vue
index 1f890d9..f08df22 100644
--- a/page_fenbao/statulist/myshop/index.vue
+++ b/page_fenbao/statulist/myshop/index.vue
@@ -93,6 +93,7 @@
}
},
onShow() {
+ this.pagenum = 1
this.wateringList = []
this.getlist()
},
diff --git a/page_user/order_detail.vue b/page_user/order_detail.vue
index 487d840..6284bec 100644
--- a/page_user/order_detail.vue
+++ b/page_user/order_detail.vue
@@ -24,10 +24,11 @@
支付中
- {{list.suitTime}} 分钟
+
+ {{list.money}}
- 充值金额{{list.money}}
+ 充值金额
提现金额{{list.money}}
diff --git a/page_user/shouzhi.vue b/page_user/shouzhi.vue
index 42d5d5e..7c22bfc 100644
--- a/page_user/shouzhi.vue
+++ b/page_user/shouzhi.vue
@@ -13,7 +13,8 @@
- {{item.suitTime}}日 时 分钟 秒
+
¥{{item.money}}
diff --git a/page_user/switchs.vue b/page_user/switchs.vue
index 9747b13..6237b01 100644
--- a/page_user/switchs.vue
+++ b/page_user/switchs.vue
@@ -7,19 +7,64 @@
时间范围
- -
- ×
+ {{endtime}} - {{lasttime}}
+ ×
-
- 搜索
+
+ 搜索
-
-
-
+
+
+
+
+
+ 订单编号:{{item.billNo == null ? '--' : item.billNo}}
+
+
+ 未支付
+ 支付成功
+ 已退款
+ 用户取消
+ 系统超时取消
+ 未支付
+ 退款中
+
+
+
+
+
+ 用户手机:{{item.userName == null ? '--' : item.userName}}
+
+
+ 订单费用:{{item.money == null ? '--' : item.money}}元
+
+
+
+
+ 设备编码:{{item.deviceNo == null ? '--' : item.deviceNo}}
+
+
+ 设备名称:{{item.deviceName == null ? '--' : item.deviceName}}
+
+
+
+
+ 开始时间:{{item.suitStartTime == null ? '--' : item.suitStartTime}}
+
+
+ 有无售后 :{{item.status == 3 || item.status == 7 ? '有' : '无'}}
+
+
+
+
+ -没有更多订单记录-
+
+
+
@@ -32,17 +77,46 @@
backgroundColor: "#8883F0",
},
list: [{
- name: '待收货'
+ name: '全部'
}, {
- name: '待付款'
+ name: '未支付'
}, {
- name: '待评价',
+ name: '已支付',
+ }, {
+ name: '已完成',
+ }, {
+ name: '已售后',
}],
- current: 0
+ current: 0,
+ pagenum: 1,
+ wateringList: [],
+ pagesize: 10, // 一页多少数据
+ isLoading: false, // 是否正在加载数据
+ noMoreData: false, // 是否没有更多数据
+ total: 0,
+ showflag: false,
+ jlflag:false,
+ statusList:'',
+ type:'',
+ endtime:'',
+ lasttime:'',
+ params: {
+ year: true,
+ month: true,
+ day: true,
+ hour: false,
+ minute: false,
+ second: false
+ },
+ show: false,
+ num:''
}
},
onLoad() {
-
+
+ },
+ onShow() {
+ this.getList()
},
// 分享到好友(会话)
onShareAppMessage: function() {
@@ -61,10 +135,141 @@
}
},
methods: {
+ btnks(num) {
+ this.show = true
+ if (num == 1) {
+ this.num = 1
+ } else {
+ this.num = 2
+ }
+ },
+ btnqc(){
+ this.endtime = ''
+ this.lasttime = ''
+ this.wateringList = []
+ this.pagenum = 1
+ this.statusList = ''
+ this.getList()
+ },
+ confirm(e) {
+ if (this.num == 1) {
+ this.endtime = e.year + '-' + e.month + '-' + e.day
+ if(this.lasttime != ''){
+ this.wateringList = []
+ this.pagenum = 1
+ this.statusList = ''
+ this.getList()
+ }
+ } else {
+ this.lasttime = e.year + '-' + e.month + '-' + e.day
+ if(this.endtime != ''){
+ this.wateringList = []
+ this.pagenum = 1
+ this.statusList = ''
+ this.getList()
+ }
+ }
+ },
+ btnxq(billId){
+ uni.navigateTo({
+ url:'/page_user/mapditu/orderxq?billId=' + billId
+ })
+ },
+
change(index) {
+ this.jlflag = false
this.current = index;
+ if(index == 0){
+ this.wateringList = []
+ this.pagenum = 1
+ this.statusList = ''
+ this.getList()
+ }else if(index == 1){
+ this.wateringList = []
+ this.pagenum = 1
+ this.statusList = 1
+ this.getList()
+ }else if(index == 2){
+ this.wateringList = []
+ this.pagenum = 1
+ this.statusList = 2
+ this.getList()
+ }else if(index == 3){
+ this.wateringList = []
+ this.pagenum = 1
+ this.statusList = '2,3,7'
+ this.getList()
+ }else if(index == 4){
+ this.wateringList = []
+ this.pagenum = 1
+ this.statusList = '3,7'
+ this.getList()
+ }
+ },
+ btnsear(){
+ this.wateringList = []
+ this.pagenum = 1
+ this.statusList = ''
+ this.getList()
+ },
+
+ getList(){
+ this.$u.get(`/app/bill/incomeList?pageNum=${this.pagenum}&pageSize=${this.pagesize}&statusList=${this.statusList}&keyword=${this.type}&startDate=${this.endtime}&endDate=${this.lasttime}`).then((res) => {
+ if (res.code == 200) {
+ this.total = res.total
+ if (res.rows.length > 0) {
+ // 有数据,追加到列表
+ this.wateringList = this.wateringList.concat(res.rows)
+ this.pagenum++
+ } else {
+ // 没有更多数据
+ this.noMoreData = true;
+ setTimeout(()=>{
+ this.jlflag = true
+ })
+ }
+ this.isLoading = false;
+ }
+ });
+ },
+
+ onReachBottom() {
+ let sum = this.total / this.pagesize
+ if (this.pagenum-1 < sum) {
+ this.getList(); // 上拉加载更多
+ } else {
+ this.jlflag = true
+ // uni.showToast({
+ // title: '没有更多记录了',
+ // icon: 'none',
+ // duration: 1000
+ // })
+ }
+ },
+ // 点击查询详情
+ btndetail(id){
+ uni.navigateTo({
+ url:'/page_user/order_detail?id=' + id
+ })
}
- }
+
+ },
+ // 分享到好友(会话)
+ onShareAppMessage: function () {
+ return {
+ title: '创想物联',
+ path: '/pages/shouye/index'
+ }
+ },
+
+ // 分享到朋友圈
+ onShareTimeline: function () {
+ return {
+ title: '创想物联',
+ query: '',
+ path: '/pages/shouye/index'
+ }
+ },
}
@@ -76,7 +281,39 @@
/deep/ .u-icon__icon {
padding-bottom: 22rpx;
}
-
+ .orderlist{
+ width: 100%;
+ height: 100%;
+ overflow: scroll;
+ .otderlist_item{
+ margin-top: 30rpx;
+ background-color: #fff;
+ height: 230rpx;
+ .order_top{
+ color: #000;
+ font-size: 28rpx;
+ display: flex;
+ justify-content: space-between;
+ border-bottom: 1px solid #ccc;
+ padding: 0 30rpx;
+ box-sizing: border-box;
+ height: 80rpx;
+ line-height: 80rpx;
+ }
+ .order_fu{
+ display: flex;
+ color: #ccc;
+ font-size: 26rpx;
+ padding: 20rpx 30rpx;
+ box-sizing: border-box;
+ height: 40rpx;
+ line-height: 40rpx;
+ .name{
+ width: 440rpx;
+ }
+ }
+ }
+ }
.serch {
display: flex;
justify-content: space-between;
@@ -91,7 +328,7 @@
width: 100%;
height: 60rpx;
line-height: 60rpx;
- padding-left: 50rpx;
+ padding-left: 30rpx;
border: 1px solid #ccc;
border-radius: 10rpx;
}
@@ -150,6 +387,9 @@
page {
background-color: #F7FAFE !important;
+ // position: fixed;
+ // top: 0;
+ // left: 0;
}
.pages {
diff --git a/page_user/yetx.vue b/page_user/yetx.vue
index b6e03c8..11f3eaa 100644
--- a/page_user/yetx.vue
+++ b/page_user/yetx.vue
@@ -1,14 +1,14 @@
-
账户余额(元)
- {{userinfo.balance}}
+ {{userinfo.balance == undefined ? '' : userinfo.balance}}
- 累计提现:{{userinfo.withDrawlAmount}}
+ 累计提现:{{userinfo.withDrawlAmount == undefined ? '' : userinfo.withDrawlAmount}}
@@ -50,6 +50,18 @@
+
+
+
+
+
+ 银行卡提现
+
+
+
+
+
+
-
+
@@ -211,7 +210,7 @@
storeId: '',
pagenum: 1,
wateringList: [],
- pagesize: 10,
+ pagesize: 20,
isLoading: false,
noMoreData: false,
total: 0,
@@ -302,11 +301,16 @@
// console.log("右滑")
}
} else if (Math.abs(deltaY) > 50 && Math.abs(deltaX) < Math.abs(deltaY)) {
- if (deltaY < 0) {
+ if (deltaY < 100) {
// console.log("上滑")
+ let sum = this.total / this.pagesize
+ // console.log(this.wateringList.length,this.total);
+ if (this.wateringList.length < this.total) {
+ this.getlist()
+ }
} else {
console.log(deltaY)
- if(deltaY > 300){
+ if (deltaY > 250) {
this.shuaxin = true
this.pagenum = 1
setTimeout(() => {
@@ -357,7 +361,7 @@
if (res.code == 200) {
that.$u.get(
`/app/device/${id}/bySn`
- ).then((res) => {
+ ).then((res) => {
if (res.code ==
200) {
uni.navigateTo({
@@ -430,9 +434,9 @@
storeId: e[0].value
}
this.putdevice(data)
- setTimeout(() => {
- this.getlist()
- }, 1000)
+ // setTimeout(() => {
+ // this.getlist()
+ // }, 1000)
},
putdevice(data) {
this.$u.put('/app/device', data).then((res) => {
@@ -440,7 +444,7 @@
this.getlist()
uni.showToast({
title: '修改成功',
- icon: 'none',
+ icon: 'success',
duration: 2000
});
@@ -530,7 +534,7 @@
this.groupList = res.data.filter(item => {
return item.name === '全部'
})
- this.titlist = this.groupList[0].name
+ // console.log(this.groupLists);
this.storeId = this.groupList[0].storeId
this.getlist()
}
@@ -538,16 +542,13 @@
},
getlist() {
this.shujuflag = false
- if (this.storeId == null) {
+ // if (this.storeId == null) {
this.$u.get(`/app/device/list?pageNum=${this.pagenum}&pageSize=${this.pagesize}`).then((res) => {
if (res.code == 200) {
this.shuaxin = false
this.total = res.total
- // this.wateringList = []
if (res.rows.length > 0) {
// 有数据,追加到列表
- // this.wateringList = this.wateringList.concat(res.rows)
- // this.pagenum++
this.shujuflag = false
uni.hideLoading()
} else {
@@ -555,63 +556,129 @@
this.shujuflag = true
uni.hideLoading()
}
- if (this.pagesum > 1) {
+ if (this.pagenum > 1) {
+ this.pagenum++
this.wateringList = this.wateringList.concat(res.rows)
this.shujuflag = false
+ console.log(this.wateringList);
+ this.groupLists.forEach(groupItem => {
+ groupItem.wateringList = []
+ })
+ this.wateringList.forEach(wateringItem => {
+ this.groupLists[0].wateringList.push(wateringItem);
+ })
+ this.wateringList.forEach(wateringItem => {
+ this.groupLists.forEach(groupItem => {
+ if (groupItem.storeId !== null && wateringItem.storeId !== null && groupItem.storeId === wateringItem.storeId) {
+ if (!groupItem.wateringList.some(item => item.storeId === wateringItem.storeId)) {
+ groupItem.wateringList.push(wateringItem);
+ }
+ }
+ })
+ })
+ // this.wateringList.forEach(wateringItem => {
+ // this.groupLists.forEach(groupItem => {
+ // if (groupItem.storeId !== null && wateringItem.storeId !== null && groupItem.storeId === wateringItem.storeId) {
+ // groupItem.wateringList.push(wateringItem)
+ // }
+ // })
+ // })
+
} else {
- this.wateringList = res.rows
- }
- this.pagenum++
+ this.pagenum++
+ this.wateringList = res.rows
+ // console.log(this.wateringList,'000');
+ this.groupLists.forEach(groupItem => {
+ groupItem.wateringList = []
+ })
+ this.wateringList.forEach(wateringItem => {
+ this.groupLists[0].wateringList.push(wateringItem);
+ })
+ this.wateringList.forEach(wateringItem => {
+ this.groupLists.forEach(groupItem => {
+ if (groupItem.storeId !== null && wateringItem.storeId !== null && groupItem.storeId === wateringItem.storeId) {
+ groupItem.wateringList.push(wateringItem)
+ }
+ })
+ })
+ // console.log(this.groupLists)
+ }
this.isLoading = false;
} else {
this.shuaxin = false
}
})
- } else {
- this.$u.get(
- `/app/device/list?storeId=${this.storeId}&pageNum=${this.pagenum}&pageSize=${this.pagesize}`)
- .then((res) => {
- if (res.code == 200) {
- this.shuaxin = false
- this.total = res.total
- // this.wateringList = []
- if (res.rows.length > 0) {
- // 有数据,追加到列表
- // this.wateringList = this.wateringList.concat(res.rows)
- // this.pagenum++
- this.shujuflag = false
- uni.hideLoading()
- } else {
- // 没有更多数据
- this.shujuflag = true
- uni.hideLoading()
- }
- if (this.pagesum > 1) {
- this.wateringList = this.wateringList.concat(res.rows)
- this.shujuflag = false
- } else {
- this.wateringList = res.rows
- }
- this.pagenum++
- this.isLoading = false;
- } else {
- this.shuaxin = false
- }
- })
- }
- },
- onReachBottom() {
- let sum = this.total / this.pagesize
- if (this.pagenum - 1 < sum) {
- this.getlist(); // 上拉加载更多
- } else {
- // uni.showToast({
- // title: '没有更多设备了',
- // icon: 'none',
- // duration: 1000
- // });
- }
+ // } else {
+ // this.$u.get(
+ // `/app/device/list?storeId=${this.storeId}&pageNum=${this.pagenum}&pageSize=${this.pagesize}`)
+ // .then((res) => {
+ // if (res.code == 200) {
+ // this.shuaxin = false
+ // this.total = res.total
+ // if (res.rows.length > 0) {
+ // // 有数据,追加到列表
+ // this.shujuflag = false
+ // uni.hideLoading()
+ // } else {
+ // // 没有更多数据
+ // this.shujuflag = true
+ // uni.hideLoading()
+ // }
+ // if (this.pagenum > 1) {
+ // this.wateringList = this.wateringList.concat(res.rows)
+ // this.shujuflag = false
+
+ // this.groupLists.forEach(groupItem => {
+ // groupItem.wateringList = []
+ // })
+ // this.wateringList.forEach(wateringItem => {
+ // this.groupLists[0].wateringList.push(wateringItem);
+ // })
+ // this.wateringList.forEach(wateringItem => {
+ // this.groupLists.forEach(groupItem => {
+ // if (groupItem.storeId === wateringItem.storeId) {
+ // groupItem.wateringList.push(wateringItem)
+ // }
+ // })
+ // })
+
+ // } else {
+ // this.wateringList = res.rows
+ // this.groupLists.forEach(groupItem => {
+ // groupItem.wateringList = []
+ // })
+ // this.wateringList.forEach(wateringItem => {
+ // this.groupLists[0].wateringList.push(wateringItem);
+ // })
+ // this.wateringList.forEach(wateringItem => {
+ // this.groupLists.forEach(groupItem => {
+ // if (groupItem.storeId === wateringItem.storeId) {
+ // groupItem.wateringList.push(wateringItem)
+ // }
+ // })
+ // })
+ // }
+ // this.pagenum++
+ // this.isLoading = false;
+ // } else {
+ // this.shuaxin = false
+ // }
+ // })
+ // }
},
+ // onReachBottom() {
+ // console.log(11);
+ // let sum = this.total / this.pagesize
+ // if (this.pagenum - 1 < sum) {
+ // this.getlist(); // 上拉加载更多
+ // } else {
+ // // uni.showToast({
+ // // title: '没有更多设备了',
+ // // icon: 'none',
+ // // duration: 1000
+ // // });
+ // }
+ // },
changeGp(item, index) {
// console.log(item);
this.pagenum = 1
@@ -622,7 +689,6 @@
if (item.storeId == null) {
this.pagenum = 1
// this.wateringList = []
- this.titlist = item.name
this.$u.get(`/app/device/list?pageNum=${this.pagenum}&pageSize=${this.pagesize}`).then((res) => {
if (res.code == 200) {
this.total = res.total
@@ -637,7 +703,7 @@
this.shujuflag = true
uni.hideLoading()
}
- if (this.pagesum > 1) {
+ if (this.pagenum > 1) {
this.wateringList = this.wateringList.concat(res.rows)
this.shujuflag = false
} else {
@@ -650,10 +716,9 @@
} else {
this.pagenum = 1
// this.wateringList = []
- this.titlist = item.name
this.$u.get(
`/app/device/list?storeId=${item.storeId}&pageNum=${this.pagenum}&pageSize=${this.pagesize}`
- ).then((res) => {
+ ).then((res) => {
if (res.code == 200) {
this.total = res.total
// if(this.pagenum > 1){
@@ -672,7 +737,7 @@
this.shujuflag = true
uni.hideLoading()
}
- if (this.pagesum > 1) {
+ if (this.pagenum > 1) {
this.wateringList = this.wateringList.concat(res.rows)
this.shujuflag = false
} else {
@@ -1413,16 +1478,23 @@
color: #FFFFFF;
}
}
- @keyframes fadeIn {
- from { opacity: 0; }
- to { opacity: 1; }
- }
+
+ @keyframes fadeIn {
+ from {
+ opacity: 0;
+ }
+
+ to {
+ opacity: 1;
+ }
+ }
+
.fd {
margin-top: 20rpx;
padding: 0 40rpx;
padding-bottom: 200rpx;
height: 100%;
-
+
.fz {
margin: 0 -40rpx;
position: fixed;
@@ -1433,9 +1505,10 @@
border-radius: 30rpx 30rpx 0 0;
z-index: 10071;
opacity: 0;
- animation-name: fadeIn;
- animation-duration: 1s;
- animation-fill-mode: forwards;
+ animation-name: fadeIn;
+ animation-duration: 1s;
+ animation-fill-mode: forwards;
+
.fz_top {
margin: 18rpx 0 auto;
display: flex;
diff --git a/pages/my.vue b/pages/my.vue
index ee84d21..83d03b5 100644
--- a/pages/my.vue
+++ b/pages/my.vue
@@ -1,8 +1,7 @@
-
+
@@ -38,14 +37,14 @@
钱包余额
-
+
@@ -163,12 +162,12 @@
url:'/page_fenbao/statulist/myshop/index'
})
}else if(num==1){
- uni.navigateTo({
- url:'/page_fenbao/statulist/myorder/index'
- })
// uni.navigateTo({
- // url:'/page_user/switchs'
+ // url:'/page_fenbao/statulist/myorder/index'
// })
+ uni.navigateTo({
+ url:'/page_user/switchs'
+ })
}else if(num==2){
uni.navigateTo({
url:'/page_fenbao/statulist/question/index'