hailu
2023-05-25 3644568ac3b6db7e387d5ab72da717e51626f869
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
<template>
    <view>
        <header>
            <u-icon name="arrow-left" size="25" color="#D7DFE3" style="cursor: pointer;" @click="goback"></u-icon>
            <view class="title">
                升级会员
            </view>
        </header>
        <main>
            <view class="" style="padding: 0.5em;border-bottom: 1px solid #DDDDDD;">
                <u--text text="当前级别:普通用户" color="#E64340" :bold="true" size='17'
                    style="margin-bottom: 0.5em;"></u--text>
                <u--text text="请选择要升到的级别" size='16'></u--text>
            </view>
 
            <u-radio-group v-model="radiovalue" placement="column" @change="groupChange">
                <u-radio v-for="(item, index) in radiolist" :key="index" :label="item.name" :name="item.name"
                    activeColor="red" class="radioClass" @change="radioChange">
                </u-radio>
            </u-radio-group>
            <view class="radioClass">
                开票信息:<u--text text="空" color="#336699"></u--text>
            </view>
            <view class="radioClass">
                电子邮箱:<u--text text="未填写" color="#336699"></u--text>
            </view>
 
            <!-- <view class="radioClass" style="background-color: #fff;">
                <u--text text="点击此处设置或修改开票与邮箱信息" align="center" style="cursor: pointer;" color="#336699"
                    decoration="underline"></u--text>
            </view> -->
            <view class="radioClass" style="border: none;">
                <u--text text="备注:1111111111111111111111111" color="#FF3300"></u--text>
            </view>
            <view class="button">
                确认升级
            </view>
            <view class="smTitle">
                <view class="" style="width: 50%;">
                    用户类别
                </view>
                <view class="" style="width: 50%;">
                    权限说明
                </view>
            </view>
            <ul>
                <li>
                    <view class="" style="width: 50%;padding: 1em;">
                        <u--text text="普通用户" align="center"></u--text>
                        <u--text text="(有效期一年)" align="center" color="#E64367" size="16"></u--text>
                    </view>
                    <view class="">
                        <u--text text="监控专利:5件" align="center"></u--text>
                        <u--text text="体验费用:0元/年" align="center"></u--text>
                        <u--text text="代缴服务费:30元/件" align="center"></u--text>
                    </view>
                </li>
                <li>
                    <view class="" style="width: 50%;padding: 1em;">
                        <u--text text="初级会员" align="center"></u--text>
                        <u--text text="(有效期一年)" align="center" color="#E64367" size="16"></u--text>
                    </view>
                    <view class="">
                        <u--text text="监控专利:5件" align="center"></u--text>
                        <u--text text="体验费用:0元/年" align="center"></u--text>
                        <u--text text="代缴服务费:30元/件" align="center"></u--text>
                    </view>
                </li>
                <li>
                    <view class="" style="width: 50%;padding: 1em;">
                        <u--text text="中级会员" align="center"></u--text>
                        <u--text text="(有效期一年)" align="center" color="#E64367" size="16"></u--text>
                    </view>
                    <view class="">
                        <u--text text="监控专利:5件" align="center"></u--text>
                        <u--text text="体验费用:0元/年" align="center"></u--text>
                        <u--text text="代缴服务费:30元/件" align="center"></u--text>
                    </view>
                </li>
                <li>
                    <view class="" style="width: 50%;padding: 1em;">
                        <u--text text="普通用户" align="center"></u--text>
                        <u--text text="(有效期一年)" align="center" color="#E64367" size="16"></u--text>
                    </view>
                    <view class="">
                        <u--text text="监控专利:5件" align="center"></u--text>
                        <u--text text="体验费用:0元/年" align="center"></u--text>
                        <u--text text="代缴服务费:30元/件" align="center"></u--text>
                    </view>
                </li>
                <li>
                    <view class="" style="width: 50%;padding: 1em;">
                        <u--text text="高级会员" align="center"></u--text>
                        <u--text text="(有效期一年)" align="center" color="#E64367" size="16"></u--text>
                    </view>
                    <view class="">
                        <u--text text="至尊会员:5件" align="center"></u--text>
                        <u--text text="体验费用:0元/年" align="center"></u--text>
                        <u--text text="代缴服务费:30元/件" align="center"></u--text>
                    </view>
                </li>
            </ul>
        </main>
    </view>
</template>
<script>
    export default {
        components: {},
        data() {
            return {
                radiolist: [{
                        name: '初级会员,49元/年',
                        disabled: false
                    },
                    {
                        name: '中级会员,49元/年',
                        disabled: false
                    },
                    {
                        name: '高级会员,49元/年',
                        disabled: false
                    }, {
                        name: '至尊会员,49元/年',
                        disabled: false
                    }
                ],
                radiovalue: '初级会员,49元/年',
 
 
            };
        },
        onShow() {
            //加载
        },
        onLoad() {
 
        },
        methods: {
 
            goback() {
                uni.navigateBack({
                    delta: 1
                })
            },
            radioChange() {
 
            },
            groupChange(n) {},
 
        }
    }
</script>
 
<style lang="scss" scoped>
    header {
        height: 3em;
        line-height: 3em;
        background: #3399CC;
        text-align: center;
        position: relative;
 
        .u-icon {
            position: absolute;
            left: 5px;
            top: 0.5em;
        }
 
        .title {
            color: #fff;
            font-size: 1.2em;
        }
    }
 
    main {
 
        .radioClass {
            padding-left: 0.5em;
            border-bottom: 1px solid #DDDDDD;
            height: 3em;
            line-height: 3em;
            display: flex;
        }
 
        .button {
            background-color: #3399CC;
            height: 3em;
            line-height: 3em;
            text-align: center;
            color: #fff;
            margin: 0 5px;
            border-radius: 0.3em;
            font-size: 1.2em;
            cursor: pointer;
        }
 
        .smTitle {
            height: 3em;
            line-height: 3em;
            background-color: #CCCCCC;
 
            display: flex;
            color: #FFF7EB;
            font-size: 1em;
            text-align: center;
            margin-top: 10px;
        }
        ul{
            li{
                // height: 3em;
                display: flex;
                border-bottom: 1px solid #DDDDDD;
            }
        }
    }
</style>