Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
source-trace-manage-go
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
Tracing
source-trace-manage-go
Commits
2609e17b
Commit
2609e17b
authored
Mar 19, 2021
by
zenglun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
提交部分代码
parent
0edf3e4b
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
85 additions
and
1 deletion
+85
-1
.env.gs_prod_build
.env.gs_prod_build
+4
-0
package.json
package.json
+1
-0
UrlPrefix.js
src/config/UrlPrefix.js
+10
-0
deleted.vue
src/entry/gs/components/deleted/deleted.vue
+0
-0
privacy.vue
src/entry/gs/components/privacy/privacy.vue
+69
-0
categoryManage.vue
src/entry/gs/views/categoryManage/categoryManage.vue
+1
-1
No files found.
.env.gs_prod_build
0 → 100644
View file @
2609e17b
NODE_ENV = 'production'
VUE_APP_CURRENTMODE = 'gs_prod'
VUE_APP_VERSION = '0'
\ No newline at end of file
package.json
View file @
2609e17b
...
@@ -19,6 +19,7 @@
...
@@ -19,6 +19,7 @@
"build:hl_prod"
:
"vue-cli-service build --mode hl_prod_build"
,
"build:hl_prod"
:
"vue-cli-service build --mode hl_prod_build"
,
"build:boe_prod"
:
"vue-cli-service build --mode boe_prod_build"
,
"build:boe_prod"
:
"vue-cli-service build --mode boe_prod_build"
,
"build:gs"
:
"vue-cli-service build --mode gs_build"
,
"build:gs"
:
"vue-cli-service build --mode gs_build"
,
"build:gs_prod"
:
"vue-cli-service build --mode gs_prod_build"
,
"deploy:sy"
:
"vue-cli-service build --mode sy_test_build && bash ./sy.sh"
,
"deploy:sy"
:
"vue-cli-service build --mode sy_test_build && bash ./sy.sh"
,
"deploy:cs"
:
"vue-cli-service build --mode cs_test_build && bash ./cs.sh"
,
"deploy:cs"
:
"vue-cli-service build --mode cs_test_build && bash ./cs.sh"
,
"deploy:best"
:
"vue-cli-service build --mode best_test_build && bash ./best.sh"
,
"deploy:best"
:
"vue-cli-service build --mode best_test_build && bash ./best.sh"
,
...
...
src/config/UrlPrefix.js
View file @
2609e17b
...
@@ -156,5 +156,14 @@ const configModules = {
...
@@ -156,5 +156,14 @@ const configModules = {
filename
:
'index.html'
filename
:
'index.html'
}
}
},
},
"gs_prod"
:
{
CHAIN_BROWSER_URL_PREFIX
:
'http://25.215.128.192:9010/'
,
INERFACE_URL_PREFIX
:
'http://25.215.128.28:46789'
,
INDEX
:
{
entry
:
'./src/entry/gs/main.ts'
,
template
:
'./public/gs/index.html'
,
filename
:
'index.html'
}
},
}
}
exports
.
model
=
configModules
[
process
.
env
.
VUE_APP_CURRENTMODE
]
exports
.
model
=
configModules
[
process
.
env
.
VUE_APP_CURRENTMODE
]
\ No newline at end of file
src/entry/gs/components/deleted/deleted.vue
0 → 100644
View file @
2609e17b
This diff is collapsed.
Click to expand it.
src/entry/gs/components/privacy/privacy.vue
0 → 100644
View file @
2609e17b
<
template
>
<section>
<h2
class=
"dialog-title"
>
提示
</h2>
<p
class=
"dialog-tip"
>
{{
tip
}}
</p>
<button
class=
"dialog_btn_confirm"
@
click=
"checkForm"
>
确定
</button>
<button
class=
"dialog_btn_cancel"
@
click=
"closeDialog"
>
取消
</button>
</section>
</
template
>
<
script
>
export
default
{
props
:
[
"tip"
],
methods
:
{
checkForm
()
{
this
.
$emit
(
"confirm"
);
},
closeDialog
()
{
this
.
$emit
(
"close"
);
},
},
};
</
script
>
<
style
lang=
"less"
scoped
>
section {
width: 535px;
height: 285px;
background: #ffffff;
box-shadow: 0px 0px 20px 0px rgba(61, 118, 249, 0.18);
}
.dialog-title {
padding-left: 44px;
padding-top: 34px;
color: #000;
font-size: 22px;
}
.dialog-tip {
text-align: center;
padding-top: 48px;
font-size: 22px;
padding-bottom: 54px;
}
.dialog_btn_confirm {
float: right;
width: 120px;
height: 40px;
color: #fff;
font-size: 14px;
margin-right: 50px;
outline: none;
background: #0CC399;
border-radius: 4px;
border: none;
cursor: pointer;
}
.dialog_btn_cancel {
float: right;
margin-right: 18px; /* 28 - 10 */
border: none;
width: 48px; /* 28 + 增大20 */
height: 40px;
outline: none;
background: #fff;
color: #5c6476;
font-size: 14px;
cursor: pointer;
}
</
style
>
\ No newline at end of file
src/entry/gs/views/categoryManage/categoryManage.vue
View file @
2609e17b
...
@@ -50,7 +50,7 @@ import TemplateManage from "../../components/templateManage/templateManage.vue";
...
@@ -50,7 +50,7 @@ import TemplateManage from "../../components/templateManage/templateManage.vue";
// 右侧存证部分
// 右侧存证部分
import
productList
from
"../../components/productList/productList.vue"
;
import
productList
from
"../../components/productList/productList.vue"
;
//删除页
//删除页
import
deleted
from
"
@/views/category
/deleted.vue"
;
import
deleted
from
"
../../components/deleted
/deleted.vue"
;
// 引导页
// 引导页
import
CommonDialog
from
"@/components/CommonDialog.vue"
;
import
CommonDialog
from
"@/components/CommonDialog.vue"
;
@
Component
({
@
Component
({
...
...
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