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
25be7af3
Commit
25be7af3
authored
Mar 19, 2021
by
zenglun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
提交部分代码
parent
659aed30
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
115 deletions
+13
-115
incrementalDataList.vue
...gs/components/incrementalDataList/incrementalDataList.vue
+0
-83
logo.png
src/entry/gs/images/SigIn/logo.png
+0
-0
SignIn.vue
src/entry/gs/views/SignIn.vue
+1
-1
categoryManage.vue
src/entry/gs/views/categoryManage/categoryManage.vue
+12
-31
No files found.
src/entry/gs/components/incrementalDataList/incrementalDataList.vue
View file @
25be7af3
...
@@ -7,7 +7,6 @@
...
@@ -7,7 +7,6 @@
<li
class=
"list-name"
>
存证名称
</li>
<li
class=
"list-name"
>
存证名称
</li>
<li
class=
"list-time"
>
操作日期
</li>
<li
class=
"list-time"
>
操作日期
</li>
<li
class=
"list-chain"
>
上链
</li>
<li
class=
"list-chain"
>
上链
</li>
<!--
<li
class=
"list-qrcode"
>
二维码
</li>
-->
<li
class=
"list-search"
>
区块链查询
</li>
<li
class=
"list-search"
>
区块链查询
</li>
<li
class=
"list-set"
>
操作
</li>
<li
class=
"list-set"
>
操作
</li>
</ul>
</ul>
...
@@ -51,31 +50,6 @@
...
@@ -51,31 +50,6 @@
@
click=
"$emit('privacy-settings', item)"
@
click=
"$emit('privacy-settings', item)"
>
隐藏失败
</div>
>
隐藏失败
</div>
</li>
</li>
<!--
<li
class=
"content-qrcode"
>
<div
class=
"content-code-box"
>
<div
class=
"icon-box"
>
<i
@
click
.
stop=
"openQRcode(item, index)"
class=
"iconfont iconerweima1"
:class=
"[
item.status === 2
? 'iconerweima--check'
: 'iconerweima--no-check',
]"
></i>
<div
class=
"show-box"
v-if=
"checkQR === index"
@
mousedown
.
stop
>
<div
class=
"imgbox"
v-if=
"item.hash"
>
<img
:src=
"QRcode"
/>
</div>
<div
class=
"imgbox"
v-else
>
<img
src=
"https://f10.baidu.com/it/u=557133877,2120362237&fm=72"
/>
</div>
<p
@
click=
"QRdownload(item)"
>
下载二维码
</p>
<p
class=
"copy-address"
@
click=
"CopyAddress(item)"
>
复制地址
</p>
</div>
</div>
</div>
</li>
-->
<li
class=
"content-search"
>
<li
class=
"content-search"
>
<div
class=
"block"
>
<div
class=
"block"
>
<div
class=
"icon-box"
>
<div
class=
"icon-box"
>
...
@@ -175,11 +149,9 @@ import { GO_URLS } from "@/config/URLS";
...
@@ -175,11 +149,9 @@ import { GO_URLS } from "@/config/URLS";
export
default
{
export
default
{
data
()
{
data
()
{
return
{
return
{
checkQR
:
-
1
,
// 二维码弹窗
checkBlock
:
-
1
,
checkBlock
:
-
1
,
checkSet
:
-
1
,
checkSet
:
-
1
,
expandTheListIndex
:
-
1
,
expandTheListIndex
:
-
1
,
QRcode
:
""
// 二维码路劲
};
};
},
},
watch
:
{
watch
:
{
...
@@ -273,16 +245,10 @@ export default {
...
@@ -273,16 +245,10 @@ export default {
type
:
"success"
type
:
"success"
});
});
},
},
// 二维码下载
QRdownload
(
item
)
{
downloadQrCode
(
item
.
hash
);
},
// 隐藏条件选中
// 隐藏条件选中
onHindMenu
()
{
onHindMenu
()
{
this
.
checkQR
=
-
1
;
this
.
checkBlock
=
-
1
;
this
.
checkBlock
=
-
1
;
this
.
checkSet
=
-
1
;
this
.
checkSet
=
-
1
;
this
.
QRcode
=
""
;
document
.
removeEventListener
(
"mousedown"
,
this
.
onHindMenu
);
document
.
removeEventListener
(
"mousedown"
,
this
.
onHindMenu
);
},
},
// 进入详情页
// 进入详情页
...
@@ -311,13 +277,6 @@ export default {
...
@@ -311,13 +277,6 @@ export default {
this
.
checkBlock
=
index
;
this
.
checkBlock
=
index
;
document
.
addEventListener
(
"mousedown"
,
this
.
onHindMenu
);
document
.
addEventListener
(
"mousedown"
,
this
.
onHindMenu
);
},
},
// 控制二维码显示
async
openQRcode
(
item
,
index
)
{
if
(
item
.
status
!=
2
)
return
;
this
.
checkQR
=
index
;
this
.
QRcode
=
await
getQR
(
item
.
hash
);
document
.
addEventListener
(
"mousedown"
,
this
.
onHindMenu
);
}
}
}
};
};
</
script
>
</
script
>
...
@@ -355,10 +314,6 @@ export default {
...
@@ -355,10 +314,6 @@ export default {
width: 80px;
width: 80px;
text-align: center;
text-align: center;
}
}
.list-qrcode {
width: 80px;
text-align: center;
}
.list-search {
.list-search {
width: 66px;
width: 66px;
text-align: center;
text-align: center;
...
@@ -448,10 +403,6 @@ export default {
...
@@ -448,10 +403,6 @@ export default {
height: 20px;
height: 20px;
padding-left: 16px;
padding-left: 16px;
}
}
.content-qrcode {
width: 80px;
text-align: center;
}
.content-time {
.content-time {
width: 156px;
width: 156px;
text-align: center;
text-align: center;
...
@@ -471,40 +422,6 @@ export default {
...
@@ -471,40 +422,6 @@ export default {
.content-number {
.content-number {
padding-left: 18px;
padding-left: 18px;
}
}
.content-code-box {
text-align: center;
.show-box {
position: absolute;
width: 135px;
background: rgba(255, 255, 255, 1);
box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.13);
overflow: hidden;
font-size: 12px;
color: rgba(155, 155, 155, 1);
line-height: 17px;
p {
padding: 0;
margin: 0;
cursor: pointer;
}
.copy-address {
padding-top: 6px;
padding-bottom: 12px;
}
.imgbox {
margin-left: 15px;
margin-top: 12px;
margin-bottom: 6px;
width: 106px;
height: 106px;
padding: 0;
img {
width: 100%;
height: 100%;
}
}
}
}
.set-menu {
.set-menu {
z-index: 1;
z-index: 1;
position: absolute;
position: absolute;
...
...
src/entry/gs/images/SigIn/logo.png
View replaced file @
659aed30
View file @
25be7af3
18.6 KB
|
W:
|
H:
26.9 KB
|
W:
|
H:
2-up
Swipe
Onion skin
src/entry/gs/views/SignIn.vue
View file @
25be7af3
...
@@ -34,7 +34,7 @@ export default {
...
@@ -34,7 +34,7 @@ export default {
position: absolute;
position: absolute;
left: 26px;
left: 26px;
top: 14px;
top: 14px;
width:
98
px;
width:
229
px;
height: 36px;
height: 36px;
background: url("../images/SigIn/logo.png") no-repeat center;
background: url("../images/SigIn/logo.png") no-repeat center;
background-size: 100% 100%;
background-size: 100% 100%;
...
...
src/entry/gs/views/categoryManage/categoryManage.vue
View file @
25be7af3
...
@@ -6,58 +6,37 @@
...
@@ -6,58 +6,37 @@
<div
class=
"icon_box"
>
<div
class=
"icon_box"
>
<i
class=
"iconfont iconxingzhuang1"
></i>
<i
class=
"iconfont iconxingzhuang1"
></i>
</div>
</div>
<span
<span
class=
"title"
:class=
"
{ title__check: this.$store.state.selectedStatus === 1 }">存证记录
</span>
class=
"title"
:class=
"
{ title__check: this.$store.state.selectedStatus === 1 }"
>存证记录
</span
>
<span
class=
"num"
>
{{
getGoods
}}
</span>
<span
class=
"num"
>
{{
getGoods
}}
</span>
</li>
</li>
<li
@
click=
"checkTwo"
>
<li
@
click=
"checkTwo"
>
<div
class=
"icon_box icon_box__green"
>
<div
class=
"icon_box icon_box__green"
>
<i
class=
"iconfont iconjilu-"
></i>
<i
class=
"iconfont iconjilu-"
></i>
</div>
</div>
<span
<span
class=
"title"
:class=
"
{ title__check: this.$store.state.selectedStatus === 2 }">模板管理
</span>
class=
"title"
:class=
"
{ title__check: this.$store.state.selectedStatus === 2 }"
>模板管理
</span
>
<span
class=
"num"
>
{{
getTemplate
}}
</span>
<span
class=
"num"
>
{{
getTemplate
}}
</span>
</li>
</li>
<li
@
click=
"checkThree"
>
<li
@
click=
"checkThree"
>
<div
class=
"icon_box icon_box__orange"
>
<div
class=
"icon_box icon_box__orange"
>
<i
class=
"iconfont iconshanchu2"
></i>
<i
class=
"iconfont iconshanchu2"
></i>
</div>
</div>
<span
<span
class=
"title"
:class=
"
{ title__check: this.$store.state.selectedStatus === 3 }">已删除
</span>
class=
"title"
:class=
"
{ title__check: this.$store.state.selectedStatus === 3 }"
>已删除
</span
>
<span
class=
"num"
>
{{
deleteds
}}
</span>
<span
class=
"num"
>
{{
deleteds
}}
</span>
</li>
</li>
</ul>
</ul>
</div>
</div>
<!-- 左侧列 -->
<!-- 左侧列 -->
<div
<div
class=
"col_right"
:class=
"
{ 'col_right--show': this.$store.state.selectedStatus === 1 }">
class=
"col_right"
<product-list
@
update=
"update"
ref=
"child"
></product-list>
:class=
"
{ 'col_right--show': this.$store.state.selectedStatus === 1 }"
>
<product-list
@
update=
"update"
></product-list>
</div>
</div>
<!-- 右侧列 -->
<!-- 右侧列 -->
<div
<div
class=
"col_right"
:class=
"
{ 'col_right--show': this.$store.state.selectedStatus === 2 }">
class=
"col_right"
:class=
"
{ 'col_right--show': this.$store.state.selectedStatus === 2 }"
>
<!-- 模板 -->
<!-- 模板 -->
<template-manage></template-manage>
<template-manage></template-manage>
</div>
</div>
<div
<div
class=
"col_right"
:class=
"
{ 'col_right--show': this.$store.state.selectedStatus === 3 }">
class=
"col_right"
:class=
"
{ 'col_right--show': this.$store.state.selectedStatus === 3 }"
>
<!-- 已删除 -->
<!-- 已删除 -->
<deleted
:ToUpdate=
"ToUpdate"
></deleted>
<deleted
:ToUpdate=
"ToUpdate"
></deleted>
</div>
</div>
...
@@ -79,8 +58,8 @@ import CommonDialog from "@/components/CommonDialog.vue";
...
@@ -79,8 +58,8 @@ import CommonDialog from "@/components/CommonDialog.vue";
productList
,
productList
,
TemplateManage
,
TemplateManage
,
deleted
,
deleted
,
CommonDialog
,
CommonDialog
}
,
}
})
})
export
default
class
Template
extends
Vue
{
export
default
class
Template
extends
Vue
{
[
x
:
string
]:
any
;
[
x
:
string
]:
any
;
...
@@ -111,6 +90,8 @@ export default class Template extends Vue {
...
@@ -111,6 +90,8 @@ export default class Template extends Vue {
// 显示存证
// 显示存证
checkOne
()
{
checkOne
()
{
this
.
$store
.
commit
(
"setSelectedStatus"
,
1
);
this
.
$store
.
commit
(
"setSelectedStatus"
,
1
);
let
child
:
any
=
this
.
$refs
.
child
;
child
.
getList
();
this
.
trigger
=
!
this
.
trigger
;
this
.
trigger
=
!
this
.
trigger
;
}
}
// 显示模板管理
// 显示模板管理
...
@@ -152,7 +133,7 @@ export default class Template extends Vue {
...
@@ -152,7 +133,7 @@ export default class Template extends Vue {
color: rgba(53, 53, 53, 1);
color: rgba(53, 53, 53, 1);
}
}
.title__check {
.title__check {
color: #0
CC
399;
color: #0
cc
399;
}
}
.num {
.num {
font-size: 12px;
font-size: 12px;
...
...
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