摘要: 项目场景:表格数据只能勾选一条数据,测试想把多选框换成单选框 <el-radio :label="scope.$index" v-model="templateRadio" @change.native="getTemplateRow(scope.$index,scope.row)"> 注意:1. 阅读全文
posted @ 2022-08-10 21:59 小白张先生 阅读(320) 评论(0) 推荐(0)
摘要: 1 将数组处理成tree结构 let treeData = [{ id: 1, pid: 0, name: '中国' },{ id: 2, pid: 0, name: '美国' }, { id: 3, pid: 1, name: '上海' }, { id: 4, pid: 1, name: '深圳' 阅读全文
posted @ 2022-08-10 21:35 小白张先生 阅读(279) 评论(0) 推荐(0)