Преглед изворни кода

Merge remote-tracking branch 'origin/master'

hmp пре 4 година
родитељ
комит
1722adbe0d

+ 50 - 0
src/api/estate/temperaturerecord.js

@@ -0,0 +1,50 @@
+import request from '@/router/axios';
+
+export const getList = (current, size, params) => {
+  return request({
+    url: '/api/cyzh-estate/temperaturerecord/list',
+    method: 'get',
+    params: {
+      ...params,
+      current,
+      size,
+    }
+  })
+}
+
+export const getDetail = (id) => {
+  return request({
+    url: '/api/temperaturerecord/temperaturerecord/detail',
+    method: 'get',
+    params: {
+      id
+    }
+  })
+}
+
+export const remove = (ids) => {
+  return request({
+    url: '/api/cyzh-estate/temperaturerecord/remove',
+    method: 'post',
+    params: {
+      ids,
+    }
+  })
+}
+
+export const add = (row) => {
+  return request({
+    url: '/api/cyzh-estate/temperaturerecord/submit',
+    method: 'post',
+    data: row
+  })
+}
+
+export const update = (row) => {
+  return request({
+    url: '/api/cyzh-estate/temperaturerecord/submit',
+    method: 'post',
+    data: row
+  })
+}
+

Разлика између датотеке није приказан због своје велике величине
+ 374 - 469
src/views/device/iot/electricmeter.vue


Разлика између датотеке није приказан због своје велике величине
+ 373 - 458
src/views/device/iot/environmentmonitor.vue


+ 441 - 0
src/views/guestmng/stafftemperaturerecord.vue

@@ -0,0 +1,441 @@
+<template>
+  <basic-container>
+    <avue-crud :option="option"
+               :table-loading="loading"
+               :data="data"
+               :page="page"
+               :permission="permissionList"
+               :before-open="beforeOpen"
+               v-model="form"
+               ref="crud"
+               @row-update="rowUpdate"
+               @row-save="rowSave"
+               @row-del="rowDel"
+               @search-change="searchChange"
+               @search-reset="searchReset"
+               @selection-change="selectionChange"
+               @current-change="currentChange"
+               @size-change="sizeChange"
+               @refresh-change="refreshChange"
+               @on-load="onLoad">
+      <template slot="menuLeft">
+        <el-button type="danger"
+                   size="small"
+                   icon="el-icon-delete"
+                   plain
+                   v-if="permission.temperaturerecord_delete"
+                   @click="handleDelete">删 除
+        </el-button>
+      </template>
+
+      <template slot="originalPictureUrl" slot-scope="scope">
+        <img style="width: 70px;height: 40px;" :src="scope.row.originalPictureUrl" @click="openView(scope.row.originalPictureUrl)">
+      </template>
+      <template slot="originalPictureUrlForm" slot-scope="scope">
+        <img style="width: 70px;height: 40px;" :src="scope.row.originalPictureUrl" @click="openView(scope.row.originalPictureUrl)">
+      </template>
+
+      <template slot="faceUrl" slot-scope="scope">
+        <img style="width: 70px;height: 40px;" :src="scope.row.faceUrl" @click="openView(scope.row.faceUrl)">
+      </template>
+      <template slot="faceUrlForm" slot-scope="scope">
+        <img style="width: 70px;height: 40px;" :src="scope.row.faceUrl" @click="openView(scope.row.faceUrl)">
+      </template>
+
+      <template slot="infraredOriginalPictureUrl" slot-scope="scope">
+        <img style="width: 70px;height: 40px;" :src="scope.row.infraredOriginalPictureUrl" @click="openView(scope.row.infraredOriginalPictureUrl)">
+      </template>
+      <template slot="infraredOriginalPictureUrlForm" slot-scope="scope">
+        <img style="width: 70px;height: 40px;" :src="scope.row.infraredOriginalPictureUrl" @click="openView(scope.row.infraredOriginalPictureUrl)">
+      </template>
+
+      <template slot="infraredFaceUrl" slot-scope="scope">
+        <img style="width: 70px;height: 40px;" :src="scope.row.infraredFaceUrl" @click="openView(scope.row.infraredFaceUrl)">
+      </template>
+      <template slot="infraredFaceUrlForm" slot-scope="scope">
+        <img style="width: 70px;height: 40px;" :src="scope.row.infraredFaceUrl" @click="openView(scope.row.infraredFaceUrl)">
+      </template>
+
+    </avue-crud>
+  </basic-container>
+</template>
+
+<script>
+  import {getList, getDetail, add, update, remove} from "@/api/estate/temperaturerecord";
+  import {mapGetters} from "vuex";
+
+  export default {
+    data() {
+      return {
+        form: {},
+        query: {},
+        loading: true,
+        page: {
+          pageSize: 10,
+          currentPage: 1,
+          total: 0
+        },
+        selectionList: [],
+        option: {
+          height:'auto',
+          calcHeight: 30,
+          tip: false,
+          searchShow: true,
+          searchMenuSpan: 6,
+          border: true,
+          index: true,
+          viewBtn: true,
+          selection: true,
+          dialogClickModal: false,
+          column: [
+            {
+              label: "原图",
+              prop: "originalPictureUrl",
+              slot: true,
+              formslot: true,
+              rules: [{
+                required: false,
+                message: "请输入原图",
+                trigger: "blur"
+              }]
+            },
+            {
+              label: "比对图",
+              prop: "faceUrl",
+              slot: true,
+              formslot: true,
+              rules: [{
+                required: false,
+                message: "请输入比对图",
+                trigger: "blur"
+              }]
+            },
+            {
+              label: "红外原图",
+              prop: "infraredOriginalPictureUrl",
+              slot: true,
+              formslot: true,
+              rules: [{
+                required: false,
+                message: "请输入红外原图",
+                trigger: "blur"
+              }]
+            },
+            {
+              label: "红外比对图",
+              prop: "infraredFaceUrl",
+              slot: true,
+              formslot: true,
+              rules: [{
+                required: false,
+                message: "请输入红外比对图",
+                trigger: "blur"
+              }]
+            },
+            {
+              label: "相机编号",
+              prop: "cameraId",
+              hide: true,
+              rules: [{
+                required: false,
+                message: "请输入相机编号",
+                trigger: "blur"
+              }]
+            },
+            {
+              label: "相机名称",
+              prop: "cameraName",
+              hide: true,
+              rules: [{
+                required: false,
+                message: "请输入相机名称",
+                trigger: "blur"
+              }]
+            },
+            {
+              label: "对比度",
+              prop: "matchValue",
+              width: 60,
+              rules: [{
+                required: false,
+                message: "请输入对比度",
+                trigger: "blur"
+              }]
+            },
+            {
+              label: "人员名称",
+              prop: "personName",
+              search: true,
+              width: 80,
+              searchSpan: 4,
+              rules: [{
+                required: false,
+                message: "请输入人员名称",
+                trigger: "blur"
+              }]
+            },
+            {
+              label: "性别",
+              prop: "gender",
+              type: 'select',
+              width: 60,
+              search: true,
+              searchSpan: 4,
+              dicData: [
+                {label: '男', value: '0'},
+                {label: '女', value: '1'},
+              ],
+              rules: [{
+                required: false,
+                message: "请输入",
+                trigger: "blur"
+              }]
+            },
+            {
+              label: "人员电话",
+              prop: "phone",
+              search: true,
+              searchSpan: 4,
+              rules: [{
+                required: false,
+                message: "请输入人员电话",
+                trigger: "blur"
+              }]
+            },
+            {
+              label: "地址",
+              prop: "address",
+              search: true,
+              searchSpan: 4,
+              rules: [{
+                required: false,
+                message: "请输入地址",
+                trigger: "blur"
+              }]
+            },
+            {
+              label: "抓拍时间",
+              prop: "recogTime",
+              rules: [{
+                required: false,
+                message: "请输入抓拍时间",
+                trigger: "blur"
+              }]
+            },
+            {
+              label: "温度",
+              prop: "temperature",
+              width: 60,
+              rules: [{
+                required: false,
+                message: "请输入温度",
+                trigger: "blur"
+              }]
+            },
+            {
+              label: "设备编号",
+              prop: "deviceId",
+              search: true,
+              searchSpan: 4,
+              width: 70,
+              rules: [{
+                required: false,
+                message: "请输入设备编号",
+                trigger: "blur"
+              }]
+            },
+            {
+              label: "设备名称",
+              prop: "deviceName",
+              search: true,
+              searchSpan: 4,
+              rules: [{
+                required: false,
+                message: "请输入设备名称",
+                trigger: "blur"
+              }]
+            },
+
+            // {
+            //   label: "",
+            //   prop: "age",
+            //   rules: [{
+            //     required: false,
+            //     message: "请输入",
+            //     trigger: "blur"
+            //   }]
+            // },
+            // {
+            //   label: "未知?",
+            //   prop: "type",
+            //   rules: [{
+            //     required: false,
+            //     message: "请输入未知?",
+            //     trigger: "blur"
+            //   }]
+            // },
+            // {
+            //   label: "",
+            //   prop: "longitude",
+            //   rules: [{
+            //     required: false,
+            //     message: "请输入",
+            //     trigger: "blur"
+            //   }]
+            // },
+            // {
+            //   label: "",
+            //   prop: "latitude",
+            //   rules: [{
+            //     required: false,
+            //     message: "请输入",
+            //     trigger: "blur"
+            //   }]
+            // },
+
+          ]
+        },
+        data: []
+      };
+    },
+    computed: {
+      ...mapGetters(["permission"]),
+      permissionList() {
+        return {
+          addBtn: this.vaildData(this.permission.temperaturerecord_add, false),
+          viewBtn: this.vaildData(this.permission.temperaturerecord_view, false),
+          delBtn: this.vaildData(this.permission.temperaturerecord_delete, false),
+          editBtn: this.vaildData(this.permission.temperaturerecord_edit, false)
+        };
+      },
+      ids() {
+        let ids = [];
+        this.selectionList.forEach(ele => {
+          ids.push(ele.id);
+        });
+        return ids.join(",");
+      }
+    },
+    methods: {
+      openView(url) {
+        var data = [{
+          thumbUrl: url,
+          url: url
+        }];
+        this.$ImagePreview(data, 0);
+      },
+      rowSave(row, done, loading) {
+        add(row).then(() => {
+          this.onLoad(this.page);
+          this.$message({
+            type: "success",
+            message: "操作成功!"
+          });
+          done();
+        }, error => {
+          loading();
+          window.console.log(error);
+        });
+      },
+      rowUpdate(row, index, done, loading) {
+        update(row).then(() => {
+          this.onLoad(this.page);
+          this.$message({
+            type: "success",
+            message: "操作成功!"
+          });
+          done();
+        }, error => {
+          loading();
+          console.log(error);
+        });
+      },
+      rowDel(row) {
+        this.$confirm("确定将选择数据删除?", {
+          confirmButtonText: "确定",
+          cancelButtonText: "取消",
+          type: "warning"
+        })
+          .then(() => {
+            return remove(row.id);
+          })
+          .then(() => {
+            this.onLoad(this.page);
+            this.$message({
+              type: "success",
+              message: "操作成功!"
+            });
+          });
+      },
+      handleDelete() {
+        if (this.selectionList.length === 0) {
+          this.$message.warning("请选择至少一条数据");
+          return;
+        }
+        this.$confirm("确定将选择数据删除?", {
+          confirmButtonText: "确定",
+          cancelButtonText: "取消",
+          type: "warning"
+        })
+          .then(() => {
+            return remove(this.ids);
+          })
+          .then(() => {
+            this.onLoad(this.page);
+            this.$message({
+              type: "success",
+              message: "操作成功!"
+            });
+            this.$refs.crud.toggleSelection();
+          });
+      },
+      beforeOpen(done, type) {
+        if (["edit", "view"].includes(type)) {
+          getDetail(this.form.id).then(res => {
+            this.form = res.data.data;
+          });
+        }
+        done();
+      },
+      searchReset() {
+        this.query = {};
+        this.onLoad(this.page);
+      },
+      searchChange(params, done) {
+        this.query = params;
+        this.page.currentPage = 1;
+        this.onLoad(this.page, params);
+        done();
+      },
+      selectionChange(list) {
+        this.selectionList = list;
+      },
+      selectionClear() {
+        this.selectionList = [];
+        this.$refs.crud.toggleSelection();
+      },
+      currentChange(currentPage){
+        this.page.currentPage = currentPage;
+      },
+      sizeChange(pageSize){
+        this.page.pageSize = pageSize;
+      },
+      refreshChange() {
+        this.onLoad(this.page, this.query);
+      },
+      onLoad(page, params = {}) {
+        this.loading = true;
+        getList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => {
+          const data = res.data.data;
+          this.page.total = data.total;
+          this.data = data.records;
+          this.loading = false;
+          this.selectionClear();
+        });
+      }
+    }
+  };
+</script>
+
+<style>
+</style>

Неке датотеке нису приказане због велике количине промена