更新源

This commit is contained in:
tloook 2023-07-28 18:22:53 +08:00
parent 6d959299f6
commit 27d2ed2c04
2 changed files with 5 additions and 3 deletions

View File

@ -1 +1 @@
3.9.47beta17 3.9.47beta18

View File

@ -31,7 +31,8 @@ var rule = {
d.push({ d.push({
title: pdfh(it, 'h2&&Text'), title: pdfh(it, 'h2&&Text'),
desc: pdfh(it, '.me-auto&&Text') + '分 / ' + pdfh(it, '.small&&Text'), desc: pdfh(it, '.me-auto&&Text') + '分 / ' + pdfh(it, '.small&&Text'),
pic_url: pd(it, '.card-img&&style'), // pic_url: pd(it, '.card-img&&style'),
pic_url: /!'/.test(pd(it, '.card-img&&style'))?pd(it, '.card-img&&style'):pd(it, '.card-img&&style').replaceAll("'",""),
url: pd(it, 'a&&href') url: pd(it, 'a&&href')
}); });
}) })
@ -46,7 +47,8 @@ var rule = {
d.push({ d.push({
title: pdfh(it, 'h2&&Text'), title: pdfh(it, 'h2&&Text'),
desc: pdfh(it, '.me-auto&&Text') + '分 / ' + pdfh(it, '.small&&Text'), desc: pdfh(it, '.me-auto&&Text') + '分 / ' + pdfh(it, '.small&&Text'),
pic_url: pdfh(it, '.card-img&&style'), // pic_url: pdfh(it, '.card-img&&style'),
pic_url: /!'/.test(pd(it, '.card-img&&style'))?pd(it, '.card-img&&style'):pd(it, '.card-img&&style').replaceAll("'",""),
url: pd(it, 'a&&href') url: pd(it, 'a&&href')
}); });
}) })