Browse Source

供应商便次年月显示

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

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

@ -1,7 +1,7 @@
<template> <template>
<ContentWrap> <ContentWrap>
<!-- 搜索工作栏 --> <!-- 搜索工作栏 -->
<Search :schema="SupplierDeliMain.allSchemas.searchSchema" @search="setSearchParams" @reset="setSearchParams" /> <Search :schema="SupplierDeliMain.allSchemas.searchSchema" @search="search" @reset="search" />
</ContentWrap> </ContentWrap>
<!-- 列表头部 --> <!-- 列表头部 -->
@ -32,8 +32,15 @@
<span>{{ row.code }}</span> <span>{{ row.code }}</span>
</el-button> </el-button>
</template> </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 }"> <template #action="{ row }">
<ButtonBase :Butttondata="butttondata" @button-base-click="buttonTableClick($event,row)" /> <ButtonBase :Butttondata="butttondata(row)" @button-base-click="buttonTableClick($event,row)" />
</template> </template>
</Table> </Table>
</ContentWrap> </ContentWrap>
@ -65,6 +72,7 @@ import * as defaultButtons from '@/utils/disposition/defaultButtons'
import TableHead from '@/components/TableHead/src/TableHead.vue' import TableHead from '@/components/TableHead/src/TableHead.vue'
import ImportForm from '@/components/ImportForm/src/ImportForm.vue' import ImportForm from '@/components/ImportForm/src/ImportForm.vue'
import Detail from '@/components/Detail/src/Detail.vue' import Detail from '@/components/Detail/src/Detail.vue'
import { formatDate } from '@/utils/formatTime'
defineOptions({ name: 'SupplierDeliMain' }) defineOptions({ name: 'SupplierDeliMain' })
@ -95,16 +103,20 @@ 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,()=>{ watch(()=>tableObjectHead.tableList,()=>{
updateDateTableColumns() updateDateTableColumns()
},{deep:true}) },{deep:true})
const updateDateTableColumns = ()=>{ const updateDateTableColumns = ()=>{
console.log('tableObjectHead', tableObjectHead) console.log('tableObjectHead', tableObjectHead)
let dateColumns = [] dateColumns.value = []
if(tableObjectHead.tableList.length>10){ if(tableObjectHead.tableList.length>10){
tableObjectHead.tableList.forEach(item=>{ tableObjectHead.tableList.forEach(item=>{
dateColumns.push({ dateColumns.value.push({
width:120, width:120,
field: item, field: item,
label: item label: item
@ -112,13 +124,13 @@ const updateDateTableColumns = ()=>{
}) })
}else{ }else{
tableObjectHead.tableList.forEach(item=>{ tableObjectHead.tableList.forEach(item=>{
dateColumns.push({ dateColumns.value.push({
field: item, field: item,
label: item label: item
}) })
}) })
} }
tableColumns.value = [...orginTableColumns.value,...dateColumns] tableColumns.value = [...orginTableColumns.value,...dateColumns.value]
console.log('tableColumns',tableColumns.value) console.log('tableColumns',tableColumns.value)
} }
@ -150,6 +162,11 @@ const { tableObject, tableMethods } = useTable({
// //
const { getList, setSearchParams } = tableMethods const { getList, setSearchParams } = tableMethods
const getListExecute = () => {
tableObject.params.yearAndMonth=formatDate(new Date(),'YYYY-MM')
getList()
tableObject.tableList.forEach(item=>item.isOpen = false)
}
// //
const HeadButttondata = [ const HeadButttondata = [
@ -179,7 +196,7 @@ const buttonBaseClick = (val: string, item: any) => {
handleExport() handleExport()
} else if (val == 'refresh') { // } else if (val == 'refresh') { //
getListHead() getListHead()
getList() getListExecute()
} else if (val == 'filtrate') { // } else if (val == 'filtrate') { //
} else { // } else { //
console.log('其他按钮', item) console.log('其他按钮', item)
@ -187,17 +204,46 @@ const buttonBaseClick = (val: string, item: any) => {
} }
// - // -
const butttondata = [ const butttondata = (row) => {
defaultButtons.mainListEditBtn({hasPermi:'wms:supplierDeliMain:update'}), // const array = []
defaultButtons.mainListDeleteBtn({hasPermi:'wms:supplierDeliMain:delete'}), // // 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 }) => { const buttonTableClick = async (val: string, row:any) => {
if (val == 'edit') { // if (val == 'open') { //
openForm('update', row) // openForm('update', row)
} else if (val == 'delete') { // row.isOpen = true
handleDelete(row.id) 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')) message.success(t('common.updateSuccess'))
} }
basicFormRef.value.dialogVisible = false basicFormRef.value.dialogVisible = false
getList() getListExecute()
} }
/** 详情操作 */ /** 详情操作 */
@ -246,7 +292,7 @@ const handleDelete = async (id: number) => {
await SupplierDeliMainApi.deleteSupplierDeliMain(id) await SupplierDeliMainApi.deleteSupplierDeliMain(id)
message.success(t('common.delSuccess')) message.success(t('common.delSuccess'))
// //
await getList() await getListExecute()
} catch {} } catch {}
} }
@ -278,7 +324,7 @@ const importTemplateData = reactive({
}) })
// //
const importSuccess = () => { const importSuccess = () => {
getList() getListExecute()
} }
// //
@ -287,14 +333,25 @@ const searchFormClick = (searchData: { filters: any }) => {
isSearch: true, isSearch: true,
filters: searchData.filters filters: searchData.filters
} }
getList() // getListExecute() //
}
const getHeight=(row)=> {
//
if (row.isOpen === true) { //
return 'auto'; //
}
return '140px'; //
} }
/** 初始化 **/ /** 初始化 **/
onMounted(async () => { onMounted(async () => {
getListHead() getListHead()
getList() getListExecute()
importTemplateData.templateUrl = await SupplierDeliMainApi.importTemplate() importTemplateData.templateUrl = await SupplierDeliMainApi.importTemplate()
}) })
</script> </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 type { CrudSchema } from '@/hooks/web/useCrudSchemas'
import { formatDate } from '@/utils/formatTime'
// 表单校验 // 表单校验
export const SupplierDeliMainRules = reactive({ export const SupplierDeliMainRules = reactive({
@ -50,5 +51,22 @@ export const SupplierDeliMain = useCrudSchemas(reactive<CrudSchema[]>([
sort: 'custom', sort: 'custom',
isTable: false, isTable: false,
isSearch: true, 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