123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973 |
- <template>
- <div class="record-warp">
- <div class="record-main">
- <el-row>
- <el-col :span="24">
- <div class="search-head">
- <el-input v-model="planName" clearable placeholder="请输入计划名称"></el-input
- >
- <el-date-picker
- :clearable="false"
- v-model="planTime"
- type="date"
- format="yyyy-MM-dd"
- placeholder="选择创建日期"
- >
- </el-date-picker>
- <el-cascader
- v-show="userInfo.roleType == '5'"
- placeholder="请选择组织架构"
- v-model="group"
- :options="groupData"
- :props="{ checkStrictly: true }"
- clearable
- ></el-cascader>
- <!-- :props="{ checkStrictly: true }" -->
- <el-cascader
- v-show="userInfo.roleType == '4'"
- placeholder="请选择组织架构"
- v-model="group"
- :options="groupData"
- clearable
- ></el-cascader>
-
- <el-select v-model="planStatus" placeholder="请选择计划状态">
- <el-option
- :label="item.name"
- :value="item.id"
- v-for="item in channelList"
- :key="item.id"
- ></el-option>
- </el-select>
-
- <el-button type="primary" round icon="el-icon-search" @click="searchTarget"
- >搜索</el-button
- >
- <el-button type="info" round @click="clearSearch">清空</el-button>
- </div>
- </el-col>
- </el-row>
- <div class="table-content">
- <el-table
- height="100%"
- :data="tableData"
- :row-style="{ height: '0px' }"
- :cell-style="{ padding: '5px' }"
- :header-cell-style="{ background: '#F8F8F8', color: '#606266' }"
- >
- <!-- <el-table-column prop="name" label="姓名" align="center" width="" show-overflow-tooltip>
- </el-table-column> -->
- <el-table-column
- :show-overflow-tooltip="true"
- prop="planName"
- label="计划名称"
- align="center"
- min-width="200px"
- >
- </el-table-column>
- <el-table-column
- prop="createTime"
- label="创建时间"
- :show-overflow-tooltip="true"
- align="center"
- width=""
- >
- </el-table-column>
- <el-table-column
- prop="planEndTime"
- label="结束时间"
- :show-overflow-tooltip="true"
- align="center"
- width=""
- >
- </el-table-column>
- <el-table-column
- :show-overflow-tooltip="true"
- prop="planOrgName"
- label="所属组织架构"
- align="center"
- width=""
- >
- </el-table-column>
- <!-- <el-table-column prop="userNo" label="测试人数" align="center" width="">
- </el-table-column> -->
- <el-table-column prop="createUserName" label="创建人" align="center" width="">
- </el-table-column>
- <el-table-column
- prop="planStatus"
- label="状态"
- :formatter="forMaPlan"
- align="center"
- width=""
- >
- <template slot-scope="scope">
- <div v-if="scope.row.planStatus == '1'" style="color: #ff7800">未开始</div>
- <div v-if="scope.row.planStatus == '2'" style="color: #2342ff">进行中</div>
- <div v-if="scope.row.planStatus == '3'" style="color: #333333">已完成</div>
- </template>
- </el-table-column>
- <el-table-column label="操作" width="250px" align="center">
- <template slot-scope="scope">
- <div class="detail_button_out" v-if="scope.row.planStatus == '3'">
- <div class="detail_button" @click="addUser(scope.row)">
- <img src="../../../assets/img/table/search.png" />
- <span> 查看报告</span>
- </div>
- <div
- v-if="scope.row.enable == '1'"
- class="detail_button"
- @click="downloadButton(scope.row)"
- >
- <img src="../../../assets/img/table/search.png" />
- <span> 下载报告</span>
- </div>
- </div>
- <!-- <el-popconfirm
- v-if="scope.row.state != 0"
- title="确定删除吗?"
- placement="top"
- @confirm="deleteUser(scope.$index, scope.row)"
- >
- <el-button
- size="small"
- style="margin-left: 10px"
- type="text"
- slot="reference"
- >删除</el-button
- >
- </el-popconfirm>
- <el-popconfirm
- v-if="scope.row.state != 0"
- title="密码将重置为123456"
- placement="top"
- @confirm="resetUser(scope.$index, scope.row)"
- >
- <el-button
- size="small"
- style="margin-left: 10px"
- type="text"
- slot="reference"
- >重置密码</el-button
- >
- </el-popconfirm> -->
- </template>
- </el-table-column>
- </el-table>
- </div>
- <!-- small -->
- <el-pagination
- class="pag_class"
- background
- @size-change="handleSizeChange"
- @current-change="handleCurrentChange"
- :current-page.sync="pageNum"
- layout="total, sizes, prev, pager, next"
- :page-size="pageSize"
- :page-sizes="[10, 20, 50, 100]"
- :total="total"
- >
- </el-pagination>
- <!-- <el-pagination small background layout="total prev, pager, next" :total="36">
- </el-pagination> -->
- </div>
- <PlanReport ref="register" @search="searchTarget" />
- <!-- 弹出框---选择问题需要下载的组织架构 -->
- <div class="radius_dia">
- <el-dialog
- title=""
- :visible.sync="downloadVisible"
- width="40%"
- :before-close="handleClose"
- center
- >
- <div slot="title">
- <p style="text-align: center; margin-bottom: 20px; font-weight: 700">
- 报告下载
- </p>
- <el-form
- :inline="true"
- class="demo-form-inline form-plan"
- style="
- margin-top: 20px;
- display: flex;
- flex-direction: column;
- align-items: center;
- "
- >
- <el-form-item label="选择下载范围">
- <el-select v-model="dimensionality" placeholder="请选择下载范围">
- <el-option
- v-for="item in dimensionalityOption"
- :key="item.id"
- :label="item.name"
- :value="item.id"
- ></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="选择届" v-show="dimensionality == '1'">
- <el-select v-model="grade" placeholder="请选择届">
- <el-option
- v-for="item in gradeList"
- :key="item.id"
- :label="item"
- :value="item"
- ></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="选择班级" v-show="dimensionality == '2'">
- <el-select multiple v-model="orgName" placeholder="请选择班级">
- <el-option
- v-for="item in orgList"
- :key="item.id"
- :label="item.orgName"
- :value="item.orgNo"
- ></el-option>
- </el-select>
- </el-form-item>
- </el-form>
- <el-button
- type="success"
- style="border-radius: 20px"
- v-show="dimensionality == '0'"
- @click="downloadFun"
- >
- 全院下载
- </el-button>
- <el-button
- type="success"
- style="border-radius: 20px"
- v-show="dimensionality == '1'"
- @click="downloadFun"
- >
- 下载已选年级
- </el-button>
- <el-button
- type="success"
- style="border-radius: 20px"
- v-show="dimensionality == '2'"
- @click="downloadFun"
- >
- 下载已选班级
- </el-button>
- <el-button
- type="success"
- style="border-radius: 20px"
- v-show="dimensionality == '2'"
- @click="downloadAllFun"
- >
- 下载全部班级
- </el-button>
- </div>
- <span slot="footer" class="dialog-footer"> </span>
- </el-dialog>
- </div>
- </div>
- </template>
- <script>
- import { oSessionStorage } from "../../../utils/utils";
- import planReport from "../../../components/PlanReport.vue";
- import { basePath } from "../../../utils/http";
- export default {
- name: "userManage",
- components: {
- PlanReport: planReport,
- },
- data() {
- return {
- basePath: basePath,
- //上传文件的弹出款的标志
- fileVisible: false,
- //判断点击的是重置密码还是点击删除
- isDelete: false,
- //重置密码需要调用个userId
- userId: "",
- //充值密码使用userName
- userName: "",
- //重置密码弹出框
- resetVisible: false,
- //根据名称搜索
- name: "",
- //搜索的用户编号
- studentNumber: "",
- //搜索的组织架构
- // 搜索需要的性别
- sex: "",
- planName: "",
- planTime: "",
- planStatus: "",
- group: "",
- ppData: [],
- groupData: [],
- options: [
- {
- value: "1",
- label: "选项1",
- children: [
- {
- value: "11",
- label: "选项11",
- children: [{ value: "111", label: "选项111" }],
- },
- ],
- },
- ],
- centerDialogVisible: false,
- editUserFlag: false,
- startTime: "",
- endTime: "",
- value1: null,
- total: 0,
- pageSize: 10,
- pageNum: 1,
- keyword: "",
- tableData: [],
- userInfo: {}, //用户信息
- invitationCode: "",
- roleType: "0",
- type: 0,
- view: {
- name: "",
- studentNumber: "",
- sex: "",
- orgName: "",
- },
- channelList: [
- { name: "未开始", id: "1" },
- { name: "进行中", id: "2" },
- { name: "已完成", id: "3" },
- ],
- //下载报告标志
- downloadVisible: false,
- //当前下载的计划需要点击需要下
- //组织架构列表
- orgList: [],
- //组织编号name
- orgName: [],
- //下载报告 测试计划ID
- planId: "",
- dimensionality: 0,
- dimensionalityOption: [
- { id: 0, name: "学院" },
- { id: 1, name: "年级" },
- { id: 2, name: "班级" },
- ],
- //院的编号
- courtNum: "",
- grade: "",
- gradeList: [],
- };
- },
- created() {},
- mounted() {
- this.userInfo = JSON.parse(oSessionStorage.getItem("userInfo"));
- this.getChannel();
- if (!this.userInfo) {
- //如果用户信息不存在跳转登陆页
- this.$router.push({ path: "/" });
- }
- this.searchTarget();
- },
- methods: {
- handleClose() {
- this.downloadVisible = false;
- },
- //根据计划查询院
- queryCourt() {
- this.$http.get(`/planOrg/findPlanParentOrg?planId=${this.planId}`, {}, (res) => {
- if (res && res.code == 200) {
- this.courtNum = res.data[0].orgNo;
- // this.orgName = [res.data[0].orgNo];
- // this.orgList = res.data;
- } else {
- this.$message.error(res.msg);
- }
- });
- },
- //根据计划下班级
- queryGrade() {
- this.$http.get(`/planOrg/findPlanGrade?planId=${this.planId}`, {}, (res) => {
- if (res && res.code == 200) {
- this.grade = res.data[0];
- this.gradeList = res.data;
- // this.orgName = [res.data[0].orgNo];
- // this.orgList = res.data;
- } else {
- this.$message.error(res.msg);
- }
- });
- },
- //下载报告
- downloadFun() {
- //判断当前选择是院还是届--还是班级
- let params = {};
- if (this.dimensionality == 0) {
- //调用接口
- params = {
- planId: this.planId,
- orgNo: this.courtNum,
- flag: 0,
- };
- } else if (this.dimensionality == 1) {
- //调用班级接口
- params = {
- planId: this.planId,
- orgNo: this.courtNum,
- flag: 1,
- grade: this.grade,
- };
- } else if (this.dimensionality == 2) {
- if (this.orgName.length == 0) {
- this.$message.error("请选择班级");
- return;
- }
- params = {
- planId: this.planId,
- orgNo: this.courtNum,
- flag: 2,
- classIds: this.orgName,
- };
- }
- this.$http.post(`/plan/generate/report`, params, (res) => {
- if (res && res.code == 200) {
- // this.currentDownFun(res.data);
- let a = document.createElement("a");
- document.body.appendChild(a);
- a.setAttribute("href", basePath + `/plan/download?path=${res.data}`);
- a.click();
- // this.currentDownFun(res.data)
- // this.grade = res.data[0];
- // this.gradeList = res.data;
- // this.orgName = [res.data[0].orgNo];
- // this.orgList = res.data;
- } else {
- this.$message.error(res.msg);
- }
- });
- },
- //开始下载
- currentDownFun(val) {
- this.$http.getImg(`/plan/download?path=${val}`, {}, (res) => {
- debugger;
- if (res && res.code == 200) {
- debugger;
- // this.grade = res.data[0];
- // this.gradeList = res.data;
- // this.orgName = [res.data[0].orgNo];
- // this.orgList = res.data;
- } else {
- this.$message.error(res.msg);
- }
- });
- },
- //下载全部班级
- downloadAllFun() {
- //下载全部班级
- //循环班级列表拿到
- let params = {};
- let orgNameList = [];
- for (let i = 0; i < this.orgList.length; i++) {
- orgNameList.push(this.orgList[i].orgNo);
- }
- params = {
- planId: this.planId,
- orgNo: this.courtNum,
- flag: 2,
- classIds: orgNameList,
- };
- this.$http.post(`/plan/generate/report`, params, (res) => {
- if (res && res.code == 200) {
- let a = document.createElement("a");
- document.body.appendChild(a);
- console.log(basePath + `/plan/download?path=${res.data}`);
- debugger;
- a.setAttribute("href", basePath + `/plan/download?path=${res.data}`);
- a.click();
- // this.currentDownFun(res.data);
- } else {
- this.$message.error(res.msg);
- }
- });
- },
- //组织架构选择--
- getOrgList() {
- this.$http.get(`/planOrg/findAllByPlanId?planId=${this.planId}`, {}, (res) => {
- if (res && res.code == 200) {
- // this.orgName = [res.data[0].orgNo];
- this.orgList = res.data;
- } else {
- this.$message.error(res.msg);
- }
- });
- },
- //下载标志
- downloadButton(row) {
- this.planId = row.id;
- this.downloadVisible = true;
- this.getOrgList();
- this.queryCourt();
- this.queryGrade();
- },
- forMaPlan(val) {
- if (val.planStatus == "1") {
- return "未开始";
- //
- } else if (val.planStatus == "2") {
- //
- return "进行中";
- } else if (val.planStatus == "3") {
- //
- return "已完成";
- }
- },
- //文件上传成功
- fileSuccess(res) {
- if (res.code == 200) {
- this.searchTarget();
- this.$message({
- message: res.msg,
- type: "success",
- });
- } else {
- this.$message({
- message: res.msg,
- type: "error",
- });
- }
- //查询列表
- },
- //文件上传失败
- fileError() {
- this.$message({
- message: "上传失败",
- type: "error",
- });
- },
- cancle() {
- this.resetVisible = false;
- },
- //提交文本
- submitCom() {
- //判断当前是否是
- if (this.isDelete) {
- this.deleteUser();
- //调用删除方法
- } else {
- this.resetFun();
- // 调用重置密码方法
- }
- },
- //性别---
- genderFun(val) {
- let sex = val.gender;
- if (sex == "1") {
- return "男";
- } else if (sex == "0") {
- return "女";
- } else {
- return sex;
- }
- },
- //每页多少条
- handleSizeChange(val) {
- this.pageSize = val;
- this.searchTarget();
- // console.log(`每页 ${val} 条`);
- //将首页重置为1时---且总条数变化
- //设置为当前总条数
- },
- //获取组织架构方法--------------------开始-----------------------
- getChannel() {
- this.$http.get(
- `/org/findAllOrgByPOrgNo?orgNo=${this.userInfo.orgNo}`,
- {},
- (res) => {
- // this.$toast.success({message:'成功'});
- if (res && res.code == 200) {
- //将值赋值给list
- if (res.data.length > 0) {
- let resAdd = this.addPro(res.data);
- this.ppData = JSON.parse(JSON.stringify(resAdd));
- let forRes = this.arrToTree(resAdd);
- // console.log('格式化的结构')
- // console.log(forRes)
- let resultRes = this.deleteChildren(forRes);
- console.log("格式化的结构且去掉children");
- console.log(resultRes);
- this.groupData = resultRes[0].children;
- } else {
- this.groupData = [];
- }
- // this.channelList = res.data;
- } else {
- this.$message.error(res.msg);
- }
- }
- );
- },
- //z增加
- addPro(val) {
- let data = JSON.parse(JSON.stringify(val));
- for (let i = 0; i < val.length; i++) {
- data[i].value = val[i].orgNo;
- data[i].label = val[i].orgName;
- }
- return data;
- },
- //非递归方式:将平铺数据转换为树形结构数据
- arrToTree(arr) {
- let data = arr.filter((item) => {
- item.children = arr.filter((e) => {
- return item.orgNo === e.parentOrgNo;
- });
- return this.userInfo.orgNo == item.orgNo;
- // return !item.parentOrgNo;
- });
- return data;
- },
- //去除转换树形结构数据后存在的空children
- deleteChildren(arr) {
- let childs = arr;
- for (let i = childs.length; i--; i > 0) {
- if (childs[i].children) {
- if (childs[i].children.length) {
- this.deleteChildren(childs[i].children);
- } else {
- delete childs[i].children;
- }
- }
- }
- return arr;
- },
- //获取组织架构方法--------------------结束-----------------------
- formatterDelete(row) {
- if (row.state == 0) {
- return "已删除";
- } else {
- return "正常";
- }
- },
- resetUser(flag, val) {
- this.resetVisible = true;
- this.isDelete = flag;
- this.userId = val.id;
- this.userName = val.userName;
- //当前用户id
- //重置密码
- },
- editUser(row) {
- this.editRegisterUser(row);
- },
- viewUser(row) {
- this.view.name = row.userName;
- this.view.studentNumber = row.userNo;
- this.view.sex = row.gender == "0" ? "女" : "男";
- this.view.orgName = row.orgName;
- this.centerDialogVisible = true;
- },
- addUser(val) {
- this.addRegisterUser(val);
- },
- clearSearch() {
- this.planName = "";
- this.planTime = "";
- this.group = "";
- this.planStatus = "";
- this.searchTarget();
- },
- formatterTime(val) {
- let date = new Date(val);
- let year = date.getFullYear();
- let month = date.getMonth() + 1;
- month = this.formatterMon(month);
- let day = date.getDate();
- day = this.formatterMon(day);
- return year + "-" + month + "-" + day;
- },
- formatterMon(val) {
- if (val < 10) {
- return "0" + val;
- } else {
- return val;
- }
- },
- addRegisterUser(val) {
- this.$refs.register.open(val);
- },
- editRegisterUser(val) {
- this.$refs.register.edit(val);
- },
- resetFun() {
- this.$http.get(`/user/resetPassword?userId=${this.userId}`, {}, (res) => {
- // this.$toast.success({message:'成功'});
- if (res && res.code == 200) {
- this.resetVisible = false;
- this.$message.success("重置成功");
- this.searchTarget();
- } else {
- this.$message.error(res.msg);
- }
- });
- },
- deleteUser() {
- this.$http.get(`/user/delete?userId=${this.userId}`, {}, (res) => {
- // this.$toast.success({message:'成功'});
- if (res && res.code == 200) {
- this.$message.success("删除成功");
- this.resetVisible = false;
- this.searchTarget();
- } else {
- this.$message.error("删除失败");
- }
- });
- },
- handleCurrentChange(val) {
- this.pageNum = val;
- this.searchList();
- },
- //根据现有情况进行搜索
- searchList() {
- let time = "";
- if (this.planTime != "") {
- time = this.formatterTime(this.planTime);
- }
- let gp = "";
- if (this.group != "") {
- gp = this.group[this.group.length - 1];
- }
- console.log(this.planStatus);
- //格式化时间
- console.log("this.planTime");
- console.log(time);
- console.log(this.planName);
- console.log(gp);
- let url = `/plan/findListByPage?pageSize=${this.pageSize}&pageNum=${this.pageNum}${
- gp == "" ? `&orgNo=${this.userInfo.orgNo}` : `&orgNo=${gp}`
- }${time == "" ? "" : `&createDate=${time}`}${
- this.planStatus == "" ? "" : `&planStatus=${this.planStatus}`
- }${this.planName == "" ? "" : `&planName=${this.planName}`}`;
- this.$http.get(url, {}, (res) => {
- console.log(res);
- if (res && res.code == 200) {
- console.log("----------");
- console.log(res.data.content);
- this.tableData = res.data.content;
- this.total = res.data.totalElements;
- } else {
- // this.$toast.fail(res.msg);
- this.$message.error(res.msg);
- }
- });
- },
- searchTarget() {
- this.pageNum = 1;
- this.searchList();
- },
- //跳转首页
- goHome() {
- this.$router.push({ path: "/home" });
- },
- //跳转记录页
- goRecord() {
- this.$router.push({ path: "/record" });
- },
- //退出登陆
- logout() {
- oSessionStorage.removeItem("userInfo");
- oSessionStorage.removeItem("token");
- this.$router.push({ path: "/" });
- },
- //点击获取月出勤次数
- getTimes(param) {
- this.monthTimes = param;
- },
- },
- };
- </script>
- <style scoped>
- .form-plan >>> .el-form-item__label {
- width: 100px !important;
- }
- .radius_dia >>> .el-dialog {
- border-radius: 20px !important;
- }
- </style>
- <style lang="less" scoped>
- @import "../../../styles/theme.less";
- .pag_class {
- text-align: end;
- }
- .pag_class /deep/.el-input__inner {
- width: 100% !important;
- }
- .pag_class /deep/.el-pagination--small span:not([class*="suffix"]) {
- height: 22px;
- line-height: 28px !important;
- }
- .record-warp {
- width: 100%;
- height: 80vh;
- position: relative;
- .record-main {
- width: 100%;
- height: 100%;
- box-sizing: border-box;
- overflow-y: auto;
- display: flex;
- flex-direction: column;
- .search-head {
- width: 100%;
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- align-items: center;
- .zc-title {
- color: #606266;
- font-size: 14px;
- }
- }
- .table-content {
- margin: 10px 0;
- flex: 1;
- overflow-y: auto;
- }
- }
- }
- .add_user_class {
- margin-top: 10px;
- }
- .user_out {
- display: flex;
- width: 100%;
- align-items: center;
- border: 1px solid #eeeeef;
- line-height: 50px;
- margin-top: 10px;
- }
- .user_out_sub {
- flex: 1;
- background-color: #fafafa;
- text-align: center;
- // color:#ffffff
- }
- .user_out_subNext {
- padding-left: 10px;
- flex: 3;
- }
- .detail_button_out {
- display: flex;
- justify-content: flex-start;
- .detail_button {
- margin-left: 20px;
- display: flex;
- align-items: center;
- cursor: pointer;
- letter-spacing: 2px;
- img {
- width: 15px;
- margin-right: 5px;
- }
- span {
- color: #00bf78;
- // font-weight: 600;
- }
- }
- }
- //弹出框样式
- .dig_update /deep/.el-cascader {
- position: relative;
- font-size: 14px;
- line-height: 40px;
- width: 100%;
- }
- .dig_update /deep/.el-dialog {
- box-shadow: none !important;
- // background: transparent !important;
- }
- .demo-ruleForm /deep/ .el-form-item {
- margin-right: 10px;
- vertical-align: top;
- display: flex !important;
- flex-direction: column;
- }
- .demo-ruleForm /deep/.el-dialog__header {
- background-color: #ffffff;
- padding-left: 140px !important;
- }
- .demo-ruleForm /deep/.el-form-item__label {
- text-align: left;
- vertical-align: middle;
- float: left;
- font-size: 14px;
- color: #606266;
- line-height: 40px;
- padding: 0 12px 0 0;
- -webkit-box-sizing: border-box;
- box-sizing: border-box;
- }
- .demo-ruleForm /deep/.el-input {
- width: 100% !important;
- }
- .demo-ruleForm /deep/.el-input__inner {
- width: 100% !important;
- background-color: #f7f7f7;
- border: 0px;
- }
- .dig_button {
- margin-top: 40px;
- display: flex;
- width: 100%;
- justify-content: space-around;
- }
- .demo-ruleForm {
- background-color: #ffffff;
- // border-radius: 20px;
- margin-right: -10px;
- margin-top: -10px;
- padding-right: 100px;
- padding-left: 100px;
- border-radius: 20px;
- padding-top: 20px;
- padding-bottom: 20px;
- .dig_title {
- margin-bottom: 30px;
- text-align: center;
- font-weight: 700;
- }
- }
- </style>
|