1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <template>
- <view class="meet">
- <view class="mtop">
- <view class="tit">潜山市政协委员会内部会议</view>
- <view class="ftxt">
- <text>会议地点</text>
- <view>二楼会议室</view>
- </view>
- <view class="ftxt">
- <text>会议时间</text>
- <view class="co1d">2024-03-23 15:00</view>
- </view>
- <view class="ftxt">
- <text>备注信息</text>
- <view>备注信息备注信息备注信息备注信息备注信息备注信息备注信息备注信息备注信息</view>
- </view>
- </view>
- <view class="mtop madr">
- <view class="tit">当前位置</view>
- <view class="madra">
- <image :src="adrimg"></image>
- <view>安徽省合肥市蜀山区高薪技术产业开发区黄山路59号 时代数码港</view>
- </view>
- <view class="madrb">
- <view class="time">14:47:16</view>
- <view class="mqian">参会打卡</view>
- </view>
- <view class="tips flexcc">
- <image :src="choseimg"></image>
- <view>您已进入签到范围</view>
- </view>
- <view class="madrc">
- <!-- 步骤条 -->
- <meet-step></meet-step>
- </view>
-
- </view>
- </view>
- </template>
- <script>
- import meetStep from "@/work/components/meeting/step.vue"
- export default{
- components:{meetStep},
- data(){
- return{
- adrimg:require("@/work/static/images/meeting/adr.png"),
- choseimg:require("@/work/static/images/meeting/chose.png"),
- recordList:[{tit:'123'}]
- }
- },
- onLoad(e) {
-
- },
- methods:{
-
- }
- }
- </script>
- <style scoped lang="scss">
- .meet{padding: 34rpx 24rpx;
- .mtop{width: 100%;background: #FFFFFF;box-shadow: 0px 0px 14rpx 0px rgba(153,152,152,0.39);
- border-radius: 10rpx;padding: 48rpx 40rpx 28rpx;margin-bottom: 30rpx;
- &.madr{padding: 48rpx 34rpx 28rpx;}
- .tit{font-weight: bold;font-size: 30rpx;color: #343434;margin-bottom: 36rpx;}
- .ftxt{display: flex;align-items: flex-start;margin-bottom: 20rpx;flex:0 1 auto;min-width: 50%;
- text{font-weight: bold;font-size: 26rpx;color: #CACACA;flex: 0 0 auto;min-width: 104rpx;text-align-last: justify;}
- view{flex: 1;color: #343434;font-size: 26rpx;margin-left: 20rpx;line-height: 34rpx;}
- }
- }
- .madra{display: flex;align-items: flex-start;margin-bottom: 56rpx;
- image{width: 24rpx;height: 26rpx;margin-right: 12rpx;flex: 0 0 auto;margin-top: 4rpx;}
- view{font-weight: 400;font-size: 26rpx;color: #222327;}
- }
- .madrb{
- width: 368rpx;height: 194rpx;background: #1D64E2;box-shadow: 0px 0px 10rpx 0px #6296F2;margin: 0 auto 34rpx;
- border-radius: 98rpx;display: flex;align-items: center;flex-direction: column;justify-content: center;
- .time{font-weight: bold;font-size: 30rpx;color: #FFFFFF;margin-bottom: 10rpx;}
- .mqian{font-weight: 500;font-size: 26rpx;color: #FFFFFF;}
- }
- .tips{margin-bottom: 52rpx;
- image{width: 20rpx;height: 20rpx;margin-right: 14rpx;}
- view{font-weight: 400;font-size: 26rpx;color: #666666;}
- }
- .madrc{padding-left: 34rpx;}
-
- }
- </style>
|