el-table implements single selection

need:

Enterprise classification (1) Select the enterprise classification, open the pop-up window, and automatically check the selected enterprise classification. Highlight

              (2) Select an enterprise classification in the pop-up window, click OK, and the enterprise classification in the drop-down box will be changed. Cancellation does not change.

 dom :

The pop-up box uses el-popover, the difficulty lies in the radio button, el-table is implemented as follows:

        <el-form-item label="企业分类" prop="customerGroup" class="approve-form">
            <el-select
              v-model="formEnterpriseInfo.customerGroup"
              clearable
              placeholder="请选择"
              :disabled="formEnterpriseInfo.auditStatus==='1'||formEnterpriseInfo.auditStatus==='0'"
              @change="customerGroupChange"
            >
              <el-option
                v-for="dict in customerGroupDict"
                :key="dict.dictCode"
                :label="dict.dictName"
                :value="dict.dictCode"
              ></el-option>
            </el-select>
            <el-popover
              v-model="visible"
              :disabled="formEnterpriseInfo.auditStatus==='1'||formEnterpriseInfo.auditStatus==='0'"
              placement="bottom"
              title=""
              width="800"
              trigger="click"
              @show="showCustomerGroup"
            >

              <el-table
                id="customerGroupTable"
                ref="singleTable"
                :data="gridData"
                height="350"
                highlight-current-row
                @current-change="handleCurrentChange"
                @row-click="rowClick"
              >
                <el-table-column label="选择" width="50">
                  <template slot-scope="scope">
                    <el-radio v-model="radioIdSelect" :label="scope.row.id" @change.native="handleSelectionChange(scope.$index,scope.row)">&nbsp;</el-radio>
                  </template>
                </el-table-column>

                <el-table-column width="150" property="className" label="企业分类"></el-table-column>
                <el-table-column property="classDes" label="描述"></el-table-column>

              </el-table>
              <div id="btnGrop" class="linebuttons">
                <el-button class="blue-border" @click="visible = false">取 消</el-button>
                <el-button type="primary" @click="confirmSelet">确 定</el-button>
              </div>
              <span slot="re

Guess you like

Origin blog.csdn.net/weixin_39089928/article/details/129493402