index.vue 1.07 KB
<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: "StaticsInfact",
  components: {
    "m-infsea": Infsea,
  },
  provide() {
    return {
      root: this,
    };
  },
  data() {
    return {
      tabVal: "infsea",
      model: {
        // act,查询条件的字段
        extkey: "",
        nam: "",
        iban: "",
        typ: "",
        cur: "",
        ptyExtkey:"",
        pageNum: 1,
        pageSize: 5,
        total: 0
      },
    };
  },
};
</script>

<style></style>