Mt299.vue 1.64 KB
Newer Older
fukai committed
1 2
<template>
  <div class="eibs-tab">
wangweidong 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 33 34 35 36 37 38 39 40 41 42 43 44 45
    <!-- S0000010 : Reference -->
    <!-- S0000011 : Related Reference -->
    <!-- S0000012 : Narrative -->

    <el-row>
      <c-col :span="24">
        <!-- S0000008 : Reference -->

        <c-col :span="8">
          <c-form-item :label="参考号" prop="ftdgrp.rec.ownref">
            <c-input
              v-model="model.ftdgrp.rec.ownref"
              maxlength="16"
              :placeholder="请输入参考号"
            ></c-input>
          </c-form-item>
        </c-col>
        <!-- S0000009 : Related Reference -->

        <c-col :span="8">
          <c-form-item :label="相关参考号" prop="relref">
            <c-input
              v-model="model.relref"
              maxlength="16"
              :placeholder="请输入相关参考号"
            ></c-input>
          </c-form-item>
        </c-col>
        <!-- S0000006 : Narrative -->

        <c-col :span="8">
          <c-form-item :label="描述" prop="narblk">
            <c-input
              type="textarea"
              v-model="model.narblk"
              maxlength="35"
              show-word-limit
              :placeholder="请进行描述"
            ></c-input>
          </c-form-item>
        </c-col>
      </c-col>
    </el-row>
fukai committed
46 47 48
  </div>
</template>
<script>
wangweidong committed
49
import Api from "~/service/Api";
fukai committed
50
import commonProcess from "~/mixin/commonProcess";
wangweidong committed
51 52
import CodeTable from "~/config/CodeTable";
import Event from "../event/Event";
fukai committed
53 54

export default {
wangweidong committed
55 56 57 58 59 60 61 62 63
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {};
  },
  methods: { ...Event },
  created: function () {},
};
fukai committed
64 65 66
</script>
<style>
</style>