Nitdetp.vue 1.76 KB
Newer Older
fukai 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 45 46 47 48 49 50 51 52 53 54
<template>
  <div class="eibs-tab">
    <!-- ======================= 左边 ========================= -->
    <c-col :span="12" style="padding-right: 20px">
      <c-col :span="24">
        <el-form-item label="需求声明" prop="ncdgrp.rec.demstat">
          <c-select v-model="model.ncdgrp.rec.demstat" style="width: 100%" placeholder="请选择需求声明" dbCode="DEMSTT">
          </c-select>
        </el-form-item>
      </c-col>

      <c-col :span="24">
        <el-form-item label="需求声明文本 " prop="clmtxts20">
          <c-input type="textarea" v-model="model.clmtxts20" rows="10" show-word-limit placeholder="请输入需求声明文本 ">
          </c-input>
        </el-form-item>
      </c-col>

      <c-col :span="24">
        <el-form-item label="附加金额附言" prop="ncdgrp.blk.addamtinf">
          <c-input type="textarea" v-model="model.ncdgrp.blk.addamtinf" rows="10" show-word-limit
            placeholder="请输入附加金额附言"></c-input>
        </el-form-item>
      </c-col>
    </c-col>

    <!-- ======================= 右边 ====================== -->
    <c-col :span="12" style="padding-left: 20px">
      <c-col :span="24">
        <el-form-item label="Present. Compl. Det." prop="ncdgrp.blk.presentdet">
          <c-input type="textarea" v-model="model.ncdgrp.blk.presentdet" rows="9" show-word-limit
            placeholder="请输入Present. Compl. Det." :disabled="model.ncdgrp.rec.demstat != 'INCP'"></c-input>
        </el-form-item>
      </c-col>
    </c-col>
  </div>
</template>
<script>
import event from "../event";

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