|
@@ -149,7 +149,7 @@ export default {
|
|
|
}
|
|
|
],
|
|
|
options: {
|
|
|
- stripe: true, // 斑马纹
|
|
|
+ stripe: false, // 斑马纹
|
|
|
mutiSelect: true, // 多选框
|
|
|
index: false, // 显示序号, 多选则 mutiSelect
|
|
|
loading: false, // 表格动画
|
|
@@ -220,7 +220,7 @@ export default {
|
|
|
}
|
|
|
],
|
|
|
resultOptions: {
|
|
|
- stripe: true, // 斑马纹
|
|
|
+ stripe: false, // 斑马纹
|
|
|
mutiSelect: true, // 多选框
|
|
|
index: false, // 显示序号, 多选则 mutiSelect
|
|
|
loading: false, // 表格动画
|
|
@@ -366,7 +366,7 @@ export default {
|
|
|
const item = allAir.find((item) => item.id === this.form.aircraftId)
|
|
|
this.form.aircraftType = item.parentId
|
|
|
this.currentSortieNo = row.sortieNo
|
|
|
- this.beginExecute()
|
|
|
+ this.beginExecute(row)
|
|
|
},
|
|
|
|
|
|
partIdSelect(node) {
|
|
@@ -407,7 +407,7 @@ export default {
|
|
|
},
|
|
|
|
|
|
submit() {
|
|
|
- this.beginExecute()
|
|
|
+ this.beginExecute(row)
|
|
|
},
|
|
|
|
|
|
selection(val) {
|
|
@@ -432,7 +432,7 @@ export default {
|
|
|
return newUrl
|
|
|
},
|
|
|
|
|
|
- async beginExecute() {
|
|
|
+ async beginExecute(row) {
|
|
|
this.progressVisible = true
|
|
|
|
|
|
let myTimer = setInterval(() => {
|
|
@@ -446,6 +446,7 @@ export default {
|
|
|
}, 30)
|
|
|
|
|
|
try {
|
|
|
+ this.form.dataId = row.id
|
|
|
const res = await executeFault(this.form)
|
|
|
clearInterval(myTimer)
|
|
|
if (res?.code === 200) {
|