|
|
@@ -0,0 +1,833 @@
|
|
|
+<template>
|
|
|
+ <div class="content-box">
|
|
|
+ <div class="left">
|
|
|
+ <!-- <el-icon :size="23" class="camera"><VideoCameraFilled /></el-icon> -->
|
|
|
+ <span class="cameratxt">菜单管理</span>
|
|
|
+ </div>
|
|
|
+ <div class="middle">
|
|
|
+ <div class="filter">
|
|
|
+ <div class="condition">
|
|
|
+ <span>姓名 </span>
|
|
|
+ <el-input
|
|
|
+ clearable
|
|
|
+ v-model="searchInput.name"
|
|
|
+ @clear="searchBtn"
|
|
|
+ class="w-50 m-2"
|
|
|
+ placeholder="请输入姓名"
|
|
|
+ style="width: 250px"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ <div class="condition">
|
|
|
+ <span>角色 </span>
|
|
|
+ <el-input
|
|
|
+ clearable
|
|
|
+ v-model="searchInput.role"
|
|
|
+ @clear="searchBtn"
|
|
|
+ class="w-50 m-2"
|
|
|
+ placeholder="请输入角色"
|
|
|
+ style="width: 250px"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ <div class="condition">
|
|
|
+ <span>创建时间 </span>
|
|
|
+ <el-date-picker
|
|
|
+ v-model="searchInput.createTime"
|
|
|
+ type="daterange"
|
|
|
+ unlink-panels
|
|
|
+ range-separator="-"
|
|
|
+ start-placeholder="起始时间"
|
|
|
+ end-placeholder="截止时间"
|
|
|
+ format="YYYY-MM-DD"
|
|
|
+ value-format="YYYY-MM-DD"
|
|
|
+ :prefix-icon="Calendar"
|
|
|
+ placeholder="请选择日期"
|
|
|
+ style="width: 280px"
|
|
|
+ @change="searchBtn"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ <div class="condition">
|
|
|
+ <span>部门 </span>
|
|
|
+ <el-select
|
|
|
+ v-model="searchInput.department"
|
|
|
+ placeholder="请选择部门"
|
|
|
+ style="width: 220px"
|
|
|
+ clearable
|
|
|
+ @clear="searchBtn"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="item in departmentData"
|
|
|
+ :key="item.value"
|
|
|
+ :label="item.oname"
|
|
|
+ :value="item.id"
|
|
|
+ />
|
|
|
+ </el-select>
|
|
|
+ </div>
|
|
|
+ <el-button
|
|
|
+ style="margin-left: 20px"
|
|
|
+ type="primary"
|
|
|
+ class="search"
|
|
|
+ @click="searchBtn"
|
|
|
+ >查询</el-button
|
|
|
+ >
|
|
|
+ </div>
|
|
|
+ <!-- 按钮列表 -->
|
|
|
+ <div class="gongneng">
|
|
|
+ <el-button @click="addProjectbtn(1)" class="add"
|
|
|
+ ><el-icon> <CirclePlus /> </el-icon><span>添加菜单</span></el-button
|
|
|
+ >
|
|
|
+ <el-button @click="projectImportBtn" class="imp"
|
|
|
+ ><span>更新</span></el-button
|
|
|
+ >
|
|
|
+ <!-- <el-button @click="projectExportBtn" class="add"
|
|
|
+ ><el-icon><Download /></el-icon><span>项目导出</span></el-button
|
|
|
+ > -->
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="scroll">
|
|
|
+ <div class="footer" v-loading="loading">
|
|
|
+ <el-table
|
|
|
+ border
|
|
|
+ :data="tableData.list"
|
|
|
+ :header-cell-style="{
|
|
|
+ background: 'rgba(240, 243, 247, 1)',
|
|
|
+ height: '45px',
|
|
|
+ border: 0,
|
|
|
+ }"
|
|
|
+ row-key="id"
|
|
|
+ :tree-props="{ children: 'menuLists', hasChildren: 'hasChildren' }"
|
|
|
+ >
|
|
|
+ <el-table-column prop="menuName" label="名称" />
|
|
|
+ <el-table-column prop="sort" label="排序号" />
|
|
|
+ <el-table-column prop="url" label="菜单URL" />
|
|
|
+ <el-table-column align="center" label="操作" width="220">
|
|
|
+ <template #default="scope">
|
|
|
+ <div class="options">
|
|
|
+ <div class="reset" v-if="scope.row.pid==0" @click="addProjectbtn(2,scope.row)">添加</div>
|
|
|
+ <div class="look" @click="edit(scope.row)">编辑</div>
|
|
|
+ <el-popconfirm
|
|
|
+ width="220"
|
|
|
+ confirm-button-text="确认"
|
|
|
+ cancel-button-text="取消"
|
|
|
+ :icon="InfoFilled"
|
|
|
+ icon-color="#f89626"
|
|
|
+ title="是否删除此数据?"
|
|
|
+ @confirm="del(scope.row)"
|
|
|
+ @cancel="cancelEvent"
|
|
|
+ >
|
|
|
+ <template #reference>
|
|
|
+ <div class="del">删除</div>
|
|
|
+ </template>
|
|
|
+ </el-popconfirm>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ </el-table>
|
|
|
+
|
|
|
+ <!-- 新增账号 -->
|
|
|
+ <el-dialog
|
|
|
+ class="account"
|
|
|
+ v-model="accountVisible"
|
|
|
+ :close-on-click-modal="false"
|
|
|
+ :close-on-press-escape="false"
|
|
|
+ :title="accountTitle"
|
|
|
+ align-center
|
|
|
+ width="600"
|
|
|
+ :before-close="cancelAccount"
|
|
|
+ >
|
|
|
+ <el-form
|
|
|
+ ref="accountRef"
|
|
|
+ :model="accountRuleForm"
|
|
|
+ :rules="accountRules"
|
|
|
+ class="demo-ruleForm"
|
|
|
+ label-width="80px"
|
|
|
+ :size="formSize"
|
|
|
+ label-position="right"
|
|
|
+ status-icon
|
|
|
+ >
|
|
|
+ <el-form-item label="菜单名称" prop="menuName">
|
|
|
+ <el-input
|
|
|
+ v-model="accountRuleForm.menuName"
|
|
|
+ placeholder="请输入菜单名称"
|
|
|
+ clearable
|
|
|
+ style="width: 220px"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="菜单链接" prop="url">
|
|
|
+ <el-input
|
|
|
+ v-model="accountRuleForm.url"
|
|
|
+ placeholder="请输入菜单链接"
|
|
|
+ clearable
|
|
|
+ style="width: 220px"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="排序" prop="sort">
|
|
|
+ <el-input
|
|
|
+ v-model="accountRuleForm.sort"
|
|
|
+ placeholder="请输入排序"
|
|
|
+ clearable
|
|
|
+ style="width: 220px"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item class="options">
|
|
|
+ <el-button
|
|
|
+ class="queding"
|
|
|
+ type="primary"
|
|
|
+ @click="confirmAccount(accountRef)"
|
|
|
+ >
|
|
|
+ 确认
|
|
|
+ </el-button>
|
|
|
+ <el-button class="quxiao" @click="cancelAccount"
|
|
|
+ > 取消 </el-button
|
|
|
+ >
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+ </el-dialog>
|
|
|
+
|
|
|
+ <!-- 项目导入 -->
|
|
|
+ <el-dialog
|
|
|
+ class="projectImport"
|
|
|
+ v-model="projectImportVisible"
|
|
|
+ :close-on-click-modal="false"
|
|
|
+ :close-on-press-escape="false"
|
|
|
+ title="项目导入"
|
|
|
+ align-center
|
|
|
+ width="600"
|
|
|
+ :before-close="cancelProjectImport"
|
|
|
+ >
|
|
|
+ <p class="title">当前只支持项目类型为“非装配式建筑项目”的项目导入</p>
|
|
|
+ <p class="down">
|
|
|
+ <span>非装配式建筑项目导入模板</span
|
|
|
+ ><span @click="templateDown">模板下载</span>
|
|
|
+ </p>
|
|
|
+ <el-upload
|
|
|
+ class="avatar-uploader"
|
|
|
+ action="#"
|
|
|
+ :auto-upload="false"
|
|
|
+ :on-remove="projectImportRemove"
|
|
|
+ :on-change="projectImportChange"
|
|
|
+ :before-upload="beforeAvatarProImport"
|
|
|
+ ref="projectRef"
|
|
|
+ :limit="1"
|
|
|
+ :on-exceed="projectImportExceed"
|
|
|
+ >
|
|
|
+ <template #trigger>
|
|
|
+ <el-button class="queding" type="primary">
|
|
|
+ 导入项目
|
|
|
+ </el-button>
|
|
|
+ </template>
|
|
|
+ </el-upload>
|
|
|
+ <div class="options">
|
|
|
+ <el-button
|
|
|
+ color="rgba(9, 101, 98, 1)"
|
|
|
+ class="queding"
|
|
|
+ type="primary"
|
|
|
+ @click="projectImportConfirm(projectRef)"
|
|
|
+ >
|
|
|
+ 确认导入
|
|
|
+ </el-button>
|
|
|
+ <el-button @click="cancelProjectImport"
|
|
|
+ > 取消导入 </el-button
|
|
|
+ >
|
|
|
+ </div>
|
|
|
+ </el-dialog>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 分页组件 -->
|
|
|
+ <!-- <el-pagination
|
|
|
+ background
|
|
|
+ v-model:current-page="currentPage"
|
|
|
+ v-model:page-size="pageSize"
|
|
|
+ :page-sizes="[10, 20, 30, 40]"
|
|
|
+ layout="total,sizes, prev, pager, next, jumper, slot"
|
|
|
+ :total="total"
|
|
|
+ @size-change="handleSizeChange"
|
|
|
+ @current-change="handleCurrentChange"
|
|
|
+ /> -->
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script setup>
|
|
|
+import {
|
|
|
+ ref,
|
|
|
+ reactive,
|
|
|
+ nextTick,
|
|
|
+ onMounted,
|
|
|
+ watch,
|
|
|
+ onBeforeMount,
|
|
|
+ onUnmounted,
|
|
|
+} from "vue";
|
|
|
+import COS from "cos-js-sdk-v5";
|
|
|
+import { useRouter } from "vue-router";
|
|
|
+import { genFileId, ElMessage, ElMessageBox } from "element-plus";
|
|
|
+import { Calendar } from "@element-plus/icons-vue";
|
|
|
+import { dayjs } from "element-plus";
|
|
|
+import lodash, { reduce } from "lodash";
|
|
|
+import axios from "axios";
|
|
|
+import { useStore } from "vuex";
|
|
|
+
|
|
|
+const store = useStore();
|
|
|
+const router = useRouter();
|
|
|
+
|
|
|
+const loading = ref(false);
|
|
|
+const tableData = reactive({
|
|
|
+ list: [{}],
|
|
|
+});
|
|
|
+
|
|
|
+const searchInput = reactive({
|
|
|
+ name: "", // 名称
|
|
|
+ role: "", // 角色
|
|
|
+ department: "", // 部门
|
|
|
+ createTime: "", // 创建时间
|
|
|
+}); // 搜索按钮数据
|
|
|
+const departmentData = ref(); // 部门数据
|
|
|
+
|
|
|
+const currentPage = ref(1); // 当前页
|
|
|
+const pageSize = ref(10);
|
|
|
+const total = ref(40); // 当前总数
|
|
|
+const selectData = reactive({
|
|
|
+ list: [],
|
|
|
+}); // 多选框选择的数据
|
|
|
+const api = ref("");
|
|
|
+
|
|
|
+// 新增账号 (--------------------------------------------------------)
|
|
|
+const accountVisible = ref(false);
|
|
|
+const accountTitle = ref();
|
|
|
+const accountRef = ref();
|
|
|
+
|
|
|
+const accountRuleForm = reactive({
|
|
|
+ menuName: "",
|
|
|
+ url: "",
|
|
|
+ sort: "",
|
|
|
+ pid:'',
|
|
|
+ id: "",
|
|
|
+});
|
|
|
+// 新增账号表单验证
|
|
|
+const accountRules = reactive({
|
|
|
+ menuName: [{ required: true, message: "菜单名称不能为空", trigger: "blur" }],
|
|
|
+ url: [{ required: true, message: "菜单链接不能为空", trigger: "blur" }],
|
|
|
+ sort: [
|
|
|
+ { required: true, message: "排序不能为空", trigger: "blur" },
|
|
|
+ ],
|
|
|
+});
|
|
|
+
|
|
|
+// 项目导入
|
|
|
+const projectImportVisible = ref(false);
|
|
|
+const projectRef = ref();
|
|
|
+const projectFile = ref();
|
|
|
+
|
|
|
+// 获取账户列表
|
|
|
+const getList = async () => {
|
|
|
+ let res = await axios({
|
|
|
+ method: "post",
|
|
|
+ url: api.value + "/api/sysMenu/QueryMenuTreeRecords",
|
|
|
+ headers: {
|
|
|
+ tokenP: sessionStorage.getItem("tokenP"),
|
|
|
+ user_head: sessionStorage.getItem("userhead"),
|
|
|
+ },
|
|
|
+ });
|
|
|
+ console.log(res, "查看菜单");
|
|
|
+ if (res.data.code == 200) {
|
|
|
+ tableData.list = res.data.data;
|
|
|
+ } else {
|
|
|
+ ElMessage({
|
|
|
+ type: "error",
|
|
|
+ showClose: true,
|
|
|
+ message: res.data.message,
|
|
|
+ center: true,
|
|
|
+ });
|
|
|
+ }
|
|
|
+};
|
|
|
+// 部门数据
|
|
|
+const departmentList = async () => {
|
|
|
+ let res = await axios({
|
|
|
+ method: "post",
|
|
|
+ url: api.value + "/api/Organize/query",
|
|
|
+ headers: {
|
|
|
+ tokenP: sessionStorage.getItem("tokenP"),
|
|
|
+ user_head: sessionStorage.getItem("userhead"),
|
|
|
+ },
|
|
|
+ });
|
|
|
+ console.log(res, "部门数据");
|
|
|
+ if (res.data.code == 200) {
|
|
|
+ departmentData.value = res.data.data;
|
|
|
+ } else {
|
|
|
+ ElMessage({
|
|
|
+ type: "error",
|
|
|
+ showClose: true,
|
|
|
+ message: res.data.message,
|
|
|
+ center: true,
|
|
|
+ });
|
|
|
+ }
|
|
|
+};
|
|
|
+
|
|
|
+// 搜索功能
|
|
|
+const searchBtn = lodash.debounce(async () => {
|
|
|
+ getList();
|
|
|
+}, 300);
|
|
|
+
|
|
|
+// 角色新增
|
|
|
+const addProjectbtn = (ind,row) => {
|
|
|
+ console.log(ind,row);
|
|
|
+
|
|
|
+ accountVisible.value = true;
|
|
|
+ accountTitle.value = "菜单新增";
|
|
|
+ accountRuleForm.menuName = "";
|
|
|
+ accountRuleForm.url = "";
|
|
|
+ accountRuleForm.sort = "";
|
|
|
+ if(ind==1){
|
|
|
+ accountRuleForm.pid = 0
|
|
|
+ }else if(ind==2){
|
|
|
+ accountRuleForm.pid = row.id
|
|
|
+ }
|
|
|
+ accountRuleForm.id = "";
|
|
|
+};
|
|
|
+// 取消角色新增
|
|
|
+const cancelAccount = () => {
|
|
|
+ accountRef.value.resetFields();
|
|
|
+ accountVisible.value = false;
|
|
|
+ accountRuleForm.menuName = "";
|
|
|
+ accountRuleForm.url = "";
|
|
|
+ accountRuleForm.sort = "";
|
|
|
+ accountRuleForm.pid = ""
|
|
|
+ accountRuleForm.id = "";
|
|
|
+};
|
|
|
+// 确定新建项目
|
|
|
+const confirmAccount = (formEl) => {
|
|
|
+ if (!formEl) return;
|
|
|
+ formEl.validate(async (valid, fields) => {
|
|
|
+ if (valid) {
|
|
|
+ // 判断是否有id存在,有则是修改账号
|
|
|
+ let data = {
|
|
|
+ pid:accountRuleForm.pid,
|
|
|
+ menuName: accountRuleForm.menuName,
|
|
|
+ url:accountRuleForm.url,
|
|
|
+ sort: accountRuleForm.sort,
|
|
|
+ };
|
|
|
+ let res=""
|
|
|
+ if (accountRuleForm.id) {
|
|
|
+ data.id = accountRuleForm.id;
|
|
|
+ res = await axios({
|
|
|
+ method: "post",
|
|
|
+ url: api.value + "/api/sysMenu/update",
|
|
|
+ headers: {
|
|
|
+ tokenP: sessionStorage.getItem("tokenP"),
|
|
|
+ user_head: sessionStorage.getItem("userhead"),
|
|
|
+ },
|
|
|
+ data: data,
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ res = await axios({
|
|
|
+ method: "post",
|
|
|
+ url: api.value + "/api/sysMenu/add",
|
|
|
+ headers: {
|
|
|
+ tokenP: sessionStorage.getItem("tokenP"),
|
|
|
+ user_head: sessionStorage.getItem("userhead"),
|
|
|
+ },
|
|
|
+ data: data,
|
|
|
+ });
|
|
|
+ }
|
|
|
+ console.log(res, "新增菜单数据");
|
|
|
+ if (res.data.code == 200) {
|
|
|
+ accountVisible.value = false;
|
|
|
+ getList();
|
|
|
+ accountRef.value.resetFields();
|
|
|
+ ElMessage({
|
|
|
+ type: "success",
|
|
|
+ showClose: true,
|
|
|
+ message: res.data.message,
|
|
|
+ center: true,
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ ElMessage({
|
|
|
+ type: "error",
|
|
|
+ showClose: true,
|
|
|
+ message: res.data.message,
|
|
|
+ center: true,
|
|
|
+ });
|
|
|
+ }
|
|
|
+ }
|
|
|
+ });
|
|
|
+};
|
|
|
+//编辑项目
|
|
|
+const edit = (row) => {
|
|
|
+ accountVisible.value = true;
|
|
|
+ accountTitle.value = "编辑菜单";
|
|
|
+ accountRuleForm.menuName = row.menuName;
|
|
|
+ accountRuleForm.url = row.url;
|
|
|
+ accountRuleForm.sort = row.sort;
|
|
|
+ accountRuleForm.pid = row.pid;
|
|
|
+ accountRuleForm.id = row.id;
|
|
|
+ console.log(row);
|
|
|
+};
|
|
|
+const del = async (row) => {
|
|
|
+ let data = new FormData();
|
|
|
+ data.append("id", row.id);
|
|
|
+ let res = await axios({
|
|
|
+ method: "post",
|
|
|
+ url: api.value + "/api/sysMenu/del",
|
|
|
+ headers: {
|
|
|
+ tokenP: sessionStorage.getItem("tokenP"),
|
|
|
+ user_head: sessionStorage.getItem("userhead"),
|
|
|
+ },
|
|
|
+ data: data,
|
|
|
+ });
|
|
|
+ if (res.data.code == 200) {
|
|
|
+ getList();
|
|
|
+ ElMessage({
|
|
|
+ type: "success",
|
|
|
+ showClose: true,
|
|
|
+ message: res.data.message,
|
|
|
+ center: true,
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ ElMessage({
|
|
|
+ type: "error",
|
|
|
+ showClose: true,
|
|
|
+ message: res.data.message,
|
|
|
+ center: true,
|
|
|
+ });
|
|
|
+ }
|
|
|
+};
|
|
|
+
|
|
|
+// 多选框功能
|
|
|
+const handleSelectionChange = (val) => {
|
|
|
+ console.log(val);
|
|
|
+ selectData.list = val;
|
|
|
+};
|
|
|
+
|
|
|
+// 表格斑马纹颜色修改
|
|
|
+const tableRowClassName = ({ row, rowIndex }) => {
|
|
|
+ if (rowIndex % 2 === 0) {
|
|
|
+ return "even";
|
|
|
+ } else if (rowIndex % 2 !== 0) {
|
|
|
+ return "odd";
|
|
|
+ }
|
|
|
+ return "";
|
|
|
+};
|
|
|
+// 每页显示条数
|
|
|
+const handleSizeChange = (value) => {
|
|
|
+ console.log(value, "每页显示条数");
|
|
|
+ pageSize.value = value;
|
|
|
+ getList();
|
|
|
+};
|
|
|
+// 分页
|
|
|
+const handleCurrentChange = (value) => {
|
|
|
+ console.log(value, "分页");
|
|
|
+ currentPage.value = value;
|
|
|
+ getList();
|
|
|
+};
|
|
|
+
|
|
|
+onBeforeMount(() => {
|
|
|
+ api.value = store.state.user.api;
|
|
|
+ getList();
|
|
|
+ departmentList();
|
|
|
+});
|
|
|
+onUnmounted(() => {
|
|
|
+ // document.removeEventListener("keyup", Enters);
|
|
|
+});
|
|
|
+</script>
|
|
|
+
|
|
|
+<style scoped lang="scss">
|
|
|
+.content-box {
|
|
|
+ min-width: 1000px;
|
|
|
+ width: calc(100vw - 260px);
|
|
|
+ height: calc(100vh - 105px);
|
|
|
+ margin: 20px auto;
|
|
|
+ background-color: #fff;
|
|
|
+ color: #fff;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ box-shadow: 0px 3px 10px rgba(0, 97, 255, 0.2);
|
|
|
+
|
|
|
+ .left {
|
|
|
+ // width: calc(100wh - 40px);
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ height: 60px;
|
|
|
+ margin: 0 30px;
|
|
|
+ border-bottom: 1px solid #ccc;
|
|
|
+ color: #000;
|
|
|
+ font-size: 18px;
|
|
|
+ font-weight: 600;
|
|
|
+
|
|
|
+ .cameratxt {
|
|
|
+ display: block;
|
|
|
+ height: 60px;
|
|
|
+ line-height: 60px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .middle {
|
|
|
+ width: 96%;
|
|
|
+ margin: 0 auto;
|
|
|
+
|
|
|
+ color: #000;
|
|
|
+
|
|
|
+ // border-bottom: 1px solid rgb(231, 231, 231);
|
|
|
+ .filter {
|
|
|
+ display: flex;
|
|
|
+ flex-wrap: wrap;
|
|
|
+ align-items: center;
|
|
|
+ margin: 10px 0 0 0;
|
|
|
+
|
|
|
+ .search {
|
|
|
+ margin-left: 0 !important;
|
|
|
+ color: #fff;
|
|
|
+ background: linear-gradient(
|
|
|
+ 90deg,
|
|
|
+ rgba(33, 107, 255, 1) 0%,
|
|
|
+ rgba(102, 182, 255, 1) 100%
|
|
|
+ );
|
|
|
+ border: none;
|
|
|
+ }
|
|
|
+
|
|
|
+ .reset {
|
|
|
+ border: 1px solid rgba(38, 151, 255, 1);
|
|
|
+ color: rgba(38, 151, 255, 1);
|
|
|
+ }
|
|
|
+
|
|
|
+ .condition {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ margin: 10px 30px 10px 0;
|
|
|
+
|
|
|
+ :deep(.el-input .el-input__inner) {
|
|
|
+ font-size: 14px;
|
|
|
+ }
|
|
|
+
|
|
|
+ span {
|
|
|
+ margin: 0 10px 0 0;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .gongneng {
|
|
|
+ margin: 10px 0;
|
|
|
+
|
|
|
+ .el-button {
|
|
|
+ color: #fff;
|
|
|
+ border: none;
|
|
|
+ }
|
|
|
+ .add {
|
|
|
+ background: linear-gradient(
|
|
|
+ 90deg,
|
|
|
+ rgba(33, 107, 255, 1) 0%,
|
|
|
+ rgba(102, 182, 255, 1) 100%
|
|
|
+ );
|
|
|
+ }
|
|
|
+ .imp {
|
|
|
+ background: #fff;
|
|
|
+ border: 1px solid rgba(33, 107, 255, 1);
|
|
|
+ color: rgba(33, 107, 255, 1);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .scroll {
|
|
|
+ flex: 1;
|
|
|
+ overflow: auto;
|
|
|
+ }
|
|
|
+ .footer {
|
|
|
+ width: 96%;
|
|
|
+ height: calc(100% - 82px);
|
|
|
+ margin: 10px auto 10px;
|
|
|
+
|
|
|
+ .el-table--fit {
|
|
|
+ height: 100%;
|
|
|
+ :deep(.el-table__header-wrapper) {
|
|
|
+ background-color: #000;
|
|
|
+ font-size: 14px;
|
|
|
+ color: #000;
|
|
|
+
|
|
|
+ .cell {
|
|
|
+ color: #000;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ :deep(.el-table__row) {
|
|
|
+ height: 50px;
|
|
|
+ font-size: 14px;
|
|
|
+ color: #000;
|
|
|
+ }
|
|
|
+
|
|
|
+ :deep(.el-table__row td) {
|
|
|
+ padding: 0;
|
|
|
+ // border: 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-button--primary {
|
|
|
+ margin-left: 5px;
|
|
|
+ }
|
|
|
+
|
|
|
+ :deep(.el-table__body .even) {
|
|
|
+ background-color: #fff;
|
|
|
+ }
|
|
|
+
|
|
|
+ :deep(.el-table__body .odd) {
|
|
|
+ background-color: rgba(240, 243, 247, 1);
|
|
|
+ }
|
|
|
+
|
|
|
+ :deep(.options) {
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+
|
|
|
+ .reset {
|
|
|
+ margin-right: 15px;
|
|
|
+ color: rgba(30, 125, 251, 1);
|
|
|
+ cursor: pointer;
|
|
|
+ }
|
|
|
+
|
|
|
+ .look {
|
|
|
+ margin-right: 15px;
|
|
|
+ color: rgba(30, 125, 251, 1);
|
|
|
+ cursor: pointer;
|
|
|
+ }
|
|
|
+
|
|
|
+ .del {
|
|
|
+ color: rgba(212, 48, 48, 1);
|
|
|
+ cursor: pointer;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ // 项目新增样式
|
|
|
+ :deep(.account) {
|
|
|
+ // height: 300px;
|
|
|
+ border-radius: 11px;
|
|
|
+
|
|
|
+ .el-dialog__header {
|
|
|
+ border-radius: 11px 11px 0 0;
|
|
|
+ background: rgba(237, 241, 245, 1);
|
|
|
+ font-weight: 600;
|
|
|
+ margin: 0;
|
|
|
+ height: 32px;
|
|
|
+
|
|
|
+ .el-dialog__headerbtn {
|
|
|
+ outline: none;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-dialog__body {
|
|
|
+ padding: 30px 30px 0 30px;
|
|
|
+ .el-form {
|
|
|
+ .formLi {
|
|
|
+ width: 100%;
|
|
|
+ margin-bottom: 5px;
|
|
|
+ display: flex;
|
|
|
+ .el-form-item {
|
|
|
+ .el-input {
|
|
|
+ width: 120px;
|
|
|
+ }
|
|
|
+ &:nth-child(2) {
|
|
|
+ .el-form-item__label {
|
|
|
+ display: none;
|
|
|
+ }
|
|
|
+ .el-form-item__content {
|
|
|
+ margin-left: 10px !important;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ &:nth-child(3) {
|
|
|
+ .el-form-item__label {
|
|
|
+ display: none;
|
|
|
+ }
|
|
|
+ .el-form-item__content {
|
|
|
+ margin-left: 10px !important;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .resetPassword {
|
|
|
+ color: rgba(43, 151, 252, 1);
|
|
|
+ padding-left: 40px;
|
|
|
+ display: inline-block;
|
|
|
+ margin-bottom: 15px;
|
|
|
+ }
|
|
|
+ .options {
|
|
|
+ margin: 60px 0 40px 0;
|
|
|
+ .el-form-item__content {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: row-reverse;
|
|
|
+ .queding {
|
|
|
+ margin-left: 20px;
|
|
|
+ background: linear-gradient(
|
|
|
+ 90deg,
|
|
|
+ rgba(33, 107, 255, 1) 0%,
|
|
|
+ rgba(102, 182, 255, 1) 100%
|
|
|
+ );
|
|
|
+ border: none;
|
|
|
+ }
|
|
|
+ .quxiao {
|
|
|
+ border: 1px solid rgba(43, 151, 252, 1);
|
|
|
+ color: rgba(43, 151, 252, 1);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-pagination {
|
|
|
+ width: calc(100vw - 300px);
|
|
|
+ margin: 20px auto;
|
|
|
+ justify-content: flex-end;
|
|
|
+ :deep(.el-pagination__total) {
|
|
|
+ color: #000;
|
|
|
+ }
|
|
|
+
|
|
|
+ :deep(.el-pagination__goto) {
|
|
|
+ color: #000;
|
|
|
+ }
|
|
|
+
|
|
|
+ :deep(.el-pagination__classifier) {
|
|
|
+ color: #000;
|
|
|
+ }
|
|
|
+
|
|
|
+ :deep(.el-input__wrapper) {
|
|
|
+ // border: 1px solid rgba(0, 0, 0, 1);
|
|
|
+ // border-radius: 5px;
|
|
|
+ // box-shadow: none;
|
|
|
+ width: 100px;
|
|
|
+ }
|
|
|
+
|
|
|
+ :deep(.el-pager li) {
|
|
|
+ margin: 0 5px;
|
|
|
+ border: 1px solid rgba(0, 0, 0, 1);
|
|
|
+ border-radius: 5px;
|
|
|
+ background-color: transparent;
|
|
|
+ }
|
|
|
+
|
|
|
+ :deep(.el-pager li.is-active) {
|
|
|
+ // background-color: rgba(111, 182, 184, 1);
|
|
|
+ color: rgba(0, 149, 255, 1);
|
|
|
+ border: 1px solid rgba(0, 149, 255, 1);
|
|
|
+ }
|
|
|
+
|
|
|
+ :deep(.btn-prev) {
|
|
|
+ margin-right: 5px;
|
|
|
+ border: 1px solid rgba(0, 0, 0, 1);
|
|
|
+ border-radius: 5px;
|
|
|
+ background-color: transparent;
|
|
|
+ }
|
|
|
+
|
|
|
+ :deep(.btn-next) {
|
|
|
+ margin-left: 5px;
|
|
|
+ border: 1px solid rgba(0, 0, 0, 1);
|
|
|
+ border-radius: 5px;
|
|
|
+ background-color: transparent;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.el-input {
|
|
|
+ width: 192px;
|
|
|
+}
|
|
|
+</style>
|
|
|
+<style lang="scss">
|
|
|
+.usePrefabricate {
|
|
|
+ height: 488px;
|
|
|
+ .el-select-dropdown__wrap {
|
|
|
+ max-height: 100%;
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|