genjin.vue 2.04 KB
<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>