Browse Source

场内模具台账根据路由显示字段

master
张立 2 months ago
parent
commit
1b546cf2db
  1. 30
      src/views/eam/mold/moldAccounts/index.vue
  2. 17
      src/views/eam/mold/moldAccounts/moldAccounts.data.ts

30
src/views/eam/mold/moldAccounts/index.vue

@ -2,7 +2,7 @@
<ContentWrap> <ContentWrap>
<!-- 搜索工作栏 --> <!-- 搜索工作栏 -->
<Search <Search
:schema="MoldAccounts.allSchemas.searchSchema" :schema="MoldAccountsSchema.allSchemas.searchSchema"
@search="setSearchParams" @search="setSearchParams"
@reset="setSearchParams" @reset="setSearchParams"
/> />
@ -15,9 +15,8 @@
:routeName="routeName" :routeName="routeName"
@updataTableColumns="updataTableColumns" @updataTableColumns="updataTableColumns"
@searchFormClick="searchFormClick" @searchFormClick="searchFormClick"
:allSchemas="MoldAccounts.allSchemas" :allSchemas="MoldAccountsSchema.allSchemas"
/> />
<!-- 列表 --> <!-- 列表 -->
<ContentWrap> <ContentWrap>
<Table <Table
@ -49,11 +48,12 @@
ref="basicFormRef" ref="basicFormRef"
@success="formsSuccess" @success="formsSuccess"
:rules="MoldAccountsRules" :rules="MoldAccountsRules"
:formAllSchemas="MoldAccounts.allSchemas" :formAllSchemas="MoldAccountsSchema.allSchemas"
:apiUpdate="MoldAccountsApi.updateMoldAccounts" :apiUpdate="MoldAccountsApi.updateMoldAccounts"
:apiCreate="MoldAccountsApi.createMoldAccounts" :apiCreate="MoldAccountsApi.createMoldAccounts"
@searchTableSuccess="searchTableSuccess" @searchTableSuccess="searchTableSuccess"
:isBusiness="false" :isBusiness="false"
:key="count"
/> />
<SearchTable ref="searchTableRef" @searchTableSuccess="submitItem" /> <SearchTable ref="searchTableRef" @searchTableSuccess="submitItem" />
@ -120,6 +120,7 @@ import { getAccessToken } from '@/utils/auth'
import { dateFormatter } from '@/utils/formatTime' import { dateFormatter } from '@/utils/formatTime'
import * as SupplierApi from '@/api/eam/basic/supplier' import * as SupplierApi from '@/api/eam/basic/supplier'
import { selectAllFactoryArea,selectAllFactoryAreaDept } from '@/api/system/dept' import { selectAllFactoryArea,selectAllFactoryAreaDept } from '@/api/system/dept'
import { cloneDeep } from 'lodash-es'
import { import {
MoldMaintainOrderMain, MoldMaintainOrderMain,
@ -138,11 +139,12 @@ const { t } = useI18n() // 国际化
const route = useRoute() // const route = useRoute() //
const routeName = ref() const routeName = ref()
const MoldAccountsSchema = ref(cloneDeep(MoldAccounts))
const deviceNumber = ref() const deviceNumber = ref()
routeName.value = route.name routeName.value = route.name
const tableColumns = ref(MoldAccounts.allSchemas.tableColumns) const tableColumns = ref(MoldAccounts.allSchemas.tableColumns)
const allSchemas = ref(MoldAccounts.allSchemas) const allSchemas = ref(MoldAccountsSchema.value.allSchemas)
const detailAllSchemas = ref() const detailAllSchemas = ref()
const apiPage = ref() const apiPage = ref()
const itemCodeRow = ref() const itemCodeRow = ref()
@ -411,11 +413,27 @@ const changeTabs = (item) => {
] ]
} }
const count = ref(0)
/** 初始化 **/ /** 初始化 **/
onMounted(async () => { onMounted(async () => {
getList() getList()
importTemplateData.templateUrl = await MoldAccountsApi.importTemplate() importTemplateData.templateUrl = await MoldAccountsApi.importTemplate()
init()
})
const init = () => {
console.log(90,route.name)
nextTick(() => {
if (route.name == 'withinMoldAccounts') {
MoldAccountsSchema.value.allSchemas.formSchema = MoldAccounts.allSchemas.formSchema.filter(item => item.field !== 'outsourcedSuppliers')
console.log( MoldAccountsSchema.value.allSchemas.formSchema)
} else {
MoldAccountsSchema.value= cloneDeep(MoldAccounts)
}
count.value++
})
}
onActivated(async() => {
init()
}) })
/** 二维码 */ /** 二维码 */

17
src/views/eam/mold/moldAccounts/moldAccounts.data.ts

@ -37,27 +37,15 @@ export const MoldAccountsRules = reactive({
] ]
}) })
export const MoldAccounts = useCrudSchemas(reactive<CrudSchema[]>([ export const MoldAccounts = useCrudSchemas(reactive<CrudSchema[]>([
{ {
label: '来源类型', label: '来源类型',
field: 'sourceType', field: 'sourceType',
sort: 'custom', sort: 'custom',
isSearch: false, isSearch: false,
isForm: false, isForm: true,
form: { form: {
hidden:() => {
/* const route = useRoute();
// 获取当前路由的路径
const currentPath = route.path;
console.log('当前路由路径:', currentPath)
// 获取当前路由的参数
const routeParams = route.params;
console.log('当前路由参数:', routeParams)
// 获取当前路由的查询参数
const routeQuery = route.query;
console.log('当前路由查询参数:', routeQuery)*/
return true;
}
}, },
table: { table: {
width: '150', width: '150',
@ -71,7 +59,6 @@ export const MoldAccounts = useCrudSchemas(reactive<CrudSchema[]>([
isSearch: false, isSearch: false,
isForm: true, isForm: true,
form: { form: {
hidden:true
}, },
table: { table: {
width: '150', width: '150',

Loading…
Cancel
Save