跨平台应用开发进阶(五) :uni-app 实现列表项左划操作

x33g5p2x  于2022-02-28 转载在 uni-app  
字(3.0k)|赞(0)|评价(0)|浏览(757)

一、前言

应用Uni-app开发跨平台移动端App项目时,遇到列表项左划操作需求。经过研读Uni-app门户,发现uni-swipe-action组件可以实现列表项左划操作功能。基础效果如下:

应用该组件能够满足基本的列表项目左划操作功能。完整示例demo请移步《uni-swipe-action组件实现列表项左划操作》下载。

二、优化

在组件封装层面,发觉uni-swipe-action组件并不能很好的满足开发需求,故考虑应用其他解决方案。

视图渲染部分
组件视图渲染层主要渲染列表项左划后的操作栏位,包含自定义图标及操作文字。其中,还涉及vue插槽应用,对于Vue插槽不了解的同学可以参考博文《Vue进阶(幺贰捌):Vue插槽:slot、slot-scope与指令v-slot应用讲解》、《Vue进阶(幺贰柒):插槽详解》。

  1. <template>
  2. <view>
  3. <view class="box-slideLeft" scroll-x="true">
  4. <view class="touch-item touch-slideLeft " @touchstart="touchS" @touchmove="touchM" @touchend="touchE"
  5. :style="item_show.txtStyle">
  6. <slot />
  7. </view>
  8. <view class="touch-item del-box-touch-slideLeft cf-shuCenter" @click="delItem(item_show)">
  9. <image :src="imgSrc" style="width: 48rpx;height: 48rpx;"></image>
  10. <text class="removeTxt">{{oprTxt}}</text>
  11. </view>
  12. </view>
  13. </view>
  14. </template>

JS业务逻辑层面
JS业务逻辑层主要涉及ViewTouch事件@touchstart、@touchmove、@touchend,通过监听手势划动触发相应事件。

  1. <script>
  2. export default {
  3. created: function() {
  4. //专门处理检查对象中,某字段是否存在的,如果存在返回 true 不存在返回 false
  5. let that = this;
  6. let item = that.item;
  7. if (!item.hasOwnProperty("txtStyle")) {
  8. this.$set(this.item, 'txtStyle', ''); //不需要初始化了
  9. }
  10. this.item_show = this.item;
  11. },
  12. watch: {
  13. item(e) {
  14. this.item_show = e;
  15. },
  16. },
  17. methods: {
  18. //点击删除按钮事件
  19. delItem: function(e) {
  20. let that = this;
  21. let data = {
  22. item: e,
  23. data: that.data_transit,
  24. };
  25. this.$emit('delItem', data);
  26. },
  27. touchS: function(e) {
  28. let that = this;
  29. if (e.touches.length == 1) {
  30. //设置触摸起始点水平方向位置
  31. this.startX = e.touches[0].clientX
  32. }
  33. this.$forceUpdate();
  34. },
  35. touchM: function(e) {
  36. let that = this;
  37. if (e.touches.length == 1) {
  38. //手指移动时水平方向位置
  39. var moveX = e.touches[0].clientX;
  40. //手指起始点位置与移动期间的差值
  41. var disX = this.startX - moveX;
  42. var delBtnWidth = this.delBtnWidth;
  43. var txtStyle = "";
  44. if (disX == 0 || disX < 0) { //如果移动距离小于等于0,说明向右滑动,文本层位置不变
  45. txtStyle = "left:0px";
  46. } else if (disX > 0) { //移动距离大于0,文本层left值等于手指移动距离
  47. txtStyle = "left:-" + disX + "rpx";
  48. if (disX >= delBtnWidth) {
  49. //控制手指移动距离最大值为删除按钮的宽度
  50. txtStyle = "left:-" + delBtnWidth + "rpx";
  51. }
  52. }
  53. //获取手指触摸的是哪一项
  54. that.item_show.txtStyle = txtStyle;
  55. }
  56. this.$forceUpdate();
  57. },
  58. touchE: function(e) {
  59. let that = this;
  60. if (e.changedTouches.length == 1) {
  61. //手指移动结束后水平位置
  62. var endX = e.changedTouches[0].clientX;
  63. //触摸开始与结束,手指移动的距离
  64. var disX = this.startX - endX;
  65. var delBtnWidth = this.delBtnWidth;
  66. //如果距离小于删除按钮的1/2,不显示删除按钮
  67. var txtStyle = disX > delBtnWidth / 2 ? "left:-" + delBtnWidth + "rpx" : "left:0px";
  68. //获取手指触摸的是哪一项
  69. that.item_show.txtStyle = txtStyle;
  70. }
  71. this.$forceUpdate();
  72. },
  73. }
  74. }
  75. </script>

实现效果如下:

三、问题分析

动态加载数据,组件滑动失效是怎么回事?
因为组件会在加载的时候获取相应的节点信息数据 ,获取需要滑动的距离,所以有时候动态加载数据之后,可能是时机的问题,导致节点信息获取失败
,那么组件就不能正常滑动。此时,可以通过this.$forceUpdate();强制页面重新渲染解决。

完整组件代码示例,请移步《uni-app列表项实现左划操作功能》下载。

3.1 this.$forceUpdate();

调用强制更新方法this.$forceUpdate()会更新视图和数据,并触发updated生命周期函数。Vue中一些复杂对象的修改,有时并不能被Vue监听到,对于深层次结构数据,可以使用$set方法使之被Vue监听,但如果不想利用$set方法去设置,也可以使用$forceUpdate方法,$forceUpdate可以使Vue组件按照最新数据重新渲染。

有关Vue$set 方法的具体应用,详参博文

  • 《Vue进阶(九十八):Vue.set() 和 this.$set()》
  • 《Vue进阶(九十七):对象动态添加属性和值》

四、拓展阅读

相关文章

最新文章

更多