Setinsp.vue 1012 Bytes
Newer Older
Your Name committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<template>
  <div class="eibs-tab">
                                               
       <c-col :span="12">
        <el-form-item label="Settlement Instructions" prop="ccdgrp.blk.setins">
            <c-input type="textarea" v-model="model.ccdgrp.blk.setins" maxlength="65" show-word-limit placeholder="请输入Settlement Instructions" ></c-input>
        </el-form-item>
        </c-col>
                  
       <c-col :span="12">
        <c-button size="small" type="primary" icon="el-icon-search" @click="onSetinsButtxmsel">
            ...
        </c-button>
       </c-col>
  </div>
</template>
<script>
import Api from "~/service/Api"
wangren committed
19
import commonProcess from "~/mixin/commonProcess";
Your Name committed
20 21 22 23 24 25
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Infccd/Event"

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

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

    }
}
</script>
<style>

</style>