peixue-dev/Archive/[一次性]提现页面箭头显示修复-2026-01-31.md

39 lines
784 B
Markdown
Raw Permalink Normal View History

2026-02-28 17:26:03 +08:00
# 提现页面箭头显示修复 - 2026-01-31
## 问题描述
提现页面的"提现方式"选择器右侧显示 `>` 而不是箭头符号 `>`
## 问题原因
在 Vue 模板中直接使用 `>` 符号时,会被 HTML 转义为 `>`
## 修复方案
### 修改前
```vue
<text class="arrow">></text>
```
### 修改后
```vue
<text class="arrow"></text>
```
使用 Unicode 字符 `` (单右尖括号) 代替 `>` 符号。
## 修改文件
- `peidu/uniapp/src/provider-package/pages/provider/withdraw.vue`
## 其他解决方案
如果需要使用其他箭头样式,可以选择:
- `` - 单右尖括号(已使用)
- `→` - 右箭头
- `▶` - 右三角
- 使用 uni-icons 组件:`<uni-icons type="arrow-right" />`
---
*修复时间2026-01-31*