Browse Source

布局修改

master
mch 3 years ago
parent
commit
b67b550f0e
  1. 1
      src/App.vue
  2. BIN
      src/assets/images/currentuser2.png
  3. 10
      src/views/Home.vue
  4. 3
      src/views/basic-dictionary/Sex.vue
  5. 5
      src/views/common-settings/ItemType.vue
  6. 11
      src/views/user-list/AuditLog.vue

1
src/App.vue

@ -11,6 +11,7 @@
<style lang="scss">
.publiccss{
font-size: 18px;
font-weight: 700;
}
* {
margin: 0;

BIN
src/assets/images/currentuser2.png

After

Width: 356  |  Height: 394  |  Size: 10 KiB

10
src/views/Home.vue

@ -377,10 +377,9 @@
<!-- -->
<div class="btn">
<img
src="@/assets/images/currentuser.png"
src="@/assets/images/currentuser2.png"
alt=""
class="currentuser"
style="background-color:red;"
/>
当前用户:{{ user }}
<!-- <i class="el-icon-arrow-down el-icon--right"></i> -->
@ -766,7 +765,7 @@ export default {
right: 2%;
top: 10px;
color: #000;
background-color: #2bca84;
font-size: 18px;
z-index: 99;
}
.registrationimgimges {
@ -860,7 +859,10 @@ export default {
/* justify-content: space-between; */
flex-flow: 1;
}
::v-deep .el-card__body {
height: 90vh;
overflow-y: auto;
}
.maintitle {
font-size: 20px;
font-weight: 700;

3
src/views/basic-dictionary/Sex.vue

@ -1,7 +1,7 @@
<template>
<div class="box">
<div style="width: 95%">
<el-card>
<el-card style="">
<div class="publiccss">性别</div>
<el-table
:data="tableData"
@ -260,6 +260,7 @@ export default {
<style scoped>
.box {
display: flex;
}
.cancelorconfirm {
display: flex;

5
src/views/common-settings/ItemType.vue

@ -67,7 +67,8 @@
<el-cascader
:options="options"
:props="{ checkStrictly: true }"
clearable></el-cascader>
clearable
></el-cascader>
<el-form
:model="form"
label-width="80px"
@ -399,7 +400,7 @@ export default {
},
//
rowick(row) {
console.log(row,'11111');
console.log(row, "11111");
},
getlist() {
projectlist(this.pages).then((res) => {

11
src/views/user-list/AuditLog.vue

@ -2,7 +2,11 @@
<div>
<el-card>
<div class="publiccss">安全日志</div>
<el-table :data="tableData" style="width: 100%;margin-top:20px" height="700">
<el-table
:data="tableData"
style="width: 100%; margin-top: 20px"
height="700"
>
<el-table-column prop="userName" label="用户名" width="80">
</el-table-column>
<el-table-column prop="httpStatusCode" label="状态" width="80">
@ -29,7 +33,10 @@
</el-table-column>
<el-table-column label="操作">
<template slot-scope="scope">
<el-button type="primary" @click="inquireabout(scope.row)"
<el-button
type=""
@click="inquireabout(scope.row)"
style="width: 100px"
>查看</el-button
>
</template>

Loading…
Cancel
Save