Account.vue 1.78 KB
Newer Older
cl committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
<template>
  <div class="eibs-tab">
                                               
       <c-col :span="12">
        <el-form-item label="Credit to Account" prop="cldgrp.rec.creact">
            <c-select v-model="model.cldgrp.rec.creact" style="width:100%" placeholder="请选择Credit to Account">
              </c-select>
        </el-form-item>
       </c-col>
                                   
       <c-col :span="12">
        <el-form-item label="A/C NO." prop="cldgrp.rec.acno">
            <c-input  v-model="model.cldgrp.rec.acno" maxlength="20"  placeholder="请输入A/C NO."></c-input>
        </el-form-item>
       </c-col>
         
       <c-col :span="12">
        <el-form-item label="Settlement Instructions" prop="cldgrp.blk.setins">
            <c-input type="textarea" v-model="model.cldgrp.blk.setins" maxlength="65" show-word-limit placeholder="请输入Settlement Instructions" ></c-input>
        </el-form-item>
        </c-col>
       <c-col :span="12">
	    <c-checkbox v-model="model.modflg">修改</c-checkbox>
        <c-button size="small" type="primary" icon="el-icon-search" @click="onSetinsButtxmsel">
            ...
        </c-button>
       </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
40
import commonProcess from "~/mixin/commonProcess";
cl committed
41 42 43 44 45 46
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Cltdav/Event"

export default {
    inject: ['root'],
    props:["model","codes"],
wangren committed
47
    mixins: [commonProcess],
cl committed
48 49 50 51 52 53 54 55 56 57 58 59 60 61
    data(){
        return {

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

    }
}
</script>
<style>

</style>