projects/mesxc-zhp #286
@@ -36,7 +36,8 @@ const tableProps = [
 | 
				
			|||||||
  },
 | 
					  },
 | 
				
			||||||
  {
 | 
					  {
 | 
				
			||||||
    prop: 'objCode',
 | 
					    prop: 'objCode',
 | 
				
			||||||
    label: '对象编码'
 | 
					    label: '对象编码',
 | 
				
			||||||
 | 
					    showOverflowtooltip: true
 | 
				
			||||||
  },
 | 
					  },
 | 
				
			||||||
  {
 | 
					  {
 | 
				
			||||||
    prop: 'plcTableName',
 | 
					    prop: 'plcTableName',
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -46,7 +46,8 @@ const tableProps = [
 | 
				
			|||||||
    prop: 'tableName',
 | 
					    prop: 'tableName',
 | 
				
			||||||
    label: '能源表名',
 | 
					    label: '能源表名',
 | 
				
			||||||
    filter: publicFormatter('table_name'),
 | 
					    filter: publicFormatter('table_name'),
 | 
				
			||||||
    minWidth: 110
 | 
					    minWidth: 110,
 | 
				
			||||||
 | 
					    showOverflowtooltip: true
 | 
				
			||||||
  },
 | 
					  },
 | 
				
			||||||
  {
 | 
					  {
 | 
				
			||||||
    prop: 'recordTime',
 | 
					    prop: 'recordTime',
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -20,15 +20,18 @@ import * as XLSX from 'xlsx/xlsx.mjs'
 | 
				
			|||||||
const tableProps = [
 | 
					const tableProps = [
 | 
				
			||||||
  {
 | 
					  {
 | 
				
			||||||
    prop: 'objName',
 | 
					    prop: 'objName',
 | 
				
			||||||
    label: '统计对象'
 | 
					    label: '统计对象',
 | 
				
			||||||
 | 
					    showOverflowtooltip: true
 | 
				
			||||||
  },
 | 
					  },
 | 
				
			||||||
  {
 | 
					  {
 | 
				
			||||||
    prop: 'objCode',
 | 
					    prop: 'objCode',
 | 
				
			||||||
    label: '对象编码'
 | 
					    label: '对象编码',
 | 
				
			||||||
 | 
					    showOverflowtooltip: true
 | 
				
			||||||
  },
 | 
					  },
 | 
				
			||||||
  {
 | 
					  {
 | 
				
			||||||
    prop: 'energyTypeName',
 | 
					    prop: 'energyTypeName',
 | 
				
			||||||
    label: '能源类型'
 | 
					    label: '能源类型',
 | 
				
			||||||
 | 
					    showOverflowtooltip: true
 | 
				
			||||||
  },
 | 
					  },
 | 
				
			||||||
  {
 | 
					  {
 | 
				
			||||||
    prop: 'startValue',
 | 
					    prop: 'startValue',
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -2,46 +2,23 @@
 | 
				
			|||||||
  <div class="app-container">
 | 
					  <div class="app-container">
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    <!-- 搜索工作栏 -->
 | 
					    <!-- 搜索工作栏 -->
 | 
				
			||||||
    <search-bar
 | 
					    <search-bar :formConfigs="formConfig" ref="searchBarForm" @headBtnClick="buttonClick" />
 | 
				
			||||||
      :formConfigs="formConfig"
 | 
					 | 
				
			||||||
      ref="searchBarForm"
 | 
					 | 
				
			||||||
      @headBtnClick="buttonClick"
 | 
					 | 
				
			||||||
    />
 | 
					 | 
				
			||||||
    <!-- 列表 -->
 | 
					    <!-- 列表 -->
 | 
				
			||||||
    <base-table
 | 
					    <base-table :page="queryParams.pageNo" :limit="queryParams.pageSize" :table-props="tableProps" :table-data="list"
 | 
				
			||||||
      :page="queryParams.pageNo"
 | 
					      :max-height="tableH">
 | 
				
			||||||
      :limit="queryParams.pageSize"
 | 
					      <method-btn v-if="tableBtn.length" slot="handleBtn" :width="160" label="操作" :method-list="tableBtn"
 | 
				
			||||||
      :table-props="tableProps"
 | 
					        @clickBtn="handleClick" />
 | 
				
			||||||
      :table-data="list"
 | 
					 | 
				
			||||||
      :max-height="tableH"
 | 
					 | 
				
			||||||
    >
 | 
					 | 
				
			||||||
      <method-btn
 | 
					 | 
				
			||||||
        v-if="tableBtn.length"
 | 
					 | 
				
			||||||
        slot="handleBtn"
 | 
					 | 
				
			||||||
        :width="160"
 | 
					 | 
				
			||||||
        label="操作"
 | 
					 | 
				
			||||||
        :method-list="tableBtn"
 | 
					 | 
				
			||||||
        @clickBtn="handleClick"
 | 
					 | 
				
			||||||
      />
 | 
					 | 
				
			||||||
    </base-table>
 | 
					    </base-table>
 | 
				
			||||||
    <pagination
 | 
					    <pagination :page.sync="queryParams.pageNo" :limit.sync="queryParams.pageSize" :total="total"
 | 
				
			||||||
      :page.sync="queryParams.pageNo"
 | 
					      @pagination="getList" />
 | 
				
			||||||
      :limit.sync="queryParams.pageSize"
 | 
					 | 
				
			||||||
      :total="total"
 | 
					 | 
				
			||||||
      @pagination="getList"
 | 
					 | 
				
			||||||
    />
 | 
					 | 
				
			||||||
    <!-- 新增 -->
 | 
					    <!-- 新增 -->
 | 
				
			||||||
    <base-dialog
 | 
					    <base-dialog :dialogTitle="addOrEditTitle" :dialogVisible="centervisible" @cancel="handleCancel"
 | 
				
			||||||
      :dialogTitle="addOrEditTitle"
 | 
					      @confirm="handleConfirm" :before-close="handleCancel">
 | 
				
			||||||
      :dialogVisible="centervisible"
 | 
					 | 
				
			||||||
      @cancel="handleCancel"
 | 
					 | 
				
			||||||
      @confirm="handleConfirm"
 | 
					 | 
				
			||||||
      :before-close="handleCancel"
 | 
					 | 
				
			||||||
    >
 | 
					 | 
				
			||||||
      <energy-statistics-add ref="energyStatistics" @successSubmit="successSubmit" />
 | 
					      <energy-statistics-add ref="energyStatistics" @successSubmit="successSubmit" />
 | 
				
			||||||
    </base-dialog>
 | 
					    </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>
 | 
					  </div>
 | 
				
			||||||
</template>
 | 
					</template>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -63,7 +40,7 @@ const tableProps = [
 | 
				
			|||||||
    showOverflowtooltip: true
 | 
					    showOverflowtooltip: true
 | 
				
			||||||
  },
 | 
					  },
 | 
				
			||||||
  {
 | 
					  {
 | 
				
			||||||
    prop: 'type', 
 | 
					    prop: 'type',
 | 
				
			||||||
    label: '统计类型',
 | 
					    label: '统计类型',
 | 
				
			||||||
    filter: publicFormatter('statistic_type')
 | 
					    filter: publicFormatter('statistic_type')
 | 
				
			||||||
  },
 | 
					  },
 | 
				
			||||||
@@ -81,7 +58,7 @@ const tableProps = [
 | 
				
			|||||||
  }
 | 
					  }
 | 
				
			||||||
]
 | 
					]
 | 
				
			||||||
export default {
 | 
					export default {
 | 
				
			||||||
  name: "energyStatistics",
 | 
					  name: "EnergyStatistics",
 | 
				
			||||||
  components: { EnergyStatisticsAdd, EnergyStatisticsDet },
 | 
					  components: { EnergyStatisticsAdd, EnergyStatisticsDet },
 | 
				
			||||||
  data() {
 | 
					  data() {
 | 
				
			||||||
    return {
 | 
					    return {
 | 
				
			||||||
@@ -112,26 +89,26 @@ export default {
 | 
				
			|||||||
      tableProps,
 | 
					      tableProps,
 | 
				
			||||||
      tableBtn: [
 | 
					      tableBtn: [
 | 
				
			||||||
        this.$auth.hasPermi('monitoring:energy-statistics:bind')
 | 
					        this.$auth.hasPermi('monitoring:energy-statistics:bind')
 | 
				
			||||||
        ? {
 | 
					          ? {
 | 
				
			||||||
            type: 'connect',
 | 
					            type: 'connect',
 | 
				
			||||||
            btnName: '绑定'
 | 
					            btnName: '绑定'
 | 
				
			||||||
          }
 | 
					          }
 | 
				
			||||||
        : undefined,
 | 
					          : undefined,
 | 
				
			||||||
        {
 | 
					        {
 | 
				
			||||||
          type: 'detail',
 | 
					          type: 'detail',
 | 
				
			||||||
          btnName: '详情'
 | 
					          btnName: '详情'
 | 
				
			||||||
        },
 | 
					        },
 | 
				
			||||||
        this.$auth.hasPermi('monitoring:energy-statistics:update')
 | 
					        this.$auth.hasPermi('monitoring:energy-statistics:update')
 | 
				
			||||||
          ? {
 | 
					          ? {
 | 
				
			||||||
              type: 'edit',
 | 
					            type: 'edit',
 | 
				
			||||||
              btnName: '编辑'
 | 
					            btnName: '编辑'
 | 
				
			||||||
            }
 | 
					          }
 | 
				
			||||||
          : undefined,
 | 
					          : undefined,
 | 
				
			||||||
        this.$auth.hasPermi('monitoring:energy-statistics:delete')
 | 
					        this.$auth.hasPermi('monitoring:energy-statistics:delete')
 | 
				
			||||||
          ? {
 | 
					          ? {
 | 
				
			||||||
              type: 'delete',
 | 
					            type: 'delete',
 | 
				
			||||||
              btnName: '删除'
 | 
					            btnName: '删除'
 | 
				
			||||||
            }
 | 
					          }
 | 
				
			||||||
          : undefined
 | 
					          : undefined
 | 
				
			||||||
      ].filter((v) => v),
 | 
					      ].filter((v) => v),
 | 
				
			||||||
      tableH: this.tableHeight(260),
 | 
					      tableH: this.tableHeight(260),
 | 
				
			||||||
@@ -224,13 +201,13 @@ export default {
 | 
				
			|||||||
    },
 | 
					    },
 | 
				
			||||||
    /** 删除按钮操作 */
 | 
					    /** 删除按钮操作 */
 | 
				
			||||||
    handleDelete(row) {
 | 
					    handleDelete(row) {
 | 
				
			||||||
      this.$modal.confirm('是否确认删除方案名称为"' + row.name + '"的数据项?').then(function() {
 | 
					      this.$modal.confirm('是否确认删除方案名称为"' + row.name + '"的数据项?').then(function () {
 | 
				
			||||||
          return deleteEnergyStatistics(row.id);
 | 
					        return deleteEnergyStatistics(row.id);
 | 
				
			||||||
        }).then(() => {
 | 
					      }).then(() => {
 | 
				
			||||||
          this.queryParams.pageNo = 1;
 | 
					        this.queryParams.pageNo = 1;
 | 
				
			||||||
          this.getList();
 | 
					        this.getList();
 | 
				
			||||||
          this.$modal.msgSuccess("删除成功");
 | 
					        this.$modal.msgSuccess("删除成功");
 | 
				
			||||||
        }).catch(() => {});
 | 
					      }).catch(() => { });
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
    closeDrawer() {
 | 
					    closeDrawer() {
 | 
				
			||||||
      this.getList()
 | 
					      this.getList()
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user