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
| <template>
| <view class="tn-swipe-action-item-class tn-swipe-action-item">
| <view class="tn-swipe-action-item__right">
| <slot name="button">
| <view
| v-for="(item, index) in options"
| :key="index"
| class="tn-swipe-action-item__right__button"
| :style="[{
| alignItems: item.style && item.style.borderRadius ? 'center' : 'stretch'
| }]"
| @tap="buttonClickHandler(item, index)"
| >
| <view
| class="tn-swipe-action-item__right__button__wrapper"
| :style="[{
| backgroundColor: item.style && item.style.backgroundColor ? item.style.backgroundColor : '#AAAAAA',
| borderRadius: item.style && item.style.borderRadius ? item.style.borderRadius : '0',
| padding: item.style && item.style.borderRadius ? '0' : '0 30rpx'
| }, item.style]"
| >
| <view
| v-if="item.icon"
| :class="[`tn-icon-${item.icon}`]"
| :style="[{
| color: item.style && item.style.color ? item.style.color : '#FFFFFF',
| fontSize: item.iconSize ? item.iconSize + 'rpx' : item.style && item.style.fontSize ? (item.style.fontsize * 1.2) + 'rpx' : '34rpx',
| marginRight: item.text ? '4rpx' : 0
| }]"
| ></view>
| <text
| v-if="item.text"
| class="tn-swipe-action-item__right__button__text tn-text-ellipsis"
| :style="[{
| color: item.style && item.style.color ? item.style.color : '#FFFFFF',
| fontSize: item.style && item.style.fontSize ? item.style.fontSize + 'rpx' : '32rpx',
| lineHeight: item.style && item.style.fontSize ? item.style.fontSize + 'rpx' : '32rpx'
| }]"
| >{{ item.text }}</text>
| </view>
| </view>
| </slot>
| </view>
|
| <view
| class="tn-swipe-action-item__content"
| :status="status"
| :size="size"
| :change:status="wxs.statusChange"
| :change:size="wxs.sizeChange"
| @touchstart="wxs.touchStart"
| @touchmove="wxs.touchMove"
| @touchend="wxs.touchEnd"
| >
| <slot></slot>
| </view>
| </view>
| </template>
|
| <!-- #ifdef APP-VUE || MP-WEIXIN || H5 || MP-QQ -->
| <script src="./index.wxs" module="wxs" lang="wxs"></script>
| <!-- #endif -->
| <script>
|
| export default {
| name: 'tn-swipe-action-item',
| props: {
| // 是否显示滑动菜单
| show: {
| type: Boolean,
| default: false
| },
| // 标识符,如果是v-for可用index的索引值
| name: {
| type: [String, Number],
| default: ''
| },
| // 右侧按钮内容
| options: {
| type: Array,
| default() {
| return []
| }
| },
| // 是否禁用
| disabled: {
| type: Boolean,
| default: false
| },
| // 是否自动关闭其他swipe按钮组
| autoClose: {
| type: Boolean,
| default: true
| },
| // 滑动距离阈值,大于此值才会打开菜单
| threshold: {
| type: Number,
| default: 60
| },
| // 动画过渡时间,单位ms
| duration: {
| type: Number,
| default: 300
| }
| },
| computed: {
| // 由于wxs无法直接读取外部的值,需要在外部值变化时,重新执行赋值逻辑
| itemData() {
| return [this.disabled, this.autoClose, this.threshold, this.options, this.duration]
| }
| },
| data() {
| return {
| // 按钮尺寸信息
| size: {},
| // 父组件参数
| parentData: {
| autoClose: true
| },
| // 当前状态
| status: 'close'
| }
| },
| watch: {
| itemData() {
| this.queryRect()
| }
| },
| created() {
| this.parent = false
| this.updateParentData()
| this.parent && this.parent.children.push(this)
| },
| mounted() {
| this.$nextTick(() => {
| this.init()
| })
| },
| methods: {
| init() {
| this.queryRect()
| },
| // 更新父组件信息
| updateParentData() {
| this.getParentData('tn-swipe-action')
| },
| // 查询节点
| queryRect() {
| this._tGetRect('.tn-swipe-action-item__right__button', true).then(res => {
| this.size = {
| buttons: res,
| show: this.show,
| disabled: this.disabled,
| threshold: this.threshold,
| duration: this.duration
| }
| })
| },
| // 按钮点击
| buttonClickHandler(item, index) {
| this.$emit('click', {
| type: 'button',
| index
| })
| },
| // item点击
| handlerItemClick() {
| this.$emit('click', {
| type: 'item',
| name: this.name
| })
| },
| // 关闭时执行
| closeHandler() {
| this.status = 'close'
| },
| // 设置状态
| setStatus(status) {
| this.status = status
| },
| // 关闭其他单元格
| closeOther() {
| this.parent && this.parent.closeOther(this)
| }
| }
| }
| </script>
|
| <style lang="scss" scoped>
|
| .tn-swipe-action-item {
| position: relative;
| overflow: hidden;
| // touch-action: none;
|
| &__right {
| display: flex;
| flex-direction: row;
| position: absolute;
| top: 0;
| bottom: 0;
| right: 0;
|
| &__button {
| display: flex;
| flex-direction: row;
| justify-content: center;
| align-items: center;
| overflow: hidden;
|
| &__wrapper {
| display: flex;
| flex-direction: row;
| align-items: center;
| justify-content: center;
| padding: 0 30rpx;
| }
|
| &__text {
| display: flex;
| flex-direction: row;
| align-content: center;
| justify-content: center;
| text-align: center;
| color: #FFFFFF;
| font-size: 30rpx;
| }
| }
| }
|
| &__content {
| background-color: #FFFFFF;
| transform: translateX(0px);
| }
| }
| </style>
|
|