代码优化整理

This commit is contained in:
xlmessage 2025-02-13 14:30:03 +08:00
parent 45e8a967b9
commit e4b6441426
8 changed files with 99 additions and 310 deletions

@ -1,33 +1,25 @@
# asideviewts ## 项目依赖安装
This template should help get you started developing with Vue 3 in Vite.
## Recommended IDE Setup
[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur).
## Type Support for `.vue` Imports in TS
TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types.
## Customize configuration
See [Vite Configuration Reference](https://vite.dev/config/).
## Project Setup
```sh ```sh
npm install npm install
``` ```
### Compile and Hot-Reload for Development ### 运行项目
```sh ```sh
npm run dev npm run dev
``` ```
### Type-Check, Compile and Minify for Production ### 项目打包
```sh ```sh
npm run build npm run build
``` ```
## 说明
node版本20.13.1
vue版本3.5.13
项目无法运行,检查版本。

@ -4,12 +4,13 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<link rel="icon" href="/favicon.ico"> <link rel="icon" href="/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vite App</title> <title>股票信息</title>
<style> <style>
body{ body{
margin: 0; margin: 0;
padding: 0; padding: 0;
overflow: hidden; overflow: hidden;
background-color: var(--my-common-bgc-2);
} }
</style> </style>
</head> </head>

@ -36,66 +36,3 @@
--my-light-fc-2: #414040; --my-light-fc-2: #414040;
} }
/* semantic color variables for this project */
/* :root {
--color-background: var(--vt-c-white);
--color-background-soft: var(--vt-c-white-soft);
--color-background-mute: var(--vt-c-white-mute);
--color-border: var(--vt-c-divider-light-2);
--color-border-hover: var(--vt-c-divider-light-1);
--color-heading: var(--vt-c-text-light-1);
--color-text: var(--vt-c-text-light-1);
--section-gap: 160px;
}
@media (prefers-color-scheme: dark) {
:root {
--color-background: var(--vt-c-black);
--color-background-soft: var(--vt-c-black-soft);
--color-background-mute: var(--vt-c-black-mute);
--color-border: var(--vt-c-divider-dark-2);
--color-border-hover: var(--vt-c-divider-dark-1);
--color-heading: var(--vt-c-text-dark-1);
--color-text: var(--vt-c-text-dark-2);
}
}
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
font-weight: normal;
}
body {
min-height: 100vh;
color: var(--color-text);
background: var(--color-background);
transition:
color 0.5s,
background-color 0.5s;
line-height: 1.6;
font-family:
Inter,
-apple-system,
BlinkMacSystemFont,
'Segoe UI',
Roboto,
Oxygen,
Ubuntu,
Cantarell,
'Fira Sans',
'Droid Sans',
'Helvetica Neue',
sans-serif;
font-size: 15px;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
} */

@ -182,7 +182,6 @@ let chartConfigs = ref([
name: 'MACD', name: 'MACD',
type: 'bar', type: 'bar',
barWidth: '1', barWidth: '1',
// symbol: 'none',
data: [], data: [],
}, },
], ],
@ -219,7 +218,6 @@ let chartConfigs = ref([
}, },
yAxis: { yAxis: {
type: 'value', type: 'value',
// splitNumber: 3 ,
interval: 10, interval: 10,
}, },
series: [ series: [
@ -271,15 +269,6 @@ let chartConfigs = ref([
data: [], data: [],
symbol: 'none', symbol: 'none',
smooth: true, smooth: true,
// lineStyle: {
// width: 1,
// },
// areaStyle: {
// opacity: 0.5,
// },
// itemStyle: {
// color: 'rgba(0,128,255,1)',
// },
}, },
{ {
name: 'D', name: 'D',
@ -287,15 +276,6 @@ let chartConfigs = ref([
data: [], data: [],
symbol: 'none', symbol: 'none',
smooth: true, smooth: true,
// lineStyle: {
// width: 1,
// },
// areaStyle: {
// opacity: 0.5,
// },
// itemStyle: {
// color: 'rgba(0,128,255,1)',
// },
}, },
{ {
name: 'J', name: 'J',
@ -303,15 +283,6 @@ let chartConfigs = ref([
data: [], data: [],
symbol: 'none', symbol: 'none',
smooth: true, smooth: true,
// lineStyle: {
// width: 1,
// },
// areaStyle: {
// opacity: 0.5,
// },
// itemStyle: {
// color: 'rgba(0,128,255,1)',
// },
}, },
], ],
}, },
@ -1697,17 +1668,6 @@ onBeforeUnmount(() => {
></div> ></div>
</div> </div>
</div> </div>
<!-- 底部的各个图表选项信息 -->
<!-- <ul class="typelist">
<li
v-for="(item, index) in chartConfigs"
:key="index"
@click="addChart(item)"
>
{{ item.name }}
</li>
</ul> -->
</div> </div>
</template> </template>
@ -1729,7 +1689,7 @@ onBeforeUnmount(() => {
} }
.newk{ .newk{
flex: 2; flex: 2;
border: 1px solid rgb(190, 187, 187); border-bottom: 1px solid rgb(190, 187, 187);
} }
.newd{ .newd{
flex: 2; flex: 2;

@ -1,8 +1,5 @@
import { createRouter, createWebHashHistory } from 'vue-router'; import { createRouter, createWebHashHistory } from 'vue-router';
// const route = useRoute();
const router = createRouter({ const router = createRouter({
history: createWebHashHistory(import.meta.env.BASE_URL), history: createWebHashHistory(import.meta.env.BASE_URL),
routes: [ routes: [

@ -5,15 +5,21 @@ import { Edit, Plus, Delete, View, Hide,Operation } from '@element-plus/icons-vu
import { ElMessageBox, ElTable, ElMessage, ElLoading } from 'element-plus' import { ElMessageBox, ElTable, ElMessage, ElLoading } from 'element-plus'
import type { CollapseModelValue } from 'element-plus' import type { CollapseModelValue } from 'element-plus'
import axios from 'axios' import axios from 'axios'
// import { vscode } from './uilts/vscode'
import { RouterView } from 'vue-router'
import HomeView from './HomeView.vue' import HomeView from './HomeView.vue'
const message = ref(''); // const message = ref(''); //
const klineIframe = ref<HTMLIFrameElement | null>(null); // iframe
// ---------------------------------- // ----------------------------------
/**
* 请求后端接口数据侧边栏的信息当前是获取指定用户的信息与万策页面是关联的用户登录过后可在
* 万策页面进行保存筛选条件保存的是一个请求参数可在数据库的user_strategy表中查看
* 通过https://wance.cqxqg.tech/api/v1/strategy/getStockPageList
* 后端的逻辑处理可在src/akshare_data/router.py文件中查看
* 由于user_strategy表中的信息仅仅是请求参数对我在后续中对分组管理操作无任何帮助所以我将请求返回来的数据进行存储在
* 新的一个数据库表中名为new_user_strategy的数据库表中
* 最后通过新的接口得到股票数据显示在侧边栏中
* 下面代码的逻辑大致就是这样
*/
axios({ axios({
url: 'http://127.0.0.1:8012/akshare/userstrategy', url: 'http://127.0.0.1:8012/akshare/userstrategy',
method: 'get', method: 'get',
@ -53,7 +59,7 @@ axios({
} }
) )
.then((res) => { .then((res) => {
console.log(res.data.data.list) // console.log(res.data.data.list)
let nowdata = res.data.data.list let nowdata = res.data.data.list
let opt = [] let opt = []
@ -121,9 +127,6 @@ axios({
}) })
const activeNames = ref(['0']) const activeNames = ref(['0'])
const handleChange = (val: string[]) => {
console.log(val)
}
const showChangeVisible = ref(true) const showChangeVisible = ref(true)
@ -140,14 +143,17 @@ const handleClose = (done: () => void) => {
.then(() => { .then(() => {
done() done()
}) })
.catch(() => { .catch(() => {})
// catch error
})
} }
// -------------------------------------------------- // --------------------------------------------------
/**
* 股票信息通过axios请求后端接口得到股票信息并保存在stocktypes.value中
* stocktypes.value是一个数组数组中的每个元素都是一个对象对象中包含股票的信息
* 包括股票的idlabelvaluestateinfo等属性
* stocktypes.value是一个数组数组中的每个元素都是一个对象对象中包含股票的信息
* 包括股票的idlabelvaluestateinfo等属性
*/
interface StockType { interface StockType {
id?: string id?: string
label: string label: string
@ -159,6 +165,11 @@ interface StockType {
let cacheinfo = ref<Equity[]>([]) let cacheinfo = ref<Equity[]>([])
/**
* 固定分类始终有港股美股沪深等分类
* stocktypes.value是一个数组数组中的每个元素都是一个对象对象中包含股票的信息
* 包括股票的idlabelvaluestateinfo等属性
*/
let stocktypes = ref<StockType[]>([ let stocktypes = ref<StockType[]>([
{ {
id: '1', id: '1',
@ -206,12 +217,9 @@ axios({
// ---------------------------------------------- // ----------------------------------------------
const changestate = (item: any) => { const changestate = (item: any) => {
item.state = !item.state item.state = !item.state
// console.log(item.state)
} }
let asideshow = computed(() => { let asideshow = computed(() => {
// console.log(stocktypes.value)
return stocktypes.value.filter((item) => item.state) return stocktypes.value.filter((item) => item.state)
}) })
@ -229,7 +237,7 @@ interface Equity {
// ---------------------info------------------- // ---------------------info-------------------
const inputhandle = ref('') const inputhandle = ref('')
const filterTableData = computed(() =>{ const filterTableData = computed(() =>{
let newarr = cacheinfo.value.flat(); // 使 flat let newarr = cacheinfo.value.flat();
return newarr.filter( return newarr.filter(
(data) => (data) =>
!inputhandle.value || !inputhandle.value ||
@ -239,13 +247,9 @@ const filterTableData = computed(() =>{
}) })
// //
const handleEdit = (index: number, row: Equity) => { const handleEdit = (index: number, row: Equity) => {
console.log(index, row)
stocklog.value?.info.push(row) stocklog.value?.info.push(row)
// //
// tableData2.value = tableData2.value.filter((data) => data.code !== row.code) // tableData2.value = tableData2.value.filter((data) => data.code !== row.code)
let mes = myitems.value[index] || '' let mes = myitems.value[index] || ''
// //
let newpostparam = { let newpostparam = {
@ -254,7 +258,6 @@ const handleEdit = (index: number, row: Equity) => {
message: [mes], message: [mes],
info: showdata.value, info: showdata.value,
} }
axios.post('http://127.0.0.1:8012/akshare/newupdata', newpostparam) axios.post('http://127.0.0.1:8012/akshare/newupdata', newpostparam)
} }
@ -511,65 +514,41 @@ let kindofstock = ref()
const clickTypeState = (val: CollapseModelValue) => { const clickTypeState = (val: CollapseModelValue) => {
kindofstock.value = val kindofstock.value = val
} }
// URL
const stockUrls = {
ganggu: 'http://127.0.0.1:8012/akshare/ganggudataK',
meigu: 'http://127.0.0.1:8012/akshare/meigudataK',
hushen: 'http://127.0.0.1:8012/akshare/hushendataK'
} as any;
//
const fetchStockData = (url: string, symbol: string, startDate: string, endDate: string) => {
axios({
url: url,
method: 'get',
params: {
symbol: symbol,
start_date: startDate,
end_date: endDate
},
}).then((res) => {
console.log('数据传输成功');
}).catch(error => {
console.error('请求失败请检查URL是否正确或稍后重试。', error);
});
};
const chioseStock = (item: any) => { const chioseStock = (item: any) => {
// vscode.postMessage({
// command: 'showkline',
// text: item.code,
// })
// window.postMessage(item.code,'*'); //
// iframe postMessage
// if (klineIframe.value && klineIframe.value.contentWindow) {
// klineIframe.value.contentWindow.postMessage(
// { type: 'SHOW_KLINE', data: item.code },
// '*' // origin '*'
// );
// }
message.value = item.code; // message.value = item.code; //
const stockType = kindofstock.value;
const url = stockUrls[stockType];
if(kindofstock.value == '港股'){ if (url) {
axios({ fetchStockData(url, item.code, '2023-01-01', getDate());
url: 'http://127.0.0.1:8012/akshare/ganggudataK', } else {
method: 'get', console.error('未找到对应的股票类型');
params: {
symbol: item.code,
start_date: '2023-01-01',
end_date: getDate()
},
}).then((res) => {
console.log('数据传输成功')
})
} }
else if(kindofstock.value == '美股'){ };
axios({
url: 'http://127.0.0.1:8012/akshare/meigudataK',
method: 'get',
params: {
symbol: item.code,
start_date: '2023-01-01',
end_date: getDate()
},
}).then((res) => {
console.log('数据传输成功')
})
}
else if(kindofstock.value == '沪深'){
axios({
url: 'http://127.0.0.1:8012/akshare/hushendataK',
method: 'get',
params: {
symbol: item.code,
start_date: '2023-01-01',
end_date: getDate()
},
}).then((res) => {
console.log('数据传输成功')
})
}
}
// --------------------------------------------- // ---------------------------------------------
// ------------------------------------------------------------------------ // ------------------------------------------------------------------------
const getDate = () => { const getDate = () => {
@ -581,106 +560,47 @@ const getDate = () => {
return formattedDate return formattedDate
} }
const sendmessage = (content: any) => { // URL
const urls = {
hs300: 'http://127.0.0.1:8012/akshare/stock',
zz500: 'http://127.0.0.1:8012/akshare/stock',
sse: 'http://127.0.0.1:8012/akshare/stock',
szse: 'http://127.0.0.1:8012/akshare/stock',
zz1000: 'http://127.0.0.1:8012/akshare/stock',
gz2000: 'http://127.0.0.1:8012/akshare/stock',
ganggu: 'http://127.0.0.1:8012/akshare/ganggudataK',
meigu: 'http://127.0.0.1:8012/akshare/meigudataK',
hushen: 'http://127.0.0.1:8012/akshare/hushendataK'
} as any;
const sendmessage = (content: any, url: string) => {
axios({ axios({
url: 'http://127.0.0.1:8012/akshare/stock', url: url,
method: 'get', method: 'get',
params: { params: {
symbol: 'sz' + content.code, symbol: content.type === 'ganggu' || content.type === 'meigu' || content.type === 'hushen' ? content.code : 'sz' + content.code,
start_date: '2023-01-01', start_date: '2023-01-01',
end_date: getDate() end_date: getDate()
}, },
}).then((res) => { }).then((res) => {
console.log('数据传输成功') console.log('数据传输成功');
}).catch(error => { }).catch(error => {
console.error(error); console.error('请求失败请检查URL是否正确或稍后重试。', error);
}); });
} };
const showkline = (content: any) => { const showkline = (content: any) => {
// vscode.postMessage({
// command: 'showkline',
// text: content.code,
// })
// window.postMessage(content.code,'*'); //
// iframe postMessage
// if (klineIframe.value && klineIframe.value.contentWindow) {
// klineIframe.value.contentWindow.postMessage(
// { type: 'SHOW_KLINE', data: content.code },
// '*' // origin '*'
// );
// }
message.value = content.code; // message.value = content.code; //
// console.log(content);
console.log(content); const url = urls[content.type] || urls['ganggu']; // 使 'ganggu' URL
if(content.type == "hs300"){ if (url) {
sendmessage(content) sendmessage(content, url);
} else {
console.error('未找到对应的URL类型');
} }
if(content.type == "zz500"){ };
sendmessage(content)
}
if(content.type == "sse"){
sendmessage(content)
}
if(content.type == "szse"){
sendmessage(content)
}
if(content.type == "zz1000"){
sendmessage(content)
}
if(content.type == "gz2000"){
sendmessage(content)
}
if(content.type == "other"){
sendmessage(content)
}
if(content.type == "ganggu"){
axios({
url: 'http://127.0.0.1:8012/akshare/ganggudataK',
method: 'get',
params: {
symbol: content.code,
start_date: '2023-01-01',
end_date: getDate()
},
}).then((res) => {
console.log('数据传输成功')
})
}
if(content.type == "meigu"){
axios({
url: 'http://127.0.0.1:8012/akshare/meigudataK',
method: 'get',
params: {
symbol: content.code,
start_date: '2023-01-01',
end_date: getDate()
},
}).then((res) => {
console.log('数据传输成功')
})
}
if(content.type == "hushen"){
axios({
url: 'http://127.0.0.1:8012/akshare/hushendataK',
method: 'get',
params: {
symbol: content.code,
start_date: '2023-01-01',
end_date: getDate()
},
}).then((res) => {
console.log('数据传输成功')
})
}
}
</script> </script>
<template> <template>
@ -1188,28 +1108,10 @@ iframe{
color: var(--my-common-fc-1); color: var(--my-common-fc-1);
} }
:deep(.el-collapse-item__content)::-webkit-scrollbar { :deep(.el-collapse-item__content)::-webkit-scrollbar {
width: 0; width: 0 !important;
} }
/* :deep(.el-collapse-item__content)::-webkit-scrollbar {
width: 5px;
}
:deep(.el-collapse-item__content)::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 6px;
}
:deep(.el-collapse-item__content)::-webkit-scrollbar-thumb {
background: rgba(204, 42, 42,.2);
border-radius: 6px;
} */
:deep(.demo-collapse) { :deep(.demo-collapse) {
padding-left: 12px; padding-left: 12px;

@ -17,7 +17,7 @@ export default defineConfig({
}, },
}, },
server: { server: {
open: true, open: false,
proxy: { proxy: {
"/api/v1": { "/api/v1": {
// target: "http://10.1.5.188:8011/", // target: "http://10.1.5.188:8011/",