diff --git a/src/views/worksheet/aside/ListItem.vue b/src/views/worksheet/aside/ListItem.vue
index aec4360..bf855f4 100644
--- a/src/views/worksheet/aside/ListItem.vue
+++ b/src/views/worksheet/aside/ListItem.vue
@@ -45,7 +45,7 @@ onMounted(async () => {
@@ -104,15 +104,21 @@ onMounted(async () => {
}
.list-item-header-name {
- width: 226px;
+ width: 250px;
font-size: 16px;
font-family: PingFang SC, PingFang SC-Medium;
font-weight: 700;
color: #333333;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
margin-bottom: 0 0 8px 8px;
+ display: flex;
+ justify-content: space-between;
+ .list-item-title{
+ width: 200px;
+ display: inline-block;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ }
}
&-name {
diff --git a/src/views/worksheet/content/Content.vue b/src/views/worksheet/content/Content.vue
index 43d6ec2..8cdbce5 100644
--- a/src/views/worksheet/content/Content.vue
+++ b/src/views/worksheet/content/Content.vue
@@ -21,7 +21,7 @@ import { computed, onUnmounted, onUpdated, reactive, ref, unref, watch } from "v
import ConfrimModal from "../modal/ConfrimModal.vue";
import type { ApprovalParam, SimilarityPictureSortParam } from "/#/api";
-const batch = ref(false);
+const batch = ref(false); // 批量审批状态
const selectItems = ref([]);
const message = useMessage();
const dialog = useDialog();
@@ -370,7 +370,8 @@ function doAudit(param: any) {
}
function reloadList() {
- loadMore()
+ setBatch(false)
+ refreshHandler()
}
@@ -479,7 +480,7 @@ function reloadList() {
- 任务ID:{{ taskDetailInfo.taskname }}
+ 任务ID:{{ taskDetailInfo.taskname }}
-