亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在微信小程序中實現一個左滑修改、刪除功能

發布時間:2021-05-12 18:10:04 來源:億速云 閱讀:402 作者:Leah 欄目:web開發

這期內容當中小編將會給大家帶來有關怎么在微信小程序中實現一個左滑修改、刪除功能,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

wxml:

<view class="offer-item" wx:for-items='{{offerList}}'>
 <!--這里綁定了剛才說的3個函數分別為 touchS,touchM touchE-->
 <!--這里注意這個  ,這是我們一會再js中 將要設置的樣式 -->
 <view >
  <view class="offer-item-top fl clearfix" bindtouchstart="touchS" bindtouchmove="touchM" bindtouchend="touchE" data-index="{{index}}">
  <navigator bindtap='navigatorTo' data-index="{{item.id}}">
   <view class='content'>
   <view class='title clearfix'>
    <view class='fl'>
    {{item.title}}黨建項目報價表
    </view>
    <image src='../../images/right.png' class='fr'></image>
   </view>
   <view class='note clearfix'>
    <view class='price fl'>
    {{item.create_time}}
    </view>
   </view>
   </view>
  </navigator>
  </view>

  <!--這里是左滑按鈕部分----start-->
  <view bindtap="delItem" class='posit fr isMove' hidden='{{!item.isMove}}'>
   <view class="ref" data-offerid="{{item.id}}" data-index="{{item.id}}" catchtap="ref">
   <image src='../../images/ref.png'></image>
   </view>
   <view class="del" data-offerid="{{item.id}}" data-index="{{item.id}}" catchtap="del">
   <image src='../../images/default.png'></image>
   </view>
  </view>
  <!--這里是左滑按鈕部分----end-->
 </view>
</view>

wxss:

.offer-item {
 height: 150rpx;
 width: 100vw;
 overflow-x: hidden;
 border-bottom: 1px solid #f0f0f0;
}

.offer-item>view {
 position: absolute;
 /* width: calc(100% + 200rpx); */
 height: 150rpx; 
}

.offer-item .offer-item-top {
 height: 100%;
}

.offer-item .offer-item-top navigator {
 display: inline-block;
 width: 100vw; 
 height: 100%;
}

.offer-item .content {
 padding: 35rpx 30rpx;
 position: relative;
 height: calc(100% - 70rpx);
}

.offer-item .title .fl {
 display: inline-block;
 width: 78%;
 overflow: hidden;
 text-overflow: ellipsis;
 white-space: nowrap;
 font-size: 30rpx;
 color: #333;
}

.offer-item .title .fr {
 display: inline-block;
 width: 20rpx;
 height: 26rpx;
 margin-top: 5rpx;
}

.offer-item .note {
 position: absolute;
 left: 30rpx;
 bottom: 35rpx;
 width: calc(100vw - 60rpx);
 font-size: 24rpx;
 color: #999;
}

.offer-item .posit {
 width: 200rpx;
 height: 150rpx;
 line-height: 150rpx;
 text-align: center;
 display: none
}

.posit.isMove {
 display: inline-block;
 position: absolute;
}

.posit.isMove[hidden] {
 display: none
}

.offer-item .posit>view {
 display: inline-block;
 width: 100rpx;
}

.offer-item .posit>view:first-of-type {
 background-color: #FED847;
}

.offer-item .posit>view:last-of-type {
 background-color: #C71B1B;
}

.offer-item .posit image {
 display: inline-block;
 width: 36rpx;
 height: 36rpx;
}

js:

let len = 0;   // 初次加載長度
let hadLastPage = false; // 判斷是否到最后一頁

var initdata = function (that) {
 var list = that.data.offerList
 for (var i = 0; i < list.length; i++) {
 list[i].txtStyle = "";
 list[i].isMove = false;
 }
 that.setData({ 
 offerList: list
 })
}

Page({
 data: {
 offerList: [

 ],
 delBtnWidth: 100,  // 刪除按鈕寬度單位(rpx)
 },


 // 手指剛放到屏幕觸發
 touchS: function (e) {
 console.log("touchS" + e);
 // initdata(this);
 // 判斷是否只有一個觸摸點
 if (e.touches.length == 1) {
  this.setData({
  // 記錄觸摸起始位置的X坐標
  startX: e.touches[0].clientX
  });
 };
 return false;
 },

 // 觸摸時觸發,手指在屏幕上每移動一次,觸發一次
 touchM: function (e) {
 var that = this;
 initdata(that);
 if (e.touches.length == 1) {
  // 記錄觸摸點位置的X坐標
  var moveX = e.touches[0].clientX;
  // 計算手指起始點的X坐標與當前觸摸點的X坐標的差值
  var disX = that.data.startX - moveX;
  // delBtnWidth 為右側按鈕區域的寬度
  var delBtnWidth = that.data.delBtnWidth;
  var txtStyle = "";
  if (disX == 0 || disX < 0) {  // 如果移動距離小于等于0,文本層位置不變
  txtStyle = "left:0px";
  } else if (disX > 0) {   // 移動距離大于0,文本層left值等于手指移動距離
  txtStyle = "left:-" + disX + "px";
  if (disX >= delBtnWidth) {
   // 控制手指移動距離最大值為刪除按鈕的寬度
   txtStyle = "left:-" + delBtnWidth + "px";
  }
  }
  // 獲取手指觸摸的是哪一個item
  var index = e.currentTarget.dataset.index;
  var list = that.data.offerList;
  // 將拼接好的樣式設置到當前item中
  list[index].txtStyle = txtStyle;

  list[index].isMove = true;
  // 更新列表的狀態
  this.setData({
  offerList: list
  });
 }
 },
 touchE: function (e) {
 console.log( e);
 var that = this
 if (e.changedTouches.length == 1) {
  // 手指移動結束后觸摸點位置的X坐標
  var endX = e.changedTouches[0].clientX;
  // 觸摸開始與結束,手指移動的距離
  var disX = that.data.startX - endX;
  var delBtnWidth = that.data.delBtnWidth;
  // 如果距離小于刪除按鈕的1/2,不顯示刪除按鈕
  var txtStyle = disX > delBtnWidth / 2 ? "left:-" + delBtnWidth + "px" : "left:0px";
  // 獲取手指觸摸的是哪一項
  var index = e.currentTarget.dataset.index;
  var list = that.data.offerList;
  list[index].txtStyle = txtStyle;
  // 更新列表的狀態
  that.setData({
  offerList: list
  });
 }
 },

 /**
 * 
 */
 navigatorTo: function (event) {

 },

 /**
 * 刪除操作
 */
 del: function (e) {
 var that = this;
 var data = {
  id: e.currentTarget.dataset.index
 };
 wx.showModal({
  title: '',
  content: '確定選擇刪除么?',
  confirmColor: '#C71B1B',
  cancelColor: '#666666',
  success: function (res) {
  if (res.confirm) {
   utils.requestFun("接口url", data, 'POST', function (msg) {
   console.log(msg)

   wx.showToast({
    title: '刪除成功',
    icon: 'success',
    duration: 1500
   })
   var lists = that.data.offerList;
   var list1 = [];
   for (let i = 0; i < lists.length; i++) {
    if (lists[i].id != e.currentTarget.dataset.index) {
    list1.push(lists[i])
    }
   }
   len--;
   that.setData({
    offerList: list1
   })
   })
  } else if (res.cancel) {

  }
  }
 })
 },

 /**
 * 修改操作
 */
 ref: function (e) {
 wx.navigateTo({
  url: '修改頁面路徑?id=' + e.currentTarget.dataset.index,
 })
 },

 /**
 * 生命周期函數--監聽頁面加載
 */
 onLoad: function (options) {
 page = 0;
 this.loadList();
 },


 /**
 * 生命周期函數--監聽頁面初次渲染完成
 */
 onReady: function () {

 },

 /**
 * 生命周期函數--監聽頁面顯示
 */
 onShow: function () {

 },

 /**
 * 生命周期函數--監聽頁面隱藏
 */
 onHide: function () {

 },

 /**
 * 生命周期函數--監聽頁面卸載
 */
 onUnload: function () {
  hadLastPage = false;
  len = 0; 
 },

 /**
 * 頁面相關事件處理函數--監聽用戶下拉動作
 */
 onPullDownRefresh: function () {

 },

 /**
 * 頁面上拉觸底事件的處理函數
 */
 onReachBottom: function (event) {
 console.log("上拉事件")
 this.loadList();
 }, 

 /** 
 * 數據請求封裝
 */
 loadList: function (event) {
 if (hadLastPage != false) {
  wx.showToast({
  title: '到底啦',
  });
  return;
 }
 var that = this;
 // 顯示加載圖標 
 wx.showLoading({
  title: '玩命加載中',
 })

 let data = {
  length: len,
  openId: 'openid'
 };
 utils.requestFun("接口url", data, 'POST', function (msg) {

  if (msg.data.length != 0) {
  var lists = that.data.offerList;
  for (let i = 0; i < msg.data.length; i++) {
   msg.data[i].isMove = false;
   lists.push(msg.data[i]);
  }

  // len 
  len = len + msg.data.length;

  // 設置數據 
  that.setData({
   offerList: lists
  })
  } else {
  hadLastPage = true;
  }
  wx.hideLoading();
 })
 }

})

上述就是小編為大家分享的怎么在微信小程序中實現一個左滑修改、刪除功能了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

谷城县| 萝北县| 通道| 陆川县| 略阳县| 枣强县| 大冶市| 武穴市| 宿松县| 肇东市| 顺义区| 普兰店市| 江孜县| 闵行区| 临泽县| 东乡县| 丰都县| 镇雄县| 伊金霍洛旗| 上思县| 西安市| 江安县| 仲巴县| 东兰县| 宣威市| 潮州市| 新野县| 武穴市| 如东县| 怀柔区| 合江县| 乳山市| 娱乐| 西宁市| 潜江市| 海盐县| 库伦旗| 西乡县| 洞头县| 马尔康县| 霞浦县|