| | |
| | | <div class="task-algorithm" v-if="showAlgorithm"> |
| | | <el-select |
| | | :teleported="false" |
| | | :style="{ width: setWidth }" |
| | | :style="{ width: pxToRem(setWidth) }" |
| | | v-model="ai_types" |
| | | multiple |
| | | collapse-tags |
| | |
| | | <div class="task-business" v-if="showBusiness"> |
| | | <el-select |
| | | :teleported="false" |
| | | :style="{ width: setWidth }" |
| | | :style="{ width: pxToRem(setWidth) }" |
| | | v-model="industry_type" |
| | | placeholder="请选择类型" |
| | | clearable |
| | |
| | | |
| | | <script setup> |
| | | import { getMultipleDictionary } from '@/api/job/task' |
| | | // import { pxToRem } from '@/utils/rem' |
| | | import { pxToRem } from '@/utils/rem' |
| | | |
| | | // 接收父组件传参 |
| | | const props = defineProps({ |