From 1f4fc0b0cc72832418213fec52d0e16285bad126 Mon Sep 17 00:00:00 2001 From: wangyang Date: Mon, 1 Sep 2025 09:38:24 +0800 Subject: [PATCH] =?UTF-8?q?CRM-=E8=B5=B0=E8=AE=BF=E5=AE=A1=E6=A0=B8,?= =?UTF-8?q?=E6=B3=A8=E9=87=8AgetUserInfo=E6=96=B9=E6=B3=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../CRM/marketActivity/auditReport.vue | 28 +++++++++---------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/src/pages/business/CRM/marketActivity/auditReport.vue b/src/pages/business/CRM/marketActivity/auditReport.vue index 8e87aa0..9590654 100644 --- a/src/pages/business/CRM/marketActivity/auditReport.vue +++ b/src/pages/business/CRM/marketActivity/auditReport.vue @@ -65,7 +65,7 @@ import { ref, reactive, onMounted } from 'vue' import MescrollUni from 'mescroll-uni/mescroll-uni.vue'; import { getNavBarPaddingTop } from '@/utils/system.js' import { onShow } from '@dcloudio/uni-app'; -import { getApprovalList, getUserInfo } from '../../../../api/crm/activity/activity'; +import { getApprovalList } from '../../../../api/crm/activity/activity'; let list = ref([]) @@ -80,7 +80,7 @@ onMounted(() => { const upOption = ref({ page: { num: 0, size: 10 }, noMoreSize: 5, - empty: { + empty: { tip: '~ 空空如也 ~', icon: "../../static/images/mescroll-empty.png" }, @@ -110,24 +110,24 @@ function upCallback(page) { getVisistList(page); } -onShow(() => { - getUserInfoMethod(); -}) +// onShow(() => { +// getUserInfoMethod(); +// }) let nickName = ref(); let deptName = ref(); let userId = ref(); let posts = ref(); -//获取用户信息 -function getUserInfoMethod() { - getUserInfo().then(res => { - nickName.value = res.user.nickName; - deptName.value = res.user.dept.deptName; - userId.value = res.user.userId; - posts.value = res.post; - }) -} +// //获取用户信息 +// function getUserInfoMethod() { +// getUserInfo().then(res => { +// nickName.value = res.user.nickName; +// deptName.value = res.user.dept.deptName; +// userId.value = res.user.userId; +// posts.value = res.post; +// }) +// } //查询待审批的列表信息 let dataList = ref([])