<template> <div class="eibs-tab"> <c-col :span="12"> <el-form-item :label="$t('msgp.LT000077')" prop="msgp.msgtyp"> <c-select v-model="model.msgp.msgtyp" style="width:100%" :placeholder="$t('other.please_enter')+$t('msgp.LT000077')"> </c-select> </el-form-item> </c-col> <c-col :span="12"> <c-checkbox v-model="model.msgp.isbnk">{{$t('msgp.FD000178')}}</c-checkbox> </c-col> <c-col :span="12"> <c-form-item :label="$t('msgp.LT000078')" prop="msgp.rcvbnk.pty.extkey"> <c-input v-model="model.msgp.rcvbnk.pty.extkey" maxlength="24" :placeholder="$t('other.please_enter')+$t('msgp.LT000078')"></c-input> </c-form-item> </c-col> <c-col :span="12"> <c-button size="small" type="primary" icon="el-icon-search" @click="onRcvbnkSel"> {{$t('msgp.BT000079')}} </c-button> </c-col> <!-- LT000092 : 报文标准: --> <c-col :span="12"> <el-form-item :label="$t('msgp.LT000092')" prop="msgp.typ"> <c-select v-model="model.msgp.typ" style="width:100%" :placeholder="$t('other.please_enter')+$t('msgp.LT000092')"> </c-select> </el-form-item> </c-col> <!-- LT000077 : 报文类型: --> <!-- LT000078 : 收报行: --> <c-col :span="12"> <span v-text="model.msgp.msginfo" data-path=".msgp.msginfo" > </span> </c-col> <c-col :span="12"> <c-button size="small" type="primary" @click="onMsgpNxtstp"> {{$t('msgp.BT000087')}} </c-button> </c-col> </div> </template> <script> import Api from "~/service/Api" import commonProcess from "~/mixin/commonProcess"; import CodeTable from "~/config/CodeTable" import Event from "../model/Event" export default { inject: ['root'], props:["model","codes"], mixins: [commonProcess], data(){ return { } }, methods:{...Event}, created:function(){ } } </script> <style> </style>