[update] 联调企标详情中的企标评价

This commit is contained in:
lideqin
2023-09-22 11:48:53 +08:00
parent 7592e2f010
commit dee6e28a33
4 changed files with 6 additions and 5 deletions
@@ -391,7 +391,7 @@ export default {
},
initData (id) {
this.confirmLoading = true
getScoreDetail({ id: id }).then(res => {
getScoreDetail(id).then(res => {
if (res.success) {
this.scoreData = res.result
this.nameArr = Object.keys(this.scoreData)
@@ -256,7 +256,8 @@ export default {
}
// pdf预览
if (canPreview && FILE_TYPE_PDF.includes(fileSuffix)) {
const url = previewPdf(file.response.result.id)
const url = previewPdf(file.id)
console.log(url)
window.open(url)
return
}
@@ -302,7 +302,7 @@ export default {
},
initData (standardNumber) {
this.confirmLoading = true
detailEvaluate({ standardNumber: standardNumber }).then(res => {
detailEvaluate(standardNumber).then(res => {
if (res.success) {
this.scoreData = res.result
this.nameArr = Object.keys(this.scoreData)