瀏覽代碼

Merge remote-tracking branch 'own/main' into main

EvilDragon 3 周之前
父節點
當前提交
077e578feb

+ 1 - 1
packages/app/src/core/libs/requests.ts

@@ -240,7 +240,7 @@ export const createCircleReview = (
   }>,
 ) => httpPost<any>('/app-api/member/circle-review/create', data)
 export const deleteCircleReview = (id) => httpGet('/app-api/member/circle-review/delete', { id })
-export const getCircleReviews = (query: { circleId: string }) =>
+export const getCircleReviews = (query: { circleId: string ,hot:boolean}) =>
   httpGet<{
     list: Comment[]
   }>('/app-api/member/circle-review/getCircleReviewByCircleId', query)

+ 2 - 0
packages/app/src/pages/home/activity/detail/index.vue

@@ -494,7 +494,9 @@ onShareTimeline(() => ({ title: data.value.name, imageUrl: data.value.thumbnailU
               <div class="text-justify text-white text-2xl font-bold font-['Alimama_ShuHeiTi']">
                 报名详情
               </div>
+              <div @click="listShow = true"><wd-icon name="close" size="22px" color="#ffff"></wd-icon></div>
             </div>
+
             <div class="flex flex-col justify-center aspect-[0.7/1] gap-5 p-6.5">
               <PageHelper
                 :request="isActivity ? getActivitySignups : getStudyTourSignups"

+ 2 - 1
packages/app/src/pages/home/components/comment-item.vue

@@ -13,6 +13,7 @@ import { dayjs } from 'wot-design-uni'
 import { storeToRefs } from 'pinia'
 import CommentItem from './comment-item.vue'
 import Avatar from '@/pages/common/components/avatar.vue'
+import {likeActived} from "@designer-hub/assets/src/icons";
 
 const props = withDefaults(
   defineProps<{ options: Partial<Comment>; isChild?: boolean; index?: number }>(),
@@ -136,7 +137,7 @@ defineExpose({
       </view>
       <view class="col-start-3 row-start-1 flex flex-col items-center" @click="handleUpvote">
         <div class="w-[18px] h-[18px] relative">
-          <wd-img :src="options.upvote ? thumbsUpActive : thumbsUp" width="18" height="18"></wd-img>
+          <wd-img :src="options.upvote ? likeActived : thumbsUp" width="18" height="18"></wd-img>
         </div>
         <div
           class="mt-1.5 text-black/40 text-[10px] font-normal font-['PingFang_SC'] leading-[10.18px]"

+ 19 - 5
packages/app/src/pages/home/moment/index.vue

@@ -52,11 +52,12 @@ const commentRef = ref<InstanceType<typeof WdInput>>()
 const commentItemRef = ref<InstanceType<typeof CommentItem>[]>()
 const instance = getCurrentInstance()
 const momentVideoRef = ref<ComponentExposed<typeof MomentVideo>[]>()
-
 const focus = ref(false)
+const hot = ref(true)
+const active = ref('hot');
 const { data, run } = useRequest(() => getCircle(id.value), { initialData: {} })
 const { data: reviews, run: runGetReviews } = useRequest(
-  () => getCircleReviews({ circleId: id.value }),
+  () => getCircleReviews({ circleId: id.value,hot:hot.value}),
   {
     initialData: {
       list: [],
@@ -175,6 +176,13 @@ onLoad(async (query?: { id: string; isShared?: boolean }) => {
 //   return { title: data.value?.circleDesc }
 // })
 onShareAppMessage(shareAppMessage)
+
+
+const handleClick = async (value:boolean) => {
+  active.value = value ? 'hot' : 'time';
+  hot.value = value
+  await runGetReviews()
+};
 </script>
 <template>
   <view class="bg-white flex-grow">
@@ -324,15 +332,21 @@ onShareAppMessage(shareAppMessage)
       <SectionHeading v-if="!isShared" :title="`评论`" size="base">
         <template #append>
           <view v-if="reviews?.list" class="flex">
-            <div class="text-black/90 text-xs font-normal font-['PingFang_SC'] leading-[10.18px]">
+            <div @click="handleClick(true)" :class="{
+        'text-black/90': active === 'hot',
+        'text-black/40': active !== 'hot'
+      }" class="text-black/40 text-xs font-normal font-['PingFang_SC'] leading-[10.18px]">
               按热度
             </div>
             <div
-              class="mx-2 text-black/40 text-xs font-normal font-['PingFang_SC'] leading-[10.18px]"
+              class="text-xs font-normal font-['PingFang_SC'] leading-[10.18px]"
             >
               |
             </div>
-            <div class="text-black/40 text-xs font-normal font-['PingFang_SC'] leading-[10.18px]">
+            <div @click="handleClick(false)"  :class="{
+        'text-black/90': active === 'time',
+        'text-black/40': active !== 'time'
+      }"  class="text-xs font-normal font-['PingFang_SC'] leading-[10.18px]">
               按时间
             </div>
           </view>

+ 2 - 2
packages/app/src/pages/mine/levels/components/level-card.vue

@@ -58,7 +58,7 @@ const isLowerThanCurrent = computed(() => {
     <template v-else-if="isLowerThanCurrent">
       <div class="text-[#61311b] text-xs font-normal font-['PingFang_SC'] leading-relaxed">
         <!--        还差{{ props.option[props.index]?.points - userInfo.level.point }}积分升级-->
-        距{{ option[index].memberLevelName }}会员还需{{
+        距{{ option[index].memberLevelName }}还需{{
           option[index].points - userInfo.level.point
         }}积分
       </div>
@@ -71,7 +71,7 @@ const isLowerThanCurrent = computed(() => {
     </template>
     <template v-else>
       <div class="text-[#61311b] text-xs font-normal font-['PingFang_SC'] leading-relaxed">
-        距{{ option[index + 1].memberLevelName }}会员还需{{
+        距{{ option[index + 1].memberLevelName }}还需{{
           option[index + 1].points - userInfo.level.point
         }}积分
       </div>

+ 1 - 1
packages/app/src/pages/mine/orders/detail/index.vue

@@ -102,7 +102,7 @@ onLoad((query: { id: string }) => {
       <template #append>
         <div class="flex items-center gap-1">
           <div class="text-[#ef4343] text-sm font-normal font-['PingFang_SC'] leading-[10.18px]">
-            -{{ Number(data.points) - Number(data.orderMoney) }}
+            -{{ Number(data.points) - Number(data.payPoints) }}
           </div>
           <wd-img :src="right" width="12" height="12"></wd-img>
         </div>

+ 5 - 1
packages/merchant/src/composables/followUp.ts

@@ -36,12 +36,16 @@ export const useFollowUp = () => {
       label: '备注',
       labelWidth: 64,
     },
+  })
+  const schemaTypeOffline = ref<DataFormSchema>({
     address: {
       // required: true,
       type: 'TextField',
       label: '地址',
       labelWidth: 64,
     },
+  })
+  const schemaTypeOnline = ref<DataFormSchema>({
     imgUrl: {
       required: true,
       type: 'ImageUploader',
@@ -60,5 +64,5 @@ export const useFollowUp = () => {
     // address: [{ required: true, message: '请输入地址' }],
     // images: [{ required: true, message: '请上传图片' }],
   })
-  return { schema, rules }
+  return { schema, rules, schemaTypeOffline, schemaTypeOnline }
 }

+ 1 - 1
packages/merchant/src/core/libs/agent-requests.ts

@@ -334,7 +334,7 @@ export const getPointsCounts = (query = {}) =>
         title: '当前剩余积分',
         value: res.data.points ?? 0,
         subTitle: '最近',
-        subValue: dayjs(res.data.pointsTime).format('YY/MM/DD'),
+        subValue: res.data.pointsTime ? dayjs(res.data.pointsTime).format('YY/MM/DD') : '--',
       },
       {
         userId: '',

+ 56 - 3
packages/merchant/src/layouts/tabbar.vue

@@ -3,6 +3,8 @@ import TabbarEvo from '@/components/tabbar-evo.vue'
 import { currRoute } from '../utils'
 import { defaultThemeVars } from '../core/themes/default'
 import DataForm from '@/components/data-form.vue'
+import { addUnit } from 'wot-design-uni/components/common/util'
+
 import { useUserStore } from '../store'
 import { storeToRefs } from 'pinia'
 import {
@@ -17,13 +19,20 @@ import { getDesignerList } from '../core/libs/requests'
 import { requestToast } from '@designer-hub/app/src/core/utils/common'
 import { createFollowUp } from '../core/libs/agent-requests'
 import { useFollowUp } from '../composables/followUp'
+import { success } from '@/core/libs/svgs'
 
 const userStore = useUserStore()
 const { userInfo, isAgent, isMerchant } = storeToRefs(userStore)
-const { schema, rules } = useFollowUp()
+const { schema, rules, schemaTypeOnline, schemaTypeOffline } = useFollowUp()
 const publishState = ref(false)
-const dataForm = ref({})
+const designerList = ref<any[]>([])
+const dataForm = ref({
+  stylistId: '',
+  followType: '1',
+})
 const dataFormRef = ref<ComponentExposed<typeof DataForm>>()
+const schemaTypeOfflineRef = ref<ComponentExposed<typeof DataForm>>()
+const schemaTypeOnlineRef = ref<ComponentExposed<typeof DataForm>>()
 const items = computed(() => {
   if (isAgent.value) {
     return [
@@ -34,7 +43,7 @@ const items = computed(() => {
         path: '/pages/home/index',
       },
       {
-        title: '发布',
+        title: '跟进',
         iconPath: addBlue,
         selectedIconPath: addBlue,
         path: '/pages/publish/index',
@@ -67,6 +76,10 @@ const items = computed(() => {
 })
 const handleTabbarItemClick = (path: string) => {
   if (path === '/pages/publish/index') {
+    if (schema.value.stylistId.props.columns.length > 0) {
+      const { value } = designerList.value[0]
+      dataForm.value.stylistId = value
+    }
     publishState.value = true
     return
   }
@@ -94,6 +107,17 @@ const handleSubmit = async () => {
     publishState.value = false
   }
 }
+const getCurrentLocation = () => {
+  console.log('点击地址')
+  uni.chooseAddress({
+    success: (success) => {
+      console.log('地理位置 成功', success)
+    },
+    fail: (fail) => {
+      console.log('获取地址失败', fail)
+    },
+  })
+}
 onMounted(async () => {
   const {
     data: { list },
@@ -106,6 +130,8 @@ onMounted(async () => {
     value: item.id,
     label: item.name,
   }))
+  designerList.value = schema.value.stylistId.props.columns
+  console.log('dataForm.value', designerList.value)
 })
 </script>
 
@@ -132,6 +158,33 @@ onMounted(async () => {
             direction="horizontal"
             v-model="dataForm"
           ></DataForm>
+          <!-- 根据 followType 值 区分 线下 线上 -->
+          <template v-if="dataForm.followType === '1'">
+            <div
+              class="grid mb-4 items-start"
+              :style="{ 'grid-template-columns': `${addUnit(64)} auto` }"
+            >
+              <label
+                class="text-sm font-normal leading-relaxed text-black/60 h-10 flex items-center"
+              >
+                地址
+              </label>
+              <div
+                class="wd-input h-[40px] lh-[40px] flex justify-between px-[20px]"
+                @click="getCurrentLocation"
+              >
+                <div>点击获取当前位置</div>
+                <wd-icon name="refresh" size="14px"></wd-icon>
+              </div>
+            </div>
+          </template>
+          <DataForm
+            ref="schemaTypeOnlineRef"
+            :schema="schemaTypeOnline"
+            :rules="rules"
+            direction="horizontal"
+            v-model="dataForm"
+          ></DataForm>
         </div>
         <div><wd-button block :round="false" @click="handleSubmit">提交</wd-button></div>
       </view>

+ 25 - 2
packages/merchant/src/pages/agent/designer/archives/index.vue

@@ -47,6 +47,7 @@ const tabs = [
 ]
 const id = ref()
 const { data: basicData, run: setBasicData } = useRequest(() => getDesignerBasicInfo(id.value))
+console.log('basicData::::', basicData)
 const query = computed(() => ({ userId: id.value }))
 const eventsQuery = computed(() => ({ type: '3' }))
 const actionSheetStatus = ref(false)
@@ -247,9 +248,31 @@ onShow(async () => {
           >
             <div class="flex items-center justify-between">
               <div class="text-black/40 text-base font-normal font-['PingFang_SC'] leading-none">
-                {{ (messages.objects.designerBasiceInfo as any)[key] }}
+                {{ (messages.objects?.designerBasiceInfo as any)[key] }}
               </div>
-              <DataRender v-bind="(renders.designerBasiceInfo as any)[key](value)"></DataRender>
+              <template v-if="key === 'avatar'">
+                <DataRender v-bind="{ type: 'Avatar', value: value }"></DataRender>
+              </template>
+              <template
+                v-else-if="key === 'birthday' || key === 'cooperationTime' || key === 'createTime'"
+              >
+                <DataRender v-bind="{ type: 'Date', value: value }"></DataRender>
+              </template>
+              <template v-else-if="key === 'sex'">
+                <DataRender
+                  v-bind="{
+                    type: 'Select',
+                    value: value,
+                    options: [
+                      { label: '男', value: 0 },
+                      { label: '女', value: 1 },
+                    ],
+                  }"
+                ></DataRender>
+              </template>
+              <template v-else>
+                <DataRender v-bind="{ type: 'Original', value: value }"></DataRender>
+              </template>
             </div>
             <!-- <SectionHeading size="base" :title="messages.objects.designerBasiceInfo[key]">
           <template #append>

+ 3 - 3
packages/merchant/src/pages/agent/designer/detail.vue

@@ -89,7 +89,7 @@ const browseRecordCountItems = computed(() => [
     subValue: browseRecordCount.value?.homeShareNumberYear ?? 0,
   },
   {
-    title: '分享浏览数',
+    title: '主页浏览数',
     subTitle: '本年',
     value: browseRecordCount.value?.shareViewNumber ?? 0,
     subValue: browseRecordCount.value?.shareViewNumberYear ?? 0,
@@ -148,8 +148,8 @@ onLoad(async (query) => {
       <div class="bg-white rounded-2xl shadow flex items-center p-4">
         <div class="relative">
           <wd-img width="64" height="64" round :src="data?.avatar"></wd-img>
-          <div v-if="data?.retryStatus" class="absolute right-0 bottom--1">
-            <wd-img width="14" height="14" :src="link" round custom-class="bg-[#ff9a9a]"></wd-img>
+          <div v-if="data?.retryStatus" class="absolute right-0 bottom-1">
+            <wd-img width="14" height="14" :src="link" round></wd-img>
           </div>
         </div>
         <div class="flex-1 ml-[11px]">

+ 30 - 6
packages/merchant/src/pages/agent/designer/index.vue

@@ -45,6 +45,7 @@ const filterQuery = ref<{
   minPoints?: string
   maxPoints?: string
   brokerId?: string
+  recommend?: boolean
 }>({
   tags: [],
   levels: [],
@@ -124,9 +125,9 @@ const createFollowUpSubmit = async () => {
 const handleSubmit = () => {
   query.value = {
     ...filterQuery.value,
-    tags: filterQuery.value.tags.join(','),
-    levels: filterQuery.value.levels.join(','),
-    retryStatus: filterQuery.value.retryStatus.join(','),
+    tags: filterQuery.value.tags ? filterQuery.value.tags.join(',') : '',
+    levels: filterQuery.value.levels ? filterQuery.value.levels.join(',') : '',
+    retryStatus: filterQuery.value.retryStatus ? filterQuery.value.retryStatus.join(',') : '',
   }
   filterState.value = false
 }
@@ -160,6 +161,7 @@ onLoad(async (params: { title?: string; filter?: string; tags?: string }) => {
           <div class="flex-1">
             <wd-search
               v-model="searchText"
+              placeholder="输入设计师姓名模糊搜索"
               @focus="searchFocus"
               @blur="searchBlur"
               @search="search"
@@ -200,13 +202,20 @@ onLoad(async (params: { title?: string; filter?: string; tags?: string }) => {
                           </div>
 
                           <div
-                            class="h-4 bg-neutral-100 rounded-[20px] justify-start items-center inline-flex flex-row ml-[9px]"
+                            class="h-4 rounded-[20px] justify-start items-center inline-flex flex-row ml-[9px]"
                           >
+                            <div
+                              v-if="!it.recommend"
+                              class="text-[10px] bg-[#fff3e4] px-[4px] py-[4px] c-[#f2a64f] rounded-[3px]"
+                            >
+                              推荐设计师
+                            </div>
                             <wd-img
                               v-if="it.levelId"
                               width="63"
                               height="18.6"
-                              :src="getMemberLevelLogo(it.levelId)"
+                              custom-class="ml-[9px]"
+                              :src="getMemberLevelLogo(Number(it.levelId))"
                             ></wd-img>
                           </div>
                         </div>
@@ -398,7 +407,22 @@ onLoad(async (params: { title?: string; filter?: string; tags?: string }) => {
           </wd-checkbox>
         </template>
       </wd-checkbox-group>
-      <div class="flex gap-4">
+      <SectionHeading title="推荐设计师"></SectionHeading>
+      <wd-checkbox-group shape="button" v-model="filterQuery.recommend">
+        <template
+          v-for="(tag, index) in [
+            // { label: '全部', value: '' },
+            { label: '否', value: false },
+            { label: '是', value: true },
+          ]"
+          :key="index"
+        >
+          <wd-checkbox custom-class="w-50%!" :model-value="tag.value">
+            {{ tag.label }}
+          </wd-checkbox>
+        </template>
+      </wd-checkbox-group>
+      <div class="flex gap-4 pt-[10px]">
         <div class="flex-1">
           <wd-button block :round="false" @click="handleReset">重置</wd-button>
         </div>

+ 7 - 1
packages/merchant/src/pages/agent/report-infos/index.vue

@@ -31,6 +31,9 @@ const handleDelete = async (reportInfo: ReportInfo) => {
   })
   pageHelperRef.value?.refresh()
 }
+onShow(async () => {
+  pageHelperRef.value?.refresh()
+})
 </script>
 <template>
   <div class="flex-grow flex flex-col">
@@ -69,7 +72,10 @@ const handleDelete = async (reportInfo: ReportInfo) => {
                 <template
                   v-for="(item, index) in [
                     { label: '店面名称', value: it.shopName },
-                    { value: it.arrivalTime, label: '到店时间' },
+                    {
+                      value: dayjs(it.arrivalTime).format('YYYY-MM-DD hh:mm:ss'),
+                      label: '到店时间',
+                    },
                     { value: it.receptionist, label: '接待人员' },
                     { value: it.contactNumber, label: '联系电话' },
                     { value: it.customerName, label: '客户姓名' },

+ 19 - 2
packages/merchant/src/pages/common/auth/change-password/index.vue

@@ -14,6 +14,11 @@ import { requestToast } from '@designer-hub/app/src/core/utils/common'
 const userStore = useUserStore()
 const { userInfo } = storeToRefs(userStore)
 const dataFormRef = ref<ComponentExposed<typeof DataForm>>()
+const formData = ref({
+  oldPassword: '',
+  newPassword: '',
+  confirmPassword: '',
+})
 const schema = ref<DataFormSchema>({
   oldPassword: {
     type: 'TextField',
@@ -43,12 +48,24 @@ const schema = ref<DataFormSchema>({
     },
   },
 })
+const confirmPasswordValidator = (val: any) => {
+  if (!val) {
+    return false
+  }
+  if (formData.value?.newPassword?.trim() === '') {
+    return Promise.reject('请输入新密码')
+  }
+  if (formData.value?.newPassword !== formData.value?.confirmPassword) {
+    return Promise.reject('输入两次新密码不一致')
+  }
+}
 const rules = ref({
   oldPassword: [{ required: true, message: '请输入旧密码' }],
   newPassword: [{ required: true, message: '请输入新密码' }],
-  confirmPassword: [{ required: true, message: '请再次输入新密码' }],
+  confirmPassword: [
+    { required: true, message: '请再次输入新密码', validator: confirmPasswordValidator },
+  ],
 })
-const formData = ref({})
 const submitDisabled = computed(() => ({}))
 const handleSubmit = async () => {
   // const data = await dataFormRef.value?.validate()

+ 35 - 11
packages/merchant/src/pages/home/merchant/add-reporting-information.vue

@@ -3,6 +3,7 @@
 </route>
 <script setup lang="ts">
 import dayjs from 'dayjs'
+import { ComponentExposed } from 'vue-component-type-helpers'
 import { DataFormSchema } from '../../../components/data-form'
 import DataForm from '../../../components/data-form.vue'
 import { createReportInfo, getDesignerList } from '../../../core/libs/requests'
@@ -80,6 +81,7 @@ const customerSchema = ref<DataFormSchema>({
     type: 'TextField',
     label: '客户姓名:',
     labelWidth: 84,
+    required: true,
     props: {
       placeholder: '请输入客户姓名',
     },
@@ -101,17 +103,31 @@ const customerSchema = ref<DataFormSchema>({
     },
   },
 })
+const rules = ref({
+  customerName: [{ required: true, message: '请填写客户姓名' }],
+})
+const customInfoRef = ref<ComponentExposed<typeof DataForm>>()
 const SubmitClick = async () => {
+  console.log(await customInfoRef.value!.validate())
+  const { valid } = await customInfoRef.value!.validate()
+  const submitForm = formData.value
   console.log(formData.value)
-  formData.value.stylistName = stylistIdName.value
-  uni.showLoading()
-  const { code, msg } = await createReportInfo(formData.value)
-  uni.hideLoading()
-  if (code === 0) {
-    uni.showToast({
-      title: '上报成功',
-      icon: 'none',
-    })
+  if (valid) {
+    submitForm.stylistName = stylistIdName.value
+    submitForm.arrivalTime = new Date(formData.value.arrivalTime).getTime()
+    uni.showLoading()
+    const { code, msg } = await createReportInfo(submitForm)
+    uni.hideLoading()
+    if (code === 0) {
+      uni
+        .showToast({
+          title: '上报成功',
+          icon: 'none',
+        })
+        .then(() => {
+          uni.navigateBack()
+        })
+    }
   }
 }
 const getDesInfo = async () => {
@@ -137,10 +153,18 @@ onMounted(async () => {
     </div>
     <div>客户信息</div>
     <div class="mt-1">
-      <data-form :schema="customerSchema" :direction="'horizontal'" v-model="formData" />
+      <data-form
+        ref="customInfoRef"
+        :schema="customerSchema"
+        :direction="'horizontal'"
+        :rules="rules"
+        v-model="formData"
+      />
     </div>
     <div class="flex-1"></div>
-    <div><wd-button block :round="false" @click="SubmitClick">提交</wd-button></div>
+    <div>
+      <wd-button block :round="false" @click="SubmitClick">提交</wd-button>
+    </div>
   </div>
 </template>
 

+ 0 - 1
packages/merchant/src/pages/home/merchant/mine.vue

@@ -6,7 +6,6 @@ style:
 </route>
 <script lang="ts" setup>
 import { desinTopBg } from '@designer-hub/assets/src/svgs'
-
 </script>
 
 <template>

+ 8 - 8
packages/merchant/src/pages/mine/index.vue

@@ -86,16 +86,16 @@ onPageScroll(({ scrollTop }: { scrollTop: number }) => {
             <wd-img width="64" height="64" round :src="data?.avatar" />
           </div>
           <div class="ml-[10px]">
-            <div class="text-black/90 text-lg font-normal font-['PingFang_SC'] leading-[10.18px]">
+            <div class="text-black/90 text-lg font-normal font-['PingFang_SC'] leading-[10.18px] "  style="margin-top: -5px;">
               商家:{{ data?.vendorName }}
             </div>
-            <div
-              class="h-6 px-1.5 py-1 bg-[#f5f6fa] rounded justify-center items-center gap-2.5 inline-flex mt-[17px]"
-            >
-              <div class="text-[#8b8b8b] text-xs font-normal font-['PingFang_SC'] leading-none">
-                ID:{{ data?.id }}
-              </div>
-            </div>
+<!--            <div-->
+<!--              class="h-6 px-1.5 py-1 bg-[#f5f6fa] rounded justify-center items-center gap-2.5 inline-flex mt-[17px]"-->
+<!--            >-->
+<!--              <div class="text-[#8b8b8b] text-xs font-normal font-['PingFang_SC'] leading-none">-->
+<!--                {{ data?.id }}-->
+<!--              </div>-->
+<!--            </div>-->
           </div>
         </div>
         <div class="flex items-center mt-[20px]">

+ 8 - 8
packages/merchant/src/pages/mine/merchant/merchant_settings.vue

@@ -37,14 +37,14 @@ onMounted(async () => {
           {{ data?.vendorName }}
         </div>
       </div>
-      <div class="flex justify-between items-center mb-[30px]">
-        <div class="text-black/40 text-sm font-normal font-['PingFang_SC'] leading-none">ID</div>
-        <div
-          class="text-right text-[#999999] text-sm font-normal font-['PingFang_SC'] leading-none"
-        >
-          {{ data?.id }}
-        </div>
-      </div>
+<!--      <div class="flex justify-between items-center mb-[30px]">-->
+<!--        <div class="text-black/40 text-sm font-normal font-['PingFang_SC'] leading-none">ID</div>-->
+<!--        <div-->
+<!--          class="text-right text-[#999999] text-sm font-normal font-['PingFang_SC'] leading-none"-->
+<!--        >-->
+<!--          {{ data?.id }}-->
+<!--        </div>-->
+<!--      </div>-->
       <div class="flex justify-between items-center mb-[30px]">
         <div class="text-black/40 text-sm font-normal font-['PingFang_SC'] leading-none">
           登录用户