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

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

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

    }
}
</script>
<style>

</style>