Instrecp.vue 3.2 KB
Newer Older
jxl committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
<template>
 <c-row>
                                                                
       <c-col :span="24">
        <el-form-item label="Draft Instructions" prop="bodgrp.blk.dftins">
            <c-input type="textarea" v-model="model.bodgrp.blk.dftins" maxlength="65" show-word-limit placeholder="请输入Draft Instructions" ></c-input>
        </el-form-item>
        </c-col>

        <c-col :span="24">
        <el-form-item label="Interest Instructions" prop="bodgrp.blk.intins">
            <c-input type="textarea" v-model="model.bodgrp.blk.intins" maxlength="65" show-word-limit placeholder="请输入Interest Instructions" ></c-input>
        </el-form-item>
        </c-col>
                                   
       <c-col :span="24">
       <c-col :span="22">
        <el-form-item label="Settlement insrtrctions" prop="bodgrp.blk.setinsbo">
            <c-input type="textarea" v-model="model.bodgrp.blk.setinsbo" maxlength="65" show-word-limit placeholder="请输入Settlement insrtrctions" ></c-input>
        </el-form-item>
        </c-col>
                  
       <c-col :span="2">
        <c-button size="small" type="primary" icon="el-icon-search" @click="onSetinsButtxmsel">
            ...
        </c-button>
       </c-col>
       </c-col>
                                   
       <c-col :span="24">
        <el-form-item label="Authority of Agent" prop="bodgrp.blk.agtaut">
            <c-input type="textarea" v-model="model.bodgrp.blk.agtaut" maxlength="35" show-word-limit placeholder="请输入Authority of Agent" ></c-input>
        </el-form-item>
        </c-col>
                                   
       <c-col :span="24">
        <el-form-item label="Shipment from" prop="bodgrp.rec.shpfro">
            <c-input  v-model="model.bodgrp.rec.shpfro" maxlength="40"  placeholder="请输入Shipment from"></c-input>
        </el-form-item>
       </c-col>
                                   
       <c-col :span="24">
        <el-form-item label="For Transportation to" prop="bodgrp.rec.shpto">
            <c-input  v-model="model.bodgrp.rec.shpto" maxlength="40"  placeholder="请输入For Transportation to"></c-input>
        </el-form-item>
       </c-col>

       <c-col :span="24">
        <el-form-item label="Shipment date" prop="bodgrp.rec.shpdat">
            <c-date-picker type="date"  v-model="model.bodgrp.rec.shpdat" style="width:100%"  placeholder="请选择Shipment date"></c-date-picker>
        </el-form-item>
       </c-col>

                                                    
       <c-col :span="24">
        <el-form-item label="Description of Goods" prop="bodgrp.blk.goddes">
            <c-input type="textarea" v-model="model.bodgrp.blk.goddes" maxlength="65" show-word-limit placeholder="请输入Description of Goods" ></c-input>
        </el-form-item>
        </c-col>
 </c-row>
</template>
<script>
import Api from "~/service/Api"
wangren committed
64
import commonProcess from "~/mixin/commonProcess";
jxl committed
65 66 67 68 69 70
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Botame/Event"

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

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

    }
}
</script>
<style>

</style>