Commit 8bb6f138 authored by Mac's avatar Mac

物料过期查询

parent 301ed530
......@@ -39,7 +39,7 @@
</el-select>
</li>
<li>
<el-select size="small" filterable clearable v-model="msg.ExpiresDay" placeholder="过期天数" @change="msg.pageIndex=1,getList()">
<el-select size="small" filterable v-model="msg.ExpiresDay" placeholder="过期天数" @change="msg.pageIndex=1,getList()">
<el-option
v-for="item in daylist"
:key="item.Id"
......@@ -82,7 +82,7 @@
</vxe-table-column>
<vxe-table-column field="Number" title="到期数量">
<template v-slot="{ row }">
<span class="underline" >{{row.RecentExpiresNum}}</span>
<span class="underline" @click="gomater(row)">{{row.RecentExpiresNum}}</span>
</template>
</vxe-table-column>
<vxe-table-column field="address" title="操作">
......@@ -326,6 +326,17 @@ export default {
null
);
},
gomater(row){
this.$router.push({
path: "/materielexpire" ,
query: {
SuppliesNum:row.SuppliesId,
WarehouseId:row.WarehouseId,
ExpiresDay:this.msg.ExpiresDay
}
});
}
},
......
This diff is collapsed.
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