diff --git a/src/utils/shop.ts b/src/utils/shop.ts index 3d06db9..d0f281c 100644 --- a/src/utils/shop.ts +++ b/src/utils/shop.ts @@ -11,15 +11,15 @@ export function getPayType(index?: number): any { }, { value: 2, - label: '积分' - }, - { - value: 3, label: '支付宝' }, + { + value: 3, + label: '银联支付' + }, { value: 4, - label: '现金' + label: '现金支付' }, { value: 5, @@ -27,64 +27,19 @@ export function getPayType(index?: number): any { }, { value: 6, - label: '会员卡' + label: '免费' + }, + { + value: 7, + label: '积分支付' + }, + { + value: 8, + 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[index]?.label || ''; } return payType; } diff --git a/src/views/shop/shopOrder/index.vue b/src/views/shop/shopOrder/index.vue index becf541..805de9e 100644 --- a/src/views/shop/shopOrder/index.vue +++ b/src/views/shop/shopOrder/index.vue @@ -88,14 +88,27 @@