江西小程序管理端
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.

31 lines
517 B

  1. <template>
  2. <view>
  3. <u-swipe-action>
  4. <u-swipe-action-item
  5. :options="options1"
  6. >
  7. <slot></slot>
  8. </u-swipe-action-item>
  9. </u-swipe-action>
  10. </view>
  11. </template>
  12. <script>
  13. export default {
  14. data() {
  15. return {
  16. options1: [{
  17. text: '解除绑定',
  18. style: {
  19. backgroundColor: '#f94242',
  20. borderRadius: '16rpx',
  21. padding: '16rpx'
  22. }
  23. }]
  24. };
  25. },
  26. };
  27. </script>
  28. <style lang="scss">
  29. </style>