|
|
@@ -1,98 +1,296 @@
|
|
|
<template>
|
|
|
- <div class="dashboard-editor-container">
|
|
|
+ <div class="app-container">
|
|
|
+ <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="100px">
|
|
|
+ <el-form-item label="子公司编号" prop="manufacturerCode">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.manufacturerCode"
|
|
|
+ placeholder="请输入子公司编号"
|
|
|
+ clearable
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="请求时间">
|
|
|
+ <el-date-picker
|
|
|
+ v-model="daterangeRequestTime"
|
|
|
+ style="width: 240px"
|
|
|
+ value-format="yyyy-MM-dd"
|
|
|
+ type="daterange"
|
|
|
+ range-separator="-"
|
|
|
+ start-placeholder="开始日期"
|
|
|
+ end-placeholder="结束日期"
|
|
|
+ ></el-date-picker>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item>
|
|
|
+ <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
|
|
+ <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
|
|
|
- <panel-group @handleSetLineChartData="handleSetLineChartData" />
|
|
|
-
|
|
|
- <el-row style="background:#fff;padding:16px 16px 0;margin-bottom:32px;">
|
|
|
- <line-chart :chart-data="lineChartData" />
|
|
|
- </el-row>
|
|
|
-
|
|
|
- <el-row :gutter="32">
|
|
|
- <el-col :xs="24" :sm="24" :lg="8">
|
|
|
- <div class="chart-wrapper">
|
|
|
- <raddar-chart />
|
|
|
- </div>
|
|
|
- </el-col>
|
|
|
- <el-col :xs="24" :sm="24" :lg="8">
|
|
|
- <div class="chart-wrapper">
|
|
|
- <pie-chart />
|
|
|
- </div>
|
|
|
- </el-col>
|
|
|
- <el-col :xs="24" :sm="24" :lg="8">
|
|
|
- <div class="chart-wrapper">
|
|
|
- <bar-chart />
|
|
|
- </div>
|
|
|
+ <el-row :gutter="10" class="mb8">
|
|
|
+<!-- <el-col :span="1.5">-->
|
|
|
+<!-- <el-button-->
|
|
|
+<!-- type="primary"-->
|
|
|
+<!-- plain-->
|
|
|
+<!-- icon="el-icon-plus"-->
|
|
|
+<!-- size="mini"-->
|
|
|
+<!-- @click="handleAdd"-->
|
|
|
+<!-- v-hasPermi="['api:heartbeat:add']"-->
|
|
|
+<!-- >新增</el-button>-->
|
|
|
+<!-- </el-col>-->
|
|
|
+<!-- <el-col :span="1.5">-->
|
|
|
+<!-- <el-button-->
|
|
|
+<!-- type="success"-->
|
|
|
+<!-- plain-->
|
|
|
+<!-- icon="el-icon-edit"-->
|
|
|
+<!-- size="mini"-->
|
|
|
+<!-- :disabled="single"-->
|
|
|
+<!-- @click="handleUpdate"-->
|
|
|
+<!-- v-hasPermi="['api:heartbeat:edit']"-->
|
|
|
+<!-- >修改</el-button>-->
|
|
|
+<!-- </el-col>-->
|
|
|
+<!-- <el-col :span="1.5">-->
|
|
|
+<!-- <el-button-->
|
|
|
+<!-- type="danger"-->
|
|
|
+<!-- plain-->
|
|
|
+<!-- icon="el-icon-delete"-->
|
|
|
+<!-- size="mini"-->
|
|
|
+<!-- :disabled="multiple"-->
|
|
|
+<!-- @click="handleDelete"-->
|
|
|
+<!-- v-hasPermi="['api:heartbeat:remove']"-->
|
|
|
+<!-- >删除</el-button>-->
|
|
|
+<!-- </el-col>-->
|
|
|
+ <el-col :span="1.5">
|
|
|
+ <el-button
|
|
|
+ type="warning"
|
|
|
+ plain
|
|
|
+ icon="el-icon-download"
|
|
|
+ size="mini"
|
|
|
+ @click="handleExport"
|
|
|
+ v-hasPermi="['api:heartbeat:export']"
|
|
|
+ >导出</el-button>
|
|
|
</el-col>
|
|
|
+ <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
</el-row>
|
|
|
|
|
|
+ <el-table v-loading="loading" :data="heartbeatList" @selection-change="handleSelectionChange">
|
|
|
+<!-- <el-table-column type="selection" align="center" />-->
|
|
|
+<!-- <el-table-column label="主键ID" align="center" prop="id" />-->
|
|
|
+ <el-table-column label="子公司编号" align="center" prop="manufacturerCode" />
|
|
|
+ <el-table-column label="子公司名称" align="center" prop="manufacturerName" />
|
|
|
+ <el-table-column label="最近一次心跳时间" align="center" prop="requestTime">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span>{{ parseTime(scope.row.requestTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="状态" align="center" >
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-button
|
|
|
+ size="mini"
|
|
|
+ :type="isOnline(scope.row.requestTime) ? 'success' : 'danger'"
|
|
|
+ :disabled="!isOnline(scope.row.requestTime)"
|
|
|
+ >
|
|
|
+ {{ isOnline(scope.row.requestTime) ? '在线' : '离线' }}
|
|
|
+ </el-button>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+<!-- <el-table-column label="操作" align="center" class-name="small-padding fixed-width">-->
|
|
|
+<!-- <template slot-scope="scope">-->
|
|
|
+<!-- <el-button-->
|
|
|
+<!-- size="mini"-->
|
|
|
+<!-- type="text"-->
|
|
|
+<!-- icon="el-icon-edit"-->
|
|
|
+<!-- @click="handleUpdate(scope.row)"-->
|
|
|
+<!-- v-hasPermi="['api:heartbeat:edit']"-->
|
|
|
+<!-- >修改</el-button>-->
|
|
|
+<!-- <el-button-->
|
|
|
+<!-- size="mini"-->
|
|
|
+<!-- type="text"-->
|
|
|
+<!-- icon="el-icon-delete"-->
|
|
|
+<!-- @click="handleDelete(scope.row)"-->
|
|
|
+<!-- v-hasPermi="['api:heartbeat:remove']"-->
|
|
|
+<!-- >删除</el-button>-->
|
|
|
+<!-- </template>-->
|
|
|
+<!-- </el-table-column>-->
|
|
|
+ </el-table>
|
|
|
+
|
|
|
+ <pagination
|
|
|
+ v-show="total>0"
|
|
|
+ :total="total"
|
|
|
+ :page.sync="queryParams.pageNum"
|
|
|
+ :limit.sync="queryParams.pageSize"
|
|
|
+ @pagination="getList"
|
|
|
+ />
|
|
|
|
|
|
+ <!-- 添加或修改子公司心跳对话框 -->
|
|
|
+ <el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
|
|
|
+ <el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
|
|
+ </el-form>
|
|
|
+ <div slot="footer" class="dialog-footer">
|
|
|
+ <el-button type="primary" @click="submitForm">确 定</el-button>
|
|
|
+ <el-button @click="cancel">取 消</el-button>
|
|
|
+ </div>
|
|
|
+ </el-dialog>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import PanelGroup from './dashboard/PanelGroup'
|
|
|
-import LineChart from './dashboard/LineChart'
|
|
|
-import RaddarChart from './dashboard/RaddarChart'
|
|
|
-import PieChart from './dashboard/PieChart'
|
|
|
-import BarChart from './dashboard/BarChart'
|
|
|
-
|
|
|
-const lineChartData = {
|
|
|
- newVisitis: {
|
|
|
- expectedData: [100, 120, 161, 134, 105, 160, 165],
|
|
|
- actualData: [120, 82, 91, 154, 162, 140, 145]
|
|
|
- },
|
|
|
- messages: {
|
|
|
- expectedData: [200, 192, 120, 144, 160, 130, 140],
|
|
|
- actualData: [180, 160, 151, 106, 145, 150, 130]
|
|
|
- },
|
|
|
- purchases: {
|
|
|
- expectedData: [80, 100, 121, 104, 105, 90, 100],
|
|
|
- actualData: [120, 90, 100, 138, 142, 130, 130]
|
|
|
- },
|
|
|
- shoppings: {
|
|
|
- expectedData: [130, 140, 141, 142, 145, 150, 160],
|
|
|
- actualData: [120, 82, 91, 154, 162, 140, 130]
|
|
|
- }
|
|
|
-}
|
|
|
+import { listHeartbeat, getHeartbeat, delHeartbeat, addHeartbeat, updateHeartbeat } from "@/api/api/heartbeat"
|
|
|
|
|
|
export default {
|
|
|
- name: 'Index',
|
|
|
- components: {
|
|
|
- PanelGroup,
|
|
|
- LineChart,
|
|
|
- RaddarChart,
|
|
|
- PieChart,
|
|
|
- BarChart
|
|
|
- },
|
|
|
+ name: "Heartbeat",
|
|
|
data() {
|
|
|
return {
|
|
|
- lineChartData: lineChartData.newVisitis
|
|
|
+ // 遮罩层
|
|
|
+ loading: true,
|
|
|
+ // 选中数组
|
|
|
+ ids: [],
|
|
|
+ // 非单个禁用
|
|
|
+ single: true,
|
|
|
+ // 非多个禁用
|
|
|
+ multiple: true,
|
|
|
+ // 显示搜索条件
|
|
|
+ showSearch: true,
|
|
|
+ // 总条数
|
|
|
+ total: 0,
|
|
|
+ // 子公司心跳表格数据
|
|
|
+ heartbeatList: [],
|
|
|
+ // 弹出层标题
|
|
|
+ title: "",
|
|
|
+ // 是否显示弹出层
|
|
|
+ open: false,
|
|
|
+ // 更新时间时间范围
|
|
|
+ daterangeRequestTime: [],
|
|
|
+ // 查询参数
|
|
|
+ queryParams: {
|
|
|
+ pageNum: 1,
|
|
|
+ pageSize: 10,
|
|
|
+ manufacturerCode: null,
|
|
|
+ requestTime: null,
|
|
|
+ },
|
|
|
+ // 表单参数
|
|
|
+ form: {},
|
|
|
+ // 表单校验
|
|
|
+ rules: {
|
|
|
+ manufacturerCode: [
|
|
|
+ { required: true, message: "子公司编号不能为空", trigger: "blur" }
|
|
|
+ ],
|
|
|
+ }
|
|
|
}
|
|
|
},
|
|
|
+ created() {
|
|
|
+ this.getList()
|
|
|
+ },
|
|
|
methods: {
|
|
|
- handleSetLineChartData(type) {
|
|
|
- this.lineChartData = lineChartData[type]
|
|
|
+ /** 查询子公司心跳列表 */
|
|
|
+ getList() {
|
|
|
+ this.loading = true
|
|
|
+ this.queryParams.params = {}
|
|
|
+ if (null != this.daterangeRequestTime && '' != this.daterangeRequestTime) {
|
|
|
+ this.queryParams.params["beginRequestTime"] = this.daterangeRequestTime[0]
|
|
|
+ this.queryParams.params["endRequestTime"] = this.daterangeRequestTime[1]
|
|
|
+ }
|
|
|
+ listHeartbeat(this.queryParams).then(response => {
|
|
|
+ this.heartbeatList = response.rows
|
|
|
+ this.total = response.total
|
|
|
+ this.loading = false
|
|
|
+ })
|
|
|
+ },
|
|
|
+ // 取消按钮
|
|
|
+ cancel() {
|
|
|
+ this.open = false
|
|
|
+ this.reset()
|
|
|
+ },
|
|
|
+ // 表单重置
|
|
|
+ reset() {
|
|
|
+ this.form = {
|
|
|
+ id: null,
|
|
|
+ manufacturerCode: null,
|
|
|
+ requestTime: null,
|
|
|
+ delFlag: null,
|
|
|
+ createBy: null,
|
|
|
+ createTime: null,
|
|
|
+ updateBy: null,
|
|
|
+ updateTime: null
|
|
|
+ }
|
|
|
+ this.resetForm("form")
|
|
|
+ },
|
|
|
+ /** 搜索按钮操作 */
|
|
|
+ handleQuery() {
|
|
|
+ this.queryParams.pageNum = 1
|
|
|
+ this.getList()
|
|
|
+ },
|
|
|
+ /** 重置按钮操作 */
|
|
|
+ resetQuery() {
|
|
|
+ this.daterangeRequestTime = []
|
|
|
+ this.resetForm("queryForm")
|
|
|
+ this.handleQuery()
|
|
|
+ },
|
|
|
+ // 多选框选中数据
|
|
|
+ handleSelectionChange(selection) {
|
|
|
+ this.ids = selection.map(item => item.id)
|
|
|
+ this.single = selection.length!==1
|
|
|
+ this.multiple = !selection.length
|
|
|
+ },
|
|
|
+ /** 新增按钮操作 */
|
|
|
+ handleAdd() {
|
|
|
+ this.reset()
|
|
|
+ this.open = true
|
|
|
+ this.title = "添加子公司心跳"
|
|
|
+ },
|
|
|
+ /** 修改按钮操作 */
|
|
|
+ handleUpdate(row) {
|
|
|
+ this.reset()
|
|
|
+ const id = row.id || this.ids
|
|
|
+ getHeartbeat(id).then(response => {
|
|
|
+ this.form = response.data
|
|
|
+ this.open = true
|
|
|
+ this.title = "修改子公司心跳"
|
|
|
+ })
|
|
|
+ },
|
|
|
+ /** 提交按钮 */
|
|
|
+ submitForm() {
|
|
|
+ this.$refs["form"].validate(valid => {
|
|
|
+ if (valid) {
|
|
|
+ if (this.form.id != null) {
|
|
|
+ updateHeartbeat(this.form).then(response => {
|
|
|
+ this.$modal.msgSuccess("修改成功")
|
|
|
+ this.open = false
|
|
|
+ this.getList()
|
|
|
+ })
|
|
|
+ } else {
|
|
|
+ addHeartbeat(this.form).then(response => {
|
|
|
+ this.$modal.msgSuccess("新增成功")
|
|
|
+ this.open = false
|
|
|
+ this.getList()
|
|
|
+ })
|
|
|
+ }
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ /** 删除按钮操作 */
|
|
|
+ handleDelete(row) {
|
|
|
+ const ids = row.id || this.ids
|
|
|
+ this.$modal.confirm('是否确认删除子公司心跳编号为"' + ids + '"的数据项?').then(function() {
|
|
|
+ return delHeartbeat(ids)
|
|
|
+ }).then(() => {
|
|
|
+ this.getList()
|
|
|
+ this.$modal.msgSuccess("删除成功")
|
|
|
+ }).catch(() => {})
|
|
|
+ },
|
|
|
+ /** 导出按钮操作 */
|
|
|
+ handleExport() {
|
|
|
+ this.download('api/heartbeat/export', {
|
|
|
+ ...this.queryParams
|
|
|
+ }, `heartbeat_${new Date().getTime()}.xlsx`)
|
|
|
+ },
|
|
|
+ /** 判断是否在线(半小时内为在线) */
|
|
|
+ isOnline(requestTime) {
|
|
|
+ if (!requestTime) return false;
|
|
|
+ const now = new Date();
|
|
|
+ const lastTime = new Date(requestTime);
|
|
|
+ const diffMinutes = (now - lastTime) / (1000 * 60);
|
|
|
+ return diffMinutes <= 30;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
</script>
|
|
|
-
|
|
|
-<style lang="scss" scoped>
|
|
|
-.dashboard-editor-container {
|
|
|
- padding: 32px;
|
|
|
- background-color: rgb(240, 242, 245);
|
|
|
- position: relative;
|
|
|
-
|
|
|
- .chart-wrapper {
|
|
|
- background: #fff;
|
|
|
- padding: 16px 16px 0;
|
|
|
- margin-bottom: 32px;
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-@media (max-width:1024px) {
|
|
|
- .chart-wrapper {
|
|
|
- padding: 8px;
|
|
|
- }
|
|
|
-}
|
|
|
-</style>
|