Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
梁建民
/
wmsApp
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
948d3668
authored
Nov 26, 2025
by
liangjianmin
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
fix(putaway): 扩展库存类型红色标识范围
- 将库存类型红色标识从仅类型3扩展到类型2和3 - 使用includes方法判断库存类型,提升代码可读性
parent
02616cf2
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
pages/putaway/index.vue
pages/putaway/index.vue
View file @
948d3668
...
...
@@ -101,7 +101,7 @@
</view>
<view
class=
"text-item row"
>
<text
class=
"label"
>
库存类型:
</text>
<text
class=
"tt"
:style=
"{ color:
item.stock_type === 3
? '#f00' : '' }"
>
{{ item.stock_type_val }}
</text>
<text
class=
"tt"
:style=
"{ color:
[2, 3].includes(item.stock_type)
? '#f00' : '' }"
>
{{ item.stock_type_val }}
</text>
</view>
<view
class=
"text-item row"
>
<text
class=
"label"
>
明细备注:
</text>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment