Dscins.vue 9.87 KB
Newer Older
jinqian committed
1 2
<template>
  <div class="eibs-tab">
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
              <!--================================左边================================== -->
    <c-col :span="11"> 
      <c-col :span="24" >
        <c-col :span="21">
          <el-form-item label="Discrepancies" prop="bedgrp.blk.docdis">
            <c-input
              type="textarea"
              v-model="model.bedgrp.blk.docdis"
              maxlength="3500"
              :rows="3"
              show-word-limit
              placeholder="请输入Discrepancies"
              :disabled="model.bedgrp.blk.docdisflg==''"
            ></c-input>
          </el-form-item>
        </c-col>
        <c-col :span="3">
          <c-button
            size="small"
            type="primary"
            icon="el-icon-search"
            :disabled="model.bedgrp.blk.docdisflg==''"
25
            @click="showGridPromptDialog('betp.docdis.buttxmsel',null,null,{TXT:'bedgrp.blk.docdis'},{TXT:false},'doxpDialog')"
26
          >
27
          <!-- @click="onDocdisButtxmsel" -->
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
            ...
          </c-button>
        </c-col>
      </c-col>

      <c-col :span="24">
        <c-col :span="21">
          <el-form-item label="Internal Discrepancies" prop="bedgrp.blk.intdis">
          <c-input
            type="textarea"
            v-model="model.bedgrp.blk.intdis"
            maxlength="1300"
            :rows="3"
            show-word-limit
            placeholder="请输入Internal Discrepancies"
          ></c-input>
        </el-form-item>
        </c-col>
        <c-col :span="3">
          <c-button
            size="small"
            type="primary"
            icon="el-icon-search"
51
            @click="showGridPromptDialog('betp.intdis.buttxmsel',null,null,{TXT:'bedgrp.blk.intdis'},{TXT:false},'doxpDialog')"
52
          >
53
          <!-- @click="onIntdisButtxmsel" -->
54 55 56 57
            ...
          </c-button>
        </c-col>
      </c-col>
jinqian committed
58

59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
      <c-col :span="24">
        <c-col :span="21">
          <el-form-item label="Comments and Conclusions" prop="bedgrp.blk.comcon">
            <c-input
              type="textarea"
              v-model="model.bedgrp.blk.comcon"
              maxlength="1300"
              :rows="3"
              show-word-limit
              placeholder="请输入Comments and Conclusions"
            ></c-input>
          </el-form-item>
        </c-col>
        <c-col :span="3">
          <c-button
            size="small"
            type="primary"
            icon="el-icon-search"
77
            @click="showGridPromptDialog('betp.comcon.buttxmsel',null,null,{TXT:'bedgrp.blk.comcon'},{TXT:false},'doxpDialog')"
78
          >
79
          <!-- @click="onComconButtxmsel" -->
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
            ...
          </c-button>
        </c-col>
      </c-col>

      <c-col :span="24">
        <c-col :span="21">
          <el-form-item
            label="Settlement Instructions transaction field"
            prop="bedgrp.blk.setinsbe"
          >
            <c-input
              type="textarea"
              v-model="model.bedgrp.blk.setinsbe"
              maxlength="390"
              :rows="3"
              show-word-limit
              placeholder="请输入Settlement Instructions transaction field"
            ></c-input>
          </el-form-item>
        </c-col>
        <c-col :span="3">
          <c-button
            size="small"
            type="primary"
            icon="el-icon-search"
106
            @click="showGridPromptDialog('betp.setinstxm.buttxmsel',null,null,{TXT:'bedgrp.blk.setinsbe'},{TXT:false},'doxpDialog')"
107
          >
108
          <!-- @click="onSetinstxmButtxmsel" -->
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
            ...
          </c-button>
        </c-col>
      </c-col>
            <!-- 左下表格 -->
      <c-col :span="24">
        <c-docpre :model="model" :argadr="{
          path: 'bedgrp.blk.prsdoc',
          grp: 'betp',
          code: 'docpre',
        }"></c-docpre>
      </c-col>
    <!-- <c-col :span="12">
      <span
        v-text="model.betp.docgrdm.docdsclab"
        data-path=".betp.docgrdm.docdsclab"
      >
      </span>
    </c-col> -->
    </c-col>

          <!--===========================右边============================== -->
    <c-col :span="11" :offset="1"> 
      <c-col :span="24">  
jinqian committed
133
        <c-checkbox v-model="model.bedgrp.blk.docdisflg"
134 135 136 137 138 139 140 141 142 143 144 145 146
        >Discrepancies modified</c-checkbox>
      </c-col>

          <!-- Futher Handing -->
    <c-col :span="24">
        <!-- Processing Options -->
      <el-form-item label="Futher Handing" prop="betp.folwupopt">
        <c-select
          v-model="model.betp.folwupopt"
          style="width: 100%"
          placeholder="请选择Processing Options"
          :code="codes.folwupopt"
          disabled
jinqian committed
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 176 177 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 213 214 215
        </c-select>
      </el-form-item>
    </c-col>

        <c-col :span="24">
      <el-form-item label="Payer" prop="bedgrp.rec.payrol">
        <c-select
          v-model="model.bedgrp.rec.payrol"
          style="width: 100%"
          placeholder="请选择Payer"
          :code="codes.rolall"
          @change="eventFunction(
                    'bedgrp.rec.payrol'
                  )"
        >
        </c-select>
      </el-form-item>
    </c-col>

<!-- Referance -->
    <c-col :span="24">
      <el-form-item label="Reference" prop="bedgrp.oth.pts.ref">
        <c-input
          v-model="model.bedgrp.oth.pts.ref"
          maxlength="16"
          placeholder="请输入参考号"
          :disabled="model.bedgrp.rec.payrol!='OTH'"
        ></c-input>
      </el-form-item>
    </c-col>
    <c-col :span="24">
      <!-- <c-ptap
        :model="model"
        :argadr="{
          title: '',
          grp: 'bedgrp',
          rol: 'oth',
        }"
        @onSeainf="onSeainf"
        @onAplpDet="onOthpDet"
        :disabledRef="true"
        :disabledExtkey="true"
        :disabled="true"
      >
      </c-ptap> -->
      <c-ptap1
        :model="model"
        :argadr="{
          title: '',
          grp: 'bedgrp',
          rol: 'oth',
        }"
        @onSeainf="onSeainf"
        @onAplpDet="onOthpDet"
        :disabled1="model.bedgrp.rec.payrol!='OTH'"
      >
      </c-ptap1>
    </c-col>
    </c-col>

    <!-- <c-col :span="12">
      <c-checkbox v-model="model.bedgrp.blk.docdisflg"
        >Discrepancies modified</c-checkbox
      >
    </c-col>

    <c-col :span="12">
      <el-form-item label="Discrepancies" prop="bedgrp.blk.docdis">
jinqian committed
216 217 218 219 220 221 222 223 224 225
        <c-input
          type="textarea"
          v-model="model.bedgrp.blk.docdis"
          maxlength="50"
          show-word-limit
          placeholder="请输入Discrepancies"
        ></c-input>
      </el-form-item>
    </c-col>

226
    <c-col :span="12">
jinqian committed
227 228 229 230 231 232 233 234 235 236
      <c-button
        size="small"
        type="primary"
        icon="el-icon-search"
        @click="onDocdisButtxmsel"
      >
        ...
      </c-button>
    </c-col>

237 238 239 240 241 242 243 244 245 246 247 248 249
    <c-col :span="12">
      <el-form-item label="Processing Options" prop="betp.folwupopt">
        <c-select
          v-model="model.betp.folwupopt"
          style="width: 100%"
          placeholder="请选择Processing Options"
        >
        </c-select>
      </el-form-item>
    </c-col>

    <c-col :span="12">
      <el-form-item label="Internal Discrepancies" prop="bedgrp.blk.intdis">
jinqian committed
250 251 252 253 254 255 256 257 258 259
        <c-input
          type="textarea"
          v-model="model.bedgrp.blk.intdis"
          maxlength="65"
          show-word-limit
          placeholder="请输入Internal Discrepancies"
        ></c-input>
      </el-form-item>
    </c-col>

260 261 262 263 264 265 266 267 268 269 270 271
    <c-col :span="12">
      <el-form-item label="Payer" prop="bedgrp.rec.payrol">
        <c-select
          v-model="model.bedgrp.rec.payrol"
          style="width: 100%"
          placeholder="请选择Payer"
        >
        </c-select>
      </el-form-item>
    </c-col>

    <c-col :span="12">
jinqian committed
272 273 274 275 276 277 278 279 280 281
      <c-button
        size="small"
        type="primary"
        icon="el-icon-search"
        @click="onIntdisButtxmsel"
      >
        ...
      </c-button>
    </c-col>

282 283 284 285 286 287 288 289 290
    <c-col :span="12">
      <el-form-item label="参考号" prop="bedgrp.oth.pts.ref">
        <c-input
          v-model="model.bedgrp.oth.pts.ref"
          maxlength="16"
          placeholder="请输入参考号"
        ></c-input>
      </el-form-item>
    </c-col>
jinqian committed
291

292 293
    <c-col :span="12">
      <el-form-item label="Comments and Conclusions" prop="bedgrp.blk.comcon">
jinqian committed
294 295 296 297 298 299 300 301 302 303
        <c-input
          type="textarea"
          v-model="model.bedgrp.blk.comcon"
          maxlength="65"
          show-word-limit
          placeholder="请输入Comments and Conclusions"
        ></c-input>
      </el-form-item>
    </c-col>

304
    <c-col :span="12">
jinqian committed
305 306 307 308 309 310 311 312 313 314
      <c-button
        size="small"
        type="primary"
        icon="el-icon-search"
        @click="onComconButtxmsel"
      >
        ...
      </c-button>
    </c-col>

315
    <c-col :span="12">
jinqian committed
316 317 318 319 320 321 322 323 324 325
      <c-button
        size="small"
        type="primary"
        icon="el-icon-search"
        @click="onSetinstxmButtxmsel"
      >
        ...
      </c-button>
    </c-col>

326 327 328 329 330 331 332 333 334 335 336 337 338
    <c-col :span="12">
      <el-form-item
        label="Settlement Instructions transaction field"
        prop="bedgrp.blk.setinsbe"
      >
        <c-input
          type="textarea"
          v-model="model.bedgrp.blk.setinsbe"
          maxlength="65"
          show-word-limit
          placeholder="请输入Settlement Instructions transaction field"
        ></c-input>
      </el-form-item>
jinqian committed
339 340
    </c-col>

341 342 343 344 345 346 347
    <c-col :span="12">
      <span
        v-text="model.betp.docgrdm.docdsclab"
        data-path=".betp.docgrdm.docdsclab"
      >
      </span>
    </c-col> -->
jinqian committed
348 349 350
  </div>
</template>
<script>
351 352 353 354 355 356
import Api from '~/service/Api'
import commonProcess from '~/mixin/commonProcess'
import CodeTable from '~/config/CodeTable'
import Event from '~/model/Betdrv/Event'
import Ptap1 from "~/views/Public/Ptap1"
import Docpre from "~/views/Public/Docpre"
jinqian committed
357 358

export default {
359 360 361 362 363 364
  components: {
    "c-ptap1": Ptap1,
    "c-docpre": Docpre,
  },
  inject: ['root'],
  props: ['model', 'codes'],
365
  mixins: [commonProcess],
jinqian committed
366
  data() {
367
    return {}
jinqian committed
368 369
  },
  methods: { ...Event },
370 371
  created: function () {},
}
jinqian committed
372
</script>
373
<style></style>