|
|
|
@ -95,6 +95,20 @@ |
|
|
|
min-width="60" |
|
|
|
label="状态"> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column |
|
|
|
prop="effPhaseInDate" |
|
|
|
header-align="left" |
|
|
|
align="left" |
|
|
|
min-width="50" |
|
|
|
label="生效日期"> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column |
|
|
|
prop="effPhaseOutDate" |
|
|
|
header-align="left" |
|
|
|
align="left" |
|
|
|
min-width="50" |
|
|
|
label="失效日期"> |
|
|
|
</el-table-column> |
|
|
|
</el-table> |
|
|
|
|
|
|
|
<el-footer style="height:30px;margin-top:20px;text-align:center"> |
|
|
|
@ -427,6 +441,12 @@ |
|
|
|
}) |
|
|
|
return false; |
|
|
|
} |
|
|
|
if(this.currentRow.status==='Tentative'){ |
|
|
|
this.$alert('Tentative不允许保存!', '错误', { |
|
|
|
confirmButtonText: '确定' |
|
|
|
}) |
|
|
|
return false; |
|
|
|
} |
|
|
|
let inData={ |
|
|
|
site:this.bomData.site, |
|
|
|
codeNo:this.searchData.codeNo, |
|
|
|
|