diff --git a/src/components/AcceptAssignmentModal.vue b/src/components/AcceptAssignmentModal.vue
index a7a9d6a..932b41b 100644
--- a/src/components/AcceptAssignmentModal.vue
+++ b/src/components/AcceptAssignmentModal.vue
@@ -115,7 +115,8 @@ const success = async () => {
@click="v.is_use !== 0 && po.status === 0 ? selected = v.id : null"
v-for="(v, index) in vo"
class="!flex items-center py-[22rpx]">
-
+
diff --git a/src/components/TaskItem.vue b/src/components/TaskItem.vue
index 1bf72f7..f451b5a 100644
--- a/src/components/TaskItem.vue
+++ b/src/components/TaskItem.vue
@@ -13,7 +13,7 @@ const {data} = defineProps({
-
+
diff --git a/src/pages/taskDetails/components/TaskDetails.vue b/src/pages/taskDetails/components/TaskDetails.vue
index c2f287b..78b6bd9 100644
--- a/src/pages/taskDetails/components/TaskDetails.vue
+++ b/src/pages/taskDetails/components/TaskDetails.vue
@@ -57,12 +57,12 @@ const {data} = defineProps({
{{ data.comment_arr.intro }}
- 评论1:
+ 评论{{ index + 2 }}:
回复1:
- {{ data.comment_arr.intro }}
+ {{ v.intro }}
diff --git a/src/pages/taskDetails/index.vue b/src/pages/taskDetails/index.vue
index f50c380..5ed09fb 100644
--- a/src/pages/taskDetails/index.vue
+++ b/src/pages/taskDetails/index.vue
@@ -23,6 +23,7 @@ const ReviewCommunication = defineAsyncComponent(() => import('./components/Revi
// #endif
const details = ref(null);
+const home = ref(false);
const mainDetailWidth = ref(0);
const currentTabs = ref(0);
const tabs = reactive([
@@ -50,7 +51,8 @@ const getData = async (id) => {
}
onLoad((options) => {
- const {id} = options;
+ const {id, home: _home} = options;
+ home.value = _home === '1';
getData(id);
});
@@ -80,20 +82,23 @@ onMounted(() => {
{{ details.goods_name }}
- {{ details.status_text }}
+ {{
+ details.status_text
+ }}
+
-
+
{{ dayjs(details.end_time).format('YYYY-MM-DD HH:mm') }} 前可领取
- 任务编号:{{ details.is_use === 0 ? details.code : details.children.uid }}
+ 任务编号:{{ !home && details.is_use === 0 ? details.code : details.children.uid }}
复制
发布账号
@@ -154,7 +159,7 @@ onMounted(() => {
{
-
+
接受任务