|
@@ -1,11 +1,9 @@
|
|
|
<template>
|
|
|
<div class="container">
|
|
|
<div class="cell-box" v-for="(item,i) in tabList" :key="item.name" @click="goTo(i)">
|
|
|
- <van-image
|
|
|
- width="44px"
|
|
|
- height="44px"
|
|
|
- round
|
|
|
- src="https://fastly.jsdelivr.net/npm/@vant/assets/cat.jpeg"
|
|
|
+ <svg-icon
|
|
|
+ style="width: 44px; height: 44px;"
|
|
|
+ :name="item.imgName"
|
|
|
/>
|
|
|
<div class="cell-content">
|
|
|
<div>
|
|
@@ -24,10 +22,12 @@ const tabList = [
|
|
|
{
|
|
|
name:$t('form.ImportingThePrivateKey'),
|
|
|
text:$t('form.ImportByEnteringThePlaintextPrivateKeyOrScanningTheQRCode'),
|
|
|
+ imgName:'sydr'
|
|
|
},
|
|
|
{
|
|
|
name:$t('form.ImportMnemonicWords'),
|
|
|
text:$t('form.ImportByEnteringTheMnemonicPhraseOrScanningTheQRCode'),
|
|
|
+ imgName:'zjc'
|
|
|
},
|
|
|
// {
|
|
|
// name:'keystore導入',
|