From 8319ffce59231086ed593f8f7a86bd891b06055c Mon Sep 17 00:00:00 2001 From: liting <994745334@qq.com> Date: Tue, 16 Apr 2024 17:16:22 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/apply/apply/index.vue | 38 ++++++++++++++++++++++----------- 1 file changed, 26 insertions(+), 12 deletions(-) diff --git a/src/views/apply/apply/index.vue b/src/views/apply/apply/index.vue index c1ea6834f..b26da3ba4 100644 --- a/src/views/apply/apply/index.vue +++ b/src/views/apply/apply/index.vue @@ -121,15 +121,19 @@ - - - - - - - - - + + + + +
+

{{item.creatorName}}

+ {{item.status}} +
+

{{item.comment}}

+
+
+ +
@@ -148,7 +152,7 @@ const Visible1 = ref(false) // 监听器 显示状态 const listenerFieldForm = ref({}) // 监听器 注入字段 详情表单 const loading = ref(true) // 列表的加载中 const list = ref([]) // 列表的数据 -const listRecord = ref([]) // 审核列表的数据 + const listRecord = ref([]) // 审核列表的数据 const total = ref(0) // 列表的总页数 const queryParams = reactive({ pageNo: 1, @@ -253,7 +257,7 @@ const saveListenerFiled = async () => { const aduitRecord = async (id?: number) => { try { const data = await MainApi.getRecordList(id) - Visible1.value = true + Visible1.value = true listRecord.value = data.list } finally { } @@ -263,4 +267,14 @@ const aduitRecord = async (id?: number) => { onMounted(() => { getList() }) - \ No newline at end of file + + \ No newline at end of file