346149741
2024-06-21 abe3c7e7695f61f362685abf639f0c441c62741b
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
<template>
    <view>
        <u-navbar placeholder bgColor="#1171E0FF" leftIconColor="white" :autoBack="true">
            <template slot="center">
                <view style="color: white;">执法信息</view>
            </template>
        </u-navbar>
        <view class="donw-box"></view>
        <view class="page-main">
            <view class="title">
                已评价
            </view>
            <view class="wbox">
                <view class="item">
                    <view class="k">
                        执法类型
                    </view>
                    <view class="v">
                        司法检查
                    </view>
                </view>
                <view class="item">
                    <view class="k">
                        执法人
                    </view>
                    <view class="v">
                        刘欢欢
                    </view>
                </view>
                <view class="item">
                    <view class="k">
                        执法部门
                    </view>
                    <view class="v">
                        农业局
                    </view>
                </view>
                <view class="item">
                    <view class="k">
                        企业
                    </view>
                    <view class="v">
                        汉庭酒店
                    </view>
                </view>
            </view>
            <view style="height: 20rpx;"></view>
            <view class="wbox">
                <view class="item">
                    <view class="k">
                        执法主题
                    </view>
                    <view class="v">
                        汉庭酒店司法检查233号文件
                    </view>
                </view>
                <view class="item">
                    <view class="k">
                        执法过程
                    </view>
                </view>
                <view class="imgbox">
                    <img src="/static/i01.png" class="more" @click="imgclick('/static/i01.png')" alt="" />
                    <img src="/static/i02.png" class="more" alt="" />
                    <img src="/static/i03.png" class="more" alt="" />
                    <img src="/static/i04.png" class="more" alt="" />
                </view>
                <view class="item">
                    <view class="k">
                        执法结果
                    </view>
                    <view class="v" style="color: #EB4746;">
                        停业整顿
                    </view>
                </view>
                <view class="item">
                    <view class="k">
                        执法时间
                    </view>
                    <view class="v">
                        2024-10-10 16:24
                    </view>
                </view>
            </view>
            <view style="height: 20rpx;"></view>
            <view class="wbox2">
                <view class="t">
                    执法评价
                </view>
                <view class="sbox">
                    <view class="t2">
                        本次执法还满意程度
                    </view>
                    <view class="xbox">
                        <view @click="daxing(1)">
                            <img src="/static/qiye/xing1.png" alt="" />
                            <view>
                                很糟糕
                            </view>
                        </view>
                        <view @click="daxing(2)">
                            <img v-if="xing>=2" src="/static/qiye/xing1.png" alt="" />
                            <img v-else src="/static/qiye/xing2.png" alt="" />
                            <view :class="xing==2?'hei':''">
                                不满意
                            </view>
                        </view>
                        <view @click="daxing(3)">
                            <img v-if="xing>=3" src="/static/qiye/xing1.png" alt="" />
                            <img v-else src="/static/qiye/xing2.png" alt="" />
                            <view :class="xing==3?'hei':''">
                                一般般
                            </view>
                        </view>
                        <view @click="daxing(4)">
                            <img v-if="xing>=4" src="/static/qiye/xing1.png" alt="" />
                            <img v-else src="/static/qiye/xing2.png" alt="" />
                            <view :class="xing==4?'hei':''">
                                满意
                            </view>
                        </view>
                        <view @click="daxing(5)">
                            <img v-if="xing>=5" src="/static/qiye/xing1.png" alt="" />
                            <img v-else src="/static/qiye/xing2.png" alt="" />
                            <view :class="xing==5?'hei':''">
                                非常满意
                            </view>
                        </view>
                    </view>
                    <view class="line"></view>
                </view>
                <view class="sbox">
                    <view class="t2">
                        这是一个单选题的题干?
                    </view>
                    <u-radio-group v-model="value" >
                        <u-radio name="orange">选中</u-radio>
                        <u-radio name="1" :disabled="true">未选中</u-radio>
                    </u-radio-group>
                    <view class="line"></view>
                </view>
                <view class="sbox">
                    <view class="t2">
                        对我们的评价
                    </view>
                    <view class="pjbox">
                        这次执法非常好,非常好,这次执法非常好,非常好这次执法非常好,非常好
                    </view>
                </view>
            </view>
        </view>
        <view class="bottom">
            
        </view>
    </view>
</template>
 
<script>
    export default {
        data() {
            return {
                xing: 5,
                value: 'orange',
                type:1
            }
        },
        methods: {
            daxing(a) {
                this.xing = a
            },
            imgclick(url) {
                uni.previewImage({
                    urls: [url]
                })
            }
        }
    }
</script>
 
<style>
    page {
        background: #F4F4F4;
    }
</style>
<style lang="scss" scoped>
    .page-main {
        position: relative;
        top: -380rpx;
    }
 
    .donw-box {
        width: 100%;
        height: 380rpx;
        flex-shrink: 0;
        background: linear-gradient(180deg, #1171E0 42.5%, #F4F4F4 100%);
    }
 
    .wbox {
        background: #fff;
        border-radius: 5px;
        padding: 24rpx;
        box-sizing: border-box;
        margin: 0 32rpx;
 
        .item {
            display: flex;
            margin-bottom: 20rpx;
            font-size: 30rpx;
 
            .k {
                color: #7E8596;
                width: 30%;
 
            }
 
            .v {
                color: #202D44;
                width: 70%;
 
            }
        }
 
        .item:last-child {
            margin-bottom: 0;
        }
 
        .imgbox {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            border-radius: 10rpx;
 
            img {
                width: 198rpx;
                height: 198rpx;
                margin-bottom: 20rpx;
 
            }
        }
    }
 
    .title {
        color: #ffffff;
        font-size: 44rpx;
        font-weight: bold;
        padding-left: 32rpx;
        margin-top: 24rpx;
        margin-bottom: 24rpx;
 
    }
 
    .wbox2 {
        background: #fff;
        border-radius: 5px;
        box-sizing: border-box;
        margin: 0 32rpx;
 
        .t {
            padding: 24rpx;
            border-bottom: 1px solid #EEEEEE;
            color: #202d44;
            font-size: 36rpx;
            font-weight: bold;
        }
 
        .sbox {
            padding: 24rpx;
 
            .line {
                border-bottom: 1px dashed #f1f1f1;
                margin-top: 32rpx;
            }
 
            .xbox {
                display: flex;
                margin-top: 36rpx;
                justify-content: space-between;
 
                img {
                    width: 74rpx;
                    height: 74rpx;
                }
 
                >view {
                    text-align: center;
                    font-size: 28rpx;
                    color: #C3C6CD;
                }
            }
        }
    }
    .pjbox{
        background: #F4F4F4;
        border-radius: 5px;
        margin: 10rpx 0;
        padding: 24rpx;
        color: #202d44;
        font-size: 32rpx;
        
    }
    /deep/ .u-radio-group{
        margin-top: 20rpx;
        .u-radio{
            margin-right: 20rpx;
        }
    }
    .hei {
        color: #202D44;
    }
</style>