Houjie
2025-04-11 1bf977929dd324f3ac64b70debd8a79443c54392
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
<template>
    <view>
        <cu-custom bgColor="bg-gradual-pink" :isBack="true">
            <block slot="backText">返回</block>
            <block slot="content">模态窗口</block>
        </cu-custom>
        <view class="cu-bar bg-white margin-top">
            <view class="action">
                <text class="cuIcon-title text-orange "></text> 普通窗口
            </view>
            <view class="action">
                <button class="cu-btn bg-green shadow" @tap="showModal" data-target="Modal">Modal</button>
            </view>
        </view>
        <view class="cu-modal" :class="modalName=='Modal'?'show':''">
            <view class="cu-dialog">
                <view class="cu-bar bg-white justify-end">
                    <view class="content">Modal标题</view>
                    <view class="action" @tap="hideModal">
                        <text class="cuIcon-close text-red"></text>
                    </view>
                </view>
                <view class="padding-xl">
                    Modal 内容。
                </view>
            </view>
        </view>
 
        <view class="cu-bar bg-white margin-top">
            <view class="action">
                <text class="cuIcon-title text-orange "></text> 底部窗口
            </view>
            <view class="action">
                <button class="cu-btn bg-green shadow" @tap="showModal" data-target="bottomModal">Bottom</button>
            </view>
        </view>
        <view class="cu-modal bottom-modal" :class="modalName=='bottomModal'?'show':''">
            <view class="cu-dialog">
                <view class="cu-bar bg-white">
                    <view class="action text-green">确定</view>
                    <view class="action text-blue" @tap="hideModal">取消</view>
                </view>
                <view class="padding-xl">
                    Modal 内容。
                </view>
            </view>
        </view>
 
        <view class="cu-bar bg-white margin-top">
            <view class="action">
                <text class="cuIcon-title text-orange "></text> 对话窗口
            </view>
            <view class="action">
                <button class="cu-btn bg-green shadow" @tap="showModal" data-target="DialogModal1">Dialog</button>
                <button class="cu-btn bg-blue shadow margin-left" @tap="showModal" data-target="DialogModal2">Dialog</button>
            </view>
        </view>
        <view class="cu-modal" :class="modalName=='DialogModal1'?'show':''">
            <view class="cu-dialog">
                <view class="cu-bar bg-white justify-end">
                    <view class="content">Modal标题</view>
                    <view class="action" @tap="hideModal">
                        <text class="cuIcon-close text-red"></text>
                    </view>
                </view>
                <view class="padding-xl">
                    Modal 内容。
                </view>
                <view class="cu-bar bg-white justify-end">
                    <view class="action">
                        <button class="cu-btn line-green text-green" @tap="hideModal">取消</button>
                        <button class="cu-btn bg-green margin-left" @tap="hideModal">确定</button>
 
                    </view>
                </view>
            </view>
        </view>
 
        <view class="cu-modal" :class="modalName=='DialogModal2'?'show':''">
            <view class="cu-dialog">
                <view class="cu-bar bg-white justify-end">
                    <view class="content">Modal标题</view>
                    <view class="action" @tap="hideModal">
                        <text class="cuIcon-close text-red"></text>
                    </view>
                </view>
                <view class="padding-xl">
                    Modal 内容。
                </view>
                <view class="cu-bar bg-white">
                    <view class="action margin-0 flex-sub text-green " @tap="hideModal">
                        <text class="cuIcon-moneybag"></text>微信支付</view>
                    <view class="action margin-0 flex-sub text-green solid-left" @tap="hideModal">取消</view>
                    <view class="action margin-0 flex-sub  solid-left" @tap="hideModal">确定</view>
                </view>
            </view>
        </view>
 
        <view class="cu-bar bg-white margin-top">
            <view class="action">
                <text class="cuIcon-title text-orange "></text> 图片窗口
            </view>
            <view class="action">
                <button class="cu-btn bg-green shadow" @tap="showModal" data-target="Image">Image</button>
            </view>
        </view>
 
        <view class="cu-modal" :class="modalName=='Image'?'show':''">
            <view class="cu-dialog">
                <view class="bg-img" style="background-image: url('https://ossweb-img.qq.com/images/lol/web201310/skin/big91012.jpg');height:200px;">
                    <view class="cu-bar justify-end text-white">
                        <view class="action" @tap="hideModal">
                            <text class="cuIcon-close "></text>
                        </view>
                    </view>
                </view>
                <view class="cu-bar bg-white">
                    <view class="action margin-0 flex-sub  solid-left" @tap="hideModal">我知道了</view>
                </view>
            </view>
        </view>
 
 
        <view class="cu-bar bg-white margin-top">
            <view class="action">
                <text class="cuIcon-title text-orange "></text> 单选窗口
            </view>
            <view class="action">
                <button class="cu-btn bg-green shadow" @tap="showModal" data-target="RadioModal">Radio</button>
            </view>
        </view>
 
        <view class="cu-modal" :class="modalName=='RadioModal'?'show':''" @tap="hideModal">
            <view class="cu-dialog" @tap.stop="">
                <radio-group class="block" @change="RadioChange">
                    <view class="cu-list menu text-left">
                        <view class="cu-item" v-for="(item,index) in 5" :key="index">
                            <label class="flex justify-between align-center flex-sub">
                                <view class="flex-sub">Item {{index +1}}</view>
                                <radio class="round" :class="radio=='radio' + index?'checked':''" :checked="radio=='radio' + index?true:false"
                                 :value="'radio' + index"></radio>
                            </label>
                        </view>
                    </view>
                </radio-group>
            </view>
        </view>
 
        <view class="cu-bar bg-white margin-top">
            <view class="action">
                <text class="cuIcon-title text-orange "></text> 多选窗口
            </view>
            <view class="action">
                <button class="cu-btn bg-green shadow" @tap="showModal" data-target="ChooseModal">Choose</button>
            </view>
        </view>
        <view class="cu-modal bottom-modal" :class="modalName=='ChooseModal'?'show':''" @tap="hideModal">
            <view class="cu-dialog" @tap.stop="">
                <view class="cu-bar bg-white">
                    <view class="action text-blue" @tap="hideModal">取消</view>
                    <view class="action text-green" @tap="hideModal">确定</view>
                </view>
                <view class="grid col-3 padding-sm">
                    <view v-for="(item,index) in checkbox" class="padding-xs" :key="index">
                        <button class="cu-btn orange lg block" :class="item.checked?'bg-orange':'line-orange'" @tap="ChooseCheckbox"
                         :data-value="item.value"> {{item.name}}
                            <view class="cu-tag sm round" :class="item.checked?'bg-white text-orange':'bg-orange'" v-if="item.hot">HOT</view>
                        </button>
                    </view>
                </view>
            </view>
        </view>
 
        <view class="cu-bar bg-white margin-top">
            <view class="action">
                <text class="cuIcon-title text-orange "></text> 侧边抽屉
            </view>
            <view class="action">
                <button class="cu-btn bg-green shadow" @tap="showModal" data-target="DrawerModalL">Left</button>
                <button class="cu-btn bg-blue shadow margin-left" @tap="showModal" data-target="DrawerModalR">Right</button>
            </view>
        </view>
        <view class="cu-modal drawer-modal justify-start" :class="modalName=='DrawerModalL'?'show':''" @tap="hideModal">
            <view class="cu-dialog basis-lg" @tap.stop="" :style="[{top:CustomBar+'px',height:'calc(100vh - ' + CustomBar + 'px)'}]">
                <view class="cu-list menu text-left">
                    <view class="cu-item arrow" v-for="(item,index) in 5" :key="index">
                        <view class="content">
                            <view>Item {{index +1}}</view>
                        </view>
                    </view>
                </view>
            </view>
        </view>
 
        <view class="cu-modal drawer-modal justify-end" :class="modalName=='DrawerModalR'?'show':''" @tap="hideModal">
            <view class="cu-dialog basis-lg" @tap.stop="" :style="[{top:CustomBar+'px',height:'calc(100vh - ' + CustomBar + 'px)'}]">
                <view class="cu-list menu text-left">
                    <view class="cu-item arrow" v-for="(item,index) in 5" :key="index">
                        <view class="content">
                            <view>Item {{index +1}}</view>
                        </view>
                    </view>
                </view>
            </view>
        </view>
    </view>
</template>
 
<script>
    export default {
        data() {
            return {
                CustomBar: this.CustomBar,
                modalName: null,
                radio: 'radio1',
                checkbox: [{
                    value: 0,
                    name: '10元',
                    checked: false,
                    hot: false,
                }, {
                    value: 1,
                    name: '20元',
                    checked: true,
                    hot: false,
                }, {
                    value: 2,
                    name: '30元',
                    checked: true,
                    hot: true,
                }, {
                    value: 3,
                    name: '60元',
                    checked: false,
                    hot: true,
                }, {
                    value: 4,
                    name: '80元',
                    checked: false,
                    hot: false,
                }, {
                    value: 5,
                    name: '100元',
                    checked: false,
                    hot: false,
                }]
            };
        },
        methods: {
            showModal(e) {
                this.modalName = e.currentTarget.dataset.target
            },
            hideModal(e) {
                this.modalName = null
            },
            RadioChange(e) {
                this.radio = e.detail.value
            },
            ChooseCheckbox(e) {
                let items = this.checkbox;
                let values = e.currentTarget.dataset.value;
                for (let i = 0, lenI = items.length; i < lenI; ++i) {
                    if (items[i].value == values) {
                        items[i].checked = !items[i].checked;
                        break
                    }
                }
            }
        }
    }
</script>
 
<style>
    button .cu-tag {
        position: absolute;
        top: 8upx;
        right: 8upx;
    }
</style>