Commit 3179661b authored by chenqikuai's avatar chenqikuai

fix ui

parent 01cf0fdc
......@@ -827,9 +827,9 @@
}
},
"cqk-sy-ui": {
"version": "1.2.29",
"resolved": "https://registry.npmjs.org/cqk-sy-ui/-/cqk-sy-ui-1.2.29.tgz",
"integrity": "sha512-rwhXoQ2sU0Scm9z377v1IJQ93fb/jdV8w5cN4GqZZq98Lwevti1D9WPxjy/XF+6IJmYd7pQMo/b1baNtFYAQuA==",
"version": "1.2.30",
"resolved": "https://registry.npmjs.org/cqk-sy-ui/-/cqk-sy-ui-1.2.30.tgz",
"integrity": "sha512-Swdwu1iGfHB3mreaUA8igW1AT2Kg3Y7o+TbMxkFAc9MmwlPyubtI1QNAjTNdIIpRM6f/voxEwLNFX6jScMXARQ==",
"requires": {
"axios": "^0.26.1",
"crypto-js": "^4.1.1",
......
......@@ -10,7 +10,7 @@
"dependencies": {
"axios": "^0.26.1",
"comlink": "^4.3.1",
"cqk-sy-ui": "^1.2.29",
"cqk-sy-ui": "^1.2.30",
"crypto-js": "^4.1.1",
"element-plus": "^2.1.9",
"js-md5": "^0.7.3",
......
......@@ -21,7 +21,7 @@
font-size: 10px;
font-family: PingFangSC-Regular, PingFang SC;
font-weight: 400;
color: #353535;
color: var(--sy-gray);
"
>
链上验证数据是否上链
......
......@@ -18,7 +18,7 @@ const props = defineProps<{
}>();
</script>
<style lang="scss" scoped>
$notSelectColor: #959595;
$notSelectColor: var(--sy-gray);
$selectColor: #353535;
.menuItem {
......@@ -35,7 +35,7 @@ $selectColor: #353535;
.menuName {
font-size: 14px;
font-family: PingFangSC-Semibold, PingFang SC;
font-weight: 600;
font-weight: 400;
line-height: 20px;
}
}
......@@ -43,5 +43,8 @@ $selectColor: #353535;
color: $selectColor;
background: #e5e5e5;
border-radius: var(--border-radius);
.menuName {
font-weight: 600;
}
}
</style>
......@@ -85,7 +85,7 @@ const menuList = [
otherActivePath: ["/albumManagement", "/albumDetail", "/transferRecords"],
icon: {
active: { iconName: "iconzichan21", props: { color: "#3A3A3A" } },
notActive: { iconName: "iconzichan21", props: { color: "#959595" } },
notActive: { iconName: "iconzichan21", props: { color: "var(--sy-gray)" } },
},
},
{
......
......@@ -41,7 +41,7 @@
>
<Icon
:style="{
color: ele.mode === 'dark' ? '#959595' : 'white',
color: ele.mode === 'dark' ? 'var(--sy-gray)' : 'white',
}"
icon-name="iconweixuanze3"
class="flex-shrink-0 transition-all"
......@@ -51,7 +51,7 @@
v-if="ele.index !== steps.length"
class="number transition-all"
:style="{
color: ele.mode === 'dark' ? '#959595' : 'white',
color: ele.mode === 'dark' ? 'var(--sy-gray)' : 'white',
}"
>
{{ ele.index }}
......
......@@ -77,6 +77,6 @@ defineProps<{
letter-spacing: 1px;
}
.grayTitle {
color: #959595;
color: var(--sy-gray);
}
</style>
......@@ -15,7 +15,7 @@
{{ name }}
</div>
<div class="time">
{{ formatTime(time) }}
{{ formatTime(time, 'YYYY.MM.DD') }}
</div>
</div>
<slot name="bottomR">
......@@ -98,7 +98,7 @@ const clickItem = (item: string) => {
font-size: 12px;
font-family: PingFangSC-Regular, PingFang SC;
font-weight: 400;
color: #353535;
color: var(--sy-gray);
}
}
</style>
......@@ -43,9 +43,6 @@
@click="transfer(props)"
>划转</syButton
>
<!-- <span class="text-gray" v-else-if="props.transfer_status === 1"
>划转中</span
> -->
<span class="text-gray" v-else-if="props.transfer_status === 2"
>已划转</span
>
......
......@@ -134,7 +134,7 @@ watch(searchInput, (newSearch) => {
font-size: 14px;
font-family: PingFangSC-Regular, PingFang SC;
font-weight: 400;
color: #959595;
color: var(--sy-gray);
}
}
.tip {
......
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