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
5c695c74
authored
Apr 27, 2023
by
LJM
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
bug
parent
0c27ea9f
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
3 deletions
pages/tallyReceive/operate.vue
pages/tallyReceive/operate.vue
View file @
5c695c74
...
...
@@ -144,8 +144,8 @@
</
template
>
<view
class=
"default row rowCenter verCenter"
@
click=
"chooseImageChange()"
v-if=
"image_list.length < maxNum"
><text
class=
"iconfont icon-a-juxing3"
></text></view>
</view>
<view
class=
"print row verCenter"
>
<text
class=
"check-box-icon
curr
"
></text>
<view
class=
"print row verCenter"
@
click=
"toggle()"
>
<text
class=
"check-box-icon
"
:class=
"{ curr: print_flag }
"
></text>
<text
class=
"tt"
>
整单照片
</text>
</view>
<view
class=
"h2"
>
理货备注:
</view>
...
...
@@ -195,7 +195,8 @@ export default {
coo
:
''
,
//产地
other_batch_attr
:
''
,
//其他批次属性
image_ids
:
[],
//图片
tally_remark
:
''
//理货备注
tally_remark
:
''
,
//理货备注
is_print
:
1
//打印入库标签
}
};
},
...
...
@@ -226,6 +227,17 @@ export default {
this
.
getData
();
},
/**
* 是否打印
*/
toggle
()
{
this
.
print_flag
=
!
this
.
print_flag
;
if
(
this
.
print_flag
)
{
this
.
formParams
.
is_print
=
1
;
}
else
{
this
.
formParams
.
is_print
=
0
;
}
},
/**
* 清空数据
*/
clearInput
()
{
...
...
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