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

jxl committed
12 13

       <c-col :span="24">
nanrui committed
14
            <el-form-item label="利息指示条款" prop="bodgrp.blk.intins" label-width="180px">
15 16
                    <c-input type="textarea" :autosize="{ minRows: 4, maxRows: 5}"  
                    v-model="model.bodgrp.blk.intins" style="width:70%;margin-right:20px;" 
nanrui committed
17
                    maxlength="325" show-word-limit placeholder="请输入利息指示条款" 
18 19 20 21
                    ></c-input>
            </el-form-item>
       </c-col> 
       <c-col :span="18">
nanrui committed
22
            <el-form-item label="结算条款" prop="bodgrp.blk.setinsbo" label-width="180px">
23 24
                    <c-input type="textarea" :autosize="{ minRows: 6, maxRows: 8}"  
                    v-model="model.bodgrp.blk.setinsbo" style="width:98%;margin-right:20px;" 
nanrui committed
25
                    maxlength="390" show-word-limit placeholder="请输入结算条款" 
26 27
                    ></c-input>
            </el-form-item>
jxl committed
28
       </c-col>
29
       <c-col :span="6">
huangxin committed
30
         <c-button size="small" type="primary" icon="el-icon-search" @click="showGridPromptDialog('botp.setins.buttxmsel', null, null,{TXT: 'bodgrp.blk.setinsbo'}, {TXT: false},'doxpDialog')">
31 32 33
            ...
       </c-button>
       </c-col> 
jxl committed
34
       <c-col :span="24">
nanrui committed
35
            <el-form-item label="赋予代理行的权力" prop="bodgrp.blk.agtaut" label-width="180px">
36 37
                    <c-input type="textarea" :autosize="{ minRows: 6, maxRows: 6}"  
                    v-model="model.bodgrp.blk.agtaut" style="width:40%;margin-right:20px;" 
nanrui committed
38
                    maxlength="210" show-word-limit placeholder="请输入赋予代理行的权力" 
39 40 41 42
                    ></c-input>
            </el-form-item>
       </c-col> 

jxl committed
43
       <c-col :span="24">
nanrui committed
44
        <el-form-item label="货物的起运地" prop="bodgrp.rec.shpfro"  label-width="180px">
45
            <c-input  v-model="model.bodgrp.rec.shpfro"  style="width:40%;margin-right:20px;" 
nanrui committed
46
            maxlength="40"  placeholder="请输入货物的起运地"></c-input>
jxl committed
47 48 49 50
        </el-form-item>
       </c-col>
                                   
       <c-col :span="24">
nanrui committed
51
        <el-form-item label="货物的到达地" prop="bodgrp.rec.shpto"  label-width="180px">
52
            <c-input  v-model="model.bodgrp.rec.shpto" style="width:40%;margin-right:20px;"  
nanrui committed
53
            maxlength="40"  placeholder="请输入货物的到达地"></c-input>
jxl committed
54 55 56
        </el-form-item>
       </c-col>
       <c-col :span="24">
nanrui committed
57
        <el-form-item label="装船日期" prop="bodgrp.rec.shpdat"  label-width="180px">
58
            <c-date-picker type="date"  v-model="model.bodgrp.rec.shpdat"  style="width:40%;margin-right:20px;" 
nanrui committed
59
             placeholder="请选择装船日期"></c-date-picker>
jxl committed
60
        </el-form-item>
61
       </c-col>                                                    
jxl committed
62 63

       <c-col :span="24">
nanrui committed
64
            <el-form-item label="货物描述" prop="bodgrp.blk.goddes" label-width="180px">
65 66
                    <c-input type="textarea" :autosize="{ minRows: 6, maxRows: 8}"  
                    v-model="model.bodgrp.blk.goddes" style="width:70%;margin-right:20px;" 
nanrui committed
67
                    maxlength="325" show-word-limit placeholder="请输入货物描述" 
68 69 70 71 72
                    ></c-input>
            </el-form-item>
       </c-col> 
                                                        
  </div>
jxl committed
73 74 75
</template>
<script>
import Api from "~/service/Api"
wangren committed
76
import commonProcess from "~/mixin/commonProcess";
jxl committed
77
import CodeTable from "~/config/CodeTable"
78
import Event from "~/model/Botdav/Event"
jxl committed
79 80 81 82

export default {
    inject: ['root'],
    props:["model","codes"],
wangren committed
83
    mixins: [commonProcess],
jxl committed
84 85 86 87 88 89 90 91 92 93 94 95 96 97
    data(){
        return {

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

    }
}
</script>
<style>

</style>