Update API request and styling

This commit is contained in:
wangqiao
2025-08-26 20:32:31 +08:00
parent 4263a0a235
commit bfa0f5e6bd
3 changed files with 17 additions and 16 deletions

View File

@ -92,7 +92,7 @@ export const signIn = () => {
* 获得用户积分记录分页 * 获得用户积分记录分页
*/ */
export const getUserPointPage = (params: { pageNo: number; pageSize: number }) => { export const getUserPointPage = (params: { pageNo: number; pageSize: number }) => {
return useFetchRequest.get<IResponse<PageResultMemberPointRecordRespVO>>('/prod-api/app-api/member/point/record/page', {query:params}) return useDollarFetchRequest.get<IResponse<PageResultMemberPointRecordRespVO>>('/prod-api/app-api/member/point/record/page', {query:params})
} }
/** /**
* 近期收益和近期活跃 * 近期收益和近期活跃

View File

@ -64,7 +64,7 @@
return return
} }
// 新开窗口 用router跳转 新窗口打开 // 新开窗口 用router跳转 新窗口打开
navigateTo('/upnew/drawe') navigateTo('/upnew')
} }
const dialogVisible = ref(false) const dialogVisible = ref(false)

View File

@ -1,24 +1,25 @@
<template> <template>
<div class="ml-23px box-border min-h-930px w-516px border border-[#EEEEEE] rounded-12px border-solid bg-[#FFFFFF] px-33px py-22px"> <div class="ml-[23px] box-border min-h-[930px] w-[516px] border border-[#EEEEEE] rounded-[12px] border-solid bg-[#FFFFFF] px-[33px] py-[22px]">
<div class="flex items-center"> <div class="flex items-center">
<img src="~/assets/images/preview.png" alt="" srcset="" width="16px" height="19px" /><span class="ml-7px text-18px text-[#333333] font-normal" <img src="~/assets/images/preview.png" alt="" srcset="" width="16px" height="19px" /><span class="ml-[7px] text-[18px] text-[#333333] font-normal"
>预览</span >预览</span
></div ></div
> >
<div class="mt-20px"> <div class="mt-[20px]">
<el-image :src="previewUrl" class="mb-16px max-h-320px max-w-460px min-h-200px" fit="contain"></el-image> <el-image :src="previewUrl" class="mb-[16px] max-h-[320px] max-w-[460px] min-h-[200px]" fit="contain"></el-image>
<span class="text-16px text-[#333333] font-normal">{{ previewName || '图纸标题' }}</span></div <span class="text-[16px] text-[#333333] font-normal">{{ previewName || '图纸标题' }}</span></div
> >
<div class="my-30px h-1px w-460px rounded-1px bg-[#EEEEEE]"></div> <div class="my-[30px] h-[1px] w-[460px] rounded-[1px] bg-[#EEEEEE]"></div>
<div class="flex items-center" <div class="flex items-center">
><img src="~/assets/images/tip.png" width="20px" height="20px" /><span class="ml-7px text-18px text-[#333333] font-normal" <img src="~/assets/images/tip.png" width="20px" height="20px" />
>上传遇到问题可以咨询</span <span class="ml-[7px] text-[18px] text-[#333333] font-normal">
></div 上传遇到问题可以咨询
> </span>
<div class="mt-20px text-center"><el-image src="https://picsum.photos/290/290?_t" alt="" srcset="" class="h-290px w290" /></div> </div>
<div class="mt-30px text-center text-16px text-[#333333] font-normal"> <div class="mt-[20px] text-center"><el-image src="https://picsum.photos/290/290?_t" alt="" srcset="" class="h-[290px] w-[290px]" /></div>
<div class="mt-[30px] text-center text-[16px] text-[#333333] font-normal">
<div>TEL13315189735 </div> <div>TEL13315189735 </div>
<div class="mt-4px">在线时间8:30-18:00</div> <div class="mt-[4px]">在线时间8:30-18:00</div>
</div> </div>
</div> </div>
</template> </template>