Compare commits
No commits in common. "33cc546886bc8a9f36728060bab35ac3c3b4ba72" and "356b80b07565fdf5ceb7b70403580668394fff79" have entirely different histories.
33cc546886
...
356b80b075
@ -1,9 +1,8 @@
|
|||||||
<template>
|
<template>
|
||||||
<a-collapse-panel :key="`${provider.providerId}`" >
|
<a-collapse-panel :key="`${provider.providerId}`" >
|
||||||
<template #extra>
|
<template #extra>
|
||||||
<div class="flex space-x-4 items-center">
|
<div class="flex space-x-4">
|
||||||
<div>更新时间:{{dayjs(provider.updatedAt).format('YYYY-MM-DD HH:mm:ss')}}</div>
|
<div>更新时间:{{dayjs(provider.updatedAt).format('YYYY-MM-DD HH:mm:ss')}}</div>
|
||||||
<a-button v-if="provider.providerId==='us-coach-outlet'" type="primary" @click="OneClickWatch(provider.pid, provider.pid)">一键蹲货</a-button>
|
|
||||||
<div v-if="provider.skuID">抓取:<a-switch :checked="!provider.exclude" @click="onClickExclude"/></div>
|
<div v-if="provider.skuID">抓取:<a-switch :checked="!provider.exclude" @click="onClickExclude"/></div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
@ -45,7 +44,7 @@ import {GetProviderHistory, UpdateProviderArticle} from "@/api/articles.js";
|
|||||||
import {message} from "ant-design-vue";
|
import {message} from "ant-design-vue";
|
||||||
import {computed, ref, watch} from "vue";
|
import {computed, ref, watch} from "vue";
|
||||||
import VChart from "vue-echarts";
|
import VChart from "vue-echarts";
|
||||||
import {OneClickWatch} from "@/componse/one-click-watch.js";
|
|
||||||
|
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
provider: {
|
provider: {
|
||||||
|
@ -3,9 +3,4 @@ html,body,#app {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
|
||||||
|
|
||||||
::-webkit-scrollbar {
|
|
||||||
width: 0;
|
|
||||||
background: transparent;
|
|
||||||
}
|
}
|
@ -1,9 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="overflow-overlay h-full m-4 bg-white rounded-2 shadow-lg p-8 flex flex-col justify-between space-y-4">
|
<div class="overflow-overlay h-full m-4 bg-white rounded-2 shadow-lg p-8 flex flex-col justify-between space-y-4">
|
||||||
<div class="border-solid border-2 border-gray-100 rounded-lg p-4 flex space-x-8 items-center">
|
<div class="border-solid border-2 border-gray-100 rounded-lg p-4 flex space-x-8">
|
||||||
<div class="w-100px">
|
<a-image :src="data.image" :width="100"></a-image>
|
||||||
<a-image :src="data.image" ></a-image>
|
|
||||||
</div>
|
|
||||||
<div class="flex justify-between w-full pr-16">
|
<div class="flex justify-between w-full pr-16">
|
||||||
<div class="p-4 flex flex-col justify-between">
|
<div class="p-4 flex flex-col justify-between">
|
||||||
<div class="text-xl font-bold">名称:{{data.name}}</div>
|
<div class="text-xl font-bold">名称:{{data.name}}</div>
|
||||||
|
@ -12,9 +12,7 @@
|
|||||||
<a-table :dataSource="data.list" :columns="columns" :pagination="false" :scroll="{y:1000}" @change="tableChange" rowKey="id">
|
<a-table :dataSource="data.list" :columns="columns" :pagination="false" :scroll="{y:1000}" @change="tableChange" rowKey="id">
|
||||||
<template #bodyCell="{ column, record }">
|
<template #bodyCell="{ column, record }">
|
||||||
<template v-if="column.key === 'image'">
|
<template v-if="column.key === 'image'">
|
||||||
<div class="w-75px h-75px">
|
<a-image :width="75" :src="record.image"/>
|
||||||
<a-image :src="record.image"/>
|
|
||||||
</div>
|
|
||||||
</template>
|
</template>
|
||||||
<template v-else-if="column.key === 'name'">
|
<template v-else-if="column.key === 'name'">
|
||||||
<router-link target="_blank" :to="{ path: '/article/detail', query: {id: record.id} }">
|
<router-link target="_blank" :to="{ path: '/article/detail', query: {id: record.id} }">
|
||||||
@ -49,7 +47,7 @@
|
|||||||
</template>
|
</template>
|
||||||
<script setup>
|
<script setup>
|
||||||
|
|
||||||
import {computed, h, onMounted, reactive, ref} from "vue";
|
import {computed, h, onMounted, reactive, ref, watch} from "vue";
|
||||||
import {LoadingOutlined} from "@ant-design/icons-vue";
|
import {LoadingOutlined} from "@ant-design/icons-vue";
|
||||||
import {message} from "ant-design-vue";
|
import {message} from "ant-design-vue";
|
||||||
import {ListArticles, UpdateArticle} from "@/api/articles.js";
|
import {ListArticles, UpdateArticle} from "@/api/articles.js";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user