提交 420bb2aa 编写于 作者: xinglee23's avatar xinglee23

fix: search bugfix

上级 d7b75851
...@@ -677,7 +677,7 @@ ...@@ -677,7 +677,7 @@
<el-button type="primary" size="small" @click="dialogSuccess = false">关闭</el-button> <el-button type="primary" size="small" @click="dialogSuccess = false">关闭</el-button>
</span> </span>
</el-dialog> </el-dialog>
<!-- <el-dialog title="导入失败" :visible.sync="dialogFail" width="30%" class="dialog-fail" center> <el-dialog title="导入失败" :visible.sync="dialogFail" width="30%" class="dialog-fail" center>
<div class="fail-type" v-if="failType == 1"> <div class="fail-type" v-if="failType == 1">
<p>导入数据量已超限额,请修正后再次导入</p> <p>导入数据量已超限额,请修正后再次导入</p>
<p class="fail-notice">仅支持一次导入5000条数据</p> <p class="fail-notice">仅支持一次导入5000条数据</p>
...@@ -736,7 +736,7 @@ ...@@ -736,7 +736,7 @@
>重新导入</el-button> >重新导入</el-button>
</el-upload> </el-upload>
</span> </span>
</el-dialog> --> </el-dialog>
</div> </div>
<div class="third-step" v-else-if="active === 2"> <div class="third-step" v-else-if="active === 2">
<el-form <el-form
...@@ -3105,7 +3105,7 @@ export default { ...@@ -3105,7 +3105,7 @@ export default {
searchPeople() { searchPeople() {
this.formPerson.pageNum = 1; this.formPerson.pageNum = 1;
let searchForm = this.formPerson; let searchForm = this.formPerson;
if (searchForm.hospitalName === "" && searchForm.doctorName === "") { if (searchForm.hospitalName === "" && searchForm.doctorName === "" && searchForm.mobile === "") {
this.searchPeopleType = ""; this.searchPeopleType = "";
this.getPeople(); this.getPeople();
} else { } else {
...@@ -3148,7 +3148,7 @@ export default { ...@@ -3148,7 +3148,7 @@ export default {
pageNum: this.formPerson.pageNum, pageNum: this.formPerson.pageNum,
pageSize: this.formPerson.pageSize, pageSize: this.formPerson.pageSize,
doctorName: this.formPerson.doctorName, doctorName: this.formPerson.doctorName,
mobile: this.formPerson.mobile, doctorMobile: this.formPerson.mobile,
hospitalName: this.formPerson.hospitalName, hospitalName: this.formPerson.hospitalName,
scopeOfAdministrative: this.getScope("administrative"), scopeOfAdministrative: this.getScope("administrative"),
scopeOfDepartment: this.getScopeDepartment() scopeOfDepartment: this.getScopeDepartment()
...@@ -4084,7 +4084,6 @@ export default { ...@@ -4084,7 +4084,6 @@ export default {
openLoading(vm); openLoading(vm);
// vm.dialogSuccess = true; // vm.dialogSuccess = true;
uploadPersonExcel2(reqStr, projectId).then(res => { uploadPersonExcel2(reqStr, projectId).then(res => {
console.log('eshfjkleshfkes', res);
if (res.code === '000000') { if (res.code === '000000') {
vm.getUploadTeamOrderProgress(res.data.batchUploadLogId, res); vm.getUploadTeamOrderProgress(res.data.batchUploadLogId, res);
closeLoading(vm); closeLoading(vm);
...@@ -4111,7 +4110,7 @@ export default { ...@@ -4111,7 +4110,7 @@ export default {
this.ProgressData.totalNum && this.ProgressData.totalNum &&
this.ProgressData.totalNum == this.ProgressData.successNum this.ProgressData.totalNum == this.ProgressData.successNum
) { ) {
vm.setDialog(resParams); // vm.setDialog(resParams);
this.$message.success('已全部导入完成'); this.$message.success('已全部导入完成');
} else { } else {
this.statFlg = true; this.statFlg = true;
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册