- 添加 .editorconfig 文件统一代码风格 - 添加 .env.development 和 .env.example 环境配置文件 - 添加 .eslintignore 和 .eslintrc.js 代码检查配置 - 添加 .gitignore 版本控制忽略文件配置 - 添加 .prettierignore 格式化忽略配置 - 添加隐私协议HTML文件 - 添加API密钥管理组件基础结构
91 lines
1.5 KiB
TypeScript
91 lines
1.5 KiB
TypeScript
// 支付方式
|
|
export function getPayType(index?: number): any {
|
|
const payType = [
|
|
{
|
|
value: 0,
|
|
label: '余额支付'
|
|
},
|
|
{
|
|
value: 1,
|
|
label: '微信支付'
|
|
},
|
|
{
|
|
value: 2,
|
|
label: '积分'
|
|
},
|
|
{
|
|
value: 3,
|
|
label: '支付宝'
|
|
},
|
|
{
|
|
value: 4,
|
|
label: '现金'
|
|
},
|
|
{
|
|
value: 5,
|
|
label: 'POS机'
|
|
},
|
|
{
|
|
value: 6,
|
|
label: '会员卡'
|
|
}
|
|
// {
|
|
// value: 7,
|
|
// label: 'VIP年卡',
|
|
// },
|
|
// {
|
|
// value: 8,
|
|
// label: 'VIP次卡',
|
|
// },
|
|
// {
|
|
// value: 9,
|
|
// icon: 'IdcardOutlined',
|
|
// label: 'IC月卡',
|
|
// },
|
|
// {
|
|
// value: 10,
|
|
// icon: 'IdcardOutlined',
|
|
// label: 'IC年卡',
|
|
// },
|
|
// {
|
|
// value: 11,
|
|
// icon: 'IdcardOutlined',
|
|
// label: 'IC次卡',
|
|
// },
|
|
// {
|
|
// value: 12,
|
|
// icon: '',
|
|
// label: '免费',
|
|
// },
|
|
// {
|
|
// value: 13,
|
|
// icon: 'IdcardOutlined',
|
|
// label: 'VIP充值卡',
|
|
// },
|
|
// {
|
|
// value: 14,
|
|
// icon: 'IdcardOutlined',
|
|
// label: 'IC充值卡',
|
|
// },
|
|
// {
|
|
// value: 15,
|
|
// icon: '',
|
|
// label: '积分支付',
|
|
// },
|
|
// {
|
|
// value: 16,
|
|
// icon: 'IdcardOutlined',
|
|
// label: 'VIP季卡',
|
|
// },
|
|
// {
|
|
// value: 17,
|
|
// icon: 'IdcardOutlined',
|
|
// label: 'IC季卡',
|
|
// },
|
|
];
|
|
if (index) {
|
|
return payType[index].label || '';
|
|
}
|
|
return payType;
|
|
}
|