Commit dda79ff0 by 张超军

全部人员库+全部案件库

parent 8180dc84
...@@ -61,6 +61,10 @@ ...@@ -61,6 +61,10 @@
} }
} }
/deep/.el-table th > .cell {
font-family: HarmonyOS_Sans_SC_Medium;
}
/deep/.el-table .el-table__cell { /deep/.el-table .el-table__cell {
padding: 0 !important; padding: 0 !important;
} }
...@@ -82,6 +86,38 @@ ...@@ -82,6 +86,38 @@
} }
} }
// 批量操作
.el-tag {
color: #055fe7 !important;
height: 32px;
box-sizing: border-box !important;
padding: 0 8px !important;
background: #ddebff;
border-radius: 4px;
font-size: 0.75rem;
margin-bottom: 16px;
display: flex;
align-items: center;
}
/deep/.el-link--inner {
color: rgb(5, 95, 231);
}
.icon-tanhao1 {
display: flex;
justify-content: center;
align-items: center;
}
// 表格高度 -- 展示下面的border
.split-line {
height: 650px;
border-bottom: 1px solid #eee;
}
// 复选框
/deep/.el-checkbox__inner {
cursor: pointer;
}
// 分页 // 分页
/deep/.el-pager { /deep/.el-pager {
.number { .number {
......
...@@ -36,6 +36,7 @@ ...@@ -36,6 +36,7 @@
</el-radio-group> </el-radio-group>
</div> </div>
<!-- 三 --> <!-- 三 -->
<div class="split-line">
<div class="options"> <div class="options">
<div class="left"> <div class="left">
<div <div
...@@ -110,7 +111,7 @@ ...@@ -110,7 +111,7 @@
</div> </div>
<!--四 --> <!--四 -->
<el-tag <el-tag
style="width: 100%; color: #666666;margin-bottom:1rem " style="width: 100%;"
v-show="isShowTip" v-show="isShowTip"
> >
<span v-html="'&nbsp;&nbsp;'"></span> <span v-html="'&nbsp;&nbsp;'"></span>
...@@ -132,7 +133,7 @@ ...@@ -132,7 +133,7 @@
<!-- 五 --> <!-- 五 -->
<el-table <el-table
:max-height="height" :height="height"
ref="multipleTable" ref="multipleTable"
:data="tableDate" :data="tableDate"
:row-key="getRowKeys" :row-key="getRowKeys"
...@@ -398,6 +399,7 @@ ...@@ -398,6 +399,7 @@
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
</div>
<!-- 六 --> <!-- 六 -->
<div class="block"> <div class="block">
<span class="record">共{{ reqParam.page.total }}条记录 第{{ reqParam.page.currPage }}/{{ <span class="record">共{{ reqParam.page.total }}条记录 第{{ reqParam.page.currPage }}/{{
...@@ -510,7 +512,6 @@ export default { ...@@ -510,7 +512,6 @@ export default {
created () { created () {
let w1 = 1920; let w1 = 1920;
let w2 = window.innerWidth; let w2 = window.innerWidth;
this.height = (this.height * w2) / w1;
this.width1 = (this.width1 * w2) / w1; this.width1 = (this.width1 * w2) / w1;
this.width2 = (this.width2 * w2) / w1; this.width2 = (this.width2 * w2) / w1;
this.width3 = (this.width3 * w2) / w1; this.width3 = (this.width3 * w2) / w1;
...@@ -526,7 +527,7 @@ export default { ...@@ -526,7 +527,7 @@ export default {
width3: 180, width3: 180,
width2: 100, width2: 100,
width1: 220, width1: 220,
height: 500, height: "33rem",
disabled: false, // 新增人员按钮状态 disabled: false, // 新增人员按钮状态
isShowTjddl: false, // 添加到队列 isShowTjddl: false, // 添加到队列
isShowGz: false, // 关注 isShowGz: false, // 关注
...@@ -1031,7 +1032,7 @@ export default { ...@@ -1031,7 +1032,7 @@ export default {
* @return {*} * @return {*}
*/ */
Tpage () { Tpage () {
return Math.round(this.reqParam.page.total / this.reqParam.page.pageSize); return Math.ceil(this.reqParam.page.total / this.reqParam.page.pageSize);
} }
}, },
mounted () { mounted () {
...@@ -1231,6 +1232,18 @@ export default { ...@@ -1231,6 +1232,18 @@ export default {
color: #666; color: #666;
margin-right: 32px; margin-right: 32px;
} }
.el-tag {
color: #055fe7 !important;
height: 32px;
box-sizing: border-box !important;
padding: 0 8px !important;
background: #ddebff;
border-radius: 4px;
font-size: 0.75rem;
margin-bottom: 16px;
display: flex;
align-items: center;
}
.options { .options {
height: 72px; height: 72px;
display: flex; display: flex;
...@@ -1348,6 +1361,10 @@ export default { ...@@ -1348,6 +1361,10 @@ export default {
overflow: visible; overflow: visible;
// background: white; // background: white;
margin-right: 14px; margin-right: 14px;
cursor: pointer;
span {
cursor: pointer;
}
} }
.iconfont { .iconfont {
...@@ -1364,6 +1381,10 @@ export default { ...@@ -1364,6 +1381,10 @@ export default {
.ops { .ops {
display: flex; display: flex;
} }
.split-line {
height: 650px;
border-bottom: 1px solid #eee;
}
.block { .block {
position: absolute; position: absolute;
bottom: 27px; bottom: 27px;
...@@ -1455,6 +1476,7 @@ export default { ...@@ -1455,6 +1476,7 @@ export default {
} }
} }
/deep/.el-table--enable-row-transition .el-table__body td.el-table__cell { /deep/.el-table--enable-row-transition .el-table__body td.el-table__cell {
height: 55px; // height: 55px;
} }
@import "@/assets/css/globalBase.scss";
</style> </style>
...@@ -30,6 +30,7 @@ ...@@ -30,6 +30,7 @@
<el-radio :label="9">高级搜索</el-radio> <el-radio :label="9">高级搜索</el-radio>
</el-radio-group> </el-radio-group>
</div> </div>
<div class="split-line">
<!-- 三 --> <!-- 三 -->
<div class="options"> <div class="options">
<div class="left"> <div class="left">
...@@ -99,7 +100,7 @@ ...@@ -99,7 +100,7 @@
<span v-html="'&nbsp;&nbsp;'"></span> <span v-html="'&nbsp;&nbsp;'"></span>
<i <i
class="iconfont icon-tanhao1" class="iconfont icon-tanhao1"
style="color: #055fe7; font-size: 16px; margin: 0 0.625rem;" style="color: #055fe7; font-size: 1rem; margin: 0 0.625rem;"
></i> ></i>
已选择<span style="color:#055FE7">{{multipleSelection.length}}</span>项​ 已选择<span style="color:#055FE7">{{multipleSelection.length}}</span>项​
<!-- <span v-html="'&nbsp;&nbsp;'"></span> --> <!-- <span v-html="'&nbsp;&nbsp;'"></span> -->
...@@ -113,7 +114,7 @@ ...@@ -113,7 +114,7 @@
</el-tag> </el-tag>
<!-- 五 --> <!-- 五 -->
<el-table <el-table
:max-height="height" :height="height"
ref="multipleTable" ref="multipleTable"
:data="tableDate" :data="tableDate"
:row-key="getRowKeys" :row-key="getRowKeys"
...@@ -177,7 +178,6 @@ ...@@ -177,7 +178,6 @@
> >
</el-table-column> </el-table-column>
<el-table-column <el-table-column
fixed="right"
label="操作" label="操作"
width="auto" width="auto"
> >
...@@ -352,6 +352,7 @@ ...@@ -352,6 +352,7 @@
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
</div>
<!-- 六 --> <!-- 六 -->
<div class="block"> <div class="block">
<span class="record">共{{ reqParam.page.total }}条记录 第{{ reqParam.page.currPage }}/{{Tpage}}页</span> <span class="record">共{{ reqParam.page.total }}条记录 第{{ reqParam.page.currPage }}/{{Tpage}}页</span>
...@@ -457,7 +458,6 @@ export default { ...@@ -457,7 +458,6 @@ export default {
let w1 = 1920 let w1 = 1920
let w2 = window.innerWidth let w2 = window.innerWidth
this.height = this.height * w2 / w1
this.width1 = this.width1 * w2 / w1 this.width1 = this.width1 * w2 / w1
this.width2 = this.width2 * w2 / w1 this.width2 = this.width2 * w2 / w1
this.width3 = this.width3 * w2 / w1 this.width3 = this.width3 * w2 / w1
...@@ -469,7 +469,7 @@ export default { ...@@ -469,7 +469,7 @@ export default {
width3: 100, width3: 100,
width2: 180, width2: 180,
width1: 220, width1: 220,
height: 500, height: "33rem",
isShowAjxxk: false,// 案件信息卡 isShowAjxxk: false,// 案件信息卡
disabled: false, // 新增案件按钮状态 disabled: false, // 新增案件按钮状态
isShowTjddl: false,// 添加到队列 isShowTjddl: false,// 添加到队列
...@@ -1223,6 +1223,10 @@ const datas1 = [ ...@@ -1223,6 +1223,10 @@ const datas1 = [
overflow: visible; overflow: visible;
// background: white; // background: white;
margin-right: 14px; margin-right: 14px;
cursor: pointer;
span {
cursor: pointer;
}
} }
.iconfont { .iconfont {
...@@ -1334,6 +1338,7 @@ const datas1 = [ ...@@ -1334,6 +1338,7 @@ const datas1 = [
} }
} }
/deep/.el-table--enable-row-transition .el-table__body td.el-table__cell { /deep/.el-table--enable-row-transition .el-table__body td.el-table__cell {
height: 55px; // height: 55px;
} }
@import "@/assets/css/globalBase.scss";
</style> </style>
...@@ -1347,5 +1347,15 @@ export default { ...@@ -1347,5 +1347,15 @@ export default {
} }
} }
} }
/deep/.el-menu-item {
span, img {
cursor: pointer;
}
}
/deep/.el-submenu__title {
span, img {
cursor: pointer;
}
}
@import "@/assets/css/globalBase.scss"; @import "@/assets/css/globalBase.scss";
</style> </style>
\ No newline at end of file
...@@ -320,8 +320,6 @@ ...@@ -320,8 +320,6 @@
:underline="false" :underline="false"
:style="{ :style="{
marginLeft: '1.25rem', marginLeft: '1.25rem',
color: '#055FE7',
transform: 'translateY(-2px)',
}" }"
@click="toggleSelection()" @click="toggleSelection()"
>清除</el-link> >清除</el-link>
......
...@@ -114,15 +114,18 @@ ...@@ -114,15 +114,18 @@
<span v-html="'&nbsp;&nbsp;'"></span> <span v-html="'&nbsp;&nbsp;'"></span>
<i <i
class="iconfont icon-tanhao1" class="iconfont icon-tanhao1"
style="color: #055fe7; font-size: 16px; margin: 0 0.625rem;" style="color: #055fe7; font-size: 1rem; margin: 0 0.625rem;"
></i> ></i>
已选择 已选择
<span style="color: #055fe7">{{ multipleSelection.length }}</span> 项​ <span style="color: #055fe7">{{ multipleSelection.length }}</span> 项​
<span v-html="'&nbsp;&nbsp;'"></span> <el-link
<span type="primary"
class="clearCheck" :underline="false"
:style="{
marginLeft: '1.25rem',
}"
@click="toggleSelection()" @click="toggleSelection()"
></span> >清</el-link>
</el-tag> </el-tag>
<el-table <el-table
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment