特易招,招聘小程序
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.
 
 
 

119 lines
2.0 KiB

<template>
<view class="page">
<navbar title="在线简历"
leftClick
@leftClick="$utils.navigateBack"/>
<view class="box">
<view class="list">
<view class="item"
v-for="(item, index) in list"
:key="index">
<view class="title">
{{ item.title }}
</view>
<view class="tagList">
<view :class="{act : i == item.index}"
@click="clickTag(item, i)" v-for="(t, i) in item.tag"
:key="t">
{{ t }}
</view>
</view>
</view>
</view>
<uv-textarea
v-model="form.content"
count
:maxlength="300"
autoHeight
placeholder="请输入详细介绍"></uv-textarea>
<view class="uni-color-btn">
发布
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
list: [
{
title: '您希望从事的工种',
tag: ['电工', '焊工', '叉车', '其他'],
index: 0,
},
{
title: '您希望从事的工作区域',
tag: ['长沙'],
index: 0,
},
{
title: '您目前所属的年龄段',
tag: ['18岁~35岁', '35岁~45岁', '45岁~50岁', '50岁以上'],
index: 0,
},
{
title: '您希望从事的工作性质',
tag: ['全职', '临时工', ],
index: 0,
},
],
form : {}
}
},
methods: {
}
}
</script>
<style scoped lang="scss">
.page{
background-color: #fff;
min-height: 100vh;
.box{
padding: 30rpx;
.list {
.item {
margin-top: 20rpx;
.title {
font-weight: 900;
font-size: 30rpx;
}
.tagList {
display: flex;
flex-wrap: wrap;
padding: 10rpx 0;
view {
background: rgba($uni-color, 0.1);
padding: 10rpx 20rpx;
margin: 10rpx;
border-radius: 10rpx;
font-size: 26rpx;
}
.act {
color: #fff;
background: $uni-color;
}
}
}
}
/deep/ .uv-textarea{
background-color: rgba($uni-color, 0.1) !important;
min-height: 400rpx;
}
}
}
</style>