Merge branch 'fix_foton_20240619' into 'master'
Fix foton 20240619 See merge request laws-foton-slrs/foton-laws-system-front!209
This commit is contained in:
@@ -193,7 +193,8 @@
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
label="操作"
|
||||
width="240"
|
||||
width="200"
|
||||
fixed="right"
|
||||
align="center">
|
||||
<template slot-scope="scope">
|
||||
<el-button class="common-button-primary" size="mini" type="primary" @click="itemEdit(scope.row)">编辑</el-button>
|
||||
@@ -829,13 +830,13 @@
|
||||
for( let a = 0; a < this.itemList.length; a++) {
|
||||
for ( let b = 0; b < this.idList.length; b++) {
|
||||
if (this.itemList[a].id === this.idList[b]) {
|
||||
this.itemList[a].technicalRequir = this.plForm.technicalRequir
|
||||
this.itemList[a].changePoint = this.plForm.changePoint
|
||||
this.itemList[a].complianceRequir = this.plForm.complianceRequir
|
||||
this.itemList[a].complianceState = this.plForm.complianceState
|
||||
this.itemList[a].newData = this.plForm.newData
|
||||
this.itemList[a].onlineData = this.plForm.onlineData
|
||||
this.itemList[a].applyArctic = this.plForm.applyArctic
|
||||
this.itemList[a].technicalRequir = this.plForm.technicalRequir ||this.itemList[a].technicalRequir
|
||||
this.itemList[a].changePoint = this.plForm.changePoint|| this.itemList[a].changePoint
|
||||
this.itemList[a].complianceRequir = this.plForm.complianceRequir||this.itemList[a].complianceRequir
|
||||
this.itemList[a].complianceState = this.plForm.complianceState||this.itemList[a].complianceState
|
||||
this.itemList[a].newData = this.plForm.newData|| this.itemList[a].newData
|
||||
this.itemList[a].onlineData = this.plForm.onlineData|| this.itemList[a].onlineData
|
||||
this.itemList[a].applyArctic = this.plForm.applyArctic|| this.itemList[a].applyArctic
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+21
-6
@@ -5406,6 +5406,10 @@ export default {
|
||||
formData.menuId = this.parentNode.id
|
||||
}
|
||||
}
|
||||
if(formData.QCDW){
|
||||
let arry=formData.QCDW.split('-')
|
||||
formData.QCDW = arry[arry.length-1]
|
||||
}
|
||||
// 处理我的收藏和个性化标签传参
|
||||
if (this.selectSarMenu.id === 'qbwdsc') {
|
||||
formData.labelMenuId = undefined
|
||||
@@ -5452,12 +5456,23 @@ export default {
|
||||
}else {
|
||||
val = value
|
||||
}
|
||||
advanceSearchVOList.push({
|
||||
connect: 'and',
|
||||
field: item.attrField || '',
|
||||
type: 'like',
|
||||
value: val
|
||||
});
|
||||
if(item.attrField=='QCDW') {
|
||||
let arry= val.split('-')
|
||||
advanceSearchVOList.push({
|
||||
connect: 'and',
|
||||
field: item.attrField || '',
|
||||
type: 'like',
|
||||
value: arry[arry.length-1]
|
||||
});
|
||||
}else{
|
||||
advanceSearchVOList.push({
|
||||
connect: 'and',
|
||||
field: item.attrField || '',
|
||||
type: 'like',
|
||||
value: val
|
||||
});
|
||||
}
|
||||
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user