Tk.vue 2.43 KB
Newer Older
liuxin committed
1 2 3
<template>
  <div class="eibs-tab">
    <!--                          
潘际乾 committed
4
	<c-col :span="24">
liuxin committed
5
	    <span  v-text="model.ditp.hwfwms"   data-path=".ditp.hwfwms" > </span>
潘际乾 committed
6
	</c-col>
liuxin committed
7
    -->          
潘际乾 committed
8
       <c-col :span="24">
liushikai 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>
潘际乾 committed
12
       </c-col>
liuxin committed
13
                  
潘际乾 committed
14
       <c-col :span="24">
liushikai 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>
潘际乾 committed
18
       </c-col>
liuxin committed
19
                                                    
潘际乾 committed
20
       <c-col :span="24">
liushikai 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>
潘际乾 committed
24
       </c-col>
liuxin committed
25
                                                    
潘际乾 committed
26
       <c-col :span="24">
liushikai 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>
潘际乾 committed
30
       </c-col>
liuxin committed
31
                  
潘际乾 committed
32
<!--       <c-col :span="24">-->
denyu 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> -->
liuxin committed
37 38 39 40
  </div>
</template>
<script>
import Api from "~/service/Api"
41
import CommonProcess from "~/mixin/CommonProcess";
liuxin committed
42
import CodeTable from "~/config/CodeTable"
liuxin committed
43
import Event from "~/model/Ditopn/Event"
liuxin committed
44 45

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

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

    }
}
</script>
<style>

</style>