Cips2.vue 3.67 KB
Newer Older
panziyi committed
1
<template>
hewei committed
2 3 4 5
  <div class="eibs">
    <!-- ------------------左侧------------------>
    <c-col :span="12" style="padding-right: 20px">
      <c-col :span="24">
panziyi committed
6
        <c-form-item :label="$t('trnmod.SG000227')" prop="trnmod.reconebch">
hewei committed
7
          <c-input  v-model="model.trnmod.reconebch" maxlength="35"  :placeholder="$t('other.please_enter')+$t('trnmod.SG000227')"></c-input>
panziyi committed
8
        </c-form-item>
hewei committed
9 10 11
      </c-col>

      <c-col :span="24">
panziyi committed
12
        <c-form-item label="附言" prop="trnmod.commen">
hewei committed
13
          <c-input type="textarea" v-model="model.trnmod.commen" maxlength="30" show-word-limit :placeholder="$t('other.please_enter')+'附言'" ></c-input>
panziyi committed
14
        </c-form-item>
hewei committed
15 16 17 18 19 20 21 22 23 24 25 26 27
      </c-col>

    </c-col>

    <!-- ------------------右侧------------------>
    <c-col :span="12" style="padding-left: 20px">
      <c-col :span="24">
        <c-form-item :label="$t('trnmod.SG000228')" prop="trnmod.reconebchnam">
          <c-input type="textarea" v-model="model.trnmod.reconebchnam" maxlength="35" show-word-limit :placeholder="$t('other.please_enter')+$t('trnmod.SG000228')" ></c-input>
        </c-form-item>
      </c-col>

      <c-col :span="24">
panziyi committed
28
        <el-form-item label="业务种类" prop="trnmod.bustyp">
hewei committed
29 30 31 32
          <c-select v-model="model.trnmod.bustyp"
                    :code="codes.bustyp"
                    style="width:100%" :placeholder="$t('other.please_enter')+'业务种类'">
          </c-select>
panziyi committed
33
        </el-form-item>
hewei committed
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
      </c-col>
    </c-col>

                             <!-- SG000227 : 收款直接参与者行号 -->
                  
<!--       <c-col :span="12" style="padding-right: 20px">-->
<!--        <c-form-item :label="$t('trnmod.SG000227')" prop="trnmod.reconebch">-->
<!--            <c-input  v-model="model.trnmod.reconebch" maxlength="35"  :placeholder="$t('other.please_enter')+$t('trnmod.SG000227')"></c-input>-->
<!--        </c-form-item>-->
<!--       </c-col>-->
<!--                 &lt;!&ndash; SG000228 : 收款直接参与者名称 &ndash;&gt;-->
<!--                  -->
<!--       <c-col :span="12" style="padding-left: 20px">-->
<!--        <c-form-item :label="$t('trnmod.SG000228')" prop="trnmod.reconebchnam">-->
<!--            <c-input type="textarea" v-model="model.trnmod.reconebchnam" maxlength="35" show-word-limit :placeholder="$t('other.please_enter')+$t('trnmod.SG000228')" ></c-input>-->
<!--        </c-form-item>-->
<!--        </c-col>-->
<!--                 &lt;!&ndash; SG000229 : 附言 &ndash;&gt;-->
<!--                  -->
<!--       <c-col :span="12">-->
<!--        <c-form-item label="附言" prop="trnmod.commen">-->
<!--            <c-input type="textarea" v-model="model.trnmod.commen" maxlength="30" show-word-limit :placeholder="$t('other.please_enter')+'附言'" ></c-input>-->
<!--        </c-form-item>-->
<!--        </c-col>-->
<!--                 &lt;!&ndash; SG000230 : 业务种类 &ndash;&gt;-->
<!--                  -->
<!--       <c-col :span="12">-->
<!--        <el-form-item label="业务种类" prop="trnmod.bustyp">-->
<!--            <c-select v-model="model.trnmod.bustyp" -->
<!--            :code="codes.bustyp"-->
<!--            style="width:100%" :placeholder="$t('other.please_enter')+'业务种类'">-->
<!--              </c-select>-->
<!--        </el-form-item>-->
<!--       </c-col>-->
panziyi committed
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
  </div>
</template>
<script>
import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Bctset/Event"

export default {
    inject: ['root'],
    props:["model","codes"],
    mixins: [commonProcess],
    data(){
        return {

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

    }
}
</script>
<style>

</style>