Trnptro.vue 1.94 KB
Newer Older
taojinrui committed
1 2
<template>
  <div class="eibs-tab">
taojinrui committed
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
    <c-col :span="24">
      <c-col :span="8">
        <el-form-item label="Reference" prop="">
          <c-input v-model="model.trn.ownref"></c-input>
        </el-form-item>
      </c-col>
      <c-col :span="8">
        <el-form-item label="">
          <c-input v-model="model.trn.objnam"></c-input>
        </el-form-item>
      </c-col>
      <c-col :span="8">
        <el-form-item label="Transaction Key">
          <c-input v-model="model.trn.inr"></c-input>
        </el-form-item>
      </c-col>
    </c-col>

    <c-col :span="24">
      <c-istream-table
        :list="stmData.data"
        :columns="stmData.columns"
      ></c-istream-table>
    </c-col>
    <!-- ============================原码========================================= -->
    <!-- S0000194 : Reference -->
    <!-- S0000195 : Transaction Key -->
    <!-- SF000196 : List of preceding and succeeding transactions with possible dependencies in case of correction / deletion -->

    <!-- <c-col :span="12">
taojinrui committed
33 34 35
        <c-form-item label="TROs for transaction for display" prop="recpan.trostm">
            <c-input  v-model="model.recpan.trostm"  :placeholder="$t('other.please_enter')+'TROs for transaction for display'"></c-input>
        </c-form-item>
taojinrui committed
36
       </c-col>-->
taojinrui committed
37 38 39
  </div>
</template>
<script>
taojinrui committed
40
import Api from "~/service/Api";
taojinrui committed
41
import commonProcess from "~/mixin/commonProcess";
taojinrui committed
42 43
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Cptrel/Event";
taojinrui committed
44 45

export default {
taojinrui committed
46 47 48 49 50 51 52 53 54 55 56 57 58
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {
      stmData: {
        columns: [
          '0 1 "Ident No." 262 ',
          '1 2 "TRN" 150',
          '2 3 "Entry" 250 20 30 1',
          '3 4 "Status" 180 1 0 1 RELSTA',
          '4 5 "Own Reference" 230',
          '5 6 "Object" 250',
taojinrui committed
59

taojinrui committed
60 61 62 63 64 65 66 67
        ],
        data: [],
      },
    };
  },
  methods: { ...Event },
  created: function () {},
};
taojinrui committed
68 69 70
</script>
<style>
</style>