diff --git a/src/views/final/content/ListContent.vue b/src/views/final/content/ListContent.vue index 9e176fe..f01c4ac 100644 --- a/src/views/final/content/ListContent.vue +++ b/src/views/final/content/ListContent.vue @@ -2,7 +2,8 @@ import { onMounted, ref } from "vue"; const item = { - img: "/src/assets/images/test.png", + // img: "/src/assets/images/test.png", + img:'http://47.93.59.251/api/image/thumbnail_1752999610491604992.jpeg', checked: false, title: "YP4567890545", date: "2023-12-19 12:09:18", @@ -10,7 +11,7 @@ const item = { const data = ref([]); onMounted(() => { - for (let i = 0; i < 10; i++) { + for (let i = 0; i < 20; i++) { data.value.push(item as any); } }); @@ -36,7 +37,7 @@ onMounted(() => { :key="index" :style="index == 2 ? 'color:#02C984' : 'color:#507AFD'" > - 待确认 + {{ index==1?'待确认':'张思' }} @@ -85,8 +86,7 @@ onMounted(() => { .title, .date { font-size: 11px; - font-family: PingFang SC, PingFang SC-Medium; - font-weight: Medium; + font-weight: bolder; text-align: left; color: #323233; line-height: 16px; @@ -101,8 +101,7 @@ onMounted(() => { width: 31px; height: 14px; font-size: 10px; - font-family: PingFang SC, PingFang SC-Regular; - font-weight: Regular; + font-weight: bolder; text-align: left; // color: #507afd; line-height: 14px; @@ -118,16 +117,14 @@ onMounted(() => { justify-content: flex-end; .resovle_action { font-size: 12px; - font-family: PingFang SC, PingFang SC-Medium; - font-weight: Medium; + font-weight: bolder; text-align: left; color: #507afd; line-height: 17px; } .reject_action { font-size: 12px; - font-family: PingFang SC, PingFang SC-Medium; - font-weight: Medium; + font-weight: bolder; text-align: left; color: #ff4e4f; line-height: 17px; diff --git a/src/views/final/index.vue b/src/views/final/index.vue index 9ef95fe..9e1e3b0 100644 --- a/src/views/final/index.vue +++ b/src/views/final/index.vue @@ -15,9 +15,10 @@ const showList = ref(false);