查询
{{ dyName }}
{{ xlName }}
{{ termTotalNum }}
{{ scope.row.termList.length }}
{{
((scope.row.termList.length / termTotalNum) * 100).toFixed(2) +
"%"
}}
{{
scope.row.termList.filter(
(term) => parseInt(term.uploads, 10) > 0
).length
}}
{{
(
(scope.row.termList.filter(
(term) => parseInt(term.uploads, 10) > 0
).length /
termTotalNum) *
100
).toFixed(2) + "%"
}}
{{
scope.row.termList.filter(
(term) =>
parseInt(term.uploads, 10) >=
(parseInt(formdata.picNum, 10) *
parseInt(formdata.norGraphRate.replace("%", ""), 10)) /
100
).length
}}
{{
(
(scope.row.termList.filter(
(term) =>
parseInt(term.uploads, 10) >=
(parseInt(formdata.picNum, 10) *
parseInt(formdata.norGraphRate.replace("%", ""), 10)) /
100
).length /
termTotalNum) *
100
).toFixed(2) + "%"
}}