• 大小: 0.18M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-03-28
  • 语言: 其他
  • 标签: 小程序  程序  微信  

资源简介

【实例简介】

部分代码:


checkedID : null

},

check:function(e){

let id = e.currentTarget.dataset.id;

if (this.data.checkedID !== id){

this.setData({

checkedID : id

})

}

},

save:function(){

let id = this.data.checkedID;

let wishList = this.data.wishList;

let i = wishList.findIndex(function(item,index,arr){

return item.id == id;

})

if (i >= 0){

app.setWishes(wishList[i].wishes,true);

wx.navigateBack()

}else{

console.error(`no item with id ${id} in wishList`)

}

 

},

onLoad:function(opt){

app.getUserInfo(function(userInfo){

console.log(userInfo.nickName)

})

let that = this;

util.request({

path:'lists',

relation:opt.relation,

sex:opt.sex

},function(wishList){

that.setData({

wishList : wishList

})

})

}

})

more.wxml:

<view class="container">

<scroll-view scroll-y="true">

<!-- <form bindsubmit="save"> -->

<!-- <radio-group name="select-more"> -->

<block wx:for="{{wishList}}" wx:key="{{item}}">

<view class="item {{checkedID === item.id ? 'on' : ''}}" bindtap="check" data-id="{{item.id}}" >

<!-- <radio value="{{item.id}}" hidden id="{{item.id}}"/> -->

<!-- <label class="label" for="{{item.id}}" bindtap="check" data-id="{{item.id}}"> -->

<view class="state">

<view class="circle {{itemIndex == item ? 'on' : ''}}"></view>

</view>

<view class="sentence">

{{item.wishes}}

</view>

<!-- </label> -->

</view>

</block>

<!-- </radio-group> -->

<!-- </form> -->

</scroll-view>

<button class="save" hover-class="save-hover" bindtap="save">确定</button>

</view>

有源码,完整文档,和部分截图。


资源截图

代码片段和文件信息

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       2357  2017-02-01 22:44  祝福小程序\app.js

     文件        525  2019-12-22 13:45  祝福小程序\app.json

     文件        551  2017-02-01 22:44  祝福小程序\app.wxss

     文件       2181  2017-02-01 22:44  祝福小程序\images\colleague.png

     文件       2415  2017-02-01 22:44  祝福小程序\images\elder.png

     文件       2247  2017-02-01 22:44  祝福小程序\images\ex.png

     文件       1476  2017-02-01 22:44  祝福小程序\images\female.png

     文件       2178  2017-02-01 22:44  祝福小程序\images\friend.png

     文件       1495  2017-02-01 22:44  祝福小程序\images\indicator.png

     文件       2783  2017-02-01 22:44  祝福小程序\images\leader.png

     文件       1830  2017-02-01 22:44  祝福小程序\images\lover.png

     文件       2087  2017-02-01 22:44  祝福小程序\images\male.png

     文件       5658  2017-02-01 22:44  祝福小程序\images\share-tips.png

     文件       4091  2017-02-01 22:44  祝福小程序\images\tap.png

     文件       2510  2017-02-01 22:44  祝福小程序\images\teacher.png

     文件     137045  2017-02-01 22:44  祝福小程序\images\wishes-panel.png

     文件       2520  2017-02-01 22:44  祝福小程序\images\younger.png

     文件       1798  2019-12-22 16:28  祝福小程序\pages\create\create.js

     文件       2770  2017-02-01 22:44  祝福小程序\pages\create\create.wxml

     文件       1672  2017-02-01 22:44  祝福小程序\pages\create\create.wxss

     文件       2597  2017-02-01 22:44  祝福小程序\pages\custom\custom.js

     文件       3063  2017-02-01 22:44  祝福小程序\pages\custom\custom.wxml

     文件       5122  2017-02-01 22:44  祝福小程序\pages\custom\custom.wxss

     文件       1273  2017-02-01 22:44  祝福小程序\pages\more\more.js

     文件        961  2017-02-01 22:44  祝福小程序\pages\more\more.wxml

     文件       1336  2017-02-01 22:44  祝福小程序\pages\more\more.wxss

     文件       3843  2017-02-01 22:44  祝福小程序\pages\preview\preview.js

     文件       2638  2019-12-19 22:12  祝福小程序\pages\preview\preview.wxml

     文件       3026  2017-02-01 22:44  祝福小程序\pages\preview\preview.wxss

     文件        721  2019-12-22 13:29  祝福小程序\project.config.json

............此处省略14个文件信息

评论

共有 条评论