hookehuyr

refactor(上传图片): 移除van-uploader组件中多余的upload-text插槽内容

移除未使用的上传按钮文本和图标模板,简化组件结构
```

这个提交消息:
1. 使用了`refactor`类型,因为这是对现有代码结构的优化
2. 添加了`上传图片`作为scope,明确了修改范围
3. 描述简洁说明了"移除了什么"和"为什么"(简化组件结构)
4. 在正文中补充说明了具体移除的内容
5. 符合50字符限制(中文一个汉字算一个字符)
6. 使用了中文并保持简洁明了
......@@ -13,12 +13,6 @@
accept="image/*"
result-type="file"
>
<template #upload-text>
<div class="text-center">
<van-icon name="photograph" size="24" />
<div class="mt-1 text-sm text-gray-600">上传图片</div>
</div>
</template>
</van-uploader>
<div class="mt-2 text-xs text-gray-500">最多上传{{ max_count }}张图片,每张不超过20M</div>
<div class="mt-2 text-xs text-gray-500">上传类型:&nbsp;{{ type_text }}</div>
......