Cips3.vue 4.3 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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
<template>
  <div class="eibs-tab">
    <!-- S0000499 : COV付款人组织机构代码 -->
    <!-- S0000470 : 明细业务总笔数 -->

    <c-col :span="12">
      <c-form-item :label="$t('cipmod.S0000470')" prop="trnmod.cipmod.mxywbs">
        <c-input v-model="model.trnmod.cipmod.mxywbs" :placeholder="$t('other.please_enter')+$t('cipmod.S0000470')"></c-input>
      </c-form-item>
    </c-col>
    <!-- S0000468 : 发起直接参与者行号 -->

    <c-col :span="12">
      <c-form-item :label="$t('cipmod.S0000468')" prop="trnmod.cipmod.fqzyhh">
        <c-input v-model="model.trnmod.cipmod.fqzyhh" maxlength="35" :placeholder="$t('other.please_enter')+$t('cipmod.S0000468')"></c-input>
      </c-form-item>
    </c-col>
    <!-- S0000500 : COV付款人常驻国家(地区)代码 -->
    <!-- S0000471 : 明细业务总金额 -->

    <c-col :span="12">
      <c-form-item :label="$t('cipmod.S0000471')" prop="trnmod.cipmod.mxywje">
        <c-input v-model="model.trnmod.cipmod.mxywje" :placeholder="$t('other.please_enter')+$t('cipmod.S0000471')"></c-input>
      </c-form-item>
    </c-col>
    <!-- S0000469 : 接收直接参与者行号 -->

    <c-col :span="12">
      <c-form-item :label="$t('cipmod.S0000469')" prop="trnmod.cipmod.jszyhh">
        <c-input v-model="model.trnmod.cipmod.jszyhh" maxlength="35" :placeholder="$t('other.please_enter')+$t('cipmod.S0000469')"></c-input>
      </c-form-item>
    </c-col>
    <!-- S0000501 : COV付款非银行支付机构地址1 -->
    <!-- S0000472 : 明细业务标识号 -->

    <c-col :span="12">
      <c-form-item :label="$t('cipmod.S0000472')" prop="trnmod.cipmod.mxywsh">
        <c-input v-model="model.trnmod.cipmod.mxywsh" maxlength="35" :placeholder="$t('other.please_enter')+$t('cipmod.S0000472')"></c-input>
      </c-form-item>
    </c-col>
    <!-- S0000502 : COV付款非银行支付机构地址2 -->
    <!-- S0000473 : 付款人组织机构代码 -->
    <!-- S0000482 : 收款人组织机构代码 -->
    <!-- S0000503 : COV付款非银行支付机构地址3 -->
    <!-- S0000474 : 付款人常驻国家(地区)代码 -->
    <!-- S0000483 : 收款人常驻国家(地区)代码 -->
    <!-- S0000504 : COV付款非银行支付机构地址4 -->
    <!-- S0000475 : 付款非银行支付机构地址1 -->
    <!-- S0000484 : 收款非银行支付机构地址1 -->
    <!-- S0000505 : COV付款非银行支付机构地址5 -->
    <!-- S0000476 : 付款非银行支付机构地址2 -->
    <!-- S0000485 : 收款非银行支付机构地址2 -->
    <!-- S0000506 : COV付款非银行支付机构地址6 -->
    <!-- S0000477 : 付款非银行支付机构地址3 -->
    <!-- S0000486 : 收款非银行支付机构地址3 -->
    <!-- S0000507 : COV付款非银行支付机构地址7 -->
    <!-- S0000478 : 付款非银行支付机构地址4 -->
    <!-- S0000487 : 收款非银行支付机构地址4 -->
    <!-- S0000479 : 付款非银行支付机构地址5 -->
    <!-- S0000488 : 收款非银行支付机构地址5 -->
    <!-- S0000508 : COV收款人组织机构代码 -->
    <!-- S0000480 : 付款非银行支付机构地址6 -->
    <!-- S0000489 : 收款非银行支付机构地址6 -->
    <!-- S0000509 : COV收款人常驻国家(地区)代码 -->
    <!-- S0000481 : 付款非银行支付机构地址7 -->
    <!-- S0000490 : 收款非银行支付机构地址7 -->
    <!-- S0000510 : COV收款非银行支付机构地址1 -->
    <!-- S0000491 : 订单描述1 -->
    <!-- S0000511 : COV收款非银行支付机构地址2 -->
    <!-- S0000492 : 订单描述2 -->
    <!-- S0000512 : COV收款非银行支付机构地址3 -->
    <!-- S0000493 : 订单描述3 -->
    <!-- S0000513 : COV收款非银行支付机构地址4 -->
    <!-- S0000494 : 订单描述4 -->
    <!-- S0000514 : COV收款非银行支付机构地址5 -->
    <!-- S0000495 : 订单描述5 -->
    <!-- S0000515 : COV收款非银行支付机构地址6 -->
    <!-- S0000496 : 订单描述6 -->
    <!-- S0000516 : COV收款非银行支付机构地址7 -->
    <!-- S0000497 : 订单描述7 -->
    <!-- S0000517 : 订单描述 -->
    <!-- S0000498 : 订单描述8 -->
  </div>
</template>
<script>
import event from "../event";

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