Mt750p.vue 4.77 KB
Newer Older
zhujiazhan committed
1
<template>
jianglong committed
2
  <div class="eibs">
3 4 5 6 7 8 9 10 11 12 13 14
    <!-- ====================================不符点通知   左边 ================================= -->
    <c-col :span="12">
      <!-- 单据金额 -->
      <c-col :span="12">
        <el-form-item label="单据金额" prop="brdgrp.cbs.max.cur">
          <c-select
            v-model="model.brdgrp.cbs.max.cur"
            style="width: 100%"
            placeholder="请选择单据金额"
            disabled
          >
          </c-select>
zhujiazhan committed
15
        </el-form-item>
16 17 18 19 20 21 22 23 24
      </c-col>

      <c-col :span="12">
        <el-form-item label="" label-width="10px" prop="brdgrp.cbs.max.amt">
          <c-input
            v-model="model.brdgrp.cbs.max.amt"
            placeholder="请输入单据金额"
            disabled
          ></c-input>
zhujiazhan committed
25
        </el-form-item>
26 27 28 29 30 31 32 33 34 35 36 37
      </c-col>

      <!-- 附加金额 -->
      <c-col :span="12">
        <el-form-item label="提取附加金额" prop="brdgrp.cbs.opn2.cur">
          <c-select
            v-model="model.brdgrp.cbs.opn2.cur"
            style="width: 100%"
            placeholder="请选择附加金额"
            disabled
          >
          </c-select>
zhujiazhan committed
38
        </el-form-item>
39 40 41 42 43 44 45 46 47
      </c-col>

      <c-col :span="12">
        <el-form-item label="" label-width="10px" prop="brdgrp.cbs.max2.amt">
          <c-input
            v-model="model.brdgrp.cbs.max2.amt"
            placeholder="请输入附加金额"
            disabled
          ></c-input>
zhujiazhan committed
48
        </el-form-item>
49 50 51 52 53 54 55 56 57 58 59 60 61
      </c-col>

      <c-col :span="24">
        <el-form-item label="已扣除费用" prop="brdgrp.blk.chaded">
          <c-input
            type="textarea"
            v-model="model.brdgrp.blk.chaded"
            maxlength="210"
            show-word-limit
            placeholder="请输入已扣除费用"
            disabled
            :rows="4"
          ></c-input>
zhujiazhan committed
62
        </el-form-item>
63 64 65 66 67 68 69 70 71
      </c-col>

      <c-col :span="24">
        <el-form-item label="已添加费用" prop="brdgrp.blk.chaadd">
          <c-input
            type="textarea"
            v-model="model.brdgrp.blk.chaadd"
            maxlength="210"
            show-word-limit
jianglong committed
72
            placeholder="请输入费用"
73 74 75
            disabled
            :rows="4"
          ></c-input>
zhujiazhan committed
76
        </el-form-item>
77 78 79 80
      </c-col>

      <!-- 索赔总额 -->
      <c-col :span="12">
jianglong committed
81
        <el-form-item label="索赔金额" prop="brdgrp.rec.totcur">
82 83 84 85 86 87 88
          <c-input
            v-model="model.brdgrp.rec.totcur"
            maxlength="3"
            placeholder="请输入索赔总额"
            disabled
          >
          </c-input>
zhujiazhan committed
89
        </el-form-item>
90 91 92 93 94 95 96
      </c-col>

      <!-- Total Amount to be Paid -->
      <c-col :span="12">
        <el-form-item label="" label-width="10px" prop="brdgrp.rec.totamt">
          <c-input
            v-model="model.brdgrp.rec.totamt"
jianglong committed
97
            placeholder="请输入索赔总额"
98 99
            disabled
          ></c-input>
zhujiazhan committed
100
        </el-form-item>
101 102 103 104 105 106
      </c-col>

      <c-col :span="24">
        <c-ptap1
          :model="model"
          :argadr="{
jianglong committed
107
            title: '账户银行',
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
            grp: 'brdgrp',
            rol: 'acb',
          }"
          :disabled="true"
          :isAdrblk="false"
          disabled1
          @onSeainf="onSeainf"
          @onAplpDet="onAcbpDet"
        >
        </c-ptap1>
      </c-col>

      <!-- =======================================加Docpre页面中的Discrepancies部分小组件================================ -->
      <!-- Discrepancies -->
      <c-col :span="24">
        <el-form-item label="不符点信息" prop="brdgrp.blk.docdis">
          <c-input
            type="textarea"
            v-model="model.brdgrp.blk.docdis"
            maxlength="3500"
            show-word-limit
            placeholder="请输入不符点信息"
            :rows="5"
            disabled
          ></c-input>
zhujiazhan committed
133
        </el-form-item>
134
      </c-col>
jianglong committed
135 136 137
      <c-col :span="24" >
        <el-form-item label=" " label-width="120px" prop="brdgrp.blk.docdisflg">
        <c-checkbox class="checkbox-left" v-model="model.brdgrp.blk.docdisflg" disabled
138 139
          >不符点修改</c-checkbox
        >
jianglong committed
140
         </el-form-item >
141 142 143 144 145 146
        <!-- <c-checkbox v-model="model.brdgrp.blk.docdisflg">不符点修改</c-checkbox> -->
      </c-col>
    </c-col>

   
  </div>
zhujiazhan committed
147 148
</template>
<script>
149 150 151 152 153
import Api from '~/service/Api'
import commonProcess from '~/mixin/commonProcess'
import CodeTable from '~/config/CodeTable'
import Event from '~/model/Brtudp/Event'
import Ptap1 from '~/views/Public/Ptap1'
zhujiazhan committed
154 155

export default {
156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
  components: {
    'c-ptap1': Ptap1,
    // "c-ptap": Ptap,
    // "c-ptsmsg": Ptsmsg,
  },
  inject: ['root'],
  props: ['model', 'codes'],
  mixins: [commonProcess],
  data() {
    return {}
  },
  methods: {
    ...Event,
    onSeainf(){}, 
  },
  created: function () {},
zhujiazhan committed
172 173
}
</script>
174
<style></style>