|
|
|
@ -22,7 +22,8 @@
|
|
|
|
|
</a-col> |
|
|
|
|
<a-col :xl="6" :lg="7" :md="8" :sm="24"> |
|
|
|
|
<a-form-item label="核算属性"> |
|
|
|
|
<a-input placeholder="请输入核算属性" v-model="queryParam.accountingAttributes"></a-input> |
|
|
|
|
<j-dict-select-tag placeholder="请输入核算属性" v-model="queryParam.accountingAttributes" dictCode="material_type"></j-dict-select-tag> |
|
|
|
|
<!-- <a-input placeholder="请输入核算属性" v-model="queryParam.accountingAttributes" dictCode="material_type"></a-input>--> |
|
|
|
|
</a-form-item> |
|
|
|
|
</a-col> |
|
|
|
|
<!-- <a-col :xl="6" :lg="7" :md="8" :sm="24">--> |
|
|
|
@ -40,7 +41,6 @@
|
|
|
|
|
|
|
|
|
|
<!-- 操作按钮区域 --> |
|
|
|
|
<div class="table-operator"> |
|
|
|
|
<a-button @click="handleAdd" type="primary" icon="plus">新增</a-button> |
|
|
|
|
<a-button type="primary" icon="download" @click="handleExportXls('账外物资库')">导出</a-button> |
|
|
|
|
<a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel"> |
|
|
|
|
<a-button type="primary" icon="import">导入</a-button> |
|
|
|
@ -118,6 +118,8 @@
|
|
|
|
|
import { httpAction, getAction } from '@/api/manage' |
|
|
|
|
import JSuperQuery from '@/components/jeecg/JSuperQuery.vue' |
|
|
|
|
import ProcessWasteMaterialsLists from '@views/wastematerials/ProcessWasteMaterialsLists' |
|
|
|
|
import { ajaxGetDictItems, getDictItemsFromCache } from '@api/api' |
|
|
|
|
import {initDictOptions, filterDictText} from '@/components/dict/JDictSelectUtil' |
|
|
|
|
|
|
|
|
|
export default { |
|
|
|
|
name: 'ProcessWasteMaterialsList', |
|
|
|
@ -207,6 +209,7 @@
|
|
|
|
|
}, |
|
|
|
|
created() { |
|
|
|
|
this.getSuperFieldList(); |
|
|
|
|
this.initDictConfig(); |
|
|
|
|
}, |
|
|
|
|
computed: { |
|
|
|
|
importExcelUrl: function(){ |
|
|
|
@ -218,6 +221,19 @@
|
|
|
|
|
this.$router.push({name:'src-views-wastematerials-ProcessWasteMaterialsLists',params:{material: record.material}}) |
|
|
|
|
}, |
|
|
|
|
initDictConfig(){ |
|
|
|
|
//优先从缓存中读取字典配置 |
|
|
|
|
if(getDictItemsFromCache(this.dictCode)){ |
|
|
|
|
this.dictOptions = getDictItemsFromCache(this.dictCode); |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//根据字典Code, 初始化字典数组 |
|
|
|
|
ajaxGetDictItems(this.dictCode, null).then((res) => { |
|
|
|
|
if (res.success) { |
|
|
|
|
// console.log(res.result); |
|
|
|
|
this.dictOptions = res.result; |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
getSuperFieldList(){ |
|
|
|
|
// let fieldList=[]; |
|
|
|
@ -246,16 +262,13 @@
|
|
|
|
|
getAction(this.url.queryLibraryName,item).then((res)=>{ |
|
|
|
|
if(res.success){ |
|
|
|
|
this.libraryNames = res.result.records; |
|
|
|
|
console.log("222222") |
|
|
|
|
console.log(res.result.records); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
getAction(this.url.queryListmaterials).then((res)=>{ |
|
|
|
|
if(res.success){ |
|
|
|
|
this.Listmaterials = res.result; |
|
|
|
|
console.log("1111111") |
|
|
|
|
console.log(res.result); |
|
|
|
|
console.log("22222-22") |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|