Tk.vue 2.37 KB
Newer Older
liuxin committed
1 2 3 4 5 6 7 8
<template>
  <div class="eibs-tab">
    <!--                          
	<el-col :span="24">
	    <span  v-text="model.ditp.hwfwms"   data-path=".ditp.hwfwms" > </span>
	</el-col>
    -->          
       <el-col :span="24">
denyu committed
9
        <el-form-item label="货物描述" prop="didgrp.blk.lcrgod">
liushikai committed
10
            <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>
11
       </el-form-item>
liuxin committed
12 13 14
       </el-col>
                  
       <el-col :span="24">
1377875331@qq.com committed
15
        <el-form-item label="单据要求" prop="didgrp.blk.lcrdoc">
liushikai committed
16
            <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>
17
       </el-form-item>
liuxin committed
18 19 20
       </el-col>
                                                    
       <el-col :span="24">
1377875331@qq.com committed
21
        <el-form-item label="附加条款" prop="didgrp.blk.adlcnd">
liushikai committed
22
            <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>
23
       </el-form-item>
liuxin committed
24 25 26
       </el-col>
                                                    
       <el-col :span="24">
denyu committed
27
        <el-form-item label="给付款丶承兑丶议付行的指示" prop="didgrp.blk.insbnk">
liushikai committed
28
            <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>
29
       </el-form-item>
liuxin committed
30 31
       </el-col>
                  
denyu committed
32 33 34 35 36
<!--       <el-col :span="24">-->
<!--       <el-form-item label="" prop="didgrp.rec.redclsflg">-->
<!--	    <c-checkbox v-model="model.didgrp.rec.redclsflg">红/绿条款</c-checkbox>-->
<!--        </el-form-item>-->
<!--       </el-col> -->
liuxin committed
37 38 39 40 41
  </div>
</template>
<script>
import Api from "~/service/Api"
import CodeTable from "~/config/CodeTable"
liuxin committed
42
import Event from "~/model/Ditopn/Event"
liuxin committed
43 44

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

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

    }
}
</script>
<style>

</style>