Browse Source

BUG修改

master
parent
commit
b72840d40f
  1. 20
      src/views/eam/basic/location/index.vue
  2. 21
      src/views/eam/basic/locationArea/index.vue
  3. 344
      src/views/eam/basic/supplier/index.vue
  4. 42
      src/views/eam/item/itemApplyMain/itemApplyMain.data.ts

20
src/views/eam/basic/location/index.vue

@ -151,15 +151,19 @@
} }
if (data.activeTime == 0) data.activeTime = null; if (data.activeTime == 0) data.activeTime = null;
if (data.expireTime == 0) data.expireTime = null; if (data.expireTime == 0) data.expireTime = null;
if (formType === 'create') { try {
await LocationApi.createLocation(data) if (formType === 'create') {
message.success(t('common.createSuccess')) await LocationApi.createLocation(data)
} else { message.success(t('common.createSuccess'))
await LocationApi.updateLocation(data) } else {
message.success(t('common.updateSuccess')) await LocationApi.updateLocation(data)
message.success(t('common.updateSuccess'))
}
basicFormRef.value.dialogVisible = false
getList()
} finally {
basicFormRef.value.formLoading = false
} }
basicFormRef.value.dialogVisible = false
getList()
} }
/** 详情操作 */ /** 详情操作 */

21
src/views/eam/basic/locationArea/index.vue

@ -143,15 +143,20 @@
} }
if (data.activeTime == 0) data.activeTime = null; if (data.activeTime == 0) data.activeTime = null;
if (data.expireTime == 0) data.expireTime = null; if (data.expireTime == 0) data.expireTime = null;
if (formType === 'create') { try {
await LocationAreaApi.createLocationArea(data) if (formType === 'create') {
message.success(t('common.createSuccess')) await LocationAreaApi.createLocationArea(data)
} else { message.success(t('common.createSuccess'))
await LocationAreaApi.updateLocationArea(data) } else {
message.success(t('common.updateSuccess')) await LocationAreaApi.updateLocationArea(data)
message.success(t('common.updateSuccess'))
}
basicFormRef.value.dialogVisible = false
getList()
} finally {
basicFormRef.value.formLoading = false
} }
basicFormRef.value.dialogVisible = false
getList()
} }
// //

344
src/views/eam/basic/supplier/index.vue

@ -4,29 +4,16 @@
<Search :schema="Supplier.allSchemas.searchSchema" @search="setSearchParams" @reset="setSearchParams" /> <Search :schema="Supplier.allSchemas.searchSchema" @search="setSearchParams" @reset="setSearchParams" />
</ContentWrap> </ContentWrap>
<!-- 列表头部 --> <!-- 列表头部 -->
<TableHead <TableHead :HeadButttondata="HeadButttondata" @button-base-click="buttonBaseClick" :routeName="routeName"
:HeadButttondata="HeadButttondata" @updataTableColumns="updataTableColumns" @searchFormClick="searchFormClick" :allSchemas="Supplier.allSchemas" />
@button-base-click="buttonBaseClick"
:routeName="routeName"
@updataTableColumns="updataTableColumns"
@searchFormClick="searchFormClick"
:allSchemas="Supplier.allSchemas"
/>
<!-- 列表 --> <!-- 列表 -->
<ContentWrap> <ContentWrap>
<Table <Table :columns="tableColumns" :data="tableObject.tableList" :loading="tableObject.loading" :pagination="{
:columns="tableColumns"
:data="tableObject.tableList"
:loading="tableObject.loading"
:pagination="{
total: tableObject.total total: tableObject.total
}" }" v-model:pageSize="tableObject.pageSize" v-model:currentPage="tableObject.currentPage"
v-model:pageSize="tableObject.pageSize" v-model:sort="tableObject.sort">
v-model:currentPage="tableObject.currentPage"
v-model:sort="tableObject.sort"
>
<template #code="{row}"> <template #code="{row}">
<el-button type="primary" link @click="openDetail(row, '代码', row.code)"> <el-button type="primary" link @click="openDetail(row, '代码', row.code)">
<span>{{ row.code }}</span> <span>{{ row.code }}</span>
@ -39,187 +26,184 @@
</ContentWrap> </ContentWrap>
<!-- 表单弹窗添加/修改 --> <!-- 表单弹窗添加/修改 -->
<BasicForm <BasicForm ref="basicFormRef" @success="formsSuccess" :rules="SupplierRules" :formAllSchemas="Supplier.allSchemas"
ref="basicFormRef" :apiUpdate="SupplierApi.updateSupplier" :apiCreate="SupplierApi.createSupplier"
@success="formsSuccess" @searchTableSuccess="searchTableSuccess" :isBusiness="false" />
:rules="SupplierRules"
:formAllSchemas="Supplier.allSchemas"
:apiUpdate="SupplierApi.updateSupplier"
:apiCreate="SupplierApi.createSupplier"
@searchTableSuccess="searchTableSuccess"
:isBusiness="false"
/>
<!-- 详情 --> <!-- 详情 -->
<Detail ref="detailRef" :isBasic="true" :allSchemas="Supplier.allSchemas" /> <Detail ref="detailRef" :isBasic="true" :allSchemas="Supplier.allSchemas" />
<!-- 导入 --> <!-- 导入 -->
<ImportForm ref="importFormRef" url="/eam/supplier/import" :importTemplateData="importTemplateData" @success="importSuccess" /> <ImportForm ref="importFormRef" url="/eam/supplier/import" :importTemplateData="importTemplateData"
@success="importSuccess" />
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
import download from '@/utils/download' import download from '@/utils/download'
import { Supplier,SupplierRules } from './supplier.data' import { Supplier, SupplierRules } from './supplier.data'
import * as SupplierApi from '@/api/eam/basic/supplier' import * as SupplierApi from '@/api/eam/basic/supplier'
import * as defaultButtons from '@/utils/disposition/defaultButtons' 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'
defineOptions({ name: 'Supplier' }) defineOptions({ name: 'Supplier' })
const message = useMessage() // const message = useMessage() //
const { t } = useI18n() // const { t } = useI18n() //
const route = useRoute() // const route = useRoute() //
const routeName = ref() const routeName = ref()
routeName.value = route.name routeName.value = route.name
const tableColumns = ref(Supplier.allSchemas.tableColumns) const tableColumns = ref(Supplier.allSchemas.tableColumns)
// //
const searchTableSuccess = (formField, searchField, val, formRef) => { const searchTableSuccess = (formField, searchField, val, formRef) => {
nextTick(() => { nextTick(() => {
const setV = {} const setV = {}
setV[formField] = val[0][searchField] setV[formField] = val[0][searchField]
formRef.setValues(setV) formRef.setValues(setV)
})
}
//
const updataTableColumns = (val) => {
tableColumns.value = val
}
const { tableObject, tableMethods } = useTable({
getListApi: SupplierApi.getSupplierPage //
}) })
}
//
// const { getList, setSearchParams } = tableMethods
const updataTableColumns = (val) => {
tableColumns.value = val //
} const HeadButttondata = [
defaultButtons.defaultAddBtn(null), //
const { tableObject, tableMethods } = useTable({ defaultButtons.defaultExportBtn(null), //
getListApi: SupplierApi.getSupplierPage // defaultButtons.defaultFreshBtn(null), //
}) defaultButtons.defaultFilterBtn(null), //
defaultButtons.defaultSetBtn(null), //
// // {
const { getList, setSearchParams } = tableMethods // label: '',
// name: 'zdy',
// // hide: false,
const HeadButttondata = [ // type: 'primary',
defaultButtons.defaultAddBtn(null), // // icon: 'Select',
defaultButtons.defaultExportBtn(null), // // color: ''
defaultButtons.defaultFreshBtn(null), // // },
defaultButtons.defaultFilterBtn(null), // ]
defaultButtons.defaultSetBtn(null), //
// { //
// label: '', const buttonBaseClick = (val, item) => {
// name: 'zdy', if (val == 'add') { //
// hide: false, openForm('create')
// type: 'primary', } else if (val == 'export') { //
// icon: 'Select', handleExport()
// color: '' } else if (val == 'refresh') { //
// }, getList()
] } else if (val == 'filtrate') { //
} else { //
// console.log('其他按钮', item)
const buttonBaseClick = (val, item) => { }
if (val == 'add') { //
openForm('create')
} else if (val == 'export') { //
handleExport()
} else if (val == 'refresh') { //
getList()
} else if (val == 'filtrate') { //
} else { //
console.log('其他按钮', item)
} }
}
// - // -
const butttondata = [ const butttondata = [
defaultButtons.mainListEditBtn(null), // defaultButtons.mainListEditBtn(null), //
defaultButtons.mainListDeleteBtn(null), // defaultButtons.mainListDeleteBtn(null), //
] ]
// - // -
const buttonTableClick = async (val, row) => { const buttonTableClick = async (val, row) => {
if (val == 'edit') { // if (val == 'edit') { //
openForm('update', row) openForm('update', row)
} else if (val == 'delete') { // } else if (val == 'delete') { //
handleDelete(row.id) handleDelete(row.id)
}
}
/** 添加/修改操作 */
const basicFormRef = ref()
const openForm = (type : string, row ?: any) => {
basicFormRef.value.open(type, row)
} }
}
// form
/** 添加/修改操作 */ const formsSuccess = async (formType, data) => {
const basicFormRef = ref() var isHave = Supplier.allSchemas.formSchema.some(function (item) {
const openForm = (type: string, row?: any) => { return item.field === 'activeTime' || item.field === 'expireTime';
basicFormRef.value.open(type, row) });
} if (isHave) {
if (data.activeTime && data.expireTime && data.activeTime >= data.expireTime) {
// form message.error('失效时间要大于生效时间')
const formsSuccess = async (formType,data) => { return;
var isHave =Supplier.allSchemas.formSchema.some(function (item) { }
return item.field === 'activeTime' || item.field === 'expireTime'; }
}); if (data.activeTime == 0) data.activeTime = null;
if(isHave){ if (data.expireTime == 0) data.expireTime = null;
if(data.activeTime && data.expireTime && data.activeTime >=data.expireTime){ try {
message.error('失效时间要大于生效时间') if (formType === 'create') {
return; await SupplierApi.createSupplier(data)
message.success(t('common.createSuccess'))
} else {
await SupplierApi.updateSupplier(data)
message.success(t('common.updateSuccess'))
}
basicFormRef.value.dialogVisible = false
getList()
} finally {
basicFormRef.value.formLoading = false
} }
} }
if(data.activeTime==0)data.activeTime = null;
if(data.expireTime==0)data.expireTime = null; /** 详情操作 */
if (formType === 'create') { const detailRef = ref()
await SupplierApi.createSupplier(data) const openDetail = (row : any, titleName : any, titleValue : any) => {
message.success(t('common.createSuccess')) detailRef.value.openDetail(row, titleName, titleValue, 'basicSupplier')
} else {
await SupplierApi.updateSupplier(data)
message.success(t('common.updateSuccess'))
} }
basicFormRef.value.dialogVisible = false
getList() /** 删除按钮操作 */
} const handleDelete = async (id : number) => {
try {
/** 详情操作 */ //
const detailRef = ref() await message.delConfirm()
const openDetail = (row: any, titleName: any, titleValue: any) => { //
detailRef.value.openDetail(row, titleName, titleValue, 'basicSupplier') await SupplierApi.deleteSupplier(id)
} message.success(t('common.delSuccess'))
//
/** 删除按钮操作 */ await getList()
const handleDelete = async (id: number) => { } catch { }
try {
//
await message.delConfirm()
//
await SupplierApi.deleteSupplier(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 SupplierApi.exportSupplier(tableObject.params)
download.excel(data, '供应商.xlsx')
} catch {
} finally {
exportLoading.value = false
} }
}
// /** 导出按钮操作 */
const searchFormClick = (searchData) => { const exportLoading = ref(false) //
tableObject.params = { const handleExport = async () => {
isSearch: true, try {
filters: searchData.filters //
await message.exportConfirm()
//
exportLoading.value = true
const data = await SupplierApi.exportSupplier(tableObject.params)
download.excel(data, '供应商.xlsx')
} catch {
} finally {
exportLoading.value = false
}
} }
getList() //
}
/** 初始化 **/ //
onMounted(async () => { const searchFormClick = (searchData) => {
getList() tableObject.params = {
}) isSearch: true,
filters: searchData.filters
}
getList() //
}
/** 初始化 **/
onMounted(async () => {
getList()
})
</script> </script>

42
src/views/eam/item/itemApplyMain/itemApplyMain.data.ts

@ -258,27 +258,27 @@ export const ItemApplyDetail = useCrudSchemas(reactive<CrudSchema[]>([
precision: 2 precision: 2
} }
}, },
{ // {
label: '是否账内库', // label: '是否账内库',
field: 'isInAccount', // field: 'isInAccount',
sort: 'custom', // sort: 'custom',
dictType: DICT_TYPE.TRUE_FALSE, // dictType: DICT_TYPE.TRUE_FALSE,
dictClass: 'string', // dictClass: 'string',
isSearch: true, // isSearch: true,
isTable: true, // isTable: true,
table: { // table: {
width: 150 // width: 150
}, // },
tableForm: { // tableForm: {
type: 'Select', // type: 'Select',
disabled: true // disabled: true
}, // },
form: { // form: {
componentProps: { // componentProps: {
disabled: true, // disabled: true,
} // }
}, // },
}, // },
{ {
label: '是否可用', label: '是否可用',
field: 'available', field: 'available',

Loading…
Cancel
Save