移动端
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

80 lines
2.1 KiB

  1. <template>
  2. <div>
  3. <van-nav-bar
  4. title="生活缴费"
  5. left-arrow
  6. @click-left="$router.back(-1)"
  7. />
  8. <van-cell-group style="width: 96%;margin:2%;border-radius: 6px;overflow: hidden;padding-top: 10px;padding-bottom: 10px;box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.16);">
  9. <van-cell>
  10. <template #title>
  11. <h2 style="line-height: 20px;color: #1D6FE9">缴费类型</h2>
  12. </template>
  13. </van-cell>
  14. <van-cell is-link>
  15. <template #icon>
  16. <van-image
  17. height="20"
  18. width="20"
  19. src="../../../static/images/onlineHome/afford1.png">
  20. </van-image>
  21. </template>
  22. <template #title>
  23. <p style="margin-left: 10px;line-height: 20px">水费</p>
  24. </template>
  25. </van-cell>
  26. <van-cell is-link>
  27. <template #icon>
  28. <van-image
  29. height="20"
  30. width="20"
  31. src="../../../static/images/onlineHome/afford2.png">
  32. </van-image>
  33. </template>
  34. <template #title>
  35. <p style="margin-left: 10px">电费</p>
  36. </template>
  37. </van-cell>
  38. <van-cell is-link>
  39. <template #icon>
  40. <van-image
  41. height="20"
  42. width="20"
  43. src="../../../static/images/onlineHome/afford3.png">
  44. </van-image>
  45. </template>
  46. <template #title>
  47. <p style="margin-left: 10px">燃气费</p>
  48. </template>
  49. </van-cell>
  50. <van-cell is-link>
  51. <template #icon>
  52. <van-image
  53. height="20"
  54. width="20"
  55. src="../../../static/images/onlineHome/afford4.png">
  56. </van-image>
  57. </template>
  58. <template #title>
  59. <p style="margin-left: 10px">物业费</p>
  60. </template>
  61. </van-cell>
  62. </van-cell-group>
  63. </div>
  64. </template>
  65. <script>
  66. import onlineHomeIndex from "../onlineHomeIndex";
  67. export default {
  68. components: {
  69. onlineHomeIndex
  70. },
  71. name: "livePay"
  72. }
  73. </script>
  74. <style scoped>
  75. </style>