|
@@ -1,214 +1,51 @@
|
|
|
<template>
|
|
|
<div class="app-container">
|
|
|
- <el-form
|
|
|
- :model="queryParams"
|
|
|
- ref="queryForm"
|
|
|
- size="small"
|
|
|
- :inline="true"
|
|
|
- v-show="showSearch"
|
|
|
- label-width="68px"
|
|
|
- >
|
|
|
- <el-form-item label="名称" prop="cameraname">
|
|
|
- <el-input
|
|
|
- v-model="queryParams.cameraname"
|
|
|
- placeholder="请输入名称"
|
|
|
- clearable
|
|
|
- @keyup.enter.native="handleQuery"
|
|
|
- />
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="单位名称" prop="unitname">
|
|
|
- <el-input
|
|
|
- v-model="queryParams.unitname"
|
|
|
- placeholder="请输入单位名称"
|
|
|
- clearable
|
|
|
- @keyup.enter.native="handleQuery"
|
|
|
- />
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="单位地址" prop="cameraaddress">
|
|
|
- <el-input
|
|
|
- v-model="queryParams.cameraaddress"
|
|
|
- placeholder="请输入单位地址"
|
|
|
- clearable
|
|
|
- @keyup.enter.native="handleQuery"
|
|
|
- />
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="创建时间" prop="cretetime">
|
|
|
- <el-date-picker
|
|
|
- clearable
|
|
|
- v-model="queryParams.cretetime"
|
|
|
- type="date"
|
|
|
- value-format="yyyy-MM-dd"
|
|
|
- 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>
|
|
|
-
|
|
|
- <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="['monitoring:brigadecamera: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="['monitoring:brigadecamera: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="['monitoring:brigadecamera: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="['monitoring:brigadecamera:export']"
|
|
|
- >导出</el-button
|
|
|
- >
|
|
|
- </el-col>
|
|
|
- <right-toolbar
|
|
|
- :showSearch.sync="showSearch"
|
|
|
- @queryTable="getList"
|
|
|
- ></right-toolbar>
|
|
|
- </el-row>
|
|
|
-
|
|
|
- <el-table
|
|
|
- v-loading="loading"
|
|
|
- :data="brigadecameraList"
|
|
|
- @selection-change="handleSelectionChange"
|
|
|
- >
|
|
|
- <el-table-column type="selection" width="55" align="center" />
|
|
|
- <el-table-column label="${comment}" align="center" prop="id" />
|
|
|
- <el-table-column label="名称" align="center" prop="cameraname" />
|
|
|
- <el-table-column label="单位名称" align="center" prop="unitname" />
|
|
|
- <el-table-column label="单位地址" align="center" prop="cameraaddress" />
|
|
|
- <el-table-column
|
|
|
- label="创建时间"
|
|
|
- align="center"
|
|
|
- prop="cretetime"
|
|
|
- width="180"
|
|
|
- >
|
|
|
- <template slot-scope="scope">
|
|
|
- <span>{{ parseTime(scope.row.cretetime, "{y}-{m}-{d}") }}</span>
|
|
|
- </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="['monitoring:brigadecamera:edit']"
|
|
|
- >修改</el-button
|
|
|
- >
|
|
|
- <el-button
|
|
|
- size="mini"
|
|
|
- type="text"
|
|
|
- icon="el-icon-delete"
|
|
|
- @click="handleDelete(scope.row)"
|
|
|
- v-hasPermi="['monitoring:brigadecamera: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="cameraname">
|
|
|
- <el-input v-model="form.cameraname" placeholder="请输入名称" />
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="单位名称" prop="unitname">
|
|
|
- <el-input v-model="form.unitname" placeholder="请输入单位名称" />
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="单位地址" prop="cameraaddress">
|
|
|
- <el-input v-model="form.cameraaddress" placeholder="请输入单位地址" />
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="创建时间" prop="cretetime">
|
|
|
- <el-date-picker
|
|
|
- clearable
|
|
|
- v-model="form.cretetime"
|
|
|
- type="date"
|
|
|
- value-format="yyyy-MM-dd"
|
|
|
- placeholder="请选择创建时间"
|
|
|
+ <div class="box">
|
|
|
+ <ul>
|
|
|
+ <li class="oneUl" v-for="(item, i) in cabinetList" :key="i">
|
|
|
+ <div
|
|
|
+ style="
|
|
|
+ width: 265px;
|
|
|
+ height: 230px;
|
|
|
+ cursor: pointer;
|
|
|
+ text-align: center;
|
|
|
+ "
|
|
|
>
|
|
|
- </el-date-picker>
|
|
|
- </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 class="title">摄像头</div>
|
|
|
+ <div style="margin-top: 34%">
|
|
|
+ <el-button size="btcks" @click="opens">查看</el-button>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </li>
|
|
|
+ </ul>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
+import axios from "axios";
|
|
|
import {
|
|
|
- listBrigadecamera,
|
|
|
- getBrigadecamera,
|
|
|
- delBrigadecamera,
|
|
|
- addBrigadecamera,
|
|
|
- updateBrigadecamera,
|
|
|
-} from "@/api/monitoring/brigadecamera";
|
|
|
+ getCabinet,
|
|
|
+ delCabinet,
|
|
|
+ addCabinet,
|
|
|
+ updateCabinet,
|
|
|
+ exportCabinet,
|
|
|
+ xianPhone,
|
|
|
+ xianPhoneGeZi,
|
|
|
+ xianPhoneOppe,
|
|
|
+ getToken,
|
|
|
+} from "@/api/phone/cabinet";
|
|
|
+import { from } from "../../../../public/assets/libs/moment/src/lib/moment/from";
|
|
|
+import Cookies from "js-cookie";
|
|
|
|
|
|
export default {
|
|
|
- name: "Brigadecamera",
|
|
|
+ name: "Cabinet",
|
|
|
data() {
|
|
|
return {
|
|
|
// 遮罩层
|
|
|
loading: true,
|
|
|
+ // 导出遮罩层
|
|
|
+ exportLoading: false,
|
|
|
// 选中数组
|
|
|
ids: [],
|
|
|
// 非单个禁用
|
|
@@ -219,38 +56,50 @@ export default {
|
|
|
showSearch: true,
|
|
|
// 总条数
|
|
|
total: 0,
|
|
|
- // 摄像头管理表格数据
|
|
|
- brigadecameraList: [],
|
|
|
+ // 手机柜表格数据
|
|
|
+ cabinetList: [
|
|
|
+ { number: 1, ip: 2, gridCount: "你好" },
|
|
|
+ { number: 1, ip: 2, gridCount: "你好" },
|
|
|
+ { number: 1, ip: 2, gridCount: "你好" },
|
|
|
+ { number: 1, ip: 2, gridCount: "你好" },
|
|
|
+ { number: 1, ip: 2, gridCount: "你好" },
|
|
|
+ { number: 1, ip: 2, gridCount: "你好" },
|
|
|
+ { number: 1, ip: 2, gridCount: "你好" },
|
|
|
+ { number: 1, ip: 2, gridCount: "你好" },
|
|
|
+ { number: 1, ip: 2, gridCount: "你好" },
|
|
|
+ { number: 1, ip: 2, gridCount: "你好" },
|
|
|
+ ],
|
|
|
+ // 手机柜格子列表
|
|
|
+ gridList: [],
|
|
|
// 弹出层标题
|
|
|
title: "",
|
|
|
// 是否显示弹出层
|
|
|
open: false,
|
|
|
// 查询参数
|
|
|
queryParams: {
|
|
|
- pageNum: 1,
|
|
|
+ pageNo: 1,
|
|
|
pageSize: 10,
|
|
|
- cameraname: null,
|
|
|
- unitname: null,
|
|
|
- cameraaddress: null,
|
|
|
- cretetime: null,
|
|
|
+ number: null,
|
|
|
+ address: null,
|
|
|
+ gridNumber: null,
|
|
|
+ storageQuantity: null,
|
|
|
+ exceptionsNumber: null,
|
|
|
+ unitId: null,
|
|
|
+ unitName: null,
|
|
|
},
|
|
|
- // 表单参数
|
|
|
- form: {},
|
|
|
- // 表单校验
|
|
|
- rules: {},
|
|
|
};
|
|
|
},
|
|
|
created() {
|
|
|
- this.getList();
|
|
|
+ // this.getList();
|
|
|
},
|
|
|
methods: {
|
|
|
- /** 查询摄像头管理列表 */
|
|
|
+ opens() {
|
|
|
+ console.log(1);
|
|
|
+ },
|
|
|
+ /** 查询摄像头列表 */
|
|
|
getList() {
|
|
|
- this.loading = true;
|
|
|
- listBrigadecamera(this.queryParams).then((response) => {
|
|
|
- this.brigadecameraList = response.rows;
|
|
|
- this.total = response.total;
|
|
|
- this.loading = false;
|
|
|
+ xianPhone().then((res) => {
|
|
|
+ this.cabinetList = res.data.infos;
|
|
|
});
|
|
|
},
|
|
|
// 取消按钮
|
|
@@ -262,10 +111,13 @@ export default {
|
|
|
reset() {
|
|
|
this.form = {
|
|
|
id: null,
|
|
|
- cameraname: null,
|
|
|
- unitname: null,
|
|
|
- cameraaddress: null,
|
|
|
- cretetime: null,
|
|
|
+ number: null,
|
|
|
+ address: null,
|
|
|
+ gridNumber: null,
|
|
|
+ storageQuantity: null,
|
|
|
+ exceptionsNumber: null,
|
|
|
+ unitId: null,
|
|
|
+ unitName: null,
|
|
|
};
|
|
|
this.resetForm("form");
|
|
|
},
|
|
@@ -279,72 +131,297 @@ export default {
|
|
|
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;
|
|
|
- getBrigadecamera(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) {
|
|
|
- updateBrigadecamera(this.form).then((response) => {
|
|
|
- this.$modal.msgSuccess("修改成功");
|
|
|
- this.open = false;
|
|
|
- this.getList();
|
|
|
- });
|
|
|
- } else {
|
|
|
- addBrigadecamera(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 delBrigadecamera(ids);
|
|
|
- })
|
|
|
- .then(() => {
|
|
|
- this.getList();
|
|
|
- this.$modal.msgSuccess("删除成功");
|
|
|
- })
|
|
|
- .catch(() => {});
|
|
|
- },
|
|
|
- /** 导出按钮操作 */
|
|
|
- handleExport() {
|
|
|
- this.download(
|
|
|
- "monitoring/brigadecamera/export",
|
|
|
- {
|
|
|
- ...this.queryParams,
|
|
|
- },
|
|
|
- `brigadecamera_${new Date().getTime()}.xlsx`
|
|
|
- );
|
|
|
- },
|
|
|
},
|
|
|
};
|
|
|
</script>
|
|
|
+<style scoped>
|
|
|
+* {
|
|
|
+ padding: 0;
|
|
|
+}
|
|
|
+ul {
|
|
|
+ list-style-type: none;
|
|
|
+}
|
|
|
+.box ul {
|
|
|
+ /* display: flex;
|
|
|
+ flex-flow: wrap; */
|
|
|
+ display: flex;
|
|
|
+ flex-flow: wrap;
|
|
|
+ margin-left: 2%;
|
|
|
+ padding-left: -1%;
|
|
|
+ padding-top: 28px;
|
|
|
+}
|
|
|
+.oneUl {
|
|
|
+ flex: 1;
|
|
|
+ /* display: inline-block; */
|
|
|
+ background: url("../../../assets/images/柜子2.png") no-repeat;
|
|
|
+ /* width: 306px; */
|
|
|
+ height: 285px;
|
|
|
+ padding: 22px;
|
|
|
+ min-width: 308px;
|
|
|
+ margin-bottom: 40px;
|
|
|
+}
|
|
|
+.title {
|
|
|
+ color: #fff;
|
|
|
+ height: 16px;
|
|
|
+ display: inline-table;
|
|
|
+}
|
|
|
+.table {
|
|
|
+ margin-top: 18px;
|
|
|
+ line-height: 32px;
|
|
|
+ padding-left: 12px;
|
|
|
+ color: #fff;
|
|
|
+ cursor: pointer;
|
|
|
+}
|
|
|
+.mb9 {
|
|
|
+ margin-bottom: 20px;
|
|
|
+ margin-top: 10px;
|
|
|
+}
|
|
|
+::v-deep .el-input__inner {
|
|
|
+ color: #fff;
|
|
|
+ /* width: 200px; */
|
|
|
+ height: 36px;
|
|
|
+}
|
|
|
+.red {
|
|
|
+ background: url("../../../assets/images/抽屉-红色1.png") no-repeat !important;
|
|
|
+}
|
|
|
+.greed {
|
|
|
+ background: url("../../../assets/images/抽屉-绿色1.png") no-repeat !important;
|
|
|
+}
|
|
|
+.yellow {
|
|
|
+ background: url("../../../assets/images/抽屉-黄色1.png") no-repeat !important;
|
|
|
+}
|
|
|
+.grey {
|
|
|
+ background: url("../../../assets/images/柜子-灰.png") no-repeat !important;
|
|
|
+}
|
|
|
+.orging {
|
|
|
+ background: url("../../../assets/images/柜子-灰.png") no-repeat;
|
|
|
+}
|
|
|
+
|
|
|
+.box1 {
|
|
|
+ padding-top: 17px;
|
|
|
+ padding-left: 24px;
|
|
|
+}
|
|
|
+.twoUl li {
|
|
|
+ height: 114px;
|
|
|
+ padding: 20px;
|
|
|
+ margin-right: 22px;
|
|
|
+ margin-bottom: 43px;
|
|
|
+ min-width: 175px;
|
|
|
+
|
|
|
+ /* margin-bottom: 43px;
|
|
|
+ flex: 1;
|
|
|
+ max-width: 173px;
|
|
|
+ margin-right: 2%; */
|
|
|
+}
|
|
|
+.twoUl {
|
|
|
+ /* display: inline-block;
|
|
|
+ padding-left: 0px;
|
|
|
+ margin-left: 10px;
|
|
|
+ margin-top: 0px;
|
|
|
+ margin-bottom: 38px;
|
|
|
+ margin-right: 14px; */
|
|
|
+ padding-left: 12px;
|
|
|
+ display: flex;
|
|
|
+ flex-flow: wrap;
|
|
|
+ margin-top: 0px;
|
|
|
+}
|
|
|
+.two_div {
|
|
|
+ text-align: center;
|
|
|
+ margin-top: 10px;
|
|
|
+ padding-top: 10px;
|
|
|
+ color: #fff;
|
|
|
+}
|
|
|
+::v-deep .el-button--mini {
|
|
|
+ margin-left: 25px !important;
|
|
|
+ margin-top: 6px !important;
|
|
|
+ background: #1263aa;
|
|
|
+ border-color: #1263aa;
|
|
|
+ color: #ffffff;
|
|
|
+ width: 82px;
|
|
|
+ height: 30px;
|
|
|
+}
|
|
|
+.shuJu {
|
|
|
+ height: 16px;
|
|
|
+ margin-top: 26px;
|
|
|
+ margin-right: 90px;
|
|
|
+ float: right;
|
|
|
+ color: #fff;
|
|
|
+ font-size: 14px;
|
|
|
+}
|
|
|
+
|
|
|
+.box4::before {
|
|
|
+ display: inline-block;
|
|
|
+ content: "";
|
|
|
+ width: 8px;
|
|
|
+ height: 8px;
|
|
|
+ /* border-radius: 50%; */
|
|
|
+ background-color: #67c23a;
|
|
|
+ margin-left: 26px;
|
|
|
+}
|
|
|
+.box5::before {
|
|
|
+ display: inline-block;
|
|
|
+ content: "";
|
|
|
+ width: 8px;
|
|
|
+ height: 8px;
|
|
|
+ /* border-radius: 50%; */
|
|
|
+ background-color: #ff4949;
|
|
|
+ margin-left: 26px;
|
|
|
+}
|
|
|
+.box6::before {
|
|
|
+ display: inline-block;
|
|
|
+ content: "";
|
|
|
+ width: 8px;
|
|
|
+ height: 8px;
|
|
|
+ /* border-radius: 50%; */
|
|
|
+ background-color: #ffba00;
|
|
|
+ margin-left: 26px;
|
|
|
+}
|
|
|
+.box7::before {
|
|
|
+ display: inline-block;
|
|
|
+ content: "";
|
|
|
+ width: 8px;
|
|
|
+ height: 8px;
|
|
|
+ /* border-radius: 50%; */
|
|
|
+ background-color: #98a7bc;
|
|
|
+ margin-left: 26px;
|
|
|
+}
|
|
|
+::v-deep .el-dialog {
|
|
|
+ background-color: #004d86;
|
|
|
+ margin: auto;
|
|
|
+}
|
|
|
+::v-deep .el-dialog__header {
|
|
|
+ border-bottom: 1px solid #718a9d;
|
|
|
+ margin: auto;
|
|
|
+}
|
|
|
+::v-deep .el-dialog__title {
|
|
|
+ color: #fff;
|
|
|
+ font: 18px;
|
|
|
+}
|
|
|
+.box2 form .el-form-item {
|
|
|
+ color: #fff;
|
|
|
+ margin-right: 20px;
|
|
|
+}
|
|
|
+
|
|
|
+/* 鼠标经过颜色 */
|
|
|
+::v-deep .el-table__body tr:hover > td {
|
|
|
+ background-color: transparent !important;
|
|
|
+}
|
|
|
+::v-deep .box1 form {
|
|
|
+ margin-left: -14px;
|
|
|
+}
|
|
|
+::v-deep .box1 form .el-form-item {
|
|
|
+ margin-top: 17px;
|
|
|
+}
|
|
|
+::v-deep .el-form-item {
|
|
|
+ margin-bottom: 29px;
|
|
|
+}
|
|
|
+.jiben {
|
|
|
+ width: 100%;
|
|
|
+ height: 32px;
|
|
|
+ background-image: url(/static/img/小标题底.b7c6f45a.png);
|
|
|
+ margin-bottom: 18px;
|
|
|
+ color: #fff;
|
|
|
+ padding-left: 16px;
|
|
|
+ line-height: 32px;
|
|
|
+ background-size: contain;
|
|
|
+}
|
|
|
+::v-deep .el-table tr:nth-child(odd) {
|
|
|
+ background: #004d86;
|
|
|
+}
|
|
|
+::v-deep .el-dialog__body {
|
|
|
+ padding: 30px 0px 30px 40px;
|
|
|
+}
|
|
|
+::v-deep .el-form-item__label {
|
|
|
+ padding: 0 0 0 0;
|
|
|
+}
|
|
|
+/* 重置按钮 */
|
|
|
+.el-button--btp.is-active,
|
|
|
+.el-button--btp:active {
|
|
|
+ background: #3da1f8;
|
|
|
+ border-color: #3da1f8;
|
|
|
+ color: #ffffff;
|
|
|
+}
|
|
|
+
|
|
|
+.el-button--btp:focus,
|
|
|
+.el-button--btp:hover {
|
|
|
+ background: #3da1f8;
|
|
|
+ border-color: #3da1f8;
|
|
|
+ color: #ffffff;
|
|
|
+}
|
|
|
+
|
|
|
+.el-button--btp {
|
|
|
+ color: #ffffff;
|
|
|
+ width: 76px;
|
|
|
+ height: 36px;
|
|
|
+ background-color: #1d96ff;
|
|
|
+ border-radius: 4px;
|
|
|
+ font-size: 14px;
|
|
|
+ text-align: center;
|
|
|
+ margin-top: 1px;
|
|
|
+}
|
|
|
+::v-deep .el-dialog {
|
|
|
+ border-radius: 8px;
|
|
|
+}
|
|
|
+::v-deep .has-gutter tr {
|
|
|
+ height: 60px;
|
|
|
+}
|
|
|
+/* 分页样式 */
|
|
|
+::v-deep .pagination-container {
|
|
|
+ background: #004d85 !important;
|
|
|
+}
|
|
|
+::v-deep .el-pagination__total {
|
|
|
+ margin-top: 2px !important;
|
|
|
+}
|
|
|
+::v-deep .el-pagination .el-select .el-input .el-input__inner {
|
|
|
+ background-color: #196299 !important;
|
|
|
+ height: 30px;
|
|
|
+}
|
|
|
+::v-deep .el-pagination.is-background .btn-prev,
|
|
|
+.el-pagination.is-background .btn-next {
|
|
|
+ background-color: #265070 !important;
|
|
|
+}
|
|
|
+::v-deep .el-pagination.is-background .el-pager li {
|
|
|
+ background-color: #196299 !important;
|
|
|
+}
|
|
|
+::v-deep .el-pagination__editor.el-input .el-input__inner {
|
|
|
+ background-color: #196299 !important;
|
|
|
+}
|
|
|
+::v-deep .el-pagination.is-background .el-pager li:not(.disabled).active {
|
|
|
+ background-color: #1890ff !important;
|
|
|
+}
|
|
|
+::v-deep .el-pagination.is-background .btn-next {
|
|
|
+ background: #265070 !important;
|
|
|
+}
|
|
|
+::v-deep .el-pagination__sizes {
|
|
|
+ display: none !important;
|
|
|
+}
|
|
|
+::v-deep .el-table {
|
|
|
+ background-color: transparent;
|
|
|
+}
|
|
|
+::v-deep .el-pagination {
|
|
|
+ padding: 2px 54px;
|
|
|
+}
|
|
|
+::v-deep .el-button--btcks {
|
|
|
+ color: #ffffff;
|
|
|
+ width: 76px;
|
|
|
+ height: 36px;
|
|
|
+ background-color: #1d96ff;
|
|
|
+ border-radius: 4px;
|
|
|
+ font-size: 14px;
|
|
|
+ text-align: center;
|
|
|
+ margin-top: 1px;
|
|
|
+}
|
|
|
+::v-deep .el-button--btcks:focus,
|
|
|
+.el-button--btcks:hover {
|
|
|
+ background: #1d96ff;
|
|
|
+ border-color: #1d96ff;
|
|
|
+ color: #ffffff;
|
|
|
+}
|
|
|
+
|
|
|
+::v-deep .el-button--btcks.is-active,
|
|
|
+.el-button--btcks:active {
|
|
|
+ background: #1d96ff;
|
|
|
+ border-color: #1d96ff;
|
|
|
+ color: #ffffff;
|
|
|
+}
|
|
|
+</style>
|