Narp.vue 2.18 KB
Newer Older
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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
<template>
  <div class="eibs-tab">
    <!-- <c-col :span="12">
      <c-button size="small" type="primary" @click="onSav"> 保存 </c-button>
    </c-col>

    <c-col :span="12">
      <c-button size="small" type="primary" @click="onUsrcon">
        用户确认
      </c-button>
    </c-col> -->
    <el-row>
      <c-col :span="12">
        <c-checkbox v-model="model.trnmod.swiadd.nartxtflg">修改</c-checkbox>
      </c-col>
    </el-row>
    <el-row>
      <c-col :span="12">
        <el-form-item label="历史修改" prop="olddidgrp.blk.narhis">
          <c-input
            type="textarea"
            v-model="model.olddidgrp.blk.narhis"
            maxlength="50"
            show-word-limit
            placeholder="请输入Historic Overview of Narratives"
          ></c-input>
        </el-form-item>
      </c-col>
      <c-col :span="12">
        <el-form-item label="内容修改" prop="trnmod.swiadd.nartxt">
          <c-input
            type="textarea"
            v-model="model.trnmod.swiadd.nartxt"
            maxlength="50"
            show-word-limit
            placeholder="请输入Narrative"
          ></c-input>
        </el-form-item>
      </c-col>
    </el-row>

    <!-- <c-col :span="12">
      <c-button size="small" type="primary" @click="onChk"> 检核 </c-button>
    </c-col>

    <c-col :span="12">
      <c-button size="small" type="primary" @click="onUsrchk"> 检核 </c-button>
    </c-col>

    <c-col :span="12">
      <c-button size="small" type="primary" @click="onSyswrnButshw">
        提示信息
      </c-button>
    </c-col>

    <c-col :span="12">
      <c-button size="small" type="primary" @click="onPen"> 暂存 </c-button>
    </c-col>

    <c-col :span="12">
      <c-button size="small" type="primary" @click="onCan"> 退出 </c-button>
    </c-col> -->
  </div>
</template>
<script>
import Api from "~/service/Api";
import CommonProcess from "~/mixin/CommonProcess";
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Ditdla/Event";

export default {
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [CommonProcess],
  data() {
    return {};
  },
  methods: { ...Event },
  created: function () {},
};
</script>
<style>
</style>