index.vue 1.09 KB
Newer Older
fukai 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
<template>
  <div class="eContainer">
    <c-page title="费率信息查询">
      <el-form
        :model="model"
        ref="modelForm"
        label-width="120px"
        label-position="right"
        size="small"
      >
        <c-tabs v-model="tabVal" ref="elment" type="card">
          <!--PD000039 -->
          <el-tab-pane label="费率查询" name="infsea">
            <c-content>
              <m-infsea :model="model" ref="infsea" />
            </c-content>
          </el-tab-pane>
        </c-tabs>
      </el-form>
    </c-page>
  </div>
</template>

<script>
import Infsea from "./Infsea";
export default {
  name: "StaticsDblfec",
  components: {
    "m-infsea": Infsea,
  },
  // provide() {
  //     return {
  //         root: this
  //     };
  // },
  data() {
    return {
      tabVal: "infsea",
      model: {
        codFee:"",
        coddscFee:"",
        feepri:"!",
        feepritxt:"",
        objtyp:"",
        objinr:"",
        objcod:"",
        objnam:"",
        pageNum: 1,
        pageSize:PageSize,
        total: 0
      },
    };
  },
};
</script>

<style></style>