<el-table-column label="拨打结果" width="180" align="center"> <template slot-scope="scope"> <el-row v-for="(phoneInfo, index) in scope.row.phoneInfoList" :key="index" > <el-select @change=" callResultChange(phoneInfo.callResult, index, scope.$index) " clearable v-model="phoneInfo.callResult" placeholder="请选择" > <el-option v-for="item in callResultList" :key="item.value" :label="item.label" :value="item.value" ></el-option> </el-select> </el-row> </template> </el-table-column>
callResultChange(value, phoneIndex, rowIndex) { console.log(value, phoneIndex, rowIndex); },
- 第1个参数:下拉选择当前选中的值
- 第2个参数:当前选中值在当前客户对应的电话号码信息数组中的下标
- 第3个参数:当前客户在客户数组中的下标