main
liuyiliang 1 year ago
parent 59378e43f8
commit 007e81503c
  1. 2
      src/page/index/index.vue
  2. 2
      src/page/login/index.vue
  3. 4
      src/page/login/userlogin.vue
  4. 3
      src/styles/element-ui.scss
  5. 10
      src/styles/login.scss
  6. 2
      src/styles/media.scss
  7. 8
      src/views/smart/operationticketDetail.vue
  8. 1
      src/views/smart/workorderDetail.vue

@ -17,7 +17,7 @@
<!-- 顶部标签卡 --> <!-- 顶部标签卡 -->
<tags /> <tags />
<!-- 主体视图层 --> <!-- 主体视图层 -->
<el-scrollbar style="height:100%"> <el-scrollbar style="height:100%;background-color: white;">
<keep-alive> <keep-alive>
<router-view class="avue-view" <router-view class="avue-view"
v-if="$route.meta.keepAlive" /> v-if="$route.meta.keepAlive" />

@ -7,7 +7,7 @@
<div class="login-border"> <div class="login-border">
<div class="login-main"> <div class="login-main">
<div class="login-title"> <div class="login-title">
<!-- <top-lang></top-lang>--> <!-- <top-lang></top-lang>-->
</div> </div>
<userLogin v-if="activeName==='user'"></userLogin> <userLogin v-if="activeName==='user'"></userLogin>

@ -88,9 +88,9 @@
//ID //ID
tenantId: "000000", tenantId: "000000",
// //
username: "admin", username: "",
// //
password: "admin", password: "",
// //
type: "account", type: "account",
// //

@ -9,6 +9,7 @@
.el-scrollbar__view { .el-scrollbar__view {
height: 100%; height: 100%;
//background-color: white;
} }
.el-menu--horizontal { .el-menu--horizontal {
@ -25,8 +26,6 @@
display: none; display: none;
} }
.el-message__icon, .el-message__icon,
.el-message__content { .el-message__content {
display: inline-block; display: inline-block;

@ -13,10 +13,12 @@
} }
.login-weaper { .login-weaper {
//margin: 0 auto; //margin: 0 auto;
width: 500px; width: 400px;
margin-right: 80px; height: 460px;
margin-right: 200px;
background: #ffffff; background: #ffffff;
border-radius: 5px; border-radius: 5px;
-webkit-box-shadow: -4px 5px 10px rgba(0, 0, 0, 0.4);
box-shadow: -4px 5px 10px rgba(0, 0, 0, 0.4); box-shadow: -4px 5px 10px rgba(0, 0, 0, 0.4);
.el-input-group__append { .el-input-group__append {
border: none; border: none;
@ -85,12 +87,11 @@
color: #76838f; color: #76838f;
} }
.login-title { .login-title {
height: 55px;
color: #312727; color: #312727;
font-weight: initial; font-weight: initial;
font-size: 28px; font-size: 28px;
letter-spacing: 4px; letter-spacing: 4px;
margin-top: 40px; margin-top: 12px;
} }
.login-sub-title { .login-sub-title {
color: #94a3ab; color: #94a3ab;
@ -129,6 +130,7 @@
} }
.el-form-item__content { .el-form-item__content {
width: 100%; width: 100%;
line-height: 30px;
} }
.el-form-item { .el-form-item {
margin-bottom: 12px; margin-bottom: 12px;

@ -10,7 +10,7 @@
.avue-contail { .avue-contail {
width: 100%; width: 100%;
height: 100%; height: 100%;
background: #050F23; //background: #050F23;
background-size: 100%; background-size: 100%;
background-repeat: no-repeat; background-repeat: no-repeat;
} }

@ -1,5 +1,5 @@
<template> <template>
<basic-container> <basic-container class="operationticketDetail">
<el-row :span="24"> <el-row :span="24">
<div class="check_status_class"> <div class="check_status_class">
<span > <span >
@ -976,16 +976,16 @@ export default {
display: flex; display: flex;
justify-content: flex-end; /* 将子元素推到容器的末端 */ justify-content: flex-end; /* 将子元素推到容器的末端 */
} }
.avue-group__title{ .operationticketDetail .avue-group__title{
color: rgb(64, 149, 229) !important; color: rgb(64, 149, 229) !important;
font-size: 16px !important; font-size: 16px !important;
line-height: 22px !important; line-height: 22px !important;
font-weight: bold !important; font-weight: bold !important;
} }
.el-form-item__label{ .operationticketDetail .el-form-item__label{
width: 110px !important; width: 110px !important;
} }
.el-form-item__content{ .operationticketDetail .el-form-item__content{
margin-left: 110px!important; margin-left: 110px!important;
} }

@ -22,7 +22,6 @@
</span> </span>
<div class="container"> <div class="container">
<span> <span>
<el-button size="small" @click="back">取消</el-button>
<el-button type="primary" size="small" @click="handleFormSubmit" v-if="addupdateShowButton && permission.workorder_add">确定</el-button> <el-button type="primary" size="small" @click="handleFormSubmit" v-if="addupdateShowButton && permission.workorder_add">确定</el-button>
<el-button type="primary" size="small" @click="auditing" v-if="shouldShowButton && permission.workorder_audit">审核</el-button> <el-button type="primary" size="small" @click="auditing" v-if="shouldShowButton && permission.workorder_audit">审核</el-button>
<el-button type="primary" size="small" @click="reject" v-if="shouldShowButton && permission.workorder_reject">驳回</el-button> <el-button type="primary" size="small" @click="reject" v-if="shouldShowButton && permission.workorder_reject">驳回</el-button>

Loading…
Cancel
Save