diff --git a/src/views/oem/oemOrderSettlement/components/inReview.vue b/src/views/oem/oemOrderSettlement/components/inReview.vue index 62d42304..6aa3fb4c 100644 --- a/src/views/oem/oemOrderSettlement/components/inReview.vue +++ b/src/views/oem/oemOrderSettlement/components/inReview.vue @@ -46,7 +46,9 @@ export default { }, approvalType:1, showDialog:false, - searchParams:{}, + searchParams:{ + approvalStatusList:['1','2','5'] + }, selectionList:[], option:{ height: 'auto', @@ -137,13 +139,48 @@ export default { }, { label: '审核状态', - prop: 'approvalStatus', + prop: 'approvalStatusList', sortable: true, filterable: true, span: 24, width: 120, search:true, + hide:true, + type:'select', + multiple:true, + dicData:[ + { + label:"待校对", + value:'1' + }, + { + label:"校对中", + value:'2' + }, + { + label:"待审核", + value:'5' + }, + { + label:"审核通过", + value:'3' + }, + { + label:"审核不通过", + value:'4' + }, + ] + }, + { + label: '审核状态', + prop: 'approvalStatus', + sortable: true, + filterable: true, + span: 24, + width: 120, + search:false, type:'select', + // multiple:true, dicData:[ { label:"待校对", @@ -249,6 +286,10 @@ export default { }, searchReset(){ this.query = { + approvalStatusList:['1','2','5'] + } + this.searchParams = { + approvalStatusList:['1','2','5'] } this.onLoad() }, @@ -289,6 +330,8 @@ export default { current:this.page.currentPage, size:this.page.pageSize, ...this.query, + approvalStatusList:this.query && this.query.approvalStatusList && typeof(this.query.approvalStatusList) == 'object' ? + this.query.approvalStatusList.join(',') : this.query.approvalStatusList } approvalList(params).then(res =>{ this.data = res.data.data.records diff --git a/src/views/oem/oemOrderSettlement/components/proofreadingAndReview.vue b/src/views/oem/oemOrderSettlement/components/proofreadingAndReview.vue index 2e0b8dd3..3ae239d8 100644 --- a/src/views/oem/oemOrderSettlement/components/proofreadingAndReview.vue +++ b/src/views/oem/oemOrderSettlement/components/proofreadingAndReview.vue @@ -25,21 +25,21 @@ - + - - + + - + - - - - - - + + + + + + diff --git a/src/views/qualityManagement/inspectionArchiving/ERecord/printDialog.vue b/src/views/qualityManagement/inspectionArchiving/ERecord/printDialog.vue index 9f0664b5..38dd09fb 100644 --- a/src/views/qualityManagement/inspectionArchiving/ERecord/printDialog.vue +++ b/src/views/qualityManagement/inspectionArchiving/ERecord/printDialog.vue @@ -9,8 +9,8 @@
热表分厂质量记录卡
-->
JONHON受控
-
热表分厂质量记录卡
-
表号:
+
热表分厂质量记录卡
+
表号:
@@ -61,6 +99,7 @@ export default { currentPage: 1, total: 0, }, + search:{}, query:{}, option: { height: 'auto', @@ -119,23 +158,39 @@ export default { // }, column: [ { - label: '工序', + label:'工序', prop: 'ppsId', labelWidth: 150, + search:true, + hide:true, + span: 24, + rules: [ + { + required: true, + message: '请选择工序', + trigger: 'click', + }, + ], + }, + { + label: '工序', + prop: 'ppsName', + labelWidth: 150, // bind: 'bsProcedureSet.ppsName', - search: true, + search: false, sortable: 'custom', width: 150, span: 24, - type: 'select', + // type: 'select', filterable: true, remote: true, - dicUrl:`/api/blade-desk/bsProcessSet/list?name={{key}}`, - props:{ - label: 'name', - value: 'id', - res: 'data.records', - }, + display:false, + // dicUrl:`/api/blade-desk/bsProcessSet/list?name={{key}}`, + // props:{ + // label: 'name', + // value: 'id', + // res: 'data.records', + // }, rules: [ { required: true, @@ -329,7 +384,9 @@ export default { this.onLoad(this.page); }, searchChange(params, done) { - this.query = params; + console.log('params----------',params) + console.log('search----------',this.search) + this.query = this.search; // this.page.currentPage = 1; this.onLoad(); done();