|
|
@ -1712,11 +1712,11 @@ export default { |
|
|
let newRow = Object.assign({}, row) |
|
|
let newRow = Object.assign({}, row) |
|
|
let tds = '' |
|
|
let tds = '' |
|
|
this.dragCol.forEach(e => { |
|
|
this.dragCol.forEach(e => { |
|
|
let td = '<td></td>' |
|
|
|
|
|
|
|
|
let td = '' |
|
|
if (e.prop) { |
|
|
if (e.prop) { |
|
|
if (e.prop == 'sn') { |
|
|
if (e.prop == 'sn') { |
|
|
td = `<td>${i + 1}</td>` |
|
|
td = `<td>${i + 1}</td>` |
|
|
} else if (['isVip', 'isUpload', 'isUploadAppoint', 'isReceiveReport', 'isPushThirdResult'].includes(e.prop)) { |
|
|
|
|
|
|
|
|
} else if (['isReportPrint','isVip', 'isUpload', 'isUploadAppoint', 'isReceiveReport', 'isPushThirdResult'].includes(e.prop)) { |
|
|
if (newRow[e.prop] == 'Y') { |
|
|
if (newRow[e.prop] == 'Y') { |
|
|
td = `<td>√</td>` |
|
|
td = `<td>√</td>` |
|
|
} else { |
|
|
} else { |
|
|
@ -1726,7 +1726,7 @@ export default { |
|
|
if (newRow[e.prop]) { |
|
|
if (newRow[e.prop]) { |
|
|
newRow[e.prop] = `\u200C${newRow[e.prop]}` |
|
|
newRow[e.prop] = `\u200C${newRow[e.prop]}` |
|
|
} |
|
|
} |
|
|
td = `<td>${newRow[e.prop]}</td>` |
|
|
|
|
|
|
|
|
td = `<td>${newRow[e.prop]||''}</td>` |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
if(tds){ |
|
|
if(tds){ |
|
|
|