Ptyp.vue 7.75 KB
Newer Older
1 2 3 4
<template>
  <div class="eibs-tab">  
       
  <!-- ====================左边======================= -->
LiRui committed
5
  <c-col :span="12" style="padding-right: 20px;">   
6 7
    <c-col :span="24">
        <el-form-item
nanrui committed
8
          label="付款人参考号"
9 10 11 12 13 14 15
          prop="bcdgrp.dre.pts.ref"
        >
          <c-input
            
            v-model="model.bcdgrp.dre.pts.ref"
            maxlength="16"
            style="width: 100%"
nanrui committed
16
            placeholder="请输入付款人参考号"
17 18 19 20 21
          ></c-input>
        </el-form-item>
      </c-col>

      <c-col :span="24">
nanrui committed
22
        <el-form-item label="付款人名称" prop="bcdgrp.dre.pts.extkey">
23 24 25 26 27
            <c-fullbox>
          <c-input
            @keyup.enter.native="showGridPromptDialog('bcdgrp.dre.pts.extkey')"
            v-model="model.bcdgrp.dre.pts.extkey"
            maxlength="50"
nanrui committed
28
            placeholder="请输入付款人名称"
29 30 31 32 33 34 35 36 37
            
          ></c-input>
            <template slot="footer">
                <c-button
                style="margin:0 10px 0 10px;padding: 0 12px;"
                  size="small"
                  type="primary"
                 
                >
nanrui committed
38
                <i class="el-icon-info"></i>
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
                </c-button>
                <c-button
                style="margin:0 0"
                  size="small"
                  type="primary"
                  
                  
                >
                  详情
                </c-button>
              </template>
            </c-fullbox>
        </el-form-item>

    </c-col>

    <c-col :span="24">
nanrui committed
56
        <el-form-item label="地址信息" prop="bcdgrp.dre.pts.adrblk">
57 58 59 60 61 62 63
          <c-input
            type="textarea"
            :rows="4"
            v-model="model.bcdgrp.dre.pts.adrblk"
            maxlength="150"
            disabled
            show-word-limit
nanrui committed
64
            placeholder="请输入地址信息"
65 66 67 68 69 70 71
          ></c-input>
        </el-form-item>
      </c-col>
       

       <c-col :span="24">
        <el-form-item
nanrui committed
72
          label="第二代收行参考号"
73 74 75 76 77 78 79 80 81 82 83 84 85
          prop="bcdgrp.co2.pts.ref"
        >
          <c-input
            v-model="model.bcdgrp.co2.pts.ref"
            maxlength="16"
            style="width: 100%"
            placeholder=""
            
          ></c-input>
        </el-form-item>
      </c-col>

      <c-col :span="24">
nanrui committed
86
        <el-form-item label="第二代收行名称" prop="bcdgrp.co2.pts.extkey">
87 88 89 90 91
            <c-fullbox>
          <c-input
            @keyup.enter.native="showGridPromptDialog('bcdgrp.co2.pts.extkey')"
            v-model="model.bcdgrp.co2.pts.extkey"
            maxlength="50"
nanrui committed
92
            placeholder="请输入第二代收行名称"
93 94 95 96 97 98 99 100 101
            
          ></c-input>
            <template slot="footer">
                <c-button
                style="margin:0 10px 0 10px;padding: 0 12px;"
                  size="small"
                  type="primary"
                 
                >
nanrui committed
102
                <i class="el-icon-info"></i>
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
                </c-button>
                <c-button
                style="margin:0 0"
                  size="small"
                  type="primary"
                  
                  
                >
                  详情
                </c-button>
              </template>
            </c-fullbox>
        </el-form-item>

    </c-col>

    <c-col :span="24">
nanrui committed
120
        <el-form-item label="地址信息" prop="bcdgrp.co2.pts.adrblk">
121 122 123 124 125 126 127
          <c-input
            type="textarea"
            :rows="4"
            v-model="model.bcdgrp.co2.pts.adrblk"
            maxlength="50"
            
            show-word-limit
nanrui committed
128
            placeholder="请输入地址信息"
129 130 131 132 133 134 135
          ></c-input>
        </el-form-item>
      </c-col>

    </c-col>  

  <!-- ====================右边======================= -->
LiRui committed
136
  <c-col :span="12" style="padding-left: 20px;">
137 138
    <c-col :span="24">
        <el-form-item
nanrui committed
139
          label="托收行参考号"
140 141 142 143 144 145 146 147 148 149 150 151 152
          prop="bcdgrp.rmi.pts.ref"
        >
          <c-input
            v-model="model.bcdgrp.rmi.pts.ref"
            maxlength="16"
            style="width: 100%"
            placeholder=""
            
          ></c-input>
        </el-form-item>
      </c-col>

      <c-col :span="24">
nanrui committed
153
        <el-form-item label="托收行名称" prop="bcdgrp.rmi.pts.extkey">
154 155 156 157
            <c-fullbox>
          <c-input
            v-model="model.bcdgrp.rmi.pts.extkey"
            maxlength="50"
nanrui committed
158
            placeholder="请输入托收行名称"
159 160 161 162 163 164 165 166 167 168
            @keyup.enter.native="showGridPromptDialog('bcdgrp.rmi.pts.extkey')"

          ></c-input>
            <template slot="footer">
                <c-button
                style="margin:0 10px 0 10px;padding: 0 12px;"
                  size="small"
                  type="primary"
                 
                >
nanrui committed
169
                <i class="el-icon-info"></i>
170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186
                </c-button>
                <c-button
                style="margin:0 0"
                  size="small"
                  type="primary"
                  
                  
                >
                  详情
                </c-button>
              </template>
            </c-fullbox>
        </el-form-item>

    </c-col>

    <c-col :span="24">
nanrui committed
187
        <el-form-item label="地址信息" prop="bcdgrp.rmi.pts.adrblk">
188 189 190 191 192 193 194
          <c-input
            type="textarea"
            :rows="4"
            v-model="model.bcdgrp.rmi.pts.adrblk"
            maxlength="150"
            
            show-word-limit
nanrui committed
195
            placeholder="请输入地址信息"
196 197 198 199 200 201
          ></c-input>
        </el-form-item>
      </c-col>
      
      <c-col :span="24">
        <el-form-item
nanrui committed
202
          label="收款人参考号"
203 204 205 206 207 208 209 210 211 212 213 214 215
          prop="bcdgrp.drr.pts.ref"
        >
          <c-input
            v-model="model.bcdgrp.drr.pts.ref"
            maxlength="16"
            style="width: 100%"
            placeholder=""
            
          ></c-input>
        </el-form-item>
      </c-col>

      <c-col :span="24">
nanrui committed
216
        <el-form-item label="收款人名称" prop="bcdgrp.drr.pts.extkey">
217 218 219 220 221
            <c-fullbox>
          <c-input
          @keyup.enter.native="showGridPromptDialog('bcdgrp.drr.pts.extkey')"
            v-model="model.bcdgrp.drr.pts.extkey"
            maxlength="150"
nanrui committed
222
            placeholder="请输入收款人名称"
223 224 225 226 227 228 229 230 231
            
          ></c-input>
            <template slot="footer">
                <c-button
                style="margin:0 10px 0 10px;padding: 0 12px;"
                  size="small"
                  type="primary"
                 
                >
nanrui committed
232
                <i class="el-icon-info"></i>
233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249
                </c-button>
                <c-button
                style="margin:0 0"
                  size="small"
                  type="primary"
                  
                  
                >
                  详情
                </c-button>
              </template>
            </c-fullbox>
        </el-form-item>

    </c-col>

    <c-col :span="24">
nanrui committed
250
        <el-form-item label="地址信息" prop="bcdgrp.drr.pts.adrblk">
251 252 253 254 255 256 257
          <c-input
            type="textarea"
            :rows="4"
            v-model="model.bcdgrp.drr.pts.adrblk"
            maxlength="50"
            
            show-word-limit
nanrui committed
258
            placeholder="请输入地址信息"
259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292
          ></c-input>
        </el-form-item>
      </c-col>  
    </c-col>             
                      

    
  </div>
</template>
<script>
import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Bctset/Event"
import Ptap from "~/views/Public/Ptap";
export default {
    components: { "c-ptap": Ptap },
    inject: ['root'],
    props:["model","codes"],
    mixins: [commonProcess],
    data(){
        return {

        }
    },
    methods:{...Event},
    created:function(){

    }
}
</script>
<style>

</style>