Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Hooke
/
jgdl
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
hookehuyr
2025-07-18 14:42:26 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
4f057b111640c3a5289bbc63716c37d748747d7a
4f057b11
1 parent
19315dda
fix(productDetail): 仅在价格存在时显示价格视图并添加货币符号空格
fix(myAuthCar): 在审核结果前添加描述文本
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
src/pages/myAuthCar/index.vue
src/pages/productDetail/index.vue
src/pages/myAuthCar/index.vue
View file @
4f057b1
<!--
* @Date: 2022-09-19 14:11:06
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2025-07-18 1
2:59:56
* @LastEditTime: 2025-07-18 1
4:39:24
* @FilePath: /jgdl/src/pages/myAuthCar/index.vue
* @Description: 我的认证车页面
-->
...
...
@@ -47,7 +47,7 @@
<view v-if="item.verification_status === 7 && item.verification_reason" class="verification-reason mt-1">
<!-- <text class="text-xs text-red-500">审核结果:{{ item.verification_reason }}</text> -->
<nut-config-provider :theme-vars="themeVars">
<nut-ellipsis :content="item.verification_reason" direction="end" rows="2" expand-text="展开" collapse-text="收起"></nut-ellipsis>
<nut-ellipsis :content="
'审核结果: ' +
item.verification_reason" direction="end" rows="2" expand-text="展开" collapse-text="收起"></nut-ellipsis>
</nut-config-provider>
</view>
<!-- <view class="mt-2 flex justify-between items-center">
...
...
src/pages/productDetail/index.vue
View file @
4f057b1
<!--
* @Date: 2022-09-19 14:11:06
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2025-07-1
4 16:38:18
* @LastEditTime: 2025-07-1
8 14:42:02
* @FilePath: /jgdl/src/pages/productDetail/index.vue
* @Description: 商品详情页
-->
...
...
@@ -37,9 +37,9 @@
</view>
</view>
</view>
<view class="flex items-center mb-3">
<view
v-if="product?.price"
class="flex items-center mb-3">
<text class="text-2xl font-bold text-orange-500 mr-2">
¥{{ product?.price?.toLocaleString() }}
¥
{{ product?.price?.toLocaleString() }}
</text>
<!-- <view class="ml-2 text-xs px-2 py-1 bg-orange-100 text-orange-600 rounded">
低于市场价{{ product.discountPercent }}%
...
...
Please
register
or
login
to post a comment