4 changed files with 109 additions and 0 deletions
@ -0,0 +1,26 @@ |
|||||
|
<template> |
||||
|
<tablePage |
||||
|
:apiName="state.apiName" |
||||
|
:searchOptions="state.searchOptions" |
||||
|
:searchFilter="state.searchFilter" |
||||
|
></tablePage> |
||||
|
</template> |
||||
|
|
||||
|
<script setup> |
||||
|
// 看板送货单 |
||||
|
defineOptions({ name: 'supplierDelState' }) |
||||
|
import { reactive, ref, onMounted } from 'vue' |
||||
|
import tablePage from '@/components/tablePage/index.vue' |
||||
|
|
||||
|
const state = reactive({ |
||||
|
apiName:'cherysupplierdelstate', |
||||
|
searchFilter: { |
||||
|
deliveryNumber: null, |
||||
|
createTime:null, |
||||
|
}, |
||||
|
searchOptions:[ |
||||
|
{type:'input',prop:'deliveryNumber',label:'配送单号'}, |
||||
|
{type:'datetimerange',prop:'createTime',label:'创建时间'}, |
||||
|
], |
||||
|
}) |
||||
|
</script> |
@ -0,0 +1,26 @@ |
|||||
|
<template> |
||||
|
<tablePage |
||||
|
:apiName="state.apiName" |
||||
|
:searchOptions="state.searchOptions" |
||||
|
:searchFilter="state.searchFilter" |
||||
|
></tablePage> |
||||
|
</template> |
||||
|
|
||||
|
<script setup> |
||||
|
// 排序供货 |
||||
|
defineOptions({ name: 'supplierProCschedul' }) |
||||
|
import { reactive, ref, onMounted } from 'vue' |
||||
|
import tablePage from '@/components/tablePage/index.vue' |
||||
|
|
||||
|
const state = reactive({ |
||||
|
apiName:'cherysupplierprocschedul', |
||||
|
searchFilter: { |
||||
|
materialCode: null, |
||||
|
creationTime:null, |
||||
|
}, |
||||
|
searchOptions:[ |
||||
|
{type:'input',prop:'materialCode',label:'物料编码'}, |
||||
|
{type:'datetimerange',prop:'creationTime',label:'创建时间'}, |
||||
|
], |
||||
|
}) |
||||
|
</script> |
Loading…
Reference in new issue