|
|
|
@ -187,7 +187,6 @@ export default {
|
|
|
|
|
|
|
|
|
|
changeInv() {
|
|
|
|
|
this.selInvVisible = true;
|
|
|
|
|
localStorage.setItem("insuranceCode", JSON.stringify( this.userInfo.locInvCode));
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
getDeptList() {
|
|
|
|
@ -255,9 +254,19 @@ export default {
|
|
|
|
|
|
|
|
|
|
closeDialog() {
|
|
|
|
|
this.selInvVisible = false;
|
|
|
|
|
this.userInfo.locInvCode=JSON.parse(localStorage.getItem("insuranceCode"));
|
|
|
|
|
this.getDeptList()
|
|
|
|
|
this.resetForm();
|
|
|
|
|
},
|
|
|
|
|
// 刷新表单
|
|
|
|
|
resetForm() {
|
|
|
|
|
if (this.$refs["dataForm"]) {
|
|
|
|
|
// 清空验证信息表单
|
|
|
|
|
this.$refs["dataForm"].clearValidate();
|
|
|
|
|
// 刷新表单
|
|
|
|
|
this.$refs["dataForm"].resetFields();
|
|
|
|
|
this.getList();
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
created() {
|
|
|
|
|