Browse Source

xray

master
李达明 3 months ago
parent
commit
2c7b3c4fb4
  1. 58
      src/api/opc/xRay/index.ts
  2. 8
      src/views/home/index.vue
  3. 244
      src/views/opc/xRay/index.vue
  4. 162
      src/views/opc/xRay/xRay.data.ts

58
src/api/opc/xRay/index.ts

@ -0,0 +1,58 @@
import request from '@/config/axios'
export interface XRayVO {
id: number
code: string
dqd: string
tyd: string
hipotRst: string
station: string
processStartTime: string
processEndTime: string
loginId: string
coreId: number
rework: number
inBoundRst: string
inBoundFinsh: string
}
// 查询X-RAY列表
export const getXRayPage = async (params) => {
if (params.isSearch) {
delete params.isSearch
const data = {...params}
return await request.post({ url: '/opc/xray/senior', data })
} else {
return await request.get({ url: `/opc/xray/page`, params })
}
}
// 查询X-RAY详情
export const getXRay = async (id: number) => {
return await request.get({ url: `/opc/xray/get?id=` + id })
}
// 新增X-RAY
export const createXRay = async (data: XRayVO) => {
return await request.post({ url: `/opc/xray/create`, data })
}
// 修改X-RAY
export const updateXRay = async (data: XRayVO) => {
return await request.put({ url: `/opc/xray/update`, data })
}
// 删除X-RAY
export const deleteXRay = async (id: number) => {
return await request.delete({ url: `/opc/xray/delete?id=` + id })
}
// 导出X-RAY Excel
export const exportXRay = async (params) => {
return await request.download({ url: `/opc/xray/export-excel`, params })
}
// 下载用户导入模板
export const importTemplate = () => {
return request.download({ url: '/opc/xray/get-import-template' })
}

8
src/views/home/index.vue

@ -12,8 +12,8 @@
</div> </div>
</template> </template>
<script lang="ts" setup> <script lang="ts" setup>
import supplierIndex from './components/supplierIndex.vue' // import supplierIndex from './components/supplierIndex.vue'
import material from './components/material.vue' // import material from './components/material.vue'
import product from './components/product.vue' // import product from './components/product.vue'
import produce from './components/produce.vue' // import produce from './components/produce.vue'
</script> </script>

244
src/views/opc/xRay/index.vue

@ -0,0 +1,244 @@
<template>
<ContentWrap>
<!-- 搜索工作栏 -->
<Search :schema="XRay.allSchemas.searchSchema" @search="setSearchParams" @reset="setSearchParams" />
</ContentWrap>
<!-- 列表头部 -->
<TableHead
:HeadButttondata="HeadButttondata"
@button-base-click="buttonBaseClick"
:routeName="routeName"
@updataTableColumns="updataTableColumns"
@searchFormClick="searchFormClick"
:allSchemas="XRay.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="formsSuccess"
:rules="XRayRules"
:formAllSchemas="XRay.allSchemas"
:apiUpdate="XRayApi.updateXRay"
:apiCreate="XRayApi.createXRay"
@searchTableSuccess="searchTableSuccess"
:isBusiness="false"
/>
<!-- 详情 -->
<Detail ref="detailRef" :isBasic="true" :allSchemas="XRay.allSchemas" />
<!-- 导入 -->
<ImportForm ref="importFormRef" url="/opc/xray/import" :importTemplateData="importTemplateData" @success="importSuccess" />
</template>
<script setup lang="ts">
import download from '@/utils/download'
import { XRay,XRayRules } from './xRay.data'
import * as XRayApi from '@/api/opc/xRay'
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'
defineOptions({ name: 'XRay' })
const message = useMessage() //
const { t } = useI18n() //
const route = useRoute() //
const routeName = ref()
routeName.value = route.name
const tableColumns = ref(XRay.allSchemas.tableColumns)
//
const searchTableSuccess = (formField, searchField, val, formRef) => {
nextTick(() => {
const setV = {}
setV[formField] = val[0][searchField]
formRef.setValues(setV)
})
}
//
const updataTableColumns = (val) => {
tableColumns.value = val
}
const { tableObject, tableMethods } = useTable({
getListApi: XRayApi.getXRayPage //
})
//
const { getList, setSearchParams } = tableMethods
//
const HeadButttondata = [
// defaultButtons.defaultAddBtn({hasPermi:'wms:xRay:create'}), //
// defaultButtons.defaultImportBtn({hasPermi:'wms:xRay:import'}), //
defaultButtons.defaultExportBtn({hasPermi:'opc:xray: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:xray:update'}), //
defaultButtons.mainListDeleteBtn({hasPermi:'wms:xray: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)
}
// form
const formsSuccess = async (formType,data) => {
var isHave =XRay.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 XRayApi.createXRay(data)
message.success(t('common.createSuccess'))
} else {
await XRayApi.updateXRay(data)
message.success(t('common.updateSuccess'))
}
basicFormRef.value.dialogVisible = false
getList()
}
/** 详情操作 */
const detailRef = ref()
const openDetail = (row: any, titleName: any, titleValue: any) => {
detailRef.value.openDetail(row, titleName, titleValue, 'basicXRay')
}
/** 删除按钮操作 */
const handleDelete = async (id: number) => {
try {
//
await message.delConfirm()
//
await XRayApi.deleteXRay(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 XRayApi.exportXRay(tableObject.params)
download.excel(data, 'X-RAY.xlsx')
} catch {
} finally {
exportLoading.value = false
}
}
/** 导入 */
const importFormRef = ref()
const handleImport = () => {
importFormRef.value.open()
}
//
const importTemplateData = reactive({
templateUrl: '',
templateTitle: 'X-RAY导入模版.xlsx'
})
//
const importSuccess = () => {
getList()
}
//
const searchFormClick = (searchData) => {
tableObject.params = {
isSearch: true,
filters: searchData.filters
}
getList() //
}
/** 初始化 **/
onMounted(async () => {
getList()
importTemplateData.templateUrl = await XRayApi.importTemplate()
})
</script>

162
src/views/opc/xRay/xRay.data.ts

@ -0,0 +1,162 @@
import type { CrudSchema } from '@/hooks/web/useCrudSchemas'
import { dateFormatter } from '@/utils/formatTime'
// 表单校验
export const XRayRules = reactive({
})
export const XRay = useCrudSchemas(reactive<CrudSchema[]>([
// {
// label: 'id',
// field: 'id',
// sort: 'custom',
// isForm: false,
// },
{
label: '电芯条码',
field: 'code',
sort: 'custom',
isSearch: true,
},
{
label: '对齐度1-4',
field: 'dqd',
sort: 'custom',
isSearch: false,
},
{
label: '投影值1-4',
field: 'tyd',
sort: 'custom',
isSearch: false,
},
{
label: 'hipot判定',
field: 'hipotRst',
sort: 'custom',
isSearch: false,
},
{
label: '工位',
field: 'station',
sort: 'custom',
isSearch: false,
},
{
label: '电芯进站时间',
field: 'processStartTime',
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: 'processEndTime',
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: 'loginId',
sort: 'custom',
isSearch: false,
},
{
label: '序列号',
field: 'coreId',
sort: 'custom',
isSearch: false,
form: {
component: 'InputNumber',
value: 0
},
},
{
label: '返工品',
field: 'rework',
sort: 'custom',
isSearch: true,
form: {
component: 'InputNumber',
value: 0
},
dictType: DICT_TYPE.REWORK,
dictClass: 'string',
isTable: true,
tableForm: {
type: 'Select'
}
},
{
label: '进站判定',
field: 'inBoundRst',
sort: 'custom',
isSearch: true,
form: {
component: 'InputNumber',
value: 0
},
dictType: DICT_TYPE.IN_BOUND_RST,
dictClass: 'string',
isTable: true,
tableForm: {
type: 'Select'
}
},
{
label: '是否进站完成',
field: 'inBoundFinsh',
sort: 'custom',
isSearch: true,
form: {
component: 'InputNumber',
value: 0
},
dictType: DICT_TYPE.IN_BOUND_FINSH,
dictClass: 'string',
isTable: true,
tableForm: {
type: 'Select'
}
// },
// {
// label: '操作',
// field: 'action',
// isForm: false,
// table: {
// width: 150,
// fixed: 'right'
// }
}
]))
Loading…
Cancel
Save