step.vue 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <template>
  2. <view>
  3. <view class="steps">
  4. <image :src="cirimg" class="cirimg"></image>
  5. <view class="stepr">
  6. <view class="tit">会议签到打卡</view>
  7. <view class="time">
  8. <image :src="qtime"></image>
  9. <view>14:47 签到成功</view>
  10. </view>
  11. <view class="adr">
  12. <image :src="qadrimg"></image>
  13. <view>安徽省合肥市蜀山区高薪技术产业开发区黄山 路59号时代数码港</view>
  14. </view>
  15. </view>
  16. </view>
  17. </view>
  18. </template>
  19. <script>
  20. export default {
  21. props:{
  22. datalist: {
  23. type: Array,
  24. default () {
  25. return []
  26. }
  27. },
  28. },
  29. data() {
  30. return {
  31. qadrimg: require("@/work/static/images/meeting/qadr.png"),
  32. cirimg: require("@/work/static/images/meeting/cir.png"),
  33. qtime: require("@/work/static/images/meeting/qtime.png"),
  34. }
  35. },
  36. onLoad(e) {
  37. },
  38. methods: {
  39. }
  40. }
  41. </script>
  42. <style scoped lang="scss">
  43. .steps{
  44. display: flex;align-items: flex-start;position: relative;
  45. &::after{content: '';width: 2rpx;height: 100%;background: #DADADA;position: absolute;left: 8rpx;top: 16rpx;}
  46. .cirimg{width: 16rpx;height: 16rpx;margin-right: 22rpx;flex: 0 0 auto;margin-top: 8rpx;}
  47. .stepr{
  48. .tit{font-weight: bold;font-size: 24rpx;color: #343434;margin-bottom: 22rpx;}
  49. .time{display: flex;align-items: flex-start;margin-bottom: 10rpx;padding-left: 14rpx;
  50. image{width: 20rpx;height: 20rpx;margin-right: 20rpx;flex: 0 0 auto;margin-top: 7rpx;}
  51. view{font-weight: 400;font-size: 26rpx;color: #343434;}
  52. }
  53. .adr{display: flex;align-items: flex-start;padding-left: 14rpx;
  54. image{width: 16rpx;height: 18rpx;margin-right: 22rpx;flex: 0 0 auto;margin-top: 7rpx;}
  55. view{font-weight: 400;font-size: 26rpx;color: #343434;}
  56. }
  57. }
  58. }
  59. </style>