Tk.vue 2.43 KB
Newer Older
1 2
<template>
  <div class="eibs-tab">
SunJie committed
3
    <!--                          
潘际乾 committed
4
	<c-col :span="24">
5
	    <span  v-text="model.ditp.hwfwms"   data-path=".ditp.hwfwms" > </span>
潘际乾 committed
6
	</c-col>
SunJie committed
7
    -->          
潘际乾 committed
8
       <c-col :span="24">
SunJie committed
9 10 11
        <el-form-item label="货物描述" prop="didgrp.blk.lcrgod">
            <c-input type="textarea" :autosize="{ minRows: 6, maxRows: 8}"  v-model="model.didgrp.blk.lcrgod" style="width:70%;margin-right:20px;" maxlength="1430" show-word-limit placeholder="请输入Description of Goods" ></c-input>
       </el-form-item>
潘际乾 committed
12
       </c-col>
13
                  
潘际乾 committed
14
       <c-col :span="24">
SunJie committed
15 16 17
        <el-form-item label="单据要求" prop="didgrp.blk.lcrdoc">
            <c-input type="textarea" :autosize="{ minRows: 6, maxRows: 8}"  v-model="model.didgrp.blk.lcrdoc" maxlength="1950" style="width:70%;margin-right:20px;" show-word-limit placeholder="请输入单据要求" ></c-input>
       </el-form-item>
潘际乾 committed
18
       </c-col>
19
                                                    
潘际乾 committed
20
       <c-col :span="24">
SunJie committed
21 22 23
        <el-form-item label="附加条款" prop="didgrp.blk.adlcnd">
            <c-input type="textarea" :autosize="{ minRows: 6, maxRows: 8}" v-model="model.didgrp.blk.adlcnd" style="width:70%;margin-right:20px;" maxlength="1430" show-word-limit placeholder="请输入附加条款" ></c-input>
       </el-form-item>
潘际乾 committed
24
       </c-col>
25
                                                    
潘际乾 committed
26
       <c-col :span="24">
SunJie committed
27 28 29
        <el-form-item label="给付款丶承兑丶议付行的指示" prop="didgrp.blk.insbnk">
            <c-input type="textarea" :autosize="{ minRows: 6, maxRows: 8}" v-model="model.didgrp.blk.insbnk" style="width:70%;margin-right:20px;" maxlength="325" show-word-limit placeholder="请输入付行的指示" ></c-input>
       </el-form-item>
潘际乾 committed
30
       </c-col>
31
                  
潘际乾 committed
32
<!--       <c-col :span="24">-->
SunJie committed
33 34 35
<!--       <el-form-item label="" prop="didgrp.rec.redclsflg">-->
<!--	    <c-checkbox v-model="model.didgrp.rec.redclsflg">红/绿条款</c-checkbox>-->
<!--        </el-form-item>-->
潘际乾 committed
36
<!--       </c-col> -->
37 38 39 40
  </div>
</template>
<script>
import Api from "~/service/Api"
wangren committed
41
import commonProcess from "~/mixin/commonProcess";
42
import CodeTable from "~/config/CodeTable"
SunJie committed
43
import Event from "~/model/Ditopn/Event"
44 45

export default {
46
    inject: ['root'],
wangren committed
47
    mixins: [commonProcess],
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
    props:["model","codes"],
    data(){
        return {

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

    }
}
</script>
<style>

</style>