123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690 |
- <template>
- <div class="app-container">
- <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
- <el-row>
- <el-col :span="8">
- <el-form-item label="身份证号" prop="idCard">
- <el-input
- v-model="queryParams.idCard"
- placeholder="请输入身份证号码"
- style="width: 100%;"
- clearable
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <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-form-item label="采集时间" prop="nucleicCollectTime">
- <el-date-picker clearable
- v-model="queryParams.nucleicCollectTime"
- 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="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">
- <el-col :span="8">
- <el-form-item :label="'姓' + '\u3000\u3000' + '名'" prop="name">
- <el-input
- v-model="queryParams.name"
- placeholder="请输入姓名"
- style="width: 100%;"
- clearable
- @keyup.enter.native="handleQuery"
- />
- </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
- v-model="queryParams.collectPlace"
- placeholder="请输入采集地点"
- clearable
- style="width: 108%;"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- </el-col>
- </el-col>
- <el-col :span="8">
- <el-form-item label="联系号码" prop="phoneNum">
- <el-input
- v-model="queryParams.phoneNum"
- placeholder="请输入联系号码"
- style="width: 100%;"
- clearable
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="结束时间" prop="endTime">
- <el-date-picker clearable
- v-model="queryParams.endTime"
- 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="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>
- <el-row :gutter="10" class="mb8">
- <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
- type="info"
- plain
- icon="el-icon-upload2"
- size="mini"
- @click="handleImport"
- v-hasPermi="['system:info:import']"
- >导入</el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="warning"
- plain
- icon="el-icon-download"
- size="mini"
- @click="handleExport"
- v-hasPermi="['system:info:export']"
- >导出</el-button>
- </el-col>
- <!-- <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar> -->
- </el-row>
- <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="157">
- <template slot-scope="scope">
- <span v-html="scope.row.nucleicCollectTime"></span>
- </template>
- </el-table-column>
- <el-table-column label="核酸结果时间" align="center" prop="nucleicResultsTime" width="157">
- <template slot-scope="scope">
- <span v-html="scope.row.nucleicResultsTime"></span>
- </template>
- </el-table-column>
- <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" 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="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
- v-show="total>0"
- :total="total"
- :page.sync="queryParams.pageNum"
- :limit.sync="queryParams.pageSize"
- @pagination="getList"
- />
- <!-- 用户导入对话框 -->
- <el-dialog :title="upload.title" :visible.sync="upload.open" width="600px" append-to-body>
- <el-upload
- ref="upload"
- :limit="1"
- accept=".xlsx, .xls"
- :headers="upload.headers"
- :action="upload.url"
- :disabled="upload.isUploading"
- :on-progress="handleFileUploadProgress"
- :on-success="handleFileSuccess"
- :auto-upload="false"
- :data="{focusCrowdStyle:upload.focusCrowdStyle,jobStyle:upload.jobStyle,startTime:upload.startTime,endTime:upload.endTime,detectionNumber:upload.detectionNumber,detectionScope:upload.detectionScope}"
- drag
- class="nhkiu"
- >
- <i class="el-icon-upload"></i>
- <div class="el-upload__text">将文件拖到此处,或<em style="color: #00b385;">点击上传</em></div>
- <div class="el-upload__tip text-center" slot="tip">
- <div class="el-upload__tip" slot="tip">
- <!-- <el-checkbox v-model="upload.updateSupport" /> 是否更新已经存在的用户数据 -->
- </div>
- <el-row>
- <el-form ref="form" :model="upload" :rules="rules" label-width="80px">
- <el-col :span="12">
- <el-form-item label="开始时间" prop="startTime">
- <el-date-picker clearable
- v-model="upload.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="12">
- <el-form-item label="结束时间" prop="endTime">
- <el-date-picker clearable
- v-model="upload.endTime"
- 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="12">
- <el-form-item label="职业类别" prop="jobStyle">
- <el-select filterable v-model="upload.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="12">
- <el-form-item label="人群分类" prop="focusCrowdStyle">
- <el-select filterable v-model="upload.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="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">
- <el-button type="primary" @click="submitFileForm">确 定</el-button>
- <el-button @click="nlmse">取 消</el-button>
- </div>
- </el-dialog>
- </div>
- </template>
- <script>
- import { listInfo, getInfo, delInfo, addInfo, updateInfo,listInfohs } from "@/api/system/info";
- import { getToken } from "@/utils/auth";
- export default {
- dicts: ['occupational_category', 'classification_population','whether_abnormal'],
- name: "Info",
- data() {
- return {
- // 遮罩层
- loading: true,
- // 选中数组
- ids: [],
- // 非单个禁用
- single: true,
- // 非多个禁用
- multiple: true,
- // 显示搜索条件
- showSearch: true,
- // 总条数
- total: 0,
- // 导入人员信息表格数据
- infoList: [],
- // 弹出层标题
- title: "",
- // 是否显示弹出层
- open: false,
- // 查询参数
- queryParams: {
- pageNum: 1,
- pageSize: 10,
- name: null,
- idCard: null,
- phoneNum: null,
- nucleicCollectTime: null,
- nucleicResultsTime: null,
- jobStyle: null,
- focusCrowdStyle: null,
- detectionFrequency: null,
- startTime: null,
- endTime: null,
- },
- // 表单参数
- form: {},
- // 表单校验
- rules: {
- startTime: [
- { required: true, message: "开始时间不能为空", trigger: "blur" }
- ],
- endTime:[
- { required: true, message: "结束时间不能为空", trigger: "blur" }
- ],
- detectionNumber:[
- { required: true, message: "次数不能为空", trigger: "blur" }
- ],
- jobStyle:[
- { required: true, message: "职业类别不能为空", trigger: "blur" }
- ],
- focusCrowdStyle:[
- { required: true, message: "人群分类不能为空", trigger: "blur" }
- ]
- },
- // 用户导入参数
- upload: {
- // 是否显示弹出层(用户导入)
- open: false,
- // 弹出层标题(用户导入)
- title: "",
- // 是否禁用上传
- isUploading: false,
- // 是否更新已经存在的用户数据
- detectionNumber:null,
- detectionScope:null,
- startTime: null,
- endTime: null,
- jobStyle:null,
- focusCrowdStyle:null,
- updateSupport: 0,
- // 设置上传的请求头部
- headers: { Authorization: "Bearer " + getToken() },
- // 上传的地址
- url: process.env.VUE_APP_BASE_API + "/system/info/importData"
- },
- 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: {
- /** 查询导入人员信息列表 */
- getList() {
- this.loading = true;
- listInfo(this.queryParams).then(response => {
- this.infoList = response.rows;
- this.total = response.total;
- 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;
- this.reset();
- },
- // 表单重置
- reset() {
- this.form = {
- id: null,
- name: null,
- gender: null,
- age: null,
- idCard: null,
- phoneNum: null,
- nucleicCollectTime: null,
- nucleicResultsTime: null,
- jobStyle: null,
- focusCrowdStyle: null,
- detectionFrequency: null,
- detectionNumber: null,
- detectionScope: null,
- deptName: null,
- startTime: null,
- endTime: null,
- createBy: null,
- createTime: null,
- updateBy: null,
- updateTime: null,
- remark: null
- };
- this.resetForm("form");
- },
- /** 搜索按钮操作 */
- handleQuery() {
- this.queryParams.pageNum = 1;
- this.getList();
- },
- /** 重置按钮操作 */
- resetQuery() {
- this.resetForm("queryForm");
- this.handleQuery();
- },
- // 多选框选中数据
- handleSelectionChange(selection) {
- this.ids = selection.map(item => item.id)
- this.single = selection.length!==1
- this.multiple = !selection.length
- },
- /** 新增按钮操作 */
- handleAdd() {
- this.reset();
- this.open = true;
- this.title = "添加导入人员信息";
- },
- /** 修改按钮操作 */
- handleUpdate(row) {
- this.reset();
- const id = row.id || this.ids
- getInfo(id).then(response => {
- this.form = response.data;
- this.open = true;
- this.title = "修改导入人员信息";
- });
- },
- /** 提交按钮 */
- submitForm() {
- this.$refs["form"].validate(valid => {
- if (valid) {
- if (this.form.id != null) {
- updateInfo(this.form).then(response => {
- this.$modal.msgSuccess("修改成功");
- this.open = false;
- this.getList();
- });
- } else {
- addInfo(this.form).then(response => {
- this.$modal.msgSuccess("新增成功");
- this.open = false;
- this.getList();
- });
- }
- }
- });
- },
- /** 删除按钮操作 */
- handleDelete(row) {
- const ids = row.id || this.ids;
- this.$modal.confirm('是否确认删除信息').then(function() {
- return delInfo(ids);
- }).then(() => {
- this.getList();
- this.$modal.msgSuccess("删除成功");
- }).catch(() => {});
- },
- /** 导出按钮操作 */
- handleExport() {
- this.download('system/info/export', {
- ...this.queryParams
- }, `info_${new Date().getTime()}.xlsx`)
- },
- /** 导入按钮操作 */
- handleImport() {
- this.upload.title = "导入信息";
- this.upload.open = true;
- },
- /** 下载模板操作 */
- importTemplate() {
- window.open("https://yqfk.qs163.cn/muban/muban.xlsx")
- },
- // 文件上传中处理
- handleFileUploadProgress(event, file, fileList) {
- this.upload.isUploading = true;
- this.nlsmeh = true
- },
- // 文件上传成功处理
- handleFileSuccess(response, file, fileList) {
- // 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();
- },
- // 提交上传文件
- submitFileForm() {
- this.$refs["form"].validate(valid => {
- if (valid) {
- this.$refs.upload.submit();
- }
- });
- },
- // 次数失去焦点事件
- nhkse(value){
- console.log(this.upload.detectionNumber)
- if(this.upload.detectionNumber < 0){
- this.upload.detectionNumber = 0
- }
- },
- // 天数失去焦点事件
- nhksets(){
- if(this.upload.detectionScope < 0){
- this.upload.detectionScope = 0
- }
- },
- // 取消
- nlmse(){
- this.upload.open = false
- this.upload.detectionNumber = null
- this.upload.startTime=null
- 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>
- <style type="text/css" lang="scss">
- .nhkiu{
- .el-upload-dragger{
- width: 560px !important;
- margin-bottom: 20px;
- }
- }
- .nkseydf{
- .el-button--primary{
- background-color: #00b385 !important;
- border-color: #00b385 !important;
- }
- }
- .lndw{
- color: red;
- }
- .heade_codfr{
- color: #00b385;
- }
- </style>
|