123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288 |
- <template>
- <view style="margin-top: 40rpx;">
- <scroll ref="pullScroll" :pullDown="pullDown" :pullUp="loadData">
- <view class="item" v-for="(item,index) in data" :key="index">
- <view class="left">
- <image :src="item.headImg" style="width: 100%;height: 100%;"></image>
- </view>
- <view class="right">
- <view style="width:100%;height:44rpx;display: flex;justify-content: space-between;">
- <view class="name">{{item.createBy}}</view>
- <view class="topBtn" v-if="item.state==2">已处理</view>
- <view v-else class="topBtn" style="border:2rpx solid rgba(41,138,253,1);color:#298AFD;">未处理</view>
- </view>
- <view class="text">
- {{item.content}}
- </view>
- <view class="img">
- <image :src="img" style="width: 180rpx;height: 180rpx;padding-right: 10rpx;margin-bottom: 10rpx;" v-for="(img,index) in item.photosUrlList"
- :key="index"></image>
- </view>
- <!-- 回复信息 -->
- <!-- <view class="replay">
- <view style="width: 100%;margin: 20rpx 0rpx 20rpx 20rpx;">
- <view class="replayItem">
- <view class="replayName"><text style="font-size: 28rpx;color: #333333;font-family:PingFang SC;font-weight:bold;">物业
- </text><text style="color:rgba(51,51,51,1);">回复</text><text style="font-size: 28rpx;color: #333333;font-family:PingFang SC;font-weight:bold;margin-left: 5rpx;">肖战:</text></view>
- <view class="replayContent">换了一个新的,已经修好啦~</view>
- </view>
- <view class="replayItem">
- <view class="replayName"><text style="font-size: 28rpx;color: #333333;font-family:PingFang SC;font-weight:bold;">小赞
- </text><text style="color:rgba(51,51,51,1);">回复</text><text style="font-size: 28rpx;color: #333333;font-family:PingFang SC;font-weight:bold;margin-left: 5rpx;">肖战:</text></view>
- <view class="replayContent">换了一个新的,已经修好啦~</view>
- </view>
- </view>
- </view> -->
- <!-- 我要评论 -->
- <view class="bottomBtn" @tap="myTalk(item.id)">我的评价</view>
- <view class="date">{{(item.createTime).substr(0,16)}}</view>
- </view>
- </view>
- </scroll>
- <!-- 底部按钮 -->
- <view class="btnBox" @tap="myRepairs">
- 我要报修
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- total:0,//总条数
- data: [],
- pageNum: 1, //页数
- pageSize: 3, //每页显示多少条数
- }
- },
- onLoad() {
- this.refresh();
- },
- methods: {
- // 刷新页面
- refresh() {
- this.$nextTick(() => {
- this.$refs.pullScroll.refresh();
- });
- },
- // 向下拉刷新
- pullDown(pullScroll) {
- setTimeout(() => {
- this.loadData(pullScroll);
- }, 200);
- },
- //获取加载数据
- loadData(pullScroll) {
- console.log(pullScroll)
- this.pageNum = pullScroll.page
- setTimeout(() => {
- this.http.httpRequest('/wxapplet/ownerreprair/list', 'post', {
- cardNo: uni.getStorageSync('idNumber'),
- pageNum: pullScroll.page,
- pageSize: 3,
- comtyId: uni.getStorageSync("comtyId")
- }).then((res) => {
- console.log(res)
- if(res.code==0){
- this.total=res.data.total
- // 判断当前数据是否加载完毕
- if(this.data.length==res.data.total){
- pullScroll.finish();
- }else{
- pullScroll.success();
- let data = res.data.rows
- this.data = this.data.concat(data);
- }
-
- }else{
- pullScroll.finish();
- uni.showToast({
- title:res.msg,
- "icon":'none'
- })
- }
- }).catch(()=>{
- pullScroll.finish();
- })
- // // 判断数据是否加载完毕
- // if (this.data.length >=this.total) {
- // pullScroll.finish();
- // } else {
- // pullScroll.success();
- // }
- }, 500);
- },
- // 我的评价
- myTalk(id) {
- uni.navigateTo({
- url: "./repairsEvaluate?id=" + id
- })
- },
- // 我要保修
- myRepairs() {
- uni.navigateTo({
- url: "./wantRepair"
- })
- }
- }
- }
- </script>
- <style scoped>
- .leftBtn {
- width: 340rpx;
- height: 90rpx;
- background: rgba(102, 193, 143, 1);
- opacity: 1;
- border-radius: 18rpx;
- font-size: 32rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: rgba(255, 255, 255, 1);
- text-align: center;
- line-height: 90rpx;
- }
- .rightBtn {
- width: 340rpx;
- height: 90rpx;
- background: rgba(41, 138, 253, 1);
- opacity: 1;
- border-radius: 18rpx;
- font-size: 32rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: rgba(255, 255, 255, 1);
- text-align: center;
- line-height: 90rpx;
- }
- .btnBox {
- width: 702rpx;
- height: 90rpx;
- position: fixed;
- bottom: 56rpx;
- left: 24rpx;
- background: rgba(41, 138, 253, 1);
- opacity: 1;
- border-radius: 18rpx;
- font-size: 32rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: rgba(255, 255, 255, 1);
- text-align: center;
- line-height: 90rpx;
- z-index: 999;
- }
- .date {
- width: 230rpx;
- height: 34rpx;
- font-size: 24rpx;
- font-family: PingFang SC;
- font-weight: 400;
- color: rgba(204, 204, 204, 1);
- margin-top: 10rpx;
- margin-left: 356rpx;
- text-align: right;
- margin-bottom: 30rpx;
- }
- .bottomBtn {
- width: 140rpx;
- height: 42rpx;
- background: rgba(255, 255, 255, 1);
- border: 2rpx solid rgba(41, 138, 253, 1);
- opacity: 1;
- border-radius: 22rpx;
- font-size: 20rpx;
- font-family: PingFang SC;
- font-weight: 400;
- line-height: 42rpx;
- color: rgba(41, 138, 253, 1);
- text-align: center;
- margin-top: 40rpx;
- margin-left: 446rpx;
- }
- .replayItem {
- margin-top: 10rpx;
- }
- .replayContent {
- font-size: 24rpx;
- font-family: PingFang SC;
- font-weight: 400;
- color: rgba(51, 51, 51, 1);
- margin-top: 4rpx;
- }
- .replay {
- width: 586rpx;
- margin-top: 20rpx;
- background: rgba(247, 247, 247, 1);
- opacity: 1;
- border-radius: 8rpx;
- overflow: hidden;
- }
- .text {
- width: 100%;
- font-size: 32rpx;
- font-family: PingFang SC;
- font-weight: 400;
- color: rgba(51, 51, 51, 1);
- margin-top: 30rpx;
- }
- .img {
- width: 100%;
- margin-top: 10rpx;
- display: flex;
- flex-wrap: wrap;
- }
- .name {
- font-size: 32rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: rgba(41, 138, 253, 1);
- }
- .topBtn {
- width: 120rpx;
- height: 42rpx;
- background: rgba(255, 255, 255, 1);
- border: 2rpx solid rgba(204, 204, 204, 1);
- opacity: 1;
- border-radius: 22rpx;
- font-size: 20rpx;
- font-family: PingFang SC;
- font-weight: 400;
- color: rgba(204, 204, 204, 1);
- text-align: center;
- line-height: 42rpx;
- }
- .item {
- width: 702rpx;
- margin: 0 auto;
- border-bottom: 2rpx solid rgba(247, 247, 247, 1);
- display: flex;
- margin-top: 35rpx;
- }
- .left {
- width: 86rpx;
- height: 86rpx;
- }
- .right {
- width: 586rpx;
- margin-left: 30rpx;
- }
- </style>
|