Commit cd8d414c by liangzhen

评估辅助选定样式调整

1 parent 13153b38
......@@ -31,13 +31,26 @@
<!-- built files will be auto injected -->
</body>
<style>
html,
/* html,
body {
height: 100%;
overflow: hidden;
margin: 0;
padding: 0;
}
} */
html,
body {
min-height: 100%;
display: flex;
flex-direction: column;
background-color: #f7f8fb;
height: 100%;
margin: 0;
padding: 0;
clear: both;
overflow-x: hidden;
}
::-webkit-scrollbar {
width: 8px;
}
......
......@@ -20,4 +20,8 @@
height: 100%;
text-align: center;
}
</style>
......@@ -24,6 +24,8 @@ function decryptStringBySM4_CBC(str) {//使用sm4-cbc算法给字符串解密
//http 请求拦截器
axios.interceptors.request.use(config => {
config.headers['X-USER'] =sessionStorage.getItem('author');
config.headers['X-USER-NAME']=sessionStorage.getItem('authorName')
// config.headers.token = JSON.parse(localStorage.getItem('token')).token;
......
......@@ -664,7 +664,7 @@
}
/deep/ .el-table .warning-row {
background: #f0ffff;
color: #2785e6;
// color: #2785e6;
}
.elpagination {
text-align: right;
......
......@@ -634,7 +634,7 @@ export default {
}
/deep/ .el-table .warning-row {
background: #f0ffff;
color: #2785e6;
// color: #2785e6;
}
.elpagination {
text-align: right;
......
......@@ -690,7 +690,7 @@ export default {
}
/deep/ .el-table .warning-row {
background: #f0ffff;
color: #2785e6;
// color: #2785e6;
}
.elpagination {
text-align: right;
......
......@@ -857,7 +857,7 @@ export default {
}
/deep/ .el-table .warning-row {
background: #f0ffff;
color: #2785e6;
// color: #2785e6;
}
.elpagination {
text-align: right;
......
......@@ -492,7 +492,7 @@ export default {
}
/deep/ .el-table .warning-row {
background: #f0ffff;
color: #2785e6;
// color: #2785e6;
}
.elpagination {
text-align: right;
......
......@@ -409,7 +409,7 @@ export default {
}
/deep/ .el-table .warning-row {
background: #f0ffff;
color: #2785e6;
// color: #2785e6;
}
.elpagination {
text-align: right;
......
......@@ -553,7 +553,7 @@ export default {
}
/deep/ .el-table .warning-row {
background: #f0ffff;
color: #2785e6;
// color: #2785e6;
}
.elpagination {
text-align: right;
......
......@@ -355,7 +355,7 @@ export default {
}
/deep/ .el-table .warning-row {
background: #f0ffff;
color: #2785e6;
// color: #2785e6;
}
.elpagination {
text-align: right;
......
......@@ -330,7 +330,7 @@
}
/deep/ .el-table .warning-row {
background: #f0ffff;
color: #2785e6;
// color: #2785e6;
}
.elpagination {
text-align: right;
......
......@@ -15,6 +15,14 @@
<el-option label="2021年" value="2021"></el-option>
</el-select>
</el-form-item>
<el-form-item label="批次年度:" prop="batchYear" class="fromItem">
<el-select v-model="ruleForm.batchYear" placeholder="请选择" clearable>
<el-option label="2024年" value="2024"></el-option>
<el-option label="2023年" value="2023"></el-option>
<el-option label="2022年" value="2022"></el-option>
<el-option label="2021年" value="2021"></el-option>
</el-select>
</el-form-item>
<el-form-item label="后评估批次名称:" prop="batchName" class="fromItem">
<el-input v-model="ruleForm.batchName" placeholder="请输入" clearable></el-input>
</el-form-item>
......@@ -220,6 +228,7 @@
<el-select
v-model="ruleFormdialogAdd.batchYear"
placeholder="请选择"
clearable
>
<el-option label="2024年" value="2024"></el-option>
<el-option label="2023年" value="2023"></el-option>
......@@ -232,7 +241,7 @@
prop="batchName"
class="fromItem"
>
<el-input v-model="ruleFormdialogAdd.batchName"></el-input>
<el-input v-model="ruleFormdialogAdd.batchName" clearable></el-input>
</el-form-item>
<el-form-item
label="计划评审日期:"
......@@ -252,6 +261,7 @@
type="textarea"
v-model="ruleFormdialogAdd.description"
placeholder="请输入内容"
clearable
></el-input>
</el-form-item>
<el-form-item label="备注:" class="textarea">
......@@ -259,6 +269,7 @@
type="textarea"
v-model="ruleFormdialogAdd.remark"
placeholder="请输入内容"
clearable
></el-input>
</el-form-item>
</el-form>
......@@ -339,10 +350,11 @@
<el-input
v-model="ruleFormZJ.fullName"
placeholder="请输入"
clearable
></el-input>
</el-form-item>
<el-form-item label="专业领域:" prop="fields" class="fromItem">
<el-select v-model="ruleFormZJ.fields" placeholder="请选择">
<el-select v-model="ruleFormZJ.fields" placeholder="请选择" clearable>
<el-option label="2024年" value="2024"></el-option>
<el-option label="2023年" value="2023"></el-option>
<el-option label="2022年" value="2022"></el-option>
......@@ -350,7 +362,7 @@
</el-select>
</el-form-item>
<el-form-item label="专家状态:" prop="expertState" class="fromItem">
<el-select v-model="ruleFormZJ.expertState" placeholder="请选择">
<el-select v-model="ruleFormZJ.expertState" placeholder="请选择" clearable>
<el-option label="2024年" value="2024"></el-option>
<el-option label="2023年" value="2023"></el-option>
<el-option label="2022年" value="2022"></el-option>
......@@ -446,6 +458,7 @@
<el-select
v-model="ruleFormdialogBJ.batchYear"
placeholder="请选择"
clearable
>
<el-option label="2024年" value="2024"></el-option>
<el-option label="2023年" value="2023"></el-option>
......@@ -458,7 +471,7 @@
prop="batchName"
class="fromItem"
>
<el-input v-model="ruleFormdialogBJ.batchName"></el-input>
<el-input v-model="ruleFormdialogBJ.batchName" clearable></el-input>
</el-form-item>
<el-form-item
label="计划评审日期:"
......@@ -478,6 +491,7 @@
type="textarea"
v-model="ruleFormdialogBJ.description"
placeholder="请输入内容"
clearable
></el-input>
</el-form-item>
<el-form-item label="备注:" class="textarea">
......@@ -485,6 +499,7 @@
type="textarea"
v-model="ruleFormdialogBJ.remark"
placeholder="请输入内容"
clearable
></el-input>
</el-form-item>
</el-form>
......@@ -1030,6 +1045,7 @@ export default {
height: 100%;
width: 100%;
box-sizing: border-box;
overflow: hidden;
}
.el-form {
display: flex;
......@@ -1042,7 +1058,7 @@ export default {
padding: 20px 10px;
margin-bottom: 20px;
.fromItem {
width: 24%;
min-width: 24%;
margin: 0 0.5%;
margin-bottom: 20px;
.el-input {
......@@ -1054,6 +1070,8 @@ export default {
}
/deep/ .el-form-item__content {
text-align: left;
display: inline-block;
margin-left: 10px !important;
}
/deep/ .el-form-item__label {
font-weight: bold;
......@@ -1084,7 +1102,7 @@ export default {
/deep/ .el-table .warning-row {
background: #f0ffff;
color: #2785e6;
// color: #2785e6;
}
.elpagination {
text-align: right;
......@@ -1150,8 +1168,12 @@ export default {
}
.textarea {
width: 100%;
/deep/ .el-form-item__content{
display: flex;
}
.el-textarea {
width: 60%;
}
}
.Btn {
......
......@@ -3,8 +3,20 @@
<div class="close"><i class="el-icon-circle-close"></i></div>
<p class="title">国网辽宁电力-桌面终端管理系统合规性检查评估</p>
<div class="continer">
<div class="top">
<div class="change"></div>
<el-steps :active="0" align-center finish-status="success">
<el-step title="可研" icon="el-icon-circle-check" @click.native="change()"></el-step>
<el-step title="计划" class="ssss"></el-step>
<el-step title="采购"></el-step>
<el-step title="合同"></el-step>
<el-step title="执行"></el-step>
<el-step title="结决算及转资"></el-step>
</el-steps>
</div>
<div class="left">
<!-- <div class="left">
<p class="tableTitle">检查项</p>
<el-table
@selection-change="handleSelectionChange"
......@@ -26,23 +38,22 @@
</el-table>
</div>
<div class="right">
<el-steps :active="0" align-center finish-status="success">
<el-step title="可研" icon="el-icon-circle-check"></el-step
><i class="el-icon-caret-right"></i>
<el-step title="计划" class="ssss"></el-step>
<el-step title="采购"></el-step>
<el-step title="合同"></el-step>
<el-step title="执行"></el-step>
<el-step title="结决算及转资"></el-step>
</el-steps>
<p class="tableTitle">检查内容</p>
</div>
</div> -->
</div>
</div>
</template>
<script>
export default {};
export default {
methods:{
change(){
console.log("切换")
}
}
};
</script>
<style lang="scss" scoped>
......@@ -79,6 +90,13 @@ export default {};
background-color: #f5f5f6;
padding: 20px;
position: relative;
.top{
width: 70%;
margin: 0 auto;
position: relative;
}
// background-color:#ccc;
.left {
......@@ -109,7 +127,7 @@ export default {};
}
/deep/.el-step.is-horizontal .el-step__line {
height: 1px;
margin-right: -20px !important;
// margin-right: -20px !important;
z-index: 1;
}
/deep/.el-step__line {
......
......@@ -258,7 +258,7 @@ export default {
}
/deep/ .el-table .warning-row {
background: #f0ffff;
color: #2785e6;
// color: #2785e6;
}
.elpagination {
text-align: right;
......
......@@ -344,7 +344,7 @@ export default {
}
/deep/ .el-table .warning-row {
background: #f0ffff;
color: #2785e6;
// color: #2785e6;
}
.elpagination {
text-align: right;
......
......@@ -1305,7 +1305,7 @@ text-align: left;
}
/deep/ .el-table .warning-row {
background: #f0ffff;
color: #2785E6;
// color: #2785E6;
}
.adzjdialog{
text-align: left;
......
......@@ -146,6 +146,6 @@ export default {
}
/deep/ .el-table .warning-row {
background: #f0ffff;
color: #2785E6;
// color: #2785E6;
}
</style>
\ No newline at end of file
......@@ -401,7 +401,7 @@
}
/deep/ .el-table .warning-row {
background: #f0ffff;
color: #2785e6;
// color: #2785e6;
}
.elpagination {
text-align: right;
......
......@@ -846,7 +846,7 @@ export default {
}
/deep/ .el-table .warning-row {
background: #f0ffff;
color: #2785e6;
// color: #2785e6;
}
.elpagination {
text-align: right;
......
......@@ -778,7 +778,7 @@ export default {
}
/deep/ .el-table .warning-row {
background: #f0ffff;
color: #2785e6;
// color: #2785e6;
}
.elpagination {
text-align: right;
......
......@@ -570,7 +570,7 @@ export default {
}
/deep/ .el-table .warning-row {
background: #f0ffff;
color: #2785e6;
// color: #2785e6;
}
.elpagination {
text-align: right;
......
......@@ -460,7 +460,7 @@
}
/deep/ .el-table .warning-row {
background: #f0ffff;
color: #2785e6;
// color: #2785e6;
}
.elpagination {
text-align: right;
......
......@@ -283,10 +283,6 @@ export default {
font-weight: 600;
font-size: 15px;
}
/deep/ .el-table .warning-row {
background: #f0ffff;
color: #2785e6;
}
.eltable {
width: 100%;
......@@ -295,7 +291,7 @@ export default {
}
/deep/ .el-table .warning-row {
background: #f0ffff;
color: #2785e6;
// color: #2785e6;
}
.elpagination {
text-align: right;
......
......@@ -25,11 +25,11 @@ export default {
<style lang="scss" scoped>
.main{
height: 100%;
min-height: 100%;
padding: 10px;
padding-top:5px;
padding-bottom: 0;
// overflow-y: auto;
overflow-y: auto;
// overflow-x: hidden;
// overflow: auto;
}
......
<template>
<div>
<div class="mian">
<div class="head-container">
<div class="logo" style="z-index: 10000">
<div class="logo-inner">
......@@ -184,16 +184,7 @@ export default {
-moz-osx-font-smoothing: grayscale;
}
html,
body {
display: flex;
flex-direction: column;
background-color: #f7f8fb;
height: 100%;
margin: 0;
padding: 0;
clear: both;
}
.head-container {
display: flex;
......@@ -343,4 +334,11 @@ body {
::-webkit-scrollbar-track-piece {
background-color: #f5f5f5;
}
// .mian{
// width: 100%;
// height: 100vh;
// overflow: auto;
// }
</style>
\ No newline at end of file
......@@ -5,7 +5,7 @@
<router-view></router-view>
</ContinerView>
<div class="changeqx">
<el-dropdown @command="handleCommand">
<!-- <el-dropdown @command="handleCommand">
<el-button type="primary">
<div style="margin-right: 35px" >权限切换</div>
</el-button>
......@@ -15,7 +15,46 @@
:command="item.id"
:key="item.id">{{item.menu}}</el-dropdown-item>
</el-dropdown-menu>
</el-dropdown>
</el-dropdown> -->
<el-menu
router
class="el-menu-vertical-demo"
:unique-opened="true"
@open="handleOpen"
>
<el-submenu
v-for="(item, index) in menuList"
:key="index"
:index="index + ''"
class="submenu1"
>
<template slot="title">
<span>{{ item.name }}</span>
</template>
<el-submenu
v-for="(item2, index2) in item.children"
:key="index2"
:index="index + '-' + index2 + ''"
class="submenu2"
>
<template slot="title">
<span >{{ item2.name }}</span>
</template>
<el-menu-item
v-for="(item3, index3) in item2.children"
:key="index3"
:index="item3.url"
class="submenu3"
@click="clicksub(item2,item3)"
>
<span class="title3">{{ item3.name }}</span >
</el-menu-item>
</el-submenu>
</el-submenu>
</el-menu>
</div>
</div>
</template>
......@@ -49,6 +88,81 @@ export default {
},
],
menuList:[
{
name: "权限切换",
url: "",
children: [
{
name: "省公司管理",
url: "",
id:1,
children: [
{
name: "张宇",
code:"sgtig_zhangyu",
url: "/mainLayout/auxiliarySelection",
children: [],
},
],
},
{
name: "省公司专家",
id:2,
children: [
{
name: "李一鸣",
code:"sgtig_liyiming",
children: [],
},
{
name: "王美玲",
code:"sgtig_wangmeiling",
children: [],
},
],
},
{
name: "项目建设单位专责",
id:3,
children: [
{
name: "孟德建",
code:"sgtig_mengdejian",
children: [],
},
{
name: "李文博",
code:"sgtig_liwenbo",
children: [],
},
{
name: "章轲",
code:"sgtig_zhangke",
children: [],
},
],
},
{
name: "超级管理员",
url: "",
id:99,
children: [
{
name: "魏征",
code:"sgtig_weizheng",
children: [],
},
],
},
],
},
],
authority:null,
};
......@@ -73,7 +187,17 @@ export default {
handleCommand(item) {
console.log(item,"item")//下拉菜单里面的值
this.authority=item
// this.authority=item
},
handleOpen(e, a){
console.log(e, a,'e, ae, a')
},
clicksub(a,b){
console.log('选怎',a,b)
sessionStorage.setItem('author',b.code)
sessionStorage.setItem('authorName',a.id)
this.authority=a.id
}
},
};
......@@ -93,7 +217,7 @@ export default {
height: 100%;
}
.continer {
min-width: 100%;
width: 100%;
height: 100%;
// flex: 1;
box-sizing: border-box;
......@@ -101,7 +225,7 @@ export default {
}
.changeqx{
position: absolute;
right: 0;
right:30px;
top: 5px;
}
}
......
......@@ -142,6 +142,6 @@ export default {
}
/deep/ .el-table .warning-row {
background: #f0ffff;
color: #2785E6;
// color: #2785E6;
}
</style>
\ No newline at end of file
......@@ -460,7 +460,7 @@
}
/deep/ .el-table .warning-row {
background: #f0ffff;
color: #2785e6;
// color: #2785e6;
}
.elpagination {
text-align: right;
......
......@@ -436,7 +436,7 @@
}
/deep/ .el-table .warning-row {
background: #f0ffff;
color: #2785e6;
// color: #2785e6;
}
.elpagination {
text-align: right;
......
......@@ -13,7 +13,7 @@ module.exports = defineConfig({
hot: true,
proxy: {
'/api':{
target: `http://192.168.8.248:18101`, // pin
target: `http://192.168.50.1:18101`, // pin
changeOrigin: true,
pathRewrite:{
"^/api":""
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!