Dscins.vue 12.6 KB
Newer Older
m  
1198835488@qq.com committed
1
<template>
javaHeight committed
2
  <div>
wangna committed
3
    <!-- left -->
Wuyuqiu committed
4
    <c-col :span="12" style="padding-right: 20px;">
javaHeight committed
5
      <!-- <c-col :span="24">
wangna committed
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
        <c-col :span="22">
          <c-form-item label="不符点描述" prop="btdgrp.blk.docdis">
            <c-input
              type="textarea"
              v-model="model.btdgrp.blk.docdis"
              maxlength="65"
              show-word-limit
              placeholder="请输入不符点描述"
              rows="4"
            ></c-input>
          </c-form-item>
        </c-col>
        <c-col :span="2">
          <c-button
            size="small"
            type="primary"
            class="point"
            icon="el-icon-search"
            @click="
              showGridPromptDialog(
                'bttp.docdis.buttxmsel',
                null,
                null,
                { TXT: 'btdgrp.blk.docdis' },
                { TXT: false },
                'doxpDialog'
              )
            "
          >
            ...
          </c-button>
        </c-col>
javaHeight committed
38
      </c-col> -->
wangna committed
39
      <c-col :span="24">
javaHeight committed
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
          <c-form-item label="不符点描述" prop="btdgrp.blk.docdis">
            <c-fullbox>
              <c-input
                type="textarea"
                v-model="model.btdgrp.blk.docdis"
                maxlength="65"
                show-word-limit
                placeholder="请输入不符点描述"
                rows="4"
              ></c-input>
              <template slot="footer">
                <c-button
                  size="small"
                  type="primary"
                  style="margin-left: 10px"
                  class="point"
                  icon="el-icon-search"
                  @click="
                    showGridPromptDialog(
                      'bttp.docdis.buttxmsel',
                      null,
                      null,
                      { TXT: 'btdgrp.blk.docdis' },
                      { TXT: false },
                      'doxpDialog'
                    )
                  "
                >
                </c-button>
              </template>
            </c-fullbox>
          </c-form-item>
        </c-col>

      <!-- <c-col :span="24">
wangna committed
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
        <c-col :span="22">
          <el-form-item label="国内不符点描述" prop="btdgrp.blk.intdis">
            <c-input
              type="textarea"
              v-model="model.btdgrp.blk.intdis"
              maxlength="65"
              show-word-limit
              placeholder="请输入国内不符点描述"
              rows="4"
            ></c-input>
          </el-form-item>
        </c-col>
        <c-col :span="2">
          <c-button
            size="small"
            class="point"
            type="primary"
            icon="el-icon-search"
            @click="
              showGridPromptDialog(
                'bttp.intdis.buttxmsel',
                null,
                null,
                { TXT: 'btdgrp.blk.intdis' },
                { TXT: false },
                'doxpDialog'
              )
            "
          >
            ...
          </c-button>
        </c-col>
javaHeight committed
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
      </c-col> -->
      <c-col :span="24">
        <el-form-item label="国内不符点描述" prop="btdgrp.blk.intdis">
          <c-fullbox>
            <c-input
              type="textarea"
              v-model="model.btdgrp.blk.intdis"
              maxlength="65"
              show-word-limit
              placeholder="请输入国内不符点描述"
              rows="4"
            ></c-input>
            <template slot="footer">
              <c-button
                size="small"
                class="point"
                type="primary"
                style="margin-left:10px"
                icon="el-icon-search"
                @click="
                  showGridPromptDialog(
                    'bttp.intdis.buttxmsel',
                    null,
                    null,
                    { TXT: 'btdgrp.blk.intdis' },
                    { TXT: false },
                    'doxpDialog'
                  )
                "
              >
              </c-button>
            </template>
          </c-fullbox>
        </el-form-item>
wangna committed
141
      </c-col>
m  
1198835488@qq.com committed
142

javaHeight committed
143
      <!-- <c-col :span="24">
wangna committed
144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
        <c-col :span="22">
          <el-form-item label="评论和结论" prop="btdgrp.blk.comcon">
            <c-input
              type="textarea"
              v-model="model.btdgrp.blk.comcon"
              maxlength="65"
              show-word-limit
              placeholder="请输入评论和结论"
              rows="2"
            ></c-input>
          </el-form-item>
        </c-col>
        <c-col :span="2">
          <c-button
            size="small"
            class="point"
            type="primary"
            icon="el-icon-search"
            @click="
              showGridPromptDialog(
                'bttp.comcon.buttxmsel',
                null,
                null,
                { TXT: 'btdgrp.blk.comcon' },
                { TXT: false },
                'doxpDialog'
              )
            "
          >
            ...
          </c-button>
        </c-col>
javaHeight committed
176
      </c-col> -->
wangna committed
177
      <c-col :span="24">
javaHeight committed
178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212
        <el-form-item label="评论和结论" prop="btdgrp.blk.comcon">
          <c-fullbox>
            <c-input
              type="textarea"
              v-model="model.btdgrp.blk.comcon"
              maxlength="65"
              show-word-limit
              placeholder="请输入评论和结论"
              rows="2"
            ></c-input>
            <template slot="footer">
              <c-button
                size="small"
                class="point"
                type="primary"
                style="margin-left: 10px"
                icon="el-icon-search"
                @click="
                  showGridPromptDialog(
                    'bttp.comcon.buttxmsel',
                    null,
                    null,
                    { TXT: 'btdgrp.blk.comcon' },
                    { TXT: false },
                    'doxpDialog'
                  )
                "
              >
              </c-button>
            </template>
          </c-fullbox>
        </el-form-item>
      </c-col>

      <!-- <c-col :span="24">
wangna committed
213 214 215 216 217 218 219 220 221 222 223 224 225 226 227
        <c-col :span="22">
          <el-form-item
            label="本单据结算说明"
            prop="btdgrp.blk.setinsbt"
          >
            <c-input
              type="textarea"
              v-model="model.btdgrp.blk.setinsbt"
              maxlength="65"
              show-word-limit
              placeholder="请输入本单据结算说明"
              rows="4"
            ></c-input>
          </el-form-item>
        </c-col>
m  
1198835488@qq.com committed
228

wangna committed
229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248
        <c-col :span="2">
          <c-button
            size="small"
            class="point"
            type="primary"
            icon="el-icon-search"
            @click="
              showGridPromptDialog(
                'bttp.setins.buttxmsel',
                null,
                null,
                { TXT: 'btdgrp.blk.setinsbt' },
                { TXT: false },
                'doxpDialog'
              )
            "
          >
            ...
          </c-button>
        </c-col>
javaHeight committed
249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285
      </c-col> -->
      <c-col :span="24">
        <el-form-item
          label="本单据结算说明"
          prop="btdgrp.blk.setinsbt"
        >
          <c-fullbox>
            <c-input
              type="textarea"
              v-model="model.btdgrp.blk.setinsbt"
              maxlength="65"
              show-word-limit
              placeholder="请输入本单据结算说明"
              rows="4"
            ></c-input>
            <template slot="footer">
              <c-button
                size="small"
                class="point"
                type="primary"
                style="margin-left: 10px"
                icon="el-icon-search"
                @click="
                  showGridPromptDialog(
                    'bttp.setins.buttxmsel',
                    null,
                    null,
                    { TXT: 'btdgrp.blk.setinsbt' },
                    { TXT: false },
                    'doxpDialog'
                  )
                "
              >
              </c-button>
            </template>
          </c-fullbox>
        </el-form-item>
wangna committed
286
      </c-col>
m  
1198835488@qq.com committed
287

wangna committed
288 289 290 291 292 293 294 295 296 297 298
      <c-col :span="24">
        <c-docpre
          :model="model"
          rol="docgrdmbe2"
          :argadr="{
            path: 'btdgrp.blk.prsdocbe2',
            grp: 'bttp',
            code: 'docpre',
          }"
        ></c-docpre>
      </c-col>
299

javaHeight committed
300
      <!-- <c-col :span="24">
wangna committed
301 302 303 304 305 306 307 308 309
        <c-docpre
          :model="model"
          rol="docgrdmbe1"
          :argadr="{
            path: 'btdgrp.blk.prsdocbe1',
            grp: 'bttp',
            code: 'docpre',
          }"
        ></c-docpre>
javaHeight committed
310
      </c-col> -->
wangna committed
311
    </c-col>
m  
1198835488@qq.com committed
312

wangna committed
313
    <!-- right -->
Wuyuqiu committed
314
    <c-col :span="12" style="padding-left: 20px;">
wangna committed
315
      <c-col :span="24">
javaHeight committed
316 317
        <el-form-item label="" prop="" class="checkbox-left">
          <c-checkbox v-model="model.btdgrp.blk.docdisflg" disabled
wangna committed
318 319
          >不符点描述修改</c-checkbox
        >
javaHeight committed
320
         </el-form-item>
wangna committed
321
      </c-col>
m  
1198835488@qq.com committed
322

wangna committed
323 324 325 326 327 328 329 330 331 332 333
      <c-col :span="24">
        <el-form-item label="进一步处理" prop="bttp.futhndflg">
          <c-select
            v-model="model.bttp.futhndflg"
            style="width: 100%"
            placeholder="请选择进一步处理"
            :code="codes.folwupopt2"
          >
          </c-select>
        </el-form-item>
      </c-col>
m  
1198835488@qq.com committed
334

wangna committed
335
      <c-col :span="24">
javaHeight committed
336 337
        <el-form-item label="" prop="" class="checkbox-left">
          <c-checkbox v-model="model.btdgrp.rec.approvcod"
wangna committed
338 339
          >不符点寄单</c-checkbox
        >
javaHeight committed
340
         </el-form-item>
wangna committed
341
      </c-col>
m  
1198835488@qq.com committed
342

wangna committed
343
      <c-col :span="24">
javaHeight committed
344 345 346
        <el-form-item label="" prop="" class="checkbox-left">
          <c-checkbox v-model="model.bttp.cre752flg">收到开证行的MT752报文的状态登记</c-checkbox>
         </el-form-item>
wangna committed
347
      </c-col>
m  
1198835488@qq.com committed
348

wangna committed
349 350 351 352 353 354 355 356 357 358 359 360
      <c-col :span="24">
        <el-form-item label="进一步识别" prop="btdgrp.rec.furide">
          <c-select
            v-model="model.btdgrp.rec.furide"
            style="width: 100%"
            placeholder="请选择进一步识别"
            :code="codes.furide"
            :disabled="model.bttp.cre752flg !== ''"
          >
          </c-select>
        </el-form-item>
      </c-col>
m  
1198835488@qq.com committed
361

wangna committed
362 363 364 365 366 367 368 369 370 371 372
      <c-col :span="24">
        <el-form-item label="通知日期" prop="btdgrp.rec.disdat">
          <c-date-picker
            type="date"
            v-model="model.btdgrp.rec.disdat"
            style="width: 100%"
            placeholder="请选择通知日期"
            :disabled="model.bttp.cre752flg == ''"
          ></c-date-picker>
        </el-form-item>
      </c-col>
m  
1198835488@qq.com committed
373

wangna committed
374
      <c-col :span="24">
javaHeight committed
375 376
        <el-form-item label="" prop="" class="checkbox-left">
          <c-checkbox v-model="model.btdsnd.snd732" disabled
wangna committed
377 378
          >创建732报文</c-checkbox
        >
javaHeight committed
379
         </el-form-item>
wangna committed
380
      </c-col>
m  
1198835488@qq.com committed
381

wangna committed
382
      <c-col :span="24">
javaHeight committed
383 384 385 386 387 388 389 390 391 392 393 394 395 396 397
        <c-docpre
        style="margin-top: 14px"
          :model="model"
          rol="docgrdmbe1"
          :argadr="{
            path: 'btdgrp.blk.prsdocbe1',
            grp: 'bttp',
            code: 'docpre',
          }"
        ></c-docpre>
      </c-col>

      <c-col :span="12">
        <el-form-item label="" prop="" class="checkbox-left">
          <c-checkbox v-model="model.rmbclmlate"
wangna committed
398 399
          >后期索汇</c-checkbox
        >
javaHeight committed
400
         </el-form-item>
wangna committed
401
      </c-col>
402

javaHeight committed
403 404 405
      <c-col :span="12">
        <el-form-item label="" prop="" class="checkbox-left">
          <c-checkbox
wangna committed
406 407 408 409
          v-model="model.rmbclmnow"
          :disabled="model.rmbclmlate !== ''"
          >即期索汇</c-checkbox
        >
javaHeight committed
410
         </el-form-item>
wangna committed
411 412
      </c-col>
    </c-col>
javaHeight committed
413
  </div>
m  
1198835488@qq.com committed
414 415
</template>
<script>
wangna committed
416 417 418 419 420
import Api from "~/service/Api";
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Bttsnd/Event";
import Docpre from "~/views/Public/Docpre";
m  
1198835488@qq.com committed
421

wangna committed
422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437
export default {
  components: { "c-docpre": Docpre },
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {};
  },
  methods: {
    ...Event,
    change() {
      console.log(123);
    },
  },
  created: function () {},
};
m  
1198835488@qq.com committed
438 439
</script>
<style>
wangna committed
440 441 442 443 444
.point {
  margin-left: 0px;
  line-height: 16px;
  height: 20px;
}
wangren committed
445
</style>