This commit is contained in:
X1627315083@163.com
2026-05-06 16:06:54 +08:00
parent 22aa7c37cd
commit a0fffa5896
8 changed files with 13 additions and 5 deletions

View File

@@ -1835,6 +1835,7 @@ export default {
draftMessage: '商品已保存为草稿。您可以继续编辑,或稍后在“我的商品”中发布。',
publishMessage: '商品现已上架。买家可以浏览并购买您的设计。',
ActiveListings: '已发布商品',
Praka: '线稿',
Drafts: '草稿',
Cancel: '取消',
Delete: '删除',

View File

@@ -1889,6 +1889,7 @@ export default {
draftMessage: 'Product moved to drafts and stats reset.',
publishMessage: 'Item is now live on the Marketplace.',
ActiveListings: 'Active Listings',
Praka: 'Praka',
Drafts: 'Drafts',
Cancel: 'Cancel',
Delete: 'Delete',

View File

@@ -283,7 +283,7 @@ const routes: Array<RouteRecordRaw> = [
name: "myListingsSelectItem",
meta: {
enter: "all",
sellerHeaderTitleKey: "Seller.SelectCollection",
sellerHeaderTitleKey: "Seller.SelectSketch",
sellerBreadcrumbs: [
myListingsBreadcrumb,
selectCollectionBreadcrumb,

View File

@@ -178,7 +178,7 @@ const {} = toRefs(data);
<div class="title">
<div class="left">
<i class="fi fi-rs-comments"></i>
<span>{{ $t('Seller.ActiveListings') }}</span>
<span>{{ $t('Seller.Praka') }}</span>
</div>
<div class="right">
<div class="generalModel_state">
@@ -317,6 +317,7 @@ const {} = toRefs(data);
margin: 0 auto;
overflow-y: auto;
align-content: flex-start;
min-width: 90%;
&::-webkit-scrollbar {
display: none;
}

View File

@@ -400,6 +400,7 @@ const { showDrafts } = toRefs(data);
margin: 0 auto;
align-items: flex-start;
overflow: auto;
min-width: 90%;
&::-webkit-scrollbar {
display: none;
}

View File

@@ -132,6 +132,7 @@ const {} = toRefs(data);
width: 100%;
height: 100%;
object-fit: cover;
background-color: #fff;
}
> .maskBtn{
position: absolute;

View File

@@ -41,7 +41,7 @@ const {} = toRefs(data);
</script>
<template>
<div class="myListings-seller">
<seller-header>
<seller-header :displayBack="false">
<template #right>
<div class="button" @click="newListing">
<span>{{ $t('Seller.newListing') }}</span>

View File

@@ -1,6 +1,6 @@
<template>
<div class="seller-header">
<div class="back" @click="() => router.back()">
<div class="back" v-if="displayBack" @click="() => router.back()">
<svg-icon name="seller-back" size="24" />
</div>
<div class="content">
@@ -55,13 +55,16 @@
defineProps<{
title?: string
tip?: string
displayBack?: boolean
breadcrumbs?: SellerBreadcrumbSource[]
}>(),
{
title: "",
tip: "",
breadcrumbs: () => []
breadcrumbs: () => [],
displayBack: true
}
)
const route = useRoute()
const router = useRouter()