Browse Source

供应商便次年月显示

intex_online20250311
张立 1 month ago
parent
commit
1cf8f04749
  1. 107
      src/views/wms/supplierManage/supplierDeliMain/index.vue
  2. 18
      src/views/wms/supplierManage/supplierDeliMain/supplierDeliMain.data.ts

107
src/views/wms/supplierManage/supplierDeliMain/index.vue

@ -1,7 +1,7 @@
<template>
<ContentWrap>
<!-- 搜索工作栏 -->
<Search :schema="SupplierDeliMain.allSchemas.searchSchema" @search="setSearchParams" @reset="setSearchParams" />
<Search :schema="SupplierDeliMain.allSchemas.searchSchema" @search="search" @reset="search" />
</ContentWrap>
<!-- 列表头部 -->
@ -32,8 +32,15 @@
<span>{{ row.code }}</span>
</el-button>
</template>
<template v-for="item in dateColumns" :key="item.field" #[item.field]="{row}">
<div :style="{ maxHeight: getHeight(row) }">
<div v-for="(cur,index) in row[item.field]" :key="index">
{{cur}}
</div>
</div>
</template>
<template #action="{ row }">
<ButtonBase :Butttondata="butttondata" @button-base-click="buttonTableClick($event,row)" />
<ButtonBase :Butttondata="butttondata(row)" @button-base-click="buttonTableClick($event,row)" />
</template>
</Table>
</ContentWrap>
@ -65,6 +72,7 @@ import * as defaultButtons from '@/utils/disposition/defaultButtons'
import TableHead from '@/components/TableHead/src/TableHead.vue'
import ImportForm from '@/components/ImportForm/src/ImportForm.vue'
import Detail from '@/components/Detail/src/Detail.vue'
import { formatDate } from '@/utils/formatTime'
defineOptions({ name: 'SupplierDeliMain' })
@ -94,17 +102,21 @@ const { tableObject:tableObjectHead, tableMethods:tableMethodsHead } = useTable(
})
//
const { getList:getListHead, setSearchParams:setSearchParamsHead } = tableMethodsHead
const { getList: getListHead, setSearchParams: setSearchParamsHead } = tableMethodsHead
const search = (mold) => {
setSearchParamsHead(mold)
setSearchParams(mold)
}
const dateColumns = ref([])
watch(()=>tableObjectHead.tableList,()=>{
updateDateTableColumns()
},{deep:true})
const updateDateTableColumns = ()=>{
console.log('tableObjectHead',tableObjectHead)
let dateColumns = []
console.log('tableObjectHead', tableObjectHead)
dateColumns.value = []
if(tableObjectHead.tableList.length>10){
tableObjectHead.tableList.forEach(item=>{
dateColumns.push({
dateColumns.value.push({
width:120,
field: item,
label: item
@ -112,13 +124,13 @@ const updateDateTableColumns = ()=>{
})
}else{
tableObjectHead.tableList.forEach(item=>{
dateColumns.push({
dateColumns.value.push({
field: item,
label: item
})
})
}
tableColumns.value = [...orginTableColumns.value,...dateColumns]
tableColumns.value = [...orginTableColumns.value,...dateColumns.value]
console.log('tableColumns',tableColumns.value)
}
@ -150,6 +162,11 @@ const { tableObject, tableMethods } = useTable({
//
const { getList, setSearchParams } = tableMethods
const getListExecute = () => {
tableObject.params.yearAndMonth=formatDate(new Date(),'YYYY-MM')
getList()
tableObject.tableList.forEach(item=>item.isOpen = false)
}
//
const HeadButttondata = [
@ -179,7 +196,7 @@ const buttonBaseClick = (val: string, item: any) => {
handleExport()
} else if (val == 'refresh') { //
getListHead()
getList()
getListExecute()
} else if (val == 'filtrate') { //
} else { //
console.log('其他按钮', item)
@ -187,17 +204,46 @@ const buttonBaseClick = (val: string, item: any) => {
}
// -
const butttondata = [
defaultButtons.mainListEditBtn({hasPermi:'wms:supplierDeliMain:update'}), //
defaultButtons.mainListDeleteBtn({hasPermi:'wms:supplierDeliMain:delete'}), //
]
const butttondata = (row) => {
const array = []
// 6
dateColumns.value.forEach(item => {
if (row[item.field]?.length > 6) {
array.push(row)
}
})
return [
{
label: t(`ts.展开更多`).replace('ts.', ''),
name: 'open',
hide: row.isOpen || array.length==0,
type: 'primary',
color: '',
link: true, //
hasPermi: ''
},
{
label: t(`ts.收起`).replace('ts.', ''),
name: 'retract',
hide: !row.isOpen || array.length==0,
type: 'primary',
color: '',
link: true, //
hasPermi: ''
}
]
}
// -
const buttonTableClick = async (val: string, row: { id: number }) => {
if (val == 'edit') { //
openForm('update', row)
} else if (val == 'delete') { //
handleDelete(row.id)
const buttonTableClick = async (val: string, row:any) => {
if (val == 'open') { //
// openForm('update', row)
row.isOpen = true
getHeight(row)
} else if (val == 'retract') { //
row.isOpen = false
getHeight(row)
// handleDelete(row.id)
}
}
@ -228,7 +274,7 @@ const formsSuccess = async (formType: string,data: SupplierDeliMainApi.SupplierD
message.success(t('common.updateSuccess'))
}
basicFormRef.value.dialogVisible = false
getList()
getListExecute()
}
/** 详情操作 */
@ -246,7 +292,7 @@ const handleDelete = async (id: number) => {
await SupplierDeliMainApi.deleteSupplierDeliMain(id)
message.success(t('common.delSuccess'))
//
await getList()
await getListExecute()
} catch {}
}
@ -278,7 +324,7 @@ const importTemplateData = reactive({
})
//
const importSuccess = () => {
getList()
getListExecute()
}
//
@ -287,14 +333,25 @@ const searchFormClick = (searchData: { filters: any }) => {
isSearch: true,
filters: searchData.filters
}
getList() //
getListExecute() //
}
const getHeight=(row)=> {
//
if (row.isOpen === true) { //
return 'auto'; //
}
return '140px'; //
}
/** 初始化 **/
onMounted(async () => {
getListHead()
getList()
getListExecute()
importTemplateData.templateUrl = await SupplierDeliMainApi.importTemplate()
})
</script>
<style lang="scss">
// .el-table .cell.el-tooltip{
// height:140px;
// }
</style>

18
src/views/wms/supplierManage/supplierDeliMain/supplierDeliMain.data.ts

@ -1,4 +1,5 @@
import type { CrudSchema } from '@/hooks/web/useCrudSchemas'
import { formatDate } from '@/utils/formatTime'
// 表单校验
export const SupplierDeliMainRules = reactive({
@ -50,5 +51,22 @@ export const SupplierDeliMain = useCrudSchemas(reactive<CrudSchema[]>([
sort: 'custom',
isTable: false,
isSearch: true,
search: {
component: 'DatePicker',
value: formatDate(new Date(),'YYYY-MM'),
componentProps: {
type: 'month',
valueFormat: 'YYYY-MM',
}
}
},
{
label: '操作',
field: 'action',
isForm: false,
table: {
width: 150,
fixed: 'right'
}
}
]))

Loading…
Cancel
Save