Browse Source

修改标签功能

master
常熟吴彦祖 3 months ago
parent
commit
a8dd2ccdaf
  1. 10
      src/views/modules/warehouse/changeHUSpecialItem.vue

10
src/views/modules/warehouse/changeHUSpecialItem.vue

@ -593,6 +593,14 @@ export default {
]
}
},
watch: {
wdrFormData: {
deep: true,
handler: function (newV, oldV) {
this.wdrFormData.toWdr = this.wdrFormData.toWdr.toUpperCase()
}
}
},
mounted() {
this.$nextTick(() => {
this.height = window.innerHeight - 220;
@ -1031,7 +1039,7 @@ export default {
if (failCount > 0 && failedUnitIds.length > 0) {
// - rqrq
htmlContent += `<p><b>失败序列号:</b>${failedUnitIds.join(', ')}</p>`
// - rqrq
const firstError = failedReasons.length > 0 ? failedReasons[0] : '未知错误'
htmlContent += `<p><b>失败报错:</b>${firstError}</p>`

Loading…
Cancel
Save