Orerec.vue 852 Bytes
Newer Older
taojinrui committed
1 2
<template>
  <div class="eibs-tab">
taojinrui committed
3
    <c-col :span="24">
nanrui committed
4
      <c-istream-table :list="stmData.data" :columns="stmData.columns"></c-istream-table>
taojinrui committed
5
    </c-col>
taojinrui committed
6 7 8
  </div>
</template>
<script>
taojinrui committed
9
import Api from "~/service/Api";
taojinrui committed
10
import commonProcess from "~/mixin/commonProcess";
taojinrui committed
11 12
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Cptrel/Event";
taojinrui committed
13 14

export default {
taojinrui committed
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {
      stmData: {
        columns: [
          '3 1 "操作类型" 280',
          '2 2 "操作柜员" 280',
          '4 3 "交易名称" 280',
          '0 4 "进入交易时间" 304 20 30 1',
          '1 5 "操作时间" 204 20 30 1',
        ],
        data: [],
      },
    };
  },
  methods: { ...Event },
nanrui committed
33
  created: function () { },
taojinrui committed
34
};
taojinrui committed
35 36
</script>
<style>
nanrui committed
37

taojinrui committed
38
</style>