Confp.vue 10.1 KB
Newer Older
liyixun committed
1 2
<template>
  <div class="eibs-tab">
liyixun committed
3 4 5 6 7
    <c-row>
      <c-col :span="24">
        <c-col :span="12">
          <c-col :span="24">
            <el-form-item label="">
wangna committed
8
              收到的确认说明:
liyixun committed
9 10 11
            </el-form-item>
          </c-col>
          <c-col :span="24">
wangna committed
12
            <el-form-item label="确认指示" prop="gidgrp.rec.reccnfdet">
liyixun committed
13 14 15 16
              <c-select
                disabled
                v-model="model.gidgrp.rec.reccnfdet"
                style="width: 100%"
wangna committed
17
                placeholder="请选择确认指示"
liyixun committed
18 19 20 21 22 23 24 25 26 27 28
              >
                <el-option
                  v-for="item in codes.cnfsta"
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                >
                </el-option>
              </c-select>
            </el-form-item>
          </c-col>
liyixun committed
29

liyixun committed
30
          <c-col :span="24">
wangna committed
31
            <el-form-item label="确认行参考号" prop="gidgrp.cnr.pts.ref">
liyixun committed
32 33 34 35
              <c-input
                disabled
                v-model="model.gidgrp.cnr.pts.ref"
                maxlength="16"
wangna committed
36
                placeholder="请输入确认行参考号"
liyixun committed
37 38 39
              ></c-input>
            </el-form-item>
          </c-col>
liyixun committed
40

liyixun committed
41
          <c-col :span="24">
wangna committed
42
            <el-form-item label="确认行" prop="gidgrp.cnr.pts.extkey">
liyixun committed
43 44 45 46 47
              <c-fullbox>
                <c-input
                  disabled
                  v-model="model.gidgrp.cnr.pts.extkey"
                  maxlength="16"
wangna committed
48
                  placeholder="请输入"
liyixun committed
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
                  @keyup.enter.native="
                    showGridPromptDialog(`gidgrp.cnr.pts.extkey`)
                  "
                ></c-input>
                <template slot="footer">
                  <c-button
                    style="margin: 0 10px 0 10px; padding: 0 12px"
                    size="small"
                    type="primary"
                  >
                    <span style="font-family: '宋体'; font-weight: bold"
                      >i</span
                    >
                  </c-button>
                  <c-button
                    disabled
                    size="small"
                    type="primary"
                    @click="onCnrpDet"
                  >
wangna committed
69
                    详情
liyixun committed
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
                  </c-button>
                </template>
              </c-fullbox>
            </el-form-item>
          </c-col>
          <c-col :span="24">
            <el-form-item label="地址名称" prop="gidgrp.cnr.pts.adrblk">
              <c-input
                disabled
                type="textarea"
                v-model="model.gidgrp.cnr.pts.adrblk"
                maxlength="35"
                show-word-limit
                placeholder="请输入地址名称"
              ></c-input>
            </el-form-item>
          </c-col>
        </c-col>
        <c-col :span="11" :offset="1">
          <c-col :span="24">
            <el-form-item label="">
wangna committed
91
              传出确认说明:
liyixun committed
92 93 94
            </el-form-item>
          </c-col>
          <c-col :span="24">
wangna committed
95
            <el-form-item label="确认指示" prop="gidgrp.rec.cnfdet">
liyixun committed
96 97 98 99
              <c-select
                :disabled="model.gidgrp.rec.legfrm != 'STBY'"
                v-model="model.gidgrp.rec.cnfdet"
                style="width: 100%"
wangna committed
100
                placeholder="请选择确认指示"
liyixun committed
101 102 103 104 105 106 107 108 109 110 111
              >
                <el-option
                  v-for="item in codes.cnfdet"
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                >
                </el-option>
              </c-select>
            </el-form-item>
          </c-col>
liyixun committed
112

liyixun committed
113
          <c-col :span="24">
wangna committed
114
            <el-form-item label="确认行参考号 " prop="gidgrp.con.pts.ref">
liyixun committed
115 116 117 118
              <c-input
                disabled
                v-model="model.gidgrp.con.pts.ref"
                maxlength="16"
wangna committed
119
                placeholder="请输入确认行参考号 "
liyixun committed
120 121 122
              ></c-input>
            </el-form-item>
          </c-col>
liyixun committed
123

liyixun committed
124
          <c-col :span="24">
wangna committed
125
            <el-form-item label="确认行" prop="gidgrp.con.pts.extkey">
liyixun committed
126 127 128 129 130
              <c-fullbox>
                <c-input
                  disabled
                  v-model="model.gidgrp.con.pts.extkey"
                  maxlength="16"
wangna committed
131
                  placeholder="请输入"
liyixun committed
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
                  @keyup.enter.native="
                    showGridPromptDialog(`gidgrp.con.pts.extkey`)
                  "
                ></c-input>
                <template slot="footer">
                  <c-button
                    style="margin: 0 10px 0 10px; padding: 0 12px"
                    size="small"
                    type="primary"
                  >
                    <span style="font-family: '宋体'; font-weight: bold"
                      >i</span
                    >
                  </c-button>
                  <c-button
                    disabled
                    size="small"
                    type="primary"
                    @click="onConpDet"
                  >
wangna committed
152
                    详情
liyixun committed
153 154 155 156 157 158 159 160 161 162 163 164 165
                  </c-button>
                </template>
              </c-fullbox>
            </el-form-item>
          </c-col>
          <c-col :span="24">
            <el-form-item label="地址名称" prop="gidgrp.con.dbfadrblkcn">
              <c-input
                disabled
                type="textarea"
                v-model="model.gidgrp.con.dbfadrblkcn"
                maxlength="35"
                show-word-limit
wangna committed
166
                placeholder="请输入"
liyixun committed
167 168 169
              ></c-input>
            </el-form-item>
          </c-col>
liyixun committed
170
        </c-col>
liyixun committed
171
      </c-col>
liyixun committed
172 173 174
    </c-row>

    <c-row>
liyixun committed
175 176 177 178 179 180 181 182 183 184
      <c-col :span="24">
        <c-col :span="12">
          <c-col :span="24">
            <el-form-item
              v-if="
                model.gidgrp.rec.purpos == 'ADVI' ||
                model.gidgrp.rec.purpos == 'ACNF'
              "
              label=""
            >
wangna committed
185
              我行确认详细信息:
liyixun committed
186 187
            </el-form-item>
          </c-col>
liyixun committed
188

liyixun committed
189 190 191 192 193 194
          <c-col :span="24">
            <el-form-item
              v-if="
                model.gidgrp.rec.purpos == 'ADVI' ||
                model.gidgrp.rec.purpos == 'ACNF'
              "
wangna committed
195
              label="确认状态 "
liyixun committed
196 197 198 199 200
              prop="gidgrp.rec.cnfsta"
            >
              <c-select
                v-model="model.gidgrp.rec.cnfsta"
                style="width: 100%"
wangna committed
201
                placeholder="请选择确认状态 "
liyixun committed
202 203 204 205 206 207 208 209 210 211 212
              >
                <el-option
                  v-for="item in codes.cnfsta"
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                >
                </el-option>
              </c-select>
            </el-form-item>
          </c-col>
liyixun committed
213

liyixun committed
214 215 216 217 218 219 220
          <c-col :span="24">
            <c-col :span="10">
              <el-form-item
                v-if="
                  model.gidgrp.rec.purpos == 'ADVI' ||
                  model.gidgrp.rec.purpos == 'ACNF'
                "
wangna committed
221
                label="确认金额"
liyixun committed
222 223 224 225 226 227
                prop="gidgrp.cbs.cnf.cur"
              >
                <c-input
                  disabled
                  v-model="model.gidgrp.cbs.cnf.cur"
                  maxlength="3"
wangna committed
228
                  placeholder="请输入确认金额"
liyixun committed
229 230
                ></c-input>
              </el-form-item>
liyixun committed
231 232
            </c-col>

liyixun committed
233 234 235 236 237 238 239 240 241 242 243
            <c-col
              v-if="
                model.gidgrp.rec.purpos == 'ADVI' ||
                model.gidgrp.rec.purpos == 'ACNF'
              "
              :span="4"
            >
              <!-- <el-form-item  prop="gidgrp.cbs.cnf.amt"> -->
              <c-input
                disabled
                v-model="model.gidgrp.cbs.cnf.amt"
wangna committed
244
                placeholder="请输入"
liyixun committed
245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268
              ></c-input>
              <!-- </el-form-item> -->
            </c-col>
            <c-col
              v-if="
                model.gidgrp.rec.purpos == 'ADVI' ||
                model.gidgrp.rec.purpos == 'ACNF'
              "
              :span="2"
              style="margin-left: 20px"
            >
              <span>or</span>
            </c-col>
            <c-col
              v-if="
                model.gidgrp.rec.purpos == 'ADVI' ||
                model.gidgrp.rec.purpos == 'ACNF'
              "
              :span="4"
            >
              <!-- <el-form-item  prop="gidgrp.rec.partcon"> -->
              <c-input
                disabled
                v-model="model.gidgrp.rec.partcon"
wangna committed
269
                placeholder="请输入"
liyixun committed
270 271 272 273 274 275 276 277 278 279 280 281
              ></c-input>
              <!-- </el-form-item> -->
            </c-col>
            <c-col
              v-if="
                model.gidgrp.rec.purpos == 'ADVI' ||
                model.gidgrp.rec.purpos == 'ACNF'
              "
              :span="2"
              style="margin-left: 20px"
            >
              <span>%</span>
liyixun committed
282
            </c-col>
liyixun committed
283 284 285 286 287 288 289 290
          </c-col>

          <c-col :span="24">
            <el-form-item
              v-if="
                model.gidgrp.rec.purpos == 'ADVI' ||
                model.gidgrp.rec.purpos == 'ACNF'
              "
wangna committed
291
              label="确认日期"
liyixun committed
292 293 294 295 296 297 298
              prop="gidgrp.rec.cnfdat"
            >
              <c-date-picker
                disabled
                type="date"
                v-model="model.gidgrp.rec.cnfdat"
                style="width: 100%"
wangna committed
299
                placeholder="请选择确认日期"
liyixun committed
300 301 302
              ></c-date-picker>
            </el-form-item>
          </c-col>
liyixun committed
303
        </c-col>
liyixun committed
304 305
        <c-col :span="11" :offset="1"> </c-col>
      </c-col>
liyixun committed
306
    </c-row>
liyixun committed
307 308 309
  </div>
</template>
<script>
liyixun committed
310
import Api from "~/service/Api";
liyixun committed
311
import commonProcess from "~/mixin/commonProcess";
liyixun committed
312 313
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Getopn/Event";
liyixun committed
314 315

export default {
liyixun committed
316 317 318 319 320 321 322 323 324 325 326 327 328 329 330
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {
      cnfdet: [
        { label: "MAYADD", value: "A" },
        { label: "CONFIRM", value: "C" },
        { label: "WITHOUT", value: "W" },
      ],
    };
  },
  methods: { ...Event },
  created: function () {},
};
liyixun committed
331 332 333
</script>
<style>
</style>