@ -10,20 +10,35 @@
<!-- < / a - f o r m - i t e m > - - >
<!-- < / a - c o l > - - >
< a -col :xl ="6" :lg ="7" :md ="8" :sm ="24" >
<!-- < a -form -item label = "单位" > -- >
<!-- < j -select -depart v -model = " queryParam.unit " :trigger-change ="true" > < / j - s e l e c t - d e p a r t > - - >
<!-- < / a - f o r m - i t e m > - - >
< a -form -item label = "单位" >
< j -select -depart v -model = " queryParam.unit " :trigger-change ="true" > < / j - s e l e c t - d e p a r t >
< a -select v -model = " queryParam.unit " placeholder = "请输入单位" @mouseenter ="getUnit" >
< a -select -option v-for ="(item,index) in queryParamsUntil" :key="index" :value="item.unit" > {{ item.unit_dictText }} < / a -select -option >
< / a - s e l e c t >
< / a - f o r m - i t e m >
< / a - c o l >
< a -col :xl ="6" :lg ="7" :md ="8" :sm ="24" >
< a -form -item label = "账外物资编码" >
< a -input placeholder = "请输入账外物资编码" v-model ="queryParam.libraryAssociationIdInvisible" > < / a -input >
< a -select v -model = " queryParam.libraryAssociationIdInvisible " placeholder = "请输入账外物资编码" @mouseenter ="getUnit" >
< a -select -option v-for ="(item,index) in queryParamsUntil" :key="index" :value="item.libraryAssociationIdInvisible" > {{ item.libraryAssociationIdInvisible }} < / a -select -option >
< / a - s e l e c t >
< / a - f o r m - i t e m >
<!-- < a -form -item label = "账外物资编码" > -- >
<!-- < a -input placeholder = "请输入账外物资编码" v-model ="queryParam.libraryAssociationIdInvisible" > < / a -input > -- >
<!-- < / a - f o r m - i t e m > - - >
< / a - c o l >
< a -col :xl ="6" :lg ="7" :md ="8" :sm ="24" >
< a -form -item label = "废旧物资编码" >
< a -input placeholder = "请输入废旧物资编码" v-model ="queryParam.libraryAssociationIdWaste" > < / a -input >
< a -select v -model = " queryParam.libraryAssociationIdWaste " placeholder = "请输入废旧物资编码" @mouseenter ="getUnit" >
< a -select -option v-for ="(item,index) in queryParamsUntil" :key="index" :value="item.libraryAssociationIdWaste" > {{ item.libraryAssociationIdWaste }} < / a -select -option >
< / a - s e l e c t >
< / a - f o r m - i t e m >
<!-- < a -form -item label = "废旧物资编码" > -- >
<!-- < a -input placeholder = "请输入废旧物资编码" v-model ="queryParam.libraryAssociationIdWaste" > < / a -input > -- >
<!-- < / a - f o r m - i t e m > - - >
< / a - c o l >
< template v-if ="toggleSearchStatus" >
< / template >
@ -138,6 +153,8 @@
import ProcessUnitWasteWarehouseCodeModal from './modules/ProcessUnitWasteWarehouseCodeModal'
import JSuperQuery from '@/components/jeecg/JSuperQuery.vue'
import JSelectDepart from '@/components/jeecgbiz/JSelectDepart'
import { httpAction , getAction } from '@/api/manage'
export default {
name : 'ProcessUnitWasteWarehouseCodeList' ,
@ -195,10 +212,11 @@
deleteBatch : "/unitwaste/processUnitWasteWarehouseCode/deleteBatch" ,
exportXlsUrl : "/unitwaste/processUnitWasteWarehouseCode/exportXls" ,
importExcelUrl : "unitwaste/processUnitWasteWarehouseCode/importExcel" ,
listByuntil : '/unitwaste/processUnitWasteWarehouseCode/list' ,
} ,
dictOptions : { } ,
superFieldList : [ ] ,
queryParamsUntil : [ ] ,
}
} ,
created ( ) {
@ -210,6 +228,14 @@
} ,
} ,
methods : {
/ / 加 載 項 目 部
getUnit ( ) {
getAction ( this . url . listByuntil ) . then ( ( res ) => {
if ( res . success ) {
this . queryParamsUntil = res . result . records || res . result ;
}
} )
} ,
initDictConfig ( ) {
} ,
getSuperFieldList ( ) {