Detp.vue 5.92 KB
Newer Older
chenwen committed
1
<template>
chenwen 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 ">
chenwen committed
8 9
        </el-form-item>
        </c-col>
chenwen 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">
chenwen committed
23 24 25 26 27
        <c-button size="small" type="primary" icon="el-icon-search" @click="onColinsButtxmsel">
            ...
        </c-button>
       </c-col>
       </c-col>
chenwen committed
28 29 30
        
        <c-col :span="12">
        <el-form-item label="Draft Instructions">
chenwen committed
31 32
        </el-form-item>
        </c-col>
chenwen committed
33 34 35

      <c-col :span="24">
       <c-col :span="20">
chenwen 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>
chenwen committed
38
        
chenwen committed
39
                  
chenwen committed
40
       <c-col :span="4">
chenwen committed
41 42 43 44
        <c-button size="small" type="primary" icon="el-icon-search" @click="onDftinsButtxmsel">
            ...
        </c-button>
       </c-col>
chenwen 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>
chenwen committed
70
                  
chenwen committed
71 72 73 74
       <c-col :span="4">
        <c-button size="small" type="primary" icon="el-icon-search" @click="onOthins1Buttxmsel">
            ...
        </c-button>
chenwen committed
75
       </c-col>
chenwen 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="4">
        <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>  
      
chenwen committed
122
                                   
chenwen committed
123 124
       <c-col :span="24">
        <el-form-item label="Charges Text">
chenwen committed
125
        </el-form-item>
chenwen 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>
chenwen committed
134
       </c-col>
chenwen committed
135 136 137 138
                                                    
       <c-col :span="24">
       <c-col :span="5">
        <el-form-item label="Waive Collecting">
chenwen committed
139 140
        </el-form-item>
       </c-col>
chenwen 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">
chenwen committed
149
              </c-select>
chenwen committed
150 151 152 153 154
       </c-col>
    
       <c-col :span="24">                            
       <c-col :span="5">
        <el-form-item label="Waive Remitting">
chenwen committed
155 156
        </el-form-item>
       </c-col>
chenwen committed
157 158
        <c-col :span="4">
        <el-form-item label="Bank Charges">
chenwen committed
159 160
        </el-form-item>
       </c-col>
chenwen 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">
chenwen committed
166
              </c-select>
chenwen committed
167 168 169 170
       </c-col>
                                                    
       <c-col :span="24">
        <el-form-item label="Defer Payment until">
chenwen committed
171 172
        </el-form-item>
       </c-col>
chenwen committed
173 174 175
                  
       <c-col :span="24">
         <c-select v-model="model.bcdgrp.rec.othins" style="width:100%" placeholder="请选择Defer Payment until">
chenwen committed
176 177
              </c-select>
       </c-col>
chenwen committed
178 179 180
               
    </c-col>
 </c-row>
chenwen committed
181 182 183
</template>
<script>
import Api from "~/service/Api"
wangren committed
184
import commonProcess from "~/mixin/commonProcess";
chenwen committed
185 186 187 188 189 190
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Bctset/Event"

export default {
    inject: ['root'],
    props:["model","codes"],
wangren committed
191
    mixins: [commonProcess],
chenwen committed
192 193 194 195 196 197 198 199 200 201 202 203 204 205
    data(){
        return {

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

    }
}
</script>
<style>

</style>