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