12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <template>
- <view>
- <slot></slot>
- </view>
- </template>
- <script>
-
- export default {
- data() {
- return {};
- },
- provide() {
- return {
- swipeaction: this
- }
- },
- created() {
- this.children = []
- },
- methods: {
- closeOther(vm) {
- let children = this.children
- children.forEach((item, index) => {
- if (vm === item) return
-
-
- if (item.isopen) {
- item.close()
- }
-
-
-
- let position = item.position[0]
- let show = position.show
- if (show) {
- position.show = false
- }
-
-
-
- item.close()
-
- })
- }
- }
- }
- </script>
- <style scoped>
- </style>
|