瀏覽代碼

新增智能手机柜页面

sunyanqiang 3 年之前
父節點
當前提交
d817575799

+ 53 - 0
src/api/phone/cabinet.js

@@ -0,0 +1,53 @@
+import request from '@/utils/request'
+
+// 查询手机柜列表
+export function listCabinet(query) {
+  return request({
+    url: '/phone/cabinet/list',
+    method: 'get',
+    params: query
+  })
+}
+
+// 查询手机柜详细
+export function getCabinet(id) {
+  return request({
+    url: '/phone/cabinet/' + id,
+    method: 'get'
+  })
+}
+
+// 新增手机柜
+export function addCabinet(data) {
+  return request({
+    url: '/phone/cabinet',
+    method: 'post',
+    data: data
+  })
+}
+
+// 修改手机柜
+export function updateCabinet(data) {
+  return request({
+    url: '/phone/cabinet',
+    method: 'put',
+    data: data
+  })
+}
+
+// 删除手机柜
+export function delCabinet(id) {
+  return request({
+    url: '/phone/cabinet/' + id,
+    method: 'delete'
+  })
+}
+
+// 导出手机柜
+export function exportCabinet(query) {
+  return request({
+    url: '/phone/cabinet/export',
+    method: 'get',
+    params: query
+  })
+}

+ 53 - 0
src/api/phone/grid.js

@@ -0,0 +1,53 @@
+import request from '@/utils/request'
+
+// 查询手机柜格子列表
+export function listGrid(query) {
+  return request({
+    url: '/phone/grid/list',
+    method: 'get',
+    params: query
+  })
+}
+
+// 查询手机柜格子详细
+export function getGrid(id) {
+  return request({
+    url: '/phone/grid/' + id,
+    method: 'get'
+  })
+}
+
+// 新增手机柜格子
+export function addGrid(data) {
+  return request({
+    url: '/phone/grid',
+    method: 'post',
+    data: data
+  })
+}
+
+// 修改手机柜格子
+export function updateGrid(data) {
+  return request({
+    url: '/phone/grid',
+    method: 'put',
+    data: data
+  })
+}
+
+// 删除手机柜格子
+export function delGrid(id) {
+  return request({
+    url: '/phone/grid/' + id,
+    method: 'delete'
+  })
+}
+
+// 导出手机柜格子
+export function exportGrid(query) {
+  return request({
+    url: '/phone/grid/export',
+    method: 'get',
+    params: query
+  })
+}

+ 344 - 0
src/views/phone/cabinet/index.vue

@@ -0,0 +1,344 @@
+<template>
+  <div class="app-container">
+    <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px">
+      <el-form-item label="手机柜编号" prop="number">
+        <el-input
+          v-model="queryParams.number"
+          placeholder="请输入手机柜编号"
+          clearable
+          size="small"
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="手机柜位置" prop="address">
+        <el-input
+          v-model="queryParams.address"
+          placeholder="请输入手机柜位置"
+          clearable
+          size="small"
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="格子数量" prop="gridNumber">
+        <el-input
+          v-model="queryParams.gridNumber"
+          placeholder="请输入格子数量"
+          clearable
+          size="small"
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="存放数量" prop="storageQuantity">
+        <el-input
+          v-model="queryParams.storageQuantity"
+          placeholder="请输入存放数量"
+          clearable
+          size="small"
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="异常数量" prop="exceptionsNumber">
+        <el-input
+          v-model="queryParams.exceptionsNumber"
+          placeholder="请输入异常数量"
+          clearable
+          size="small"
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="所属单位id" prop="unitId">
+        <el-input
+          v-model="queryParams.unitId"
+          placeholder="请输入所属单位id"
+          clearable
+          size="small"
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="所属单位名称" prop="unitName">
+        <el-input
+          v-model="queryParams.unitName"
+          placeholder="请输入所属单位名称"
+          clearable
+          size="small"
+          @keyup.enter.native="handleQuery"
+        />
+      </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>
+
+    <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="['phone:cabinet: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="['phone:cabinet: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="['phone:cabinet:remove']"
+        >删除</el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="warning"
+          plain
+          icon="el-icon-download"
+          size="mini"
+          :loading="exportLoading"
+          @click="handleExport"
+          v-hasPermi="['phone:cabinet:export']"
+        >导出</el-button>
+      </el-col>
+      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
+    </el-row>
+
+    <el-table v-loading="loading" :data="cabinetList" @selection-change="handleSelectionChange">
+      <el-table-column type="selection" width="55" align="center" />
+      <el-table-column label="主键" align="center" prop="id" />
+      <el-table-column label="手机柜编号" align="center" prop="number" />
+      <el-table-column label="手机柜位置" align="center" prop="address" />
+      <el-table-column label="格子数量" align="center" prop="gridNumber" />
+      <el-table-column label="存放数量" align="center" prop="storageQuantity" />
+      <el-table-column label="异常数量" align="center" prop="exceptionsNumber" />
+      <el-table-column label="所属单位id" align="center" prop="unitId" />
+      <el-table-column label="所属单位名称" align="center" prop="unitName" />
+      <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="['phone:cabinet:edit']"
+          >修改</el-button>
+          <el-button
+            size="mini"
+            type="text"
+            icon="el-icon-delete"
+            @click="handleDelete(scope.row)"
+            v-hasPermi="['phone:cabinet: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-item label="手机柜编号" prop="number">
+          <el-input v-model="form.number" placeholder="请输入手机柜编号" />
+        </el-form-item>
+        <el-form-item label="手机柜位置" prop="address">
+          <el-input v-model="form.address" placeholder="请输入手机柜位置" />
+        </el-form-item>
+        <el-form-item label="格子数量" prop="gridNumber">
+          <el-input v-model="form.gridNumber" placeholder="请输入格子数量" />
+        </el-form-item>
+        <el-form-item label="存放数量" prop="storageQuantity">
+          <el-input v-model="form.storageQuantity" placeholder="请输入存放数量" />
+        </el-form-item>
+        <el-form-item label="异常数量" prop="exceptionsNumber">
+          <el-input v-model="form.exceptionsNumber" placeholder="请输入异常数量" />
+        </el-form-item>
+        <el-form-item label="所属单位id" prop="unitId">
+          <el-input v-model="form.unitId" placeholder="请输入所属单位id" />
+        </el-form-item>
+        <el-form-item label="所属单位名称" prop="unitName">
+          <el-input v-model="form.unitName" placeholder="请输入所属单位名称" />
+        </el-form-item>
+      </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 { listCabinet, getCabinet, delCabinet, addCabinet, updateCabinet, exportCabinet } from "@/api/phone/cabinet";
+
+export default {
+  name: "Cabinet",
+  data() {
+    return {
+      // 遮罩层
+      loading: true,
+      // 导出遮罩层
+      exportLoading: false,
+      // 选中数组
+      ids: [],
+      // 非单个禁用
+      single: true,
+      // 非多个禁用
+      multiple: true,
+      // 显示搜索条件
+      showSearch: true,
+      // 总条数
+      total: 0,
+      // 手机柜表格数据
+      cabinetList: [],
+      // 弹出层标题
+      title: "",
+      // 是否显示弹出层
+      open: false,
+      // 查询参数
+      queryParams: {
+        pageNum: 1,
+        pageSize: 10,
+        number: null,
+        address: null,
+        gridNumber: null,
+        storageQuantity: null,
+        exceptionsNumber: null,
+        unitId: null,
+        unitName: null
+      },
+      // 表单参数
+      form: {},
+      // 表单校验
+      rules: {
+      }
+    };
+  },
+  created() {
+    this.getList();
+  },
+  methods: {
+    /** 查询手机柜列表 */
+    getList() {
+      this.loading = true;
+      listCabinet(this.queryParams).then(response => {
+        this.cabinetList = response.rows;
+        this.total = response.total;
+        this.loading = false;
+      });
+    },
+    // 取消按钮
+    cancel() {
+      this.open = false;
+      this.reset();
+    },
+    // 表单重置
+    reset() {
+      this.form = {
+        id: null,
+        number: null,
+        address: null,
+        gridNumber: null,
+        storageQuantity: null,
+        exceptionsNumber: null,
+        unitId: null,
+        unitName: null
+      };
+      this.resetForm("form");
+    },
+    /** 搜索按钮操作 */
+    handleQuery() {
+      this.queryParams.pageNum = 1;
+      this.getList();
+    },
+    /** 重置按钮操作 */
+    resetQuery() {
+      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
+      getCabinet(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) {
+            updateCabinet(this.form).then(response => {
+              this.$modal.msgSuccess("修改成功");
+              this.open = false;
+              this.getList();
+            });
+          } else {
+            addCabinet(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 delCabinet(ids);
+      }).then(() => {
+        this.getList();
+        this.$modal.msgSuccess("删除成功");
+      }).catch(() => {});
+    },
+    /** 导出按钮操作 */
+    handleExport() {
+      const queryParams = this.queryParams;
+      this.$modal.confirm('是否确认导出所有手机柜数据项?').then(() => {
+        this.exportLoading = true;
+        return exportCabinet(queryParams);
+      }).then(response => {
+        this.$download.name(response.msg);
+        this.exportLoading = false;
+      }).catch(() => {});
+    }
+  }
+};
+</script>

+ 299 - 0
src/views/phone/grid/index.vue

@@ -0,0 +1,299 @@
+<template>
+  <div class="app-container">
+    <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px">
+      <el-form-item label="手机柜id" prop="phoneCabinetId">
+        <el-input
+          v-model="queryParams.phoneCabinetId"
+          placeholder="请输入手机柜id"
+          clearable
+          size="small"
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="所属人姓名" prop="name">
+        <el-input
+          v-model="queryParams.name"
+          placeholder="请输入所属人姓名"
+          clearable
+          size="small"
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="格子编号" prop="gridNumber">
+        <el-input
+          v-model="queryParams.gridNumber"
+          placeholder="请输入格子编号"
+          clearable
+          size="small"
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="格子状态" prop="latticeState">
+        <el-input
+          v-model="queryParams.latticeState"
+          placeholder="请输入格子状态"
+          clearable
+          size="small"
+          @keyup.enter.native="handleQuery"
+        />
+      </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>
+
+    <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="['phone:grid: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="['phone:grid: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="['phone:grid:remove']"
+        >删除</el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="warning"
+          plain
+          icon="el-icon-download"
+          size="mini"
+          :loading="exportLoading"
+          @click="handleExport"
+          v-hasPermi="['phone:grid:export']"
+        >导出</el-button>
+      </el-col>
+      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
+    </el-row>
+
+    <el-table v-loading="loading" :data="gridList" @selection-change="handleSelectionChange">
+      <el-table-column type="selection" width="55" align="center" />
+      <el-table-column label="主键id" align="center" prop="id" />
+      <el-table-column label="手机柜id" align="center" prop="phoneCabinetId" />
+      <el-table-column label="所属人姓名" align="center" prop="name" />
+      <el-table-column label="格子编号" align="center" prop="gridNumber" />
+      <el-table-column label="格子状态" align="center" prop="latticeState" />
+      <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="['phone:grid:edit']"
+          >修改</el-button>
+          <el-button
+            size="mini"
+            type="text"
+            icon="el-icon-delete"
+            @click="handleDelete(scope.row)"
+            v-hasPermi="['phone:grid: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-item label="手机柜id" prop="phoneCabinetId">
+          <el-input v-model="form.phoneCabinetId" placeholder="请输入手机柜id" />
+        </el-form-item>
+        <el-form-item label="所属人姓名" prop="name">
+          <el-input v-model="form.name" placeholder="请输入所属人姓名" />
+        </el-form-item>
+        <el-form-item label="格子编号" prop="gridNumber">
+          <el-input v-model="form.gridNumber" placeholder="请输入格子编号" />
+        </el-form-item>
+        <el-form-item label="格子状态" prop="latticeState">
+          <el-input v-model="form.latticeState" placeholder="请输入格子状态" />
+        </el-form-item>
+      </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 { listGrid, getGrid, delGrid, addGrid, updateGrid, exportGrid } from "@/api/phone/grid";
+
+export default {
+  name: "Grid",
+  data() {
+    return {
+      // 遮罩层
+      loading: true,
+      // 导出遮罩层
+      exportLoading: false,
+      // 选中数组
+      ids: [],
+      // 非单个禁用
+      single: true,
+      // 非多个禁用
+      multiple: true,
+      // 显示搜索条件
+      showSearch: true,
+      // 总条数
+      total: 0,
+      // 手机柜格子表格数据
+      gridList: [],
+      // 弹出层标题
+      title: "",
+      // 是否显示弹出层
+      open: false,
+      // 查询参数
+      queryParams: {
+        pageNum: 1,
+        pageSize: 10,
+        phoneCabinetId: null,
+        name: null,
+        gridNumber: null,
+        latticeState: null
+      },
+      // 表单参数
+      form: {},
+      // 表单校验
+      rules: {
+      }
+    };
+  },
+  created() {
+    this.getList();
+  },
+  methods: {
+    /** 查询手机柜格子列表 */
+    getList() {
+      this.loading = true;
+      listGrid(this.queryParams).then(response => {
+        this.gridList = response.rows;
+        this.total = response.total;
+        this.loading = false;
+      });
+    },
+    // 取消按钮
+    cancel() {
+      this.open = false;
+      this.reset();
+    },
+    // 表单重置
+    reset() {
+      this.form = {
+        id: null,
+        phoneCabinetId: null,
+        name: null,
+        gridNumber: null,
+        latticeState: null
+      };
+      this.resetForm("form");
+    },
+    /** 搜索按钮操作 */
+    handleQuery() {
+      this.queryParams.pageNum = 1;
+      this.getList();
+    },
+    /** 重置按钮操作 */
+    resetQuery() {
+      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
+      getGrid(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) {
+            updateGrid(this.form).then(response => {
+              this.$modal.msgSuccess("修改成功");
+              this.open = false;
+              this.getList();
+            });
+          } else {
+            addGrid(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 delGrid(ids);
+      }).then(() => {
+        this.getList();
+        this.$modal.msgSuccess("删除成功");
+      }).catch(() => {});
+    },
+    /** 导出按钮操作 */
+    handleExport() {
+      const queryParams = this.queryParams;
+      this.$modal.confirm('是否确认导出所有手机柜格子数据项?').then(() => {
+        this.exportLoading = true;
+        return exportGrid(queryParams);
+      }).then(response => {
+        this.$download.name(response.msg);
+        this.exportLoading = false;
+      }).catch(() => {});
+    }
+  }
+};
+</script>

+ 19 - 0
src/views/pt.vue

@@ -243,6 +243,20 @@
                 <a href="#" class="a">系统工具</a>
               </div>
             </li>
+            <li>
+              <div class="demo-box">
+                <div
+                  class="demo active"
+                  v-on:click="zhinengfun"
+                  data-url="/diary?ref=addtabs"
+                >
+                  <img src="../images/sx.png" alt />
+                </div>
+              </div>
+              <div class="demo-a">
+                <a href="#" class="a">智能手机柜</a>
+              </div>
+            </li>
             <img src="../assets/images/椭圆 513 (2).png" class="li-img" alt />
           </ul>
           <hr />
@@ -828,6 +842,11 @@ export default {
         .push({ path: "/index", query: { name: "/thought" } })
         .catch(() => {});
     },
+    zhinengfun() {
+      this.$router
+        .push({ path: "/index", query: { name: "/phone" } })
+        .catch(() => {});
+    },
     showfun() {
       this.open = false;
       printTriggerClear().then((res) => {

+ 2 - 2
src/views/thought/responses/index.vue

@@ -1189,9 +1189,9 @@ export default {
   background-size: 100% 100%;
   background-repeat: no-repeat;
 }
-.app-container {
+/* .app-container {
   display: flex;
-}
+} */
 /* 左侧树状盒子 */
 .app-container .box-lfet {
   width: 15%;