Commit 60fab286 by huangxin

brtdcr,botrad的bug处理

parent 700500ff
......@@ -7,6 +7,7 @@ export default class Brtdcr{
this.data = {
brdgrp:{
rec:{
advtyp:"",
ownref:"", // 单据参考号 .brdgrp.rec.ownref
nam:"", // Name of Bill Contract .brdgrp.rec.nam
rcvdat:"", // 到单日期 .brdgrp.rec.rcvdat
......
......@@ -3,13 +3,13 @@
<!-- =================顶部====================== -->
<c-col :span="24">
<c-col :span="11">
<c-col :span="20">
<c-col :span="22">
<el-form-item label="Reference" prop="bodgrp.rec.ownref" style="width: 100%">
<c-input v-model="model.bodgrp.rec.ownref" maxlength="16" placeholder="请输入Reference" style="width: 95%"
disabled></c-input>
</el-form-item>
</c-col>
<c-col :span="4">
<c-col :span="2">
<c-button style="margin:0 10px 0 0;padding: 0 10px;" size="small" type="primary" icon="el-icon-search"></c-button>
</c-col>
</c-col>
......@@ -66,7 +66,7 @@
</c-select>
</el-form-item>
</c-col>
<c-col :span="18">
<c-col :span="16">
<el-form-item label="Tenor Specification" prop="bodgrp.rec.matdat">
<c-date-picker
type="date"
......@@ -77,8 +77,8 @@
></c-date-picker>
</el-form-item>
</c-col>
<c-col :span="5">
<el-form-item label="" label-width="5px">
<c-col :span="4">
<el-form-item label="" label-width="50px">
<c-input
disabled
v-model="model.bodgrp.rec.matpercnt"
......@@ -86,9 +86,22 @@
></c-input>
</el-form-item>
</c-col>
<c-col :span="1">
<el-form-item label="Days" label-width="5px"> </el-form-item>
</c-col>
<c-col :span="4">
<el-form-item label="" prop="bodgrp.rec.matpertyp" label-width="5px">
<c-select disabled v-model="model.bodgrp.rec.matpertyp" style="width: 100%" placeholder="">
<el-option
v-for="item in matpertyp"
:key="item.value"
:label="item.label"
:value="item.value"
>
</el-option>
</c-select>
</el-form-item>
</c-col>
<c-col :span="24">
<el-form-item label=" " prop="bodgrp.rec.matperbeg">
<c-select v-model="model.bodgrp.rec.matperbeg" style="width:100%" :code="codes.matperbeg"
......@@ -258,6 +271,10 @@ export default {
tcddoc: "",
},
],
matpertyp: [
{ label: "Days", value: "D" },
{ label: "Months", value: "M" },
],
newValue: {
id: 0,
cmail1: "",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment