Errp.vue 3.41 KB
Newer Older
jianglong committed
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 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
<template>
  <div class="eibs-tab">
    
        <el-form
          class="m-table-search-form"
          ref="paramsForm"
          
          label-position="right"
          label-width="110px"
          size="small"
        >
         <!--line1-->
          <el-row>
            <c-col :span="24" style=""> 

              <c-col :span="20">
                <el-form-item label="起止日期" style="width: 100%">
                  <c-col :span="11">
                    <c-date-picker
                      type="date"
                      v-model="model.begdat"
                      value-format="yyyy-MM-dd"
                      style="width: 100%"
                      placeholder="请选择From"
                    ></c-date-picker>
                  </c-col>
                  <c-col :span="2" style="text-align: center">
                    <label style="display: inline-block; width: 100%">-</label>
                  </c-col>
                  <c-col :span="11">
                    <c-date-picker
                      type="date"
                      v-model="model.enddat"
                      value-format="yyyy-MM-dd"
                      style="width: 100%"
                      placeholder="请选择Until"
                    ></c-date-picker>
                  </c-col>
                </el-form-item>
              </c-col>
           

              <c-col :span="4">
              <template>
                <c-checkbox
                @change="open"
                v-model="model.allflg"
                style="float: right; text-align: center"
                >全部内容</c-checkbox
                >
              </template>
              </c-col>
        
            </c-col>
                
          <c-col :span="24" style="text-align: right;height:36.8px">
            <el-button
              type="primary"
              icon="el-icon-search"
              size="small"
              @click="onSerbut"
              >查询</el-button
            >
            
          </c-col>
           
          </el-row>

        </el-form>
      <!-- </template>
    </c-list-search> -->

    <c-col :span="24" style="">
      <div style="border-bottom: 10px solid rgb(232, 232, 232)">
      </div>
    </c-col>


    <el-row>
      <c-col :span="24" style="">
        <c-istream-table :list="stmData.data" :columns="stmData.columns" style="width:100%" :showButtonFlg="true">
          
        </c-istream-table>
      </c-col>
    </el-row>

   
  </div>
</template>
<script>
import Api from "~/service/Api";
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Boprcv/Event";

export default {
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {
      searchToggle:false,
      stmData: {
        columns: [
          //{index:3,position:3,width:110,pattern:'date',label:'日期'},
          //{index:4,position:4,width:100,pattern:'code',label:'状态',code:this.codes.relstaEN},
          '0 1 "文件名称" 800 ',
          '1 2 "处理日期" 200',
          '2 3 "状态" 200'
        ],
        data: [],
      },
    };
  },
  methods: { ...Event ,
  
    },
  created: function () {
    this.model.bopcfg.indir = "/sstf/data/wsbdata/";
  },

  

};
</script>
<style scoped>
.eibs-tab >>> .m-table-search{
  border-bottom: 0;
}
.eibs-tab >>> .m-table-search-operation-top {
  width: calc(95.833333% + 9px);
}
</style>