Files
wehub-resource-sync 9b395f5cc3
E2E Headed Chrome / e2e-headed (macos-15) (push) Has been cancelled
E2E Headed Chrome / e2e-headed (ubuntu-latest) (push) Has been cancelled
E2E Headed Chrome / e2e-headed (windows-latest) (push) Has been cancelled
CI / build (macos-latest) (push) Has been cancelled
CI / build (ubuntu-latest) (push) Has been cancelled
CI / build (windows-latest) (push) Has been cancelled
CI / unit-test (push) Has been cancelled
CI / bun-test (push) Has been cancelled
CI / adapter-test (push) Has been cancelled
CI / smoke-test (macos-latest) (push) Has been cancelled
CI / smoke-test (ubuntu-latest) (push) Has been cancelled
Security Audit / audit (push) Has been cancelled
Build Chrome Extension / build (push) Has been cancelled
Trigger Website Rebuild (Docs Updated) / dispatch (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:39:48 +08:00

37 lines
1.2 KiB
JavaScript

import { cli, Strategy } from '@jackwener/opencli/registry';
cli({
site: 'xiaoe',
name: 'detail',
access: 'read',
description: '小鹅通课程详情(名称、价格、学员数、店铺)',
domain: 'h5.xet.citv.cn',
strategy: Strategy.COOKIE,
args: [
{ name: 'url', required: true, positional: true, help: '课程页面 URL' },
],
columns: ['name', 'price', 'original_price', 'user_count', 'shop_name'],
pipeline: [
{ navigate: '${{ args.url }}' },
{ wait: 5 },
{ evaluate: `(() => {
var vm = (document.querySelector('#app') || {}).__vue__;
if (!vm || !vm.$store) return [];
var core = vm.$store.state.coreInfo || {};
var goods = vm.$store.state.goodsInfo || {};
var shop = ((vm.$store.state.compositeInfo || {}).shop_conf) || {};
return [{
name: core.resource_name || '',
resource_id: core.resource_id || '',
resource_type: core.resource_type || '',
cover: core.resource_img || '',
user_count: core.user_count || 0,
price: goods.price ? (goods.price / 100).toFixed(2) : '0',
original_price: goods.line_price ? (goods.line_price / 100).toFixed(2) : '0',
is_free: goods.is_free || 0,
shop_name: shop.shop_name || '',
}];
})()
` },
],
});