Commit 3254bb0b authored by Mac's avatar Mac

1

parent 5b0b753d
...@@ -331,7 +331,7 @@ export default { ...@@ -331,7 +331,7 @@ export default {
this.$router.push({ this.$router.push({
path: "/materielexpire" , path: "/materielexpire" ,
query: { query: {
SuppliesNum:row.SuppliesId, SuppliesNum:row.SuppliesNum,
WarehouseId:row.WarehouseId, WarehouseId:row.WarehouseId,
ExpiresDay:this.msg.ExpiresDay ExpiresDay:this.msg.ExpiresDay
} }
......
...@@ -52,7 +52,7 @@ ...@@ -52,7 +52,7 @@
:data="tableData"> :data="tableData">
<vxe-table-column field="SuppliesNum" title="物料编码"> <vxe-table-column field="SuppliesNum" title="物料编码">
<template v-slot="{ row }"> <template v-slot="{ row }">
<span >{{row.SuppliesNum}}</span> <span @click="getCheckDes(row)" style="text-decoration: underline;cursor: pointer;">{{row.SuppliesNum}}</span>
</template> </template>
</vxe-table-column> </vxe-table-column>
<vxe-table-column field="SuppliesName" title="耗材名称" width='300'> <vxe-table-column field="SuppliesName" title="耗材名称" width='300'>
...@@ -65,8 +65,9 @@ ...@@ -65,8 +65,9 @@
<vxe-table-column field="UnitPrice" title="单价"></vxe-table-column> <vxe-table-column field="UnitPrice" title="单价"></vxe-table-column>
<vxe-table-column field="StockInNum" title="入库单号"></vxe-table-column> <vxe-table-column field="StockInNum" title="入库单号"></vxe-table-column>
<vxe-table-column field="ExpirationDate" title="到期时间"></vxe-table-column>
<vxe-table-column field="StockInDate" title="入库时间"></vxe-table-column> <vxe-table-column field="StockInDate" title="入库时间"></vxe-table-column>
<vxe-table-column field="ExpirationDate" title="到期时间"></vxe-table-column>
<vxe-table-column field="Number" title="是否已过期"> <vxe-table-column field="Number" title="是否已过期">
<template v-slot="{ row }"> <template v-slot="{ row }">
...@@ -85,14 +86,20 @@ ...@@ -85,14 +86,20 @@
:total="total"> :total="total">
</el-pagination> </el-pagination>
</div> </div>
<el-dialog title="物料详情" top="0" :visible.sync="CheckDetailState" width="1150px">
<wlDetails ref="mychild"></wlDetails>
</el-dialog>
</div> </div>
</template> </template>
<script> <script>
import wlDetails from "@/components/global/wlDetails.vue";
export default { export default {
name: 'materielexpire', name: 'materielexpire',
components: {
wlDetails
},
data(){ data(){
return{ return{
CheckDetailState:false, CheckDetailState:false,
......
...@@ -50,9 +50,10 @@ ...@@ -50,9 +50,10 @@
<vxe-table-column field="Units" title="单位"></vxe-table-column> <vxe-table-column field="Units" title="单位"></vxe-table-column>
<vxe-table-column field="StockInNum" title="入库单号"></vxe-table-column> <vxe-table-column field="StockInNum" title="入库单号"></vxe-table-column>
<vxe-table-column field="ExpirationDate" title="有效期"></vxe-table-column>
<vxe-table-column field="StockInDate" title="入库时间"></vxe-table-column> <vxe-table-column field="StockInDate" title="入库时间"></vxe-table-column>
<vxe-table-column field="UnitPrice" title="价格"></vxe-table-column> <vxe-table-column field="UnitPrice" title="价格"></vxe-table-column>
<vxe-table-column field="ExpirationDate" title="有效期"></vxe-table-column>
<vxe-table-column title="操作"> <vxe-table-column title="操作">
<template v-slot="{ row, rowIndex }"> <template v-slot="{ row, rowIndex }">
<img @click="delBound(row,rowIndex)" style="width:24px;height:24px" <img @click="delBound(row,rowIndex)" style="width:24px;height:24px"
......
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