4dfe89e4
monkeyhouyi
初始化
|
1
2
3
4
5
6
|
<template>
<view class="page">
<view class="screen-list">
<view>记录查询</view>
<view class="list">
<text>租赁申请记录</text>
|
c62ab6f2
杨鑫
1
|
7
|
<image :src="$imgUrl('/down.png')" ></image>
|
4dfe89e4
monkeyhouyi
初始化
|
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
</view>
</view>
<!-- 记录列表 -->
<view class="record-list">
<view class="list" @click="applyDetail">
<view class="title-date">
<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 class="date">
<text>状态:</text><text class="yellow">受理中</text>
</view>
</view>
<view class="integral">
|
c62ab6f2
杨鑫
1
|
28
|
<image :src="$imgUrl('/right2.png')" ></image>
|
4dfe89e4
monkeyhouyi
初始化
|
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
</view>
</view>
<view class="list">
<view class="title-date">
<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 class="date">
<text>状态:</text><text class="green">已通过</text>
</view>
</view>
<view class="integral">
|
c62ab6f2
杨鑫
1
|
47
|
<image :src="$imgUrl('/right2.png')"></image>
|
4dfe89e4
monkeyhouyi
初始化
|
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
</view>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
};
},
methods: {
applyDetail(){
uni.navigateTo({
url: '/pages/applyDetail/applyDetail',
})
}
}
}
</script>
<style scoped lang="scss">
@import 'apply.scss';
</style>
|