Compare commits
No commits in common. "4cb2da49d81b9126b20808e55888a68a32b1c18e" and "c0472f34647ba1490cd74b6c40d9077a2201be3d" have entirely different histories.
4cb2da49d8
...
c0472f3464
@ -1,5 +0,0 @@
|
|||||||
import {mande} from "mande";
|
|
||||||
|
|
||||||
const spider = mande('/api/v1/spider')
|
|
||||||
|
|
||||||
export const GetSpiderCfg = ()=> spider.get("cfg")
|
|
@ -1,10 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="h-full m-4 bg-white rounded-2 shadow-lg p-8 flex flex-col justify-between space-y-4">
|
<div class="h-full m-4 bg-white rounded-2 shadow-lg p-8 flex flex-col justify-between space-y-4">
|
||||||
<div class="flex justify-between">
|
<div class="flex justify-between">
|
||||||
<div class="flex items-center space-x-16">
|
|
||||||
<div>当前汇率:<span class="text-xl">{{spiderCfg.exchangeRate}}</span></div>
|
|
||||||
<div>当前默认运费:<span class="text-xl">{{spiderCfg.freight}}</span></div>
|
|
||||||
</div>
|
|
||||||
<div class="flex space-x-4">
|
<div class="flex space-x-4">
|
||||||
<a-input placeholder="请输入关键词" v-model:value="query.keyword"></a-input>
|
<a-input placeholder="请输入关键词" v-model:value="query.keyword"></a-input>
|
||||||
<a-button type="primary" :disabled="loading" @click="list">搜索</a-button>
|
<a-button type="primary" :disabled="loading" @click="list">搜索</a-button>
|
||||||
@ -12,7 +8,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="h-full border-0 border-t-1 border-solid border-gray-300 pt-4">
|
<div class="h-full border-0 border-t-1 border-solid border-gray-300 pt-4">
|
||||||
<a-spin :spinning="loading" :indicator="indicator">
|
<a-spin :spinning="loading" :indicator="indicator">
|
||||||
<a-table :dataSource="data.list" :columns="columns" :custom-row="customRow" :pagination="false" @change="tableChange">
|
<a-table :dataSource="data.list" :columns="columns" :pagination="false" @change="tableChange">
|
||||||
<template #bodyCell="{ column, record }">
|
<template #bodyCell="{ column, record }">
|
||||||
<template v-if="column.key === 'name'">
|
<template v-if="column.key === 'name'">
|
||||||
<a v-if="record.name !== '' " :href="record.link" target="_blank">{{record.name}}</a>
|
<a v-if="record.name !== '' " :href="record.link" target="_blank">{{record.name}}</a>
|
||||||
@ -30,7 +26,7 @@
|
|||||||
</template>
|
</template>
|
||||||
<template v-else-if="column.key === 'freight'">
|
<template v-else-if="column.key === 'freight'">
|
||||||
<div class="flex space-x-4">
|
<div class="flex space-x-4">
|
||||||
<a-input-number @click.stop v-if="editData.edit && editData.param==='freight' && editData.data.pid === record.pid" v-model:value="editData.data.freight" @pressEnter="doUpdate"></a-input-number>
|
<a-input-number v-if="editData.edit && editData.param==='freight' && editData.data.pid === record.pid" v-model:value="editData.data.freight" @pressEnter="doUpdate"></a-input-number>
|
||||||
<span v-else @dblclick="onEdit(record, 'freight')">{{record.freight}}</span>
|
<span v-else @dblclick="onEdit(record, 'freight')">{{record.freight}}</span>
|
||||||
<SaveOutlined class="cursor-pointer" v-if="editData.edit && editData.param==='freight' && editData.data.pid === record.pid" v-model:value="editData.data.freight" @click="doUpdate"/>
|
<SaveOutlined class="cursor-pointer" v-if="editData.edit && editData.param==='freight' && editData.data.pid === record.pid" v-model:value="editData.data.freight" @click="doUpdate"/>
|
||||||
<!-- <FormOutlined v-else class="cursor-pointer" @click="onEdit(record, 'freight')"/>-->
|
<!-- <FormOutlined v-else class="cursor-pointer" @click="onEdit(record, 'freight')"/>-->
|
||||||
@ -38,7 +34,7 @@
|
|||||||
</template>
|
</template>
|
||||||
<template v-else-if="column.key === 'dwPrice'">
|
<template v-else-if="column.key === 'dwPrice'">
|
||||||
<div class="flex space-x-4">
|
<div class="flex space-x-4">
|
||||||
<a-input-number @click.stop v-if="editData.edit && editData.param==='dwPrice' && editData.data.pid === record.pid" v-model:value="editData.data.dwPrice" @pressEnter="doUpdate"></a-input-number>
|
<a-input-number v-if="editData.edit && editData.param==='dwPrice' && editData.data.pid === record.pid" v-model:value="editData.data.dwPrice" @pressEnter="doUpdate"></a-input-number>
|
||||||
<span v-else @dblclick="onEdit(record, 'dwPrice')">{{record.dwPrice}}</span>
|
<span v-else @dblclick="onEdit(record, 'dwPrice')">{{record.dwPrice}}</span>
|
||||||
<SaveOutlined class="cursor-pointer" v-if="editData.edit && editData.param==='dwPrice' && editData.data.pid === record.pid" v-model:value="editData.data.dwPrice" @click="doUpdate"/>
|
<SaveOutlined class="cursor-pointer" v-if="editData.edit && editData.param==='dwPrice' && editData.data.pid === record.pid" v-model:value="editData.data.dwPrice" @click="doUpdate"/>
|
||||||
<!-- <FormOutlined v-else class="cursor-pointer" @click="onEdit(record, 'dwPrice')"/>-->
|
<!-- <FormOutlined v-else class="cursor-pointer" @click="onEdit(record, 'dwPrice')"/>-->
|
||||||
@ -66,6 +62,7 @@
|
|||||||
<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="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" />
|
||||||
</a-popover>
|
</a-popover>
|
||||||
@ -108,11 +105,9 @@ import { clone } from 'radash'
|
|||||||
import {LoadingOutlined, SaveOutlined,SettingOutlined,CaretUpOutlined,CaretDownOutlined} from "@ant-design/icons-vue";
|
import {LoadingOutlined, SaveOutlined,SettingOutlined,CaretUpOutlined,CaretDownOutlined} 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} from "@/api/spider.js";
|
|
||||||
|
|
||||||
onMounted(()=>{
|
onMounted(()=>{
|
||||||
list()
|
list()
|
||||||
loadSpiderCfg()
|
|
||||||
})
|
})
|
||||||
const query = reactive({
|
const query = reactive({
|
||||||
page: 1,
|
page: 1,
|
||||||
@ -281,27 +276,6 @@ const PRICE_STATUS = {
|
|||||||
UP: 1,
|
UP: 1,
|
||||||
DOWN: 2
|
DOWN: 2
|
||||||
}
|
}
|
||||||
|
|
||||||
const spiderCfg = ref({
|
|
||||||
exchangeRate: 0,
|
|
||||||
freight: 0
|
|
||||||
})
|
|
||||||
|
|
||||||
const loadSpiderCfg = ()=>{
|
|
||||||
GetSpiderCfg().then(res=>{
|
|
||||||
spiderCfg.value = res
|
|
||||||
}).catch(err=>{
|
|
||||||
message.error("获取spider配置失败")
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
const customRow=(record, index)=>{
|
|
||||||
return {
|
|
||||||
onClick: (event) => {
|
|
||||||
editData.edit = false
|
|
||||||
}, // 点击行
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user