Compare commits
2 Commits
c0472f3464
...
4cb2da49d8
Author | SHA1 | Date | |
---|---|---|---|
4cb2da49d8 | |||
b436853001 |
5
src/api/spider.js
Normal file
5
src/api/spider.js
Normal file
@ -0,0 +1,5 @@
|
||||
import {mande} from "mande";
|
||||
|
||||
const spider = mande('/api/v1/spider')
|
||||
|
||||
export const GetSpiderCfg = ()=> spider.get("cfg")
|
@ -1,6 +1,10 @@
|
||||
<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="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">
|
||||
<a-input placeholder="请输入关键词" v-model:value="query.keyword"></a-input>
|
||||
<a-button type="primary" :disabled="loading" @click="list">搜索</a-button>
|
||||
@ -8,7 +12,7 @@
|
||||
</div>
|
||||
<div class="h-full border-0 border-t-1 border-solid border-gray-300 pt-4">
|
||||
<a-spin :spinning="loading" :indicator="indicator">
|
||||
<a-table :dataSource="data.list" :columns="columns" :pagination="false" @change="tableChange">
|
||||
<a-table :dataSource="data.list" :columns="columns" :custom-row="customRow" :pagination="false" @change="tableChange">
|
||||
<template #bodyCell="{ column, record }">
|
||||
<template v-if="column.key === 'name'">
|
||||
<a v-if="record.name !== '' " :href="record.link" target="_blank">{{record.name}}</a>
|
||||
@ -26,7 +30,7 @@
|
||||
</template>
|
||||
<template v-else-if="column.key === 'freight'">
|
||||
<div class="flex space-x-4">
|
||||
<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>
|
||||
<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>
|
||||
<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"/>
|
||||
<!-- <FormOutlined v-else class="cursor-pointer" @click="onEdit(record, 'freight')"/>-->
|
||||
@ -34,7 +38,7 @@
|
||||
</template>
|
||||
<template v-else-if="column.key === 'dwPrice'">
|
||||
<div class="flex space-x-4">
|
||||
<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>
|
||||
<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>
|
||||
<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"/>
|
||||
<!-- <FormOutlined v-else class="cursor-pointer" @click="onEdit(record, 'dwPrice')"/>-->
|
||||
@ -62,7 +66,6 @@
|
||||
<template #content>
|
||||
<a-button type="text" block @click="onEdit(record, 'modal')">编辑</a-button>
|
||||
<a-button type="text" block @click="onWatch(record.pid, record.name)">一键蹲货</a-button>
|
||||
|
||||
</template>
|
||||
<SettingOutlined class="cursor-pointer" />
|
||||
</a-popover>
|
||||
@ -105,9 +108,11 @@ import { clone } from 'radash'
|
||||
import {LoadingOutlined, SaveOutlined,SettingOutlined,CaretUpOutlined,CaretDownOutlined} from "@ant-design/icons-vue";
|
||||
import {message, Modal} from "ant-design-vue";
|
||||
import {CreateWatcher} from "@/api/watcher.js";
|
||||
import {GetSpiderCfg} from "@/api/spider.js";
|
||||
|
||||
onMounted(()=>{
|
||||
list()
|
||||
loadSpiderCfg()
|
||||
})
|
||||
const query = reactive({
|
||||
page: 1,
|
||||
@ -276,6 +281,27 @@ const PRICE_STATUS = {
|
||||
UP: 1,
|
||||
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>
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user