13 changed files with 24 additions and 154 deletions
@ -1,81 +1,13 @@ |
|||||
<template> |
<template> |
||||
<div class="bg-black"> |
<div class="desktop:pt-[76px] mobile:pt-[39px]"> |
||||
<div class="bg-black desktop:pt-[76px] mobile:pt-[39px]"> |
<row-search /> |
||||
<!-- pc端显示 --> |
|
||||
<div class="mobile:hidden"> |
|
||||
<div class="flex flex-row px-[120px] justify-between items-center"> |
|
||||
<div class="flex flex-1 justify-start items-center"> |
|
||||
<img |
|
||||
:src="iconList.label" |
|
||||
class="w-[60px] h-[33px]" |
|
||||
@click="goBack" |
|
||||
/> |
|
||||
<span |
|
||||
class="text-[34px] font-semibold text-white ml-[11.5px]" |
|
||||
@click="goBack" |
|
||||
>MetaForce Scan</span |
|
||||
> |
|
||||
</div> |
|
||||
<div class="flex flex-1 h-[52px] justify-end items-center"> |
|
||||
<div class="flex flex-1 max-w-[554px]"> |
|
||||
<el-input |
|
||||
v-model="input" |
|
||||
class="bg-black h-[52px] pl-[33px] text-[12px] rounded-[100px] overflow-hidden hp-input-wrapper" |
|
||||
placeholder="Search by Address/Token symbol/Name/Transaction hash/Bock number" |
|
||||
:prefix-icon="Search" |
|
||||
:input-style="{ background: '#262626' }" |
|
||||
/> |
|
||||
</div> |
|
||||
</div> |
|
||||
</div> |
|
||||
<div |
|
||||
class="bg-home-page bg-cover bg-center bg-no-repeat w-[1440px] h-[535.5px]" |
|
||||
></div> |
|
||||
</div> |
|
||||
<!-- 移动端显示 --> |
|
||||
<div class="desktop:hidden"> |
|
||||
<div |
|
||||
class="bg-home-page bg-cover bg-center bg-no-repeat w-full h-[219px] pt-[25px]" |
|
||||
> |
|
||||
<div class="flex flex-1 justify-center items-center"> |
|
||||
<img :src="iconList.label" class="w-[40px] h-[24px]" /> |
|
||||
<span class="text-[24px] font-semibold text-white ml-[16px]" |
|
||||
>MetaForce Scan</span |
|
||||
> |
|
||||
</div> |
|
||||
<div |
|
||||
class="flex flex-1 h-[40px] justify-center items-center mt-[32px]" |
|
||||
> |
|
||||
<div class="flex flex-1 px-[20px]"> |
|
||||
<el-input |
|
||||
v-model="input" |
|
||||
class="bg-black h-[40px] pl-[15.69px] text-[12px] rounded-[100px] overflow-hidden hp-input-wrapper" |
|
||||
placeholder="Search by Address/Token symbol/Name/Transaction hash/Bock number" |
|
||||
:prefix-icon="Search" |
|
||||
:input-style="{ background: '#262626' }" |
|
||||
/> |
|
||||
</div> |
|
||||
</div> |
|
||||
</div> |
|
||||
</div> |
|
||||
</div> |
|
||||
<center-content /> |
<center-content /> |
||||
</div> |
</div> |
||||
</template> |
</template> |
||||
|
|
||||
<script setup lang="ts"> |
<script setup lang="ts"> |
||||
import { Search } from '@element-plus/icons-vue' |
import RowSearch from '@src/components/row-search.vue' |
||||
import { ref } from 'vue' |
|
||||
import * as iconList from '../../assets/Icons/index' |
|
||||
import router from '@src/routes' |
|
||||
|
|
||||
import centerContent from './centerContent.vue' |
import centerContent from './centerContent.vue' |
||||
|
|
||||
const input = ref() |
|
||||
|
|
||||
// 请求代币信息 |
|
||||
// const request |
|
||||
const goBack = () => router.back() |
|
||||
</script> |
</script> |
||||
|
|
||||
<style scoped></style> |
<style scoped></style> |
||||
|
@ -1,79 +1,13 @@ |
|||||
<template> |
<template> |
||||
<div class="bg-black"> |
<div class="desktop:pt-[76px] mobile:pt-[39px]"> |
||||
<div class="bg-black desktop:pt-[76px] mobile:pt-[39px]"> |
<row-search /> |
||||
<!-- pc端显示 --> |
|
||||
<div class="mobile:hidden"> |
|
||||
<div class="flex flex-row px-[120px] justify-between items-center"> |
|
||||
<div class="flex flex-1 justify-start items-center"> |
|
||||
<img |
|
||||
:src="iconList.label" |
|
||||
class="w-[60px] h-[33px]" |
|
||||
@click="goBack" |
|
||||
/> |
|
||||
<span |
|
||||
class="text-[34px] font-semibold text-white ml-[11.5px]" |
|
||||
@click="goBack" |
|
||||
>MetaForce Scan</span |
|
||||
> |
|
||||
</div> |
|
||||
<div class="flex flex-1 h-[52px] justify-end items-center"> |
|
||||
<div class="flex flex-1 max-w-[554px]"> |
|
||||
<el-input |
|
||||
v-model="input" |
|
||||
class="bg-black h-[52px] pl-[33px] text-[12px] rounded-[100px] overflow-hidden hp-input-wrapper" |
|
||||
placeholder="Search by Address/Token symbol/Name/Transaction hash/Bock number" |
|
||||
:prefix-icon="Search" |
|
||||
:input-style="{ background: '#262626' }" |
|
||||
/> |
|
||||
</div> |
|
||||
</div> |
|
||||
</div> |
|
||||
<div |
|
||||
class="bg-home-page bg-cover bg-center bg-no-repeat w-[1440px] h-[535.5px]" |
|
||||
></div> |
|
||||
</div> |
|
||||
<!-- 移动端显示 --> |
|
||||
<div class="desktop:hidden"> |
|
||||
<div |
|
||||
class="bg-home-page bg-cover bg-center bg-no-repeat w-full h-[219px] pt-[25px]" |
|
||||
> |
|
||||
<div class="flex flex-1 justify-center items-center"> |
|
||||
<img :src="iconList.label" class="w-[40px] h-[24px]" /> |
|
||||
<span class="text-[24px] font-semibold text-white ml-[16px]" |
|
||||
>MetaForce Scan</span |
|
||||
> |
|
||||
</div> |
|
||||
<div |
|
||||
class="flex flex-1 h-[40px] justify-center items-center mt-[32px]" |
|
||||
> |
|
||||
<div class="flex flex-1 px-[20px]"> |
|
||||
<el-input |
|
||||
v-model="input" |
|
||||
class="bg-black h-[40px] pl-[15.69px] text-[12px] rounded-[100px] overflow-hidden hp-input-wrapper" |
|
||||
placeholder="Search by Address/Token symbol/Name/Transaction hash/Bock number" |
|
||||
:prefix-icon="Search" |
|
||||
:input-style="{ background: '#262626' }" |
|
||||
/> |
|
||||
</div> |
|
||||
</div> |
|
||||
</div> |
|
||||
</div> |
|
||||
</div> |
|
||||
<center-content /> |
<center-content /> |
||||
</div> |
</div> |
||||
</template> |
</template> |
||||
|
|
||||
<script setup lang="ts"> |
<script setup lang="ts"> |
||||
import { Search } from '@element-plus/icons-vue' |
import RowSearch from '@src/components/row-search.vue' |
||||
import router from '@src/routes' |
|
||||
import { ref } from 'vue' |
|
||||
import * as iconList from '../../assets/Icons/index' |
|
||||
|
|
||||
import centerContent from './centerContent.vue' |
import centerContent from './centerContent.vue' |
||||
|
|
||||
const input = ref() |
|
||||
|
|
||||
const goBack = () => router.back() |
|
||||
</script> |
</script> |
||||
|
|
||||
<style scoped></style> |
<style scoped></style> |
||||
|
Loading…
Reference in new issue