@uxda/appkit 4.3.23 → 4.3.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.cursor/rules/nutshell.mdc +2166 -0
- package/.cursor/rules/project.mdc +209 -0
- package/.cursor/skills/appkit-build-update-component-rules/SKILL.md +49 -0
- package/{COMPONENT_USAGE.md → Appkit/347/273/204/344/273/266/344/275/277/347/224/250/350/247/204/345/210/231.md} +212 -11
- package/README.md +8 -1
- package/dist/index.js +3 -31
- package/package.json +1 -1
- package/src/payment/components/RechargeView.vue +1 -3
- package/src/payment/components/TradeView.vue +2 -4
|
@@ -218,7 +218,7 @@ onMounted(() => {
|
|
|
218
218
|
const $http = useHttp({ Appcode: props.headerApp, Tenant: props.tenant })
|
|
219
219
|
$http.get<any[]>(endpoints.获取增值权益类目, {
|
|
220
220
|
rightCode: props.app === 'corporateStar' ? 'riskQueryCompany' : 'riskQueryMulti',
|
|
221
|
-
scene: isWechat() ? '' : 'APP'
|
|
221
|
+
scene: isWechat() && props.headerApp ? '' : 'APP'
|
|
222
222
|
}).then((res: any) => {
|
|
223
223
|
balance.value = res.balance
|
|
224
224
|
amounts.value = res.paymentCaseConfigVOS
|
|
@@ -352,10 +352,8 @@ function proceedWechatPayment() {
|
|
|
352
352
|
function getChannelCode() {
|
|
353
353
|
if (isWechat()) {
|
|
354
354
|
return 'centergzh';
|
|
355
|
-
} else if (isAlipay() || isAndroid() || (isIOS() && !isChrome() && !isSafari())) {
|
|
356
|
-
return 'YundouZfb';
|
|
357
355
|
} else {
|
|
358
|
-
return '
|
|
356
|
+
return 'YundouZfb';
|
|
359
357
|
}
|
|
360
358
|
}
|
|
361
359
|
|