accepting.vue
3.22 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<template>
<view class="page">
<!-- 记录列表 -->
<view class="record-list">
<view class="record-list-box" >
<view class="list">
<view class="thumb">
<image :src="$imgUrl('/img/2.jpg')" mode=""></image>
</view>
<view class="title-date">
<view class="date">
<text>资源名称:{{record.recordName}}</text>
</view>
<view class="date">
<text>地址:这里有地址</text>
</view>
<view class="date">
<text>面积:52</text>
</view>
<view class="date">
100元/月
</view>
</view>
<view class="integral">
<image :src="$imgUrl('/img/right2.png')"></image>
</view>
</view>
</view>
</view>
<view class="msglist">
<view class="msg_title">
<view class="">
租赁人姓名
</view>
<view class="msg_body">
张三
</view>
</view>
<view class="msg_title">
<view class="">
身份证号
</view>
<view class="msg_body">
1111111111111111111111111
</view>
</view>
<view class="msg_title">
<view class="">
联系方式
</view>
<view class="msg_body">
22222222222222
</view>
</view>
<view class="msg_title">
<view class="">
意向租期
</view>
<view class="msg_body">
2022-02-22至2023-02-26
</view>
</view>
<view class="msg_title">
<view class="">
经验用途
</view>
<view class="msg_body">
零售百货店
</view>
</view>
<view class="msg_title">
<view class="">
经营类型
</view>
<view class="msg_body">
个人
</view>
</view>
<view class="msg_title">
<view class="">
身份证正反面
</view>
<view class="msg_body imgGroup">
<image :src="$imgUrl('/组 18072.png')" mode=""></image>
<image :src="$imgUrl('/组 18072.png')" mode=""></image>
</view>
</view>
<view class="state">
<text :class="record.state == '受理中'?'org':'green'">{{record.state}}</text>
</view>
</view>
<view class="" style="padding: 0 40rpx;" v-if="record.state == '已通过'">
<view class="" style="background-color: #3F699A;color: #fff;padding: 14rpx 0;text-align: center;font-size: 28rpx;">
<text>点击查看签约合约</text>
</view>
</view>
<view class="footbtn" v-if="record.state == '已通过'">
<view class="zhifu">
<view class="" style="color: #909090;">
合计
</view>
<view class="" style="font-weight: 600;">
1896.00元/4天
</view>
</view>
<view class="zhifuBtn">
立即支付
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
record:{},
recordList:[
{
recordName:'这里有名称这里有名称',
porName:'徐丽',
tTime:'2022-02-22 12:00:00',
state:'受理中'
},
{
recordName:'这里有名称这里有名称',
porName:'徐丽',
tTime:'2022-02-22 12:00:00',
state:'已通过'
}
]
};
},
onLoad(options) {
const item = JSON.parse(decodeURIComponent(options.item));
console.log('Received item:', item);
this.record = item
},
methods: {
}
}
</script>
<style scoped lang="scss">
@import 'accepting.scss';
</style>