Commit 9847916a authored by 徐来柯's avatar 徐来柯

fix bug

parent 755011fd
......@@ -18,6 +18,7 @@
:data="tableData"
tooltip-effect="dark"
style="width: 100%"
highlight-current-row
@selection-change="handleSelectionChange">
<el-table-column
type="selection"
......
......@@ -18,6 +18,7 @@
:data="tableData"
tooltip-effect="dark"
style="width: 100%"
highlight-current-row
@selection-change="handleSelectionChange">
<el-table-column
type="selection"
......
......@@ -9,6 +9,7 @@
:data="tableData"
class="table-style"
tooltip-effect="dark"
highlight-current-row
style="width: 100%"
:row-class-name="tableRowClassName"
>
......
......@@ -9,6 +9,7 @@
:data="tableData"
class="table-style"
tooltip-effect="dark"
highlight-current-row
style="width: 100%"
@selection-change="handleSelectionChange">
<el-table-column
......
......@@ -9,6 +9,7 @@
:data="tableData"
class="table-style"
tooltip-effect="dark"
highlight-current-row
style="width: 100%"
@selection-change="handleSelectionChange">
<el-table-column
......
......@@ -16,6 +16,7 @@
class="conterFool_middle"
ref="multipleTable"
:data="tableData"
highlight-current-row
tooltip-effect="dark"
style="width: 100%"
@selection-change="handleSelectionChange">
......
......@@ -10,6 +10,7 @@
class="table-style"
tooltip-effect="dark"
style="width: 100%"
highlight-current-row
@selection-change="handleSelectionChange">
<el-table-column
type="selection"
......
......@@ -10,6 +10,7 @@
class="table-style"
tooltip-effect="dark"
style="width: 100%"
highlight-current-row
@selection-change="handleSelectionChange">
<el-table-column
type="selection"
......@@ -257,6 +258,24 @@ export default {
},
conserve (data) {
var $this = this
if (data.LID.trim() === '') {
$this.typeV = '5'
$this.deleteShow = true
$this.deletetext = '线体编号不能为空'
return
}
if (data.PID.trim() === '') {
$this.typeV = '5'
$this.deleteShow = true
$this.deletetext = '产品编号不能为空'
return
}
if (data.Quantity.trim() == '') {
$this.typeV = '5'
$this.deleteShow = true
$this.deletetext = '入库数量不能为空'
return
}
this.$axios({
method:"post",
url:`/api/ProductStorage/ProductStorage_WindowAddSave`,
......
......@@ -18,6 +18,7 @@
:data="tableData"
tooltip-effect="dark"
style="width: 100%"
highlight-current-row
@selection-change="handleSelectionChange">
<el-table-column
type="selection"
......
......@@ -31,7 +31,7 @@
<el-table
:data="item.BomMaterielInfos"
@selection-change="handleSelectionChange"
highlight-current-row
border
height="280px"
style="width: 100%">
......
......@@ -168,6 +168,7 @@
class="conterFool_middle"
ref="multipleTable"
:data="tableDataList"
highlight-current-row
tooltip-effect="dark"
style="width: 100%"
@selection-change="handleSelectionChange">
......
......@@ -17,6 +17,7 @@
ref="multipleTable"
:data="tableData"
tooltip-effect="dark"
highlight-current-row
style="width: 100%"
@selection-change="handleSelectionChange">
<el-table-column
......
......@@ -17,6 +17,7 @@
ref="multipleTable"
:data="tableData"
tooltip-effect="dark"
highlight-current-row
style="width: 100%"
@selection-change="handleSelectionChange">
<el-table-column
......
......@@ -18,6 +18,7 @@
:data="tableData"
tooltip-effect="dark"
style="width: 100%"
highlight-current-row
@selection-change="handleSelectionChange">
<el-table-column
type="selection"
......
......@@ -18,6 +18,7 @@
:data="tableData"
tooltip-effect="dark"
style="width: 100%"
highlight-current-row
@selection-change="handleSelectionChange">
<el-table-column
type="selection"
......
......@@ -18,6 +18,7 @@
:data="tableData"
tooltip-effect="dark"
style="width: 100%"
highlight-current-row
@selection-change="handleSelectionChange">
<el-table-column
type="selection"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment