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

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

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

    }
}
</script>
<style>

</style>