新增:1、qtask-debug结果渲染为表格
2、mdict 存贮到MySQL, meta 业务预览支持字典渲染验证
3、其他交互优化
This commit is contained in:
@@ -10,10 +10,10 @@
|
||||
.dropdown-menu-table .table td {
|
||||
padding: 0;
|
||||
}
|
||||
.dropdown-menu-table .table a {
|
||||
/*.dropdown-menu-table .table a {
|
||||
padding: 8px;
|
||||
display: block;
|
||||
}
|
||||
}*/
|
||||
/*.dropdown-menu-table .table a:hover,
|
||||
.dropdown-menu-table .table a:active,
|
||||
.dropdown-menu-table .table a:focus {
|
||||
@@ -160,15 +160,14 @@
|
||||
|
||||
<div class="col-xs-3">
|
||||
<div class="base-info"> 业务列表</div>
|
||||
<table class="table">
|
||||
<table class="table table-bordered tlist">
|
||||
<tr>
|
||||
<th>业务KEY</th>
|
||||
<th>业务名称</th>
|
||||
<th>操作</th>
|
||||
</tr>
|
||||
<tr v-for="item in services" @click="service=item.name;serviceLabel=item.comment;">
|
||||
<tr v-for="item in services" @click="service=item.name;serviceLabel=item.comment;" :class="[{'active': item.name==service}]">
|
||||
<td>
|
||||
<i class="icon icon-ok" v-if="item.name==service" style="color: #7f74c4"></i>
|
||||
{{item.name}}
|
||||
</td>
|
||||
<td>{{item.comment}}</td>
|
||||
@@ -227,7 +226,7 @@
|
||||
<td v-show="status=='detail'"><input type="checkbox" v-model="detailArr" :value="sheet + '$' + item.name"></td>
|
||||
<td v-show="status=='edit'"><input type="checkbox" v-model="editArr" :value="sheet + '$' + item.name"></td>
|
||||
|
||||
<td v-text="item.name" style="background-color: rgb(235, 235, 228);"></td>
|
||||
<td v-text="item.name"></td>
|
||||
<td v-text="item.label"></td>
|
||||
<!--<td v-text="item.type"></td>
|
||||
<td v-text="item.inType"></td>
|
||||
|
||||
Reference in New Issue
Block a user