uni-swipe-action-item.vue 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  1. <template>
  2. <view class="uni-swipe">
  3. <!-- 在微信小程序 app vue端 h5 使用wxs 实现-->
  4. <!-- #ifdef APP-VUE || MP-WEIXIN || H5 -->
  5. <view class="uni-swipe_content">
  6. <view :data-disabled="disabled" :data-position="pos" :change:prop="swipe.sizeReady" :prop="pos" class="uni-swipe_move-box selector-query-hock move-hock"
  7. @touchstart="swipe.touchstart" @touchmove="swipe.touchmove" @touchend="swipe.touchend" @change="change">
  8. <view class="uni-swipe_box">
  9. <slot />
  10. </view>
  11. <view ref="selector-button-hock" class="uni-swipe_button-group selector-query-hock move-hock">
  12. <view v-for="(item,index) in options" :data-button="btn" :key="index" :style="{
  13. backgroundColor: item.style && item.style.backgroundColor ? item.style.backgroundColor : '#C7C6CD',
  14. fontSize: item.style && item.style.fontSize ? item.style.fontSize : '16px'
  15. }"
  16. class="uni-swipe_button button-hock" @click.stop="onClick(index,item)"><text class="uni-swipe_button-text" :style="{color: item.style && item.style.color ? item.style.color : '#FFFFFF',}">{{ item.text }}</text></view>
  17. </view>
  18. </view>
  19. </view>
  20. <!-- #endif -->
  21. <!-- app nvue端 使用 bindingx -->
  22. <!-- #ifdef APP-NVUE -->
  23. <view ref="selector-box-hock" class="uni-swipe_content" @horizontalpan="touchstart" @touchend="touchend">
  24. <view ref="selector-button-hock" class="uni-swipe_button-group selector-query-hock move-hock" :style="{width:right+'px'}">
  25. <view ref="button-hock" v-for="(item,index) in options" :key="index" :style="{
  26. backgroundColor: item.style && item.style.backgroundColor ? item.style.backgroundColor : '#C7C6CD',left: right+'px'}"
  27. class="uni-swipe_button " @click.stop="onClick(index,item)"><text class="uni-swipe_button-text" :style="{color: item.style && item.style.color ? item.style.color : '#FFFFFF',fontSize: item.style && item.style.fontSize ? item.style.fontSize : '16px'}">{{ item.text }}</text></view>
  28. </view>
  29. <view ref='selector-content-hock' class="uni-swipe_move-box selector-query-hock">
  30. <view class="uni-swipe_box">
  31. <slot />
  32. </view>
  33. </view>
  34. </view>
  35. <!-- #endif -->
  36. <!-- 在非 app 端、非微信小程序、支付宝小程序、h5端使用 js -->
  37. <!-- #ifndef APP-PLUS || MP-WEIXIN || MP-ALIPAY || H5 -->
  38. <view class="uni-swipe_content">
  39. <view ref="selector-button-hock" class="uni-swipe_button-group selector-query-hock move-hock">
  40. <view v-for="(item,index) in options" :data-button="btn" :key="index" :style="{
  41. backgroundColor: item.style && item.style.backgroundColor ? item.style.backgroundColor : '#C7C6CD',
  42. fontSize: item.style && item.style.fontSize ? item.style.fontSize : '16px'
  43. }"
  44. class="uni-swipe_button button-hock" @click.stop="onClick(index,item)"><text class="uni-swipe_button-text" :style="{color: item.style && item.style.color ? item.style.color : '#FFFFFF',}">{{ item.text }}</text></view>
  45. </view>
  46. <view ref='selector-content-hock' class="selector-query-hock" @touchstart="touchstart" @touchmove="touchmove"
  47. @touchend="touchend" :class="{'ani':uniShow}" :style="{transform:moveLeft}">
  48. <view class="uni-swipe_move-box" >
  49. <view class="uni-swipe_box">
  50. <slot />
  51. </view>
  52. </view>
  53. </view>
  54. </view>
  55. <!-- #endif -->
  56. <!-- #ifdef MP-ALIPAY -->
  57. <view class="uni-swipe-box" @touchstart="touchstart" @touchmove="touchmove" @touchend="touchend">
  58. <view class="viewWidth-hook">
  59. <movable-area v-if="viewWidth !== 0" class="movable-area" :style="{width:(viewWidth-buttonWidth)+'px'}">
  60. <movable-view class="movable-view" direction="horizontal" :animation="!transition" :style="{width:viewWidth+'px'}"
  61. :class="[transition?'transition':'']" :x="x" :disabled="disabledView" @change="onChange">
  62. <view class="movable-view-box">
  63. <slot></slot>
  64. </view>
  65. </movable-view>
  66. </movable-area>
  67. </view>
  68. <view ref="selector-button-hock" class="uni-swipe_button-group viewWidth-hook">
  69. <view v-for="(item,index) in options" :data-button="btn" :key="index" :style="{
  70. backgroundColor: item.style && item.style.backgroundColor ? item.style.backgroundColor : '#C7C6CD',
  71. fontSize: item.style && item.style.fontSize ? item.style.fontSize : '16px'
  72. }"
  73. class="uni-swipe_button button-hock" @click.stop="onClick(index,item)"><text class="uni-swipe_button-text" :style="{color: item.style && item.style.color ? item.style.color : '#FFFFFF',}">{{ item.text }}</text></view>
  74. </view>
  75. </view>
  76. <!-- #endif -->
  77. </view>
  78. </template>
  79. <script src="./index.wxs" module="swipe" lang="wxs"></script>
  80. <script>
  81. // #ifdef APP-VUE|| MP-WEIXIN || H5
  82. import mpwxs from './mpwxs'
  83. // #endif
  84. // #ifdef APP-NVUE
  85. import bindingx from './bindingx.js'
  86. // #endif
  87. // #ifndef APP-PLUS|| MP-WEIXIN || MP-ALIPAY || H5
  88. import mixins from './mpother'
  89. // #endif
  90. // #ifdef MP-ALIPAY
  91. import mpalipay from './mpalipay'
  92. // #endif
  93. /**
  94. * SwipeActionItem 滑动操作子组件
  95. * @description 通过滑动触发选项的容器
  96. * @tutorial https://ext.dcloud.net.cn/plugin?id=181
  97. * @property {Boolean} show = [true|false] 开启关闭组件,auto-close = false 时生效
  98. * @property {Boolean} disabled = [true|false] 是否禁止滑动
  99. * @property {Boolean} autoClose = [true|false] 其他组件开启的时候,当前组件是否自动关闭
  100. * @property {Array} options 组件选项内容及样式
  101. * @event {Function} click 点击选项按钮时触发事件,e = {content,index} ,content(点击内容)、index(下标)
  102. * @event {Function} change 组件打开或关闭时触发,true:开启状态;false:关闭状态
  103. */
  104. export default {
  105. // #ifdef APP-VUE|| MP-WEIXIN||H5
  106. mixins: [mpwxs],
  107. // #endif
  108. // #ifdef APP-NVUE
  109. mixins: [bindingx],
  110. // #endif
  111. // #ifndef APP-PLUS|| MP-WEIXIN || MP-ALIPAY || H5
  112. mixins: [mixins],
  113. // #endif
  114. // #ifdef MP-ALIPAY
  115. mixins: [mpalipay],
  116. // #endif
  117. props: {
  118. /**
  119. * 按钮内容
  120. */
  121. options: {
  122. type: Array,
  123. default () {
  124. return []
  125. }
  126. },
  127. /**
  128. * 禁用
  129. */
  130. disabled: {
  131. type: Boolean,
  132. default: false
  133. },
  134. /**
  135. * 变量控制开关
  136. */
  137. show: {
  138. type: Boolean,
  139. default: false
  140. },
  141. /**
  142. * 是否自动关闭
  143. */
  144. autoClose: {
  145. type: Boolean,
  146. default: true
  147. }
  148. },
  149. inject: ['swipeaction']
  150. }
  151. </script>
  152. <style lang="scss" scoped>
  153. .uni-swipe {
  154. overflow: hidden;
  155. }
  156. .uni-swipe-box {
  157. position: relative;
  158. width: 100%;
  159. }
  160. .uni-swipe_content {
  161. flex: 1;
  162. position: relative;
  163. }
  164. .uni-swipe_move-box {
  165. /* #ifndef APP-NVUE */
  166. display: flex;
  167. /* #endif */
  168. position: relative;
  169. flex-direction: row;
  170. }
  171. .uni-swipe_box {
  172. /* #ifndef APP-NVUE */
  173. display: flex;
  174. flex-direction: row;
  175. width: 100%;
  176. flex-shrink: 0;
  177. /* #endif */
  178. /* #ifdef APP-NVUE */
  179. flex: 1;
  180. /* #endif */
  181. font-size: 14px;
  182. background-color: #fff;
  183. }
  184. .uni-swipe_button-group {
  185. /* #ifndef APP-VUE|| MP-WEIXIN||H5 */
  186. position: absolute;
  187. top: 0;
  188. right: 0;
  189. bottom: 0;
  190. z-index: 0;
  191. /* #endif */
  192. /* #ifndef APP-NVUE */
  193. display: flex;
  194. flex-shrink: 0;
  195. /* #endif */
  196. flex-direction: row;
  197. }
  198. .uni-swipe_button {
  199. /* #ifdef APP-NVUE */
  200. position: absolute;
  201. left: 0;
  202. top: 0;
  203. bottom: 0;
  204. /* #endif */
  205. /* #ifndef APP-NVUE */
  206. display: flex;
  207. /* #endif */
  208. flex-direction: row;
  209. justify-content: center;
  210. align-items: center;
  211. padding: 0 20px;
  212. }
  213. .uni-swipe_button-text {
  214. /* #ifndef APP-NVUE */
  215. flex-shrink: 0;
  216. /* #endif */
  217. font-size: 14px;
  218. }
  219. .ani {
  220. transition-property: transform;
  221. transition-duration: 0.3s;
  222. transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  223. }
  224. /* #ifdef MP-ALIPAY */
  225. .movable-area {
  226. width: 300px;
  227. height: 100%;
  228. height: 45px;
  229. }
  230. .movable-view {
  231. position: relative;
  232. width: 160%;
  233. height: 45px;
  234. z-index: 2;
  235. }
  236. .transition {
  237. transition: all 0.3s;
  238. }
  239. .movable-view-box {
  240. width: 100%;
  241. height: 100%;
  242. background-color: #fff;
  243. }
  244. /* #endif */
  245. </style>