diff --git a/src/views/provider/index.vue b/src/views/provider/index.vue
index deaff7e..c544cc7 100644
--- a/src/views/provider/index.vue
+++ b/src/views/provider/index.vue
@@ -22,6 +22,9 @@
{{getStatusDict(record.status).title}}
+
+ {{record.online ? '在线':'离线'}}
+
拉取
编辑
@@ -53,6 +56,9 @@
+
+
+
@@ -164,6 +170,7 @@ const addModal = reactive({
ticker: '03:00',
exchangeRate: 7.2,
freight: 0,
+ notCrawl: false,
},
calculateProcess: []
},
@@ -239,13 +246,19 @@ const columns = [
{
title: '抓取时间',
key: 'ticker',
- width: 250
+ width: 150
},
{
title: '状态',
dataIndex: 'status',
key: 'status',
- width: 250
+ width: 150
+ },
+ {
+ title: '在线',
+ dataIndex: 'online',
+ key: 'online',
+ width: 150
},
{
title: '备注',
@@ -255,6 +268,7 @@ const columns = [
{
title: '操作',
key: 'opt',
+ width: 250
}
]
diff --git a/vite.config.js b/vite.config.js
index f7b3d7c..e353bf7 100644
--- a/vite.config.js
+++ b/vite.config.js
@@ -49,8 +49,8 @@ export default defineConfig({
ws: true,
},
'/api/v2/providers': {
- target: 'http://localhost:8080/',
- // target: 'https://ht.timerzz.com:20443/',
+ // target: 'http://localhost:8080/',
+ target: 'https://ht.timerzz.com:20443/',
changeOrigin: true,
secure: false,
ws: true,