Sptroup.vue 943 Bytes
Newer Older
潘际乾 committed
1 2
<template>
  <div class="eibs-tab">
潘际乾 committed
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
		<c-col :span="22" :offset="1">
			<c-istream-table :list="tableData" :coluc-istream-tablemns="tableColumns"></c-istream-table>
		</c-col>

		<c-col :span="22" :offset="1">
			<c-col :span="12">
				<c-button size="small" type="primary" @click="onDisp">
					Display
				</c-button>
			</c-col>

			<c-col :span="12">
				<c-button size="small" type="primary" @click="onExi">
					E&xit
				</c-button>
			</c-col>
		</c-col>

潘际乾 committed
21 22 23
  </div>
</template>
<script>
潘际乾 committed
24
import Api from "~/service/Api";
wangren committed
25
import commonProcess from "~/mixin/commonProcess";
潘际乾 committed
26 27
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Sptrou/Event";
潘际乾 committed
28 29

export default {
潘际乾 committed
30 31
  inject: ["root"],
  props: ["model", "codes"],
wangren committed
32
  mixins: [commonProcess],
潘际乾 committed
33 34 35 36 37 38
  data() {
    return {
			tableColumns: []
		};
  },
	computed: {
潘际乾 committed
39
		tableData() {
潘际乾 committed
40 41 42 43 44 45
			return [];
		}
	},
  methods: { ...Event },
  created: function() {},
};
潘际乾 committed
46
</script>
潘际乾 committed
47
<style></style>