4 changed files with 643 additions and 0 deletions
@ -0,0 +1,58 @@ |
|||||
|
import request from '@/config/axios' |
||||
|
|
||||
|
export interface ModelCalendarMainVO { |
||||
|
id: number |
||||
|
model: string |
||||
|
yearAndMonth: string |
||||
|
delayDeli: number |
||||
|
remark: string |
||||
|
available: string |
||||
|
siteId: string |
||||
|
concurrencyStamp: number |
||||
|
} |
||||
|
|
||||
|
// 查询受入号日历主列表
|
||||
|
export const getModelCalendarMainPage = async (params) => { |
||||
|
if (params.isSearch) { |
||||
|
delete params.isSearch |
||||
|
const data = {...params} |
||||
|
return await request.post({ url: '/wms/model-calendar-main/senior', data }) |
||||
|
} else { |
||||
|
return await request.get({ url: `/wms/model-calendar-main/page`, params }) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// 查询受入号日历主详情
|
||||
|
export const getModelCalendarMain = async (id: number) => { |
||||
|
return await request.get({ url: `/wms/model-calendar-main/get?id=` + id }) |
||||
|
} |
||||
|
|
||||
|
// 新增受入号日历主
|
||||
|
export const createModelCalendarMain = async (data: ModelCalendarMainVO) => { |
||||
|
return await request.post({ url: `/wms/model-calendar-main/create`, data }) |
||||
|
} |
||||
|
|
||||
|
// 修改受入号日历主
|
||||
|
export const updateModelCalendarMain = async (data: ModelCalendarMainVO) => { |
||||
|
return await request.put({ url: `/wms/model-calendar-main/update`, data }) |
||||
|
} |
||||
|
|
||||
|
// 删除受入号日历主
|
||||
|
export const deleteModelCalendarMain = async (id: number) => { |
||||
|
return await request.delete({ url: `/wms/model-calendar-main/delete?ids=` + id }) |
||||
|
} |
||||
|
|
||||
|
// 导出受入号日历主 Excel
|
||||
|
export const exportModelCalendarMain = async (params) => { |
||||
|
return await request.download({ url: `/wms/model-calendar-main/export-excel`, params }) |
||||
|
} |
||||
|
|
||||
|
// 下载用户导入模板
|
||||
|
export const importTemplate = () => { |
||||
|
return request.download({ url: '/wms/model-calendar-main/get-import-template' }) |
||||
|
} |
||||
|
|
||||
|
// 查询供应商便次配置列表
|
||||
|
export const getPageTableHead = async (params) => { |
||||
|
return await request.get({ url: `/wms/supplier-deli-main/queryPageTableHead`, params }) |
||||
|
} |
@ -0,0 +1,399 @@ |
|||||
|
<template> |
||||
|
<ContentWrap> |
||||
|
<!-- 搜索工作栏 --> |
||||
|
<Search :schema="ModelCalendar.allSchemas.searchSchema" @search="search" @reset="search" /> |
||||
|
</ContentWrap> |
||||
|
|
||||
|
<!-- 列表头部 --> |
||||
|
<TableHead |
||||
|
:HeadButttondata="HeadButttondata" |
||||
|
@button-base-click="buttonBaseClick" |
||||
|
:routeName="routeName" |
||||
|
@updataTableColumns="updataTableColumns" |
||||
|
@searchFormClick="searchFormClick" |
||||
|
:allSchemas="ModelCalendar.allSchemas" |
||||
|
/> |
||||
|
|
||||
|
<!-- 列表 --> |
||||
|
<ContentWrap> |
||||
|
<Table |
||||
|
:columns="tableColumns" |
||||
|
:data="tableObject.tableList" |
||||
|
:loading="tableObject.loading" |
||||
|
:pagination="{ |
||||
|
total: tableObject.total |
||||
|
}" |
||||
|
v-model:pageSize="tableObject.pageSize" |
||||
|
v-model:currentPage="tableObject.currentPage" |
||||
|
v-model:sort="tableObject.sort" |
||||
|
row-key="id" |
||||
|
:selection="true" |
||||
|
@getSelectionRows="getSelectionRows" |
||||
|
> |
||||
|
<template #code="{row}"> |
||||
|
<el-button type="primary" link @click="openDetail(row, '代码', row.code)"> |
||||
|
<span>{{ row.code }}</span> |
||||
|
</el-button> |
||||
|
</template> |
||||
|
<template v-for="item in dateColumns" :key="item.field" #[item.field]="{row}"> |
||||
|
<div :style="{ maxHeight: getMaxHeight(row)}"> |
||||
|
<div v-for="(cur,index) in row[item.field]" :key="index"> |
||||
|
{{cur}} |
||||
|
</div> |
||||
|
</div> |
||||
|
</template> |
||||
|
<template #action="{ row }"> |
||||
|
<ButtonBase :Butttondata="butttondata(row)" @button-base-click="buttonTableClick($event,row)" /> |
||||
|
</template> |
||||
|
</Table> |
||||
|
</ContentWrap> |
||||
|
|
||||
|
<!-- 表单弹窗:添加/修改 --> |
||||
|
<BasicForm |
||||
|
ref="basicFormRef" |
||||
|
@success="formsSuccess" |
||||
|
:rules="ModelCalendarRules" |
||||
|
:formAllSchemas="ModelCalendar.allSchemas" |
||||
|
:apiUpdate="ModelCalendarApi.updateSupplierDeliMain" |
||||
|
:apiCreate="ModelCalendarApi.createSupplierDeliMain" |
||||
|
@searchTableSuccess="searchTableSuccess" |
||||
|
:isBusiness="false" |
||||
|
/> |
||||
|
|
||||
|
<!-- 详情 --> |
||||
|
<Detail ref="detailRef" :isBasic="true" :allSchemas="ModelCalendar.allSchemas" /> |
||||
|
|
||||
|
<!-- 导入 --> |
||||
|
<ImportForm ref="importFormRef" url="/basic/supplier-deli-main/import" :importTemplateData="importTemplateData" @success="importSuccess" /> |
||||
|
</template> |
||||
|
|
||||
|
<script setup lang="ts"> |
||||
|
import download from '@/utils/download' |
||||
|
import { ModelCalendar, ModelCalendarRules } from './modelcalendar.data' |
||||
|
import * as ModelCalendarApi from '@/api/wms/modelCalendar' |
||||
|
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' |
||||
|
import { debug } from 'console' |
||||
|
|
||||
|
defineOptions({ name: 'modelcalendar' }) |
||||
|
|
||||
|
// const array = [{ |
||||
|
// field: "code1", |
||||
|
// isForm: false, |
||||
|
// isTable: true, |
||||
|
// isSearch: true, |
||||
|
// label: "编码1", |
||||
|
// sort: "custom", |
||||
|
// sortTableDefault: 999, |
||||
|
// width: 150, |
||||
|
// table:{ |
||||
|
// width: 150, |
||||
|
// } |
||||
|
// }] |
||||
|
|
||||
|
const orginTableColumns = ref(ModelCalendar.allSchemas.tableColumns) |
||||
|
const tableColumns = ref(ModelCalendar.allSchemas.tableColumns) |
||||
|
// 字段设置 更新主列表字段 |
||||
|
const updataTableColumns = (val: { [x: string]: any; field: string; label?: string | undefined; width?: string | number | undefined; fixed?: "left" | "right" | undefined; children?: any[] | undefined }[]) => { |
||||
|
orginTableColumns.value = val |
||||
|
} |
||||
|
|
||||
|
const { tableObject:tableObjectHead, tableMethods:tableMethodsHead } = useTable({ |
||||
|
getListApi: ModelCalendarApi.getPageTableHead // 分页接口 |
||||
|
}) |
||||
|
|
||||
|
// 获得表格的各种操作 |
||||
|
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) |
||||
|
dateColumns.value = [] |
||||
|
if(tableObjectHead.tableList.length>10){ |
||||
|
tableObjectHead.tableList.forEach(item=>{ |
||||
|
dateColumns.value.push({ |
||||
|
width:120, |
||||
|
field: item, |
||||
|
label: item |
||||
|
}) |
||||
|
}) |
||||
|
}else{ |
||||
|
tableObjectHead.tableList.forEach(item=>{ |
||||
|
dateColumns.value.push({ |
||||
|
field: item, |
||||
|
label: item |
||||
|
}) |
||||
|
}) |
||||
|
} |
||||
|
tableColumns.value = [...orginTableColumns.value,...dateColumns.value] |
||||
|
console.log('tableColumns',tableColumns.value) |
||||
|
} |
||||
|
|
||||
|
const message = useMessage() // 消息弹窗 |
||||
|
const { t } = useI18n() // 国际化 |
||||
|
|
||||
|
const route = useRoute() // 路由信息 |
||||
|
const routeName = ref() |
||||
|
routeName.value = route.name |
||||
|
// const tableColumns = ref(ModelCalendar.allSchemas.tableColumns) |
||||
|
|
||||
|
// 查询页面返回 |
||||
|
const searchTableSuccess = (formField: string | number, searchField: string | number, val: { [x: string]: any }[], formRef: { setValues: (arg0: {}) => void }) => { |
||||
|
nextTick(() => { |
||||
|
const setV = {} |
||||
|
setV[formField] = val[0][searchField] |
||||
|
formRef.setValues(setV) |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
// 字段设置 更新主列表字段 |
||||
|
// const updataTableColumns = (val) => { |
||||
|
|
||||
|
// tableColumns.value = val |
||||
|
// } |
||||
|
|
||||
|
const { tableObject, tableMethods } = useTable({ |
||||
|
getListApi: ModelCalendarApi.getModelCalendarMainPage // 分页接口 |
||||
|
}) |
||||
|
|
||||
|
// 获得表格的各种操作 |
||||
|
const { getList, setSearchParams } = tableMethods |
||||
|
const getListExecute = () => { |
||||
|
tableObject.params.yearAndMonth=formatDate(new Date(),'YYYY-MM') |
||||
|
getList() |
||||
|
tableObject.tableList.forEach(item=>item.isOpen = false) |
||||
|
} |
||||
|
|
||||
|
const selectionRowsData = ref([])//多选数据 |
||||
|
|
||||
|
// 列表头部按钮 |
||||
|
const HeadButttondata = [ |
||||
|
// defaultButtons.defaultAddBtn({hasPermi:'wms:supplierDeliMain:create'}), // 新增 |
||||
|
// defaultButtons.defaultImportBtn({hasPermi:'wms:supplierDeliMain:import'}), // 导入 |
||||
|
defaultButtons.defaultExportBtn(null), // 导出 |
||||
|
defaultButtons.mainLisSelectiontDeleteBtn(null), // 批量删除 |
||||
|
defaultButtons.defaultFreshBtn(null), // 刷新 |
||||
|
// defaultButtons.defaultFilterBtn(null), // 筛选 |
||||
|
defaultButtons.defaultSetBtn(null), // 设置 |
||||
|
// { |
||||
|
// label: '自定义扩展按钮', |
||||
|
// name: 'zdy', |
||||
|
// hide: false, |
||||
|
// type: 'primary', |
||||
|
// icon: 'Select', |
||||
|
// color: '' |
||||
|
// }, |
||||
|
] |
||||
|
|
||||
|
// 头部按钮事件 |
||||
|
const buttonBaseClick = (val: string, item: any) => { |
||||
|
if (val == 'add') { // 新增 |
||||
|
openForm('create') |
||||
|
} else if (val == 'import') { // 导入 |
||||
|
handleImport() |
||||
|
} else if (val == 'export') { // 导出 |
||||
|
handleExport() |
||||
|
} else if (val == 'selection_delete') { // 批量删除 |
||||
|
handleDelete() |
||||
|
}else if (val == 'refresh') { // 刷新 |
||||
|
getListHead() |
||||
|
getListExecute() |
||||
|
} else if (val == 'filtrate') { // 筛选 |
||||
|
} else { // 其他按钮 |
||||
|
console.log('其他按钮', item) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// 列表-操作按钮 |
||||
|
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: '' |
||||
|
}, |
||||
|
defaultButtons.mainListDeleteBtn(null), // 删除 |
||||
|
] |
||||
|
} |
||||
|
|
||||
|
// 列表-操作按钮事件 |
||||
|
const buttonTableClick = async (val: string, row:any) => { |
||||
|
if (val == 'open') { // 展开 |
||||
|
// openForm('update', row) |
||||
|
row.isOpen = true |
||||
|
getMaxHeight(row) |
||||
|
} else if (val == 'retract') { // 收起 |
||||
|
row.isOpen = false |
||||
|
getMaxHeight(row) |
||||
|
} else if(val == 'delete'){ |
||||
|
handleDelete(row) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/** 添加/修改操作 */ |
||||
|
const basicFormRef = ref() |
||||
|
const openForm = (type: string, row?: any) => { |
||||
|
basicFormRef.value.open(type, row) |
||||
|
} |
||||
|
|
||||
|
// form表单提交 |
||||
|
const formsSuccess = async (formType: string,data: ModelCalendarApi.SupplierDeliMainVO) => { |
||||
|
var isHave =ModelCalendar.allSchemas.formSchema.some(function (item) { |
||||
|
return item.field === 'activeTime' || item.field === 'expireTime'; |
||||
|
}); |
||||
|
if(isHave){ |
||||
|
if(data.activeTime && data.expireTime && data.activeTime >=data.expireTime){ |
||||
|
message.error('失效时间要大于生效时间') |
||||
|
return; |
||||
|
} |
||||
|
} |
||||
|
if(data.activeTime==0)data.activeTime = null; |
||||
|
if(data.expireTime==0)data.expireTime = null; |
||||
|
if (formType === 'create') { |
||||
|
await ModelCalendarApi.createSupplierDeliMain(data) |
||||
|
message.success(t('common.createSuccess')) |
||||
|
} else { |
||||
|
await ModelCalendarApi.updateSupplierDeliMain(data) |
||||
|
message.success(t('common.updateSuccess')) |
||||
|
} |
||||
|
basicFormRef.value.dialogVisible = false |
||||
|
getListExecute() |
||||
|
} |
||||
|
|
||||
|
/** 详情操作 */ |
||||
|
const detailRef = ref() |
||||
|
const openDetail = (row: any, titleName: any, titleValue: any) => { |
||||
|
detailRef.value.openDetail(row, titleName, titleValue, 'basicSupplierDeliMain') |
||||
|
} |
||||
|
|
||||
|
/** 删除按钮操作 */ |
||||
|
// const handleDelete = async (row?:any) => { |
||||
|
// const handleDelete = async (id: number) => { |
||||
|
// try { |
||||
|
// // 删除的二次确认 |
||||
|
// await message.delConfirm() |
||||
|
// // 发起删除 |
||||
|
// await ModelCalendarApi.deleteModelCalendarMain(id) |
||||
|
// message.success(t('common.delSuccess')) |
||||
|
// // 刷新列表 |
||||
|
// await getListExecute() |
||||
|
// } catch {} |
||||
|
// } |
||||
|
const handleDelete = async (row?:any) => { |
||||
|
try { |
||||
|
// 发起删除 |
||||
|
let str |
||||
|
if (row) { |
||||
|
// 删除的二次确认 |
||||
|
await message.delConfirm() |
||||
|
str = row.id |
||||
|
} else { |
||||
|
console.log(selectionRowsData.value) |
||||
|
if (selectionRowsData.value.length == 0) { |
||||
|
message.warning('请选择数据') |
||||
|
return |
||||
|
} |
||||
|
// 删除的二次确认 |
||||
|
await message.delConfirm() |
||||
|
str = selectionRowsData.value.map(item=>item.id).join(',') |
||||
|
} |
||||
|
await ModelCalendarApi.deleteModelCalendarMain(str) |
||||
|
message.success(t('common.delSuccess')) |
||||
|
// 刷新列表 |
||||
|
await getList() |
||||
|
} catch {} |
||||
|
} |
||||
|
|
||||
|
/** 导出按钮操作 */ |
||||
|
const exportLoading = ref(false) // 导出的加载中 |
||||
|
const handleExport = async () => { |
||||
|
try { |
||||
|
// 导出的二次确认 |
||||
|
await message.exportConfirm() |
||||
|
// 发起导出 |
||||
|
exportLoading.value = true |
||||
|
const data = await ModelCalendarApi.exportModelCalendarMain(tableObject.params) |
||||
|
download.excel(data, '受入号日历.xlsx') |
||||
|
} catch { |
||||
|
} finally { |
||||
|
exportLoading.value = false |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/** 导入 */ |
||||
|
const importFormRef = ref() |
||||
|
const handleImport = () => { |
||||
|
importFormRef.value.open() |
||||
|
} |
||||
|
// 导入附件弹窗所需的参数 |
||||
|
const importTemplateData = reactive({ |
||||
|
templateUrl: '', |
||||
|
templateTitle: '受入号日历导入模版.xlsx' |
||||
|
}) |
||||
|
// 导入成功之后 |
||||
|
const importSuccess = () => { |
||||
|
getListExecute() |
||||
|
} |
||||
|
|
||||
|
// 筛选提交 |
||||
|
const searchFormClick = (searchData: { filters: any }) => { |
||||
|
tableObject.params = { |
||||
|
isSearch: true, |
||||
|
filters: searchData.filters |
||||
|
} |
||||
|
getListExecute() // 刷新当前列表 |
||||
|
} |
||||
|
|
||||
|
const getMaxHeight=(row)=> { |
||||
|
// 根据条件返回不同的高度值 |
||||
|
if (row.isOpen === true) { // 例如:特定名字的行改变高度 |
||||
|
return 'none'; // 特定高度值 |
||||
|
} |
||||
|
return '140px'; // 默认高度值 |
||||
|
} |
||||
|
const getSelectionRows = (currentPage,currentPageSelectionRows) => { |
||||
|
selectionRowsData.value = currentPageSelectionRows |
||||
|
console.log(selectionRowsData.value) |
||||
|
} |
||||
|
/** 初始化 **/ |
||||
|
onMounted(async () => { |
||||
|
getListHead() |
||||
|
getListExecute() |
||||
|
importTemplateData.templateUrl = await ModelCalendarApi.importTemplate() |
||||
|
}) |
||||
|
|
||||
|
</script> |
||||
|
<style lang="scss"> |
||||
|
// .el-table .cell.el-tooltip{ |
||||
|
// height:140px; |
||||
|
// } |
||||
|
</style> |
@ -0,0 +1,72 @@ |
|||||
|
import type { CrudSchema } from '@/hooks/web/useCrudSchemas' |
||||
|
import { formatDate } from '@/utils/formatTime' |
||||
|
|
||||
|
// 表单校验
|
||||
|
export const ModelCalendarRules = reactive({ |
||||
|
supplierCode: [required], |
||||
|
supplierAddress: [required], |
||||
|
yearAndMonth: [required], |
||||
|
}) |
||||
|
|
||||
|
export const ModelCalendar = useCrudSchemas(reactive<CrudSchema[]>([ |
||||
|
// {
|
||||
|
// label: '受入号',
|
||||
|
// field: 'model',
|
||||
|
// sort: 'custom',
|
||||
|
// isSearch: true,
|
||||
|
// table:{
|
||||
|
// width : 180
|
||||
|
// }
|
||||
|
// },
|
||||
|
// {
|
||||
|
// label: '供应商地点',
|
||||
|
// field: 'supplierAddress',
|
||||
|
// sort: 'custom',
|
||||
|
// isSearch: true,
|
||||
|
// table:{
|
||||
|
// width : 180
|
||||
|
// }
|
||||
|
// },
|
||||
|
{ |
||||
|
label: '受入号', |
||||
|
field: 'model', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
table:{ |
||||
|
width : 180 |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '延迟便次', |
||||
|
field: 'delayDeli', |
||||
|
sort: 'custom', |
||||
|
isSearch: false, |
||||
|
table:{ |
||||
|
width : 180 |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '年月', |
||||
|
field: 'yearAndMonth', |
||||
|
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' |
||||
|
} |
||||
|
} |
||||
|
])) |
@ -0,0 +1,114 @@ |
|||||
|
import type { CrudSchema } from '@/hooks/web/useCrudSchemas' |
||||
|
import { dateFormatter } from '@/utils/formatTime' |
||||
|
|
||||
|
// 表单校验
|
||||
|
/* |
||||
|
export const SupplierDeliDetailRules = reactive({ |
||||
|
masterId: [required], |
||||
|
deliNo: [required], |
||||
|
delayDeli: [required], |
||||
|
beginTime: [required], |
||||
|
}) |
||||
|
*/ |
||||
|
|
||||
|
export const SupplierDeliDetail = useCrudSchemas(reactive<CrudSchema[]>([ |
||||
|
{ |
||||
|
label: 'id', |
||||
|
field: 'id', |
||||
|
sort: 'custom', |
||||
|
isForm: false, |
||||
|
}, |
||||
|
{ |
||||
|
label: '主id', |
||||
|
field: 'masterId', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
form: { |
||||
|
component: 'InputNumber', |
||||
|
value: 0 |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
label: '便次', |
||||
|
field: 'deliNo', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
}, |
||||
|
{ |
||||
|
label: '延迟便次', |
||||
|
field: 'delayDeli', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
}, |
||||
|
{ |
||||
|
label: '开始时间', |
||||
|
field: 'beginTime', |
||||
|
sort: 'custom', |
||||
|
formatter: dateFormatter, |
||||
|
isSearch: true, |
||||
|
search: { |
||||
|
component: 'DatePicker', |
||||
|
componentProps: { |
||||
|
valueFormat: 'YYYY-MM-DD HH:mm:ss', |
||||
|
type: 'daterange', |
||||
|
defaultTime: [new Date('1 00:00:00'), new Date('1 23:59:59')] |
||||
|
} |
||||
|
}, |
||||
|
form: { |
||||
|
component: 'DatePicker', |
||||
|
componentProps: { |
||||
|
type: 'datetime', |
||||
|
valueFormat: 'x' |
||||
|
} |
||||
|
}, |
||||
|
}, |
||||
|
{ |
||||
|
label: '备注', |
||||
|
field: 'remark', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
}, |
||||
|
{ |
||||
|
label: '是否可用默认TRUE', |
||||
|
field: 'available', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
}, |
||||
|
{ |
||||
|
label: '创建时间', |
||||
|
field: 'createTime', |
||||
|
sort: 'custom', |
||||
|
formatter: dateFormatter, |
||||
|
isSearch: true, |
||||
|
search: { |
||||
|
component: 'DatePicker', |
||||
|
componentProps: { |
||||
|
valueFormat: 'YYYY-MM-DD HH:mm:ss', |
||||
|
type: 'daterange', |
||||
|
defaultTime: [new Date('1 00:00:00'), new Date('1 23:59:59')] |
||||
|
} |
||||
|
}, |
||||
|
isForm: false, |
||||
|
}, |
||||
|
{ |
||||
|
label: '地点ID', |
||||
|
field: 'siteId', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
}, |
||||
|
{ |
||||
|
label: '并发乐观锁', |
||||
|
field: 'concurrencyStamp', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
}, |
||||
|
{ |
||||
|
label: '操作', |
||||
|
field: 'action', |
||||
|
isForm: false, |
||||
|
table: { |
||||
|
width: 150, |
||||
|
fixed: 'right' |
||||
|
} |
||||
|
} |
||||
|
])) |
Loading…
Reference in new issue