recordService.vue
1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<template>
<view class="page">
<view class="screen-list">
<view>记录查询</view>
<view class="list">
<text>报事报修</text>
<image :src="$imgUrl('/down.png')"></image>
</view>
</view>
<!-- 记录列表 -->
<view class="record-list">
<view class="record-list-box" v-for="(item,index) in 0" :key="index">
<view class="list">
<view class="title-date">
<view class="date">
<text>设备名称:这里有名称这里有名称</text>
</view>
<view class="date">
<text>设备类型:这里有类型</text>
</view>
<view class="date">
<text>报修问题:这里有文字这里有文字这里有文字</text>
</view>
<view class="date">
<text>报修时间:2024-07-01 12:00:00</text>
</view>
</view>
<view class="integral">
<image :src="$imgUrl('/right2.png')" ></image>
</view>
</view>
<view class="list-btn">
<text class="date-btn">评价</text>
</view>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
};
},
methods: {
contractdetail(){
uni.navigateTo({
url: '/pages/contractdetail/contractdetail',
})
}
}
}
</script>
<style scoped lang="scss">
@import 'recordService.scss';
</style>