<template>
|
|
<view class="page">
|
|
<navbar title="工作详情" leftClick @leftClick="$utils.navigateBack" />
|
|
|
|
<view class="box">
|
|
<view class="title">
|
|
平面设计
|
|
</view>
|
|
|
|
<view class="price">
|
|
6000-11000元
|
|
</view>
|
|
|
|
<view class="line">
|
|
<view>
|
|
<image src="../static/work/address.png" mode=""></image>
|
|
深圳·罗湖区·东门
|
|
</view>
|
|
<view>
|
|
<image src="../static/work/g.png" mode=""></image>
|
|
1-3年
|
|
</view>
|
|
<view>
|
|
<image src="../static/work/x.png" mode=""></image>
|
|
大专
|
|
</view>
|
|
</view>
|
|
|
|
<view class="">
|
|
<userHead/>
|
|
</view>
|
|
|
|
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import userHead from '../components/user/userHead.vue'
|
|
export default {
|
|
components : {
|
|
userHead,
|
|
},
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.page{
|
|
background-color: #fff;
|
|
min-height: 100vh;
|
|
.box{
|
|
padding: 30rpx;
|
|
.title{
|
|
font-size: 34rpx;
|
|
font-weight: 900;
|
|
padding-bottom: 20rpx;
|
|
}
|
|
.price{
|
|
font-size: 30rpx;
|
|
font-weight: 900;
|
|
color: $uni-color;
|
|
}
|
|
.line{
|
|
display: flex;
|
|
font-size: 22rpx;
|
|
color: #666666;
|
|
margin-top: 30rpx;
|
|
image{
|
|
width: 30rpx;
|
|
height: 30rpx;
|
|
}
|
|
&>view{
|
|
margin-right: 50rpx;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|