Compare commits

...

3 Commits

Author SHA1 Message Date
8ac08ece08 feat 增加得物历史价格
All checks were successful
Build image / build (push) Successful in 9m18s
2024-05-16 15:23:21 +08:00
d9a0770be5 feat 更换checkout 2024-05-16 15:17:16 +08:00
5c3773e235 fix 修复分页未生效的问题 2024-05-16 12:32:57 +08:00
2 changed files with 13 additions and 5 deletions

View File

@ -5,7 +5,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: https://gitea.timerzz.com/timerzz/checkout@v4
- name: build
run: docker build -t ${{ vars.DOCKER_REGISTRY }}/${{ vars.IMAGE_NAME }}:1.3 -f Dockerfile .
- name: tag

View File

@ -1,5 +1,5 @@
<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 overscroll-auto">
<div class="flex justify-between">
<div class="flex items-center space-x-16">
<div>当前汇率<span class="text-xl">{{spiderCfg.exchangeRate}}</span></div>
@ -10,8 +10,8 @@
<a-button type="primary" :disabled="loading" @click="search">搜索</a-button>
</div>
</div>
<div class="h-full border-0 border-t-1 border-solid border-gray-300 pt-4">
<a-spin :spinning="loading" :indicator="indicator">
<div class="h-full border-0 border-t-1 border-solid border-gray-300 pt-4 overscroll-auto ">
<a-spin :spinning="loading" :indicator="indicator">
<a-table :dataSource="data.list" :columns="columns" :custom-row="customRow" :pagination="false" @change="tableChange" rowKey="pid" @expand="expand">
<template #bodyCell="{ column, record }">
<template v-if="column.key === 'name'">
@ -80,13 +80,20 @@
<div>{{moment(h.createdAt).format('YYYY-MM-DD HH:mm:ss')}}</div>
<div>${{h.usPrice}}</div>
</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>{{moment(h.createdAt).format('YYYY-MM-DD HH:mm:ss')}}</div>
<div>{{h.dwPrice}}</div>
</div>
<div class="text-lg" v-else >暂无</div>
</div>
</a-spin>
</template>
</a-table>
</a-spin>
</div>
<a-pagination :disabled="loading" class="text-right" v-model:current="query.page" :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>
<a-modal v-model:open="editData.editModal" @ok="doUpdate">
<template #title>
@ -353,6 +360,7 @@ const expand = (expanded, record)=>{
if(expanded && !record.historyPrices){
GetProduct(record.pid).then(res=>{
record.historyPrices = res.historyPrices
record.dwHistoryPrices = res.dwHistoryPrices
}).catch(err=>{
message.error("获取历史价格失败")
console.log(err)