123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- Page({
-
- data: {
- zradio: [
- { name: 'radio', sex: '女', bool: false, checked: true },
- { name: 'radio', sex: '男', bool: false, checked: false }
- ],
- flag: true,
- occupations: [
- { name: 'radio', occupation: '家长', checked: false, status: 0 },
- { name: 'radio', occupation: '老师', checked: false, status: 1 },
- { name: 'radio', occupation: '学生', checked: true, status: 2 }
- ],
- region: ['北京市', '海淀区','万泉胜景远小学']
- },
- radioChange: function (e) {
- var zradio = this.data.zradio;
- var index = e.currentTarget.dataset.index;
- for (let i = 0; i < zradio.length;i++){
- if (zradio[i].checked){
- zradio[i].checked = false;
- }
- else{
- zradio[i].checked = true;
- }
- }
- this.setData({
- zradio: zradio
- });
- },
- radioSetting:function(e){
- var occupations = this.data.occupations;
- var index = e.currentTarget.dataset.index;
- var arr = occupations.filter(item => {
- if (item.status){
- return item.checked = true;
- }
- });
- this.setData({
- occupations: arr
- });
- console.log(occupations);
- },
- formSubmit: function (e) {
- console.log('form发生了submit事件,携带数据为:', e.detail.value)
- },
- bindRegionChange: function (e) {
- console.log('picker发送选择改变,携带值为', e.detail.value)
- this.setData({
- region: e.detail.value
- })
- },
-
- onLoad: function (option) {
- console.log(option.title);
- if (option.title) {
- wx.setNavigationBarTitle({
- title: option.title
- });
- this.setData({
- title: option.title
- });
- }
- },
-
- onReady: function () {
-
- },
-
- onShow: function () {
-
- },
-
- onHide: function () {
-
- },
-
- onUnload: function () {
-
- },
-
- onPullDownRefresh: function () {
-
- },
-
- onReachBottom: function () {
-
- },
-
- onShareAppMessage: function () {
-
- }
- })
|