|
@@ -69,9 +69,7 @@
|
|
|
:inputBorder="false"
|
|
:inputBorder="false"
|
|
|
:clearable="true"
|
|
:clearable="true"
|
|
|
:styles="{ disableColor: '#fff' }"
|
|
:styles="{ disableColor: '#fff' }"
|
|
|
- :value="`${sum.totalRunTime} ${
|
|
|
|
|
- sum.modelAttr ? (sum.modelAttr.includes('Time') ? 'h' : '') : ''
|
|
|
|
|
- }`"
|
|
|
|
|
|
|
+ :value="`${sum.totalRunTime} ${sum.modelAttr ? (sum.modelAttr.includes('Time') ? 'h' : '') : ''}`"
|
|
|
:disabled="true"></uni-easyinput>
|
|
:disabled="true"></uni-easyinput>
|
|
|
</view>
|
|
</view>
|
|
|
</view>
|
|
</view>
|
|
@@ -81,7 +79,9 @@
|
|
|
v-for="nosum in item.nonSumList.filter(
|
|
v-for="nosum in item.nonSumList.filter(
|
|
|
nosum =>
|
|
nosum =>
|
|
|
!keys.includes(nosum.description) &&
|
|
!keys.includes(nosum.description) &&
|
|
|
- nosum.description !== 'productionStatus'
|
|
|
|
|
|
|
+ (companyName === 'ry'
|
|
|
|
|
+ ? attrItem.description !== 'productionStatus'
|
|
|
|
|
+ : true)
|
|
|
)">
|
|
)">
|
|
|
<!-- isCollection为1,提示:以下数值取自PLC,如有不符请修改 -->
|
|
<!-- isCollection为1,提示:以下数值取自PLC,如有不符请修改 -->
|
|
|
<uni-notice-bar
|
|
<uni-notice-bar
|
|
@@ -1475,9 +1475,7 @@ const onSubmit = async () => {
|
|
|
const exceededInfo = rdThresholdExceededItems.value
|
|
const exceededInfo = rdThresholdExceededItems.value
|
|
|
.map(
|
|
.map(
|
|
|
(item, index) =>
|
|
(item, index) =>
|
|
|
- `${index + 1}. ${item.deviceCode} ${item.itemName}不能超过${
|
|
|
|
|
- item.maxValue
|
|
|
|
|
- },当前值为${item.currentValue}`
|
|
|
|
|
|
|
+ `${index + 1}. ${item.deviceCode} ${item.itemName}不能超过${item.maxValue},当前值为${item.currentValue}`
|
|
|
)
|
|
)
|
|
|
.join("\n");
|
|
.join("\n");
|
|
|
|
|
|