协议修改

This commit is contained in:
chen wei bo
2025-09-08 19:44:58 +08:00
parent e7cb527ca0
commit d4d3e986b3
17 changed files with 878 additions and 66 deletions
@@ -61,7 +61,7 @@ export class PurchaseConfig extends BaseConfig {
// 获取所有 id
let resultId = [];
for (let one of allId) {
const firstDigit = one.toString()[0];
const firstDigit = one.toString()[0]; // 取首位字符
if (firstDigit === "2") {
resultId.push(one);
}
@@ -76,7 +76,7 @@ export class PurchaseConfig extends BaseConfig {
// 获取所有 id
let resultId = [];
for (let one of allId) {
const firstDigit = one.toString()[0];
const firstDigit = one.toString()[0]; // 取首位字符
if (firstDigit === "3") {
resultId.push(one);
}