refactor: 清理代码中的'开源版'说明注释

This commit is contained in:
DaxPay Dev
2026-06-14 10:55:33 +08:00
parent d2aa6397b1
commit 17ff7a35e6
2 changed files with 4 additions and 4 deletions

View File

@@ -74,7 +74,7 @@ const isvAppOptions = computed(() =>
})),
);
/** 加载支付宝服务商应用下拉列表(开源版全局共享,无服务商号隔离) */
/** 加载支付宝服务商应用下拉列表 */
function loadIsvAppList() {
isvAppLoading.value = true;
AlipayIsvAppApi.listAll()

View File

@@ -44,10 +44,10 @@
// 加载状态
const loading = ref(false);
// Step1: 选中的支付产品(开源版:产品主数据默认全可用)
// Step1: 选中的支付产品
const selectedProduct = ref<PayProductResult | null>(null);
// 支付产品列表(开源版:从产品主数据获取,默认全启用)
// 支付产品列表
const productList = ref<PayProductResult[]>([]);
// Transit组件引用
@@ -91,7 +91,7 @@
}
/**
* 加载支付产品列表(开源版:从产品主数据获取,默认全启用)
* 加载支付产品列表
*/
function loadProductList() {
loading.value = true;