🐛删除面额变量错误问题

This commit is contained in:
sunxiaolong
2024-01-07 12:56:23 +08:00
parent 523c861aaf
commit 6263b54129

View File

@@ -146,7 +146,7 @@
} else {
globalSelectedValue = res.data;
for (let i = 0; i < res.data.length; i++) {
$("#mm-select").append(`<option value="${res.data[i].showLabel}">纸面面额:${res.data[i].showLabel} 实际面额:${res.data[i].factLabel}</option>`)
$("#mm-select").append(`<option value="${res.data[i].showLabel}">${res.data[i].factLabel}</option>`)
}
}
},