You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
823 B
36 lines
823 B
<template>
|
|
<view class="main">
|
|
<view class="flex">
|
|
<view class="topview">
|
|
<image src="../../../../static/tongyonh/search.png" mode="aspectFit" class="searchimg"></image>
|
|
<u-input placeholderStyle="fontSize:12px;color:#D0D0D2" placeholder="Enter the token name or contract address" v-model="value" :focus="true" :type="type" :border="border" class="custom-style" />
|
|
</view>
|
|
<text class="text" @click="back">Cancel</text>
|
|
</view>
|
|
<u-empty text="Please enter the token name or contract address to search" mode="list"></u-empty>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
value: '',
|
|
type: 'text',
|
|
show: false,
|
|
border: false,
|
|
|
|
}
|
|
},
|
|
methods: {
|
|
back(){
|
|
uni.navigateBack({
|
|
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
<style>
|
|
@import './index.css';
|
|
</style>
|