|
|
@ -126,7 +126,7 @@ |
|
|
|
</div> |
|
|
|
<el-checkbox v-if="row.parameter === 'CHECK_BOX'" |
|
|
|
v-model="row.actvalue" |
|
|
|
:disabled="row.status !== 40" |
|
|
|
:disabled="row.status !== 40 || row.status === 80" |
|
|
|
@change="editCheck(row)" /> |
|
|
|
</template> |
|
|
|
</vxe-table-column> |
|
|
@ -147,7 +147,7 @@ |
|
|
|
<vxe-table-column field="action" :title="getColumnName('action')" width="100" show-overflow> |
|
|
|
<template v-slot="{ row }"> |
|
|
|
<!--父订单状态40可编辑--> |
|
|
|
<vxe-button type="text" :disabled="row.status === 40 && row.parameter === 'CHECK_BOX'" icon="el-icon-edit-outline" @click="editEvent(row)" /> |
|
|
|
<vxe-button type="text" :disabled="(row.status === 40 && row.parameter === 'CHECK_BOX') || row.status === 80" icon="el-icon-edit-outline" @click="editEvent(row)" /> |
|
|
|
<!-- <vxe-button type="text" :disabled="row.status !== 40" icon="el-icon-edit-outline" @click="editEvent(row)" /> --> |
|
|
|
</template> |
|
|
|
</vxe-table-column> |
|
|
@ -434,7 +434,17 @@ export default { |
|
|
|
} |
|
|
|
}) |
|
|
|
this.getList() |
|
|
|
} |
|
|
|
} else { |
|
|
|
// 已完成 |
|
|
|
await this.setValstData(row.maintwoid) |
|
|
|
if (this.valstData.length > 0) { |
|
|
|
this.rowData = row |
|
|
|
this.open = true |
|
|
|
} else { |
|
|
|
this.open = true |
|
|
|
return |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
/** 搜索按钮操作 */ |
|
|
|
handleQuery() { |
|
|
|