Ccvpan.vue 10.6 KB
Newer Older
1 2
<template>
  <div class="eibs-tab">
SunJie committed
3
    <!--                                        
潘际乾 committed
4
       <c-col :span="12">
5 6 7
        <el-form-item label="应付保证金金额">
            <c-input  v-model="model.liaall.liaccv.concur" maxlength="3"  placeholder="请输入应付保证金金额"></c-input>
        </el-form-item>
潘际乾 committed
8
       </c-col>
SunJie committed
9
       -->
潘际乾 committed
10
    <c-col :span="12">
SunJie committed
11
      <el-form-item label="合同金额" prop="liaall.liaccv.concur">
潘际乾 committed
12 13
        <c-row :gutter="20">
          <!--                <c-col :span="8">-->
SunJie committed
14
          <!--                    <c-input type="text" :readonly="true" value="CNY"></c-input>-->
潘际乾 committed
15 16
          <!--                </c-col>-->
          <c-col :span="8">
SunJie committed
17 18 19 20 21 22 23 24 25 26 27 28 29 30
            <c-select
              v-model="model.liaall.liaccv.concur"
              disabled
              style="width: 100%"
              placeholder="请选择Type of settlement"
            >
              <el-option
                v-for="item in codes.curtxt"
                :key="item.value"
                :label="item.label"
                :value="item.value"
              >
              </el-option>
            </c-select>
潘际乾 committed
31 32
          </c-col>
          <c-col :span="14">
SunJie committed
33 34 35 36
            <c-input
              :readonly="true"
              v-model="model.liaall.liaccv.newamt"
            ></c-input>
潘际乾 committed
37 38
          </c-col>
        </c-row>
SunJie committed
39
      </el-form-item>
潘际乾 committed
40
    </c-col>
SunJie committed
41
    <!--
潘际乾 committed
42
       <c-col :span="12">
43 44 45
        <el-form-item label="合同金额">
            <c-input  v-model="model.liaall.liaccv.newamt"  placeholder="请输入合同金额"></c-input>
        </el-form-item>
潘际乾 committed
46 47
       </c-col>                                             
       <c-col :span="12">
48 49 50
        <el-form-item label="保证金应收比例">
            <c-input  v-model="model.liaall.liaccv.cshpct"  placeholder="请输入保证金应收比例"></c-input>
        </el-form-item>
潘际乾 committed
51
       </c-col>
SunJie committed
52
       -->
潘际乾 committed
53
    <c-col :span="12">
SunJie committed
54
      <el-form-item label="保证金应收比例" prop="liaall.liaccv.cshpct">
潘际乾 committed
55 56
        <c-row>
          <c-col :span="8">
SunJie committed
57
            <c-input v-model="model.liaall.liaccv.cshpct"></c-input>
潘际乾 committed
58 59
          </c-col>
          <c-col :span="12" style="margin-left: 20px">
SunJie committed
60
            <span>%</span>
潘际乾 committed
61 62
          </c-col>
        </c-row>
SunJie committed
63
      </el-form-item>
潘际乾 committed
64
    </c-col>
SunJie committed
65 66

    <!--                                             
潘际乾 committed
67
       <c-col :span="12">
68 69 70
        <el-form-item label="Reserved Amount">
            <c-input  v-model="model.liaall.liaccv.newresamt"  placeholder="请输入Reserved Amount"></c-input>
        </el-form-item>
潘际乾 committed
71
       </c-col>
SunJie committed
72
       -->
潘际乾 committed
73
    <c-col :span="12">
SunJie committed
74
      <el-form-item label="Reserved Amount" prop="liaall.liaccv.newresamt">
潘际乾 committed
75 76
        <c-row :gutter="20">
          <!--                <c-col :span="8">-->
SunJie committed
77
          <!--                    <c-input type="text" :readonly="true" value="CNY"></c-input>-->
潘际乾 committed
78 79
          <!--                </c-col>-->
          <c-col :span="8">
SunJie committed
80 81 82 83 84 85 86 87 88 89 90 91 92 93
            <c-select
              v-model="model.liaall.liaccv.concur"
              disabled
              style="width: 100%"
              placeholder="请选择Type of settlement"
            >
              <el-option
                v-for="item in codes.curtxt"
                :key="item.value"
                :label="item.label"
                :value="item.value"
              >
              </el-option>
            </c-select>
潘际乾 committed
94 95
          </c-col>
          <c-col :span="14">
SunJie committed
96 97 98 99
            <c-input
              :readonly="true"
              v-model="model.liaall.liaccv.newresamt"
            ></c-input>
潘际乾 committed
100 101
          </c-col>
        </c-row>
SunJie committed
102
      </el-form-item>
潘际乾 committed
103
    </c-col>
SunJie committed
104
    <!--                            
潘际乾 committed
105
       <c-col :span="12">
106 107 108
        <el-form-item label="保证金实收比例">
            <c-input  v-model="model.liaall.liaccv.relcshpct"  placeholder="请输入保证金实收比例"></c-input>
        </el-form-item>
潘际乾 committed
109
       </c-col>
SunJie committed
110
       -->
潘际乾 committed
111
    <c-col :span="12">
SunJie committed
112
      <el-form-item label="保证金实收比例" prop="liaall.misamt">
潘际乾 committed
113 114
        <c-row>
          <c-col :span="8">
SunJie committed
115
            <c-input :readonly="true" v-model="model.liaall.misamt"></c-input>
潘际乾 committed
116 117
          </c-col>
          <c-col :span="12" style="margin-left: 20px">
SunJie committed
118
            <span>%</span>
潘际乾 committed
119 120
          </c-col>
        </c-row>
SunJie committed
121
      </el-form-item>
潘际乾 committed
122
    </c-col>
SunJie committed
123 124

    <!--                            
潘际乾 committed
125
       <c-col :span="12">
126
	    <c-checkbox v-model="model.liaall.liaccv.gleflg">Create gle flag</c-checkbox>
潘际乾 committed
127
       </c-col> 
128
                                   
潘际乾 committed
129
       <c-col :span="12">
130 131 132
        <el-form-item label="reserve amount based percent">
            <c-input  v-model="model.liaall.liaccv.pctresamt"  placeholder="请输入reserve amount based percent"></c-input>
        </el-form-item>
潘际乾 committed
133
       </c-col>                 
134
                  
潘际乾 committed
135
       <c-col :span="12">
136
	    <c-checkbox v-model="model.liaall.liaccv.chgcurflg">Change currency flag</c-checkbox>
潘际乾 committed
137
       </c-col> 
SunJie committed
138 139
       -->

潘际乾 committed
140
    <c-col :span="12">
SunJie committed
141
      <el-form-item label="应付保证金金额" prop="liaall.liaccv.concur">
潘际乾 committed
142 143
        <c-row :gutter="20">
          <!--                <c-col :span="8">-->
SunJie committed
144
          <!--                    <c-input type="text" :readonly="true" value="CNY"></c-input>-->
潘际乾 committed
145 146
          <!--                </c-col>-->
          <c-col :span="8">
SunJie committed
147 148 149 150 151 152 153 154 155 156 157 158 159 160
            <c-select
              v-model="model.liaall.liaccv.concur"
              disabled
              style="width: 100%"
              placeholder="请选择Type of settlement"
            >
              <el-option
                v-for="item in codes.curtxt"
                :key="item.value"
                :label="item.label"
                :value="item.value"
              >
              </el-option>
            </c-select>
潘际乾 committed
161 162
          </c-col>
          <c-col :span="14">
SunJie committed
163 164 165 166
            <c-input
              :readonly="true"
              v-model="model.liaall.liaccv.pctresamt"
            ></c-input>
潘际乾 committed
167 168
          </c-col>
        </c-row>
SunJie committed
169
      </el-form-item>
潘际乾 committed
170
    </c-col>
SunJie committed
171
    <!--
潘际乾 committed
172
       <c-col :span="12">
SunJie committed
173
        <c-button size="small" type="primary"  @click="openMask">
174 175
            Add
        </c-button>
潘际乾 committed
176
       </c-col>
177
                  
潘际乾 committed
178
       <c-col :span="12">
179 180 181
        <c-button size="small"  icon="el-icon-delete" @click="onLiaccvDel">
            Del
        </c-button>
潘际乾 committed
182
       </c-col>
SunJie committed
183
       -->
潘际乾 committed
184 185 186
    <c-col :span="24" style="text-align: right">
      <c-row>
        <c-col :span="2" :offset="19">
SunJie committed
187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208
          <c-button
            size="small"
            type="primary"
            @click="onLiaccvAdd"
          >
            Add
          </c-button>
          <el-dialog :visible.sync="dialogTableVisible" :close-on-click-modal="false" :close-on-press-escape="false">
            <c-istream-table
              :list="stmData.data"
              :columns="stmData.columns"
            >
            <el-table-column
              prop="op"
              label="OP"
              width="100">
            <template slot-scope="scope">
              <a href="javascript:void(0)" @click="pickDepItem(scope.row)">选择</a>
            </template>
            </el-table-column>
            </c-istream-table>
          </el-dialog>
潘际乾 committed
209
        </c-col>
SunJie committed
210

潘际乾 committed
211
        <c-col :span="2">
SunJie committed
212 213 214
          <c-button size="small" icon="el-icon-delete" @click="onLiaccvDel">
            Del
          </c-button>
潘际乾 committed
215 216 217
        </c-col>
      </c-row>
    </c-col>
SunJie committed
218

潘际乾 committed
219
    <c-col :span="24"><div style="height:10px"></div></c-col>
SunJie committed
220

潘际乾 committed
221
    <c-col :span="22" :offset="1">
SunJie committed
222 223 224 225 226 227 228 229 230 231 232
      <c-table :border="true" :list="model.liaall.liaccv.liaccvg" style="width:80%,text-align:center">
        <el-table-column prop="ccdflg" label="CFO" width="auto"> </el-table-column>
        <el-table-column prop="ownref" label="保证金编号" width="auto"> </el-table-column>
        <el-table-column prop="cur" label="币种" width="auto"> </el-table-column>
        <el-table-column prop="oldamt" label="余额" width="auto"> </el-table-column>
        <el-table-column prop="amt" label="变动金额" width="auto"> </el-table-column>
        <el-table-column prop="acc" label="保证金账号" width="auto"> </el-table-column>
        <el-table-column prop="rat" label="汇率" width="auto"> </el-table-column>
        <el-table-column prop="concur" label="币种" width="auto"> </el-table-column>
        <el-table-column prop="covamt" label="折算后金额" width="auto"> </el-table-column>
      </c-table>
潘际乾 committed
233
    </c-col>
SunJie committed
234

潘际乾 committed
235
    <!-- <c-col :span="12">
SunJie committed
236
      <el-form-item label="Amount Covered">
潘际乾 committed
237 238
        <c-row>
          <c-col :span="8">
SunJie committed
239 240 241 242 243 244 245 246 247 248 249 250 251 252
            <c-select
              v-model="model.liaall.liaccv.concur"
              disabled
              style="width: 100%"
              placeholder="请选择Type of settlement"
            >
              <el-option
                v-for="item in codes.curtxt"
                :key="item.value"
                :label="item.label"
                :value="item.value"
              >
              </el-option>
            </c-select>
潘际乾 committed
253 254
          </c-col>
          <c-col :span="14">
SunJie committed
255 256 257 258
            <c-input
              v-model="model.liaall.liaccv.totcovamt"
              :readonly="true"
            ></c-input>
潘际乾 committed
259 260
          </c-col>
        </c-row>
SunJie committed
261
      </el-form-item>
潘际乾 committed
262
    </c-col> -->
SunJie committed
263 264

  
潘际乾 committed
265
       <c-col :span="24">
266
        <el-form-item label="金额总和">
潘际乾 committed
267
            <c-col :span="8">
SunJie committed
268
            <c-input style="width:50%"  v-model="model.liaall.liaccv.totcovamt"  placeholder="请输入金额总和"></c-input>
潘际乾 committed
269
            </c-col>
270
        </el-form-item>
潘际乾 committed
271
       </c-col>       
SunJie committed
272
         
273
                                   
潘际乾 committed
274
       <c-col :span="12">
275
        <el-form-item label="Additional Information ">
SunJie committed
276
            <c-input type="textarea" rows="5" v-model="model.liaall.liaccv.addinf" maxlength="200" show-word-limit placeholder="请输入Additional Information " ></c-input>
277
        </el-form-item>
潘际乾 committed
278
        </c-col>
SunJie committed
279
        
280 281 282
  </div>
</template>
<script>
SunJie committed
283
import Api from "~/service/Api";
284
import CommonProcess from "~/mixin/CommonProcess";
SunJie committed
285 286
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Ditopn/Event";
287 288

export default {
289
  inject: ['root'],
SunJie committed
290
  props: ["model", "codes"],
291
    mixins: [CommonProcess],
SunJie committed
292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319
  data() {
    return {
      dialogTableVisible: false,
      stmData: {
        columns: [
          '1 1:1 "Ref." 120',
          '2 2:1 "User" 80',
          '3 3:1 "Applicant" 196',
          '4 4:1 "Account" 120',
          '5 5:1 "Cur" 50',
          '6 6:1 "Amount" 80 2 0 1 18.3',
          '7 7:1 "Open date" 80 4 7',
          '8 8:1 "flg" 40',
          '9 9:1 "Remarks" 180',
          "P COLORED TRUE",
          "P VERTLINES TRUE",
          "P HORZLINES TRUE",
          "P MULTISELECT FALSE",
          "P COLUMNSIZING TRUE",
        ],
        data: [],
      },
      relrowDisabled: true,
    };
  },
  methods: { ...Event },
  created: function () {},
};
320 321 322
</script>
<style>
</style>