| | |
| | | <template> |
| | | <div> |
| | | <el-form :model="queryParams" ref="tableList" :inline="true" label-width="76px" style="margin-top: 10px"> |
| | | <el-form |
| | | :model="queryParams" |
| | | ref="tableList" |
| | | :inline="true" |
| | | label-width="76px" |
| | | style="margin-top: 10px" |
| | | > |
| | | <el-form-item label="姓名" prop="name"> |
| | | <el-input v-model="queryParams.name" style="width: 120px" placeholder="请输入姓名" clearable |
| | | @keyup.enter.native="handleQuery"></el-input> |
| | | <el-input |
| | | v-model="queryParams.name" |
| | | style="width: 120px" |
| | | placeholder="请输入姓名" |
| | | clearable |
| | | @keyup.enter.native="handleQuery" |
| | | ></el-input> |
| | | </el-form-item> |
| | | <el-form-item label="体检号" prop="tjNumber"> |
| | | <el-input ref="inputName" v-model="queryParams.tjNumber" style="width: 180px" placeholder="请输入体检号" clearable |
| | | @keyup.enter.native="submitForm" @blur="hb"></el-input> |
| | | <el-input |
| | | ref="inputName" |
| | | v-model="queryParams.tjNumber" |
| | | style="width: 180px" |
| | | placeholder="请输入体检号" |
| | | clearable |
| | | @keyup.enter.native="submitForm" |
| | | @blur="hb" |
| | | ></el-input> |
| | | </el-form-item> |
| | | <el-form-item label="体检时间" prop="tjTime"> |
| | | <el-date-picker v-model="startTime" type="datetimerange" align="right" :picker-options="pickerOptions" |
| | | style="width: 310px" start-placeholder="开始日期" end-placeholder="结束日期" :default-time="['00:00:00', '23:00:00']" |
| | | format="yyyy-MM-dd HH:mm" value-format="yyyy-MM-dd HH:mm" @change="dateChangebirthday1"> |
| | | </el-date-picker> </el-form-item> |
| | | <el-form-item label="单位名称" prop="tjCompName" style="margin-left: 20px;"> |
| | | <el-select :remote-method="getRemoteData" v-model="queryParams.tjCompName" value-key="drugManufacturerId" |
| | | style="width: 180px" remote filterable placeholder="请选择单位名称" clearable @change="searchSelect"> |
| | | <el-option v-for="dict in CompanyList" :key="dict.drugManufacturerId" :label="dict.cnName" :value="dict" /> |
| | | <el-date-picker |
| | | v-model="startTime" |
| | | type="datetimerange" |
| | | align="right" |
| | | :picker-options="pickerOptions" |
| | | style="width: 310px" |
| | | start-placeholder="开始日期" |
| | | end-placeholder="结束日期" |
| | | :default-time="['00:00:00', '23:00:00']" |
| | | format="yyyy-MM-dd HH:mm" |
| | | value-format="yyyy-MM-dd HH:mm" |
| | | @change="dateChangebirthday1" |
| | | > |
| | | </el-date-picker> |
| | | </el-form-item> |
| | | <el-form-item |
| | | label="单位名称" |
| | | prop="tjCompName" |
| | | style="margin-left: 20px" |
| | | > |
| | | <el-select |
| | | :remote-method="getRemoteData" |
| | | v-model="queryParams.tjCompName" |
| | | value-key="drugManufacturerId" |
| | | style="width: 180px" |
| | | remote |
| | | filterable |
| | | placeholder="请选择单位名称" |
| | | clearable |
| | | @change="searchSelect" |
| | | > |
| | | <el-option |
| | | v-for="dict in CompanyList" |
| | | :key="dict.drugManufacturerId" |
| | | :label="dict.cnName" |
| | | :value="dict" |
| | | /> |
| | | </el-select> |
| | | </el-form-item> |
| | | <el-form-item> |
| | | <el-button type="primary" size="mini" @click="submitForm" style="margin-right:15px;">搜索</el-button> |
| | | <el-button |
| | | type="primary" |
| | | size="mini" |
| | | @click="submitForm" |
| | | style="margin-right: 15px" |
| | | >搜索</el-button |
| | | > |
| | | <el-button size="mini" @click="resetQuery">重置</el-button> |
| | | </el-form-item> |
| | | </el-form> |
| | | |
| | | |
| | | <el-row :gutter="10" class="mb8" style="margin-left:14px ;"> |
| | | <el-row :gutter="10" class="mb8" style="margin-left: 14px"> |
| | | <el-col :span="1.5"> |
| | | <el-button type="primary" size="mini" @click="radioChange" >核收</el-button> |
| | | <el-button type="primary" size="mini" @click="radioChange" |
| | | >核收</el-button |
| | | > |
| | | </el-col> |
| | | </el-row> |
| | | |
| | | <template> |
| | | <el-table v-loading="loading" :data="checkList" ref="table" border @selection-change="handleSelectionChange" |
| | | style="margin: 20px; width: 98%"> |
| | | <el-table-column type="selection" width="40px" align="center" fixed="left" /> |
| | | <el-table |
| | | v-loading="loading" |
| | | :data="checkList" |
| | | ref="table" |
| | | border |
| | | @selection-change="handleSelectionChange" |
| | | style="margin: 20px; width: 98%" |
| | | > |
| | | <el-table-column |
| | | type="selection" |
| | | width="40px" |
| | | align="center" |
| | | fixed="left" |
| | | /> |
| | | <!-- <template slot="empty">数据正在加载中</template> --> |
| | | <el-table-column label="体检号" align="center" prop="tjNumber" :show-overflow-tooltip="true" width="160px" |
| | | fixed="left" /> |
| | | <el-table-column label="姓名" align="center" prop="cusName" :show-overflow-tooltip="true" width="100px" |
| | | fixed="left" /> |
| | | <el-table-column |
| | | label="体检号" |
| | | align="center" |
| | | prop="tjNumber" |
| | | :show-overflow-tooltip="true" |
| | | width="160px" |
| | | fixed="left" |
| | | /> |
| | | <el-table-column |
| | | label="姓名" |
| | | align="center" |
| | | prop="cusName" |
| | | :show-overflow-tooltip="true" |
| | | width="100px" |
| | | fixed="left" |
| | | /> |
| | | |
| | | <el-table-column label="性别" align="center" prop="cusSex" :show-overflow-tooltip="true" width="55px"> |
| | | <el-table-column |
| | | label="性别" |
| | | align="center" |
| | | prop="cusSex" |
| | | :show-overflow-tooltip="true" |
| | | width="55px" |
| | | > |
| | | <template slot-scope="scope"> |
| | | <span v-if="scope.row.cusSex == '0'">男</span> |
| | | <span v-if="scope.row.cusSex == '1'">女</span> |
| | |
| | | <span v-if="scope.row.cusSex == '9'">未说明性别</span> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="出生日期" align="center" prop="cusBrithday" :show-overflow-tooltip="true" width="110px" /> |
| | | <el-table-column label="电话" align="center" prop="cusPhone" :show-overflow-tooltip="true" width="130px" /> |
| | | <el-table-column |
| | | label="出生日期" |
| | | align="center" |
| | | prop="cusBrithday" |
| | | :show-overflow-tooltip="true" |
| | | width="110px" |
| | | /> |
| | | <el-table-column |
| | | label="电话" |
| | | align="center" |
| | | prop="cusPhone" |
| | | :show-overflow-tooltip="true" |
| | | width="130px" |
| | | /> |
| | | |
| | | <el-table-column label="体检时间" align="center" prop="tjTime" :show-overflow-tooltip="true" width="110px" /> |
| | | <el-table-column label="完成时间" align="center" prop="finishTime" :show-overflow-tooltip="true" width="160px" /> |
| | | <el-table-column label="状态" align="center" prop="tjStatus" :show-overflow-tooltip="true" width="50px"> |
| | | <el-table-column |
| | | label="体检时间" |
| | | align="center" |
| | | prop="tjTime" |
| | | :show-overflow-tooltip="true" |
| | | width="110px" |
| | | /> |
| | | <el-table-column |
| | | label="完成时间" |
| | | align="center" |
| | | prop="finishTime" |
| | | :show-overflow-tooltip="true" |
| | | width="160px" |
| | | /> |
| | | <el-table-column |
| | | label="状态" |
| | | align="center" |
| | | prop="tjStatus" |
| | | :show-overflow-tooltip="true" |
| | | width="50px" |
| | | > |
| | | <template slot-scope="scope"> |
| | | <span>{{ scope.row.tjStatus == "1" ? "已检" : "未检" }}</span> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="单位名称" align="center" prop="tjCompName" :show-overflow-tooltip="true" /> |
| | | <el-table-column |
| | | label="单位名称" |
| | | align="center" |
| | | prop="tjCompName" |
| | | :show-overflow-tooltip="true" |
| | | /> |
| | | </el-table> |
| | | |
| | | <div class="pag"> |
| | | <div class="pag1"> |
| | | <pagination v-show="total > 0" :total="total" :page.sync="queryParams.page" :limit.sync="queryParams.pageSize" |
| | | @pagination="getList" /> |
| | | <pagination |
| | | v-show="total > 0" |
| | | :total="total" |
| | | :page.sync="queryParams.page" |
| | | :limit.sync="queryParams.pageSize" |
| | | @pagination="getList" |
| | | /> |
| | | </div> |
| | | </div> |
| | | </template> |
| | |
| | | |
| | | |
| | | <script> |
| | | import { getcheckList, heXiaoByIds } from "@/api/doctor/checkAll"; |
| | | import { getBghsList, heXiaoByIds } from "@/api/doctor/checkAll"; |
| | | import { getCompany, queryCompany } from "@/api/team/tuanti"; |
| | | import ViewPdf from "@/components/ViewPdf"; |
| | | import { getNewDateList } from "@/api/hosp/order"; |
| | |
| | | |
| | | created() { |
| | | // this.getNowTime(); |
| | | |
| | | |
| | | this.getdate(); |
| | | }, |
| | | |
| | |
| | | } |
| | | |
| | | // 页面数据 |
| | | getcheckList(this.queryParams).then((response) => { |
| | | getBghsList(this.queryParams).then((response) => { |
| | | if (response.code == 200) { |
| | | this.loading = false; |
| | | if (response.data) { |
| | |
| | | this.checkList = []; |
| | | } |
| | | } |
| | | |
| | | }), |
| | | // 获取单位信息集合 |
| | | getCompany(this.queryParam).then((response) => { |
| | |
| | | |
| | | // 单选按钮 |
| | | radioChange() { |
| | | this.loading = true; |
| | | heXiaoByIds(this.orderIds).then((response) => { |
| | | if(response.code == 200){ |
| | | if (response.code == 200) { |
| | | this.$modal.msgSuccess("报告已核收!请前往报告打印页面查看!"); |
| | | this.getList(); |
| | | } |
| | | |
| | | }); |
| | | }, |
| | | |
| | |
| | | dateChangebirthday1(val) { |
| | | this.startTime = val; |
| | | }, |
| | | hb(){ |
| | | hb() { |
| | | console.log(this.queryParams.tjNumber); |
| | | if (this.queryParams.tjNumber != "") { |
| | | if (this.queryParams.tjNumber != "") { |
| | | this.submitForm(); |
| | | } |
| | | }, |
| | |
| | | } |
| | | |
| | | // 页面数据 |
| | | getcheckList(this.queryParams).then((response) => { |
| | | getBghsList(this.queryParams).then((response) => { |
| | | if (response.data.customers != null) { |
| | | this.checkList = response.data.customers; |
| | | this.checkList.forEach((item) => { |
| | |
| | | }, |
| | | // 重置 |
| | | resetQuery() { |
| | | this.startTime=[] |
| | | this.startTime = []; |
| | | this.resetForm("tableList"); |
| | | this.submitForm(); |
| | | }, |