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

wangna committed
24 25 26 27 28 29 30
            <c-button
              style="margin: 0 0"
              size="small"
              type="primary"
              @click="onSndpDet"
              disabled
            >
taojinrui committed
31 32 33 34 35 36 37
              详情
            </c-button>
          </template>
        </c-fullbox>
      </c-col>

      <c-col :span="24">
38
        <el-form-item label="地址信息" prop="cpdgrp.rmt.pts.adrblk">
wangna committed
39 40 41 42 43 44 45 46
          <c-input
            type="textarea"
            v-model="model.cpdgrp.rmt.pts.adrblk"
            maxlength="35"
            show-word-limit
            placeholder="请输入地址信息"
            rows="4"
          ></c-input>
taojinrui committed
47 48 49 50 51
        </el-form-item>
      </c-col>

      <c-col :span="24">
        <c-fullbox>
wangna committed
52 53 54 55 56 57 58
          <el-form-item label="中间行(56A)" prop="cpdgrp.med.pts.extkey">
            <c-input
              v-model="model.cpdgrp.med.pts.extkey"
              maxlength="16"
              placeholder="请输入中间行"
              @keyup.enter.native="showGridPromptDialog('attp.atd.sbkact')"
            ></c-input>
taojinrui committed
59 60
          </el-form-item>
          <template slot="footer">
wangna committed
61 62 63 64 65 66
            <c-button
              style="margin: 0 10px 0 10px; padding: 0 12px"
              size="small"
              type="primary"
              icon="el-icon-search"
            >
taojinrui committed
67 68
            </c-button>

wangna committed
69 70 71 72 73 74 75
            <c-button
              style="margin: 0 0"
              size="small"
              type="primary"
              @click="onSndpDet"
              disabled
            >
taojinrui committed
76 77 78 79 80 81 82
              详情
            </c-button>
          </template>
        </c-fullbox>
      </c-col>

      <c-col :span="24">
83
        <el-form-item label="地址信息" prop="cpdgrp.med.pts.adrblk">
wangna committed
84 85 86 87 88 89 90 91
          <c-input
            type="textarea"
            v-model="model.cpdgrp.med.pts.adrblk"
            maxlength="35"
            show-word-limit
            placeholder="请输入地址信息"
            rows="4"
          ></c-input>
taojinrui committed
92 93 94 95
        </el-form-item>
      </c-col>
    </c-col>
    <!-- ==============右边==================== -->
wangna committed
96
    <c-col :span="12" style="padding-left: 20px">
97 98 99
      <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
100
    </c-col>
taojinrui committed
101 102 103
  </div>
</template>
<script>
taojinrui committed
104
import Api from "~/service/Api";
taojinrui committed
105
import commonProcess from "~/mixin/commonProcess";
taojinrui committed
106 107
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Cptrep/Event";
taojinrui committed
108 109

export default {
taojinrui committed
110 111 112 113 114 115 116
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {};
  },
  methods: { ...Event },
wangna committed
117
  created: function () {},
taojinrui committed
118
};
taojinrui committed
119 120 121
</script>
<style>
</style>