index.vue 840 Bytes
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
<template>
	<div class="eContainer">
		<c-page title="2120对账查询">
			<el-form 
			:model="model"
			ref="modelForm"
			label-width="120px"
			label-position="right"
			size="small"
			>
			<c-tabs v-model="tabVal" ref="elment" type="card">
					<c-content>
						 <m-min :model="model" :codes="codes" />
					</c-content>
			</c-tabs>
			</el-form>
		</c-page>
	</div>

</template>

<script>
import Min from "./min"
import Infanb from "../model"
import event from "../event"
import CodeTable from "~/config/CodeTable";

export default {
	name:"Infanb",
	components:{
		"m-min":Min,
	},
	mixins:[event],
	provide() {
    return {
			root: this,
			activeNames: ["min"]
    };
	},
	data() {
    return {
      tabVal: "min",
			 model: new Infanb().data,
			 codes:{
				 ...CodeTable
			 }
    };
  },
};
</script>
<style>
</style>