2022-09-20 17:51:42 +08:00
|
|
|
<template>
|
|
|
|
|
<div class="app-container">
|
|
|
|
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
2022-09-21 10:53:50 +08:00
|
|
|
<el-form-item label="所属区域" prop="areaCode">
|
2022-09-20 17:51:42 +08:00
|
|
|
<el-select
|
2022-09-21 10:53:50 +08:00
|
|
|
v-model="queryParams.province"
|
2022-09-20 17:51:42 +08:00
|
|
|
clearable
|
|
|
|
|
placeholder="请选择省"
|
|
|
|
|
>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in arealist"
|
|
|
|
|
:key="item.id"
|
|
|
|
|
:label="item.areaName"
|
|
|
|
|
:value="item.id"
|
|
|
|
|
@click.native="province(item)"
|
|
|
|
|
>
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
2022-09-21 10:53:50 +08:00
|
|
|
|
2022-09-20 17:51:42 +08:00
|
|
|
<el-select
|
2022-09-21 10:53:50 +08:00
|
|
|
v-model="queryParams.city"
|
|
|
|
|
clearable
|
|
|
|
|
placeholder="请选择市"
|
|
|
|
|
style="margin-left: 10px"
|
|
|
|
|
>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in citylist"
|
|
|
|
|
:key="item.areaCode"
|
|
|
|
|
:label="item.areaName"
|
|
|
|
|
:value="item.areaCode"
|
|
|
|
|
@click.native="clickcity(item)"
|
2022-09-20 17:51:42 +08:00
|
|
|
>
|
2022-09-21 10:53:50 +08:00
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
<el-select
|
|
|
|
|
v-model="queryParams.area"
|
|
|
|
|
clearable
|
|
|
|
|
placeholder="请选择区"
|
|
|
|
|
style="margin-left: 10px"
|
|
|
|
|
>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in arealists"
|
|
|
|
|
:key="item.areaCode"
|
|
|
|
|
:label="item.areaName"
|
|
|
|
|
:value="item.areaCode"
|
|
|
|
|
@click.native="clickarea(item)"
|
2022-09-20 17:51:42 +08:00
|
|
|
>
|
2022-09-21 10:53:50 +08:00
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
<el-select
|
|
|
|
|
v-model="queryParams.areaCode"
|
|
|
|
|
clearable
|
|
|
|
|
placeholder="请选择街道"
|
|
|
|
|
style="margin-left: 10px"
|
|
|
|
|
>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in streetlist"
|
|
|
|
|
:key="item.areaCode"
|
|
|
|
|
:label="item.areaName"
|
|
|
|
|
:value="item.areaCode"
|
|
|
|
|
@click.native="clickstreet(item)"
|
2022-09-20 17:51:42 +08:00
|
|
|
>
|
2022-09-21 10:53:50 +08:00
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
2022-09-20 17:51:42 +08:00
|
|
|
</el-form-item>
|
|
|
|
|
|
2022-09-21 10:53:50 +08:00
|
|
|
|
2022-09-20 17:51:42 +08:00
|
|
|
<el-form-item label="居住小区" prop="communityAliasName">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="queryParams.communityAliasName"
|
|
|
|
|
placeholder="请输入居住小区"
|
|
|
|
|
clearable
|
|
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
|
|
/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="姓名" prop="patientName">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="queryParams.patientName"
|
|
|
|
|
placeholder="请输入姓名"
|
|
|
|
|
clearable
|
|
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
|
|
/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<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="1.5">
|
|
|
|
|
<el-button
|
|
|
|
|
type="primary"
|
|
|
|
|
plain
|
|
|
|
|
icon="el-icon-plus"
|
|
|
|
|
size="mini"
|
|
|
|
|
@click="handleAdd"
|
|
|
|
|
v-hasPermi="['system:patientArchives:add']"
|
|
|
|
|
>新增</el-button>
|
|
|
|
|
</el-col> -->
|
|
|
|
|
<el-col :span="1.5">
|
|
|
|
|
<el-button
|
|
|
|
|
type="success"
|
|
|
|
|
plain
|
|
|
|
|
icon="el-icon-edit"
|
|
|
|
|
size="mini"
|
|
|
|
|
:disabled="single"
|
|
|
|
|
@click="handleUpdate"
|
|
|
|
|
v-hasPermi="['system:patientArchives:edit']"
|
|
|
|
|
>修改</el-button>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="1.5">
|
|
|
|
|
<el-button
|
|
|
|
|
type="danger"
|
|
|
|
|
plain
|
|
|
|
|
icon="el-icon-delete"
|
|
|
|
|
size="mini"
|
|
|
|
|
:disabled="multiple"
|
|
|
|
|
@click="handleDelete"
|
|
|
|
|
v-hasPermi="['system:patientArchives:remove']"
|
|
|
|
|
>删除</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:patientArchives:export']"
|
|
|
|
|
>导出</el-button>
|
|
|
|
|
</el-col> -->
|
|
|
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
<el-table v-loading="loading" :data="patientArchivesList" @selection-change="handleSelectionChange">
|
|
|
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
|
|
|
<el-table-column label="姓名" align="center" prop="patientName" />
|
|
|
|
|
<el-table-column label="所属区域" align="center" prop="areaName" />
|
|
|
|
|
<el-table-column label="居住小区" align="center" prop="communityAliasName" />
|
|
|
|
|
<el-table-column label="身份证号" align="center" prop="cardNo" />
|
|
|
|
|
<el-table-column label="联系电话" align="center" prop="phone" />
|
|
|
|
|
<el-table-column label="居住地址" align="center" prop="address" />
|
|
|
|
|
<el-table-column label="创建人" align="center" prop="createBy" />
|
|
|
|
|
<el-table-column label="创建时间" align="center" prop="createTime" />
|
|
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button
|
|
|
|
|
size="mini"
|
|
|
|
|
type="text"
|
|
|
|
|
icon="el-icon-edit"
|
|
|
|
|
@click="handleUpdate(scope.row)"
|
|
|
|
|
v-hasPermi="['system:patientArchives:edit']"
|
|
|
|
|
>修改</el-button>
|
|
|
|
|
<el-button
|
|
|
|
|
size="mini"
|
|
|
|
|
type="text"
|
|
|
|
|
icon="el-icon-delete"
|
|
|
|
|
@click="handleDelete(scope.row)"
|
|
|
|
|
v-hasPermi="['system:patientArchives: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="title" :visible.sync="open" width="1018px" append-to-body >
|
|
|
|
|
<el-form ref="form" :model="form" :rules="rules" label-width="110px" :inline="true">
|
|
|
|
|
<el-form-item label="姓名" prop="patientName">
|
|
|
|
|
<el-input v-model="form.patientName" placeholder="请输入姓名" :disabled="true"/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="所属区域" prop="areaName">
|
|
|
|
|
<el-input v-model="form.areaName" placeholder="请输入所属区域" :disabled="true"/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="居住小区" prop="communityAliasName">
|
2022-09-20 18:11:18 +08:00
|
|
|
<el-input v-model="form.communityAliasName" placeholder="请输入居住小区" maxlength="100"/>
|
2022-09-20 17:51:42 +08:00
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="客户编号" prop="patientCode">
|
|
|
|
|
<el-input v-model="form.patientCode" placeholder="请输入客户编号" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="客户姓名" prop="patientName">
|
2022-09-20 18:11:18 +08:00
|
|
|
<el-input v-model="form.patientName" placeholder="请输入客户姓名" maxlength="20"/>
|
2022-09-20 17:51:42 +08:00
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="身份证号" prop="cardNo">
|
2022-09-20 18:11:18 +08:00
|
|
|
<el-input v-model="form.cardNo" placeholder="请输入身份证号" maxlength="18"/>
|
2022-09-20 17:51:42 +08:00
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="联系电话" prop="phone">
|
2022-09-20 18:11:18 +08:00
|
|
|
<el-input v-model="form.phone" placeholder="请输入手机号码" maxlength="11"/>
|
2022-09-20 17:51:42 +08:00
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="居住地址" prop="address">
|
2022-09-20 18:11:18 +08:00
|
|
|
<el-input v-model="form.address" placeholder="请输入居住地址" maxlength="100"/>
|
2022-09-20 17:51:42 +08:00
|
|
|
</el-form-item>
|
2022-09-21 10:53:50 +08:00
|
|
|
<el-form-item label="紧急联系人" prop="urgentContactName" >
|
2022-09-20 18:11:18 +08:00
|
|
|
<el-input v-model="form.urgentContactName" placeholder="请输入紧急联系人名称" maxlength="20"/>
|
2022-09-20 17:51:42 +08:00
|
|
|
</el-form-item>
|
2022-09-21 10:53:50 +08:00
|
|
|
<el-form-item label="紧急联系电话" prop="urgentContactPhone" label-width="80" style="margin-left:15px">
|
2022-09-20 18:11:18 +08:00
|
|
|
<el-input v-model="form.urgentContactPhone" placeholder="请输入紧急联系人电话" maxlength="11"/>
|
2022-09-20 17:51:42 +08:00
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="居住住址经度" prop="homeLongitude">
|
2022-09-20 18:11:18 +08:00
|
|
|
<el-input v-model="form.homeLongitude" placeholder="请输入住址经度" maxlength="20"/>
|
2022-09-20 17:51:42 +08:00
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="居住住址纬度" prop="homeLatitude">
|
2022-09-20 18:11:18 +08:00
|
|
|
<el-input v-model="form.homeLatitude" placeholder="请输入住址纬度" maxlength="11"/>
|
2022-09-20 17:51:42 +08:00
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="头像" prop="headPictureUrl">
|
|
|
|
|
<!-- <img src="/profile/avatar/2022/09/08/1662624067718_20220908160250A001.jpg" alt=""> -->
|
|
|
|
|
<img :src="baseUrl + form.headPictureUrl" style="width: 500px;height: 400px">
|
|
|
|
|
<img slot="reference" :src="baseUrl + form.headPictureUrl" style="width: 200px;height: 150px">
|
|
|
|
|
|
|
|
|
|
<!-- <el-input v-model="form.headPictureUrl" placeholder="请输入个人头像地址" /> -->
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
|
|
|
|
|
|
|
|
|
<div slot="footer" class="dialog-footer" style="margin-right:40%">
|
|
|
|
|
<el-button type="primary" @click="submitForm">确 定</el-button>
|
|
|
|
|
<el-button @click="cancel">取 消</el-button>
|
|
|
|
|
</div>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import { listPatientArchives, getPatientArchives, delPatientArchives, addPatientArchives, updatePatientArchives,FirstLevel,SecondaryLevelInfo} from "@/api/system/patientArchives";
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
name: "PatientArchives",
|
|
|
|
|
data() {
|
2022-09-21 12:55:51 +08:00
|
|
|
// 验证手机号的规则
|
|
|
|
|
var checkMobile = (rule, value, cb) => {
|
|
|
|
|
// 验证手机号的正则表达式
|
|
|
|
|
const regMobile =
|
|
|
|
|
/^(0|86|17951)?(13[0-9]|15[012356789]|17[678]|18[0-9]|14[57]|19[0-9])[0-9]{8}$/;
|
|
|
|
|
if (regMobile.test(value)) {
|
|
|
|
|
return cb();
|
|
|
|
|
}
|
|
|
|
|
cb(new Error("请输入正确的联系电话"));
|
|
|
|
|
};
|
|
|
|
|
var checkMobile2 = (rule, value, cb) => {
|
|
|
|
|
// 验证手机号的正则表达式
|
|
|
|
|
const regMobile =
|
|
|
|
|
/^(0|86|17951)?(13[0-9]|15[012356789]|17[678]|18[0-9]|14[57]|19[0-9])[0-9]{8}$/;
|
|
|
|
|
if (regMobile.test(value)) {
|
|
|
|
|
return cb();
|
|
|
|
|
}
|
|
|
|
|
cb(new Error("请输入正确的紧急联系电话"));
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
//验证身份证
|
|
|
|
|
var isCardId = (rule, value, callback) => {
|
|
|
|
|
if (!value) {
|
|
|
|
|
return new Error("请输入身份证号)");
|
|
|
|
|
} else {
|
|
|
|
|
const reg =
|
|
|
|
|
/^\d{6}(18|19|20)?\d{2}(0[1-9]|1[0-2])(([0-2][1-9])|10|20|30|31)\d{3}(\d|X|x)$/;
|
|
|
|
|
const card = reg.test(value);
|
|
|
|
|
if (!card) {
|
|
|
|
|
callback(new Error("身份证号格式有误!"));
|
|
|
|
|
} else {
|
|
|
|
|
callback();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
2022-09-20 17:51:42 +08:00
|
|
|
return {
|
|
|
|
|
baseUrl:"http://192.168.16.85:8080",
|
|
|
|
|
// 遮罩层
|
|
|
|
|
loading: true,
|
|
|
|
|
// 选中数组
|
|
|
|
|
ids: [],
|
|
|
|
|
// 非单个禁用
|
|
|
|
|
single: true,
|
|
|
|
|
// 非多个禁用
|
|
|
|
|
multiple: true,
|
|
|
|
|
// 显示搜索条件
|
|
|
|
|
showSearch: true,
|
|
|
|
|
// 总条数
|
|
|
|
|
total: 0,
|
|
|
|
|
total2:0,
|
|
|
|
|
total3:0,
|
|
|
|
|
value3: "",
|
|
|
|
|
value2: "",
|
|
|
|
|
value1: "",
|
|
|
|
|
value: "",
|
|
|
|
|
// 被护理人基本信息表格数据
|
|
|
|
|
patientArchivesList: [],
|
|
|
|
|
// 所属区域
|
|
|
|
|
arealist:[],
|
|
|
|
|
// 查询市
|
|
|
|
|
SecondaryLevelInfolist:[],
|
|
|
|
|
|
|
|
|
|
citylist: [],
|
|
|
|
|
arealists:[],
|
|
|
|
|
streetlist:[],
|
2022-09-21 10:53:50 +08:00
|
|
|
|
|
|
|
|
city: "",
|
|
|
|
|
area: "",
|
|
|
|
|
areaCode: "",
|
2022-09-20 17:51:42 +08:00
|
|
|
// 弹出层标题
|
|
|
|
|
title: "",
|
|
|
|
|
// 是否显示弹出层
|
|
|
|
|
open: false,
|
|
|
|
|
// 查询参数
|
|
|
|
|
queryParams: {
|
|
|
|
|
pageNum: 1,
|
|
|
|
|
pageSize: 10,
|
|
|
|
|
communityCode: null,
|
|
|
|
|
areaCode: null,
|
|
|
|
|
patientCode: null,
|
|
|
|
|
patientName: null,
|
|
|
|
|
cardNo: null,
|
|
|
|
|
userId: null,
|
|
|
|
|
unionid: null,
|
|
|
|
|
openid: null,
|
|
|
|
|
phone: null,
|
|
|
|
|
address: null,
|
|
|
|
|
urgentContactName: null,
|
|
|
|
|
urgentContactPhone: null,
|
|
|
|
|
homeLongitude: null,
|
|
|
|
|
homeLatitude: null,
|
|
|
|
|
headPictureUrl: null,
|
|
|
|
|
},
|
|
|
|
|
getProvincequeryParams: {
|
|
|
|
|
pageNum: 1,
|
|
|
|
|
pageSize: 10,
|
|
|
|
|
},
|
|
|
|
|
SecondaryLevelInfoqueryParams: {
|
|
|
|
|
pageNum: 1,
|
|
|
|
|
pageSize: 10,
|
|
|
|
|
id:null,
|
|
|
|
|
},
|
|
|
|
|
// 表单参数
|
|
|
|
|
form: {},
|
|
|
|
|
// 表单校验
|
|
|
|
|
rules: {
|
|
|
|
|
patientName: [
|
|
|
|
|
{ required: true, message: "姓名不能为空", trigger: "blur" }
|
|
|
|
|
],
|
|
|
|
|
areaName: [
|
|
|
|
|
{ required: true, message: "所属区域不能为空", trigger: "blur" }
|
|
|
|
|
],
|
|
|
|
|
communityAliasName: [
|
|
|
|
|
{ required: true, message: "居住不能为空", trigger: "blur" }
|
|
|
|
|
],
|
|
|
|
|
patientCode: [
|
|
|
|
|
{ required: true, message: "客户编号不能为空", trigger: "blur" }
|
|
|
|
|
],
|
2022-09-21 10:53:50 +08:00
|
|
|
patientName: [
|
2022-09-20 17:51:42 +08:00
|
|
|
{ required: true, message: "客户姓名不能为空", trigger: "blur" }
|
|
|
|
|
],
|
|
|
|
|
cardNo: [
|
2022-09-21 12:55:51 +08:00
|
|
|
{ required: true,validator: isCardId, message: "", trigger: "blur" }
|
2022-09-20 17:51:42 +08:00
|
|
|
],
|
|
|
|
|
phone: [
|
2022-09-21 12:55:51 +08:00
|
|
|
{ required: true,validator: checkMobile, message: "", trigger: "blur", }
|
2022-09-20 17:51:42 +08:00
|
|
|
],
|
|
|
|
|
address: [
|
|
|
|
|
{ required: true, message: "居住地址不能为空", trigger: "blur" }
|
|
|
|
|
],
|
2022-09-21 10:53:50 +08:00
|
|
|
// urgentContactName: [
|
|
|
|
|
// { required: true, message: "紧急联系人不能为空", trigger: "blur" }
|
|
|
|
|
// ],
|
2022-09-21 12:55:51 +08:00
|
|
|
urgentContactPhone: [
|
|
|
|
|
{ validator: checkMobile2,message: "", trigger: "blur" }
|
|
|
|
|
],
|
2022-09-21 10:53:50 +08:00
|
|
|
// homeLongitude: [
|
|
|
|
|
// { required: true, message: "居住地址经度不能为空", trigger: "blur" }
|
|
|
|
|
// ],
|
|
|
|
|
// homeLatitude: [
|
|
|
|
|
// { required: true, message: "居住地址维度不能为空", trigger: "blur" }
|
|
|
|
|
// ],
|
|
|
|
|
// headPictureUrl: [
|
|
|
|
|
// { required: true, message: "头像不能为空", trigger: "blur" }
|
|
|
|
|
// ],
|
2022-09-20 17:51:42 +08:00
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
created() {
|
|
|
|
|
this.getList();
|
|
|
|
|
this.Provincelist();
|
|
|
|
|
// this.areas();
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
// 查询省事件
|
|
|
|
|
province(item){
|
|
|
|
|
console.log(item)
|
2022-09-21 10:53:50 +08:00
|
|
|
this.queryParams.city = "";
|
|
|
|
|
this.queryParams.area = "";
|
|
|
|
|
this.queryParams.areaCode = "";
|
2022-09-20 17:51:42 +08:00
|
|
|
this.value1 = "";
|
|
|
|
|
this.value2 = "";
|
|
|
|
|
this.value3 = "";
|
|
|
|
|
SecondaryLevelInfo(item.id).then((res) => {
|
|
|
|
|
console.log(res);
|
|
|
|
|
this.SecondaryLevelInfolist = res.data;
|
|
|
|
|
// console.log(this.SecondaryLevelInfolist);
|
|
|
|
|
this.citylist = res.data;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
// 点击市
|
|
|
|
|
clickcity(item) {
|
2022-09-21 10:53:50 +08:00
|
|
|
this.queryParams.area = "";
|
|
|
|
|
this.queryParams.areaCode = "";
|
2022-09-20 17:51:42 +08:00
|
|
|
this.value2 = "";
|
|
|
|
|
this.value3 = "";
|
|
|
|
|
console.log(item);
|
|
|
|
|
SecondaryLevelInfo(item.id).then((res) => {
|
|
|
|
|
console.log(res);
|
|
|
|
|
this.arealists = res.data;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
//点击区县城
|
|
|
|
|
clickarea(item) {
|
|
|
|
|
this.value3 = "";
|
|
|
|
|
console.log(item);
|
|
|
|
|
SecondaryLevelInfo(item.id).then((res) => {
|
|
|
|
|
console.log(res);
|
|
|
|
|
this.streetlist = res.data;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
//点击街道
|
|
|
|
|
clickstreet(item) {
|
|
|
|
|
this.form.areaCode = item.areaCode;
|
|
|
|
|
console.log(this.form);
|
|
|
|
|
},
|
|
|
|
|
// 所属省下拉框
|
|
|
|
|
loadMore() {
|
|
|
|
|
console.log("1");
|
|
|
|
|
var a = Math.ceil(this.total2 / 10);
|
|
|
|
|
console.log(this.arealist.length);
|
|
|
|
|
if (this.arealist.length + 1 >= this.total2) {
|
|
|
|
|
} else {
|
|
|
|
|
if (this.getProvincequeryParams.pageNum >= a) {
|
|
|
|
|
} else {
|
|
|
|
|
this.getProvincequeryParams.pageNum++;
|
|
|
|
|
FirstLevel(this.getProvincequeryParams).then((res) => {
|
|
|
|
|
console.log(res);
|
|
|
|
|
res.rows.forEach((e) => {
|
|
|
|
|
this.arealist.push(e);
|
|
|
|
|
console.log(this.arealist)
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
Provincelist() {
|
|
|
|
|
FirstLevel(this.getProvincequeryParams).then((res) => {
|
|
|
|
|
console.log(res);
|
|
|
|
|
this.arealist = res.data;
|
|
|
|
|
this.total2 = res.total;
|
|
|
|
|
console.log(this.arealist);
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
/** 查询被护理人基本信息列表 */
|
|
|
|
|
getList() {
|
|
|
|
|
this.loading = true;
|
|
|
|
|
listPatientArchives(this.queryParams).then(response => {
|
|
|
|
|
this.patientArchivesList = response.rows;
|
|
|
|
|
this.total = response.total;
|
|
|
|
|
this.loading = false;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
// 取消按钮
|
|
|
|
|
cancel() {
|
|
|
|
|
this.open = false;
|
|
|
|
|
this.reset();
|
|
|
|
|
},
|
|
|
|
|
// 表单重置
|
|
|
|
|
reset() {
|
|
|
|
|
this.form = {
|
|
|
|
|
id: null,
|
|
|
|
|
communityCode: null,
|
|
|
|
|
areaCode: null,
|
|
|
|
|
patientCode: null,
|
|
|
|
|
patientName: null,
|
|
|
|
|
cardNo: null,
|
|
|
|
|
userId: null,
|
|
|
|
|
unionid: null,
|
|
|
|
|
openid: null,
|
|
|
|
|
phone: null,
|
|
|
|
|
address: null,
|
|
|
|
|
urgentContactName: null,
|
|
|
|
|
urgentContactPhone: null,
|
|
|
|
|
homeLongitude: null,
|
|
|
|
|
homeLatitude: null,
|
|
|
|
|
headPictureUrl: null,
|
|
|
|
|
createBy: null,
|
|
|
|
|
createTime: null,
|
|
|
|
|
updateBy: null,
|
2022-09-21 10:53:50 +08:00
|
|
|
updateTime: null,
|
|
|
|
|
patientArchivesList: [
|
|
|
|
|
{
|
|
|
|
|
province: "",
|
|
|
|
|
city: "",
|
|
|
|
|
area: "",
|
|
|
|
|
areaCode: "",
|
|
|
|
|
communityCode: "",
|
|
|
|
|
communityName: "",
|
|
|
|
|
communityLongitude: "",
|
|
|
|
|
communityLatitude: "",
|
|
|
|
|
},
|
|
|
|
|
],
|
2022-09-20 17:51:42 +08:00
|
|
|
};
|
2022-09-21 10:53:50 +08:00
|
|
|
|
2022-09-20 17:51:42 +08:00
|
|
|
this.resetForm("form");
|
|
|
|
|
},
|
|
|
|
|
/** 搜索按钮操作 */
|
|
|
|
|
handleQuery() {
|
|
|
|
|
this.queryParams.pageNum = 1;
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
/** 重置按钮操作 */
|
|
|
|
|
resetQuery() {
|
|
|
|
|
this.resetForm("queryForm");
|
2022-09-21 10:53:50 +08:00
|
|
|
(this.queryParams = {
|
|
|
|
|
pageNum: 1,
|
|
|
|
|
pageSize: 10,
|
|
|
|
|
searchValue: null,
|
|
|
|
|
province: null,
|
|
|
|
|
city: null,
|
|
|
|
|
area: null,
|
|
|
|
|
areaCode: null,
|
|
|
|
|
areaName: null,
|
|
|
|
|
areaLevel: null,
|
|
|
|
|
// sort: null,
|
|
|
|
|
}),
|
2022-09-20 17:51:42 +08:00
|
|
|
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
|
|
|
|
|
getPatientArchives(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) {
|
|
|
|
|
updatePatientArchives(this.form).then(response => {
|
|
|
|
|
this.$modal.msgSuccess("修改成功");
|
|
|
|
|
this.open = false;
|
|
|
|
|
this.getList();
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
addPatientArchives(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 delPatientArchives(ids);
|
|
|
|
|
}).then(() => {
|
|
|
|
|
this.getList();
|
|
|
|
|
this.$modal.msgSuccess("删除成功");
|
|
|
|
|
}).catch(() => {});
|
|
|
|
|
},
|
|
|
|
|
/** 导出按钮操作 */
|
|
|
|
|
handleExport() {
|
|
|
|
|
this.download('system/patientArchives/export', {
|
|
|
|
|
...this.queryParams
|
|
|
|
|
}, `patientArchives_${new Date().getTime()}.xlsx`)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
</script>
|