votePopup.vue 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <template>
  2. <u-popup v-model="show" mode="bottom" width="100%" height="750" border-radius="15" :closeable="true">
  3. <view class="padding-30">
  4. <view class="padding-top-20 text-bold text-xl">投票助力</view>
  5. <view class="padding-20" style="color: #888888;font-size: 22rpx;" >{{}}</view>
  6. <view>
  7. </view>
  8. </view>
  9. </u-popup>
  10. </template>
  11. <script>
  12. export default {
  13. name:"votePopup",
  14. data() {
  15. return {
  16. show: true,
  17. };
  18. },
  19. methods: {
  20. showVote(){
  21. this.show = true;
  22. },
  23. hideVote(){
  24. this.show = false;
  25. }
  26. }
  27. }
  28. </script>
  29. <style lang="scss" scoped>
  30. .sms-alert-container{
  31. padding: 50rpx;
  32. .title{
  33. width: 100%;
  34. text-align: center;
  35. padding: 0rpx 10rpx 50rpx 10rpx ;
  36. font-weight: 500;
  37. color: #353535;
  38. letter-spacing: 2rpx;
  39. font-size: 30rpx;
  40. }
  41. .info-msg{
  42. padding: 5rpx 5rpx 20rpx 5rpx;
  43. color: #353535;
  44. }
  45. .input-box{
  46. display: flex;
  47. align-items: center;
  48. justify-content: left;
  49. border: 1rpx solid #DDDDDD;
  50. border-radius: 10rpx;
  51. margin: 0 0 50rpx 0;
  52. padding: 5rpx 5rpx 5rpx 30rpx;
  53. }
  54. .input-content{
  55. width: 66%;
  56. }
  57. .code-button{
  58. width: 34%;
  59. border-left: 1rpx solid #DDDDDD;text-align: center;
  60. }
  61. }
  62. </style>