|
@@ -33,8 +33,13 @@
|
|
|
</div>
|
|
|
|
|
|
<div class="tips">
|
|
|
- <div class="tip-title">TIPS</div>
|
|
|
- <div class="tip-content">asdasdasdasd</div>
|
|
|
+ <div class="tips-icon">
|
|
|
+ <img :src="require('@/assets/svg/icon-top-up-tips-warning.svg')" alt="">
|
|
|
+ </div>
|
|
|
+ <div class="tips-content">
|
|
|
+ <p>Ensure that the address is correct and on the same network. Otherwise, you'll lose your assets.
|
|
|
+ </p>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<!-- 底部 -->
|
|
@@ -82,7 +87,7 @@ const clickBtn = () => {
|
|
|
}).then((res) => {
|
|
|
switch (res.code.toString()) {
|
|
|
case '0':
|
|
|
- withdraw_info.state_page.txt = ['123123']
|
|
|
+ withdraw_info.state_page.txt = ['Estimated completion with a few minutes', 'View history for the latest updates']
|
|
|
router.push('/withdraw/success')
|
|
|
break
|
|
|
case '4002':
|
|
@@ -207,15 +212,33 @@ const clickEnter = () => {
|
|
|
}
|
|
|
|
|
|
.tips {
|
|
|
- margin-top: 30px;
|
|
|
+ margin-top: 12px;
|
|
|
font-size: 13px;
|
|
|
+ height: 118;
|
|
|
+ overflow: auto;
|
|
|
+ background: #FCF5E5;
|
|
|
+ display: flex;
|
|
|
+ padding: 10px;
|
|
|
+ border-radius: 10px;
|
|
|
|
|
|
- .tip-title {
|
|
|
- color: #000000;
|
|
|
+ .tips-icon {
|
|
|
+
|
|
|
+ width: 30px;
|
|
|
+
|
|
|
+ img {
|
|
|
+ width: 20px;
|
|
|
+ height: 20px;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
- .tip-content {
|
|
|
- color: #000000;
|
|
|
+ .tips-content {
|
|
|
+ flex: 1;
|
|
|
+ }
|
|
|
+
|
|
|
+ p {
|
|
|
+ margin: 0;
|
|
|
+ padding: 0;
|
|
|
+ color: #AD8226;
|
|
|
}
|
|
|
}
|
|
|
|