在商城项目中购买商品或者添加购物车的时候都会让我们去选择商品的规格,颜色、尺码、风格等,这里把刚做完的此功能代码记录下,方便以后查阅:
<template>
<view>
<u-navbar title="测试"></u-navbar>
<view class="content">
<view>商品名称:{
{info.name}}</view>
<view>商品价格:{
{info.price}}</view>
<view>规格:</view>
<view v-for="(item,index) in info.attrs_group" :key="index">
<view>{
{item.name}}</view>
<view class="u-flex u-m-t-10">
<view class="attr-item" @click="changAttr(item1,index)"
:class="{active:attrIds[index]==item1.attr_id}" v-for="(item1,index1) in item.attrList"
:key=&