Det910.vue 2.78 KB
Newer Older
taojinrui committed
1 2
<template>
  <div class="eibs-tab">
taojinrui committed
3 4 5 6 7
    <!-- =============左边============== -->
    <c-col :span="11">
      <c-col :span="24">
        <c-fullbox>
          <el-form-item label="汇款行(52a)" prop="cpdgrp.rmt.pts.extkey">
wangna committed
8
            <c-input v-model="model.cpdgrp.rmt.pts.extkey" maxlength="16" placeholder="请输入"
9
              @keyup.enter.native="showGridPromptDialog('attp.atd.sbkact')"></c-input>
taojinrui committed
10 11
          </el-form-item>
          <template slot="footer">
12
            <c-button style="margin: 0 10px 0 10px; padding: 0 12px" size="small" type="primary" icon="el-icon-search">
taojinrui committed
13 14
            </c-button>

15
            <c-button style="margin: 0 0" size="small" type="primary" @click="onSndpDet" disabled>
taojinrui committed
16 17 18 19 20 21 22
              详情
            </c-button>
          </template>
        </c-fullbox>
      </c-col>

      <c-col :span="24">
23 24 25
        <el-form-item label="地址信息" prop="cpdgrp.rmt.pts.adrblk">
          <c-input type="textarea" v-model="model.cpdgrp.rmt.pts.adrblk" maxlength="35" show-word-limit
            placeholder="请输入地址信息" rows="4"></c-input>
taojinrui committed
26 27 28 29 30 31
        </el-form-item>
      </c-col>

      <c-col :span="24">
        <c-fullbox>
          <el-form-item label="中间行(56a)" prop="cpdgrp.med.pts.extkey">
wangna committed
32
            <c-input v-model="model.cpdgrp.med.pts.extkey" maxlength="16" placeholder="请输入"
33
              @keyup.enter.native="showGridPromptDialog('attp.atd.sbkact')"></c-input>
taojinrui committed
34 35
          </el-form-item>
          <template slot="footer">
36
            <c-button style="margin: 0 10px 0 10px; padding: 0 12px" size="small" type="primary" icon="el-icon-search">
taojinrui committed
37 38
            </c-button>

39
            <c-button style="margin: 0 0" size="small" type="primary" @click="onSndpDet" disabled>
taojinrui committed
40 41 42 43 44 45 46
              详情
            </c-button>
          </template>
        </c-fullbox>
      </c-col>

      <c-col :span="24">
47 48 49
        <el-form-item label="地址信息" prop="cpdgrp.med.pts.adrblk">
          <c-input type="textarea" v-model="model.cpdgrp.med.pts.adrblk" maxlength="35" show-word-limit
            placeholder="请输入地址信息" rows="4"></c-input>
taojinrui committed
50 51 52 53 54
        </el-form-item>
      </c-col>
    </c-col>
    <!-- ==============右边==================== -->
    <c-col :span="11" :offset="1">
55 56 57
      <el-form-item label="附言" prop="cpdgrp.blk.contag72">
        <c-input type="textarea" v-model="model.cpdgrp.blk.contag72"></c-input>
      </el-form-item>
taojinrui committed
58
    </c-col>
taojinrui committed
59 60 61
  </div>
</template>
<script>
taojinrui committed
62
import Api from "~/service/Api";
taojinrui committed
63
import commonProcess from "~/mixin/commonProcess";
taojinrui committed
64 65
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Cptrep/Event";
taojinrui committed
66 67

export default {
taojinrui committed
68 69 70 71 72 73 74
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {};
  },
  methods: { ...Event },
75
  created: function () { },
taojinrui committed
76
};
taojinrui committed
77 78
</script>
<style>
79

taojinrui committed
80
</style>