123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532 |
- <template>
- <div class="app-container">
- <el-form :model="queryParams" ref="queryForm" :rules="rules" size="small" :inline="true" v-show="showSearch" label-width="80px">
- <el-row>
- <el-col :span="8">
- <el-form-item label="身份证号" prop="idCard">
- <el-input
- v-model="queryParams.idCard"
- placeholder="请输入身份证号码"
- style="width: 108%;"
- 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="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="24">
- <el-col :span="8">
- <el-form-item :label="'次' + '\u3000\u3000' + '数'" prop="detectionNumber">
- <el-input
- v-model="queryParams.detectionNumber"
- placeholder="请输入次数"
- style="width: 114%;"
- min="0"
- type="number"
- @blur="nhkse"
- @keyup.enter.native="handleQuery"
- />
- </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="handleQuerys">搜索</el-button>
-
- <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
- </el-form-item>
- </el-col>
- </el-col>
- </el-row>
- </el-form>
- <el-row :gutter="10" class="mb8">
-
- {{gettime}}{{nskeia}}
- <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>
-
- </el-row>
- <el-table v-loading="loading" v-if="mjue" :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="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>
- <div v-if="!mjue" style="text-align: center;">正在加载数据......</div>
- </div>
- </template>
- <script>
- import { listInfo, getInfo, delInfo, addInfo, updateInfo,listInfohs } from "@/api/system/batch";
- 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: {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- },
-
- 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:'',
- mjue:true,
- rig:'right',
- rigs:'left',
- tableMaxHeight:300,
- };
- },
- created() {
-
-
- this.getLisths()
- this.loading = false;
- window.onresize = () => {
- this.changeTableMaxHeight()
- }
- this.changeTableMaxHeight()
- },
- mounted() {
- window.onresize = () => {
- this.changeTableMaxHeight()
- }
- this.changeTableMaxHeight()
- },
- methods: {
-
- getList() {
- this.loading = true;
- this.mjue = false
- listInfo(this.queryParams).then(response => {
- this.infoList = response.data;
- this.mjue = true
-
- this.loading = false;
- });
- },
-
- getLisths() {
-
- this.loading = true;
- this.mjue = false
- listInfohs(this.queryParams).then(response => {
- this.infoList = response.rows;
- this.mjue = true
-
- 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();
- },
-
- handleQuerys(){
- this.queryParams.pageNum = 1;
- this.getLisths();
- },
-
- resetQuery() {
- this.resetForm("queryForm");
- this.handleQuerys();
- },
-
- 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('是否确认删除导入人员信息编号为"' + ids + '"的数据项?').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/moban/模板.xlsx")
- },
-
- handleFileUploadProgress(event, file, fileList) {
- this.upload.isUploading = 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
- 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
-
-
-
- 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>
|