样式调整

dev-scheduling
zhangdi 1 month ago
parent ec5a9dca1a
commit 9ccf47a096
  1. 1
      src/styles/common.scss
  2. 2
      src/styles/sidebar.scss
  3. 2
      src/styles/tags.scss
  4. 2
      src/styles/top.scss
  5. 2
      src/styles/variables.scss
  6. 21
      src/views/processManagement/bathRefine/planClass.vue

@ -60,6 +60,7 @@ a {
.avue-menu, .el-menu-item, .el-sub-menu__title { .avue-menu, .el-menu-item, .el-sub-menu__title {
height: variables.$top_height; height: variables.$top_height;
line-height: variables.$top_height; line-height: variables.$top_height;
} }
.is-active:before { .is-active:before {

@ -39,10 +39,12 @@
i { i {
// margin-right: 5px; // margin-right: 5px;
margin-right: 13px; margin-right: 13px;
} }
i, span { i, span {
color: hsla(0, 0%, 100%, .7); color: hsla(0, 0%, 100%, .7);
font-size:13px !important;
} }
&:hover { &:hover {

@ -27,7 +27,7 @@
margin: 0 3px; margin: 0 3px;
height: 40px; height: 40px;
line-height: 40px; line-height: 40px;
font-size: 13px; font-size: 12px;
font-weight: normal; font-weight: normal;
color: #a8abb2; color: #a8abb2;

@ -13,7 +13,7 @@
.el-menu-item { .el-menu-item {
i, span { i, span {
font-size: 14px; font-size: 13px;
} }
} }
} }

@ -1,5 +1,5 @@
// $sidebar_width: 200px; // $sidebar_width: 200px;
$sidebar_width: 220px; $sidebar_width: 200px;
$sidebar_collapse: 65px; $sidebar_collapse: 65px;
$top_height: 60px; $top_height: 60px;
// $top_height: 50px; // $top_height: 50px;

@ -26,7 +26,7 @@
</el-button> --> </el-button> -->
<el-button <el-button
type="text" type="text"
v-if="scope.row.approvalStatus == -1 || scope.row.approvalStatus == 2" v-if="scope.row.approvalStatus == 1"
@click="checkFn(scope.row)" @click="checkFn(scope.row)"
>审批</el-button >审批</el-button
> >
@ -244,25 +244,26 @@ export default {
searchOrder: 20, searchOrder: 20,
dicData: [ dicData: [
{ {
value: -1, value: 1,
label: '室主任审批', label: '待审核',
}, },
{ {
value: 0, value: 2,
label: '审批中', label: '主任审核通过',
}, },
{ {
value: 3, value: 3,
label: '审批完毕', label: '厂长审核通过',
}, },
{ {
value: 2, value: 4,
label: '厂长审批', label: '主任审核未通过',
}, },
{ {
value: 1, value: 5,
label: '审批完成', label: '厂长审核未通过',
}, },
], ],
rules: [ rules: [
{ {

Loading…
Cancel
Save