Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
Z
zhmes-agecal
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
耿迪迪
zhmes-agecal
Commits
fba4c1d8
Commit
fba4c1d8
authored
Dec 03, 2025
by
wanghao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1 接收标定历史记录界面调整
2 接收标定结果后没有更新 标定浓度 和 标定状态
parent
fe5155a6
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
1 deletion
+4
-1
PalletDeviceBindingMapper.xml
...ain/resources/mapper/system/PalletDeviceBindingMapper.xml
+2
-0
ProcessCalibrationResultHistoryMapper.xml
...s/mapper/system/ProcessCalibrationResultHistoryMapper.xml
+1
-0
index.vue
zhmes-agecal-web/src/views/calibrationResult/index.vue
+1
-1
No files found.
zhmes-agecal-system/src/main/resources/mapper/system/PalletDeviceBindingMapper.xml
View file @
fba4c1d8
...
@@ -310,6 +310,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
...
@@ -310,6 +310,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if
test=
"item.zeroStatus == null"
>
f_zero_status = #{item.zeroStatus},
</if>
<if
test=
"item.zeroStatus == null"
>
f_zero_status = #{item.zeroStatus},
</if>
<if
test=
"item.calibrationAd != null"
>
f_calibration_ad = #{item.calibrationAd},
</if>
<if
test=
"item.calibrationAd != null"
>
f_calibration_ad = #{item.calibrationAd},
</if>
<if
test=
"item.calibrationAdStatus != null"
>
f_calibration_status = #{item.calibrationAdStatus},
</if>
<if
test=
"item.calibrationAdStatus != null"
>
f_calibration_status = #{item.calibrationAdStatus},
</if>
<if
test=
"item.calibrationConcentration != null"
>
f_calibration_concentration = #{item.calibrationConcentration},
</if>
<if
test=
"item.calibrationConcentrationStatus != null"
>
f_calibration_concentration_status = #{item.calibrationConcentrationStatus},
</if>
</trim>
</trim>
where f_pallet_device_binding_id = #{item.palletDeviceBindingId}
where f_pallet_device_binding_id = #{item.palletDeviceBindingId}
</foreach>
</foreach>
...
...
zhmes-agecal-system/src/main/resources/mapper/system/ProcessCalibrationResultHistoryMapper.xml
View file @
fba4c1d8
...
@@ -19,6 +19,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
...
@@ -19,6 +19,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<where>
<where>
<if
test=
"message != null and message != ''"
>
and f_message like concat ('%', #{message}, '%')
</if>
<if
test=
"message != null and message != ''"
>
and f_message like concat ('%', #{message}, '%')
</if>
</where>
</where>
order by f_id desc
</select>
</select>
<select
id=
"selectProcessCalibrationResultHistoryById"
parameterType=
"Long"
resultMap=
"ProcessCalibrationResultHistoryResult"
>
<select
id=
"selectProcessCalibrationResultHistoryById"
parameterType=
"Long"
resultMap=
"ProcessCalibrationResultHistoryResult"
>
...
...
zhmes-agecal-web/src/views/calibrationResult/index.vue
View file @
fba4c1d8
...
@@ -17,7 +17,7 @@
...
@@ -17,7 +17,7 @@
<el-table
v-loading=
"loading"
:data=
"historyList"
@
selection-change=
"handleSelectionChange"
>
<el-table
v-loading=
"loading"
:data=
"historyList"
@
selection-change=
"handleSelectionChange"
>
<el-table-column
label=
"接收时间"
align=
"center"
prop=
"createTime"
width=
"180"
>
<el-table-column
label=
"接收时间"
align=
"center"
prop=
"createTime"
width=
"180"
>
<template
slot-scope=
"scope"
>
<template
slot-scope=
"scope"
>
<span>
{{
parseTime
(
scope
.
row
.
createTime
,
'{y
}
-{m
}
-{d
}
'
)
}}
<
/span
>
<span>
{{
parseTime
(
scope
.
row
.
createTime
,
'{y
}
-{m
}
-{d
}
{h
}
:{i
}
:{s
}
'
)
}}
<
/span
>
<
/template
>
<
/template
>
<
/el-table-column
>
<
/el-table-column
>
<
el
-
table
-
column
label
=
"操作"
align
=
"center"
class
-
name
=
"small-padding fixed-width"
>
<
el
-
table
-
column
label
=
"操作"
align
=
"center"
class
-
name
=
"small-padding fixed-width"
>
...
...
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