Orerec.vue 1.69 KB
<template>
  <div class="eibs-tab">
    <c-col :span="24">
      <c-istream-table
        :list="stmData.data"
        :columns="stmData.columns"
      ></c-istream-table>
    </c-col>
    <!-- ==================原码====================== -->
    <!-- SG000136 : 操作类型描述 -->
    <!-- SG000155 : 操作流程 -->
    <!-- SG000137 : TRN---Trn created -->

    <!-- <c-col :span="12">
        <c-form-item label="stream of ore records" prop="orestr">
            <c-input  v-model="model.orestr"  :placeholder="$t('other.please_enter')+'stream of ore records'"></c-input>
        </c-form-item>
       </c-col> -->
    <!-- SG000143 : BRK---Break -->
    <!-- SG000138 : COR---Correction -->
    <!-- SG000139 : DEL---Trn deleted -->
    <!-- SG000140 : REL---Trn released -->
    <!-- SG000142 : INC---Message received -->
    <!-- SG000141 : DES---Spt deleted -->
    <!-- SG000144 : SPT---Spt Released -->
    <!-- SG000145 : ROU---ReRounting -->
    <!-- SG000152 : CAN---Order Canceled -->
    <!-- SG000153 : SIG---Signature -->
  </div>
</template>
<script>
import Api from "~/service/Api";
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Cptrel/Event";

export default {
  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 },
  created: function () {},
};
</script>
<style>
</style>