Skip to content

Commit aaaa49f

Browse files
committed
1.0.4
1.修复了result列表里面的对其显示问题
1 parent 396e36d commit aaaa49f

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

SBDocClient/dist/vendor.bundle.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

SBDocClient/web/common/common.css

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,19 @@ body {
6060
background-color:rgb(247,246,242) ;
6161
}
6262

63+
.el-textarea
64+
{
65+
vertical-align:baseline ;
66+
}
67+
6368
.el-input__inner{
6469
display:inline-block;
6570
}
6671

6772
.el-textarea__inner{
6873
display: inline-block;
6974
height: 100%;
75+
vertical-align: middle;
7076
}
7177

7278
td {

SBDocClient/web/component/outParam.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<span :class="item.show?'el-icon-caret-bottom':'el-icon-caret-right'" style="color:#c7c7c7 "></span>
99
</el-col>
1010
<el-col class="col" :span="2" v-else>
11-
11+
&nbsp;
1212
</el-col>
1313
<el-col class="col" :span="22">
1414
<el-input style="width: 90%;" placeholder="请填写名称" v-model="item.name" v-if="item.name!=null" @focus="focus(item)" @blur="blur(item)"></el-input>
@@ -30,10 +30,10 @@
3030
</span>
3131
</td>
3232
<td style="width: 18%">
33-
<el-input type="textarea" style="width: 90%;height: 46px" resize="none" :row="0" placeholder="请填写备注;" v-model="item.remark" @focus="focus(item)" @blur="blur(item)"></el-input>
33+
<el-input type="textarea" style="width: 90%;height: 46px;line-height: 46px" resize="none" :rows="0" placeholder="请填写备注;" v-model="item.remark" @focus="focus(item)" @blur="blur(item)"></el-input>
3434
</td>
3535
<td style="width: 20%">
36-
<el-input type="textarea" style="width: 90%;height: 46px" resize="none" :row="0" placeholder="请填写Mock数据;" v-model="item.mock" v-if="item.type!=3 && item.type!=4" @focus="focus(item)" @blur="blur(item)"></el-input>
36+
<el-input type="textarea" style="width: 90%;height: 46px;line-height: 46px" resize="none" :rows="0" placeholder="请填写Mock数据;" v-model="item.mock" v-if="item.type!=3 && item.type!=4" @focus="focus(item)" @blur="blur(item)"></el-input>
3737
</td>
3838
<td style="width: 5%">
3939
<el-button type="text" icon="close" style="color: red;font-size: 15px" @click="remove(item,index,level)" size="small"></el-button>

SBDocClient/web/component/runBody.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,8 @@
9191
<el-input placeholder="请填入salt的值" id="bodyRawEncryptSalt" v-model="salt"></el-input>
9292
</el-col>
9393
</el-row>
94-
<el-row class="row">
95-
<el-input type="textarea" :rows="6" style="width: 100%;height: 200px;" v-if="info.rawType==0" placeholder="请填入文本内容" id="bodyText" v-model="info.rawText" :placeholder="info.rawTextRemark">
94+
<el-row class="row" style="margin-top: 10px">
95+
<el-input type="textarea" :rows="6" style="width: 100%;height: 200px;" v-if="info.rawType==0" id="bodyText" v-model="info.rawText" :placeholder="info.rawTextRemark?info.rawTextRemark:'请填入文本内容'">
9696
</el-input>
9797
<a href="javascript:void(0)" class="file" style="display: inline-block;" v-else>
9898
<span>选择文件</span><input type="file" id="bodyFile" @change="change" custom>

0 commit comments

Comments
 (0)