Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
ycc-website
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Website
ycc-website
Commits
2fd209c3
Commit
2fd209c3
authored
Mar 02, 2022
by
chenqikuai
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
a74fe58f
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
12 additions
and
2 deletions
+12
-2
.gitignore
.gitignore
+1
-0
deploy.sh
deploy.sh
+7
-0
package.json
package.json
+1
-0
en.ts
src/assets/lang/en.ts
+2
-2
main.ts
src/main.ts
+1
-0
No files found.
.gitignore
View file @
2fd209c3
.DS_Store
.DS_Store
node_modules
node_modules
/dist
/dist
/ycc-website
# local env files
# local env files
...
...
deploy.sh
View file @
2fd209c3
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
package.json
View file @
2fd209c3
...
@@ -5,6 +5,7 @@
...
@@ -5,6 +5,7 @@
"scripts"
:
{
"scripts"
:
{
"dev"
:
"vue-cli-service serve"
,
"dev"
:
"vue-cli-service serve"
,
"build"
:
"vue-cli-service build"
,
"build"
:
"vue-cli-service build"
,
"deploy"
:
"npm run build && bash deploy.sh"
,
"lint"
:
"vue-cli-service lint"
"lint"
:
"vue-cli-service lint"
},
},
"dependencies"
:
{
"dependencies"
:
{
...
...
src/assets/lang/en.ts
View file @
2fd209c3
...
@@ -22,8 +22,8 @@ export const lang = {
...
@@ -22,8 +22,8 @@ export const lang = {
chainPerf
:
{
chainPerf
:
{
speed
:
"Block Speed"
,
speed
:
"Block Speed"
,
tps
:
"TPS"
,
tps
:
"TPS"
,
txNumber
:
"Total Num
ber
Of Txns"
,
txNumber
:
"Total Num Of Txns"
,
addressNumber
:
"Total Num
ber
Of Addr"
,
addressNumber
:
"Total Num Of Addr"
,
txNumberOnTheChain
:
"On-chain Txns Num"
,
txNumberOnTheChain
:
"On-chain Txns Num"
,
},
},
viewMore
:
"See More"
,
viewMore
:
"See More"
,
...
...
src/main.ts
View file @
2fd209c3
...
@@ -24,6 +24,7 @@ Object.entries(filters).forEach(([filterName, filterFunc]) => {
...
@@ -24,6 +24,7 @@ Object.entries(filters).forEach(([filterName, filterFunc]) => {
// 'en': require('@/assets/lang/en.ts')
// 'en': require('@/assets/lang/en.ts')
// }
// }
// });
// });
console
.
log
(
'v.0.0.3'
);
Vue
.
use
(
Select
);
Vue
.
use
(
Select
);
Vue
.
use
(
Table
);
Vue
.
use
(
Table
);
...
...
chenqikuai
@chenqikuai
mentioned in commit
748f7ae1
·
Mar 03, 2022
mentioned in commit
748f7ae1
mentioned in commit 748f7ae18ac2f8eb14ee7c2865eaea786342a520
Toggle commit list
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment