优化小程序菜单管理功能
This commit is contained in:
@@ -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' }
|
||||
]);
|
||||
|
||||
/* 更新选中数据 */
|
||||
|
||||
Reference in New Issue
Block a user