diff --git a/src/main/resources/static/pages/evaluate/outsourcerEvaluation/evaluationForm.html b/src/main/resources/static/pages/evaluate/outsourcerEvaluation/evaluationForm.html index b60e9cb..60e77d2 100644 --- a/src/main/resources/static/pages/evaluate/outsourcerEvaluation/evaluationForm.html +++ b/src/main/resources/static/pages/evaluate/outsourcerEvaluation/evaluationForm.html @@ -265,47 +265,12 @@ let innerHtml = '' dialogLabelList.forEach((e, index) => { - if (tableList[rowIndex].tableList && tableList[rowIndex].tableList.length > 0) { - - if (tableList[rowIndex].tableList[index].name && tableList[rowIndex].tableList[index].path) { - fileList.push({ - name: tableList[rowIndex].tableList[index].name, - path: tableList[rowIndex].tableList[index].path, - }) - - uploadDom.push('#uploadBtn' + index) - innerHtml += `
-
${e.title}
- - -
${tableList[rowIndex].tableList[index].name}
-
` - } else { - fileList.push({ - name: '', - path: '', - }) - uploadDom.push('#uploadBtn' + index) - innerHtml += `
-
${e.title}
- -
- ` - } - - - } else { - fileList.push({ - name: '', - path: '', - }) - uploadDom.push('#uploadBtn' + index) - innerHtml += `
+ fileList.push({ + name: '', + path: '', + }) + uploadDom.push('#uploadBtn' + index) + innerHtml += `
${e.title}
` - } - })