Mt750p.vue 4.08 KB
Newer Older
jianglong committed
1 2 3
<template>
  <div class="eibs-tab">
     <c-col>                                         
4
       <c-col :span="5">
jianglong committed
5
        <el-form-item label="单据金额" prop="bddgrp.cbs.max.cur">
6
            <c-select disabled v-model="model.bddgrp.cbs.max.cur" style="width:100%"  placeholder="请选择单据金额"  :code="codes.cur " ></c-select>
jianglong committed
7 8 9
        </el-form-item>
       </c-col>
                  
10
       <c-col :span="7">
11
        <el-form-item label=""  label-width="10px" prop="bddgrp.cbs.max.amt">
wangna committed
12
            <c-input  v-model="model.bddgrp.cbs.max.amt"  placeholder="请输入"></c-input>
jianglong committed
13 14 15 16 17
        </el-form-item>
       </c-col>
    </c-col>

    <c-col>                               
18
       <c-col :span="5">
19
        <el-form-item label="附加金额" prop="bddgrp.cbs.opn2.cur">
wangna committed
20
            <c-select disabled v-model="model.bddgrp.cbs.opn2.cur" style="width:100%" placeholder="请选择币种" :code="codes.cur ">
jianglong committed
21 22 23 24 25 26
              </c-select>
            
        </el-form-item>

       </c-col>
                  
27
       <c-col :span="7">
28
        <el-form-item label="" label-width="10px" prop="bddgrp.cbs.max2.amt">
jianglong committed
29 30 31 32
            <c-input  v-model="model.bddgrp.cbs.max2.amt"  placeholder="请输入附加金额"></c-input>
        </el-form-item>
       </c-col>
    </c-col>
33
    
jianglong committed
34 35 36
    <c-col>

       <c-col :span="12">
wangna committed
37 38
        <el-form-item label="扣除费用" prop="bddgrp.blk.chaded">
            <c-input type="textarea" v-model="model.bddgrp.blk.chaded" :rows="4" maxlength="35" show-word-limit placeholder="请输入扣除费用" ></c-input>
jianglong committed
39 40 41 42 43 44
        </el-form-item>
        </c-col>
    </c-col>

    <c-col>                               
       <c-col :span="12">
wangna committed
45 46
        <el-form-item label="已添加费用" prop="bddgrp.blk.chaadd">
            <c-input type="textarea" v-model="model.bddgrp.blk.chaadd" :rows="4" maxlength="35" show-word-limit placeholder="请输入已添加费用" ></c-input>
jianglong committed
47 48 49 50 51
        </el-form-item>
        </c-col>
    </c-col>

    <c-col>                               
52
       <c-col :span="5">
wangna committed
53 54
        <el-form-item label="待支付金额" prop="bddgrp.rec.totcur">
            <c-select  disabled v-model="model.bddgrp.rec.totcur" style="width:100%"  placeholder="请选择待支付金额" :code="codes.cur"></c-select>
jianglong committed
55 56 57
        </el-form-item>
       </c-col>
                  
58 59
       <c-col :span="7">
        <el-form-item label="" prop="bddgrp.rec.totamt" label-width="10px">
wangna committed
60
            <c-input  v-model="model.bddgrp.rec.totamt"  placeholder="请输入"></c-input>
jianglong committed
61 62 63 64
        </el-form-item>
       </c-col>
    </c-col>

65 66 67 68 69
        <c-col>
        <c-col :span="12">
          <c-ptap
            :model="model"
            :argadr="{
wangna committed
70
              title: '银行账户',
71 72 73 74 75 76 77
              grp: 'bddgrp',
              rol: 'acb',
            }"
            :noRef="true"
            :isAdrblk="false"
          >
          </c-ptap>
jianglong committed
78
        </c-col>
79 80 81
        </c-col>

       
82
         <c-col>                          
jianglong committed
83
       <c-col :span="12">
wangna committed
84 85
        <el-form-item label="不符点" prop="bddgrp.blk.docdis">
            <c-input type="textarea" :disabled="model.bddgrp.blk.docdisflg!='X'" v-model="model.bddgrp.blk.docdis" :rows="6" maxlength="3500" show-word-limit placeholder="请输入不符点" ></c-input>
jianglong committed
86 87
        </el-form-item>
        </c-col>
88
        </c-col>
jianglong committed
89 90
                  
       <c-col :span="12">
wangna committed
91
	    <c-checkbox v-model="model.bddgrp.blk.docdisflg">不符点修改</c-checkbox>
jianglong committed
92 93 94 95 96 97 98 99 100
       </c-col>

  </div>
</template>
<script>
import Api from "~/service/Api"
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable"
import Event from "~/model/Ditdav/Event"
101
import Ptap from "~/views/Public/Ptap";
jianglong committed
102 103

export default {
104
    components: { "c-ptap": Ptap },
jianglong committed
105 106 107 108 109 110 111 112
    inject: ["root"],
    props:["model","codes"],
    mixins: [commonProcess],
    data(){
        return {

        };
    },
113 114 115 116 117 118 119 120 121 122
    computed: {
        docdisflg: {
      get() {
        return this.model.bddgrp.blk.docdisflg === "X";
      },
      set(val) {
        this.model.bddgrp.blk.docdisflg = val ? "X" : "";
      },
    },
    },
jianglong committed
123 124 125 126 127 128 129 130 131
    methods:{...Event},
    created:function(){

    }
}
</script>
<style>

</style>