Gitbin.vue 671 Bytes
Newer Older
WF1020 committed
1 2
<template>
  <div class="eibs-tab">
WF1020 committed
3 4 5 6 7 8 9 10
    <c-col :span="12" style="padding-right: 20px;">
      <el-form-item label="银行指令" prop="instxt">
        <c-input type="textarea" v-model="model.instxt" maxlength="65" 
        :rows="8"
        show-word-limit placeholder="请输入银行指令" >
        </c-input>
      </el-form-item>
    </c-col>
WF1020 committed
11 12 13 14 15 16 17
  </div>
</template>
<script>
import Api from "~/service/Api"
import CodeTable from "~/config/CodeTable"
import event from '../event'
export default {
WF1020 committed
18 19 20 21 22
  inject: ['root'],
  props:["model","codes"],
  mixins: [event],
  data(){
    return {
WF1020 committed
23
    }
WF1020 committed
24 25 26 27
  },
  methods:{},
  created:function(){
  }
WF1020 committed
28 29 30 31 32
}
</script>
<style>

</style>