');
    // 名称
    html.push('| ');
    if (node.cid) {
        html.push('  ', node.name);
    } else {
        html.push('');
        html.push(arr.indexOf(node) === arr.length - 1 ? '└' : '├');
        html.push('');
        //html.push('', node[c.field], '');
        html.push('', node.name, '');
    }
    html.push('');
    // 计量期数
    html.push(' | ');
    if (!node.cid) {
        html.push(node.lastStage ? '第' + node.lastStage.order + '期' : '台账');
    }
    html.push('');
    // 累计合同计量
    html.push(' | ');
    const sum = node.lastStage ? ZhCalc.add(node.total_price, node.lastStage.end_qc_tp) : node.total_price;
    html.push(node.sum_tp ? node.sum_tp : '');
    html.push('');
    // 截止本期累计完成/本期完成/未完成
    html.push(' | ');
    if (node.lastStage) {
        html.push(getProgressHtml(node.sum_tp, node.pre_gather_tp, node.gather_tp));
    } else {
        html.push('');
    }
    html.push('');
    html.push(' | 
');
    if (node.children) {
        for (const c of node.children) {
            html.push(recursiveGetTenderNodeHtml(c, node.children, node.sort_id));
        }
    }
    return html.join('');
}
// 根据TenderTree数据获取Html代码
function getTenderTreeHtml () {
    if (tenderTree.length > 0) {
        const html = [];
        html.push('