@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.
@@ -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 'distributor';
356
+ return 'YundouZfb';
359
357
  }
360
358
  }
361
359