ThinkChat🤖让你学习和工作更高效,注册即送10W Token,即刻开启你的AI之旅 广告
``` <el-table-column align="center" label="计费方式" width="300px"> <template slot-scope="scope"> <el-radio-group v-model="scope.row.exp_type" v-if="scope.row.edit"> <el-radio class="edit-input" :label="1">按件计费</el-radio> <el-radio class="edit-input" :label="2">按重量计费</el-radio> </el-radio-group> <span v-else><el-tag v-if="scope.row.exp_type == 1">按件计费</el-tag> <el-tag v-if="scope.row.exp_type == 2" type="success">按重量计费</el-tag></span> </template> </el-table-column> ``` ``` <el-radio-group v-model="scope.row.exp_type" v-if="scope.row.edit"> <el-radio class="edit-input" :label="1">按件计费</el-radio> <el-radio class="edit-input" :label="2">按重量计费</el-radio> </el-radio-group> ``` ``` <el-radio class="edit-input" :label="1">按件计费</el-radio> ```