Commit 2fd209c3 authored by chenqikuai's avatar chenqikuai

fix

parent a74fe58f
.DS_Store
node_modules
/dist
/ycc-website
# local env files
......
mv dist ycc-website
tar -czf ycc-website.tar ycc-website
scp ycc-website.tar root@121.40.18.70:/usr/share/nginx/html/ycc-website.tar
rm -rf ycc-website.tar
ssh root@121.40.18.70 'cd /usr/share/nginx/html && rm -rf ycc-website && tar -xzf ycc-website.tar && rm -rf ycc-website.tar'
echo '👉 http://121.40.18.70:4749/'
\ No newline at end of file
......@@ -5,6 +5,7 @@
"scripts": {
"dev": "vue-cli-service serve",
"build": "vue-cli-service build",
"deploy": "npm run build && bash deploy.sh",
"lint": "vue-cli-service lint"
},
"dependencies": {
......
......@@ -22,8 +22,8 @@ export const lang = {
chainPerf: {
speed: "Block Speed",
tps: "TPS",
txNumber: "Total Number Of Txns",
addressNumber: "Total Number Of Addr",
txNumber: "Total Num Of Txns",
addressNumber: "Total Num Of Addr",
txNumberOnTheChain: "On-chain Txns Num",
},
viewMore: "See More",
......
......@@ -24,6 +24,7 @@ Object.entries(filters).forEach(([filterName, filterFunc]) => {
// 'en': require('@/assets/lang/en.ts')
// }
// });
console.log('v.0.0.3');
Vue.use(Select);
Vue.use(Table);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment