vue爬坑记:element-ui的table中单选按钮的设置

<el-table-column align="center" label="主经营品牌">
              <template slot-scope="scope">
                <!-- class="textRadio" -->
                <el-radio @change.native="getCurrentRow(scope.$index)" :label="scope.$index" v-model="radio" class="textRadio">&nbsp;</el-radio>

              </template>
            </el-table-column>
export default {
  data() {
    return {
      radio: 1,
    }
  }
}
shopProxyBrandInfo: [
        {
          brandName_cn: "品牌中文名",
          brandName_en: "pinpaiyingwenming",
          brand: "品琦",
          brandLogo: "logo",
          describe: "描述信息",
          agent: "代理商",
          mainManageBrand: 0,
          index: 0
        },
        {
          brandName_cn: "品牌中文名",
          brandName_en: "pinpaiyingwenming",
          brand: "品琦",
          brandLogo: "logo",
          describe: "描述信息",
          agent: "代理商",
          mainManageBrand: 0,
          index: 1
        }
      ],
 methods: {
//门店代理品牌信息
    showRow(row) {
      //赋值给radio

      this.radio = this.shopProxyBrandInfo.indexOf(row);
      console.log('this.radio',this.radio);
      this.shopProxyBrandInfo[this.radio].mainManageBrand = 1;
      console.log("this.shopProxyBrandInfo", this.shopProxyBrandInfo);
    },

}

未完待续 2018-7-6 19:59:00

猜你喜欢

转载自blog.csdn.net/webfullstack/article/details/80945684
今日推荐