Detpc.vue 9.56 KB
Newer Older
liyixun committed
1
<template>
huangxin committed
2
  <div class="eibs">
3 4
<!-- ============左边================= -->
<c-col :span="12" style="padding-right: 20px;">
liyixun committed
5
          <c-col :span="24">
wangna committed
6
            <el-form-item label="合同号" prop="gidgrp.rec.orcrefc">
liyixun committed
7 8 9 10
              <c-input
                disabled
                v-model="model.gidgrp.rec.orcrefc"
                maxlength="35"
wangna committed
11
                placeholder="请输入合同号"
liyixun committed
12 13 14 15
              ></c-input>
            </el-form-item>
          </c-col>
          <c-col :span="24">
wangna committed
16
            <el-form-item label="合同签定日期" prop="gidgrp.rec.orcdatc">
liyixun committed
17 18 19 20 21
              <c-date-picker
                disabled
                type="date"
                v-model="model.gidgrp.rec.orcdatc"
                style="width: 100%"
wangna committed
22
                placeholder="请选择合同签定日期"
liyixun committed
23 24 25 26
              ></c-date-picker>
            </el-form-item>
          </c-col>
          <c-col :span="24">
wangna committed
27
            <el-form-item label="合同失效日期" prop="gidgrp.rec.tenclsdatc">
liyixun committed
28 29 30 31 32
              <c-date-picker
                disabled
                type="date"
                v-model="model.gidgrp.rec.tenclsdatc"
                style="width: 100%"
wangna committed
33
                placeholder="请选择合同失效日期"
liyixun committed
34 35 36 37 38 39 40 41
              ></c-date-picker>
            </el-form-item>
          </c-col>
          <c-col :span="24">
            <c-col :span="20">
              <c-col :span="20">
                <el-form-item
                  v-if="model.gitp.covgodsrvcmodflg == ''"
wangna committed
42
                  label="合同标的"
liyixun committed
43 44 45 46 47 48 49 50 51 52 53 54
                  prop="gidgrp.blk.covgodsrvc"
                >
                  <c-input
                    :disabled="
                      model.gitp.covgodsrvcmodflg == '' ||
                      model.gitp.swiftflg == 'N'
                    "
                    rows="5"
                    type="textarea"
                    v-model="model.gidgrp.blk.covgodsrvc"
                    maxlength="65"
                    show-word-limit
wangna committed
55
                    placeholder="请输入合同标的"
liyixun committed
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
                  ></c-input>
                </el-form-item>
                <el-form-item
                  v-if="model.gitp.covgodsrvcmodflg == 'X'"
                  label="Underly. Transact. Det."
                  prop="gidgrp.blk.atxcovgodsrvc"
                >
                  <c-input
                    :disabled="
                      model.gitp.covgodsrvcmodflg == '' ||
                      model.gitp.swiftflg == 'N'
                    "
                    rows="5"
                    type="textarea"
                    v-model="model.gidgrp.blk.atxcovgodsrvc"
                    maxlength="65"
                    show-word-limit
                    placeholder="请输入Underly. Transact. Det."
                  ></c-input>
                </el-form-item>
              </c-col>
            </c-col>
            <c-col :span="4">
              <c-checkbox
                v-if="model.gitp.swiftflg == 'Y'"
                v-model="model.gitp.covgodsrvcmodflg"
                style="margin: 0 0 0 10px"
wangna committed
83
                >修改文本</c-checkbox
liyixun committed
84 85 86 87 88
              >
              <c-checkbox
                v-if="model.gitp.swiftflg == 'Y'"
                v-model="model.gitp.covgodc.chkast"
                style="margin: 0 0 0 10px"
wangna committed
89
                >允许</c-checkbox
liyixun committed
90 91 92 93 94 95 96 97 98
              >
              <c-button
                disabled
                v-if="model.gitp.swiftflg == 'Y'"
                size="small"
                type="primary"
                style="margin: 5px 0 0 10px"
                @click="onGitpButdifcovgodsrvc"
              >
wangna committed
99
                查看系统文本
liyixun committed
100 101 102 103 104 105 106 107 108
              </c-button>
              <c-button
                disabled
                v-if="model.gitp.swiftflg == 'Y'"
                size="small"
                type="primary"
                style="margin: 5px 0 0 10px"
                @click="onGitpButdifhiscovgodsrvc"
              >
wangna committed
109
                查看历史文本
liyixun committed
110 111 112 113 114
              </c-button>
            </c-col>
          </c-col>
          <c-col :span="24">
            <el-form-item
wangna committed
115
              label="原始利率"
liyixun committed
116 117 118 119 120
              prop="gidgrp.rec.orcratc"
            >
              <c-input
                disabled
                v-model="model.gidgrp.rec.orcratc"
wangna committed
121
                placeholder="请输入原始利率"
liyixun committed
122 123 124 125 126
              ></c-input>
            </el-form-item>
          </c-col>
          <c-col :span="24">
            <c-col :span="12">
wangna committed
127
              <el-form-item label="合同币种和金额" prop="gidgrp.rec.orccurc">
liyixun committed
128 129 130 131
                <c-select
                  disabled
                  v-model="model.gidgrp.rec.orccurc"
                  style="width: 100%"
wangna committed
132
                  placeholder="请选择合同币种 "
liyixun committed
133 134 135 136 137 138 139 140 141 142
                >
                  <el-option
                    v-for="item in codes.curtxt"
                    :key="item.value"
                    :label="item.label"
                    :value="item.value"
                  >
                  </el-option>
                </c-select>
              </el-form-item>
liyixun committed
143 144
            </c-col>
            <c-col :span="11" :offset="1">
liyixun committed
145 146 147
              <c-input
                disabled
                v-model="model.gidgrp.rec.orcamtc"
wangna committed
148
                placeholder="请输入合同金额 "
liyixun committed
149 150 151 152 153
              ></c-input>
            </c-col>
          </c-col>
          <c-col :span="24">
            <el-form-item
wangna committed
154
              label="合同签定地"
liyixun committed
155 156 157 158 159 160 161 162
              prop="gidgrp.blk.orcplcc"
            >
              <c-input
                disabled
                type="textarea"
                v-model="model.gidgrp.blk.orcplcc"
                maxlength="35"
                show-word-limit
wangna committed
163
                placeholder="请输入合同签定地"
liyixun committed
164 165 166 167
              ></c-input>
            </el-form-item>
          </c-col>
        </c-col>
168 169
        <!-- ============右边================= -->
        <c-col :span="12" style="padding-left: 20px;">
liyixun committed
170 171
          <c-col :span="24">
            <el-form-item
wangna committed
172
              label="预付款账号"
liyixun committed
173 174 175 176 177 178
              prop="gidgrp.rec.accc"
            >
              <c-input
                disabled
                v-model="model.gidgrp.rec.accc"
                maxlength="35"
wangna committed
179
                placeholder="请输入预付款账号"
liyixun committed
180 181 182 183
              ></c-input>
            </el-form-item>
          </c-col>
          <c-col :span="24">
wangna committed
184
            <el-form-item label="适用法律" prop="gidgrp.rec.jurlawc">
liyixun committed
185 186 187
              <c-select
                v-model="model.gidgrp.rec.jurlawc"
                style="width: 100%"
wangna committed
188
                placeholder="请选择适用法律"
liyixun committed
189 190 191 192 193 194 195 196 197 198 199
              >
                <el-option
                  v-for="item in codes.ctytxt1"
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                >
                </el-option>
              </c-select>
            </el-form-item>
          </c-col>
liyixun committed
200

liyixun committed
201
          <c-col :span="24">
wangna committed
202
            <el-form-item label="适用法律 " prop="gidgrp.rec.jurlawtxtc">
liyixun committed
203 204 205
              <c-input
                v-model="model.gidgrp.rec.jurlawtxtc"
                maxlength="65"
wangna committed
206
                placeholder="请输入适用法律 "
liyixun committed
207 208 209
              ></c-input>
            </el-form-item>
          </c-col>
liyixun committed
210

liyixun committed
211 212
          <c-col :span="24">
            <el-form-item
wangna committed
213
              label="仲裁地"
liyixun committed
214 215 216 217 218 219
              prop="gidgrp.rec.jurplcc"
            >
              <c-input
                :disabled="model.gidgrp.rec.jurlawc == ''"
                v-model="model.gidgrp.rec.jurplcc"
                maxlength="35"
wangna committed
220
                placeholder="请输入仲裁地"
liyixun committed
221 222 223 224
              ></c-input>
            </el-form-item>
          </c-col>
          <c-col :span="24">
wangna committed
225
            <el-form-item label="投标参考号" prop="gidgrp.rec.tenrefc">
liyixun committed
226 227 228 229
              <c-input
                disabled
                v-model="model.gidgrp.rec.tenrefc"
                maxlength="35"
wangna committed
230
                placeholder="请输入投标参考号"
liyixun committed
231 232 233 234
              ></c-input>
            </el-form-item>
          </c-col>
          <c-col :span="24">
wangna committed
235
            <el-form-item label="投标日期" prop="gidgrp.rec.tendatc">
liyixun committed
236 237 238 239 240
              <c-date-picker
                disabled
                type="date"
                v-model="model.gidgrp.rec.tendatc"
                style="width: 100%"
wangna committed
241
                placeholder="请选择投标日期"
liyixun committed
242 243 244 245 246
              ></c-date-picker>
            </el-form-item>
          </c-col>
          <c-col :span="24">
            <el-form-item
wangna committed
247
              label="最新传输日期"
liyixun committed
248 249 250 251 252 253 254
              prop="gidgrp.rec.trmdatc"
            >
              <c-date-picker
                disabled
                type="date"
                v-model="model.gidgrp.rec.trmdatc"
                style="width: 100%"
wangna committed
255
                placeholder="请选择最新传输日期"
liyixun committed
256 257 258 259
              ></c-date-picker>
            </el-form-item>
          </c-col>
          <c-col :span="24">
wangna committed
260
            <el-form-item label="附加说明" prop="gidgrp.blk.addinfc">
liyixun committed
261 262 263 264 265 266
              <c-input
                disabled
                type="textarea"
                v-model="model.gidgrp.blk.addinfc"
                maxlength="35"
                show-word-limit
wangna committed
267
                placeholder="请输入附加说明"
liyixun committed
268 269 270
              ></c-input>
            </el-form-item>
          </c-col>
liyixun committed
271 272 273 274
        </c-col>
  </div>
</template>
<script>
liyixun committed
275
import Api from "~/service/Api";
liyixun committed
276
import commonProcess from "~/mixin/commonProcess";
liyixun committed
277 278
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Getame/Event";
liyixun committed
279 280

export default {
liyixun committed
281 282 283 284 285 286 287 288 289
  inject: ["root"],
  props: ["model", "codes"],
  mixins: [commonProcess],
  data() {
    return {};
  },
  methods: { ...Event },
  created: function () {},
};
liyixun committed
290 291 292
</script>
<style>
</style>