<template> <div class="eibs-tab"> <el-col :span="12"> <el-form-item label="stream of history of transactions"> <c-input v-model="model.recpan.evthisstm" placeholder="请输入stream of history of transactions"></c-input> </el-form-item> </el-col> <el-col :span="12"> <el-form-item label="stream of events"> <c-input v-model="model.recpan.evtstm" placeholder="请输入stream of events"></c-input> </el-form-item> </el-col> </div> </template> <script> import Api from "~/service/Api" import CodeTable from "~/config/CodeTable" import Event from "~/model/Trnrel/Event" export default { props:["model","codes"], data(){ return { } }, methods:{...Event}, created:function(){ } } </script> <style> </style>