Compare commits
3 Commits
fd02219251
...
f963336f8b
Author | SHA1 | Date | |
---|---|---|---|
f963336f8b | |||
4561319933 | |||
1bf55e3308 |
9
src/api/cn-coach-outlet-spider.js
Normal file
9
src/api/cn-coach-outlet-spider.js
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
import {mande} from "mande";
|
||||||
|
|
||||||
|
const cnCoachOutletSpider = mande('/api/v1/spider/cn/coach-outlet')
|
||||||
|
|
||||||
|
export const GetCNCoachOutletSpiderGlobalCalculate = ()=> cnCoachOutletSpider.get("global/calculate")
|
||||||
|
export const DeleteCNCoachOutletSpiderGlobalCalculate = (id)=> cnCoachOutletSpider.delete(`global/calculate/u/${id}`)
|
||||||
|
export const SaveCNCoachOutletSpiderGlobalCalculate = (data)=> cnCoachOutletSpider.post("global/calculate",data)
|
||||||
|
export const DeleteCNCoachOutletSpiderCalculate = (id)=> cnCoachOutletSpider.delete(`calculate/u/${id}`)
|
||||||
|
export const SaveCNCoachOutletSpiderCalculate = (data)=> cnCoachOutletSpider.post("calculate",data)
|
9
src/api/cn-coach-spider.js
Normal file
9
src/api/cn-coach-spider.js
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
import {mande} from "mande";
|
||||||
|
|
||||||
|
const cnCoachSpider = mande('/api/v1/spider/cn/coach')
|
||||||
|
|
||||||
|
export const GetCNCoachSpiderGlobalCalculate = ()=> cnCoachSpider.get("global/calculate")
|
||||||
|
export const DeleteCNCoachSpiderGlobalCalculate = (id)=> cnCoachSpider.delete(`global/calculate/u/${id}`)
|
||||||
|
export const SaveCNCoachSpiderGlobalCalculate = (data)=> cnCoachSpider.post("global/calculate",data)
|
||||||
|
export const DeleteCNCoachSpiderCalculate = (id)=> cnCoachSpider.delete(`calculate/u/${id}`)
|
||||||
|
export const SaveCNCoachSpiderCalculate = (data)=> cnCoachSpider.post("calculate",data)
|
@ -1,7 +0,0 @@
|
|||||||
import {mande} from "mande";
|
|
||||||
|
|
||||||
const spider = mande('/api/v1/spider')
|
|
||||||
|
|
||||||
export const GetSpiderCfg = ()=> spider.get("cfg")
|
|
||||||
|
|
||||||
export const SetSpiderCfg = (cfg)=> spider.post("cfg",cfg)
|
|
12
src/api/us-coach-outlet-spider.js
Normal file
12
src/api/us-coach-outlet-spider.js
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
import {mande} from "mande";
|
||||||
|
|
||||||
|
const usCoachOutletSpider = mande('/api/v1/spider/us/coach-outlet')
|
||||||
|
|
||||||
|
export const GetUSCoachOutletSpiderCfg = ()=> usCoachOutletSpider.get("cfg")
|
||||||
|
|
||||||
|
export const SetUSCoachOutletSpiderCfg = (cfg)=> usCoachOutletSpider.post("cfg",cfg)
|
||||||
|
export const GetUSCoachOutletSpiderGlobalCalculate = ()=> usCoachOutletSpider.get("global/calculate")
|
||||||
|
export const DeleteUSCoachOutletSpiderGlobalCalculate = (id)=> usCoachOutletSpider.delete(`global/calculate/u/${id}`)
|
||||||
|
export const SaveUSCoachOutletSpiderGlobalCalculate = (data)=> usCoachOutletSpider.post("global/calculate",data)
|
||||||
|
export const DeleteUSCoachOutletSpiderCalculate = (id)=> usCoachOutletSpider.delete(`calculate/u/${id}`)
|
||||||
|
export const SaveUSCoachOutletSpiderCalculate = (data)=> usCoachOutletSpider.post("calculate",data)
|
@ -1,7 +1,8 @@
|
|||||||
export const WEBSITES = {
|
export const WEBSITES = {
|
||||||
UNKNOWN: 0,
|
UNKNOWN: 0,
|
||||||
US_COACH_OUTLET: 1,
|
US_COACH_OUTLET: 1,
|
||||||
CN_COACH: 2
|
CN_COACH_OUTLET: 2,
|
||||||
|
CN_COACH: 3
|
||||||
}
|
}
|
||||||
|
|
||||||
export const WEBSITE_OPTIONS = [
|
export const WEBSITE_OPTIONS = [
|
||||||
@ -16,5 +17,9 @@ export const WEBSITE_OPTIONS = [
|
|||||||
{
|
{
|
||||||
label: '中国coach',
|
label: '中国coach',
|
||||||
value: WEBSITES.CN_COACH
|
value: WEBSITES.CN_COACH
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '中国coach outlet',
|
||||||
|
value: WEBSITES.CN_COACH_OUTLET
|
||||||
}
|
}
|
||||||
]
|
]
|
@ -13,12 +13,17 @@ const routes = [
|
|||||||
{
|
{
|
||||||
path: '/us-coach',
|
path: '/us-coach',
|
||||||
name: 'us-coach',
|
name: 'us-coach',
|
||||||
component: ()=>import('@/views/Product/US.vue')
|
component: ()=>import('@/views/Product/USCoachOutlet.vue')
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: '/cn-coach',
|
path: '/cn-coach',
|
||||||
name: 'cn-coach',
|
name: 'cn-coach',
|
||||||
component: ()=>import('@/views/Product/CN.vue')
|
component: ()=>import('@/views/Product/CNCoachOutlet.vue')
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: '/cn-coach-outlet',
|
||||||
|
name: 'cn-coach-outlet',
|
||||||
|
component: ()=>import('@/views/Product/CNCoachOutlet.vue')
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: '/pusher',
|
path: '/pusher',
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
<div class="h-full m-4 bg-white rounded-2 shadow-lg p-8 flex flex-col justify-between space-y-4 overscroll-auto">
|
<div class="h-full m-4 bg-white rounded-2 shadow-lg p-8 flex flex-col justify-between space-y-4 overscroll-auto">
|
||||||
<div class="flex justify-between">
|
<div class="flex justify-between">
|
||||||
<div class="flex items-center space-x-16">
|
<div class="flex items-center space-x-16">
|
||||||
|
<a-button type="primary" @click="globalCalculateVisible=true">查看优惠设置</a-button>
|
||||||
</div>
|
</div>
|
||||||
<div class="flex space-x-4">
|
<div class="flex space-x-4">
|
||||||
<a-input placeholder="请输入关键词" v-model:value="query.keyword" @pressEnter="search"></a-input>
|
<a-input placeholder="请输入关键词" v-model:value="query.keyword" @pressEnter="search"></a-input>
|
||||||
@ -19,9 +20,9 @@
|
|||||||
<template v-else-if="column.key === 'updatedAt'">
|
<template v-else-if="column.key === 'updatedAt'">
|
||||||
<span>{{moment(record.updatedAt).format('YYYY-MM-DD HH:mm:ss')}}</span>
|
<span>{{moment(record.updatedAt).format('YYYY-MM-DD HH:mm:ss')}}</span>
|
||||||
</template>
|
</template>
|
||||||
<template v-else-if="column.key === 'cnyPrice'">
|
<template v-else-if="column.key === 'originalPrice'">
|
||||||
<div class="flex space items-center">
|
<div class="flex space items-center">
|
||||||
<span>{{record.cnyPrice}}</span>
|
<span >{{record.originalPrice}}</span>
|
||||||
<CaretUpOutlined class="text-red" v-if="record.priceStatus === PRICE_STATUS.UP"/>
|
<CaretUpOutlined class="text-red" v-if="record.priceStatus === PRICE_STATUS.UP"/>
|
||||||
<CaretDownOutlined class="text-green" v-if="record.priceStatus === PRICE_STATUS.DOWN"/>
|
<CaretDownOutlined class="text-green" v-if="record.priceStatus === PRICE_STATUS.DOWN"/>
|
||||||
</div>
|
</div>
|
||||||
@ -62,8 +63,13 @@
|
|||||||
<!-- <FormOutlined v-else class="cursor-pointer" @click="onEdit(record, 'dwPrice')"/>-->
|
<!-- <FormOutlined v-else class="cursor-pointer" @click="onEdit(record, 'dwPrice')"/>-->
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<template v-else-if="column.key === 'link'">
|
<template v-else-if="column.key === 'opt'">
|
||||||
<a :href="`https://www.coach.com.cn/products/${record.pid}`" target="_blank">跳转</a>
|
<a-popover title="" placement="bottom">
|
||||||
|
<template #content>
|
||||||
|
<a-button type="text" block @click="showCalculateModal(record)">查看优惠</a-button>
|
||||||
|
</template>
|
||||||
|
<SettingOutlined class="cursor-pointer" />
|
||||||
|
</a-popover>
|
||||||
</template>
|
</template>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@ -73,7 +79,7 @@
|
|||||||
<div class="text-xl">历史价格</div>
|
<div class="text-xl">历史价格</div>
|
||||||
<div class="flex space-x-16 my-2 text-lg" v-for="h in record.historyPrices">
|
<div class="flex space-x-16 my-2 text-lg" v-for="h in record.historyPrices">
|
||||||
<div>{{moment(h.createdAt).format('YYYY-MM-DD HH:mm:ss')}}</div>
|
<div>{{moment(h.createdAt).format('YYYY-MM-DD HH:mm:ss')}}</div>
|
||||||
<div>¥{{h.usPrice}}</div>
|
<div>¥{{h.originalPrice}}</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="text-xl mt-4">得物价格(CNY)</div>
|
<div class="text-xl mt-4">得物价格(CNY)</div>
|
||||||
<div v-if="record.dwHistoryPrices?.length>0" class="flex space-x-16 my-2 text-lg" v-for="h in record.dwHistoryPrices">
|
<div v-if="record.dwHistoryPrices?.length>0" class="flex space-x-16 my-2 text-lg" v-for="h in record.dwHistoryPrices">
|
||||||
@ -89,19 +95,61 @@
|
|||||||
</div>
|
</div>
|
||||||
<a-pagination :disabled="loading" class="text-right" v-model:current="query.page" v-model:page-size="query.size" :total="data.total" show-less-items @change="list"/>
|
<a-pagination :disabled="loading" class="text-right" v-model:current="query.page" v-model:page-size="query.size" :total="data.total" show-less-items @change="list"/>
|
||||||
</div>
|
</div>
|
||||||
|
<Calculate v-model:visible="globalCalculateVisible"
|
||||||
|
:getter="route.name === 'cn-coach' ? GetCNCoachSpiderGlobalCalculate:GetCNCoachOutletSpiderGlobalCalculate"
|
||||||
|
:add="()=>{return {Condition:'', Name:'',Pid: route.name === 'cn-coach'?'cn-coach':'cn-coach-outlet',Process:'' }}"
|
||||||
|
:del="route.name === 'cn-coach' ? DeleteCNCoachSpiderGlobalCalculate:DeleteCNCoachOutletSpiderGlobalCalculate"
|
||||||
|
:save="route.name === 'cn-coach' ? SaveCNCoachSpiderGlobalCalculate: SaveCNCoachOutletSpiderGlobalCalculate"
|
||||||
|
@ok="list"
|
||||||
|
></Calculate>
|
||||||
|
<Calculate v-model:visible="calculateModal.visible"
|
||||||
|
:getter="calculateModal.getter"
|
||||||
|
:add="calculateModal.add"
|
||||||
|
:del="calculateModal.del"
|
||||||
|
:save="calculateModal.save"
|
||||||
|
@ok="list"
|
||||||
|
></Calculate>
|
||||||
</template>
|
</template>
|
||||||
<script setup>
|
<script setup>
|
||||||
|
|
||||||
import {computed, h, onMounted, reactive, ref} from "vue";
|
import {computed, h, onMounted, reactive, ref, watch} from "vue";
|
||||||
import {GetProduct, ListProducts, UpdateProduct} from "@/api/product.js";
|
import {GetProduct, ListProducts, UpdateProduct} from "@/api/product.js";
|
||||||
import moment from "moment/moment.js";
|
import moment from "moment/moment.js";
|
||||||
import { clone } from 'radash'
|
import { clone } from 'radash'
|
||||||
import {LoadingOutlined, SaveOutlined,CaretUpOutlined,CaretDownOutlined} from "@ant-design/icons-vue";
|
import {
|
||||||
|
LoadingOutlined,
|
||||||
|
SaveOutlined,
|
||||||
|
CaretUpOutlined,
|
||||||
|
CaretDownOutlined,
|
||||||
|
FormOutlined,
|
||||||
|
SettingOutlined
|
||||||
|
} from "@ant-design/icons-vue";
|
||||||
import {message} from "ant-design-vue";
|
import {message} from "ant-design-vue";
|
||||||
import {WEBSITES} from "@/constants/website.js";
|
import {WEBSITES} from "@/constants/website.js";
|
||||||
|
import {useRoute} from "vue-router";
|
||||||
|
import {
|
||||||
|
DeleteUSCoachOutletSpiderCalculate,
|
||||||
|
DeleteUSCoachOutletSpiderGlobalCalculate,
|
||||||
|
GetUSCoachOutletSpiderGlobalCalculate, SaveUSCoachOutletSpiderCalculate, SaveUSCoachOutletSpiderGlobalCalculate
|
||||||
|
} from "@/api/us-coach-outlet-spider.js";
|
||||||
|
import Calculate from "@/views/Product/Calculate.vue";
|
||||||
|
import {
|
||||||
|
DeleteCNCoachSpiderCalculate, DeleteCNCoachSpiderGlobalCalculate,
|
||||||
|
GetCNCoachSpiderGlobalCalculate,
|
||||||
|
SaveCNCoachSpiderCalculate, SaveCNCoachSpiderGlobalCalculate
|
||||||
|
} from "@/api/cn-coach-spider.js";
|
||||||
|
import {
|
||||||
|
DeleteCNCoachOutletSpiderCalculate, DeleteCNCoachOutletSpiderGlobalCalculate,
|
||||||
|
GetCNCoachOutletSpiderGlobalCalculate,
|
||||||
|
SaveCNCoachOutletSpiderCalculate, SaveCNCoachOutletSpiderGlobalCalculate
|
||||||
|
} from "@/api/cn-coach-outlet-spider.js";
|
||||||
|
|
||||||
|
const route = useRoute()
|
||||||
|
|
||||||
|
|
||||||
onMounted(()=>{
|
onMounted(()=>{
|
||||||
list()
|
list()
|
||||||
|
watch(()=>route.name,loadShopType)
|
||||||
})
|
})
|
||||||
|
|
||||||
const query = reactive({
|
const query = reactive({
|
||||||
@ -114,6 +162,15 @@ const query = reactive({
|
|||||||
website: WEBSITES.CN_COACH
|
website: WEBSITES.CN_COACH
|
||||||
})
|
})
|
||||||
|
|
||||||
|
const loadShopType = ()=>{
|
||||||
|
if (route.name === 'cn-coach'){
|
||||||
|
query.website = WEBSITES.CN_COACH
|
||||||
|
}else{
|
||||||
|
query.website = WEBSITES.CN_COACH_OUTLET
|
||||||
|
}
|
||||||
|
list()
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
const loading = ref(false)
|
const loading = ref(false)
|
||||||
|
|
||||||
@ -155,6 +212,11 @@ const columns = computed(()=>[
|
|||||||
dataIndex: 'image',
|
dataIndex: 'image',
|
||||||
key: 'image',
|
key: 'image',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: '价格(CNY)',
|
||||||
|
dataIndex: 'originalPrice',
|
||||||
|
key: 'originalPrice',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: '成本(CNY)',
|
title: '成本(CNY)',
|
||||||
dataIndex: 'cnyPrice',
|
dataIndex: 'cnyPrice',
|
||||||
@ -208,9 +270,8 @@ const columns = computed(()=>[
|
|||||||
key: 'remark',
|
key: 'remark',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: 'coach链接',
|
title: '操作',
|
||||||
dataIndex: 'link',
|
key: 'opt',
|
||||||
key: 'link',
|
|
||||||
},
|
},
|
||||||
])
|
])
|
||||||
|
|
||||||
@ -230,6 +291,7 @@ const editData = reactive({
|
|||||||
})
|
})
|
||||||
|
|
||||||
const onEdit=(record, param) => {
|
const onEdit=(record, param) => {
|
||||||
|
console.log('click')
|
||||||
editData.data = clone(record)
|
editData.data = clone(record)
|
||||||
editData.param = param
|
editData.param = param
|
||||||
editData.edit = true
|
editData.edit = true
|
||||||
@ -295,6 +357,33 @@ const expand = (expanded, record)=>{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const globalCalculateVisible = ref(false)
|
||||||
|
const calculateModal = reactive({
|
||||||
|
visible : false,
|
||||||
|
getter: ()=>{},
|
||||||
|
add: ()=>{},
|
||||||
|
del: ()=>{},
|
||||||
|
save: ()=>{}
|
||||||
|
})
|
||||||
|
|
||||||
|
const showCalculateModal = (record)=>{
|
||||||
|
calculateModal.getter = ()=>{
|
||||||
|
return GetProduct(record.pid).then(res=>res.calculateProcess)
|
||||||
|
}
|
||||||
|
calculateModal.add = ()=>{
|
||||||
|
return {
|
||||||
|
Pid: record.pid,
|
||||||
|
website: route.name === 'cn-coach'?WEBSITES.CN_COACH:WEBSITES.CN_COACH_OUTLET,
|
||||||
|
Condition:'',
|
||||||
|
Name:'',
|
||||||
|
Process:''
|
||||||
|
}
|
||||||
|
}
|
||||||
|
calculateModal.del = route.name === 'cn-coach'? DeleteCNCoachSpiderCalculate:DeleteCNCoachOutletSpiderCalculate
|
||||||
|
calculateModal.save = route.name === 'cn-coach' ? SaveCNCoachSpiderCalculate: SaveCNCoachOutletSpiderCalculate
|
||||||
|
calculateModal.visible = true
|
||||||
|
}
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
119
src/views/Product/Calculate.vue
Normal file
119
src/views/Product/Calculate.vue
Normal file
@ -0,0 +1,119 @@
|
|||||||
|
<template>
|
||||||
|
<a-modal v-model:open="open" centered :width="1300" @ok="save">
|
||||||
|
<template #title>
|
||||||
|
编辑
|
||||||
|
</template>
|
||||||
|
<div class="w-full flex flex-col space-y-4">
|
||||||
|
<div class="flex items-center space-x-4">
|
||||||
|
<a-button type="primary" @click="add">+</a-button>
|
||||||
|
<div class="text-lg">原价:originalPrice , 汇率:exchangeRate ,运费:freight</div>
|
||||||
|
</div>
|
||||||
|
<a-form :model="modal.data" class="w-full">
|
||||||
|
<div v-for="(item,index) in modal.data.calculate" class="flex space-x-4 justify-between w-full ">
|
||||||
|
<a-form-item label="名称" required :name="['calculate',index,'Name']" >
|
||||||
|
<a-input v-model:value="item.Name"></a-input>
|
||||||
|
</a-form-item>
|
||||||
|
<a-form-item label="条件">
|
||||||
|
<a-input class="w-[300px]" v-model:value="item.Condition"></a-input>
|
||||||
|
</a-form-item>
|
||||||
|
<a-form-item label="计算" required :name="['calculate',index,'Process']">
|
||||||
|
<a-input class="w-[500px]" v-model:value="item.Process"></a-input>
|
||||||
|
</a-form-item>
|
||||||
|
<a-button danger type="primary" @click="del(item.id, index,item.Name)">-</a-button>
|
||||||
|
</div>
|
||||||
|
</a-form>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</a-modal>
|
||||||
|
</template>
|
||||||
|
<script setup>
|
||||||
|
import {computed, reactive} from "vue";
|
||||||
|
import {message, Modal} from "ant-design-vue";
|
||||||
|
|
||||||
|
const props = defineProps({
|
||||||
|
visible: {
|
||||||
|
type: Boolean,
|
||||||
|
default: false
|
||||||
|
},
|
||||||
|
getter: {
|
||||||
|
type: Function,
|
||||||
|
default: ()=>{}
|
||||||
|
},
|
||||||
|
add: {
|
||||||
|
type: Function,
|
||||||
|
default: ()=>{}
|
||||||
|
},
|
||||||
|
del: {
|
||||||
|
type: Function,
|
||||||
|
default: ()=>{}
|
||||||
|
},
|
||||||
|
save: {
|
||||||
|
type: Function,
|
||||||
|
default: ()=>{}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
const emit = defineEmits(['update:visible', 'ok'])
|
||||||
|
const open = computed({
|
||||||
|
get() {
|
||||||
|
if(props.visible){
|
||||||
|
load()
|
||||||
|
}
|
||||||
|
return props.visible
|
||||||
|
},
|
||||||
|
set(value) {
|
||||||
|
emit('update:visible', value)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
const load = ()=>{
|
||||||
|
props.getter().then(res=>{
|
||||||
|
modal.data.calculate = res
|
||||||
|
})
|
||||||
|
}
|
||||||
|
const modal = reactive({
|
||||||
|
data: {
|
||||||
|
calculate: []
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
const add = ()=>{
|
||||||
|
const cs = props.add()
|
||||||
|
if(cs){
|
||||||
|
modal.data.calculate.push(cs)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const del = (id, idx, name)=>{
|
||||||
|
if(!id) {
|
||||||
|
modal.data.calculate.splice(idx, 1)
|
||||||
|
}else{
|
||||||
|
Modal.confirm({
|
||||||
|
title: '确定',
|
||||||
|
content: `确定删除【${name}】?`,
|
||||||
|
centered:true,
|
||||||
|
onOk() {
|
||||||
|
props.del(id).then(res=>{
|
||||||
|
modal.data.calculate.splice(idx, 1)
|
||||||
|
}).catch(err=>{
|
||||||
|
console.log(err)
|
||||||
|
message.error('删除失败')
|
||||||
|
})
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const save = ()=>{
|
||||||
|
props.save(modal.data.calculate).then(res=>{
|
||||||
|
open.value = false
|
||||||
|
message.success('保存成功')
|
||||||
|
emit('ok')
|
||||||
|
}).catch(err=>{
|
||||||
|
console.log(err)
|
||||||
|
message.error('保存失败')
|
||||||
|
})
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<style scoped>
|
||||||
|
|
||||||
|
</style>
|
@ -4,8 +4,8 @@
|
|||||||
<div class="flex items-center space-x-16">
|
<div class="flex items-center space-x-16">
|
||||||
<div>当前汇率:<span class="text-xl">{{spiderCfg.exchangeRate}}</span></div>
|
<div>当前汇率:<span class="text-xl">{{spiderCfg.exchangeRate}}</span></div>
|
||||||
<div>当前默认运费:<span class="text-xl">{{spiderCfg.freight}}</span></div>
|
<div>当前默认运费:<span class="text-xl">{{spiderCfg.freight}}</span></div>
|
||||||
<div>当前折扣:<span class="text-xl">{{spiderCfg.discount}}% </span></div>
|
|
||||||
<FormOutlined class="cursor-pointer" @click="editSpiderCfg"/>
|
<FormOutlined class="cursor-pointer" @click="editSpiderCfg"/>
|
||||||
|
<a-button type="primary" @click="globalCalculateVisible=true">查看优惠设置</a-button>
|
||||||
</div>
|
</div>
|
||||||
<div class="flex space-x-4">
|
<div class="flex space-x-4">
|
||||||
<a-input placeholder="请输入关键词" v-model:value="query.keyword" @pressEnter="search"></a-input>
|
<a-input placeholder="请输入关键词" v-model:value="query.keyword" @pressEnter="search"></a-input>
|
||||||
@ -23,9 +23,9 @@
|
|||||||
<template v-else-if="column.key === 'updatedAt'">
|
<template v-else-if="column.key === 'updatedAt'">
|
||||||
<span>{{moment(record.updatedAt).format('YYYY-MM-DD HH:mm:ss')}}</span>
|
<span>{{moment(record.updatedAt).format('YYYY-MM-DD HH:mm:ss')}}</span>
|
||||||
</template>
|
</template>
|
||||||
<template v-else-if="column.key === 'usPrice'">
|
<template v-else-if="column.key === 'originalPrice'">
|
||||||
<div class="flex space items-center">
|
<div class="flex space items-center">
|
||||||
<span>{{record.usPrice}}</span>
|
<span>{{record.originalPrice}}</span>
|
||||||
<CaretUpOutlined class="text-red" v-if="record.priceStatus === PRICE_STATUS.UP"/>
|
<CaretUpOutlined class="text-red" v-if="record.priceStatus === PRICE_STATUS.UP"/>
|
||||||
<CaretDownOutlined class="text-green" v-if="record.priceStatus === PRICE_STATUS.DOWN"/>
|
<CaretDownOutlined class="text-green" v-if="record.priceStatus === PRICE_STATUS.DOWN"/>
|
||||||
</div>
|
</div>
|
||||||
@ -70,6 +70,7 @@
|
|||||||
<a-popover title="" placement="bottom">
|
<a-popover title="" placement="bottom">
|
||||||
<template #content>
|
<template #content>
|
||||||
<a-button type="text" block @click="onEdit(record, 'modal')">编辑</a-button>
|
<a-button type="text" block @click="onEdit(record, 'modal')">编辑</a-button>
|
||||||
|
<a-button type="text" block @click="showCalculateModal(record)">查看优惠</a-button>
|
||||||
<a-button type="text" block @click="onWatch(record.pid, record.name)">一键蹲货</a-button>
|
<a-button type="text" block @click="onWatch(record.pid, record.name)">一键蹲货</a-button>
|
||||||
</template>
|
</template>
|
||||||
<SettingOutlined class="cursor-pointer" />
|
<SettingOutlined class="cursor-pointer" />
|
||||||
@ -83,7 +84,7 @@
|
|||||||
<div class="text-xl">历史价格</div>
|
<div class="text-xl">历史价格</div>
|
||||||
<div class="flex space-x-16 my-2 text-lg" v-for="h in record.historyPrices">
|
<div class="flex space-x-16 my-2 text-lg" v-for="h in record.historyPrices">
|
||||||
<div>{{moment(h.createdAt).format('YYYY-MM-DD HH:mm:ss')}}</div>
|
<div>{{moment(h.createdAt).format('YYYY-MM-DD HH:mm:ss')}}</div>
|
||||||
<div>${{h.usPrice}}</div>
|
<div>${{h.originalPrice}}</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="text-xl mt-4">得物价格(CNY)</div>
|
<div class="text-xl mt-4">得物价格(CNY)</div>
|
||||||
<div v-if="record.dwHistoryPrices?.length>0" class="flex space-x-16 my-2 text-lg" v-for="h in record.dwHistoryPrices">
|
<div v-if="record.dwHistoryPrices?.length>0" class="flex space-x-16 my-2 text-lg" v-for="h in record.dwHistoryPrices">
|
||||||
@ -106,7 +107,7 @@
|
|||||||
</template>
|
</template>
|
||||||
<a-form :model="editData.data" :labelCol="{span: 6}">
|
<a-form :model="editData.data" :labelCol="{span: 6}">
|
||||||
<a-form-item label="价格(美元)">
|
<a-form-item label="价格(美元)">
|
||||||
<a-input-number disabled v-model:value="editData.data.usPrice"/>
|
<a-input-number disabled v-model:value="editData.data.originalPrice"/>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
<a-form-item label="成本">
|
<a-form-item label="成本">
|
||||||
<a-input-number disabled v-model:value="editData.data.cnyPrice"/>
|
<a-input-number disabled v-model:value="editData.data.cnyPrice"/>
|
||||||
@ -133,11 +134,22 @@
|
|||||||
<a-form-item label="运费">
|
<a-form-item label="运费">
|
||||||
<a-input-number v-model:value="spiderCfgModal.data.freight" :min="1"/>
|
<a-input-number v-model:value="spiderCfgModal.data.freight" :min="1"/>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
<a-form-item label="折扣">
|
|
||||||
<a-input-number addon-after="%" v-model:value="spiderCfgModal.data.discount" :min="1" :max="100"/>
|
|
||||||
</a-form-item>
|
|
||||||
</a-form>
|
</a-form>
|
||||||
</a-modal>
|
</a-modal>
|
||||||
|
<Calculate v-model:visible="globalCalculateVisible"
|
||||||
|
:getter="GetUSCoachOutletSpiderGlobalCalculate"
|
||||||
|
:add="()=>{return {Condition:'', Name:'',Pid:'us-coach-outlet',Process:'' }}"
|
||||||
|
:del="DeleteUSCoachOutletSpiderGlobalCalculate"
|
||||||
|
:save="SaveUSCoachOutletSpiderGlobalCalculate"
|
||||||
|
@ok="list"
|
||||||
|
></Calculate>
|
||||||
|
<Calculate v-model:visible="calculateModal.visible"
|
||||||
|
:getter="calculateModal.getter"
|
||||||
|
:add="calculateModal.add"
|
||||||
|
:del="calculateModal.del"
|
||||||
|
:save="calculateModal.save"
|
||||||
|
@ok="list"
|
||||||
|
></Calculate>
|
||||||
</template>
|
</template>
|
||||||
<script setup>
|
<script setup>
|
||||||
|
|
||||||
@ -148,8 +160,15 @@ import { clone } from 'radash'
|
|||||||
import {LoadingOutlined, SaveOutlined,SettingOutlined,CaretUpOutlined,CaretDownOutlined, FormOutlined} from "@ant-design/icons-vue";
|
import {LoadingOutlined, SaveOutlined,SettingOutlined,CaretUpOutlined,CaretDownOutlined, FormOutlined} from "@ant-design/icons-vue";
|
||||||
import {message, Modal} from "ant-design-vue";
|
import {message, Modal} from "ant-design-vue";
|
||||||
import {CreateWatcher} from "@/api/watcher.js";
|
import {CreateWatcher} from "@/api/watcher.js";
|
||||||
import {GetSpiderCfg, SetSpiderCfg} from "@/api/spider.js";
|
import {
|
||||||
|
DeleteUSCoachOutletSpiderCalculate,
|
||||||
|
DeleteUSCoachOutletSpiderGlobalCalculate,
|
||||||
|
GetUSCoachOutletSpiderCfg,
|
||||||
|
GetUSCoachOutletSpiderGlobalCalculate, SaveUSCoachOutletSpiderCalculate, SaveUSCoachOutletSpiderGlobalCalculate,
|
||||||
|
SetUSCoachOutletSpiderCfg
|
||||||
|
} from "@/api/us-coach-outlet-spider.js";
|
||||||
import {WEBSITES} from "@/constants/website.js";
|
import {WEBSITES} from "@/constants/website.js";
|
||||||
|
import Calculate from "@/views/Product/Calculate.vue";
|
||||||
|
|
||||||
onMounted(()=>{
|
onMounted(()=>{
|
||||||
list()
|
list()
|
||||||
@ -209,8 +228,8 @@ const columns = computed(()=>[
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '价格(美元)',
|
title: '价格(美元)',
|
||||||
dataIndex: 'usPrice',
|
dataIndex: 'originalPrice',
|
||||||
key: 'usPrice',
|
key: 'originalPrice',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '折扣力度',
|
title: '折扣力度',
|
||||||
@ -361,11 +380,10 @@ const PRICE_STATUS = {
|
|||||||
const spiderCfg = ref({
|
const spiderCfg = ref({
|
||||||
exchangeRate: 0,
|
exchangeRate: 0,
|
||||||
freight: 0,
|
freight: 0,
|
||||||
discount: 100
|
|
||||||
})
|
})
|
||||||
|
|
||||||
const loadSpiderCfg = ()=>{
|
const loadSpiderCfg = ()=>{
|
||||||
GetSpiderCfg().then(res=>{
|
GetUSCoachOutletSpiderCfg().then(res=>{
|
||||||
spiderCfg.value = res
|
spiderCfg.value = res
|
||||||
}).catch(err=>{
|
}).catch(err=>{
|
||||||
message.error("获取spider配置失败")
|
message.error("获取spider配置失败")
|
||||||
@ -396,7 +414,6 @@ const spiderCfgModal = reactive({
|
|||||||
data: {
|
data: {
|
||||||
exchangeRate: 0,
|
exchangeRate: 0,
|
||||||
freight: 0,
|
freight: 0,
|
||||||
discount: 100
|
|
||||||
},
|
},
|
||||||
visible: false,
|
visible: false,
|
||||||
})
|
})
|
||||||
@ -407,7 +424,7 @@ const editSpiderCfg = ()=>{
|
|||||||
}
|
}
|
||||||
|
|
||||||
const updateSpiderCfg = ()=>{
|
const updateSpiderCfg = ()=>{
|
||||||
SetSpiderCfg(spiderCfgModal.data).then(res=>{
|
SetUSCoachOutletSpiderCfg(spiderCfgModal.data).then(res=>{
|
||||||
message.success('修改成功')
|
message.success('修改成功')
|
||||||
}).catch(err=>{
|
}).catch(err=>{
|
||||||
message.error('修改失败')
|
message.error('修改失败')
|
||||||
@ -417,6 +434,33 @@ const updateSpiderCfg = ()=>{
|
|||||||
loadSpiderCfg()
|
loadSpiderCfg()
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const globalCalculateVisible = ref(false)
|
||||||
|
const calculateModal = reactive({
|
||||||
|
visible : false,
|
||||||
|
getter: ()=>{},
|
||||||
|
add: ()=>{},
|
||||||
|
del: ()=>{},
|
||||||
|
save: ()=>{}
|
||||||
|
})
|
||||||
|
|
||||||
|
const showCalculateModal = (record)=>{
|
||||||
|
calculateModal.getter = ()=>{
|
||||||
|
return GetProduct(record.pid).then(res=>res.calculateProcess)
|
||||||
|
}
|
||||||
|
calculateModal.add = ()=>{
|
||||||
|
return {
|
||||||
|
Pid: record.pid,
|
||||||
|
website: WEBSITES.US_COACH_OUTLET,
|
||||||
|
Condition:'',
|
||||||
|
Name:'',
|
||||||
|
Process:''
|
||||||
|
}
|
||||||
|
}
|
||||||
|
calculateModal.del = DeleteUSCoachOutletSpiderCalculate
|
||||||
|
calculateModal.save = SaveUSCoachOutletSpiderCalculate
|
||||||
|
calculateModal.visible = true
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
@ -39,6 +39,11 @@ const items = [
|
|||||||
label: '美国coach outlet',
|
label: '美国coach outlet',
|
||||||
title: '美国coach outlet',
|
title: '美国coach outlet',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
key: 'cn-coach-outlet',
|
||||||
|
label: '中国coach outlet',
|
||||||
|
title: '中国coach outlet',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
key: 'cn-coach',
|
key: 'cn-coach',
|
||||||
label: '中国coach',
|
label: '中国coach',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user