张晓波
2023-09-19 164694c47c35d6654df69b533e8dbf8b5423efc5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<template>
    <view class="position_details">
        <view class="position_details_headers">{{detailPosName}}</view>
        <view class="position_details_contents">{{detailDection}}</view>
    </view>
</template>
 
<script>
    export default{
        data(){
            return{
                detailDection:'',//职责详情
                detailPosName:"",//职责名称
            }
        },
        onLoad(options) {
            this.detailDection = options.posDesc
            this.detailPosName = options.posName
        },
        methods:{}
    }
</script>
 
<style scoped lang="scss">
    .position_details{
        height: 100vh;
        background-color: #FFFFFF;
        padding: 15px;
        .position_details_headers{
            font-size: 17px;
            color: #333333;
            font-weight: bold;
            text-align: center;
            margin-bottom: 15px;
        }
        .position_details_contents{
            color: #666666;
            font-size: 16px;
            line-height: 30px;
            letter-spacing: 2px;
            text-indent: 36px;
        }
    }
</style>