|
@@ -14,17 +14,18 @@
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="8">
|
|
|
- <el-form-item label="检测频次" prop="detectionFrequency">
|
|
|
- <el-input
|
|
|
- v-model="queryParams.detectionFrequency"
|
|
|
- placeholder="请输入检测频次(汉字拼接后)"
|
|
|
- clearable
|
|
|
- style="width: 108%;"
|
|
|
- @keyup.enter.native="handleQuery"
|
|
|
- />
|
|
|
- </el-form-item>
|
|
|
+ <el-form-item label="人群分类" prop="focusCrowdStyle">
|
|
|
+ <el-select clearable style="width: 108%;" filterable v-model="queryParams.focusCrowdStyle" placeholder="请选择人群分类">
|
|
|
+ <el-option
|
|
|
+ v-for="dict in dict.type.classification_population"
|
|
|
+ :key="dict.label"
|
|
|
+ :label="dict.label"
|
|
|
+ :value="dict.label"
|
|
|
+ ></el-option>
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
</el-col>
|
|
|
- <el-col :span="8">
|
|
|
+ <!-- <el-col :span="8">
|
|
|
<el-form-item label="采集时间" prop="nucleicCollectTime">
|
|
|
<el-date-picker clearable
|
|
|
v-model="queryParams.nucleicCollectTime"
|
|
@@ -36,6 +37,18 @@
|
|
|
</el-date-picker>
|
|
|
</el-form-item>
|
|
|
|
|
|
+ </el-col> -->
|
|
|
+ <el-col :span="8">
|
|
|
+ <el-form-item label="职业类别" prop="jobStyle">
|
|
|
+ <el-select clearable style="width: 108%;" filterable v-model="queryParams.jobStyle" placeholder="请选择职业类别">
|
|
|
+ <el-option
|
|
|
+ v-for="dict in dict.type.occupational_category "
|
|
|
+ :key="dict.label"
|
|
|
+ :label="dict.label"
|
|
|
+ :value="dict.label"
|
|
|
+ ></el-option>
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
</el-col>
|
|
|
|
|
|
<el-col :span="24">
|
|
@@ -50,6 +63,18 @@
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
+ <el-col :span="8">
|
|
|
+ <el-form-item label="开始时间" prop="startTime">
|
|
|
+ <el-date-picker clearable
|
|
|
+ v-model="queryParams.startTime"
|
|
|
+ type="datetime"
|
|
|
+ value-format="yyyy-MM-dd HH:mm:ss"
|
|
|
+ format="yyyy-MM-dd HH:mm:ss"
|
|
|
+ style="width: 100%;"
|
|
|
+ placeholder="请选择比对开始时间">
|
|
|
+ </el-date-picker>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
<el-col :span="8">
|
|
|
<el-form-item label="采集地点" prop="collectPlace">
|
|
|
<el-input
|
|
@@ -61,19 +86,6 @@
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
- <el-col :span="8">
|
|
|
- <el-form-item label="结果时间" prop="nucleicResultsTime">
|
|
|
- <el-date-picker clearable
|
|
|
- v-model="queryParams.nucleicResultsTime"
|
|
|
- type="datetime"
|
|
|
- value-format="yyyy-MM-dd HH:mm:ss"
|
|
|
- format="yyyy-MM-dd HH:mm:ss"
|
|
|
- style="width: 100%;"
|
|
|
- placeholder="请选择核酸结果时间">
|
|
|
- </el-date-picker>
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
-
|
|
|
</el-col>
|
|
|
<el-col :span="8">
|
|
|
<el-form-item label="联系号码" prop="phoneNum">
|
|
@@ -87,18 +99,7 @@
|
|
|
</el-form-item>
|
|
|
|
|
|
</el-col>
|
|
|
- <el-col :span="8">
|
|
|
- <el-form-item label="开始时间" prop="startTime">
|
|
|
- <el-date-picker clearable
|
|
|
- v-model="queryParams.startTime"
|
|
|
- type="datetime"
|
|
|
- value-format="yyyy-MM-dd HH:mm:ss"
|
|
|
- format="yyyy-MM-dd HH:mm:ss"
|
|
|
- style="width: 100%;"
|
|
|
- placeholder="请选择比对开始时间">
|
|
|
- </el-date-picker>
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
+
|
|
|
<el-col :span="8">
|
|
|
<el-form-item label="结束时间" prop="endTime">
|
|
|
<el-date-picker clearable
|
|
@@ -111,19 +112,43 @@
|
|
|
</el-date-picker>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
+ <el-col :span="8">
|
|
|
+ <el-form-item label="是否正常" prop="detectionResult">
|
|
|
+ <el-select clearable style="width: 108%;" filterable v-model="queryParams.detectionResult" placeholder="请选择是否正常">
|
|
|
+ <el-option
|
|
|
+ v-for="dict in dict.type.whether_abnormal"
|
|
|
+ :key="dict.label"
|
|
|
+ :label="dict.label"
|
|
|
+ :value="dict.label"
|
|
|
+ ></el-option>
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="8">
|
|
|
+ <el-form-item class="nkseydf">
|
|
|
+ <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
|
|
+ <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
|
|
|
|
|
|
</el-row>
|
|
|
|
|
|
- <el-form-item>
|
|
|
- <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
|
|
- <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
|
|
- </el-form-item>
|
|
|
+
|
|
|
</el-form>
|
|
|
|
|
|
<el-row :gutter="10" class="mb8">
|
|
|
- <el-col :span="20">
|
|
|
- <div style="color: #343434; font-size: 20px;">截至 <span style="color: #00b385;">2022年08月14日</span> 止 共计 <span style="color: #00b385;">33256</span> 次核酸</div>
|
|
|
+ <el-col :span="18">
|
|
|
+ <div style="color: #343434; font-size: 20px;">截至 <span style="color: #00b385;">{{gettime}}</span> 止 共计 <span style="color: #00b385;">{{nskeia}}</span> 次核酸</div>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="1.5">
|
|
|
+ <el-button
|
|
|
+ type="primary"
|
|
|
+ plain
|
|
|
+ icon="el-icon-download"
|
|
|
+ size="mini"
|
|
|
+ @click="importTemplate"
|
|
|
+ >下载模板</el-button>
|
|
|
</el-col>
|
|
|
<el-col :span="1.5">
|
|
|
<el-button
|
|
@@ -148,36 +173,60 @@
|
|
|
<!-- <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar> -->
|
|
|
</el-row>
|
|
|
|
|
|
- <el-table v-loading="loading" :data="infoList" @selection-change="handleSelectionChange">
|
|
|
- <el-table-column label="姓名" align="center" prop="name" width="110"/>
|
|
|
- <el-table-column label="性别" align="center" prop="gender" />
|
|
|
- <el-table-column label="年龄" align="center" prop="age" />
|
|
|
- <el-table-column label="身份证号码" align="center" prop="idCard" width="180"/>
|
|
|
+ <el-table :height="tableMaxHeight" v-loading="loading" :data="infoList" @selection-change="handleSelectionChange">
|
|
|
+ <el-table-column :fixed="rigs" label="姓名" align="center" prop="name" width="110"/>
|
|
|
+ <el-table-column :fixed="rigs" label="身份证号码" align="center" prop="idCard" width="180"/>
|
|
|
<el-table-column label="联系号码" align="center" prop="phoneNum" width="110"/>
|
|
|
- <el-table-column label="核酸采集时间" align="center" prop="nucleicCollectTime" width="102">
|
|
|
+ <el-table-column label="核酸采集时间" align="center" prop="nucleicCollectTime" width="157">
|
|
|
<template slot-scope="scope">
|
|
|
- <span>{{ scope.row.nucleicCollectTime }}</span>
|
|
|
+ <span v-html="scope.row.nucleicCollectTime"></span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="核酸结果时间" align="center" prop="nucleicResultsTime" width="102">
|
|
|
+ <el-table-column label="核酸结果时间" align="center" prop="nucleicResultsTime" width="157">
|
|
|
<template slot-scope="scope">
|
|
|
- <span>{{ scope.row.nucleicResultsTime}}</span>
|
|
|
+ <span v-html="scope.row.nucleicResultsTime"></span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="职业类别" align="center" prop="jobStyle" />
|
|
|
+ <el-table-column label="采集地点" align="center" width="117">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span v-html="scope.row.collectPlace"></span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="采集结果" align="center" width="117">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span v-html="scope.row.nucleicResults"></span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="职业类别" align="center" prop="jobStyle" width="137"/>
|
|
|
<el-table-column label="重点人群分类" align="center" prop="focusCrowdStyle" width="130"/>
|
|
|
- <el-table-column label="检测频次" align="center" prop="detectionFrequency" />
|
|
|
- <el-table-column label="比对开始时间" align="center" prop="startTime" width="102">
|
|
|
+ <el-table-column label="检测频次(次/天)" align="center" prop="detectionFrequency" width="115"/>
|
|
|
+ <el-table-column label="比对开始时间" align="center" prop="startTime" width="157">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ scope.row.startTime}}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="比对结束时间" align="center" prop="endTime" width="102">
|
|
|
+ <el-table-column label="比对结束时间" align="center" prop="endTime" width="157">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ scope.row.endTime}}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
-
|
|
|
+ <el-table-column :fixed="rig" label="进度(已做核酸次数/频次)" align="center" prop="detectionProgress" width="165"/>
|
|
|
+ <el-table-column :fixed="rig" label="是否异常" align="center" prop="detectionResult" >
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span :class="[scope.row.detectionResult == '正常' ? 'heade_codfr' : 'lndw']">{{ scope.row.detectionResult}}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column :fixed="rig" label="操作" align="center" class-name="small-padding fixed-width">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-button
|
|
|
+ size="mini"
|
|
|
+ type="text"
|
|
|
+ icon="el-icon-delete"
|
|
|
+ @click="handleDelete(scope.row)"
|
|
|
+ v-hasPermi="['system:dept:remove']"
|
|
|
+ >删除</el-button>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
</el-table>
|
|
|
|
|
|
<pagination
|
|
@@ -188,52 +237,6 @@
|
|
|
@pagination="getList"
|
|
|
/>
|
|
|
|
|
|
- <!-- 添加或修改导入人员信息对话框 -->
|
|
|
- <!-- <el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
|
|
|
- <el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
|
|
- <el-form-item label="姓名" prop="name">
|
|
|
- <el-input v-model="form.name" placeholder="请输入姓名" />
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="性别" prop="gender">
|
|
|
- <el-input v-model="form.gender" placeholder="请输入性别" />
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="年龄" prop="age">
|
|
|
- <el-input v-model="form.age" placeholder="请输入年龄" />
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="身份证号码" prop="idCard">
|
|
|
- <el-input v-model="form.idCard" placeholder="请输入身份证号码" />
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="联系号码" prop="phoneNum">
|
|
|
- <el-input v-model="form.phoneNum" placeholder="请输入联系号码" />
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="检测频次" prop="detectionNumber">
|
|
|
- <el-input v-model="form.detectionNumber" placeholder="请输入检测频次" />
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="检测频次" prop="detectionScope">
|
|
|
- <el-input v-model="form.detectionScope" placeholder="请输入检测频次" />
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="比对开始时间" prop="startTime">
|
|
|
- <el-date-picker clearable
|
|
|
- v-model="form.startTime"
|
|
|
- type="date"
|
|
|
- value-format="yyyy-MM-dd"
|
|
|
- placeholder="请选择比对开始时间">
|
|
|
- </el-date-picker>
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="比对结束时间" prop="endTime">
|
|
|
- <el-date-picker clearable
|
|
|
- v-model="form.endTime"
|
|
|
- type="date"
|
|
|
- value-format="yyyy-MM-dd"
|
|
|
- placeholder="请选择比对结束时间">
|
|
|
- </el-date-picker>
|
|
|
- </el-form-item>
|
|
|
- </el-form>
|
|
|
- <div slot="footer" class="dialog-footer">
|
|
|
- <el-button type="primary" @click="submitForm">确 定</el-button>
|
|
|
- <el-button @click="cancel">取 消</el-button>
|
|
|
- </div>
|
|
|
- </el-dialog> -->
|
|
|
|
|
|
|
|
|
<!-- 用户导入对话框 -->
|
|
@@ -284,31 +287,7 @@
|
|
|
</el-date-picker>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
- <el-col :span="12">
|
|
|
- <el-form-item :label="'次' + '\u3000\u3000' + '数'" prop="detectionNumber">
|
|
|
- <el-input
|
|
|
- v-model="upload.detectionNumber"
|
|
|
- placeholder="请输入次数"
|
|
|
- min="0"
|
|
|
- type="number"
|
|
|
- @blur="nhkse"
|
|
|
- />
|
|
|
- </el-form-item>
|
|
|
|
|
|
-
|
|
|
- </el-col>
|
|
|
- <el-col :span="12">
|
|
|
- <el-form-item :label="'天' + '\u3000\u3000' + '数'" prop="detectionScope">
|
|
|
- <el-input
|
|
|
- v-model="upload.detectionScope"
|
|
|
- placeholder="请输入天数"
|
|
|
- min="0"
|
|
|
- type="number"
|
|
|
- @blur="nhksets"
|
|
|
- @keyup.enter.native="handleQuery"
|
|
|
- />
|
|
|
- </el-form-item>
|
|
|
- </el-col>
|
|
|
<el-col :span="12">
|
|
|
<el-form-item label="职业类别" prop="jobStyle">
|
|
|
<el-select filterable v-model="upload.jobStyle" placeholder="请选择职业类别">
|
|
@@ -333,10 +312,34 @@
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
+ <el-col :span="24">
|
|
|
+ <el-form-item :label="'次' + '\u3000\u3000' + '数'" prop="detectionNumber">
|
|
|
+ <el-input
|
|
|
+ v-model="upload.detectionNumber"
|
|
|
+ placeholder="请输入次数"
|
|
|
+ min="0"
|
|
|
+ type="number"
|
|
|
+ @blur="nhkse"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ <!-- <el-col :span="12">
|
|
|
+ <el-form-item :label="'天' + '\u3000\u3000' + '数'" prop="detectionScope">
|
|
|
+ <el-input
|
|
|
+ v-model="upload.detectionScope"
|
|
|
+ placeholder="请输入天数"
|
|
|
+ min="0"
|
|
|
+ type="number"
|
|
|
+ @blur="nhksets"
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ </el-col> -->
|
|
|
</el-form>
|
|
|
</el-row>
|
|
|
<span>仅允许导入xls、xlsx格式文件。</span>
|
|
|
<el-link type="primary" :underline="false" style="font-size:12px;vertical-align: baseline; color: #00b385;" @click="importTemplate">下载模板</el-link>
|
|
|
+ <div v-if="nlsmeh" style="font-size:16px;vertical-align: baseline; color: red;margin-top: 10px;">正在导入中,请稍后,请勿进行操作......</div>
|
|
|
</div>
|
|
|
</el-upload>
|
|
|
<div slot="footer" class="dialog-footer">
|
|
@@ -348,10 +351,10 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import { listInfo, getInfo, delInfo, addInfo, updateInfo } from "@/api/system/info";
|
|
|
+import { listInfo, getInfo, delInfo, addInfo, updateInfo,listInfohs } from "@/api/system/info";
|
|
|
import { getToken } from "@/utils/auth";
|
|
|
export default {
|
|
|
- dicts: ['occupational_category', 'classification_population'],
|
|
|
+ dicts: ['occupational_category', 'classification_population','whether_abnormal'],
|
|
|
name: "Info",
|
|
|
data() {
|
|
|
return {
|
|
@@ -401,9 +404,6 @@ export default {
|
|
|
detectionNumber:[
|
|
|
{ required: true, message: "次数不能为空", trigger: "blur" }
|
|
|
],
|
|
|
- detectionScope:[
|
|
|
- { required: true, message: "天数不能为空", trigger: "blur" }
|
|
|
- ],
|
|
|
jobStyle:[
|
|
|
{ required: true, message: "职业类别不能为空", trigger: "blur" }
|
|
|
],
|
|
@@ -432,11 +432,29 @@ export default {
|
|
|
// 上传的地址
|
|
|
url: process.env.VUE_APP_BASE_API + "/system/info/importData"
|
|
|
},
|
|
|
- postOptions:[]
|
|
|
+ postOptions:[],
|
|
|
+ gettime:'',
|
|
|
+ nskeia:'',
|
|
|
+ rig:'right',
|
|
|
+ rigs:'left',
|
|
|
+ tableMaxHeight:300,
|
|
|
+ nlsmeh:false
|
|
|
};
|
|
|
},
|
|
|
created() {
|
|
|
this.getList();
|
|
|
+ this.getCurrentTime()
|
|
|
+ this.getLisths()
|
|
|
+ window.onresize = () => {
|
|
|
+ this.changeTableMaxHeight()
|
|
|
+ }
|
|
|
+ this.changeTableMaxHeight()
|
|
|
+ },
|
|
|
+ mounted() {
|
|
|
+ window.onresize = () => {
|
|
|
+ this.changeTableMaxHeight()
|
|
|
+ }
|
|
|
+ this.changeTableMaxHeight()
|
|
|
},
|
|
|
methods: {
|
|
|
/** 查询导入人员信息列表 */
|
|
@@ -448,6 +466,15 @@ export default {
|
|
|
this.loading = false;
|
|
|
});
|
|
|
},
|
|
|
+ /** 查询总核酸次数 */
|
|
|
+ getLisths() {
|
|
|
+ // this.loading = true;
|
|
|
+ listInfohs().then(response => {
|
|
|
+ this.nskeia = response.data;
|
|
|
+ // this.total = response.total;
|
|
|
+ // this.loading = false;
|
|
|
+ });
|
|
|
+ },
|
|
|
// 取消按钮
|
|
|
cancel() {
|
|
|
this.open = false;
|
|
@@ -535,7 +562,7 @@ export default {
|
|
|
/** 删除按钮操作 */
|
|
|
handleDelete(row) {
|
|
|
const ids = row.id || this.ids;
|
|
|
- this.$modal.confirm('是否确认删除导入人员信息编号为"' + ids + '"的数据项?').then(function() {
|
|
|
+ this.$modal.confirm('是否确认删除信息').then(function() {
|
|
|
return delInfo(ids);
|
|
|
}).then(() => {
|
|
|
this.getList();
|
|
@@ -550,30 +577,34 @@ export default {
|
|
|
},
|
|
|
/** 导入按钮操作 */
|
|
|
handleImport() {
|
|
|
- this.upload.title = "用户导入";
|
|
|
+ this.upload.title = "导入信息";
|
|
|
this.upload.open = true;
|
|
|
},
|
|
|
/** 下载模板操作 */
|
|
|
importTemplate() {
|
|
|
- // this.download('system/user/importTemplate', {
|
|
|
- // }, `user_template_${new Date().getTime()}.xlsx`)
|
|
|
+ window.open("https://yqfk.qs163.cn/muban/muban.xlsx")
|
|
|
},
|
|
|
// 文件上传中处理
|
|
|
handleFileUploadProgress(event, file, fileList) {
|
|
|
this.upload.isUploading = true;
|
|
|
+ this.nlsmeh = true
|
|
|
},
|
|
|
// 文件上传成功处理
|
|
|
handleFileSuccess(response, file, fileList) {
|
|
|
- this.upload.open = false;
|
|
|
- this.upload.isUploading = false;
|
|
|
- this.$refs.upload.clearFiles();
|
|
|
- this.upload.detectionNumber = null
|
|
|
- this.upload.startTime=null
|
|
|
- this.upload.endTime= null
|
|
|
- this.upload.jobStyle= null
|
|
|
- this.upload.focusCrowdStyle= null
|
|
|
+ // if(response.code == 200){
|
|
|
+ this.nlsmeh = false
|
|
|
+ this.upload.open = false;
|
|
|
+ this.upload.isUploading = false;
|
|
|
+ this.$refs.upload.clearFiles();
|
|
|
+ this.upload.detectionNumber = null
|
|
|
+ this.upload.startTime=null
|
|
|
+ this.upload.endTime= null
|
|
|
+ this.upload.jobStyle= null
|
|
|
+ this.upload.focusCrowdStyle= null
|
|
|
+
|
|
|
+ // }
|
|
|
this.$alert("<div style='overflow: auto;overflow-x: hidden;max-height: 70vh;padding: 10px 20px 0;'>" + response.msg + "</div>", "导入结果", { dangerouslyUseHTMLString: true });
|
|
|
- this.getList();
|
|
|
+ this.getList();
|
|
|
},
|
|
|
// 提交上传文件
|
|
|
submitFileForm() {
|
|
@@ -604,7 +635,35 @@ export default {
|
|
|
this.upload.endTime= null
|
|
|
this.upload.jobStyle= null
|
|
|
this.upload.focusCrowdStyle= null
|
|
|
- }
|
|
|
+ },
|
|
|
+ getCurrentTime() {
|
|
|
+ //获取当前时间并打印
|
|
|
+ var _this = this;
|
|
|
+ console.log(3)
|
|
|
+ let yy = new Date().getFullYear();
|
|
|
+ let mm = new Date().getMonth()+1;
|
|
|
+ let dd = new Date().getDate();
|
|
|
+ let hh = new Date().getHours();
|
|
|
+ let mf = new Date().getMinutes()<10 ? '0'+new Date().getMinutes() : new Date().getMinutes();
|
|
|
+ let ss = new Date().getSeconds()<10 ? '0'+new Date().getSeconds() : new Date().getSeconds();
|
|
|
+ _this.gettime = yy+'-'+mm+'-'+dd;
|
|
|
+ console.log(_this.gettime)
|
|
|
+ },
|
|
|
+ // 获取屏幕高度
|
|
|
+ showFilterForm () {
|
|
|
+ this.filterActive = !this.filterActive
|
|
|
+ this.changeTableMaxHeight()
|
|
|
+ },
|
|
|
+
|
|
|
+ changeTableMaxHeight () {
|
|
|
+ let height = document.body.offsetHeight // 网页可视区域高度
|
|
|
+ // if (this.filterActive) {
|
|
|
+ // this.tableMaxHeight = height - 320
|
|
|
+ // } else {
|
|
|
+ this.tableMaxHeight = height - 380
|
|
|
+ // }
|
|
|
+ console.log(height)
|
|
|
+ },
|
|
|
}
|
|
|
};
|
|
|
</script>
|
|
@@ -615,8 +674,17 @@ export default {
|
|
|
margin-bottom: 20px;
|
|
|
}
|
|
|
}
|
|
|
-.el-button--primary{
|
|
|
- background-color: #00b385 !important;
|
|
|
- border-color: #00b385 !important;
|
|
|
+.nkseydf{
|
|
|
+ .el-button--primary{
|
|
|
+ background-color: #00b385 !important;
|
|
|
+ border-color: #00b385 !important;
|
|
|
+ }
|
|
|
}
|
|
|
+.lndw{
|
|
|
+ color: red;
|
|
|
+}
|
|
|
+.heade_codfr{
|
|
|
+ color: #00b385;
|
|
|
+}
|
|
|
+
|
|
|
</style>
|