Detp.vue 4.24 KB
Newer Older
wuziqiang committed
1 2 3
<template>
  <div class="eibs-tab">
                              
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
     <c-col :span="24">
        <el-form-item label="货物描述" prop="dedgrp.blk.lcrgod">
            <c-input type="textarea" :autosize="{ minRows: 6, maxRows: 8}"  v-model="model.dedgrp.blk.lcrgod" style="width:70%;margin-right:20px;" maxlength="1430" show-word-limit placeholder="请输入Description of Goods" ></c-input>
       </el-form-item>
     </c-col>

     <c-col :span="24">
        <el-form-item label="货物类型" prop="dedgrp.rec.stagod">
            <c-select v-model="model.dedgrp.rec.stagod" style="width:70%" placeholder="请选择货物类型">
                <el-option
              v-for="item in codes.godcod"
              :key="item.value"
              :label="item.label"
              :value="item.value"
              >
            </el-option>
              </c-select>
wuziqiang committed
21
        </el-form-item>
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
     </c-col>

    <c-col :span="24">
        <el-form-item label="单据要求" prop="dedgrp.blk.lcrdoc">
            <c-input type="textarea" :autosize="{ minRows: 6, maxRows: 8}"  v-model="model.dedgrp.blk.lcrdoc" maxlength="1950" style="width:70%;margin-right:20px;" show-word-limit placeholder="请输入单据要求" ></c-input>
       </el-form-item>
    </c-col>

    <c-col :span="24">
        <el-form-item label="附加条款" prop="dedgrp.blk.adlcnd">
            <c-input type="textarea" :autosize="{ minRows: 6, maxRows: 8}" v-model="model.dedgrp.blk.adlcnd" style="width:70%;margin-right:20px;" maxlength="1430" show-word-limit placeholder="请输入附加条款" ></c-input>
       </el-form-item>
    </c-col>

    <c-col :span="24">
        <el-form-item label="给付款、承兑、议付行的指示" prop="dedgrp.blk.insbnk">
            <c-input type="textarea" :autosize="{ minRows: 6, maxRows: 8}" v-model="model.dedgrp.blk.insbnk" style="width:70%;margin-right:20px;" maxlength="325" show-word-limit placeholder="请输入付行的指示" ></c-input>
       </el-form-item>
    </c-col>

    <!--              
wuziqiang committed
43 44 45 46 47 48 49 50
	<c-col :span="12">
	    <span  v-text="model.detp.hwfwms"   data-path=".detp.hwfwms" > </span>
	</c-col>
                                   
	<c-col :span="12">
	    <span  v-text="model.detp.hwtype"   data-path=".detp.hwtype" > </span>
	</c-col>
                  
51

wuziqiang committed
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
                                   
       <c-col :span="12">
        <el-form-item label="单据条款" prop="dedgrp.blk.lcrdoc">
            <c-input type="textarea" v-model="model.dedgrp.blk.lcrdoc" maxlength="65" show-word-limit placeholder="请输入单据条款" ></c-input>
        </el-form-item>
        </c-col>
                  
       <c-col :span="12">
        <c-button size="small" type="primary" icon="el-icon-search" @click="onLcrdocButtxmsel">
            ...
        </c-button>
       </c-col>
                                   
       <c-col :span="12">
        <el-form-item label="附加条款" prop="dedgrp.blk.adlcnd">
            <c-input type="textarea" v-model="model.dedgrp.blk.adlcnd" maxlength="65" show-word-limit placeholder="请输入附加条款" ></c-input>
        </el-form-item>
        </c-col>
                  
       <c-col :span="12">
        <c-button size="small" type="primary" icon="el-icon-search" @click="onAdlcndButtxmsel">
            ...
        </c-button>
       </c-col>
                                   
       <c-col :span="12">
        <el-form-item label="给付款、" prop="dedgrp.blk.insbnk">
            <c-input type="textarea" v-model="model.dedgrp.blk.insbnk" maxlength="65" show-word-limit placeholder="请输入给付款、" ></c-input>
        </el-form-item>
        </c-col>
                  
       <c-col :span="12">
        <c-button size="small" type="primary" icon="el-icon-search" @click="onInsbnkButtxmsel">
            ...
        </c-button>
       </c-col>
88
       -->
wuziqiang committed
89 90 91 92
                                                     </div>
</template>
<script>
import Api from "~/service/Api"
wangren committed
93
import commonProcess from "~/mixin/commonProcess";
wuziqiang committed
94
import CodeTable from "~/config/CodeTable"
95
import Event from "~/model/Detopn/Event"
wuziqiang committed
96 97 98 99

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

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

    }
}
</script>
<style>

</style>