Sprp.vue 1.45 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 55 56 57 58 59
<template>
  <div class="eibs">
    <c-col :span="24" style="padding-top: 20px">

      <c-col :span="24">
        <c-col :span="20">
          <el-form-item prop="ltdgrp.blk.spcrcb">
            <span slot="label">
              <div>Special Payment</div>
              <div>Cond. for</div>
              <div>Bank only (49H)</div>
            </span>
            <c-fullbox>
              <c-input
                      type="textarea"
                      v-model="model.ltdgrp.blk.spcrcb"
                      maxlength="52000"
                      show-word-limit
                      :rows="30"
                      disabled
              ></c-input>
              <!-- <template slot="footer">
              </template> -->
            </c-fullbox>
          </el-form-item>
        </c-col>
        <!-- @click="onSpcrcbButtxmsel" -->
        <c-col :span="4">
          <c-button
                  size="small"
                  style="margin-left: 10px; padding: 0 12px"
                  type="primary"
                  icon="el-icon-more"
                  @click="showGridPromptDialog('letp.spcrcb.buttxmsel', null, null,{TXT: 'ltdgrp.blk.spcrcb'}, {TXT: false},'doxpDialog')"
          >
          </c-button>
        </c-col>

      </c-col>

    </c-col>
  </div>
</template>
<script>

import event from "../event";


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