|
|
@ -10,6 +10,21 @@ |
|
|
|
v-model="styleId"></j-dict-select-tag> |
|
|
|
v-model="styleId"></j-dict-select-tag> |
|
|
|
</a-form-item> |
|
|
|
</a-form-item> |
|
|
|
</a-col> |
|
|
|
</a-col> |
|
|
|
|
|
|
|
<a-col :xl="6" :lg="7" :md="8" :sm="24"> |
|
|
|
|
|
|
|
<a-form-item label="工序代码"> |
|
|
|
|
|
|
|
<a-input placeholder="工序代码" v-model="processCode"></a-input> |
|
|
|
|
|
|
|
</a-form-item> |
|
|
|
|
|
|
|
</a-col> |
|
|
|
|
|
|
|
<a-col :xl="6" :lg="7" :md="8" :sm="24"> |
|
|
|
|
|
|
|
<a-form-item label="工序名称"> |
|
|
|
|
|
|
|
<a-input placeholder="工序名称" v-model="processName"></a-input> |
|
|
|
|
|
|
|
</a-form-item> |
|
|
|
|
|
|
|
</a-col> |
|
|
|
|
|
|
|
<a-col :xl="6" :lg="7" :md="8" :sm="24"> |
|
|
|
|
|
|
|
<a-form-model-item label="企业" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="enterpriseId"> |
|
|
|
|
|
|
|
<j-select-depart v-model="enterpriseId" placeholder="请输入企业名称" /> |
|
|
|
|
|
|
|
</a-form-model-item> |
|
|
|
|
|
|
|
</a-col> |
|
|
|
<a-col :xl="6" :lg="7" :md="8" :sm="24"> |
|
|
|
<a-col :xl="6" :lg="7" :md="8" :sm="24"> |
|
|
|
<span style="float: left;overflow: hidden;" class="table-page-search-submitButtons"> |
|
|
|
<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="searchQuery" icon="search">查询</a-button> |
|
|
@ -312,6 +327,9 @@ export default { |
|
|
|
//参数 |
|
|
|
//参数 |
|
|
|
loadRouteType: false, |
|
|
|
loadRouteType: false, |
|
|
|
styleId: "", |
|
|
|
styleId: "", |
|
|
|
|
|
|
|
processCode:'', |
|
|
|
|
|
|
|
processName:'', |
|
|
|
|
|
|
|
enterpriseId:'', |
|
|
|
dictOptions: {}, |
|
|
|
dictOptions: {}, |
|
|
|
superFieldList: [], |
|
|
|
superFieldList: [], |
|
|
|
} |
|
|
|
} |
|
|
@ -378,8 +396,18 @@ export default { |
|
|
|
param.pageNo = this.ipagination.current; |
|
|
|
param.pageNo = this.ipagination.current; |
|
|
|
param.pageSize = this.ipagination.pageSize; |
|
|
|
param.pageSize = this.ipagination.pageSize; |
|
|
|
param.styleId = this.styleId; |
|
|
|
param.styleId = this.styleId; |
|
|
|
|
|
|
|
param.enterpriseId=this.enterpriseId; |
|
|
|
|
|
|
|
param.processCode=this.processCode; |
|
|
|
|
|
|
|
param.processName=this.processName; |
|
|
|
return filterObj(param); |
|
|
|
return filterObj(param); |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
searchReset() { |
|
|
|
|
|
|
|
this.styleId = '' |
|
|
|
|
|
|
|
this.processCode = '' |
|
|
|
|
|
|
|
this.processName = '' |
|
|
|
|
|
|
|
this.enterpriseId = '' |
|
|
|
|
|
|
|
this.loadData(1); |
|
|
|
|
|
|
|
}, |
|
|
|
getSuperFieldList() { |
|
|
|
getSuperFieldList() { |
|
|
|
let fieldList = []; |
|
|
|
let fieldList = []; |
|
|
|
fieldList.push({type: 'string', value: 'processCode', text: '工序代码', dictCode: ''}) |
|
|
|
fieldList.push({type: 'string', value: 'processCode', text: '工序代码', dictCode: ''}) |
|
|
|