Trnpevt.vue 1.05 KB
Newer Older
liuxin committed
1 2 3
<template>
  <div class="eibs-tab">
                                                                                 
潘际乾 committed
4
       <c-col :span="12">
liuxin committed
5 6 7
        <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>
潘际乾 committed
8
       </c-col>             
liuxin committed
9
                                   
潘际乾 committed
10
       <c-col :span="12">
liuxin committed
11 12 13
        <el-form-item label="stream of events">
            <c-input  v-model="model.recpan.evtstm"  placeholder="请输入stream of events"></c-input>
        </el-form-item>
潘际乾 committed
14
       </c-col>             
liuxin committed
15 16 17 18
  </div>
</template>
<script>
import Api from "~/service/Api"
wangren committed
19
import commonProcess from "~/mixin/commonProcess";
liuxin committed
20
import CodeTable from "~/config/CodeTable"
liuxin committed
21
import Event from "~/model/Trnrel/Event"
liuxin committed
22 23

export default {
24
    inject: ['root'],
liuxin committed
25
    props:["model","codes"],
wangren committed
26
    mixins: [commonProcess],
liuxin committed
27 28 29 30 31 32 33 34 35 36 37 38 39 40
    data(){
        return {

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

    }
}
</script>
<style>

</style>