genjin.vue
2.04 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<template>
<div style="background-color:#f7f7f7;padding:10px 10px;">
<div class="zhuti">
<div style="height:58px;line-height:58px;">
<div style="color:#0006"> <span>商户寻租管理</span> <span style="padding:0 5px;">></span> <span
style="color:#000000e6">跟进日志</span></div>
</div>
<!-- 搜索 -->
<div class="formSearch">
<el-form :inline="true" :model="formSel">
<el-form-item label="年月">
<el-date-picker style="width: 100%;" v-model="formSel.yytime" value-format="yyyy-MM"
type="month" placeholder="选择日期">
</el-date-picker>
</el-form-item>
</el-form>
<div style="width: 15%;">
<el-button
style="background-color: #3F9B6A;color: #fff"
@click="onSubmit"
>查询
</el-button>
<el-button
class="buttonHover"
style="color: #606266;border: 1px solid #dddfe5;background-color: #fff;"
@click="resetting"
>重置
</el-button>
</div>
</div>
<div style="margin-bottom:20px;">
<el-button style="background-color: #3F9B6A;color: #fff;padding:8px 15px;" icon="el-icon-circle-plus-outline"
@click="addbuss">新增</el-button>
</div>
<div>
<el-calendar v-model="value">
</el-calendar>
</div>
</div>
</div>
</template>
<script>
export default {
data() {
return {
formSel:{
yytime:''
},
value: new Date()
}
},
created() {
},
mounted() {},
methods: {
addbuss(){
},
onSubmit(){
},
resetting(){
},
}
}
</script>
<style lang="scss" scoped>
::v-deep .el-calendar button-group {
display: none;
}
::v-deep .el-calendar-table:not(.is-range)td.next{display: none;}
::v-deep .el-calendar-table:not(.is-range)td.prev{visibility:hidden;}
</style>