fix
This commit is contained in:
@@ -1835,6 +1835,7 @@ export default {
|
|||||||
draftMessage: '商品已保存为草稿。您可以继续编辑,或稍后在“我的商品”中发布。',
|
draftMessage: '商品已保存为草稿。您可以继续编辑,或稍后在“我的商品”中发布。',
|
||||||
publishMessage: '商品现已上架。买家可以浏览并购买您的设计。',
|
publishMessage: '商品现已上架。买家可以浏览并购买您的设计。',
|
||||||
ActiveListings: '已发布商品',
|
ActiveListings: '已发布商品',
|
||||||
|
Praka: '线稿',
|
||||||
Drafts: '草稿',
|
Drafts: '草稿',
|
||||||
Cancel: '取消',
|
Cancel: '取消',
|
||||||
Delete: '删除',
|
Delete: '删除',
|
||||||
|
|||||||
@@ -1889,6 +1889,7 @@ export default {
|
|||||||
draftMessage: 'Product moved to drafts and stats reset.',
|
draftMessage: 'Product moved to drafts and stats reset.',
|
||||||
publishMessage: 'Item is now live on the Marketplace.',
|
publishMessage: 'Item is now live on the Marketplace.',
|
||||||
ActiveListings: 'Active Listings',
|
ActiveListings: 'Active Listings',
|
||||||
|
Praka: 'Praka',
|
||||||
Drafts: 'Drafts',
|
Drafts: 'Drafts',
|
||||||
Cancel: 'Cancel',
|
Cancel: 'Cancel',
|
||||||
Delete: 'Delete',
|
Delete: 'Delete',
|
||||||
|
|||||||
@@ -283,7 +283,7 @@ const routes: Array<RouteRecordRaw> = [
|
|||||||
name: "myListingsSelectItem",
|
name: "myListingsSelectItem",
|
||||||
meta: {
|
meta: {
|
||||||
enter: "all",
|
enter: "all",
|
||||||
sellerHeaderTitleKey: "Seller.SelectCollection",
|
sellerHeaderTitleKey: "Seller.SelectSketch",
|
||||||
sellerBreadcrumbs: [
|
sellerBreadcrumbs: [
|
||||||
myListingsBreadcrumb,
|
myListingsBreadcrumb,
|
||||||
selectCollectionBreadcrumb,
|
selectCollectionBreadcrumb,
|
||||||
|
|||||||
@@ -178,7 +178,7 @@ const {} = toRefs(data);
|
|||||||
<div class="title">
|
<div class="title">
|
||||||
<div class="left">
|
<div class="left">
|
||||||
<i class="fi fi-rs-comments"></i>
|
<i class="fi fi-rs-comments"></i>
|
||||||
<span>{{ $t('Seller.ActiveListings') }}</span>
|
<span>{{ $t('Seller.Praka') }}</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="right">
|
<div class="right">
|
||||||
<div class="generalModel_state">
|
<div class="generalModel_state">
|
||||||
@@ -317,6 +317,7 @@ const {} = toRefs(data);
|
|||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
align-content: flex-start;
|
align-content: flex-start;
|
||||||
|
min-width: 90%;
|
||||||
&::-webkit-scrollbar {
|
&::-webkit-scrollbar {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -400,6 +400,7 @@ const { showDrafts } = toRefs(data);
|
|||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
align-items: flex-start;
|
align-items: flex-start;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
|
min-width: 90%;
|
||||||
&::-webkit-scrollbar {
|
&::-webkit-scrollbar {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -132,6 +132,7 @@ const {} = toRefs(data);
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
object-fit: cover;
|
object-fit: cover;
|
||||||
|
background-color: #fff;
|
||||||
}
|
}
|
||||||
> .maskBtn{
|
> .maskBtn{
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
|||||||
@@ -41,7 +41,7 @@ const {} = toRefs(data);
|
|||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
<div class="myListings-seller">
|
<div class="myListings-seller">
|
||||||
<seller-header>
|
<seller-header :displayBack="false">
|
||||||
<template #right>
|
<template #right>
|
||||||
<div class="button" @click="newListing">
|
<div class="button" @click="newListing">
|
||||||
<span>{{ $t('Seller.newListing') }}</span>
|
<span>{{ $t('Seller.newListing') }}</span>
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="seller-header">
|
<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" />
|
<svg-icon name="seller-back" size="24" />
|
||||||
</div>
|
</div>
|
||||||
<div class="content">
|
<div class="content">
|
||||||
@@ -55,13 +55,16 @@
|
|||||||
defineProps<{
|
defineProps<{
|
||||||
title?: string
|
title?: string
|
||||||
tip?: string
|
tip?: string
|
||||||
|
displayBack?: boolean
|
||||||
breadcrumbs?: SellerBreadcrumbSource[]
|
breadcrumbs?: SellerBreadcrumbSource[]
|
||||||
}>(),
|
}>(),
|
||||||
{
|
{
|
||||||
title: "",
|
title: "",
|
||||||
tip: "",
|
tip: "",
|
||||||
breadcrumbs: () => []
|
breadcrumbs: () => [],
|
||||||
|
displayBack: true
|
||||||
}
|
}
|
||||||
|
|
||||||
)
|
)
|
||||||
const route = useRoute()
|
const route = useRoute()
|
||||||
const router = useRouter()
|
const router = useRouter()
|
||||||
|
|||||||
Reference in New Issue
Block a user