Instrecp.vue 5.17 KB
Newer Older
jxl committed
1
<template>
LiRui committed
2 3 4 5
  <div class="eibs">
        <!-- ==================左边================ -->
        <c-col :span="12" style="padding-right: 20px;">
          <c-col :span="24">
nanrui committed
6
            <el-form-item label="汇票指示条款" prop="bodgrp.blk.dftins" label-width="180px">
7
                    <c-input type="textarea" :autosize="{ minRows: 4, maxRows: 6}"  
LiRui committed
8
                    v-model="model.bodgrp.blk.dftins" style="width:100%;margin-right:20px;" 
nanrui committed
9
                    maxlength="390" show-word-limit placeholder="请输入汇票指示条款" 
10 11 12 13
                    ></c-input>
            </el-form-item>
       </c-col> 

jxl committed
14 15

       <c-col :span="24">
nanrui committed
16
            <el-form-item label="利息指示条款" prop="bodgrp.blk.intins" label-width="180px">
17
                    <c-input type="textarea" :autosize="{ minRows: 4, maxRows: 5}"  
LiRui committed
18
                    v-model="model.bodgrp.blk.intins" style="width:100%;margin-right:20px;" 
nanrui committed
19
                    maxlength="325" show-word-limit placeholder="请输入利息指示条款" 
20 21 22
                    ></c-input>
            </el-form-item>
       </c-col> 
LiRui committed
23
       <c-col :span="24">
hewei committed
24 25 26 27 28 29 30 31 32 33 34 35 36
         <el-form-item label="结算条款" prop="bodgrp.blk.setinsbo" label-width="180px">
           <c-fullbox>
             <c-input type="textarea" :autosize="{ minRows: 6, maxRows: 8}"
                      v-model="model.bodgrp.blk.setinsbo" style="width:100%"
                      maxlength="390" show-word-limit placeholder="请输入结算条款"
             ></c-input>
             <template slot="footer">
               <c-button size="small" type="primary" icon="el-icon-more"
                         style="margin: 0 0 0 10px"
                         @click="showGridPromptDialog('botp.setins.buttxmsel', null, null,{TXT: 'bodgrp.blk.setinsbo'}, {TXT: false},'doxpDialog')"></c-button>
             </template>
           </c-fullbox>
         </el-form-item>
jxl committed
37
       </c-col>
hewei committed
38 39 40 41 42 43 44 45 46 47 48 49 50
<!--       <c-col :span="22">-->
<!--            <el-form-item label="结算条款" prop="bodgrp.blk.setinsbo" label-width="180px">-->
<!--                    <c-input type="textarea" :autosize="{ minRows: 6, maxRows: 8}"  -->
<!--                    v-model="model.bodgrp.blk.setinsbo" style="width:100%;margin-right:20px;" -->
<!--                    maxlength="390" show-word-limit placeholder="请输入结算条款" -->
<!--                    ></c-input>-->
<!--            </el-form-item>-->
<!--       </c-col>-->
<!--       <c-col :span="2">-->
<!--         <c-button size="small" type="primary" icon="el-icon-more" @click="showGridPromptDialog('botp.setins.buttxmsel', null, null,{TXT: 'bodgrp.blk.setinsbo'}, {TXT: false},'doxpDialog')">-->
<!--       </c-button>-->
<!--       </c-col> -->
<!--     </c-col>-->
jxl committed
51
       <c-col :span="24">
nanrui committed
52
            <el-form-item label="赋予代理行的权力" prop="bodgrp.blk.agtaut" label-width="180px">
53
                    <c-input type="textarea" :autosize="{ minRows: 6, maxRows: 6}"  
LiRui committed
54
                    v-model="model.bodgrp.blk.agtaut" style="width:100%;margin-right:20px;" 
nanrui committed
55
                    maxlength="210" show-word-limit placeholder="请输入赋予代理行的权力" 
56 57 58 59
                    ></c-input>
            </el-form-item>
       </c-col> 

jxl committed
60
       <c-col :span="24">
nanrui committed
61
        <el-form-item label="货物的起运地" prop="bodgrp.rec.shpfro"  label-width="180px">
LiRui committed
62
            <c-input  v-model="model.bodgrp.rec.shpfro"  style="width:100%;margin-right:20px;" 
nanrui committed
63
            maxlength="40"  placeholder="请输入货物的起运地"></c-input>
jxl committed
64 65 66 67
        </el-form-item>
       </c-col>
                                   
       <c-col :span="24">
nanrui committed
68
        <el-form-item label="货物的到达地" prop="bodgrp.rec.shpto"  label-width="180px">
LiRui committed
69
            <c-input  v-model="model.bodgrp.rec.shpto" style="width:100%;margin-right:20px;"  
nanrui committed
70
            maxlength="40"  placeholder="请输入货物的到达地"></c-input>
jxl committed
71 72 73
        </el-form-item>
       </c-col>
       <c-col :span="24">
nanrui committed
74
        <el-form-item label="装船日期" prop="bodgrp.rec.shpdat"  label-width="180px">
LiRui committed
75
            <c-date-picker type="date"  v-model="model.bodgrp.rec.shpdat"  style="width:100%;margin-right:20px;" 
nanrui committed
76
             placeholder="请选择装船日期"></c-date-picker>
jxl committed
77
        </el-form-item>
78
       </c-col>                                                    
jxl committed
79 80

       <c-col :span="24">
nanrui committed
81
            <el-form-item label="货物描述" prop="bodgrp.blk.goddes" label-width="180px">
82
                    <c-input type="textarea" :autosize="{ minRows: 6, maxRows: 8}"  
LiRui committed
83
                    v-model="model.bodgrp.blk.goddes" style="width:100%;margin-right:20px;" 
nanrui committed
84
                    maxlength="325" show-word-limit placeholder="请输入货物描述" 
85 86 87
                    ></c-input>
            </el-form-item>
       </c-col> 
LiRui committed
88
     </c-col>
89 90
                                                        
  </div>
jxl committed
91 92 93
</template>
<script>
import Api from "~/service/Api"
wangren committed
94
import commonProcess from "~/mixin/commonProcess";
jxl committed
95
import CodeTable from "~/config/CodeTable"
96
import Event from "~/model/Botdav/Event"
jxl committed
97 98 99 100

export default {
    inject: ['root'],
    props:["model","codes"],
wangren committed
101
    mixins: [commonProcess],
jxl committed
102 103 104 105 106 107 108 109 110 111 112 113 114 115
    data(){
        return {

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

    }
}
</script>
<style>

</style>