美文网首页
小程序商城购物车规格

小程序商城购物车规格

作者: Mrs祝 | 来源:发表于2019-08-15 09:39 被阅读0次

<view>
  <view>规格:</view>
  <view class='dis'>
    <block wx:for="{{guige}}">
      <view class="{{gindex==index?'color':''}}" bindtap='guige' data-index='{{item.id}}' data-current='{{index}}'>{{item.name}}</view>
    </block>
  </view>
  <view>颜色:</view>
  <view class='dis'>
    <block wx:for="{{color}}">
      <view class="{{cindex==index?'color':''}}" bindtap='color' data-index='{{item.id}}' data-current='{{index}}'>{{item.name}}</view>
    </block>
  </view>
</view>
<view>{{guige[gindex].name}}:{{color[cindex].name}}</view>
Page({
 
  /**
   * 页面的初始数据
   */
  data: {
    guige:[
      {id:1,name:'M'},
      {id:2,name:'L'},
      {id:3,name:'X'},
      {id:4,name:'S'}
    ],
    color:[
      {id:5,name:'红'},
      { id: 6, name: '橙'},
      { id: 7, name: '黄'},
      { id: 8, name: '绿'}
    ]
  },
  guige:function(e){
    this.setData({
      gid: e.currentTarget.dataset.index,
      gindex: e.currentTarget.dataset.current,
    })
  },
  color:function(e){
    this.setData({
      cid: e.currentTarget.dataset.index,
      cindex: e.currentTarget.dataset.current,
    })
  }

.color{
  color: red
}
.dis{display: flex;justify-content: space-around}

相关文章

网友评论

      本文标题:小程序商城购物车规格

      本文链接:https://www.haomeiwen.com/subject/rbjajctx.html