/** * 支付商户与商户池管理权限编码。 * 页面和按钮统一引用这里的常量,后端菜单权限可直接复用同名编码。 * 编码命名参考代理充值页 agent_recharge: 风格。 */ export const PAYMENT_MERCHANT_POOL_PERMISSIONS = { merchantCreate: 'payment_merchant_pool:merchant_create', merchantEdit: 'payment_merchant_pool:merchant_edit', merchantToggle: 'payment_merchant_pool:merchant_toggle', merchantDelete: 'payment_merchant_pool:merchant_delete', merchantDetail: 'payment_merchant_pool:merchant_detail', poolCreate: 'payment_merchant_pool:pool_create', poolEdit: 'payment_merchant_pool:pool_edit', poolToggle: 'payment_merchant_pool:pool_toggle', poolDetail: 'payment_merchant_pool:pool_detail', wechatAuthEdit: 'payment_merchant_pool:wechat_auth_edit' } as const