blob: 0f6381b4e43525d07fd1e24834e4f033ee146229 (
plain)
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
45
46
47
48
49
50
|
<template>
<div class="head">
<div class="target-select">
<span style="font-size: 30px;float: left;padding-top: 1%">任务详情</span>
</div>
</div>
</template>
<script>
export default {
name: 'Header',
props: [],
data() {
return {
role_name: ''
}
},
watch: {},
methods: {
// 新增
addRole() {
this.$emit('addRole')
}
}
}
</script>
<style lang="less" scoped>
.head{
width: 95%;
height: 7%;
margin-top: 1%;
margin-left: 2.5%;
text-align: right;
.target-select{
font-size: 10px;
float: left;
margin-top: 0.5%;
display: inline-block;
height: 60%;
width: 10%;
margin-left: 0.5%;
}
.add-btn {
height: 70%;
width: 10%;
color: #ffffff;
}
}
</style>
|