kaiguan-zfb/page_fenbao/statulist/myshop/index.vue

370 lines
8.8 KiB
Vue
Raw Normal View History

2024-05-10 17:37:36 +08:00
<template>
<view class="page">
2024-05-24 16:48:42 +08:00
<u-navbar title="我的店铺" :border-bottom="false" :background="bgc" title-color='#fff' title-size='36'
2024-06-03 16:47:25 +08:00
back-icon-color="#fff" height='50'></u-navbar>
2024-05-10 17:37:36 +08:00
<view class="box">
<view class="top">
<u-search placeholder="搜索" input-align="center" v-model="keyword" @custom="searchs"></u-search>
<view class="cjshop" @click="creadshop">创建店铺</view>
</view>
2024-05-24 16:48:42 +08:00
<view class="list" @scrolltolower="onReachBottom">
2024-06-04 17:50:05 +08:00
<view class="listitem" v-for="(item,index) in wateringList" :key="index" @click="btnshopxq(item.storeId)">
2024-05-10 17:37:36 +08:00
<view class="toptit">
<image src="https://api.ccttiot.com/smartmeter/img/static/uIKex42Zr1fwfzYGgGKz" mode=""></image>
<view class="tit">
{{item.name}}
</view>
2024-06-04 17:50:05 +08:00
<view class="yuan">
2024-05-10 17:37:36 +08:00
<text
style="width: 9rpx;height: 9rpx;border-radius: 50%;margin-right: 5rpx;background-color: #000;display: inline-block;"></text>
<text
style="width: 9rpx;height: 9rpx;border-radius: 50%;margin-right: 5rpx;background-color: #000;display: inline-block;"></text>
<text
style="width: 9rpx;height: 9rpx;border-radius: 50%;margin-right: 5rpx;background-color: #000;display: inline-block;"></text>
</view>
</view>
<view class="rishou">
<view class="rishouwz">
2024-06-05 18:07:50 +08:00
<text> 日收 </text><text> 月收 </text><text> 上月收</text><text> 在线 </text><text> 离线 </text>
2024-05-10 17:37:36 +08:00
</view>
<view class="rishouje">
<text>{{item.todayIncome}}</text><text>{{item.monthIncome}}</text><text>{{item.lastMonthIncome}}</text><text>{{item.onlineCount}}</text><text>{{item.offlineCount}}</text>
</view>
</view>
<view class="gzlist">
<view class="jfgz">
<text>绑定人员</text>{{item.contactName}}
</view>
<view class="phone">
<text>联系电话</text>{{item.contactMobile}}
</view>
</view>
<view class="yunxing">
<text>已运营{{item.daysDifference + 1}}</text> <text>{{item.createTime}}</text>
</view>
</view>
2024-06-04 14:50:30 +08:00
<view class="" v-if="showflag" style="width: 100%;height: 200rpx;margin: auto;margin-top: 170rpx;text-align: center;">
<image style="width: 200rpx;height: 200rpx;"
2024-05-31 18:00:39 +08:00
src="https://api.ccttiot.com/smartmeter/img/static/uZFUpcz0YZZ4f4RjvGg2" mode=""></image>
2024-06-04 14:50:30 +08:00
<view class="" style="font-size: 28rpx;color: #808080;margin-top: 30rpx;">暂无更多店铺...</view>
2024-05-10 17:37:36 +08:00
</view>
2024-05-31 18:00:39 +08:00
2024-05-10 17:37:36 +08:00
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
bgc: {
backgroundColor: " #8883F0",
},
pagenum: 1,
wateringList: [],
pagesize: 10, // 一页多少数据
isLoading: false, // 是否正在加载数据
noMoreData: false, // 是否没有更多数据
total: 0,
2024-05-31 18:00:39 +08:00
keyword: '',
showflag: false
2024-05-10 17:37:36 +08:00
}
},
onLoad() {
2024-05-24 16:48:42 +08:00
2024-05-10 17:37:36 +08:00
},
onShow() {
this.wateringList = []
this.getlist()
},
methods: {
// 请求店铺列表
getlist() {
2024-05-24 16:48:42 +08:00
// if (this.isLoading || this.noMoreData) {
// return;
// }
2024-05-10 17:37:36 +08:00
this.isLoading = true;
2024-05-24 16:48:42 +08:00
this.$u.get("/app/store/list?pageNum=" + this.pagenum + '&pageSize=' + this.pagesize + '&keyword=' + this
.keyword).then(res => {
2024-05-10 17:37:36 +08:00
if (res.code == 200) {
this.total = res.total
2024-05-31 18:00:39 +08:00
if (this.total > 0) {
this.showflag = false
} else {
this.showflag = true
}
2024-05-10 17:37:36 +08:00
if (res.rows.length > 0) {
// 有数据,追加到列表
this.wateringList = this.wateringList.concat(res.rows)
this.pagenum++
2024-05-24 16:48:42 +08:00
2024-05-10 17:37:36 +08:00
// 计算创建到现在运行了多少天
2024-05-24 16:48:42 +08:00
this.wateringList.forEach((item, index) => {
var dateTime = new Date(item.createTime);
if (isNaN(dateTime.getTime())) {
console.error(`无法解析日期时间字符串: ${item.createTime}`);
return;
}
var now = new Date().getTime();
var differenceInMilliseconds = now - dateTime.getTime();
var differenceInDays = Math.floor(differenceInMilliseconds / (1000 * 60 *
60 * 24));
// 直接修改原数组中的对象添加daysDifference属性
item.daysDifference = differenceInDays;
});
2024-05-10 17:37:36 +08:00
} else {
// 没有更多数据
this.noMoreData = true;
}
this.isLoading = false;
}
}).catch(error => {
console.error('获取店铺失败:', error);
this.isLoading = false; // 加载失败也标记为完成
})
},
2024-05-24 16:48:42 +08:00
searchs() {
2024-05-10 17:37:36 +08:00
this.wateringList = []
this.getlist()
},
2024-05-24 16:48:42 +08:00
2024-05-10 17:37:36 +08:00
onReachBottom() {
let sum = this.total / this.pagesize
2024-05-24 16:48:42 +08:00
if (this.pagenum - 1 < sum) {
2024-05-10 17:37:36 +08:00
this.getlist(); // 上拉加载更多
} else {
uni.showToast({
title: '没有更多店铺了',
icon: 'none',
duration: 1000
});
}
},
creadshop() {
uni.navigateTo({
2024-05-10 19:51:14 +08:00
url: '/page_fenbao/statulist/myshop/shopxx/index'
2024-05-10 17:37:36 +08:00
})
},
btnshopxq(id) {
uni.navigateTo({
2024-05-10 19:51:14 +08:00
url: '/page_fenbao/statulist/myshop/shopdetail/index?id=' + id
2024-05-10 17:37:36 +08:00
})
}
}
}
</script>
<style lang="scss">
2024-05-24 16:48:42 +08:00
/deep/ .u-title {
2024-06-03 16:47:25 +08:00
padding-bottom: 22rpx;
2024-05-24 16:48:42 +08:00
}
/deep/ .uicon-nav-back {
2024-06-03 16:47:25 +08:00
padding-bottom: 22rpx;
2024-05-24 16:48:42 +08:00
}
2024-05-10 17:37:36 +08:00
page {
// background: linear-gradient(180deg, #F4F5F7 0%, rgba(255, 255, 255, 0) 100%);
}
.page {
width: 750rpx;
// position: fixed;
// top: 0;
// left: 0;
2024-05-24 16:48:42 +08:00
height: 100vh;
2024-05-10 17:37:36 +08:00
.box {
width: 750rpx;
// height: 100%;
// background: #F4F5F7;
border-radius: 0rpx 0rpx 0rpx 0rpx;
2024-05-24 16:48:42 +08:00
padding-top: 150rpx;
2024-05-10 17:37:36 +08:00
.list {
// overflow-y: scroll;
// height: 100vh;
padding-bottom: 400rpx;
margin-top: 26rpx;
.listitem {
margin-bottom: 28rpx !important;
padding: 12rpx 38rpx;
box-sizing: border-box;
width: 680rpx;
height: 430rpx;
background: #FFFFFF;
border-radius: 38rpx 38rpx 38rpx 38rpx;
margin: auto;
.yunxing {
display: flex;
justify-content: space-between;
2024-06-05 18:07:50 +08:00
font-size: 26rpx;
2024-05-10 17:37:36 +08:00
color: #808080;
margin-top: 26rpx;
}
.phones {
margin-top: 16rpx;
2024-06-05 18:07:50 +08:00
font-size: 26rpx;
2024-05-10 17:37:36 +08:00
color: #1DBE7B;
border-bottom: 1px solid #ccc;
padding-bottom: 26rpx;
box-sizing: border-box;
text {
color: #808080;
}
}
.phone {
margin-top: 16rpx;
2024-06-05 18:07:50 +08:00
font-size: 26rpx;
2024-05-10 17:37:36 +08:00
color: #3D3D3D;
text {
color: #808080;
}
}
.gzlist {
margin-top: 30rpx;
border-bottom: 1rpx solid #ccc;
padding-bottom: 26rpx;
.jfgz {
2024-06-05 18:07:50 +08:00
font-size: 26rpx;
2024-05-10 17:37:36 +08:00
color: #3D3D3D;
text {
color: #808080;
}
}
}
.rishou {
margin-top: 26rpx;
2024-06-05 18:07:50 +08:00
// padding: 0 28rpx;
2024-05-10 17:37:36 +08:00
box-sizing: border-box;
.rishouwz {
display: flex;
justify-content: space-between;
text {
2024-06-05 18:07:50 +08:00
font-size: 26rpx;
2024-05-10 17:37:36 +08:00
color: #808080;
2024-06-05 18:07:50 +08:00
width: 230rpx;
text-align: center;
2024-05-10 17:37:36 +08:00
}
}
.rishouje {
display: flex;
justify-content: space-between;
margin-top: 10rpx;
text {
font-weight: 500;
font-size: 32rpx;
color: #3D3D3D;
2024-06-05 18:07:50 +08:00
width: 230rpx;
text-align: center;
2024-05-10 17:37:36 +08:00
}
}
}
.toptit {
border-bottom: 1px solid #ccc;
display: flex;
justify-content: space-between;
padding-bottom: 12rpx;
box-sizing: border-box;
image {
width: 48rpx;
height: 48rpx;
margin-top: 10rpx;
}
.tit {
width: 484rpx;
height: 68rpx;
line-height: 68rpx;
padding-left: 20rpx;
background: #F4F3FF;
border-radius: 16rpx 16rpx 16rpx 16rpx;
font-weight: 600;
font-size: 30rpx;
color: #3D3D3D;
// padding: 10rpx 12rpx;
box-sizing: border-box;
}
.bd {
margin-top: 28rpx;
height: 100%;
font-size: 20rpx;
color: #FFFFFF;
padding: 4rpx 12rpx;
box-sizing: border-box;
background: #1DBE7B;
border-radius: 6rpx 6rpx 6rpx 6rpx;
}
.yuan {
margin-top: 10rpx;
}
}
}
}
.top {
width: 750rpx;
2024-06-03 16:47:25 +08:00
height: 150rpx;
2024-05-10 17:37:36 +08:00
background: #FFFFFF;
2024-06-03 16:47:25 +08:00
padding: 45rpx 36rpx;
2024-05-10 17:37:36 +08:00
box-sizing: border-box;
display: flex;
justify-content: space-between;
2024-05-24 16:48:42 +08:00
position: fixed;
2024-06-03 16:47:25 +08:00
top: 170rpx;
2024-05-24 16:48:42 +08:00
2024-05-10 17:37:36 +08:00
.cjshop {
width: 200rpx;
height: 64rpx;
background-color: #8883F0;
border-radius: 50rpx;
text-align: center;
line-height: 64rpx;
color: #fff;
font-size: 32rpx;
margin-left: 20rpx;
}
/deep/ .u-content {
border: 1px solid #ccc;
border-radius: 50rpx 0 0 50rpx !important;
}
/deep/ .u-action {
border-radius: 0 50rpx 50rpx 0 !important;
width: 112rpx;
height: 65rpx;
line-height: 65rpx;
border: 2rpx solid #ccc;
margin-left: 0;
color: #3D3D3D;
background-color: #f2f2f2;
}
}
}
}
</style>