|
|
|
@ -14,21 +14,25 @@
|
|
|
|
|
<a-input placeholder="请输入品名名称" v-model="queryParam.descriptionName"></a-input> |
|
|
|
|
</a-form-item> |
|
|
|
|
</a-col> |
|
|
|
|
<template v-if="toggleSearchStatus"> |
|
|
|
|
|
|
|
|
|
<a-col :xl="6" :lg="7" :md="8" :sm="24"> |
|
|
|
|
<a-form-item label="分类名称"> |
|
|
|
|
<a-input placeholder="请输入分类名称" v-model="queryParam.classifyName"></a-input> |
|
|
|
|
<!-- <a-input placeholder="请输入分类名称" v-model="queryParam.classifyName"></a-input>--> |
|
|
|
|
<a-select v-model="queryParam.bigCategoryId" placeholder="请选择" > |
|
|
|
|
<a-select-option v-for="(item,index) in bigId" :key="index" :value="item.id">{{item.categoryName}}</a-select-option> |
|
|
|
|
</a-select> |
|
|
|
|
</a-form-item> |
|
|
|
|
</a-col> |
|
|
|
|
<template v-if="toggleSearchStatus"> |
|
|
|
|
</template> |
|
|
|
|
<a-col :xl="6" :lg="7" :md="8" :sm="24"> |
|
|
|
|
<span style="float: left;overflow: hidden;" class="table-page-search-submitButtons"> |
|
|
|
|
<a-button type="primary" @click="searchQuery" icon="search">查询</a-button> |
|
|
|
|
<a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button> |
|
|
|
|
<a @click="handleToggleSearch" style="margin-left: 8px"> |
|
|
|
|
{{ toggleSearchStatus ? '收起' : '展开' }} |
|
|
|
|
<a-icon :type="toggleSearchStatus ? 'up' : 'down'"/> |
|
|
|
|
</a> |
|
|
|
|
<!-- <a @click="handleToggleSearch" style="margin-left: 8px">--> |
|
|
|
|
<!-- {{ toggleSearchStatus ? '收起' : '展开' }}--> |
|
|
|
|
<!-- <a-icon :type="toggleSearchStatus ? 'up' : 'down'"/>--> |
|
|
|
|
<!-- </a>--> |
|
|
|
|
</span> |
|
|
|
|
</a-col> |
|
|
|
|
</a-row> |
|
|
|
@ -127,6 +131,7 @@
|
|
|
|
|
import { JeecgListMixin } from '@/mixins/JeecgListMixin' |
|
|
|
|
import ProcessDescriptionModal from './modules/ProcessDescriptionModal' |
|
|
|
|
import JSuperQuery from '@/components/jeecg/JSuperQuery.vue' |
|
|
|
|
import { getAction } from '@api/manage' |
|
|
|
|
|
|
|
|
|
export default { |
|
|
|
|
name: 'ProcessDescriptionList', |
|
|
|
@ -138,6 +143,7 @@
|
|
|
|
|
data () { |
|
|
|
|
return { |
|
|
|
|
description: '品名分类管理页面', |
|
|
|
|
bigId:[], |
|
|
|
|
// 表头 |
|
|
|
|
columns: [ |
|
|
|
|
{ |
|
|
|
@ -163,7 +169,7 @@
|
|
|
|
|
{ |
|
|
|
|
title:'分类名称', |
|
|
|
|
align:"center", |
|
|
|
|
dataIndex: 'classifyName' |
|
|
|
|
dataIndex: 'bigCategoryId' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title: '操作', |
|
|
|
@ -180,7 +186,7 @@
|
|
|
|
|
deleteBatch: "/description/processDescription/deleteBatch", |
|
|
|
|
exportXlsUrl: "/description/processDescription/exportXls", |
|
|
|
|
importExcelUrl: "description/processDescription/importExcel", |
|
|
|
|
|
|
|
|
|
categoryId: "/bigcategory/processBigCategory/list" |
|
|
|
|
}, |
|
|
|
|
dictOptions:{}, |
|
|
|
|
superFieldList:[], |
|
|
|
@ -201,8 +207,20 @@
|
|
|
|
|
let fieldList=[]; |
|
|
|
|
fieldList.push({type:'string',value:'materialClassify',text:'物料分类编号',dictCode:''}) |
|
|
|
|
fieldList.push({type:'string',value:'descriptionName',text:'品名名称',dictCode:''}) |
|
|
|
|
fieldList.push({type:'string',value:'classifyName',text:'分类名称',dictCode:''}) |
|
|
|
|
this.superFieldList = fieldList |
|
|
|
|
fieldList.push({type:'string',value:'bigCategoryId',text:'分类名称',dictCode:''}) |
|
|
|
|
this.superFieldList = fieldList; |
|
|
|
|
//查询大品类数据 |
|
|
|
|
let par = { |
|
|
|
|
classify: 1, |
|
|
|
|
delFlag: 0, |
|
|
|
|
state: 0 |
|
|
|
|
} |
|
|
|
|
getAction(this.url.categoryId,par).then((res)=>{ |
|
|
|
|
if(res.success){ |
|
|
|
|
// console.log(res.result.records); |
|
|
|
|
this.bigId = res.result.records; |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|