signin.vue 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <template>
  2. <view class="meet">
  3. <view class="mtop">
  4. <view class="tit">潜山市政协委员会内部会议</view>
  5. <view class="ftxt">
  6. <text>会议地点</text>
  7. <view>二楼会议室</view>
  8. </view>
  9. <view class="ftxt">
  10. <text>会议时间</text>
  11. <view class="co1d">2024-03-23 15:00</view>
  12. </view>
  13. <view class="ftxt">
  14. <text>备注信息</text>
  15. <view>备注信息备注信息备注信息备注信息备注信息备注信息备注信息备注信息备注信息</view>
  16. </view>
  17. </view>
  18. <view class="mtop madr">
  19. <view class="tit">当前位置</view>
  20. <view class="madra">
  21. <image :src="adrimg"></image>
  22. <view>安徽省合肥市蜀山区高薪技术产业开发区黄山路59号 时代数码港</view>
  23. </view>
  24. <view class="madrb">
  25. <view class="time">14:47:16</view>
  26. <view class="mqian">参会打卡</view>
  27. </view>
  28. <view class="tips flexcc">
  29. <image :src="choseimg"></image>
  30. <view>您已进入签到范围</view>
  31. </view>
  32. <view class="madrc">
  33. <!-- 步骤条 -->
  34. <meet-step></meet-step>
  35. </view>
  36. </view>
  37. </view>
  38. </template>
  39. <script>
  40. import meetStep from "@/work/components/meeting/step.vue"
  41. export default{
  42. components:{meetStep},
  43. data(){
  44. return{
  45. adrimg:require("@/work/static/images/meeting/adr.png"),
  46. choseimg:require("@/work/static/images/meeting/chose.png"),
  47. recordList:[{tit:'123'}]
  48. }
  49. },
  50. onLoad(e) {
  51. },
  52. methods:{
  53. }
  54. }
  55. </script>
  56. <style scoped lang="scss">
  57. .meet{padding: 34rpx 24rpx;
  58. .mtop{width: 100%;background: #FFFFFF;box-shadow: 0px 0px 14rpx 0px rgba(153,152,152,0.39);
  59. border-radius: 10rpx;padding: 48rpx 40rpx 28rpx;margin-bottom: 30rpx;
  60. &.madr{padding: 48rpx 34rpx 28rpx;}
  61. .tit{font-weight: bold;font-size: 30rpx;color: #343434;margin-bottom: 36rpx;}
  62. .ftxt{display: flex;align-items: flex-start;margin-bottom: 20rpx;flex:0 1 auto;min-width: 50%;
  63. text{font-weight: bold;font-size: 26rpx;color: #CACACA;flex: 0 0 auto;min-width: 104rpx;text-align-last: justify;}
  64. view{flex: 1;color: #343434;font-size: 26rpx;margin-left: 20rpx;line-height: 34rpx;}
  65. }
  66. }
  67. .madra{display: flex;align-items: flex-start;margin-bottom: 56rpx;
  68. image{width: 24rpx;height: 26rpx;margin-right: 12rpx;flex: 0 0 auto;margin-top: 4rpx;}
  69. view{font-weight: 400;font-size: 26rpx;color: #222327;}
  70. }
  71. .madrb{
  72. width: 368rpx;height: 194rpx;background: #1D64E2;box-shadow: 0px 0px 10rpx 0px #6296F2;margin: 0 auto 34rpx;
  73. border-radius: 98rpx;display: flex;align-items: center;flex-direction: column;justify-content: center;
  74. .time{font-weight: bold;font-size: 30rpx;color: #FFFFFF;margin-bottom: 10rpx;}
  75. .mqian{font-weight: 500;font-size: 26rpx;color: #FFFFFF;}
  76. }
  77. .tips{margin-bottom: 52rpx;
  78. image{width: 20rpx;height: 20rpx;margin-right: 14rpx;}
  79. view{font-weight: 400;font-size: 26rpx;color: #666666;}
  80. }
  81. .madrc{padding-left: 34rpx;}
  82. }
  83. </style>