Browse Source

commit

master
xuhuihui 3 years ago
parent
commit
0e6dcfc48d
  1. 2
      04.系统编码/Frontend/.idea/workspace.xml
  2. 8
      04.系统编码/Frontend/src/components/Login.vue
  3. 9
      04.系统编码/Frontend/src/components/SystemManagement.vue

2
04.系统编码/Frontend/.idea/workspace.xml

@ -77,6 +77,8 @@
<workItem from="1638433091413" duration="7649000" /> <workItem from="1638433091413" duration="7649000" />
<workItem from="1638440893221" duration="943000" /> <workItem from="1638440893221" duration="943000" />
<workItem from="1638441956659" duration="5371000" /> <workItem from="1638441956659" duration="5371000" />
<workItem from="1638447904778" duration="262000" />
<workItem from="1638496246090" duration="1527000" />
</task> </task>
<task id="LOCAL-00001" summary="2021 12 01"> <task id="LOCAL-00001" summary="2021 12 01">
<created>1638357539757</created> <created>1638357539757</created>

8
04.系统编码/Frontend/src/components/Login.vue

@ -79,7 +79,6 @@ export default {
<style lang="less" scoped> <style lang="less" scoped>
.loginInput { .loginInput {
width: 6.51rem; width: 6.51rem;
opacity: 1;
border-radius: 10px; border-radius: 10px;
position: absolute; position: absolute;
left: 50%; left: 50%;
@ -93,7 +92,6 @@ export default {
z-index: 10; z-index: 10;
background: #FFFFFF; background: #FFFFFF;
border-radius: 50%; border-radius: 50%;
opacity: 1;
display: flex; display: flex;
justify-content: center; justify-content: center;
} }
@ -101,8 +99,6 @@ export default {
.importInput { .importInput {
margin-top: -1.2rem; margin-top: -1.2rem;
background: #FFFFFF; background: #FFFFFF;
border: 1px solid #707070;
opacity: 1;
border-radius: 0.10rem; border-radius: 0.10rem;
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
@ -118,7 +114,6 @@ export default {
line-height: 0.4rem; line-height: 0.4rem;
color: #222222; color: #222222;
text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16); text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
opacity: 1;
margin-top: 1.20rem; margin-top: 1.20rem;
margin-bottom: 0.52rem; margin-bottom: 0.52rem;
padding-left: 0.12rem; padding-left: 0.12rem;
@ -128,7 +123,6 @@ export default {
height: 0.69rem; height: 0.69rem;
background: #FFFFFF; background: #FFFFFF;
border: 1px solid #BCBCBC; border: 1px solid #BCBCBC;
opacity: 1;
margin-bottom: 0.7rem; margin-bottom: 0.7rem;
.el-input__inner{ .el-input__inner{
@ -145,7 +139,7 @@ export default {
img { img {
width: 0.18rem; width: 0.18rem;
height: 0.1792rem; height: 0.18rem;
position: absolute; position: absolute;
top: -0.10rem; top: -0.10rem;
left: 0.18rem; left: 0.18rem;

9
04.系统编码/Frontend/src/components/SystemManagement.vue

@ -53,7 +53,7 @@
</div> </div>
</div> </div>
<!--弹出框---> <!--弹出框--->
<el-dialog v-model="dialogFormVisible" :title="title" show-close=false center=true width="961px" top="17%"> <el-dialog v-model="dialogFormVisible" :title="title" show-close=false center=true width="900px" top="17%">
<el-form :model="form"> <el-form :model="form">
<el-form-item label="用户账号:" :label-width="formLabelWidth" > <el-form-item label="用户账号:" :label-width="formLabelWidth" >
<el-input v-model="form.userAccountNumber" autocomplete="off" style="width: 260px" :disabled="isDisabled"></el-input> <el-input v-model="form.userAccountNumber" autocomplete="off" style="width: 260px" :disabled="isDisabled"></el-input>
@ -85,7 +85,7 @@
<script lang="ts"> <script lang="ts">
import {reactive, toRefs ,ref , onMounted} from 'vue'; import { reactive, toRefs } from 'vue';
import { post } from "../uilts/axios"; import { post } from "../uilts/axios";
import { ElMessage } from 'element-plus' import { ElMessage } from 'element-plus'
import { format } from '../hooks/String'; import { format } from '../hooks/String';
@ -206,16 +206,12 @@ export default {
if (option.form.userName == null || option.form.userName.trim() == ""){ if (option.form.userName == null || option.form.userName.trim() == ""){
errors.push("用户姓名"); errors.push("用户姓名");
} }
// if (option.form.userPhone == null || option.form.userPhone.trim() == ""){
// errors.push("");
// }
if (errors.length > 0){ if (errors.length > 0){
ElMessage.error({ ElMessage.error({
message: format("{0}不能为空", errors.join(", ")), message: format("{0}不能为空", errors.join(", ")),
type: 'error' type: 'error'
}); });
} }
return errors.length > 0; return errors.length > 0;
} }
@ -304,6 +300,7 @@ export default {
height: 35px; height: 35px;
line-height: 35px; line-height: 35px;
font-size: 20px; font-size: 20px;
text-indent: 10px;
} }
h1{ h1{

Loading…
Cancel
Save