Browse Source

plm 项目目

master
ruanqi 1 year ago
parent
commit
996bb71ebb
  1. 20
      src/views/modules/project/projectInfo/com_project_toolApplyCation.vue

20
src/views/modules/project/projectInfo/com_project_toolApplyCation.vue

@ -339,14 +339,18 @@
}, },
searchTable(){ searchTable(){
searchProjectToolApplyDetail(this.searchData).then(({data}) => {
//
if (data && data.code == 0) {
this.dataList = data.rows
} else {
this.dataList = [];
}
});
if(this.searchData.orderRef1==null||this.searchData.orderRef1===''){
this.dataList = [];
}else {
searchProjectToolApplyDetail(this.searchData).then(({data}) => {
//
if (data && data.code == 0) {
this.dataList = data.rows
} else {
this.dataList = [];
}
});
}
}, },
createExportData() { createExportData() {

Loading…
Cancel
Save