|
@@ -3,7 +3,19 @@
|
|
|
<!-- 查询区域 -->
|
|
|
<div class="table-page-search-wrapper">
|
|
|
<a-form layout="inline" @keyup.enter.native="searchQuery">
|
|
|
- <a-row :gutter="24"> </a-row>
|
|
|
+ <a-row :gutter="24">
|
|
|
+ <a-col :xl="6" :lg="7" :md="8" :sm="24">
|
|
|
+ <a-form-item label="计费类型">
|
|
|
+ <j-dict-select-tag type="list" v-model="queryParam.feetype" dictCode="elecfee_base_feetype" placeholder="请选择计费类型" />
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
+ <a-col :xl="6" :lg="7" :md="8" :sm="24">
|
|
|
+ <span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
|
|
|
+ <a-button type="primary" @click="searchQuery" icon="search">查询</a-button>
|
|
|
+ <a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button>
|
|
|
+ </span>
|
|
|
+ </a-col>
|
|
|
+ </a-row>
|
|
|
</a-form>
|
|
|
</div>
|
|
|
<!-- 查询区域-END -->
|
|
@@ -163,18 +175,18 @@ export default {
|
|
|
title: '开始时间',
|
|
|
align: 'center',
|
|
|
dataIndex: 'begintime',
|
|
|
- customRender: function (text) {
|
|
|
- return !text ? '' : text.length > 10 ? text.substr(0, 10) : text
|
|
|
- },
|
|
|
+ // customRender: function (text) {
|
|
|
+ // return !text ? '' : text.length > 10 ? text.substr(0, 10) : text
|
|
|
+ // },
|
|
|
width: 130,
|
|
|
},
|
|
|
{
|
|
|
title: '结束时间',
|
|
|
align: 'center',
|
|
|
dataIndex: 'endtime',
|
|
|
- customRender: function (text) {
|
|
|
- return !text ? '' : text.length > 10 ? text.substr(0, 10) : text
|
|
|
- },
|
|
|
+ // customRender: function (text) {
|
|
|
+ // return !text ? '' : text.length > 10 ? text.substr(0, 10) : text
|
|
|
+ // },
|
|
|
width: 130,
|
|
|
},
|
|
|
{
|