songguoqiang
1 year ago
13 changed files with 1067 additions and 302 deletions
@ -0,0 +1,77 @@ |
|||||
|
import request from '@/config/axios' |
||||
|
|
||||
|
export interface ItembasicVO { |
||||
|
code: string |
||||
|
name: string |
||||
|
desc1: string |
||||
|
desc2: string |
||||
|
status: string |
||||
|
uom: string |
||||
|
altUom: string |
||||
|
isStdPack: string |
||||
|
enableBuy: string |
||||
|
enableMake: string |
||||
|
enableOutsourcing: string |
||||
|
isRecycled: string |
||||
|
isPhantom: string |
||||
|
abcClass: string |
||||
|
type: string |
||||
|
category: string |
||||
|
itemGroup: string |
||||
|
color: string |
||||
|
configuration: string |
||||
|
project: string |
||||
|
eqLevel: string |
||||
|
validityDays: number |
||||
|
userGroupCode: string |
||||
|
available: string |
||||
|
activeTime: Date |
||||
|
expireTime: Date |
||||
|
remark: string |
||||
|
deletionTime: Date |
||||
|
deleterId: string |
||||
|
extraProperties: string |
||||
|
concurrencyStamp: string |
||||
|
siteId: string |
||||
|
} |
||||
|
|
||||
|
// 查询物品基本信息列表
|
||||
|
export const getItembasicPage = async (params) => { |
||||
|
if (params.isSearch) { |
||||
|
delete params.isSearch |
||||
|
const data = {...params} |
||||
|
return await request.post({ url: '/spc/itembasic/senior', data }) |
||||
|
} else { |
||||
|
return await request.get({ url: `/spc/itembasic/page`, params }) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// 查询物品基本信息详情
|
||||
|
export const getItembasic = async (id: number) => { |
||||
|
return await request.get({ url: `/spc/itembasic/get?id=` + id }) |
||||
|
} |
||||
|
|
||||
|
// 新增物品基本信息
|
||||
|
export const createItembasic = async (data: ItembasicVO) => { |
||||
|
return await request.post({ url: `/spc/itembasic/create`, data }) |
||||
|
} |
||||
|
|
||||
|
// 修改物品基本信息
|
||||
|
export const updateItembasic = async (data: ItembasicVO) => { |
||||
|
return await request.put({ url: `/spc/itembasic/update`, data }) |
||||
|
} |
||||
|
|
||||
|
// 删除物品基本信息
|
||||
|
export const deleteItembasic = async (id: number) => { |
||||
|
return await request.delete({ url: `/spc/itembasic/delete?id=` + id }) |
||||
|
} |
||||
|
|
||||
|
// 导出物品基本信息 Excel
|
||||
|
export const exportItembasic = async (params) => { |
||||
|
return await request.download({ url: `/spc/itembasic/export-excel`, params }) |
||||
|
} |
||||
|
|
||||
|
// 下载导入模板
|
||||
|
export const importTemplate = () => { |
||||
|
return request.download({ url: '/spc/itembasic/get-import-template' }) |
||||
|
} |
@ -1,38 +1,95 @@ |
|||||
<template> |
<template> |
||||
<el-button |
<div v-for="(item, index) in Butttondata" :key="index" class="btn-div"> |
||||
v-for="(item, index) in Butttondata" :key="index" |
<el-button |
||||
v-show="!item.hide" |
v-show="!item.hide" |
||||
:type="item.type" |
:type="item.type" |
||||
:color="item.color" |
:color="item.color" |
||||
:link = "item.link ? item.link : false" |
:link="item.link ? item.link : false" |
||||
v-hasPermi="[item.hasPermi] || []" |
v-hasPermi="[item.hasPermi] || []" |
||||
@click="buttonBaseClick(item.name,item,$event)" |
v-if="item.name != 'set'" |
||||
> |
@click="buttonBaseClick(item.name, item, $event)" |
||||
<Icon v-if="item.icon" :icon="item.icon" class="mr-1px" /> |
> |
||||
{{ item.label }} |
<Icon v-if="item.icon" :icon="item.icon" class="mr-1px" /> |
||||
</el-button> |
{{ item.label }} |
||||
|
</el-button> |
||||
|
<!-- 设置按钮 --> |
||||
|
<el-popover |
||||
|
:visible="popoverVisible" |
||||
|
placement="bottom" |
||||
|
:width="300" |
||||
|
trigger="click" |
||||
|
v-if="item.name == 'set'&&!item.hide" |
||||
|
> |
||||
|
<rowDrop |
||||
|
ref="rowDropRef" |
||||
|
@updata-table-columns="updataTableColumns" |
||||
|
:allSchemas="allSchemas" |
||||
|
@closeRowDrop="closeRowDrop" |
||||
|
@updataTableColumns="updataTableColumns" |
||||
|
/> |
||||
|
<template #reference> |
||||
|
<el-button |
||||
|
v-show="!item.hide" |
||||
|
:type="item.type" |
||||
|
:color="item.color" |
||||
|
:link="item.link ? item.link : false" |
||||
|
v-hasPermi="[item.hasPermi] || []" |
||||
|
@click="buttonBaseClick(item.name, item, $event)" |
||||
|
> |
||||
|
<Icon v-if="item.icon" :icon="item.icon" class="mr-1px" /> |
||||
|
{{ item.label }} |
||||
|
</el-button> |
||||
|
</template> |
||||
|
</el-popover> |
||||
|
</div> |
||||
<slot></slot> |
<slot></slot> |
||||
</template> |
</template> |
||||
<script setup> |
<script setup> |
||||
import { Plus } from '@element-plus/icons-vue' |
import { Plus } from '@element-plus/icons-vue' |
||||
import { clearButtonBlurHandle } from '@/utils/index' |
import { clearButtonBlurHandle } from '@/utils/index' |
||||
const props = defineProps({ |
import rowDrop from '@/components/rowDrop/index.vue' |
||||
Butttondata: { |
const props = defineProps({ |
||||
type: Array, |
Butttondata: { |
||||
default: () => { |
type: Array, |
||||
return [] |
default: () => { |
||||
} |
return [] |
||||
}, |
} |
||||
}) |
}, |
||||
|
allSchemas: { |
||||
|
type: Object, |
||||
|
default: null |
||||
|
} |
||||
|
}) |
||||
|
|
||||
|
// 传递给父类 |
||||
|
const emit = defineEmits(['buttonBaseClick', 'updataTableColumns']) |
||||
|
|
||||
// 传递给父类 |
const buttonBaseClick = (val, item, $event) => { |
||||
const emit = defineEmits([ |
clearButtonBlurHandle($event) //解决el-button点击后颜色不恢复问题 |
||||
'buttonBaseClick', |
emit('buttonBaseClick', val, item, $event) |
||||
]) |
} |
||||
|
const popoverVisible = ref(false) |
||||
|
// 关闭页面 |
||||
|
const closeRowDrop = () => { |
||||
|
popoverVisible.value = false |
||||
|
} |
||||
|
defineExpose({ |
||||
|
popoverVisible |
||||
|
}) |
||||
|
// 更新主列表字段 |
||||
|
const updataTableColumns = (val) => { |
||||
|
emit('updataTableColumns', val) |
||||
|
} |
||||
|
</script> |
||||
|
<style scoped lang="scss"> |
||||
|
.btn-div{ |
||||
|
display: inline; |
||||
|
|
||||
const buttonBaseClick = (val, item, $event) => { |
::v-deep(.el-button){ |
||||
clearButtonBlurHandle($event)//解决el-button点击后颜色不恢复问题 |
margin: 0px 5px; |
||||
emit('buttonBaseClick', val, item, $event) |
} |
||||
|
::v-deep(.el-button.is-link){ |
||||
|
margin: 0px; |
||||
} |
} |
||||
|
} |
||||
</script> |
</style> |
@ -0,0 +1,228 @@ |
|||||
|
<template> |
||||
|
<ContentWrap> |
||||
|
<!-- 搜索工作栏 --> |
||||
|
<Search :schema="Itembasic.allSchemas.searchSchema" @search="setSearchParams" @reset="setSearchParams" /> |
||||
|
</ContentWrap> |
||||
|
|
||||
|
<!-- 列表头部 --> |
||||
|
<TableHead |
||||
|
:HeadButttondata="HeadButttondata" |
||||
|
@button-base-click="buttonBaseClick" |
||||
|
:routeName="routeName" |
||||
|
@updataTableColumns="updataTableColumns" |
||||
|
@searchFormClick="searchFormClick" |
||||
|
:allSchemas="Itembasic.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" |
||||
|
> |
||||
|
<template #code="{row}"> |
||||
|
<el-button type="primary" link @click="openDetail(row, '代码', row.code)"> |
||||
|
<span>{{ row.code }}</span> |
||||
|
</el-button> |
||||
|
</template> |
||||
|
<template #action="{ row }"> |
||||
|
<ButtonBase :Butttondata="butttondata" @button-base-click="buttonTableClick($event,row)" /> |
||||
|
</template> |
||||
|
</Table> |
||||
|
</ContentWrap> |
||||
|
|
||||
|
<!-- 表单弹窗:添加/修改 --> |
||||
|
<BasicForm |
||||
|
ref="basicFormRef" |
||||
|
@success="getList" |
||||
|
:rules="ItembasicRules" |
||||
|
:formAllSchemas="Itembasic.allSchemas" |
||||
|
:searchTableParams="searchTableParams" |
||||
|
:apiUpdate="ItembasicApi.updateItembasic" |
||||
|
:apiCreate="ItembasicApi.createItembasic" |
||||
|
@searchTableSuccess="searchTableSuccess" |
||||
|
:isBusiness="false" |
||||
|
/> |
||||
|
|
||||
|
<!-- 详情 --> |
||||
|
<Detail ref="detailRef" :isBasic="true" :allSchemas="Itembasic.allSchemas" /> |
||||
|
|
||||
|
<!-- 导入 --> |
||||
|
<ImportForm ref="importFormRef" url="/spc/itembasic/import" :importTemplateData="importTemplateData" @success="importSuccess" /> |
||||
|
</template> |
||||
|
|
||||
|
<script setup lang="ts"> |
||||
|
import download from '@/utils/download' |
||||
|
import { Itembasic,ItembasicRules } from './itembasic.data' |
||||
|
import * as ItembasicApi from '@/api/spc/itembasic' |
||||
|
import * as defaultButtons from '@/utils/disposition/defaultButtons' |
||||
|
|
||||
|
defineOptions({ name: 'Itembasic' }) |
||||
|
|
||||
|
const message = useMessage() // 消息弹窗 |
||||
|
const { t } = useI18n() // 国际化 |
||||
|
|
||||
|
const route = useRoute() // 路由信息 |
||||
|
const routeName = ref() |
||||
|
routeName.value = route.name |
||||
|
const tableColumns = ref(Itembasic.allSchemas.tableColumns) |
||||
|
|
||||
|
// 字段设置 更新主列表字段 |
||||
|
const updataTableColumns = (val) => { |
||||
|
tableColumns.value = val |
||||
|
} |
||||
|
|
||||
|
// 查询列表页面参数设置 |
||||
|
const searchTableParams = ref([ |
||||
|
//{ |
||||
|
// formField: 'productItemCode', |
||||
|
// searchTableTitle: '物料信息', |
||||
|
// searchTableAllSchemas: Itembasic.allSchemas, |
||||
|
// searchTablePage: ItembasicApi.getItembasicPage |
||||
|
//} |
||||
|
]) |
||||
|
|
||||
|
const { tableObject, tableMethods } = useTable({ |
||||
|
getListApi: ItembasicApi.getItembasicPage // 分页接口 |
||||
|
}) |
||||
|
|
||||
|
// 获得表格的各种操作 |
||||
|
const { getList, setSearchParams } = tableMethods |
||||
|
|
||||
|
// 列表头部按钮 |
||||
|
const HeadButttondata = [ |
||||
|
defaultButtons.defaultAddBtn({hasPermi:'wms:itembasic:create'}), // 新增 |
||||
|
defaultButtons.defaultImportBtn({hasPermi:'wms:itembasic:import'}), // 导入 |
||||
|
defaultButtons.defaultExportBtn({hasPermi:'wms:itembasic:export'}), // 导出 |
||||
|
defaultButtons.defaultFreshBtn(null), // 刷新 |
||||
|
defaultButtons.defaultFilterBtn(null), // 筛选 |
||||
|
defaultButtons.defaultSetBtn(null), // 设置 |
||||
|
// { |
||||
|
// label: '自定义扩展按钮', |
||||
|
// name: 'zdy', |
||||
|
// hide: false, |
||||
|
// type: 'primary', |
||||
|
// icon: 'Select', |
||||
|
// color: '' |
||||
|
// }, |
||||
|
] |
||||
|
|
||||
|
// 头部按钮事件 |
||||
|
const buttonBaseClick = (val, item) => { |
||||
|
if (val == 'add') { // 新增 |
||||
|
openForm('create') |
||||
|
} else if (val == 'import') { // 导入 |
||||
|
handleImport() |
||||
|
} else if (val == 'export') { // 导出 |
||||
|
handleExport() |
||||
|
} else if (val == 'refresh') { // 刷新 |
||||
|
getList() |
||||
|
} else if (val == 'filtrate') { // 筛选 |
||||
|
} else { // 其他按钮 |
||||
|
console.log('其他按钮', item) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
// 列表-操作按钮 |
||||
|
const butttondata = [ |
||||
|
defaultButtons.mainListEditBtn({hasPermi:'wms:itembasic:update'}), // 编辑 |
||||
|
defaultButtons.mainListDeleteBtn({hasPermi:'wms:itembasic:delete'}), // 删除 |
||||
|
] |
||||
|
|
||||
|
// 列表-操作按钮事件 |
||||
|
const buttonTableClick = async (val, row) => { |
||||
|
if (val == 'edit') { // 编辑 |
||||
|
openForm('update', row) |
||||
|
} else if (val == 'delete') { // 删除 |
||||
|
handleDelete(row.id) |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/** 添加/修改操作 */ |
||||
|
const basicFormRef = ref() |
||||
|
const openForm = (type: string, row?: any) => { |
||||
|
basicFormRef.value.open(type, row) |
||||
|
} |
||||
|
|
||||
|
// 查询页面返回 |
||||
|
const searchTableSuccess = (formField, searchField, val, formRef) => { |
||||
|
nextTick(() => { |
||||
|
const setV = {} |
||||
|
setV[formField] = val[0][searchField] |
||||
|
formRef.setValues(setV) |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
/** 详情操作 */ |
||||
|
const detailRef = ref() |
||||
|
const openDetail = (row: any, titleName: any, titleValue: any) => { |
||||
|
detailRef.value.openDetail(row, titleName, titleValue, 'basicItembasic') |
||||
|
} |
||||
|
|
||||
|
/** 删除按钮操作 */ |
||||
|
const handleDelete = async (id: number) => { |
||||
|
try { |
||||
|
// 删除的二次确认 |
||||
|
await message.delConfirm() |
||||
|
// 发起删除 |
||||
|
await ItembasicApi.deleteItembasic(id) |
||||
|
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 ItembasicApi.exportItembasic(setSearchParams) |
||||
|
download.excel(data, '物品基本信息.xls') |
||||
|
} catch { |
||||
|
} finally { |
||||
|
exportLoading.value = false |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/** 导入 */ |
||||
|
const importFormRef = ref() |
||||
|
const handleImport = () => { |
||||
|
importFormRef.value.open() |
||||
|
} |
||||
|
// 导入附件弹窗所需的参数 |
||||
|
const importTemplateData = reactive({ |
||||
|
templateUrl: '', |
||||
|
templateTitle: '物品基本信息导入模版.xls' |
||||
|
}) |
||||
|
// 导入成功之后 |
||||
|
const importSuccess = () => { |
||||
|
getList() |
||||
|
} |
||||
|
|
||||
|
// 筛选提交 |
||||
|
const searchFormClick = (searchData) => { |
||||
|
tableObject.params = { |
||||
|
isSearch: true, |
||||
|
filters: searchData.filters |
||||
|
} |
||||
|
getList() // 刷新当前列表 |
||||
|
} |
||||
|
|
||||
|
/** 初始化 **/ |
||||
|
onMounted(async () => { |
||||
|
getList() |
||||
|
importTemplateData.templateUrl = await ItembasicApi.importTemplate() |
||||
|
}) |
||||
|
|
||||
|
</script> |
@ -0,0 +1,355 @@ |
|||||
|
import type { CrudSchema } from '@/hooks/web/useCrudSchemas' |
||||
|
import { dateFormatter } from '@/utils/formatTime' |
||||
|
|
||||
|
// 表单校验
|
||||
|
export const ItembasicRules = reactive({ |
||||
|
code: [required], |
||||
|
status: [required], |
||||
|
uom: [required], |
||||
|
isStdPack: [required], |
||||
|
enableBuy: [required], |
||||
|
enableMake: [required], |
||||
|
enableOutsourcing: [required], |
||||
|
isRecycled: [required], |
||||
|
isPhantom: [required], |
||||
|
abcClass: [required], |
||||
|
type: [required], |
||||
|
validityDays: [required], |
||||
|
available: [required] |
||||
|
}) |
||||
|
|
||||
|
export const Itembasic = useCrudSchemas(reactive<CrudSchema[]>([ |
||||
|
{ |
||||
|
label: '代码', |
||||
|
field: 'code', |
||||
|
sort: 'custom', |
||||
|
isSearch: true |
||||
|
}, |
||||
|
{ |
||||
|
label: '名称', |
||||
|
field: 'name', |
||||
|
sort: 'custom', |
||||
|
isSearch: true |
||||
|
}, |
||||
|
{ |
||||
|
label: '描述1', |
||||
|
field: 'desc1', |
||||
|
sort: 'custom', |
||||
|
isSearch: true |
||||
|
}, |
||||
|
{ |
||||
|
label: '描述2', |
||||
|
field: 'desc2', |
||||
|
sort: 'custom', |
||||
|
isSearch: true |
||||
|
}, |
||||
|
{ |
||||
|
label: '状态', |
||||
|
field: 'status', |
||||
|
sort: 'custom', |
||||
|
dictType: DICT_TYPE.ITEM_STATUS, |
||||
|
dictClass: 'string', // 默认都是字符串类型其他暂不考虑
|
||||
|
isSearch: true, |
||||
|
form: { |
||||
|
component: 'SelectV2' |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '计量单位', |
||||
|
field: 'uom', |
||||
|
sort: 'custom', |
||||
|
dictType: DICT_TYPE.UOM, |
||||
|
dictClass: 'string', // 默认都是字符串类型其他暂不考虑
|
||||
|
isSearch: true, |
||||
|
form: { |
||||
|
component: 'SelectV2' |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '替代计量单位', |
||||
|
field: 'altUom', |
||||
|
sort: 'custom', |
||||
|
dictType: DICT_TYPE.UOM, |
||||
|
dictClass: 'string', // 默认都是字符串类型其他暂不考虑
|
||||
|
isSearch: true, |
||||
|
form: { |
||||
|
component: 'SelectV2' |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '是否标包', |
||||
|
field: 'isStdPack', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
form: { |
||||
|
component: 'SelectV2' |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '可采购', |
||||
|
field: 'enableBuy', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
form: { |
||||
|
component: 'SelectV2' |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '可制造', |
||||
|
field: 'enableMake', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
form: { |
||||
|
component: 'SelectV2' |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '可委外加工', |
||||
|
field: 'enableOutsourcing', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
form: { |
||||
|
component: 'SelectV2' |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '回收件', |
||||
|
field: 'isRecycled', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
form: { |
||||
|
component: 'SelectV2' |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '虚零件', |
||||
|
field: 'isPhantom', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
form: { |
||||
|
component: 'SelectV2' |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: 'ABC类', |
||||
|
field: 'abcClass', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
form: { |
||||
|
component: 'SelectV2' |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '类型', |
||||
|
field: 'type', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
form: { |
||||
|
component: 'SelectV2' |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '种类', |
||||
|
field: 'category', |
||||
|
sort: 'custom', |
||||
|
dictType: DICT_TYPE.ITEM_CATEGORY, |
||||
|
dictClass: 'string', // 默认都是字符串类型其他暂不考虑
|
||||
|
isSearch: true, |
||||
|
form: { |
||||
|
component: 'SelectV2' |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '分组', |
||||
|
field: 'itemGroup', |
||||
|
sort: 'custom', |
||||
|
dictType: DICT_TYPE.ITEM_GROUP, |
||||
|
dictClass: 'string', // 默认都是字符串类型其他暂不考虑
|
||||
|
isSearch: true, |
||||
|
form: { |
||||
|
component: 'SelectV2' |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '颜色', |
||||
|
field: 'color', |
||||
|
sort: 'custom', |
||||
|
dictType: DICT_TYPE.ITEM_COLOR, |
||||
|
dictClass: 'string', // 默认都是字符串类型其他暂不考虑
|
||||
|
isSearch: true, |
||||
|
form: { |
||||
|
component: 'SelectV2' |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '配置', |
||||
|
field: 'configuration', |
||||
|
sort: 'custom', |
||||
|
dictType: DICT_TYPE.ITEM_CONFIGURATION, |
||||
|
dictClass: 'string', // 默认都是字符串类型其他暂不考虑
|
||||
|
isSearch: true, |
||||
|
form: { |
||||
|
component: 'SelectV2' |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '项目', |
||||
|
field: 'project', |
||||
|
sort: 'custom', |
||||
|
isSearch: true |
||||
|
}, |
||||
|
{ |
||||
|
label: '质量等级', |
||||
|
field: 'eqLevel', |
||||
|
sort: 'custom', |
||||
|
dictType: DICT_TYPE.EQ_LEVEL, |
||||
|
dictClass: 'string', // 默认都是字符串类型其他暂不考虑
|
||||
|
isSearch: true, |
||||
|
form: { |
||||
|
component: 'SelectV2' |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '有效天数', |
||||
|
field: 'validityDays', |
||||
|
sort: 'custom', |
||||
|
isSearch: true, |
||||
|
form: { |
||||
|
component: 'InputNumber', |
||||
|
value: 0 |
||||
|
} |
||||
|
}, |
||||
|
{ |
||||
|
label: '用户组代码', |
||||
|
field: 'userGroupCode', |
||||
|
sort: 'custom', |
||||
|
isSearch: true |
||||
|
}, |
||||
|
{ |
||||
|
label: '是否可用', |
||||
|
field: 'available', |
||||
|
sort: 'custom', |
||||
|
isSearch: true |
||||
|
}, |
||||
|
{ |
||||
|
label: '生效时间', |
||||
|
field: 'activeTime', |
||||
|
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: 'expireTime', |
||||
|
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: '创建时间', |
||||
|
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: '删除时间', |
||||
|
field: 'deletionTime', |
||||
|
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: '删除者ID', |
||||
|
field: 'deleterId', |
||||
|
sort: 'custom', |
||||
|
isSearch: true |
||||
|
}, |
||||
|
{ |
||||
|
label: '扩展属性', |
||||
|
field: 'extraProperties', |
||||
|
sort: 'custom', |
||||
|
isSearch: true |
||||
|
}, |
||||
|
{ |
||||
|
label: '并发乐观锁', |
||||
|
field: 'concurrencyStamp', |
||||
|
sort: 'custom', |
||||
|
isSearch: true |
||||
|
}, |
||||
|
{ |
||||
|
label: '地点ID', |
||||
|
field: 'siteId', |
||||
|
sort: 'custom', |
||||
|
isSearch: true |
||||
|
}, |
||||
|
{ |
||||
|
label: '操作', |
||||
|
field: 'action', |
||||
|
isForm: false, |
||||
|
table: { |
||||
|
width: 150, |
||||
|
fixed: 'right' |
||||
|
} |
||||
|
} |
||||
|
])) |
Loading…
Reference in new issue