This commit is contained in:
李志鹏
2026-04-27 13:17:45 +08:00
parent e453d1efd4
commit f77a2f2e01
3 changed files with 42 additions and 27 deletions

View File

@@ -25,8 +25,8 @@
<div class="and-profile-footer">
<template v-if="isEdit">
<div class="btns">
<button class="cancel" @click="onCancel">Cancel</button>
<button class="submit" @click="onSubmit">Save Change</button>
<button class="cancel" @click="onCancel()">Cancel</button>
<button class="submit" @click="onSubmit()">Save Change</button>
</div>
<p class="tip">Changes will be reflected on your Stylish Parade brand page.</p>
</template>
@@ -47,6 +47,7 @@
import ImageClipDialog from "./image-clip-dialog.vue"
import { useStore } from "vuex"
const store = useStore()
store.dispatch("seller/get_designerInfo")
const designerInfo = computed(() => store.state.seller.designerInfo)
const avatar = computed(() => designerInfo.value.avatar)
const banner = computed(() => designerInfo.value.brandBanner)
@@ -141,6 +142,7 @@
margin-bottom: 6rem;
> .bg {
position: relative;
min-height: 15rem;
> img {
width: 100%;
height: auto;

View File

@@ -65,7 +65,9 @@
</div>
</div>
</div>
<div class="null" v-show="list.length === 0 && !loading && finish">no data</div>
<div class="null" v-show="list.length === 0 && !loading && finish">
<img src="@/assets/images/homePage/null_img.png" alt="" />
</div>
<div class="placeholder" ref="placeholderRef" v-show="!loading"></div>
<div class="footer" :class="{ null: list.length === 0 }" v-if="!finish">
<a-spin :delay="0.5" v-show="loading" />
@@ -120,28 +122,33 @@
size: size.value
}
if (nameOrId.value) data.keyword = nameOrId.value
Https.axiosGet(Https.httpUrls.getSellerOrderList, { params: data }).then((res) => {
res.content?.forEach((v) => {
const obj = {
orderId: v.orderId,
items: v.items.map((item) => ({
id: item.productId,
url: item.thumbnailUrl,
title: item.productName
})),
price: "HK$ " + v.price,
username: v.buyerUsername,
date: v.date,
time: v.date
}
list.value.push(obj)
})
Https.axiosGet(Https.httpUrls.getSellerOrderList, { params: data })
.then((res) => {
res.content?.forEach((v) => {
const obj = {
orderId: v.orderId,
items: v.items.map((item) => ({
id: item.productId,
url: item.thumbnailUrl,
title: item.productName
})),
price: "HK$ " + v.price,
username: v.buyerUsername,
date: v.date,
time: v.date
}
list.value.push(obj)
})
total.value = res.total
page.value++
finish.value = page.value > total.value / size.value
loading.value = false
})
total.value = res.total
page.value++
finish.value = page.value > total.value / size.value
loading.value = false
})
.catch(() => {
finish.value = true
loading.value = false
})
}
const getSummary = () => {
Https.axiosGet(Https.httpUrls.getSellerOrderSummary).then((res) => {
@@ -360,8 +367,14 @@
}
> .null {
margin-top: 10rem;
text-align: center;
color: #999;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
> img {
width: 30rem;
height: auto;
}
}
> .footer {
min-height: 10rem;

View File

@@ -25,7 +25,7 @@
import myEvent from "@/tool/myEvents.js"
import { useStore } from "vuex"
const store = useStore()
store.dispatch("seller/get_designerInfo")
// store.dispatch("seller/get_designerInfo")
const route = useRoute()
const router = useRouter()
const visible = ref(false)