真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

怎么在微信小程序中實(shí)現(xiàn)一個(gè)左滑修改、刪除功能

這期內(nèi)容當(dāng)中小編將會(huì)給大家?guī)碛嘘P(guān)怎么在微信小程序中實(shí)現(xiàn)一個(gè)左滑修改、刪除功能,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

創(chuàng)新互聯(lián)公司主營(yíng)拉孜網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營(yíng)網(wǎng)站建設(shè)方案,成都App制作,拉孜h5小程序開發(fā)搭建,拉孜網(wǎng)站營(yíng)銷推廣歡迎拉孜等地區(qū)企業(yè)咨詢

wxml:


 
 
 
  
  
   
   
    
    {{item.title}}黨建項(xiàng)目報(bào)價(jià)表
    
    
   
   
    
    {{item.create_time}}
    
   
   
  
  

  
  
   
   
   
   
   
   
  
  
 

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;   // 初次加載長(zhǎng)度
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)
 },


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

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

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

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


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

 },

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

 },

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

 },

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

 /**
 * 頁面相關(guān)事件處理函數(shù)--監(jiān)聽用戶下拉動(dòng)作
 */
 onPullDownRefresh: function () {

 },

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

 /** 
 * 數(shù)據(jù)請(qǐng)求封裝
 */
 loadList: function (event) {
 if (hadLastPage != false) {
  wx.showToast({
  title: '到底啦',
  });
  return;
 }
 var that = this;
 // 顯示加載圖標(biāo) 
 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;

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

})

上述就是小編為大家分享的怎么在微信小程序中實(shí)現(xiàn)一個(gè)左滑修改、刪除功能了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。


本文名稱:怎么在微信小程序中實(shí)現(xiàn)一個(gè)左滑修改、刪除功能
當(dāng)前URL:http://weahome.cn/article/jjedph.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部