2025-01-17 17:16:01 +08:00
|
|
|
<template>
|
2025-02-17 09:34:28 +08:00
|
|
|
<div ref="designDetailModal" class="designDetailModal" v-if="designDetailShow">
|
2025-01-17 17:16:01 +08:00
|
|
|
<!-- designDetailShow -->
|
|
|
|
|
<!-- :class="[driver__.driver?'hideEvents':'']" -->
|
|
|
|
|
<a-modal class="Guide_1_18 generalModel fullScreen"
|
|
|
|
|
v-model:visible="designDetailShow"
|
|
|
|
|
:footer="null"
|
|
|
|
|
:get-container="() => $refs.designDetailModal"
|
|
|
|
|
width="100%"
|
|
|
|
|
height="100%"
|
|
|
|
|
:maskClosable="false"
|
|
|
|
|
:mask="false"
|
|
|
|
|
:centered="true"
|
|
|
|
|
:keyboard="false"
|
2025-02-17 09:34:28 +08:00
|
|
|
:destroyOnClose="true"
|
2025-01-17 17:16:01 +08:00
|
|
|
:closable="false"
|
|
|
|
|
>
|
|
|
|
|
<div class="content">
|
|
|
|
|
<div class="nav">
|
|
|
|
|
<div class="back_home">
|
|
|
|
|
<div class="gallery_btn" @click="closeModal()">
|
|
|
|
|
<i class="fi fi-rs-house-chimney"></i>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="nav_list">
|
2025-02-17 09:34:28 +08:00
|
|
|
<div class="nav_item" :class="{active:currentDetailType == 'sketch'}" @click="setCurrentDetail('sketch')">
|
2025-01-17 17:16:01 +08:00
|
|
|
<img src="@/assets/images/icon/details_sketch.png" alt="">
|
|
|
|
|
<div class="detailText">Apparel</div>
|
|
|
|
|
</div>
|
2025-02-17 09:34:28 +08:00
|
|
|
<div class="nav_item" :class="{active:currentDetailType == 'print'}" @click="setCurrentDetail('print')">
|
2025-01-17 17:16:01 +08:00
|
|
|
<img src="@/assets/images/icon/details_print.png" alt="">
|
|
|
|
|
<div class="detailText">Print</div>
|
|
|
|
|
</div>
|
2025-02-17 09:34:28 +08:00
|
|
|
<div class="nav_item" :class="{active:currentDetailType == 'color'}" @click="setCurrentDetail('color')">
|
2025-01-17 17:16:01 +08:00
|
|
|
<img src="@/assets/images/icon/details_color.png" alt="">
|
|
|
|
|
<div class="detailText">Color</div>
|
|
|
|
|
</div>
|
2025-02-17 09:34:28 +08:00
|
|
|
<div class="nav_item" :class="{active:currentDetailType == 'element'}" @click="setCurrentDetail('element')">
|
2025-01-17 17:16:01 +08:00
|
|
|
<img src="@/assets/images/icon/details_elements.png" alt="">
|
|
|
|
|
<div class="detailText">Elements</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2025-02-17 09:34:28 +08:00
|
|
|
<div class="item detailLeft">
|
|
|
|
|
<detailLeft v-if="selectDetail && selectDetail.id && currentDetailType"></detailLeft>
|
2025-01-17 17:16:01 +08:00
|
|
|
</div>
|
2025-02-17 09:34:28 +08:00
|
|
|
<div class="item model">
|
|
|
|
|
<model ref="model"></model>
|
|
|
|
|
<div>
|
|
|
|
|
<div class="gallery_btn" @click="submit">Submit</div>
|
|
|
|
|
<div class="gallery_btn" @click="previwe">Preview</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="item detailRight">
|
|
|
|
|
<div class="submit">
|
|
|
|
|
</div>
|
|
|
|
|
<div class="contentRight" v-if="selectDetail && selectDetail.id && currentDetailType">
|
|
|
|
|
<detailRight></detailRight>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 画布 -->
|
|
|
|
|
<!-- <div class="content" v-else-if="selectDetail && selectDetail.id">
|
|
|
|
|
</div> -->
|
|
|
|
|
<div class="submit bottom">
|
|
|
|
|
</div>
|
2025-01-23 09:36:21 +08:00
|
|
|
</div>
|
2025-01-17 17:16:01 +08:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</a-modal>
|
|
|
|
|
<div class="mark_loading" v-show="loadingShow">
|
|
|
|
|
<a-spin size="large" />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
<script lang="ts">
|
2025-02-03 13:22:34 +08:00
|
|
|
import { defineComponent,computed,onBeforeUnmount,provide,nextTick,createVNode,toRefs, reactive} from 'vue'
|
2025-02-17 09:34:28 +08:00
|
|
|
import detailLeft from './detailLeft/index.vue'
|
2025-01-23 09:36:21 +08:00
|
|
|
import model from './model/index.vue'
|
2025-02-17 09:34:28 +08:00
|
|
|
import detailRight from './detailRight/index.vue'
|
2025-01-17 17:16:01 +08:00
|
|
|
|
|
|
|
|
// import setDesignItem from '@/component/Detail/setDesignItem2.vue'
|
|
|
|
|
import { ExclamationCircleOutlined } from '@ant-design/icons-vue';
|
|
|
|
|
import { Https } from "@/tool/https";
|
|
|
|
|
import { Modal,message } from 'ant-design-vue';
|
|
|
|
|
import {getUploadUrl,isMoible,setGradual} from '@/tool/util'
|
|
|
|
|
import { useStore } from "vuex";
|
|
|
|
|
import { openGuide,driverObj__ } from "@/tool/guide";
|
|
|
|
|
import { useI18n } from 'vue-i18n'
|
|
|
|
|
import addDetails from '@/component/Detail/addDetails.vue'
|
|
|
|
|
export default defineComponent({
|
|
|
|
|
components:{
|
2025-02-17 09:34:28 +08:00
|
|
|
detailLeft,model,detailRight
|
2025-01-17 17:16:01 +08:00
|
|
|
},
|
2025-02-17 09:34:28 +08:00
|
|
|
emits:['destroy'],
|
|
|
|
|
setup(props,{emit}) {
|
2025-01-17 17:16:01 +08:00
|
|
|
const store = useStore();
|
|
|
|
|
|
2025-02-17 09:34:28 +08:00
|
|
|
const detailDom = reactive({
|
|
|
|
|
model:null
|
|
|
|
|
})
|
2025-01-17 17:16:01 +08:00
|
|
|
const userDetail = computed(()=>{
|
|
|
|
|
return store.state.UserHabit.userDetail
|
|
|
|
|
})
|
|
|
|
|
const detailData = reactive({
|
2025-02-17 09:34:28 +08:00
|
|
|
designDetail:computed(()=>store.state.DesignDetailCopy.designDetail),
|
|
|
|
|
currentDetailType:computed(()=>store.state.DesignDetailCopy.currentDetailType),
|
|
|
|
|
selectDetail:computed(()=>store.state.DesignDetailCopy.selectDetail),
|
2025-02-03 13:22:34 +08:00
|
|
|
designDetailShow:false,
|
2025-01-17 17:16:01 +08:00
|
|
|
loadingShow:false,
|
|
|
|
|
})
|
|
|
|
|
const closeModal = ()=>{
|
|
|
|
|
detailData.designDetailShow = false
|
2025-02-17 09:34:28 +08:00
|
|
|
emit('destroy')
|
2025-01-17 17:16:01 +08:00
|
|
|
}
|
2025-02-03 16:07:17 +08:00
|
|
|
|
2025-01-24 13:41:13 +08:00
|
|
|
const showDesignDetailModal = (data:any,str:any)=>{
|
2025-02-17 09:34:28 +08:00
|
|
|
|
2025-01-24 13:41:13 +08:00
|
|
|
let url = Https.httpUrls.getDesignDetail + `?designItemId=${data.design.designItemId}&designPythonOutfitId=${data.design.designOutfitId}`
|
|
|
|
|
detailData.loadingShow = true
|
|
|
|
|
Https.axiosGet(url).then(
|
|
|
|
|
async (rv: any) => {
|
|
|
|
|
rv.clothes.forEach((item:any)=>{
|
|
|
|
|
let a
|
|
|
|
|
item.designType='Library'
|
|
|
|
|
if(item.layersObject[0].imageCategory.indexOf("back") == -1){
|
|
|
|
|
a = item.layersObject[0]
|
|
|
|
|
item.layersObject[0] = item.layersObject[1]
|
|
|
|
|
item.layersObject[1] = a
|
|
|
|
|
}
|
2025-02-17 09:34:28 +08:00
|
|
|
item.color.rgba = {
|
|
|
|
|
r:item.color.r,
|
|
|
|
|
g:item.color.g,
|
|
|
|
|
b:item.color.b,
|
|
|
|
|
}
|
|
|
|
|
if(item.gradient){
|
|
|
|
|
item.color.gradient = item.gradient
|
|
|
|
|
}
|
2025-01-24 13:41:13 +08:00
|
|
|
if(item.printObject.prints == null)item.printObject.prints = []
|
|
|
|
|
item.printObject.prints.forEach((element:any) => {
|
|
|
|
|
if(!element.designType){
|
|
|
|
|
element.designType = 'Library'
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
})
|
|
|
|
|
detailData.designDetailShow = true
|
2025-02-17 09:34:28 +08:00
|
|
|
store.commit('DesignDetailCopy/setDesignDetail',rv)
|
2025-01-24 13:41:13 +08:00
|
|
|
// this.deleteShow = false
|
|
|
|
|
|
|
|
|
|
setRevocation(rv,'')
|
|
|
|
|
// if(rv.singleOverall == 'overall'){
|
|
|
|
|
// this.body = false
|
|
|
|
|
// }else{
|
|
|
|
|
// this.body = true
|
|
|
|
|
// }
|
|
|
|
|
// await this.setImgSize()
|
|
|
|
|
// this.generateHighDesignImg = rv.highDesignUrl
|
|
|
|
|
// this.designDetailShow = true
|
|
|
|
|
detailData.loadingShow = false
|
|
|
|
|
// await this.setImgSize()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
).catch(rv=>{
|
|
|
|
|
detailData.loadingShow = false
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
const initialize = ()=>{//design后初始化
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sessionStorage.removeItem('oppositeRevocation')
|
|
|
|
|
sessionStorage.removeItem('revocation')
|
|
|
|
|
}
|
|
|
|
|
const setRevocation = (designItemDetail:any,data:any)=>{//设置撤销
|
|
|
|
|
|
2025-02-17 09:34:28 +08:00
|
|
|
}
|
|
|
|
|
const setCurrentDetail = (str:string)=>{
|
|
|
|
|
store.commit('DesignDetailCopy/setCurrentDetailType',str)
|
|
|
|
|
}
|
|
|
|
|
const setClothes = async (list:any)=>{
|
|
|
|
|
let clothesList:any = []
|
|
|
|
|
for(let i = 0;i<list.length;i++){
|
|
|
|
|
let {scale,offset,priority,maskUrl,maskMinioUrl} = (detailDom.model as any).getSubmitData(list[i])
|
|
|
|
|
let gradient = null
|
|
|
|
|
let newData = list[i]?.newDetail?.[detailData.currentDetailType]
|
|
|
|
|
let isCurrent = list[i].id == detailData?.selectDetail?.id
|
|
|
|
|
let data:any = {
|
|
|
|
|
changed:false,
|
|
|
|
|
color:(newData && detailData.currentDetailType == 'color' && isCurrent)?`${newData.rgba.r} ${newData.rgba.g} ${newData.rgba.b}`:`${list[i].color.rgba.r} ${list[i].color.rgba.g} ${list[i].color.rgba.b}`,
|
|
|
|
|
designType:(newData && detailData.currentDetailType == 'sketch' && isCurrent)?newData.designType:list[i].designType,
|
|
|
|
|
id:(newData && detailData.currentDetailType == 'sketch' && isCurrent)?newData.id:list[i].id,
|
|
|
|
|
// maskMinioUrl:'',
|
|
|
|
|
// maskUrl:'',
|
|
|
|
|
offset,
|
|
|
|
|
path:(newData && detailData.currentDetailType == 'sketch' && isCurrent)?newData.minIOPath:list[i].minIOPath,
|
|
|
|
|
printObject:list[i].printObject,
|
|
|
|
|
priority,
|
|
|
|
|
scale,
|
|
|
|
|
type:(newData && detailData.currentDetailType == 'sketch' && isCurrent)?newData.level2Type:list[i].type,
|
|
|
|
|
sketchString:'',
|
|
|
|
|
trims:list[i].trims,
|
|
|
|
|
}
|
|
|
|
|
if((list[i].color?.gradient || list[i].newDetail?.color?.gradient)){
|
|
|
|
|
gradient = list[i].newDetail?.color?.gradient || list[i].color.gradient
|
|
|
|
|
gradient.colorImg = await setGradual(gradient,320,700)
|
|
|
|
|
data.gradient = gradient
|
|
|
|
|
}
|
|
|
|
|
clothesList.push(data)
|
|
|
|
|
}
|
|
|
|
|
return clothesList
|
|
|
|
|
}
|
|
|
|
|
const getSubmitData = async (str:string)=>{
|
|
|
|
|
let workspace = store.state.Workspace.workspace
|
|
|
|
|
let clothes:any = await setClothes([detailData.selectDetail])
|
|
|
|
|
let data = {
|
|
|
|
|
designItemId:detailData.designDetail.designItemId,
|
|
|
|
|
designSingleItemDTOList:clothes,
|
|
|
|
|
isPreview:true,
|
|
|
|
|
// ifSubmit:designItemDetail.isPreview,
|
|
|
|
|
gender:workspace?.sex,
|
|
|
|
|
sketchString:'',
|
|
|
|
|
timeZone:Intl.DateTimeFormat().resolvedOptions().timeZone,
|
|
|
|
|
processId:userDetail.value.userId,
|
|
|
|
|
}
|
|
|
|
|
detailData.loadingShow = true
|
|
|
|
|
Https.axiosPost(Https.httpUrls.designSingle, data).then((rv)=>{
|
|
|
|
|
store.commit('DesignDetailCopy/setPraeview',rv)
|
|
|
|
|
detailData.loadingShow = false
|
|
|
|
|
}).catch(res=>{
|
|
|
|
|
detailData.loadingShow = false
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
const submit = async ()=>{
|
|
|
|
|
let workspace = store.state.Workspace.workspace
|
|
|
|
|
let clothes:any = await setClothes(detailData.designDetail.clothes)
|
|
|
|
|
let data = {
|
|
|
|
|
designItemId:detailData.designDetail.designItemId,
|
|
|
|
|
designSingleItemDTOList:clothes,
|
|
|
|
|
isPreview:false,
|
|
|
|
|
// ifSubmit:designItemDetail.isPreview,
|
|
|
|
|
gender:workspace?.sex,
|
|
|
|
|
sketchString:'',
|
|
|
|
|
timeZone:Intl.DateTimeFormat().resolvedOptions().timeZone,
|
|
|
|
|
processId:userDetail.value.userId,
|
|
|
|
|
}
|
|
|
|
|
detailData.loadingShow = true
|
|
|
|
|
Https.axiosPost(Https.httpUrls.designSingle, data).then((rv)=>{
|
|
|
|
|
// store.commit('DesignDetailCopy/setPraeview',rv)
|
|
|
|
|
let designCollectionList = store.state.HomeStoreModule.designCollectionList
|
|
|
|
|
let likeDesignCollectionList = store.state.HomeStoreModule.likeDesignCollectionList
|
|
|
|
|
designCollectionList.forEach((item:any) => {
|
|
|
|
|
if(item.designItemId == rv.designItemId){
|
|
|
|
|
item.designOutfitUrl = rv.designItemUrl
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
likeDesignCollectionList.forEach((item:any) => {
|
|
|
|
|
if(item.designItemId == rv.designItemId){
|
|
|
|
|
item.designOutfitUrl = rv.designItemUrl
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
store.commit('setDesignCollectionList',designCollectionList)
|
|
|
|
|
store.commit('setLikeDesignCollectionList',likeDesignCollectionList)
|
|
|
|
|
closeModal()
|
|
|
|
|
detailData.loadingShow = false
|
|
|
|
|
}).catch(res=>{
|
|
|
|
|
detailData.loadingShow = false
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
const previwe = ()=>{
|
|
|
|
|
let data = getSubmitData('preview')
|
|
|
|
|
store.dispatch('DesignDetailCopy/setSubmit',data)
|
2025-01-24 13:41:13 +08:00
|
|
|
}
|
2025-02-03 13:22:34 +08:00
|
|
|
onBeforeUnmount(()=>{
|
2025-02-17 09:34:28 +08:00
|
|
|
store.commit('DesignDetailCopy/clearDesignDetail')
|
2025-02-03 13:22:34 +08:00
|
|
|
})
|
2025-01-17 17:16:01 +08:00
|
|
|
return{
|
2025-02-17 09:34:28 +08:00
|
|
|
...toRefs(detailDom),
|
2025-01-17 17:16:01 +08:00
|
|
|
...toRefs(detailData),
|
|
|
|
|
closeModal,
|
2025-01-24 13:41:13 +08:00
|
|
|
showDesignDetailModal,
|
2025-02-17 09:34:28 +08:00
|
|
|
setCurrentDetail,
|
|
|
|
|
previwe,
|
|
|
|
|
submit,
|
2025-01-17 17:16:01 +08:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
provide() {
|
|
|
|
|
return {
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
mounted(){
|
|
|
|
|
let beforeunload = () => {
|
|
|
|
|
window.removeEventListener('beforeunload',beforeunload)
|
|
|
|
|
}
|
|
|
|
|
window.addEventListener('beforeunload',beforeunload)
|
|
|
|
|
// let url = Https.httpUrls.getDesignDetail + `?designItemId=34242&designPythonOutfitId=34004`
|
|
|
|
|
// this.loadingShow = true
|
|
|
|
|
// Https.axiosGet(url).then(
|
|
|
|
|
// async (rv: any) => {
|
|
|
|
|
// rv.clothes.forEach((item:any)=>{
|
|
|
|
|
// let a
|
|
|
|
|
// if(item.layersObject[0].imageCategory.indexOf("back") == -1){
|
|
|
|
|
// a = item.layersObject[0]
|
|
|
|
|
// item.layersObject[0] = item.layersObject[1]
|
|
|
|
|
// item.layersObject[1] = a
|
|
|
|
|
// }
|
|
|
|
|
// if(item.printObject.prints == null){
|
|
|
|
|
// item.printObject.prints = [{}]
|
|
|
|
|
// }
|
|
|
|
|
// })
|
|
|
|
|
// this.store.commit('setDesignItemDetail',rv)
|
|
|
|
|
// if(rv.others[0].printObject.path == null){
|
|
|
|
|
// this.body = false
|
|
|
|
|
// }else{
|
|
|
|
|
// this.body = true
|
|
|
|
|
// }
|
|
|
|
|
// this.setImgSize()
|
|
|
|
|
// this.generateHighDesignImg = rv.highDesignUrl
|
|
|
|
|
// this.designShowPrview = 1
|
|
|
|
|
// this.designDetailShow = true
|
|
|
|
|
// this.loadingShow = false
|
|
|
|
|
// }
|
|
|
|
|
// ).catch(rv=>{
|
|
|
|
|
// this.loadingShow = false
|
|
|
|
|
// })
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
</script>
|
|
|
|
|
<style lang="less" scoped>
|
|
|
|
|
:deep(.detailText){
|
|
|
|
|
font-size: 1.8rem;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
.designDetailModal{
|
2025-02-17 09:34:28 +08:00
|
|
|
position: absolute;
|
|
|
|
|
// top: -100%;
|
|
|
|
|
width: 100%;
|
2025-01-17 17:16:01 +08:00
|
|
|
height: 100%;
|
2025-02-17 09:34:28 +08:00
|
|
|
left: 50%;
|
|
|
|
|
top: 50%;
|
|
|
|
|
transform: translate(-50%,-50%);
|
|
|
|
|
z-index: 2;
|
2025-01-17 17:16:01 +08:00
|
|
|
:deep(.ant-modal-wrap){
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
}
|
|
|
|
|
.content{
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: flex-start;
|
|
|
|
|
height: 100%;
|
|
|
|
|
width: 100%;
|
|
|
|
|
> .item{
|
|
|
|
|
height: 100%;
|
2025-02-17 09:34:28 +08:00
|
|
|
&.detailLeft{
|
|
|
|
|
width: 34rem;
|
|
|
|
|
}
|
|
|
|
|
&.model{
|
|
|
|
|
width: 50rem;
|
|
|
|
|
margin: 0 10rem;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
|
|
|
|
&.detailRight{
|
|
|
|
|
flex: 1;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
padding-bottom: calc(6rem + 1rem);
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
> .contentRight{
|
|
|
|
|
display: flex;
|
|
|
|
|
flex: 1;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
> .submit{
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
&.bottom{
|
|
|
|
|
margin-top: 1rem;
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-01-17 17:16:01 +08:00
|
|
|
}
|
|
|
|
|
> .nav{
|
|
|
|
|
margin-right: 5rem;
|
|
|
|
|
> .back_home{
|
|
|
|
|
width: 9rem;
|
|
|
|
|
text-align: center;
|
|
|
|
|
> .gallery_btn{
|
|
|
|
|
width: 6rem;
|
|
|
|
|
height: 6rem;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
> .nav_list{
|
|
|
|
|
margin-top: 2.7rem;
|
|
|
|
|
height: 38rem;
|
|
|
|
|
width: 9rem;
|
|
|
|
|
background: #f4f4f4;
|
|
|
|
|
border-radius: 1.4rem;
|
|
|
|
|
padding: 1.4rem 0;
|
|
|
|
|
> .nav_item{
|
|
|
|
|
text-align: center;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: calc((38rem - 1.4rem * 2) / 4);
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
> img{
|
|
|
|
|
width: 4rem;
|
|
|
|
|
height: 3.6rem;
|
|
|
|
|
object-fit: contain;
|
|
|
|
|
}
|
|
|
|
|
&.active{
|
|
|
|
|
background: #bdbdbd;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-02-17 09:34:28 +08:00
|
|
|
|
2025-01-17 17:16:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
</style>
|