|
|
|
<!--
|
|
|
|
* @Descripttion:
|
|
|
|
* @version:
|
|
|
|
* @Author: JC9527
|
|
|
|
* @Date: 2023-09-04 10:20:06
|
|
|
|
* @LastEditors: JC9527
|
|
|
|
* @LastEditTime: 2023-09-27 16:47:17
|
|
|
|
-->
|
|
|
|
<template>
|
|
|
|
<div class="container-main" ref="main">
|
|
|
|
<div class="enforce-the-law-title">
|
|
|
|
<div class="filtrate-condition">
|
|
|
|
<div class="select-input">
|
|
|
|
<div class="select-span">年份:</div>
|
|
|
|
<el-date-picker
|
|
|
|
v-model="form.plannedYear"
|
|
|
|
type="month"
|
|
|
|
placeholder="请选择"
|
|
|
|
value-format="yyyy-MM"
|
|
|
|
size="small"
|
|
|
|
>
|
|
|
|
</el-date-picker>
|
|
|
|
</div>
|
|
|
|
<div class="select-input">
|
|
|
|
<div class="select-span">区划:</div>
|
|
|
|
<executive @quhua="quhua" @quhuadizhi="quhuadizhi" ref="executive"></executive>
|
|
|
|
</div>
|
|
|
|
<div class="my-checkbox">
|
|
|
|
<el-checkbox-group v-model="checkList" @change="setmealSelect">
|
|
|
|
<el-checkbox label="">全部</el-checkbox>
|
|
|
|
<el-checkbox label="1">已检查</el-checkbox>
|
|
|
|
<el-checkbox label="2">未检查</el-checkbox>
|
|
|
|
</el-checkbox-group>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div style="display: flex">
|
|
|
|
<div class="export" @click="searchList" style="margin-right: 10px">
|
|
|
|
<span>搜索</span>
|
|
|
|
</div>
|
|
|
|
<div
|
|
|
|
class="export"
|
|
|
|
@click="chongzhiList"
|
|
|
|
style="margin-right: 10px; background-color: #fdab5b"
|
|
|
|
>
|
|
|
|
<span>重置</span>
|
|
|
|
</div>
|
|
|
|
<div class="export" @click="exportFile">
|
|
|
|
<img src="@/assets/images/export.png" alt="" />
|
|
|
|
<span>导出excel</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="tables">
|
|
|
|
<el-table
|
|
|
|
:data="tableData"
|
|
|
|
style="width: 100%"
|
|
|
|
:height="484"
|
|
|
|
:border="false"
|
|
|
|
v-loading="loads"
|
|
|
|
:row-class-name="tableRowClassName"
|
|
|
|
:cell-style="columnStyle"
|
|
|
|
>
|
|
|
|
<el-table-column
|
|
|
|
prop="plannedYear"
|
|
|
|
label="计划年月"
|
|
|
|
width="180"
|
|
|
|
header-align="center"
|
|
|
|
>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
prop="district"
|
|
|
|
label="行政区划"
|
|
|
|
width="180"
|
|
|
|
header-align="center"
|
|
|
|
>
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<span>{{ componendDistrict(scope.row.district) }}</span>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
prop="entprName"
|
|
|
|
label="企业名称"
|
|
|
|
header-align="center"
|
|
|
|
>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column prop="checkStatus" label="状态" header-align="center">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<div
|
|
|
|
style="font-family: 'Alibaba PuHuiTi'"
|
|
|
|
:class="scope.row.checkStatus == '2' ? 'isStyle' : ''"
|
|
|
|
>
|
|
|
|
{{ scope.row.checkStatus == 2 ? "未检查" : "已检查" }}
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="操作" header-align="center">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<div class="tabs-btns">
|
|
|
|
<div
|
|
|
|
class="look"
|
|
|
|
v-if="scope.row.checkStatus == 1"
|
|
|
|
@click="look(scope.row)"
|
|
|
|
>
|
|
|
|
<span>查看执法详情</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table>
|
|
|
|
</div>
|
|
|
|
<div class="pagination">
|
|
|
|
<my-pagination
|
|
|
|
:total="total"
|
|
|
|
@pagesChange="pagesChange"
|
|
|
|
ref="mypagination"
|
|
|
|
></my-pagination>
|
|
|
|
</div>
|
|
|
|
<!-- 查看 -->
|
|
|
|
<el-dialog
|
|
|
|
:visible.sync="addShow"
|
|
|
|
:show-close="false"
|
|
|
|
:destroy-on-close="true"
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
append-to-body
|
|
|
|
custom-class="dialog-boxed"
|
|
|
|
width="50%"
|
|
|
|
>
|
|
|
|
<div class="dialog-slot">
|
|
|
|
<div class="closeClick">
|
|
|
|
<div class="newplan">
|
|
|
|
<div class="line"></div>
|
|
|
|
<div class="span">执法详情</div>
|
|
|
|
</div>
|
|
|
|
<img src="@/assets/images/close.png" alt="" @click="shutDownDetail" />
|
|
|
|
</div>
|
|
|
|
<div class="content">
|
|
|
|
<div class="filtrate">
|
|
|
|
<el-descriptions :column="2" border v-loading="detailLoad">
|
|
|
|
<el-descriptions-item
|
|
|
|
:label="item.label"
|
|
|
|
v-for="(item, index) in listDes"
|
|
|
|
:key="index"
|
|
|
|
>
|
|
|
|
{{
|
|
|
|
item.value == "null"
|
|
|
|
? ""
|
|
|
|
: item.value == "false"
|
|
|
|
? "暂无"
|
|
|
|
: item.value
|
|
|
|
}}
|
|
|
|
</el-descriptions-item>
|
|
|
|
</el-descriptions>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</el-dialog>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import executive from "./echarts/executive";
|
|
|
|
import myPagination from "@/views/components/myPagination/index.vue";
|
|
|
|
import {
|
|
|
|
businessList,
|
|
|
|
enforcingDetail,
|
|
|
|
xzTree,
|
|
|
|
enforcingGet,
|
|
|
|
} from "@/api/yingji/keyEnterprise.js";
|
|
|
|
export default {
|
|
|
|
components: { myPagination, executive },
|
|
|
|
name: "Article",
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
tableData: [],
|
|
|
|
option: [],
|
|
|
|
loads: true,
|
|
|
|
total: 0,
|
|
|
|
form: {
|
|
|
|
district: "",
|
|
|
|
plannedYear: "",
|
|
|
|
//检测状态
|
|
|
|
checkStatus: "",
|
|
|
|
},
|
|
|
|
checkList: [""],
|
|
|
|
checkListTwo: [],
|
|
|
|
listDes: [
|
|
|
|
{
|
|
|
|
eng: "entprName",
|
|
|
|
label: "企业名称",
|
|
|
|
value: "",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
eng: "uscCode",
|
|
|
|
label: "统一社会信用代码",
|
|
|
|
value: "",
|
|
|
|
},
|
|
|
|
// {
|
|
|
|
// eng: "CREATETIME",
|
|
|
|
// label: "创建时间",
|
|
|
|
// value: "",
|
|
|
|
// },
|
|
|
|
// {
|
|
|
|
// eng: "UPDATETIME",
|
|
|
|
// label: "修改时间",
|
|
|
|
// value: "",
|
|
|
|
// },
|
|
|
|
{
|
|
|
|
eng: "enterpriseUnitVersion",
|
|
|
|
label: "钢铁三年专项时,企业设施的版本号",
|
|
|
|
value: "",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
eng: "examineStartTime",
|
|
|
|
label: "检查开始时间",
|
|
|
|
value: "",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
eng: "examineEndTime",
|
|
|
|
label: "检查结束时间",
|
|
|
|
value: "",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
eng: "examineSite",
|
|
|
|
label: "检查场所",
|
|
|
|
value: "",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
eng: "examineSource",
|
|
|
|
label: "检查来源",
|
|
|
|
value: "",
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
eng: "examineType",
|
|
|
|
label: "检查方式",
|
|
|
|
value: "",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
eng: "executorDept",
|
|
|
|
label: "执法部门",
|
|
|
|
value: "",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
eng: "executorDeptCode",
|
|
|
|
label: "执法部门代码",
|
|
|
|
value: "",
|
|
|
|
},
|
|
|
|
// {
|
|
|
|
// eng: "executorId",
|
|
|
|
// label: "检查人员id",
|
|
|
|
// value: "",
|
|
|
|
// },
|
|
|
|
{
|
|
|
|
eng: "expertsInFlag",
|
|
|
|
label: "是否专家参与",
|
|
|
|
value: "",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
eng: "expertsName",
|
|
|
|
label: "专家姓名",
|
|
|
|
value: "",
|
|
|
|
},
|
|
|
|
// {
|
|
|
|
// eng: "planExamineId",
|
|
|
|
// label: "检查方案id",
|
|
|
|
// value: "",
|
|
|
|
// },
|
|
|
|
{
|
|
|
|
eng: "sourceData",
|
|
|
|
label: "数据来源",
|
|
|
|
value: "",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
eng: "threeSpecialType",
|
|
|
|
label: "是否是三年专项",
|
|
|
|
value: "",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
eng: "typeCode",
|
|
|
|
label: "文书类型",
|
|
|
|
value: "",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
eng: "writNo",
|
|
|
|
label: "文书文号",
|
|
|
|
value: "",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
eng: "examineSituation",
|
|
|
|
label: "检查情况",
|
|
|
|
value: "",
|
|
|
|
},
|
|
|
|
],
|
|
|
|
searchBefore: {
|
|
|
|
pageSize: 10,
|
|
|
|
pageNum: 1,
|
|
|
|
},
|
|
|
|
details: {},
|
|
|
|
addShow: false,
|
|
|
|
detailLoad: true,
|
|
|
|
//区划的禁用
|
|
|
|
};
|
|
|
|
},
|
|
|
|
created() {
|
|
|
|
this.getList();
|
|
|
|
},
|
|
|
|
dicts: ["inspection_method", "check_source", "document_type"],
|
|
|
|
methods: {
|
|
|
|
filterTable(a, b) {
|
|
|
|
if (!b) return;
|
|
|
|
return this.selectDictLabel(a, b);
|
|
|
|
},
|
|
|
|
// 匹配行政区划
|
|
|
|
componendDistrict(district) {
|
|
|
|
let name;
|
|
|
|
this.option.map((item) => {
|
|
|
|
if (item.value == district) {
|
|
|
|
name = item.label;
|
|
|
|
} else {
|
|
|
|
item.children.map((itemTwo) => {
|
|
|
|
if (itemTwo.value == district) {
|
|
|
|
name = item.label + "-" + itemTwo.label;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return name;
|
|
|
|
},
|
|
|
|
// 获取行政区划树
|
|
|
|
quhuadizhi(district) {
|
|
|
|
this.option = district;
|
|
|
|
},
|
|
|
|
reset() {
|
|
|
|
this.form = {
|
|
|
|
district: "",
|
|
|
|
plannedYear: "",
|
|
|
|
checkStatus: "",
|
|
|
|
};
|
|
|
|
this.$refs.executive.district = [];
|
|
|
|
this.searchBefore = {
|
|
|
|
pageSize: 10,
|
|
|
|
pageNum: 1,
|
|
|
|
};
|
|
|
|
this.$refs.mypagination.defaultPages();
|
|
|
|
},
|
|
|
|
//重置列表
|
|
|
|
chongzhiList() {
|
|
|
|
this.reset();
|
|
|
|
this.getList();
|
|
|
|
},
|
|
|
|
shutDownDetail() {
|
|
|
|
this.addShow = false;
|
|
|
|
},
|
|
|
|
look(e) {
|
|
|
|
this.addShow = true;
|
|
|
|
this.detailLoad = true;
|
|
|
|
enforcingGet(e.longId).then((res) => {
|
|
|
|
for (let key in res.data) {
|
|
|
|
this.listDes.forEach((value1, index1) => {
|
|
|
|
if (key == value1.eng) {
|
|
|
|
this.listDes[index1].value = res.data[key];
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
this.listDes.forEach((value1, index1) => {
|
|
|
|
//检查方式
|
|
|
|
if (value1.eng == "examineType") {
|
|
|
|
this.listDes[index1].value = this.filterTable(
|
|
|
|
this.dict.type.inspection_method,
|
|
|
|
value1.value
|
|
|
|
);
|
|
|
|
}
|
|
|
|
//检查来源
|
|
|
|
if (value1.eng == "examineSource") {
|
|
|
|
this.listDes[index1].value = this.filterTable(
|
|
|
|
this.dict.type.check_source,
|
|
|
|
value1.value
|
|
|
|
);
|
|
|
|
}
|
|
|
|
//文书类型
|
|
|
|
if (value1.eng == "typeCode") {
|
|
|
|
this.listDes[index1].value = this.filterTable(
|
|
|
|
this.dict.type.document_type,
|
|
|
|
value1.value
|
|
|
|
);
|
|
|
|
}
|
|
|
|
if (value1.value == "0") {
|
|
|
|
this.listDes[index1].value = '否'
|
|
|
|
}
|
|
|
|
if (value1.value == "1") {
|
|
|
|
this.listDes[index1].value = '是'
|
|
|
|
}
|
|
|
|
});
|
|
|
|
this.detailLoad = false;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
quhua(e) {
|
|
|
|
this.form.district = e;
|
|
|
|
},
|
|
|
|
searchList() {
|
|
|
|
this.searchBefore = {
|
|
|
|
pageSize: 10,
|
|
|
|
pageNum: 1,
|
|
|
|
};
|
|
|
|
this.$refs.mypagination.defaultPages();
|
|
|
|
this.searchBefore = { ...this.searchBefore, ...this.form };
|
|
|
|
this.getList();
|
|
|
|
},
|
|
|
|
getList() {
|
|
|
|
this.loads = true;
|
|
|
|
enforcingDetail(this.searchBefore).then((res) => {
|
|
|
|
console.log(res);
|
|
|
|
this.tableData = res.rows;
|
|
|
|
this.total = res.total;
|
|
|
|
this.loads = false;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
// 多选框变化事件
|
|
|
|
setmealSelect() {
|
|
|
|
this.checkList = this.checkList.slice(-1);
|
|
|
|
if (this.checkList.length > 0) {
|
|
|
|
this.checkListTwo = this.checkList;
|
|
|
|
this.form.checkStatus = this.checkList[0];
|
|
|
|
} else {
|
|
|
|
this.checkList = this.checkListTwo;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
// tabs不同行给不同class
|
|
|
|
tableRowClassName({ row, rowIndex }) {
|
|
|
|
if (rowIndex % 2 !== 0) {
|
|
|
|
return "success-row";
|
|
|
|
}
|
|
|
|
return "";
|
|
|
|
},
|
|
|
|
// 根据状态数据修改字体颜色
|
|
|
|
columnStyle({ row, column, rowIndex, columnIndex }) {
|
|
|
|
if (columnIndex == 3) {
|
|
|
|
if (row.state == "未执法") {
|
|
|
|
return "color: #F71052";
|
|
|
|
} else if (row.state == "已执法") {
|
|
|
|
return "color: #23B06C";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
// 页码,当前页切换事件
|
|
|
|
pagesChange(pages) {
|
|
|
|
this.searchBefore.pageNum= pages.pageNum;
|
|
|
|
this.searchBefore.pageSize = pages.pageSize;
|
|
|
|
this.getList();
|
|
|
|
},
|
|
|
|
// 导出
|
|
|
|
exportFile() {
|
|
|
|
this.$confirm(`确认根据您的搜索条件导出搜索之后的数据吗?`, "警告", {
|
|
|
|
confirmButtonText: "确定",
|
|
|
|
cancelButtonText: "取消",
|
|
|
|
type: "warning",
|
|
|
|
})
|
|
|
|
.then(() => {
|
|
|
|
this.download(
|
|
|
|
"/pharmaceuticals/bPlanEnterprise/export",
|
|
|
|
{
|
|
|
|
...this.form,
|
|
|
|
},
|
|
|
|
`执法列表.xlsx`
|
|
|
|
);
|
|
|
|
})
|
|
|
|
.catch(() => {});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
this.checkListTwo = this.checkList;
|
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.isStyle {
|
|
|
|
color: #f71052;
|
|
|
|
}
|
|
|
|
.dialog-slot {
|
|
|
|
.closeClick {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
padding: 10px 20px;
|
|
|
|
width: 100%;
|
|
|
|
z-index: 1000;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
text-align: center;
|
|
|
|
background: #f8f9fa;
|
|
|
|
box-shadow: 0px 1px 0px 0px #dbe0e8;
|
|
|
|
background-color: #e0eaf8;
|
|
|
|
img {
|
|
|
|
width: 18px;
|
|
|
|
height: 18px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
.newplan {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
.line {
|
|
|
|
margin-right: 10px;
|
|
|
|
width: 5px;
|
|
|
|
height: 16px;
|
|
|
|
background-color: #1e70de;
|
|
|
|
}
|
|
|
|
.span {
|
|
|
|
font-size: 16px;
|
|
|
|
font-family: "Alibaba PuHuiTi";
|
|
|
|
font-weight: bold;
|
|
|
|
color: #1e70de;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.content {
|
|
|
|
// padding: 15px 10px;
|
|
|
|
.filtrate {
|
|
|
|
padding-bottom: 10px;
|
|
|
|
.select-input {
|
|
|
|
// margin-right: 10px;
|
|
|
|
margin-top: 20px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
.select-span {
|
|
|
|
font-size: 13px;
|
|
|
|
font-family: "Alibaba PuHuiTi";
|
|
|
|
font-weight: 400;
|
|
|
|
color: #525966;
|
|
|
|
// line-height: 40px;
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
::v-deep .el-select,
|
|
|
|
.el-cascader {
|
|
|
|
background-color: transparent;
|
|
|
|
width: 180px;
|
|
|
|
.el-input__inner {
|
|
|
|
height: 33px;
|
|
|
|
}
|
|
|
|
// border-radius: 2px;
|
|
|
|
.el-input
|
|
|
|
.el-input__suffix
|
|
|
|
.el-input__suffix-inner
|
|
|
|
.el-icon-arrow-up::before {
|
|
|
|
content: "";
|
|
|
|
background: url(../../assets/images/down2.png) center center
|
|
|
|
no-repeat;
|
|
|
|
background-size: cover;
|
|
|
|
position: absolute;
|
|
|
|
width: 10px;
|
|
|
|
height: 7px;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.select-input {
|
|
|
|
width: 45%;
|
|
|
|
::v-deep .el-input {
|
|
|
|
.el-input__inner {
|
|
|
|
height: 33px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.select-btn {
|
|
|
|
width: 80px;
|
|
|
|
height: 33px;
|
|
|
|
background: #2378ec;
|
|
|
|
border-radius: 2px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
font-size: 15px;
|
|
|
|
font-family: Alibaba PuHuiTi;
|
|
|
|
font-weight: 500;
|
|
|
|
color: #ffffff;
|
|
|
|
cursor: pointer;
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
.select-btn1 {
|
|
|
|
background: #28b384;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
::v-deep .el-descriptions-row th {
|
|
|
|
width: 20% !important;
|
|
|
|
font-size: 14px;
|
|
|
|
font-family: "Alibaba PuHuiTi";
|
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
::v-deep .el-descriptions-row td {
|
|
|
|
width: 30% !important;
|
|
|
|
font-size: 14px;
|
|
|
|
font-family: "Alibaba PuHuiTi";
|
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
.container-main {
|
|
|
|
// height: calc(100vh - 84px);
|
|
|
|
overflow: hidden;
|
|
|
|
padding: 0 20px;
|
|
|
|
height: 100%;
|
|
|
|
background-color: #fff;
|
|
|
|
.enforce-the-law-title {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
padding: 31px 0 12px 0;
|
|
|
|
.filtrate-condition {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
.select-input {
|
|
|
|
margin-right: 20px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
.select-span {
|
|
|
|
font-size: 14px;
|
|
|
|
font-family: "Alibaba PuHuiTi";
|
|
|
|
font-weight: 400;
|
|
|
|
color: #525966;
|
|
|
|
line-height: 40px;
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
::v-deep .el-select {
|
|
|
|
background-color: transparent;
|
|
|
|
width: 210px;
|
|
|
|
.el-input__inner {
|
|
|
|
height: 33px;
|
|
|
|
}
|
|
|
|
// border-radius: 2px;
|
|
|
|
.el-input
|
|
|
|
.el-input__suffix
|
|
|
|
.el-input__suffix-inner
|
|
|
|
.el-icon-arrow-up::before {
|
|
|
|
content: "";
|
|
|
|
background: url(../../assets/images/down2.png) center center
|
|
|
|
no-repeat;
|
|
|
|
background-size: cover;
|
|
|
|
position: absolute;
|
|
|
|
width: 10px;
|
|
|
|
height: 7px;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.my-checkbox {
|
|
|
|
margin-left: 50px;
|
|
|
|
::v-deep .el-checkbox-group {
|
|
|
|
.el-checkbox__label {
|
|
|
|
font-size: 14px;
|
|
|
|
font-family: "Alibaba PuHuiTi";
|
|
|
|
font-weight: 400;
|
|
|
|
color: #525966;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.export {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
padding: 6px 19px;
|
|
|
|
background-color: #2378ec;
|
|
|
|
cursor: pointer;
|
|
|
|
img {
|
|
|
|
width: 22px;
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
span {
|
|
|
|
color: #ffffff;
|
|
|
|
font-size: 14px;
|
|
|
|
font-family: "Alibaba PuHuiTi";
|
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.tables {
|
|
|
|
margin-top: 10px;
|
|
|
|
background-color: #eaf2fd;
|
|
|
|
.tabs-btns {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
.look {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
cursor: pointer;
|
|
|
|
span {
|
|
|
|
font-size: 15px;
|
|
|
|
font-family: Alibaba PuHuiTi;
|
|
|
|
font-weight: 400;
|
|
|
|
color: #045ffd;
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
::v-deep .el-table {
|
|
|
|
.success-row {
|
|
|
|
background-color: rgba(234, 242, 253, 0.25);
|
|
|
|
}
|
|
|
|
td {
|
|
|
|
height: 42px;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 14px;
|
|
|
|
font-family: "Alibaba PuHuiTi";
|
|
|
|
font-weight: 400;
|
|
|
|
color: #525966;
|
|
|
|
}
|
|
|
|
th {
|
|
|
|
height: 45px;
|
|
|
|
background-color: #eaf2fd;
|
|
|
|
font-size: 15px;
|
|
|
|
font-family: "Alibaba PuHuiTi";
|
|
|
|
font-weight: bold;
|
|
|
|
color: #525966;
|
|
|
|
.el-checkbox {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
::v-deep .el-table::before {
|
|
|
|
height: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.pagination {
|
|
|
|
margin-top: 40px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|