Commit d213eb38 authored by chenqikuai's avatar chenqikuai

fix

parent 37fbd1e9
......@@ -846,9 +846,9 @@
}
},
"cqk-sy-ui": {
"version": "1.3.15",
"resolved": "https://registry.npmjs.org/cqk-sy-ui/-/cqk-sy-ui-1.3.15.tgz",
"integrity": "sha512-9c4bKiCqaLTTJBEHXECr/R0enLb36esM4bgYHt0FdMt4lTjrpimg/2B5AjzNBiIIpMYm+pIEcBEonr4KH4kY0Q==",
"version": "1.3.16",
"resolved": "https://registry.npmjs.org/cqk-sy-ui/-/cqk-sy-ui-1.3.16.tgz",
"integrity": "sha512-8hGmK3S260b5POZCEsi1vgaRNgFYEV/+TPQUvl+9SIgl830ILC6h/uhFbhIv06+OGMNF6jNpNaled0WnYKldVg==",
"requires": {
"axios": "^0.26.1",
"crypto-js": "^4.1.1",
......
......@@ -19,7 +19,7 @@
"@tinymce/tinymce-vue": "^4.0.7",
"axios": "^0.26.1",
"comlink": "^4.3.1",
"cqk-sy-ui": "^1.3.15",
"cqk-sy-ui": "^1.3.16",
"crypto-js": "^4.1.1",
"dom-to-image": "^2.6.0",
"element-plus": "^2.1.9",
......
public/favicon.ico

4.19 KB | W: | H:

public/favicon.ico

4.19 KB | W: | H:

public/favicon.ico
public/favicon.ico
public/favicon.ico
public/favicon.ico
  • 2-up
  • Swipe
  • Onion skin
This diff is collapsed.
......@@ -16,7 +16,11 @@
placeholder="搜索"
style="margin-top: -13px"
></Search>
<syScrollBar @scroll-to-end="pagechange" style="height: 370px">
<syScrollBar
@scroll-to-end="pagechange"
style="height: 435px"
class="pr-3 -mr-3"
>
<div class="floderList">
<div v-if="proofList.length >= 1" class="infinite-list">
<div
......@@ -147,9 +151,11 @@ function pagechange() {
.floderList {
margin-top: 15px;
.infinite-list {
padding: 0 15px;
// margin-right: -10px;
// padding-right: 10px;
.infinite-list-item {
height: 30px;
margin-bottom: 8px;
line-height: 30px;
font-size: 14px;
overflow: hidden;
......
<template>
<syTracePage @navigate="$router.push" @search-hash="searchHash"></syTracePage>
<syTracePage
@navigate="$router.push"
@search-hash="searchHash"
:projPartyLogo="''"
></syTracePage>
</template>
<script lang="ts" setup>
import { globalState } from "@/store/state";
import { syTracePage } from "cqk-sy-ui"
import { syTracePage } from "cqk-sy-ui";
const searchHash = (hashText: string) => {
if (hashText.trim() === "") {
window.open(globalState.urlList.chain_browser_url);
} else {
window.open(
globalState.urlList.chain_browser_url +
"/product?hash=" +
hashText
globalState.urlList.chain_browser_url + "/product?hash=" + hashText
);
}
}
};
</script>
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