Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pmk-channel-vue
概览
Overview
Details
Activity
Cycle Analytics
版本库
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
问题
0
Issues
0
列表
Board
标记
里程碑
合并请求
0
Merge Requests
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
Snippets
成员
Members
Collapse sidebar
Close sidebar
活动
图像
聊天
创建新问题
作业
提交
Issue Boards
Open sidebar
黄麒宇
pmk-channel-vue
Commits
a29798cd
Commit
a29798cd
authored
Apr 03, 2024
by
韩振
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
fed109e5
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
4 行增加
和
3 行删除
+4
-3
InTask.vue
src/views/InTask.vue
+1
-1
OutTask.vue
src/views/OutTask.vue
+1
-1
RFID.vue
src/views/RFID.vue
+2
-1
没有找到文件。
src/views/InTask.vue
View file @
a29798cd
...
...
@@ -84,7 +84,7 @@
<
template
#
default=
"scope"
>
<div
class=
"editable-cell"
>
<div
v-if=
"editable && itemForm.modelCode == scope.row.modelCode"
class=
"editable-cell-input-wrapper"
>
<el-input-number
ref=
'inputs'
size=
"small"
style=
"height: 30px"
:value=
"writeAmount"
@
change=
"handleChange"
@
blur=
"check"
:max=
"scope.row.planAmount
- scope.row.realAmount
"
/>
<el-input-number
ref=
'inputs'
size=
"small"
style=
"height: 30px"
:value=
"writeAmount"
@
change=
"handleChange"
@
blur=
"check"
:max=
"scope.row.planAmount
> 0 ? scope.row.planAmount - scope.row.realAmount : 1000000
"
/>
</div>
<div
v-else
class=
"editable-cell-text-wrapper"
@
dblclick=
"edit(scope.row)"
>
<span>
{{
scope
.
row
.
writeAmount
}}
</span>
...
...
src/views/OutTask.vue
View file @
a29798cd
...
...
@@ -84,7 +84,7 @@
<
template
#
default=
"scope"
>
<div
class=
"editable-cell"
>
<div
v-if=
"editable && itemForm.modelCode == scope.row.modelCode"
class=
"editable-cell-input-wrapper"
>
<el-input-number
ref=
'inputs'
size=
"small"
style=
"height: 30px"
:value=
"writeAmount"
@
change=
"handleChange"
@
blur=
"check"
:max=
"scope.row.planAmount
- scope.row.realAmount
"
/>
<el-input-number
ref=
'inputs'
size=
"small"
style=
"height: 30px"
:value=
"writeAmount"
@
change=
"handleChange"
@
blur=
"check"
:max=
"scope.row.planAmount
> 0 ? scope.row.planAmount - scope.row.realAmount : 1000000
"
/>
</div>
<div
v-else
class=
"editable-cell-text-wrapper"
@
dblclick=
"edit(scope.row)"
>
<span>
{{
scope
.
row
.
writeAmount
}}
</span>
...
...
src/views/RFID.vue
View file @
a29798cd
...
...
@@ -272,7 +272,7 @@
</
template
>
</el-dialog>
<el-dialog
title=
"异常信息确认"
v-model=
"errVisible"
style=
"width:60%"
>
<el-dialog
title=
"异常信息确认"
v-model=
"errVisible"
style=
"width:60%
;height: 700px
"
>
<el-select
v-model=
"searchData.handleFlag"
@
change=
"searchAgain"
style=
"width: 140px;margin-bottom: 10px;margin-top: -30px"
>
<el-option
label=
"未处理"
:value=
"2"
/>
<el-option
label=
"已处理"
:value=
"1"
/>
...
...
@@ -610,6 +610,7 @@ export default defineComponent({
function
deleteEpc
(
row
)
{
let
param
=
row
;
param
.
storeCode
=
JSON
.
parse
(
sessionStorage
.
getItem
(
'storeInfo'
)).
storeCode
;
param
.
type
=
param
.
stationType
;
// 删除确认
this
.
$confirm
(
'此操作将删除该数据, 是否继续?'
,
'提示'
,
{
confirmButtonText
:
'确定'
,
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论