|
|
|
@ -134,7 +134,8 @@ |
|
|
|
<el-tab-pane label="相关文档" name="inquiryDocument"> |
|
|
|
<div style="height: 100%;overflow: auto;"> |
|
|
|
<oss-components ref="inquiryDocument" label="申请单号" style="margin-top: 5px" height="44vh" :columns="ossColumns" |
|
|
|
:disabled="false" :orderRef1="model.site" :orderRef2="model.objectId" :rfqNo="model.projectNo" :orderRef4="model.buNo" :orderRef5="model.id"> |
|
|
|
:disabled="false" :orderRef1="model.site" :orderRef2="model.objectId" :rfqNo="model.projectNo" |
|
|
|
:orderRef4="model.buNo" :orderRef5="model.id"> |
|
|
|
</oss-components> |
|
|
|
</div> |
|
|
|
</el-tab-pane> |
|
|
|
@ -169,7 +170,7 @@ |
|
|
|
<el-row :gutter="20"> |
|
|
|
<el-col :span="24"> |
|
|
|
<el-form-item label="备注" style="display: block;min-height: 90px"> |
|
|
|
<el-input type="textarea" style="width:103%" :disabled="(modalData.canAuthFlag!=='Y') " :rows="3" |
|
|
|
<el-input type="textarea" style="width:103%" :disabled="(modalData.canAuthFlag!=='Y') " :rows="3" |
|
|
|
v-model="modalData.authHistRemark"></el-input> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
@ -377,7 +378,7 @@ export default { |
|
|
|
requiredCompletionStartDate: '', |
|
|
|
requiredCompletionEndDate: '', |
|
|
|
status: '', |
|
|
|
sstatus:'审核中', |
|
|
|
sstatus: '审核中', |
|
|
|
quoterName: '', |
|
|
|
requesterName: '', |
|
|
|
priorityLevel: '', |
|
|
|
@ -913,28 +914,30 @@ export default { |
|
|
|
getIncomeList() { |
|
|
|
console.log('this.model.projectNo', this.model.projectNo) |
|
|
|
|
|
|
|
let obj = { |
|
|
|
projectNo: this.model.projectNo, |
|
|
|
if (this.model.projectNo) { |
|
|
|
let obj = { |
|
|
|
projectNo: this.model.projectNo, |
|
|
|
} |
|
|
|
queryMachineProjectIncomeList(obj) |
|
|
|
.then(({ data }) => { |
|
|
|
if (data && data.code === 0) { |
|
|
|
this.projectIncome = data.list |
|
|
|
//判断是否全部存在数据 |
|
|
|
//if (this.totalPage > 0) { |
|
|
|
// this.$refs.mainTable.setCurrentRow(this.dataList[0]) |
|
|
|
// this.refreshCurrentTabTable() |
|
|
|
// this.inquiryClickRow(this.dataList[0]) |
|
|
|
//} |
|
|
|
} else { |
|
|
|
this.$message.warning(data.msg) |
|
|
|
} |
|
|
|
this.queryLoading = false |
|
|
|
}) |
|
|
|
.catch((error) => { |
|
|
|
this.$message.error(error) |
|
|
|
this.queryLoading = false |
|
|
|
}) |
|
|
|
} |
|
|
|
queryMachineProjectIncomeList(obj) |
|
|
|
.then(({ data }) => { |
|
|
|
if (data && data.code === 0) { |
|
|
|
this.projectIncome = data.list |
|
|
|
//判断是否全部存在数据 |
|
|
|
//if (this.totalPage > 0) { |
|
|
|
// this.$refs.mainTable.setCurrentRow(this.dataList[0]) |
|
|
|
// this.refreshCurrentTabTable() |
|
|
|
// this.inquiryClickRow(this.dataList[0]) |
|
|
|
//} |
|
|
|
} else { |
|
|
|
this.$message.warning(data.msg) |
|
|
|
} |
|
|
|
this.queryLoading = false |
|
|
|
}) |
|
|
|
.catch((error) => { |
|
|
|
this.$message.error(error) |
|
|
|
this.queryLoading = false |
|
|
|
}) |
|
|
|
}, |
|
|
|
incomeFinished() { |
|
|
|
this.getIncomeList() |
|
|
|
|