src/views/mdc/base/EquipmentOperationParamsAlarm.vue
@@ -34,8 +34,11 @@
          </a-col>
          <a-col :md="6" :sm="6">
            <a-space>
            <a-button type="primary" @click="searchQuery" icon="search">查询</a-button>
            <a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button>
              <a-button type="primary" @click="searchReset" icon="reload">重置</a-button>
              <a-button type="primary" icon="printer" v-print="'#paramsAlarm'" v-has="'paramsAlarm:print'">打印</a-button>
            </a-space>
          </a-col>
        </a-row>
      </a-form>
@@ -43,6 +46,7 @@
    <a-table
      ref="table"
      id="paramsAlarm"
      bordered
      size="middle"
      rowKey="equipmentid"
@@ -132,7 +136,7 @@
          pageSize: 30,
          pageSizeOptions: ['30', '50', '100'],
          showTotal: (total, range) => {
            return range[0] + "-" + range[1] + " 共" + total + "条"
            return range[0] + '-' + range[1] + ' 共' + total + '条'
          },
          showQuickJumper: true,
          showSizeChanger: true,
@@ -164,7 +168,7 @@
      filterOption(input, option) {
        return (
          option.componentOptions.children[0].text.toUpperCase().indexOf(input.toUpperCase()) >= 0
        );
        )
      },
      queryGroup() {
@@ -184,7 +188,7 @@
        }).finally(() => {
          this.loading = false
        })
      },
      }
    }
  }
</script>