payments.js 382 B

1234567891011121314151617
  1. export default [{
  2. description: "(商家仅支持在线支付)",
  3. disabled_reason: "",
  4. id: 1,
  5. is_online_payment: true,
  6. name: "在线支付",
  7. promotion: [],
  8. select_state: 1,
  9. }, {
  10. description: "(商家不支持货到付款)",
  11. disabled_reason: "商家仅支持在线支付",
  12. id: 2,
  13. is_online_payment: false,
  14. name: "货到付款",
  15. promotion: [],
  16. select_state: -1,
  17. }]