You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
725 B
43 lines
725 B
4 years ago
|
<template>
|
||
|
<view>
|
||
|
<slot></slot>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
/**
|
||
|
* SwipeAction 滑动操作
|
||
|
* @description 通过滑动触发选项的容器
|
||
|
* @tutorial https://ext.dcloud.net.cn/plugin?id=181
|
||
|
*/
|
||
|
export default {
|
||
|
name: "UniSwipeAction",
|
||
|
data() {
|
||
|
return {};
|
||
|
},
|
||
|
provide() {
|
||
|
return {
|
||
|
swipeaction: this
|
||
|
};
|
||
|
},
|
||
|
created() {
|
||
|
this.children = [];
|
||
|
},
|
||
|
methods: {
|
||
|
closeOther(vm) {
|
||
|
if (this.openItem && this.openItem !== vm) {
|
||
|
// #ifdef APP-VUE || H5 || MP-WEIXIN
|
||
|
this.openItem.button.show = 'none'
|
||
|
// #endif
|
||
|
|
||
|
// #ifndef APP-VUE || H5 || MP-WEIXIN
|
||
|
this.openItem.close()
|
||
|
// #endif
|
||
|
}
|
||
|
this.openItem = vm
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
</script>
|
||
|
|
||
|
<style scoped></style>
|