123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205 |
- <template>
- <mobile-frame>
- <view class="main">
- <view class="one">
- <view class="one_1">
- <view class="text1">{{info.name}}{{info.specs}}</view>
- <view class="text2">好评率 <text>{{info.rate}}%</text></view>
- </view>
- <view class="one_2">
- <view class="one_2_1" v-for="(item,index) in btnlist" :key="index">
- <text>{{item.name}}</text><text>({{item.num||0}})</text>
- </view>
- </view>
- </view>
- <view class="two">
- <scroll-view scroll-y="true" class="scroll-view" @scrolltolower="toPage">
- <view class="list-scroll-view">
- <view class="list" v-for="(item, index) in list" :key="index">
- <image v-if="item.file&&item.file.length>0" class="image"
- :src="item.file&&item.file.length>0?item.file[0].url:''" mode="">
- </image>
- <text v-else class="iconfont icon-top"></text>
- <view class="list_1">
- <view class="other">
- <text>{{item.phone}}</text>
- <text>{{item.time}}</text>
- </view>
- <view class="other1">{{item.content}}</view>
- <view class="other1">规格:{{item.specs}}</view>
- </view>
- </view>
- </view>
- </scroll-view>
- </view>
- </view>
- </mobile-frame>
- </template>
- <script>
- export default {
- data() {
- return {
- btnlist: [{
- name: '全部好评',
- num: '1',
- code: '0'
- },
- {
- name: '好评',
- num: '1',
- code: '0'
- },
- {
- name: '中评',
- num: '1',
- code: '0'
- },
- {
- name: '差评',
- num: '1',
- code: '0'
- }
- ],
- info: {
- name: '高精面粉',
- specs: '5g',
- rate: '95'
- },
- list: [{
- phone: '150********',
- content: '好评!',
- specs: '2.5kg',
- time: '2022-12-03 16:15:00'
- },
- {
- phone: '150********',
- content: '好评!',
- specs: '2.5kg',
- time: '2022-12-03 16:15:00'
- },
- {
- phone: '150********',
- content: '好评!',
- specs: '2.5kg',
- time: '2022-12-03 16:15:00'
- },
- {
- phone: '150********',
- content: '好评!',
- specs: '2.5kg',
- time: '2022-12-03 16:15:00'
- }
- ],
- total: 0,
- skip: 0,
- limit: 6,
- page: 0
- };
- },
- onLoad: function(e) {
- },
- methods: {
- // 分页
- toPage(e) {
- const that = this;
- let list = that.list;
- let limit = that.limit;
- if (that.total > list.length) {
- uni.showLoading({
- title: '加载中',
- mask: true
- })
- let page = that.page + 1;
- that.$set(that, `page`, page)
- let skip = page * limit;
- that.$set(that, `skip`, skip)
- that.search();
- uni.hideLoading();
- } else uni.showToast({
- title: '没有更多数据了'
- });
- },
- // 清空列表
- clearPage() {
- const that = this;
- that.$set(that, `list`, [])
- that.$set(that, `skip`, 0)
- that.$set(that, `limit`, 6)
- that.$set(that, `page`, 0)
- }
- }
- }
- </script>
- <style lang="scss">
- .main {
- display: flex;
- flex-direction: column;
- width: 100vw;
- height: 100vh;
- background-color: var(--f1Color);
- .one {
- margin: 0 0 2vw 0;
- .one_1 {
- display: flex;
- justify-content: space-around;
- background-color: var(--mainColor);
- margin: 0 0 0.5vw 0;
- padding: 2vw;
- .text1 {
- font-size: var(--font16Szie);
- }
- .text2 {
- font-size: var(--font16Szie);
- color: var(--f85Color);
- text {
- margin: 0 0 0 1vw;
- color: var(--ff0Color);
- }
- }
- }
- .one_2 {
- display: flex;
- justify-content: space-between;
- padding: 2vw;
- background-color: var(--mainColor);
- }
- }
- .two{
- position: relative;
- flex-grow: 1;
- .list{
- display: flex;
- justify-content: space-around;
- align-items: center;
- background-color: var(--mainColor);
- margin: 0 0 2vw 0;
- padding: 2vw;
- .other{
- display: flex;
- justify-content: space-between;
- }
- }
- }
- }
- .scroll-view {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
-
- .list-scroll-view {
- display: flex;
- flex-direction: column;
- }
- }
- </style>
|