projects/mesxc-zjl #285

Merged
juzi merged 2 commits from projects/mesxc-zjl into projects/mesxc-test 2024-03-27 09:48:19 +08:00
4 changed files with 38 additions and 56 deletions

View File

@ -36,7 +36,8 @@ const tableProps = [
},
{
prop: 'objCode',
label: '对象编码'
label: '对象编码',
showOverflowtooltip: true
},
{
prop: 'plcTableName',

View File

@ -46,7 +46,8 @@ const tableProps = [
prop: 'tableName',
label: '能源表名',
filter: publicFormatter('table_name'),
minWidth: 110
minWidth: 110,
showOverflowtooltip: true
},
{
prop: 'recordTime',

View File

@ -20,15 +20,18 @@ import * as XLSX from 'xlsx/xlsx.mjs'
const tableProps = [
{
prop: 'objName',
label: '统计对象'
label: '统计对象',
showOverflowtooltip: true
},
{
prop: 'objCode',
label: '对象编码'
label: '对象编码',
showOverflowtooltip: true
},
{
prop: 'energyTypeName',
label: '能源类型'
label: '能源类型',
showOverflowtooltip: true
},
{
prop: 'startValue',

View File

@ -2,46 +2,23 @@
<div class="app-container">
<!-- 搜索工作栏 -->
<search-bar
:formConfigs="formConfig"
ref="searchBarForm"
@headBtnClick="buttonClick"
/>
<search-bar :formConfigs="formConfig" ref="searchBarForm" @headBtnClick="buttonClick" />
<!-- 列表 -->
<base-table
:page="queryParams.pageNo"
:limit="queryParams.pageSize"
:table-props="tableProps"
:table-data="list"
:max-height="tableH"
>
<method-btn
v-if="tableBtn.length"
slot="handleBtn"
:width="160"
label="操作"
:method-list="tableBtn"
@clickBtn="handleClick"
/>
<base-table :page="queryParams.pageNo" :limit="queryParams.pageSize" :table-props="tableProps" :table-data="list"
:max-height="tableH">
<method-btn v-if="tableBtn.length" slot="handleBtn" :width="160" label="操作" :method-list="tableBtn"
@clickBtn="handleClick" />
</base-table>
<pagination
:page.sync="queryParams.pageNo"
:limit.sync="queryParams.pageSize"
:total="total"
@pagination="getList"
/>
<pagination :page.sync="queryParams.pageNo" :limit.sync="queryParams.pageSize" :total="total"
@pagination="getList" />
<!-- 新增 -->
<base-dialog
:dialogTitle="addOrEditTitle"
:dialogVisible="centervisible"
@cancel="handleCancel"
@confirm="handleConfirm"
:before-close="handleCancel"
>
<base-dialog :dialogTitle="addOrEditTitle" :dialogVisible="centervisible" @cancel="handleCancel"
@confirm="handleConfirm" :before-close="handleCancel">
<energy-statistics-add ref="energyStatistics" @successSubmit="successSubmit" />
</base-dialog>
<!-- 参数绑定/查看 -->
<energy-statistics-det ref="plcParam" @closeDrawer="closeDrawer" :energyTypeList="energyTypeList"></energy-statistics-det>
<energy-statistics-det ref="plcParam" @closeDrawer="closeDrawer"
:energyTypeList="energyTypeList"></energy-statistics-det>
</div>
</template>
@ -81,7 +58,7 @@ const tableProps = [
}
]
export default {
name: "energyStatistics",
name: "EnergyStatistics",
components: { EnergyStatisticsAdd, EnergyStatisticsDet },
data() {
return {