index.vue 1.28 KB
Newer Older
zhangliding committed
1 2 3 4 5 6
<template>
  <div class="eContainer">
    <c-page title="保函文本查询">
      <el-form
        :model="model"
        ref="modelForm"
zhouqian committed
7
        label-width="140px"
zhangliding committed
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
        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: "StaticsInfatx",
  components: {
    "m-infsea": Infsea,
  },
  provide() {
    return {
      root: this,
    };
  },
  data() {
    return {
      tabVal: "infsea",
      model: {
        // atx
        //保函文本名
		    nam: "",
        //保函文本用途
		    atxcod: "",
        //语言
		    gtxuil: "",
        //保函格式
		    gtxlegfrm: "",
        //保函无责任担保标志
		    gtxexpflg: "",
        //保函包含类型
		    gtxgartyp: "",
        //出具目的
		    gtxpurpos: "",
56
        sealegfrm: "",
zhangliding committed
57 58 59 60 61 62 63 64 65 66 67
        // paging
        pageNum: 1,
        pageSize: 5,
        total: 0
      },
    };
  },
};
</script>

<style></style>