81 lines
2.2 KiB
Vue
81 lines
2.2 KiB
Vue
<template>
|
||
<view class="container">
|
||
<div class="searchBox" :style="{ height: localHeight + 'px', paddingTop: top + 'px' }">
|
||
<view class="searchBox_left">
|
||
<u-icon bold color="#000" size="40" name="arrow-left" @click="back"></u-icon>
|
||
</view>
|
||
<div class="searchBox_mid">
|
||
评价(38)
|
||
</div>
|
||
<div class="searchBox_right">
|
||
<u-icon bold color="#000" size="40" name="arrow-left" @click="back"></u-icon>
|
||
</div>
|
||
|
||
</div>
|
||
|
||
<div class="EvaluateList">
|
||
<div class="EvaluateItem" v-for="item,index in 3" :key="index">
|
||
<div class="evaluateItem_header">
|
||
<div class="evaluateItem_ava">
|
||
<image src="http://192.168.0.172:5500/com_MsgImg1.png"></image>
|
||
</div>
|
||
<div class="evaluateItem_msg">
|
||
<div class="evaluateItem_msg1">TP</div>
|
||
<div class="evaluateItem_msg2">
|
||
<image v-for="(item, index) in 5" :key="index"
|
||
src="http://192.168.0.172:5500/homeServer_stait.png"></image>
|
||
</div>
|
||
</div>
|
||
<div class="evaluateItem_time">2025-06-24</div>
|
||
</div>
|
||
<div class="evaluateItem_main">
|
||
真好啊!真棒啊!优秀!
|
||
</div>
|
||
<div class="evaluateItem_Score">
|
||
技术评级:70分
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
import { request, picUrl, NavgateTo, menuButtonInfo } from '../../../utils/index';
|
||
import { apiArr } from '../../../api/reservation';
|
||
|
||
export default {
|
||
data() {
|
||
return {
|
||
top: "",
|
||
localHeight: ""
|
||
}
|
||
},
|
||
methods: {
|
||
|
||
},
|
||
onReady() {
|
||
|
||
},
|
||
|
||
onLoad(options) {
|
||
const meun = menuButtonInfo();
|
||
this.top = meun.top;
|
||
this.localHeight = meun.height;
|
||
},
|
||
onShow() {
|
||
|
||
},
|
||
|
||
/**
|
||
* 页面上拉触底事件的处理函数
|
||
*/
|
||
onReachBottom() {
|
||
|
||
},
|
||
|
||
}
|
||
</script>
|
||
|
||
<style>
|
||
@import url("./index.css");
|
||
</style> |