Trnpan.vue 1.79 KB
Newer Older
唐贵贤 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
<template>
  <div class="eibs-tab">
    <c-col :span="10">
      <c-checkbox v-model="model.infcon.chksubcon"
        >incl. all subcontracts</c-checkbox
      >
    </c-col>

    <c-col :span="12">
      <c-checkbox v-model="model.infcon.chktrnsta"
        >only active transactions</c-checkbox
      >
    </c-col>

    <c-col :span="22">
      <c-row>
        <c-istream-table
          :list="stmData.data"
          :columns="stmData.columns"
          prop="infcon.trnstm"
        >
          <!--el-table-column prop="op" label="OP" width="100">placeholder="请输入display stream"</el-table-column-->
        </c-istream-table>
      </c-row>
      <!--el-form-item
        label="stream for TRN to selected contract"
        prop="infcon.trnstm"
      >
        <c-input
          v-model="model.infcon.trnstm"
          placeholder="请输入stream for TRN to selected contract"
        ></c-input>
      </el-form-item-->
    </c-col>

    <!--c-col :span="12">
        <c-button size="small" type="primary"  @click="onInfconButshw">
            &Display
        </c-button>
       </c-col-->
  </div>
</template>
<script>
import Api from "~/service/Api";
wangren committed
45
import commonProcess from "~/mixin/commonProcess";
唐贵贤 committed
46 47 48 49 50 51
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Infltd/Event";

export default {
  inject: ["root"],
  props: ["model", "codes"],
wangren committed
52
  mixins: [commonProcess],
唐贵贤 committed
53 54 55 56
  data() {
    return {
        stmData: {
        columns: [
唐贵贤 committed
57 58 59 60 61 62 63
          '1 1 \"Transaction Name\" 216 ',
          '8 2 \"Entry\" 216',
          '9 3 \"Status\" 216',
          '11 4 \"Cur.\" 216',
          '12 5 \"Relevant Amount\" 216',
          '3 6 \"Signed\" 216',
          '4 7 \"Trn ID\" 216',
唐贵贤 committed
64 65 66 67 68 69 70 71 72 73 74
        ],
        data: [],
      },
    };
  },
  methods: { ...Event },
  created: function () {},
};
</script>
<style>
</style>