fix:修复前端子卷规格无法显示问题

This commit is contained in:
2024-06-26 14:17:15 +08:00
parent 4d729392c9
commit ea8b70ec38
3 changed files with 15 additions and 15 deletions

View File

@@ -67,10 +67,10 @@
请仔细核对子卷与木箱规格是否匹配
<br>
<br>
<span class="red-text">木箱长度为{{ this.box_length }}</span>
<span class="red-text">木箱长度为{{ this.boxLength }}</span>
<br>
<br>
<span class="red-text">子卷规格为{{ this.paper_tube_description }}</span>
<span class="red-text">子卷规格为{{ this.paperTubeDescription }}</span>
<br>
<br>
点击确定后将立即生成木箱出库任务无法更改
@@ -121,7 +121,7 @@ export default {
},
data() {
return {
box_length: '',
boxLength: '',
classes: [],
dialogVisible: false,
dialogVisible1: false,
@@ -211,7 +211,7 @@ export default {
submit() {
debugger
this.rows = this.$refs.table.selection
this.box_length = this.rows[0].box_length
this.boxLength = this.rows[0].box_length
if (this.rows.length <= 0) {
this.$message('请先选择木箱信息')
return