diff --git a/package.json b/package.json
index cadf53e..651b256 100644
--- a/package.json
+++ b/package.json
@@ -11,6 +11,7 @@
"prepare": "husky install"
},
"dependencies": {
+ "@arco-design/web-vue": "^2.42.0",
"@microsoft/fetch-event-source": "^2.0.1",
"@types/nprogress": "^0.2.0",
"@vueuse/core": "^9.12.0",
diff --git a/src/components/common-select/index.vue b/src/components/common-select/index.vue
index 3dcbc99..7ad2445 100644
--- a/src/components/common-select/index.vue
+++ b/src/components/common-select/index.vue
@@ -11,7 +11,7 @@
:allowClear="allClear"
:showSearch="allowSearch"
showArrow
- :maxTagCount="maxTagCount"
+ :maxTagCount="maxTagCount !== undefined ? maxTagCount : (multiple ? 3 : undefined)"
@change="handleChange"
:filterOption="allowSearch ? filterOption : undefined"
>
@@ -59,7 +59,7 @@ const props = defineProps({
},
maxTagCount: {
type: Number,
- default: 3,
+ default: undefined,
},
allClear: {
type: Boolean,
diff --git a/src/views/property-marketing/assignment-management/components/TaskDetail.vue b/src/views/property-marketing/assignment-management/components/TaskDetail.vue
deleted file mode 100644
index 0d3499c..0000000
--- a/src/views/property-marketing/assignment-management/components/TaskDetail.vue
+++ /dev/null
@@ -1,105 +0,0 @@
-
-
- {{ record.name || '-' }}
-