| | |
| | | <div style="margin-bottom: 50px"> |
| | | <div class="fTop"> |
| | | <span style="font-weight: 600">固定选用部分</span> |
| | | <el-button type="primary" style="width: 100px" @click="chooseExpert('选取专家')">选取专家</el-button> |
| | | <el-button type="primary" :disabled="state.info.step == 4" style="width: 100px" @click="chooseExpert('选取专家')">选取专家</el-button> |
| | | </div> |
| | | <el-table v-loading="fLoading" :data="fixedDataList" :border="true" ref="fTableRef" style="width: 100%;"> |
| | | <el-table-column label="姓名" prop="name" align="center" /> |
| | |
| | | <el-table-column label="专业领域" prop="domain" align="center" /> |
| | | <el-table-column fixed="right" label="操作" align="center" class-name="small-padding fixed-width" width="180"> |
| | | <template #default="scope"> |
| | | <el-button link type="primary" @click="delF(scope.row)" >删除</el-button> |
| | | <el-button link type="primary" @click="delF(scope.row)" :disabled="state.info.step == 4">删除</el-button> |
| | | </template> |
| | | </el-table-column> |
| | | </el-table> |
| | |
| | | style="width: 100%" |
| | | v-model="expertType" |
| | | :options="domainList" |
| | | :props="{ expandTrigger: 'hover',value: 'id',label: 'classifyName',multiple: true }" |
| | | :props="{ expandTrigger: 'hover',value: 'classifyName',label: 'classifyName',multiple: true }" |
| | | @change="professionChange" |
| | | collapse-tags |
| | | collapse-tags-tooltip |
| | |
| | | </el-col> |
| | | <el-col :span="8"> |
| | | <el-form-item style="float: right;"> |
| | | <el-button style="width: 100px;margin-right: -32px;" type="primary" @click="random">随机抽取</el-button> |
| | | <el-button style="width: 100px;margin-right: -32px;" :disabled="state.info.step == 4" type="primary" @click="random">随机抽取</el-button> |
| | | </el-form-item> |
| | | </el-col> |
| | | </el-row> |
| | |
| | | <el-table-column label="专业领域" prop="domain" align="center" /> |
| | | <el-table-column fixed="right" label="操作" align="center" class-name="small-padding fixed-width" width="180"> |
| | | <template #default="scope"> |
| | | <el-button link type="primary" @click="delR(scope.row)" >删除</el-button> |
| | | <el-button link type="primary" @click="delR(scope.row)" :disabled="state.info.step == 4">删除</el-button> |
| | | </template> |
| | | </el-table-column> |
| | | </el-table> |
| | |
| | | saveData: [], |
| | | delData: [] |
| | | }, |
| | | info: {}, |
| | | levelList: [ |
| | | { |
| | | id: 1, |
| | |
| | | if(res.code == 200){ |
| | | fixedDataList.value = res.data.projectExpertCheckResp.filter(item => item.selectionMode === 1) |
| | | randomDataList.value = res.data.projectExpertCheckResp.filter(item => item.selectionMode === 2) |
| | | state.info = res.data |
| | | console.log('res',fixedDataList.value) |
| | | }else{ |
| | | ElMessage.warning(res.message) |