Inst.vue 7.05 KB
Newer Older
jxl committed
1
<template>
hewei committed
2 3 4 5
<!--  <c-row>-->
  <div class="eibs">


6
    <!-- ====================左边======================= -->
hewei committed
7 8
    <c-col :span="12" style="padding-right: 20px">
      <c-col :span="24">
nanrui committed
9
        <el-form-item label="放单指示条款" style="padding-top:15px">
10
          <c-fullbox>
11
            <c-input type="textarea" v-model="model.bodgrp.blk.colins" maxlength="3250" :rows="3" show-word-limit
nanrui committed
12
              placeholder="请输入放单指示条款" >
13 14
            </c-input>
            <template slot="footer">
LiRui committed
15
              <c-button size="small" type="primary" icon="el-icon-more"
16 17
                @click="showGridPromptDialog('botp.colins.buttxmsel', null, null,{TXT: ''}, {TXT: false},'doxpDialog')"
>
18 19 20
              </c-button>
            </template>
          </c-fullbox>
jxl committed
21
        </el-form-item>
22 23 24 25 26 27 28
      </c-col>





      <c-col :span="24">
LiRui committed
29 30
        <el-form-item label="" prop="bodgrp.blk.colinsflg" >
          <c-checkbox v-model="colinsflg" style="margin-right:80px;">放单指示条款修改</c-checkbox>
31 32 33
        </el-form-item>
      </c-col>

hewei committed
34
      <c-col :span="24">
nanrui committed
35
        <el-form-item label="汇票指示条款" style="padding-top:15px">
36
          <c-fullbox>
37
            <c-input type="textarea" v-model="model.bodgrp.blk.dftins" maxlength="390" :rows="5" show-word-limit
nanrui committed
38
              placeholder="请输入汇票指示条款">
39 40
            </c-input>
            <template slot="footer">
LiRui committed
41
              <c-button size="small" type="primary" icon="el-icon-more"
huangxin committed
42
                @click="showGridPromptDialog('botp.dftins.buttxmsel', null, null,{TXT: 'bodgrp.blk.dftins'}, {TXT: false},'doxpDialog')">
43 44 45 46 47
              </c-button>
            </template>
          </c-fullbox>
        </el-form-item>
      </c-col>
jxl committed
48

49

hewei committed
50
      <c-col :span="24">
nanrui committed
51
        <el-form-item label="拒绝证书指示条款" style="padding-top:15px">
52
          <c-fullbox>
53
            <c-input type="textarea" v-model="model.bodgrp.blk.proins" maxlength="130" :rows="2" show-word-limit
nanrui committed
54
              placeholder="请输入拒绝证书指示条款">
55 56
            </c-input>
            <template slot="footer">
LiRui committed
57
              <c-button size="small" type="primary" icon="el-icon-more"
58 59
                @click="showGridPromptDialog('botp.proins.buttxmsel', null, null,{TXT: 'bodgrp.blk.proins'}, {TXT: false},'doxpDialog')"
>
60 61 62 63 64 65 66
              </c-button>
            </template>
          </c-fullbox>
        </el-form-item>
      </c-col>


hewei committed
67
      <c-col :span="24">
nanrui committed
68
        <el-form-item label="其它指示条款" style="padding-top:15px">
69
          <c-fullbox>
70
            <c-input type="textarea" v-model="model.bodgrp.blk.othins" maxlength="390" :rows="5" show-word-limit
nanrui committed
71
              placeholder="请输入其它指示条款">
72 73
            </c-input>
            <template slot="footer">
LiRui committed
74
              <c-button size="small" type="primary" icon="el-icon-more"
75 76
                @click="showGridPromptDialog('botp.othins.buttxmsel', null, null,{TXT: 'bodgrp.blk.othins'}, {TXT: false},'doxpDialog')"
>
77 78 79 80
              </c-button>
            </template>
          </c-fullbox>
        </el-form-item>
jxl committed
81 82
      </c-col>

nanrui committed
83

hewei committed
84
      <c-col :span="24">
nanrui committed
85
        <el-form-item label="仓储/保险指示条款" style="padding-top:15px">
86
          <c-fullbox>
87
            <c-input type="textarea" v-model="model.bodgrp.blk.delins" maxlength="130" :rows="2" show-word-limit
nanrui committed
88
              placeholder="请输入仓储/保险指示条款">
89 90
            </c-input>
            <template slot="footer">
LiRui committed
91
              <c-button size="small" type="primary" icon="el-icon-more"
92 93
                @click="showGridPromptDialog('botp.whins.buttxmsel', null, null,{TXT: 'bodgrp.blk.delins'}, {TXT: false},'doxpDialog')"
>
94 95 96 97 98 99 100 101 102 103 104 105
              </c-button>
            </template>
          </c-fullbox>
        </el-form-item>
      </c-col>

    </c-col>




    <!-- ====================右边======================= -->
hewei committed
106
    <c-col :span="12" style="padding-left: 20px">
107
      <c-col :span="24" style="width:100%">
nanrui committed
108 109
        <el-form-item label="费用承担条款" prop="bodgrp.rec.chato" style="padding-top:15px">
          <c-select v-model="model.bodgrp.rec.chato" style="width:100%" placeholder="请选择条款"
110
            :code="codes.chadet">
111
          </c-select>
jxl committed
112
        </el-form-item>
113
      </c-col>
jxl committed
114

115
      <c-col :span="24" style="width:100%">
nanrui committed
116
        <el-form-item label="手续费支付的附加详述" prop="bodgrp.blk.chgtxt" style="padding-top:15px">
117

118
          <c-input type="textarea" v-model="model.bodgrp.blk.chgtxt" maxlength="210" :rows="5" show-word-limit
nanrui committed
119
            placeholder="请输入手续费支付的附加详述"></c-input>
120

jxl committed
121 122

        </el-form-item>
123 124 125
      </c-col>


LiRui committed
126 127 128 129
      <c-col :span="24">
        <el-form-item class="checkbox-right">
        <c-checkbox v-model="model.bodgrp.rec.focflg" >无偿放单选项</c-checkbox>
      </el-form-item>
130 131
      </c-col>
      <c-col :span="24" style="width:100%">
nanrui committed
132
        <el-form-item label="交单时是否放弃向代收行收取费用的权力" prop="bodgrp.rec.waicolcod" style="padding-top:15px">
133

nanrui committed
134
          <c-select v-model="model.bodgrp.rec.waicolcod" style="width:100%" placeholder="请选择拒绝证书指示条款"
135 136
            :code="codes.waicolcod">
          </c-select>
jxl committed
137 138

        </el-form-item>
139 140 141
      </c-col>

      <c-col :span="24" style="width:100%">
nanrui committed
142
        <el-form-item label="放单时是否放弃向托收行收取费用的权力" prop="bodgrp.rec.wairmtcod" style="padding-top:15px">
143 144

          <c-select v-model="model.bodgrp.rec.wairmtcod" style="width:100%"
nanrui committed
145
            placeholder="请选择放单时是否放弃向托收行收取费用的权力" :code="codes.wairmtcod">
146 147
          </c-select>

jxl committed
148
        </el-form-item>
149
      </c-col>
jxl committed
150

151 152

      <c-col :span="24" style="width:100%">
nanrui committed
153
        <el-form-item label="延期付款期限" prop="bodgrp.rec.othins" style="padding-top:15px">
154

nanrui committed
155
          <c-select v-model="model.bodgrp.rec.othins" style="width:100%" placeholder="请选择延期付款期限"
156 157 158 159 160 161
            :code="codes.othins">
          </c-select>
        </el-form-item>
      </c-col>

      <c-col :span="12">
nanrui committed
162
        <el-form-item label="面函提示" prop="bodgrp.cbs.opn1.cur" style="padding-top:15px">
jxl committed
163

hewei committed
164
          <c-select disabled v-model="model.bodgrp.cbs.opn1.cur" placeholder="请选择Document Amount" style="width: 100%"
165 166 167 168 169 170
            :code="codes.cur">
          </c-select>

        </el-form-item>
      </c-col>
      <c-col :span="12">
hewei committed
171
        <c-input style="padding-top:15px; margin: 0 0 0 5px" v-model="model.bodgrp.rec.lescom" placeholder="请输入Document Amount"></c-input>
172
      </c-col>
jxl committed
173
    </c-col>
hewei committed
174 175
<!--  </c-row>-->
  </div>
jxl committed
176 177 178
</template>
<script>
import Api from "~/service/Api"
wangren committed
179
import commonProcess from "~/mixin/commonProcess";
jxl committed
180
import CodeTable from "~/config/CodeTable"
181
import Event from "~/model/Botdav/Event"
jxl committed
182 183

export default {
184 185 186 187 188
  inject: ['root'],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {
jxl committed
189 190

    }
191 192 193 194 195 196 197 198 199 200 201 202 203 204 205
  },
  methods: { ...Event },
  created: function () {

  },
  computed:{
    colinsflg:{
      get(){
        return this.model.bodgrp.blk.colinsflg ==="X";
      },
      set(val){
        this.model.bodgrp.blk.colinsflg=val ? "X":"";
      },
    },
  }
jxl committed
206
}
207

jxl committed
208 209 210
</script>
<style>
</style>