优化小程序菜单管理功能

This commit is contained in:
gxwebsoft
2024-06-03 10:59:02 +08:00
parent e3fb9ba283
commit 62bd0f7e36
16 changed files with 1282 additions and 56 deletions

View File

@@ -30,17 +30,16 @@
dictCode?: string;
}>(),
{
placeholder: '请选择服务器厂商'
placeholder: '请选择支付方式'
}
);
// 字典数据
const options = ref<SelectProps['options']>([
{ value: 'wxPay', label: '微信支付', icon: 'WechatOutlined' },
{ value: 'aliPay', label: '支付宝支付', icon: 'AlipayCircleOutlined' },
{ value: 'balancePay', label: '余额支付', icon: 'PayCircleOutlined' },
{ value: 'yearCardPay', label: '年卡支付', icon: 'IdcardOutlined' },
{ value: 'icCardPay', label: 'IC卡支付', icon: 'IdcardOutlined' }
{ value: 0, label: '余额支付', key: 'balancePay', icon: 'PayCircleOutlined' },
{ value: 1, label: '微信支付', key: 'wxPay', icon: 'WechatOutlined' },
{ value: 2, label: '会员卡支付',key: 'userCardPay', icon: 'IdcardOutlined' },
{ value: 3, label: '支付宝支付',key: 'aliPay', icon: 'AlipayCircleOutlined' }
]);
/* 更新选中数据 */