| | |
| | | <el-table-column label="序号" type="index" align="center" width="80"/> |
| | | <el-table-column label="质量手册" prop="fileName" align="center"> |
| | | <template #default="scope"> |
| | | <el-button link type="primary" @click="initFile(scope.row.companyName)">{{scope.row.companyName + scope.row.qualityName + '.docx'}}</el-button> |
| | | <el-button link type="primary" @click="initFile(scope.row)">{{scope.row.companyName + scope.row.qualityName + '.docx'}}</el-button> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="操作" align="center" class-name="small-padding fixed-width"> |
| | |
| | | } |
| | | } |
| | | const getDeptList = async (id) => { |
| | | const res = await getDepart({pageNum: 1, pageSize: 999, companyId: id}) |
| | | const res = await getDepart({pageNum: 1, pageSize: 999, responsType: 1, companyId: id}) |
| | | if(res.code == 200){ |
| | | data.deptList.children[0].children = res.data |
| | | }else{ |