Dscins.vue 7.35 KB
Newer Older
m  
1198835488@qq.com committed
1
<template>
wangna committed
2 3
  <c-row>
    <!-- left -->
Wuyuqiu committed
4
    <c-col :span="12" style="padding-right: 20px;">
wangna committed
5 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 38
      <c-col :span="24">
        <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>
      </c-col>
39

wangna 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
      <c-col :span="24">
        <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>
      </c-col>
m  
1198835488@qq.com committed
74

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 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
      <c-col :span="24">
        <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>
      </c-col>
      <c-col :span="24">
        <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
125

wangna committed
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
        <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>
      </c-col>
m  
1198835488@qq.com committed
147

wangna committed
148 149 150 151 152 153 154 155 156 157 158
      <c-col :span="24">
        <c-docpre
          :model="model"
          rol="docgrdmbe2"
          :argadr="{
            path: 'btdgrp.blk.prsdocbe2',
            grp: 'bttp',
            code: 'docpre',
          }"
        ></c-docpre>
      </c-col>
159

wangna committed
160 161 162 163 164 165 166 167 168 169 170 171
      <c-col :span="24">
        <c-docpre
          :model="model"
          rol="docgrdmbe1"
          :argadr="{
            path: 'btdgrp.blk.prsdocbe1',
            grp: 'bttp',
            code: 'docpre',
          }"
        ></c-docpre>
      </c-col>
    </c-col>
m  
1198835488@qq.com committed
172

wangna committed
173
    <!-- right -->
Wuyuqiu committed
174
    <c-col :span="12" style="padding-left: 20px;">
wangna committed
175 176 177 178 179
      <c-col :span="24">
        <c-checkbox v-model="model.btdgrp.blk.docdisflg" disabled
          >不符点描述修改</c-checkbox
        >
      </c-col>
m  
1198835488@qq.com committed
180

wangna committed
181 182 183 184 185 186 187 188 189 190 191
      <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
192

wangna committed
193 194 195 196 197
      <c-col :span="24">
        <c-checkbox v-model="model.btdgrp.rec.approvcod"
          >不符点寄单</c-checkbox
        >
      </c-col>
m  
1198835488@qq.com committed
198

wangna committed
199 200 201
      <c-col :span="24">
        <c-checkbox v-model="model.bttp.cre752flg">收到开证行的MT752报文的状态登记</c-checkbox>
      </c-col>
m  
1198835488@qq.com committed
202

wangna committed
203 204 205 206 207 208 209 210 211 212 213 214
      <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
215

wangna committed
216 217 218 219 220 221 222 223 224 225 226
      <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
227

wangna committed
228 229 230 231 232
      <c-col :span="24">
        <c-checkbox v-model="model.btdsnd.snd732" disabled
          >创建732报文</c-checkbox
        >
      </c-col>
m  
1198835488@qq.com committed
233

wangna committed
234 235 236 237 238
      <c-col :span="24">
        <c-checkbox v-model="model.rmbclmlate"
          >后期索汇</c-checkbox
        >
      </c-col>
239

wangna committed
240 241 242 243 244 245 246 247 248
      <c-col :span="24">
        <c-checkbox
          v-model="model.rmbclmnow"
          :disabled="model.rmbclmlate !== ''"
          >即期索汇</c-checkbox
        >
      </c-col>
    </c-col>
  </c-row>
m  
1198835488@qq.com committed
249 250
</template>
<script>
wangna committed
251 252 253 254 255
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
256

wangna committed
257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272
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
273 274
</script>
<style>
wangna committed
275 276 277 278 279
.point {
  margin-left: 0px;
  line-height: 16px;
  height: 20px;
}
wangren committed
280
</style>