| | |
| | | ] |
| | | } |
| | | }, |
| | | "libVersion": "3.8.7" |
| | | "libVersion": "3.7.3" |
| | | } |
| | |
| | | <NutRadioGroup v-model="form.ispCode" direction="horizontal" @change="handleIspCodeChange"> |
| | | <BlRadio |
| | | :label="key" |
| | | v-for="(val, key) in BlLifeRecharge.constants.IspCodeText" |
| | | v-for="(val, key) in BlLifeRecharge.constants.IspCodeTextForSelect" |
| | | :key="key" |
| | | >{{ val }}</BlRadio |
| | | > |
| | |
| | | |
| | | async function goPay() { |
| | | try { |
| | | if (form.ispCode === blLifeRecharge.constants.IspCode.dianxin) { |
| | | state.msg = '暂不支持电信号码充值'; |
| | | if (form.ispCode === blLifeRecharge.constants.IspCode.yidong) { |
| | | state.msg = '暂不支持移动号码充值'; |
| | | state.show = true; |
| | | return; |
| | | } |
| | |
| | | |
| | | export const IspCodeText = { |
| | | [IspCode.yidong]: '中国移动', |
| | | // [IspCode.dianxin]: '中国电信', |
| | | [IspCode.dianxin]: '中国电信', |
| | | [IspCode.liantong]: '中国联通', |
| | | }; |
| | | |
| | | export const IspCodeTextForSelect = { |
| | | // [IspCode.yidong]: '中国移动', |
| | | [IspCode.dianxin]: '中国电信', |
| | | [IspCode.liantong]: '中国联通', |
| | | }; |
| | | |