Setpan.vue 2.76 KB
Newer Older
1 2
<template>
  <div class="eibs-tab">
panziyi committed
3 4 5 6
                                               
       <c-col :span="12">
        <el-form-item label="our reference" prop="setmod.ref">
            <c-input  v-model="model.setmod.ref" maxlength="16"  placeholder="请输入our reference"></c-input>
7
        </el-form-item>
panziyi committed
8 9 10 11 12 13 14
       </c-col>
                  
	<c-col :span="12">
	    <span  v-text="model.setmod.docamttyplab"   data-path=".setmod.docamttyplab" > </span>
	</c-col>
                  
       <c-col :span="12">
15
        <el-form-item label="document currency" prop="setmod.doccur">
panziyi committed
16 17
            <c-select v-model="model.setmod.doccur" style="width:100%" placeholder="请选择document currency">
              </c-select>
18
        </el-form-item>
panziyi committed
19 20 21
       </c-col>
                  
       <c-col :span="12">
22
        <el-form-item label="document amount" prop="setmod.docamt">
panziyi committed
23
            <c-input  v-model="model.setmod.docamt"  placeholder="请输入document amount"></c-input>
24
        </el-form-item>
panziyi committed
25 26 27
       </c-col>
                                   
       <c-col :span="12">
28
        <el-form-item label="Type of settlement" prop="setmod.dspflg">
panziyi committed
29 30
            <c-select v-model="model.setmod.dspflg" style="width:100%" placeholder="请选择Type of settlement">
              </c-select>
31
        </el-form-item>
panziyi committed
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
       </c-col>
                  
       <c-col :span="12">
	    <c-checkbox v-model="model.setmod.xreflg">Recalculate Rates</c-checkbox>
       </c-col>
                  
       <c-col :span="12">
        <c-button size="small" type="primary"  @click="onSetmodDet">
            细节
        </c-button>
       </c-col>
                  
	<c-col :span="12">
	    <span  v-text="model.setmod.retmsg"   data-path=".setmod.retmsg" > </span>
	</c-col>
                  
       <c-col :span="12">
49
        <el-form-item label="自�'�区主�'�号" prop="setmod.zmqacc">
panziyi committed
50
            <c-input  v-model="model.setmod.zmqacc" maxlength="20"  placeholder="请输入自�'�区主�'�号"></c-input>
51
        </el-form-item>
panziyi committed
52 53 54 55 56 57 58 59 60
       </c-col>
                  
	<c-col :span="12">
	    <span  v-text="model.setmod.zmqacclab"   data-path=".setmod.zmqacclab" > </span>
	</c-col>
                                                                     
	<c-col :span="12">
	    <span  v-text="model.setmod.setglg.labdspflg"   data-path=".setmod.setglg.labdspflg" > </span>
	</c-col>
61 62 63
  </div>
</template>
<script>
panziyi committed
64
import Api from "~/service/Api"
wangren committed
65
import commonProcess from "~/mixin/commonProcess";
panziyi committed
66 67
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Gitcrq/Event"
68 69

export default {
panziyi committed
70 71 72 73 74 75 76 77 78 79 80 81 82
    inject: ['root'],
    props:["model","codes"],
    mixins: [commonProcess],
    data(){
        return {

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

    }
}
83 84
</script>
<style>
panziyi committed
85

86
</style>