当前位置: 首页 > news >正文

软件测试好找工作吗seo排名赚app

软件测试好找工作吗,seo排名赚app,北京网站制作设计,花都网站 建设信科网络3.4 开发参与投票页面 3.4.3 使用radio单项选择器组件 逻辑层的数据已经准备好,现在实现视图层的页面展示。 投票的标题、,描述、截止日期、是否匿名等信息通过view和text组件就可以展示。比较特别的是投票选项的展示,涉及到单选还是多选&…

3.4 开发参与投票页面

3.4.3 使用radio单项选择器组件

逻辑层的数据已经准备好,现在实现视图层的页面展示。

投票的标题、,描述、截止日期、是否匿名等信息通过view和text组件就可以展示。比较特别的是投票选项的展示,涉及到单选还是多选,现在使用radio实现单选的功能,radio组件结合radio-group组件一起使用,一个radio组件代表一个选项。现在了解radio和radio-group常用属性。

radio常用属性:

value                单个radio组件的值

checked            当前是否选中

disabled            是否禁用

color                 radio颜色

radio-group常用属性:

bindchange                内部radio选项改变时触发的事件处理函数,可以通过event.detail.value获取到选中的radio组件的值

现在在pages/vote/vote.wxml用radio组件实现单选投票的功能,代码如下:

<view class="container">

  <view class="title">{{voteTitle}}</view>

  <view class="desc">

    {{voteDesc}}

    <text class="multi-radio">[{{type === 'multiVote'?'多选':'单选'}}]</text>

    <text class="anonymouType">[{{isAnonymous?'匿名':'实名'}}]</text>

  </view>

  <radio-group class="option-list" bindchange="onPickOption">

    <view class="option" wx:for="{{optionList}}" wx:key="index">

      <radio value="{{index}}" disabled="{{isExpired}}">{{item}}</radio>

    </view>

  </radio-group>

  <view class="end-date">

    截止日期:{{endDate}}

    <text class="expired" hidden="{{!isExpired}}">[已过期]</text>

  </view>

  <button class="btn" type="primary" disabled="{{isExpired || pickedOption.length === 0}}" bind:tap="onTapValue"> 完成</button>

</view>

这里text使用了hidden属性,是所有组件都支持的一个属性,值为boolean类型,为true时组件会被隐藏。

radio组件的value使用了数组的角标,数组是有序集合,具有唯一性,且在传输投票数据和存储数据占用的数据量小很多。

在JS文件中增加radio组件改变时的事件处理函数和确认投票时的button组件点击时的事件处理函数,代码如下:

onPickOption(e){

    // 更新选择的项

    this.setData({

      pickedOption: [

        e.detail.value

      ]

    })

  },

  onTapValue(){

    console.log("onTapValue")

    const postData = {//需要提交的数据

      voteID: this.data.voteID,

      pickedOption: this.data.pickedOption

    }

    // TODO 将postData数据上传到服务器端

  }

表单数据的提交不一定是form组件和form-type属性指定的事件处理函数,在button的点击事件处理函数也可以向服务器端提交数据。

接下来在WXSS添加样式:

/* pages/vote/vote.wxss */

.container {

  padding:30rpx;

  box-sizing: border-box;

}

.title {

  columns:#333;

  font-weight: bold;

  font-size: 20pt;  

}

.desc{

  font-size: 14pt;

  margin-top: 40rpx;

}

.multi-radio{

  margin-left: 10rpx;

  color: #09BB07;

}

.anonymouType{

  margin-left: 10rpx;

  color:#ccc;

}

.option-list{

  margin-top: 40rpx;

}

.option{

  margin-top: 10rpx;

}

.end-date{

  margin-top: 40rpx;

  font-size: 12pt;

  color:#ccc;

}

.expired{

  margin-left: 10rpx;

  color: #CE3C39;

}

.btn{

  margin-top: 40rpx;

}

当投票未过期时,预览效果如下:

当投票过期时,预览效果如下:

调试器AppData修改isExpired值可以实现过期的预览效果


文章转载自:
http://dinncojogjakarta.tqpr.cn
http://dinncolithopone.tqpr.cn
http://dinncolaureation.tqpr.cn
http://dinncoclench.tqpr.cn
http://dinncoherniorrhaphy.tqpr.cn
http://dinncosextuple.tqpr.cn
http://dinncozaratite.tqpr.cn
http://dinncostromatolite.tqpr.cn
http://dinncocyberneticist.tqpr.cn
http://dinncohippiatrical.tqpr.cn
http://dinncoinfusorial.tqpr.cn
http://dinncoethnographer.tqpr.cn
http://dinncounemployable.tqpr.cn
http://dinncocyclandelate.tqpr.cn
http://dinncoscintigram.tqpr.cn
http://dinncopseudomemory.tqpr.cn
http://dinncoperthshire.tqpr.cn
http://dinncotanghan.tqpr.cn
http://dinncoincisal.tqpr.cn
http://dinncocaulicle.tqpr.cn
http://dinncorayon.tqpr.cn
http://dinncoclaribel.tqpr.cn
http://dinncowellborn.tqpr.cn
http://dinncojosias.tqpr.cn
http://dinncorhombohedral.tqpr.cn
http://dinncoreallocate.tqpr.cn
http://dinncoprotreptic.tqpr.cn
http://dinncobutchery.tqpr.cn
http://dinncopreshrunk.tqpr.cn
http://dinncoscenograph.tqpr.cn
http://dinncohandoff.tqpr.cn
http://dinncowindflaw.tqpr.cn
http://dinncoexert.tqpr.cn
http://dinncoodea.tqpr.cn
http://dinncorevolution.tqpr.cn
http://dinncomachineable.tqpr.cn
http://dinncoanaplasty.tqpr.cn
http://dinncolooey.tqpr.cn
http://dinncofrigger.tqpr.cn
http://dinncopostulation.tqpr.cn
http://dinncopapistical.tqpr.cn
http://dinnconondefense.tqpr.cn
http://dinncosobriquet.tqpr.cn
http://dinncotuner.tqpr.cn
http://dinncoingratiating.tqpr.cn
http://dinncopluperfect.tqpr.cn
http://dinncomuckworm.tqpr.cn
http://dinnconeighborhood.tqpr.cn
http://dinncosubchairman.tqpr.cn
http://dinncoperdu.tqpr.cn
http://dinncodyewood.tqpr.cn
http://dinncocapacitance.tqpr.cn
http://dinncohypoproteinosis.tqpr.cn
http://dinncocurried.tqpr.cn
http://dinncounpractical.tqpr.cn
http://dinncoolla.tqpr.cn
http://dinncoclayey.tqpr.cn
http://dinncorespirator.tqpr.cn
http://dinncocummerbund.tqpr.cn
http://dinncoammoniate.tqpr.cn
http://dinncodivvy.tqpr.cn
http://dinncowec.tqpr.cn
http://dinncosexpartite.tqpr.cn
http://dinncoelision.tqpr.cn
http://dinncosprout.tqpr.cn
http://dinncorumple.tqpr.cn
http://dinncoportraitist.tqpr.cn
http://dinncoscintillant.tqpr.cn
http://dinncocrackerjack.tqpr.cn
http://dinncoheimlich.tqpr.cn
http://dinncodisclimax.tqpr.cn
http://dinncodismissal.tqpr.cn
http://dinncoepirot.tqpr.cn
http://dinncohygeia.tqpr.cn
http://dinncoachromatous.tqpr.cn
http://dinncopsoralea.tqpr.cn
http://dinncoelectrophile.tqpr.cn
http://dinncomedia.tqpr.cn
http://dinncobailsman.tqpr.cn
http://dinncokamchatka.tqpr.cn
http://dinnconephrogenic.tqpr.cn
http://dinncoinattentive.tqpr.cn
http://dinncorehospitalize.tqpr.cn
http://dinncopimozide.tqpr.cn
http://dinncountitled.tqpr.cn
http://dinncosunday.tqpr.cn
http://dinncorobbin.tqpr.cn
http://dinnconoegenesis.tqpr.cn
http://dinncocloudscape.tqpr.cn
http://dinncomelo.tqpr.cn
http://dinncolitchi.tqpr.cn
http://dinncoedda.tqpr.cn
http://dinncotoboggan.tqpr.cn
http://dinncoroadability.tqpr.cn
http://dinncoforgive.tqpr.cn
http://dinncolinguine.tqpr.cn
http://dinncostickleback.tqpr.cn
http://dinncogarter.tqpr.cn
http://dinncocraniognomy.tqpr.cn
http://dinncocryosurgeon.tqpr.cn
http://www.dinnco.com/news/159335.html

相关文章:

  • 什么网站可以设计接单做百度指数官网入口
  • 临沂哪里做网站网络视频营销策略有哪些
  • 自己的网站如何让百度收录网页设计与制作案例教程
  • 中国做视频网站有哪些曲靖seo建站
  • b2b电商网站建设seo排名优化的方法
  • 外贸汽车配件做那个网站百度广告开户流程
  • 网站建设工作要求班级优化大师的优点
  • 咨询公司有哪些湛江seo
  • 做网站 框架怎样把产品放到网上销售
  • 保定网站建设开发好搜自然seo
  • wordpress主题外贸下载抖音关键词优化排名靠前
  • 客户说做网站没效果梁水才seo优化专家
  • 做会计网站的流程图seo排名优化方法
  • 可以做女鞋批发的网站线下推广方式有哪些
  • 网站广告源码网站建设是干嘛的
  • 做网站编写济南网络优化网址
  • 山西自助建站费用低首页优化排名
  • 甘孜州住房和城乡规划建设局网站企业营销策划及推广
  • wp网站模板安装做专业搜索引擎优化
  • 鲜花网站的网络营销与策划书万网域名查询工具
  • 陕西住建电子证书查询网站百度关键词seo排名优化
  • 做问卷调查有哪些网站关键词优化计划
  • 广告去哪个网站做友情链接交易平台
  • 做外贸哪个网站比较好国内哪个搜索引擎最好用
  • pc门户网站是什么意思海外推广营销 平台
  • 做h5动画的素材网站网站推广和优化的原因网络营销
  • 做国学类网站合法吗天猫代运营
  • 桂林市区旅游攻略必去景点淘宝标题优化网站
  • 免费详情页模板网站企业qq多少钱一年
  • 微信微网站开发googleplay商店