doum
2025-09-26 9057e04efad1b7d61c77a72e5c37a504d0aee935
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
<template>
    <view class="box" :style="{ backgroundImage: 'url(' + backgroundImg + ')' }">
        <view class="box_list">
            <view class="box_list_item" @click="jump(0)">
                <view class="left">
                    <image src="/static/icon_tag_chart.png" mode="widthFix"></image>
                    <view class="left_info">
                        <text>SHE事件上报</text>
                        <text>TAG</text>
                    </view>
                </view>
                <view class="right">
                    <image src="/static/icon_ahead.png" mode="widthFix"></image>
                </view>
            </view>
            <view class="box_list_item" @click="jump(3)">
                <view class="left">
                    <image src="/static/icon_smat_chart.png" mode="widthFix"></image>
                    <view class="left_info">
                        <text>跌绊滑风险上报</text>
                        <text>SMAT</text>
                    </view>
                </view>
                <view class="right">
                    <image src="/static/icon_ahead.png" mode="widthFix"></image>
                </view>
            </view>
            <view class="box_list_item" @click="jump(2)">
                <view class="left">
                    <image src="/static/icon_dca_chart.png" mode="widthFix"></image>
                    <view class="left_info">
                        <text>深度符合性审查DCA图表</text>
                        <text>DCA</text>
                    </view>
                </view>
                <view class="right">
                    <image src="/static/icon_ahead.png" mode="widthFix"></image>
                </view>
            </view>
        </view>
    </view>
</template>
 
<script>
    export default {
        data() {
            return {
                backgroundImg: require('@/static/home_bg.png')
            };
        },
        methods: {
            jump(type) {
                uni.navigateTo({
                    url: `/pages/chart_details/chart_details?type=${type}`
                })
            }
        }
    }
</script>
 
<style lang="scss">
page {
  background-color: #f5f5f5;
}
</style>
 
<style lang="scss" scoped>
    .box {
        width: 100%;
        height: auto;
        padding-top: 180rpx;
        box-sizing: border-box;
        background-repeat: no-repeat;
        background-size: 100% 350rpx;
        .box_list {
            width: 100%;
            padding: 0 30rpx;
            box-sizing: border-box;
            .box_list_item {
                width: 100%;
                padding: 20rpx;
                box-sizing: border-box;
                border-radius: 30rpx;
                background-color: #ffffff;
                display: flex;
                align-items: center;
                justify-content: space-between;
                margin-bottom: 30rpx;
                &:last-child {
                    margin: 0;
                }
                .left {
                    flex: 1;
                    height: 100%;
                    display: flex;
                    align-items: center;
                    image {
                        flex-shrink: 0;
                        width: 150rpx;
                        height: 150rpx;
                    }
                    .left_info {
                        flex: 1;
                        height: 100%;
                        display: flex;
                        flex-direction: column;
                        text {
                            &:nth-child(1) {
                                color: rgba(16,16,16,1);
                                font-size: 36rpx;
                            }
                            &:nth-child(2) {
                                color: rgba(16,16,16,1);
                                font-size: 28rpx;
                                margin-top: 20rpx;
                            }
                        }
                    }
                }
                .right {
                    width: 50rpx;
                    height: 50rpx;
                    flex-shrink: 0;
                    margin-left: 30rpx;
                    image {
                        width: 100%;
                        height: 100%;
                    }
                }
            }
        }
    }
</style>