From e4c7bca105e64c047fbcd6bbb53ff5d32b0c5fd6 Mon Sep 17 00:00:00 2001
From: 张含笑 <zhx18749296735@163.com>
Date: Tue, 10 Jun 2025 14:19:29 +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