Commit 94f6becb by lichengming

修改了登录页面和首页

parent 55b58f83
...@@ -39,7 +39,7 @@ ...@@ -39,7 +39,7 @@
:table-height="tableHeight" :table-height="tableHeight"
:get-page="getPage" :get-page="getPage"
:opt-col-width="140" :opt-col-width="140"
:icon-msg="iconMsg"
show-check-box show-check-box
@on-result-change="_tableResultChange" @on-result-change="_tableResultChange"
> >
...@@ -61,6 +61,9 @@ ...@@ -61,6 +61,9 @@
<span v-else-if="item.type" class="blue-color"> <span v-else-if="item.type" class="blue-color">
{{ scope.row[item.key] === undefined ? '': scope.row[item.key].display }} {{ scope.row[item.key] === undefined ? '': scope.row[item.key].display }}
</span> </span>
<span v-else-if="item.isNot" class="blue-color">
{{ scope.row[item.key] === 0 ? '否': '是' }}
</span>
<div v-else> <div v-else>
{{ scope.row[item.key] }} {{ scope.row[item.key] }}
</div> </div>
...@@ -103,7 +106,7 @@ export default { ...@@ -103,7 +106,7 @@ export default {
{ title: '比较符', key: 'compareSymbol' }, { title: '比较符', key: 'compareSymbol' },
{ title: '限值', key: 'limitValue' }, { title: '限值', key: 'limitValue' },
{ title: '单位', key: 'unit' }, { title: '单位', key: 'unit' },
{ title: '是否系统判定', key: 'judged' }, { title: '是否系统判定', key: 'judged', isNot: true },
{ title: '备注', key: 'remark' } { title: '备注', key: 'remark' }
], ],
getPage: {}, getPage: {},
......
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