Instrecp.vue 4.22 KB
Newer Older
jxl committed
1
<template>
wangyanjiao committed
2 3
     <div class="eibs-tab">
          <c-col :span="24">
nanrui committed
4
               <el-form-item label="汇票指示条款" prop="bodgrp.blk.dftins" label-width="180px">
wangyanjiao committed
5 6
                    <c-input type="textarea" :autosize="{ minRows: 4, maxRows: 6}" v-model="model.bodgrp.blk.dftins"
                         style="width:70%;margin-right:20px;" maxlength="390" show-word-limit
nanrui committed
7
                         placeholder="请输入汇票指示条款"></c-input>
wangyanjiao committed
8 9
               </el-form-item>
          </c-col>
jxl committed
10 11


wangyanjiao committed
12
          <c-col :span="24">
nanrui committed
13
               <el-form-item label="利息指示条款" prop="bodgrp.blk.intins" label-width="180px">
wangyanjiao committed
14 15
                    <c-input type="textarea" :autosize="{ minRows: 4, maxRows: 5}" v-model="model.bodgrp.blk.intins"
                         style="width:70%;margin-right:20px;" maxlength="325" show-word-limit
nanrui committed
16
                         placeholder="请输入利息指示条款"></c-input>
wangyanjiao committed
17 18 19
               </el-form-item>
          </c-col>
          <c-col :span="18">
nanrui committed
20
               <el-form-item label="结算条款" prop="bodgrp.blk.setinsbo" label-width="180px">
wangyanjiao committed
21
                    <c-input type="textarea" :autosize="{ minRows: 6, maxRows: 8}" v-model="model.bodgrp.blk.setinsbo"
22
                         style="width:98%;margin-right:20px;" maxlength="400" show-word-limit
nanrui committed
23
                         placeholder="请输入结算条款"></c-input>
wangyanjiao committed
24 25 26 27
               </el-form-item>
          </c-col>
          <c-col :span="6">
               <c-button size="small" type="primary"
wangyanjiao committed
28
                    @click="showGridPromptDialog('botp.setins.buttxmsel',null,null,{TXT:'bodgrp.blk.setinsbo'},{TXT:false},'doxpDialog')">
wangyanjiao committed
29 30 31 32
                    ...
               </c-button>
          </c-col>
          <c-col :span="24">
nanrui committed
33
               <el-form-item label="赋予代理行的权力" prop="bodgrp.blk.agtaut" label-width="180px">
wangyanjiao committed
34 35
                    <c-input type="textarea" :autosize="{ minRows: 6, maxRows: 6}" v-model="model.bodgrp.blk.agtaut"
                         style="width:40%;margin-right:20px;" maxlength="210" show-word-limit
nanrui committed
36
                         placeholder="请输入赋予代理行的权力"></c-input>
wangyanjiao committed
37 38
               </el-form-item>
          </c-col>
jxl committed
39

wangyanjiao committed
40
          <c-col :span="24">
nanrui committed
41
               <el-form-item label="货物的起运地" prop="bodgrp.rec.shpfro" label-width="180px">
wangyanjiao committed
42
                    <c-input v-model="model.bodgrp.rec.shpfro" style="width:40%;margin-right:20px;" maxlength="40"
nanrui committed
43
                         placeholder="请输入货物的起运地"></c-input>
wangyanjiao committed
44 45
               </el-form-item>
          </c-col>
jxl committed
46

wangyanjiao committed
47
          <c-col :span="24">
nanrui committed
48
               <el-form-item label="货物的到达地" prop="bodgrp.rec.shpto" label-width="180px">
wangyanjiao committed
49
                    <c-input v-model="model.bodgrp.rec.shpto" style="width:40%;margin-right:20px;" maxlength="40"
nanrui committed
50
                         placeholder="请输入货物的到达地"></c-input>
wangyanjiao committed
51 52 53
               </el-form-item>
          </c-col>
          <c-col :span="24">
nanrui committed
54
               <el-form-item label="装船日期" prop="bodgrp.rec.shpdat" label-width="180px">
wangyanjiao committed
55
                    <c-date-picker type="date" v-model="model.bodgrp.rec.shpdat" style="width:40%;margin-right:20px;"
nanrui committed
56
                         placeholder="请选择装船日期"></c-date-picker>
wangyanjiao committed
57 58 59 60
               </el-form-item>
          </c-col>

          <c-col :span="24">
nanrui committed
61
               <el-form-item label="货物描述" prop="bodgrp.blk.goddes" label-width="180px">
wangyanjiao committed
62 63
                    <c-input type="textarea" :autosize="{ minRows: 6, maxRows: 8}" v-model="model.bodgrp.blk.goddes"
                         style="width:70%;margin-right:20px;" maxlength="325" show-word-limit
nanrui committed
64
                         placeholder="请输入货物描述"></c-input>
wangyanjiao committed
65 66 67 68
               </el-form-item>
          </c-col>

     </div>
jxl committed
69 70
</template>
<script>
wangyanjiao committed
71 72 73 74
     import Api from "~/service/Api"
     import commonProcess from "~/mixin/commonProcess";
     import CodeTable from "~/config/CodeTable"
     import Event from "~/model/Botdav/Event"
jxl committed
75

wangyanjiao committed
76 77 78 79 80 81
     export default {
          inject: ['root'],
          props: ["model", "codes"],
          mixins: [commonProcess],
          data() {
               return {
jxl committed
82

wangyanjiao committed
83 84 85 86
               }
          },
          methods: { ...Event },
          created: function () {
jxl committed
87

wangyanjiao committed
88 89
          }
     }
jxl committed
90 91 92
</script>
<style>

wangyanjiao committed
93
</style>