Commit dda79ff0 by 张超军

全部人员库+全部案件库

parent 8180dc84
......@@ -61,6 +61,10 @@
}
}
/deep/.el-table th > .cell {
font-family: HarmonyOS_Sans_SC_Medium;
}
/deep/.el-table .el-table__cell {
padding: 0 !important;
}
......@@ -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 {
.number {
......
......@@ -36,6 +36,7 @@
</el-radio-group>
</div>
<!-- 三 -->
<div class="split-line">
<div class="options">
<div class="left">
<div
......@@ -110,7 +111,7 @@
</div>
<!--四 -->
<el-tag
style="width: 100%; color: #666666;margin-bottom:1rem "
style="width: 100%;"
v-show="isShowTip"
>
<span v-html="'&nbsp;&nbsp;'"></span>
......@@ -132,7 +133,7 @@
<!-- 五 -->
<el-table
:max-height="height"
:height="height"
ref="multipleTable"
:data="tableDate"
:row-key="getRowKeys"
......@@ -398,6 +399,7 @@
</template>
</el-table-column>
</el-table>
</div>
<!-- 六 -->
<div class="block">
<span class="record">共{{ reqParam.page.total }}条记录 第{{ reqParam.page.currPage }}/{{
......@@ -510,7 +512,6 @@ export default {
created () {
let w1 = 1920;
let w2 = window.innerWidth;
this.height = (this.height * w2) / w1;
this.width1 = (this.width1 * w2) / w1;
this.width2 = (this.width2 * w2) / w1;
this.width3 = (this.width3 * w2) / w1;
......@@ -526,7 +527,7 @@ export default {
width3: 180,
width2: 100,
width1: 220,
height: 500,
height: "33rem",
disabled: false, // 新增人员按钮状态
isShowTjddl: false, // 添加到队列
isShowGz: false, // 关注
......@@ -1031,7 +1032,7 @@ export default {
* @return {*}
*/
Tpage () {
return Math.round(this.reqParam.page.total / this.reqParam.page.pageSize);
return Math.ceil(this.reqParam.page.total / this.reqParam.page.pageSize);
}
},
mounted () {
......@@ -1231,6 +1232,18 @@ export default {
color: #666;
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 {
height: 72px;
display: flex;
......@@ -1348,6 +1361,10 @@ export default {
overflow: visible;
// background: white;
margin-right: 14px;
cursor: pointer;
span {
cursor: pointer;
}
}
.iconfont {
......@@ -1364,6 +1381,10 @@ export default {
.ops {
display: flex;
}
.split-line {
height: 650px;
border-bottom: 1px solid #eee;
}
.block {
position: absolute;
bottom: 27px;
......@@ -1455,6 +1476,7 @@ export default {
}
}
/deep/.el-table--enable-row-transition .el-table__body td.el-table__cell {
height: 55px;
// height: 55px;
}
@import "@/assets/css/globalBase.scss";
</style>
......@@ -30,6 +30,7 @@
<el-radio :label="9">高级搜索</el-radio>
</el-radio-group>
</div>
<div class="split-line">
<!-- 三 -->
<div class="options">
<div class="left">
......@@ -99,7 +100,7 @@
<span v-html="'&nbsp;&nbsp;'"></span>
<i
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>
已选择<span style="color:#055FE7">{{multipleSelection.length}}</span>项​
<!-- <span v-html="'&nbsp;&nbsp;'"></span> -->
......@@ -113,7 +114,7 @@
</el-tag>
<!-- 五 -->
<el-table
:max-height="height"
:height="height"
ref="multipleTable"
:data="tableDate"
:row-key="getRowKeys"
......@@ -177,7 +178,6 @@
>
</el-table-column>
<el-table-column
fixed="right"
label="操作"
width="auto"
>
......@@ -352,6 +352,7 @@
</template>
</el-table-column>
</el-table>
</div>
<!-- 六 -->
<div class="block">
<span class="record">共{{ reqParam.page.total }}条记录 第{{ reqParam.page.currPage }}/{{Tpage}}页</span>
......@@ -457,7 +458,6 @@ export default {
let w1 = 1920
let w2 = window.innerWidth
this.height = this.height * w2 / w1
this.width1 = this.width1 * w2 / w1
this.width2 = this.width2 * w2 / w1
this.width3 = this.width3 * w2 / w1
......@@ -469,7 +469,7 @@ export default {
width3: 100,
width2: 180,
width1: 220,
height: 500,
height: "33rem",
isShowAjxxk: false,// 案件信息卡
disabled: false, // 新增案件按钮状态
isShowTjddl: false,// 添加到队列
......@@ -1223,6 +1223,10 @@ const datas1 = [
overflow: visible;
// background: white;
margin-right: 14px;
cursor: pointer;
span {
cursor: pointer;
}
}
.iconfont {
......@@ -1334,6 +1338,7 @@ const datas1 = [
}
}
/deep/.el-table--enable-row-transition .el-table__body td.el-table__cell {
height: 55px;
// height: 55px;
}
@import "@/assets/css/globalBase.scss";
</style>
......@@ -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";
</style>
\ No newline at end of file
......@@ -320,8 +320,6 @@
:underline="false"
:style="{
marginLeft: '1.25rem',
color: '#055FE7',
transform: 'translateY(-2px)',
}"
@click="toggleSelection()"
>清除</el-link>
......
......@@ -114,15 +114,18 @@
<span v-html="'&nbsp;&nbsp;'"></span>
<i
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>
已选择
<span style="color: #055fe7">{{ multipleSelection.length }}</span> 项​
<span v-html="'&nbsp;&nbsp;'"></span>
<span
class="clearCheck"
<el-link
type="primary"
:underline="false"
:style="{
marginLeft: '1.25rem',
}"
@click="toggleSelection()"
></span>
>清</el-link>
</el-tag>
<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