<template> <div class="contract" :style="{background:'url('+'../../static/bbj1@3x.png'+')'}"> <div class="content1"> <div class="wrap1"></div> <div class="wrap2">待签署合同</div> <div class="wrap3"> <image src="../../static/zu567@3x.png"></image> </div> </div> <div class="content2"> <div class="wrap1">合同名称</div> <div class="wrap2">合同编号</div> <div class="wrap3">签署倒计时</div> </div> <div class="content3"> <div class="wrap1"> <div class="wrap1_1">合同的名称</div> <div class="wrap1_2">937329883</div> <div class="wrap1_3"><div class="wrap1_3_1">剩余23:59:59</div></div> </div> </div> <tabbar :current="2"></tabbar> </div> </template> <script> import tabbar from "../../components/uiq-tabbar/uiq-tabbar.vue"; export default { name: "index", components: {tabbar} } </script> <style scoped lang="scss"> .contract{ box-sizing: border-box; padding-top: 46rpx; padding-left: 30rpx; padding-right: 30rpx; background-size: cover; width: 100vw; height: 100vh; .content3{ margin-top: 20rpx; .wrap1{ border-radius: 20rpx; height: 108rpx; background: #fff; display: flex; align-items: center; .wrap1_1{ flex: 1 1 0rpx; font-size: 28rpx; display: flex; justify-content: center; align-items: center; flex-grow: 1; } .wrap1_2{ flex: 1 1 0rpx; color: #808080; font-size: 24rpx; display: flex; justify-content: center; align-items: center; flex-grow: 1; } .wrap1_3{ flex: 1 1 0rpx; display: flex; justify-content: center; align-items: center; .wrap1_3_1{ display: flex; justify-content: center; align-items: center; width: 208rpx; border-radius: 20rpx; height: 56rpx; background:#76C458 ; color: #fff; font-size: 24rpx; } } } } .content2{ margin-top: 46rpx; display: flex; border-radius: 20rpx; height: 70rpx; background: #76C458; .wrap1{ color: #fff; font-size: 28rpx; display: flex; justify-content: center; align-items: center; flex: 1 1 0rpx; } .wrap2{ color: #fff; font-size: 28rpx; display: flex; justify-content: center; align-items: center; flex: 1 1 0rpx; } .wrap3{ color: #fff; font-size: 28rpx; display: flex; justify-content: center; align-items: center; flex: 1 1 0rpx; } } .content1{ display: flex; justify-content: space-between; .wrap1{ width: 120rpx; height: 20rpx; } .wrap2{ color: #4E964D; font-size: 32rpx; } .wrap3{ image{ width: 132rpx; height: 52rpx; } } } } </style>