From 593c3dc1800cb03ad895856fdddecb29c0b44249 Mon Sep 17 00:00:00 2001
From: chenyao <1219716595@qq.com>
Date: Fri, 30 May 2025 18:31:31 +0800
Subject: [PATCH] feat: 优化或者修复任务管理
---
src/views/job/components/TaskAlgorithmBusiness.vue | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/views/job/components/TaskAlgorithmBusiness.vue b/src/views/job/components/TaskAlgorithmBusiness.vue
index d341fff..427e708 100644
--- a/src/views/job/components/TaskAlgorithmBusiness.vue
+++ b/src/views/job/components/TaskAlgorithmBusiness.vue
@@ -3,7 +3,7 @@
<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
@@ -18,7 +18,7 @@
<div class="task-business" v-if="showBusiness">
<el-select
:teleported="false"
- :style="{ width: setWidth }"
+ :style="{ width: pxToRem(setWidth) }"
v-model="industry_type"
placeholder="请选择类型"
clearable
@@ -31,7 +31,7 @@
<script setup>
import { getMultipleDictionary } from '@/api/job/task'
-// import { pxToRem } from '@/utils/rem'
+import { pxToRem } from '@/utils/rem'
// 接收父组件传参
const props = defineProps({
--
Gitblit v1.9.3