移动端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

109 lines
3.1 KiB

  1. <template>
  2. <div class="app-container">
  3. <van-nav-bar
  4. title="投票"
  5. left-arrow
  6. @click-left="$router.back(-1)"
  7. >
  8. <template #right>
  9. <van-image src=""></van-image>
  10. </template>
  11. </van-nav-bar>
  12. <van-row style="margin-top: 20px">
  13. <van-col span="20" offset="2">
  14. <H3 style="line-height: 20px;">活动主题活动主题活动主题活动主题</H3>
  15. </van-col>
  16. </van-row>
  17. <van-row style="margin-top: 10px">
  18. <van-col span="20" offset="2">
  19. <h4 style="color: #878787;line-height: 20px;">活动描述活动描述活动描述</h4>
  20. </van-col>
  21. </van-row>
  22. <van-row style="margin-top: 10px">
  23. <van-col span="9" offset="2">
  24. <van-image
  25. width="12"
  26. height="12"
  27. style="display: inline-block;"
  28. src="../../../static/images/onlineHome/vote1.png"
  29. />
  30. <p style="display: inline-block;color:#1D6FE9 ">实名</p>
  31. <van-image
  32. width="12"
  33. height="12"
  34. style="display: inline-block;"
  35. src="../../../static/images/onlineHome/vote1.png"
  36. />
  37. <p style="display: inline-block;color:#1D6FE9 ">单选</p>
  38. <van-image
  39. width="12"
  40. height="12"
  41. style="display: inline-block;"
  42. src="../../../static/images/onlineHome/vote1.png"
  43. />
  44. <p style="display: inline-block;color:#1D6FE9 ">多选</p>
  45. </van-col>
  46. <van-col span="8" offset="5">
  47. <van-image
  48. width="12"
  49. height="12"
  50. style="display: inline-block;"
  51. src="../../../static/images/onlineHome/vote.png"
  52. />
  53. <p style="display: inline-block">3人已参与</p>
  54. </van-col>
  55. </van-row>
  56. <van-checkbox-group v-model="result" style="margin-top: 20px">
  57. <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);">
  58. <van-cell title="选项1">
  59. <template #icon>
  60. <van-image
  61. fit="contain"
  62. height="18"
  63. style="margin-right: 10px"
  64. src="../../../static/images/onlineHome/home3.png"
  65. />
  66. </template>
  67. <van-checkbox name="a" style="float: right"/>
  68. </van-cell>
  69. <van-row>
  70. <van-col span="15" :offset="2" style=" margin-top: 7px;">
  71. <van-progress :percentage="87" :show-pivot="false"/>
  72. </van-col>
  73. <van-col span="5" :offset="2">
  74. 57票 87%
  75. </van-col>
  76. </van-row>
  77. </van-cell-group>
  78. </van-checkbox-group>
  79. <onlineHomeIndex></onlineHomeIndex>
  80. </div>
  81. </template>
  82. <script>
  83. import onlineHomeIndex from "../onlineHomeIndex";
  84. export default {
  85. components: {
  86. onlineHomeIndex
  87. },
  88. name: "homePoll",
  89. data() {
  90. return {
  91. activeName: 'a',
  92. list: [],
  93. loading: false,
  94. finished: false,
  95. result:[],
  96. };
  97. },
  98. }
  99. </script>
  100. <style scoped>
  101. >>>.van-cell::after {
  102. border-bottom: none;
  103. }
  104. </style>