index.vue 1.47 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 58 59 60 61 62
<template>
  <div class="eContainer">
    <c-page title="货币查询">
      <el-form :model="model" ref="modelForm" label-width="120px" label-position="right" size="small">
        <!--PD000039 -->
        <c-tabs v-model="tabVal" ref="elment" type="card">
          <el-tab-pane label="币种查询" name="infsea">
            <c-content>
              <m-infsea :model="model" ref="infsea" />
            </c-content>
          </el-tab-pane> 
        <!-- <el-tab-pane label="货币" name="currency">
            <c-content>
              <m-currency :model="model" ref="currency" />
            </c-content>
          </el-tab-pane> -->
        </c-tabs>
      </el-form>
    </c-page>
  </div>
</template>

<script>
import Utils from "~/utils";
import CodeTable from "~/config/CodeTable"
// import commonProcess from "~/mixin/commonProcess"
// import commonFuncs from "~/mixin/commonFuncs";
import Cur, { Pattern } from "./Cur.js";

import Infsea from "./Infsea";
// import Currency from "./Currency";

import { queryDetailById, add, edit, deleteById } from "~/service/manage/cur.js";

export default {
  name: "StaticsDblcur",
  components: {
    "m-infsea": Infsea,
    // "m-currency": Currency,
  },
  provide() {
    return {
      // root: this,
    };
  },
  // mixins: [commonProcess, commonFuncs],
  data() {
    return {
      tabVal: "infsea",
      model: new Cur().data,
      rules: Pattern,
      codes: {
        ...CodeTable,
      },
    };
  },
};
</script>

<style>

</style>