Detp.vue 5.92 KB
Newer Older
ccx committed
1
<template>
ccx committed
2 3 4 5 6 7
  <c-row>
   <!-- ====================左边======================= -->
     <c-col :span="14">
        <c-col :span="24">
        <c-col :span="4">
        <el-form-item label="Delivery of Documents ">
ccx committed
8 9
        </el-form-item>
        </c-col>
ccx committed
10 11 12 13 14 15 16 17 18 19 20 21 22
        <c-col :span="12">
        <el-form-item label=" Instructions">
        </el-form-item>
        </c-col>
        </c-col>

       <c-col :span="24">
       <c-col :span="20">
            <c-input type="textarea" v-model="model.bcdgrp.blk.colins" maxlength="65" show-word-limit placeholder="请输入Collection Instructions" >
            </c-input>
        </c-col>
        
         <c-col :span="4">
ccx committed
23 24 25 26 27
        <c-button size="small" type="primary" icon="el-icon-search" @click="onColinsButtxmsel">
            ...
        </c-button>
       </c-col>
       </c-col>
ccx committed
28 29 30
        
        <c-col :span="12">
        <el-form-item label="Draft Instructions">
ccx committed
31 32
        </el-form-item>
        </c-col>
ccx committed
33 34 35

      <c-col :span="24">
       <c-col :span="20">
ccx committed
36 37
            <c-input type="textarea" v-model="model.bcdgrp.blk.dftins" maxlength="65" show-word-limit placeholder="请输入Draft Instructions" ></c-input>
        </c-col>
ccx committed
38
        
ccx committed
39
                  
ccx committed
40
       <c-col :span="4">
ccx committed
41 42 43 44
        <c-button size="small" type="primary" icon="el-icon-search" @click="onDftinsButtxmsel">
            ...
        </c-button>
       </c-col>
ccx committed
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
       </c-col>

        <c-col :span="24" >
          <el-form-item label="Protest Instructions" prop="bcdgrp.rec.proins">
                
          </el-form-item>
        </c-col>
		<c-col :span="20" >
         <c-select v-model="model.bcdgrp.rec.proins" style="width:100%" placeholder="请选择Protest Instructions">
              </c-select> <el-option
              v-for="item in codes.proins"
              :key="item.value"
              :label="item.label"
              :value="item.value"
            > </el-option>
		</c-col>
        <c-col :span="24">
        <el-form-item label="Other Instructions">
        </el-form-item>
        </c-col>

      <c-col :span="24">
        <c-col :span="20">
          <c-input type="textarea" v-model="model.bcdgrp.blk.othins" maxlength="65" show-word-limit placeholder="请输入Other Instructions" ></c-input>
        </c-col>
ccx committed
70
                  
ccx committed
71 72 73 74
       <c-col :span="4">
        <c-button size="small" type="primary" icon="el-icon-search" @click="onOthins1Buttxmsel">
            ...
        </c-button>
ccx committed
75
       </c-col>
ccx committed
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
      </c-col>
	  
        <c-col :span="14">
        <c-col :span="4">
        <el-form-item label="Good's Code">
        </el-form-item>
        </c-col>
        <c-col :span="10">
        <el-form-item label="(for Statistics)">
        </el-form-item>
        </c-col>
        </c-col>		
        <c-col :span="20" >
		  <c-select v-model="model.bcdgrp.rec.stagod" style="width:100%" placeholder="请选择Good's Code (for Statistics">
          </c-select>
		 <el-option
              v-for="item in codes.godcod"
              :key="item.value"
              :label="item.label"
              :value="item.value"
            >
            </el-option>
		
		</c-col>
	
	
 </c-col> 
 <!-- ====================右边======================= -->
     <c-col :span="10">   

       <c-col :span="24">
        <el-form-item label="Charges Condition">
        </el-form-item>
       </c-col>  

        <c-col :span="24">
            <c-select v-model="model.bcdgrp.rec.chato" style="width:100%" placeholder="请选择Our Charges to">
              </c-select><el-option
              v-for="item in codes.chadet"
              :key="item.value"
              :label="item.label"
              :value="item.value"
            >
            </el-option>
       </c-col>  
      
ccx committed
122
                                   
ccx committed
123 124
       <c-col :span="24">
        <el-form-item label="Charges Text">
ccx committed
125
        </el-form-item>
ccx committed
126 127 128 129 130 131 132 133
        </c-col>

        <c-col :span="24">
          <c-input type="textarea" v-model="model.bcdgrp.blk.chgtxt" maxlength="35" show-word-limit placeholder="请输入Charges Text" ></c-input>
        </c-col>
                     
       <c-col :span="24">
	    <c-checkbox v-model="model.bcdgrp.rec.focflg">Free of Payment</c-checkbox>
ccx committed
134
       </c-col>
ccx committed
135 136 137 138
                                                    
       <c-col :span="24">
       <c-col :span="5">
        <el-form-item label="Waive Collecting">
ccx committed
139 140
        </el-form-item>
       </c-col>
ccx committed
141 142 143 144 145 146 147 148
       <c-col :span="4">
        <el-form-item label="Bank Charges">
        </el-form-item>
       </c-col>
       </c-col>

        <c-col :span="24">
          <c-select v-model="model.bcdgrp.rec.waicolcod" style="width:100%" placeholder="请选择Waive Collecting Bank Charges">
ccx committed
149
              </c-select>
ccx committed
150 151 152 153 154
       </c-col>
    
       <c-col :span="24">                            
       <c-col :span="4">
        <el-form-item label="Waive Remitting">
ccx committed
155 156
        </el-form-item>
       </c-col>
ccx committed
157 158
        <c-col :span="4">
        <el-form-item label="Bank Charges">
ccx committed
159 160
        </el-form-item>
       </c-col>
ccx committed
161 162 163 164 165

       </c-col>

       <c-col :span="24">
           <c-select v-model="model.bcdgrp.rec.wairmtcod" style="width:100%" placeholder="请选择Waive Remitting Bank Charges">
ccx committed
166
              </c-select>
ccx committed
167 168 169 170
       </c-col>
                                                    
       <c-col :span="24">
        <el-form-item label="Defer Payment until">
ccx committed
171 172
        </el-form-item>
       </c-col>
ccx committed
173 174 175
                  
       <c-col :span="24">
         <c-select v-model="model.bcdgrp.rec.othins" style="width:100%" placeholder="请选择Defer Payment until">
ccx committed
176 177
              </c-select>
       </c-col>
ccx committed
178 179 180
               
    </c-col>
 </c-row>
ccx committed
181 182 183 184 185
</template>
<script>
import Api from "~/service/Api"
import CommonProcess from "~/mixin/CommonProcess";
import CodeTable from "~/config/CodeTable"
ccx committed
186
import Event from "~/model/Botdav/Event"
ccx committed
187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205

export default {
    inject: ['root'],
    props:["model","codes"],
    mixins: [CommonProcess],
    data(){
        return {

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

    }
}
</script>
<style>

</style>