You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

66 lines
882 B

3 years ago
<template>
<view class="content">
<view class="header">
<view class="job">
<text>当前岗位:</text> {{job}}
</view>
<view class="code">
<text>岗位编码:</text> {{code}}
</view>
<view class="name">
<text>考官名称:{{name}}</text>
<image src="../../static/logo.png" mode=""></image>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
job:"XXX",
code:"ssss",
name:"FJM"
}
},
methods: {
}
}
</script>
<style lang="scss">
.content{
width: 96vw;
height: 100vh;
margin: 0rpx auto;
}
.header{
width: 100%;
overflow: hidden;
.job{
font-size: 34rpx;
float: left;
margin-right: 30rpx;
}
.code{
float: left;
font-size: 34rpx;
}
.name{
float: right;
text{
}
image{
width: 30rpx;
height: 30rpx;
vertical-align: middle;
}
}
}
</style>