Confp.vue 8.93 KB
Newer Older
1
<template>
Wuyuqiu committed
2
  <div class="eibs">
3
    <c-row>
liyixun committed
4
      <c-col :span="24">
Wuyuqiu committed
5
        <c-col :span="12" style="padding-right: 20px;">
liyixun committed
6 7
          <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>
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>
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
                  @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"
                  >
nanrui committed
59
                    <i class="el-icon-info"></i>
liyixun committed
60 61 62 63 64 65 66
                  </c-button>
                  <c-button
                    disabled
                    size="small"
                    type="primary"
                    @click="onCnrpDet"
                  >
wangna committed
67
                    详情
liyixun committed
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
                  </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>
Wuyuqiu committed
86
        <c-col :span="12" style="padding-left: 20px;">
liyixun committed
87 88
          <c-col :span="24">
            <el-form-item label="">
wangna committed
89
              支出确认说明:
liyixun committed
90 91 92
            </el-form-item>
          </c-col>
          <c-col :span="24">
wangna committed
93
            <el-form-item label="确认指示" prop="gidgrp.rec.cnfdet">
liyixun committed
94 95 96
              <c-select
                v-model="model.gidgrp.rec.cnfdet"
                style="width: 100%"
wangna committed
97
                placeholder="请选择确认指示"
liyixun committed
98 99 100 101 102 103 104 105 106 107 108
              >
                <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>
109

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

liyixun committed
121
          <c-col :span="24">
wangna committed
122
            <el-form-item label="确认行" prop="gidgrp.con.pts.extkey">
liyixun committed
123 124 125 126 127
              <c-fullbox>
                <c-input
                  disabled
                  v-model="model.gidgrp.con.pts.extkey"
                  maxlength="16"
wangna committed
128
                  placeholder="请输入"
liyixun committed
129 130 131 132 133 134 135 136 137 138
                  @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"
                  >
nanrui committed
139
                    <i class="el-icon-info"></i>
liyixun committed
140 141 142 143 144 145 146
                  </c-button>
                  <c-button
                    disabled
                    size="small"
                    type="primary"
                    @click="onConpDet"
                  >
wangna committed
147
                    详情
liyixun committed
148 149 150 151 152 153 154 155 156 157 158 159 160
                  </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
161
                placeholder="请输入"
liyixun committed
162 163 164
              ></c-input>
            </el-form-item>
          </c-col>
165
        </c-col>
liyixun committed
166
      </c-col>
167 168 169
    </c-row>

    <c-row>
liyixun committed
170
      <c-col :span="24">
Wuyuqiu committed
171
        <c-col :span="12" style="padding-right: 20px;">
liyixun committed
172 173
          <c-col :span="24">
            <el-form-item v-if="model.gidgrp.rec.purposin == 'ISSU'" label="">
wangna committed
174
              我行确认详细信息:
liyixun committed
175 176
            </el-form-item>
          </c-col>
177

liyixun committed
178 179 180
          <c-col :span="24">
            <el-form-item
              v-if="model.gidgrp.rec.purposin == 'ISSU'"
wangna committed
181
              label="确认状态 "
liyixun committed
182 183 184 185 186
              prop="gidgrp.rec.cnfsta"
            >
              <c-select
                v-model="model.gidgrp.rec.cnfsta"
                style="width: 100%"
wangna committed
187
                placeholder="请选择确认状态 "
liyixun committed
188 189 190 191 192 193 194 195 196 197 198
              >
                <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>
199

liyixun committed
200 201 202 203
          <c-col :span="24">
            <c-col :span="10">
              <el-form-item
                v-if="model.gidgrp.rec.purposin == 'ISSU'"
wangna committed
204
                label="确认金额"
liyixun committed
205 206 207 208 209 210
                prop="gidgrp.cbs.cnf.cur"
              >
                <c-input
                  disabled
                  v-model="model.gidgrp.cbs.cnf.cur"
                  maxlength="3"
wangna committed
211
                  placeholder="请输入确认金额"
liyixun committed
212 213
                ></c-input>
              </el-form-item>
214 215
            </c-col>

liyixun committed
216
            <c-col v-if="model.gidgrp.rec.purposin == 'ISSU'" :span="4">
liyixun committed
217
              <el-form-item label-width="5px" prop="gidgrp.cbs.cnf.amt">
liyixun committed
218 219
              <c-input
                v-model="model.gidgrp.cbs.cnf.amt"
wangna committed
220
                placeholder="请输入"
liyixun committed
221
              ></c-input>
liyixun committed
222
              </el-form-item>
liyixun committed
223 224 225 226 227 228 229 230 231
            </c-col>
            <c-col
              v-if="model.gidgrp.rec.purposin == 'ISSU'"
              :span="2"
              style="margin-left: 20px"
            >
              <span>or</span>
            </c-col>
            <c-col v-if="model.gidgrp.rec.purposin == 'ISSU'" :span="4">
liyixun committed
232
              <el-form-item label-width="5px" prop="gidgrp.rec.partcon">
liyixun committed
233 234
              <c-input
                v-model="model.gidgrp.rec.partcon"
wangna committed
235
                placeholder="请输入"
liyixun committed
236
              ></c-input>
liyixun committed
237
              </el-form-item>
238
            </c-col>
liyixun committed
239 240 241 242 243 244 245 246 247 248 249 250
            <c-col
              v-if="model.gidgrp.rec.purposin == 'ISSU'"
              :span="2"
              style="margin-left: 20px"
            >
              <span>%</span>
            </c-col>
          </c-col>

          <c-col :span="24">
            <el-form-item
              v-if="model.gidgrp.rec.purposin == 'ISSU'"
wangna committed
251
              label="确认日期"
liyixun committed
252 253 254 255 256 257
              prop="gidgrp.rec.cnfdat"
            >
              <c-date-picker
                type="date"
                v-model="model.gidgrp.rec.cnfdat"
                style="width: 100%"
wangna committed
258
                placeholder="请选择确认日期"
liyixun committed
259 260 261
              ></c-date-picker>
            </el-form-item>
          </c-col>
262
        </c-col>
Wuyuqiu committed
263
        <c-col :span="12" style="padding-left: 20px;"> </c-col>
liyixun committed
264
      </c-col>
265
    </c-row>
liyixun committed
266
  </div>
267 268
</template>
<script>
liyixun committed
269
import Api from "~/service/Api";
270
import commonProcess from "~/mixin/commonProcess";
liyixun committed
271 272
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Gitopn/Event";
273 274

export default {
liyixun committed
275 276 277 278 279 280 281 282 283
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {};
  },
  methods: { ...Event },
  created: function () {},
};
284 285 286
</script>
<style>
</style>