diff --git a/src/App.vue b/src/App.vue index a3fcdc21..e7b9b781 100644 --- a/src/App.vue +++ b/src/App.vue @@ -23,12 +23,38 @@ > i18n - -
- - + +
+ + + + + + +
@@ -53,7 +79,7 @@ - + - + + + +
取消 @@ -111,6 +158,7 @@ export default { key: null, arr: [], il8nExternal: false, + State: null, } }, mounted() { @@ -147,6 +195,11 @@ export default { // }, // }, methods: { + handleStateChange() { + this.tableData.forEach((item) => { + item.State = this.State + }) + }, changeValue(target, attr, e) { this.$set(target, attr, e) }, @@ -212,10 +265,11 @@ export default { Module: item.Module, Value: item.Value, ValueCN: item.ValueCN, + State: item.State, } }) this.tableData = Object.assign([], tableData) - console.log(tableData) + this.arr = Object.assign([], tableData) return false } else { tableData = this.$tl.map((v) => { diff --git a/src/views/reviewers/curriculumVitae/components/info/continuingTraining.vue b/src/views/reviewers/curriculumVitae/components/info/continuingTraining.vue index 1a013d03..2146a36b 100644 --- a/src/views/reviewers/curriculumVitae/components/info/continuingTraining.vue +++ b/src/views/reviewers/curriculumVitae/components/info/continuingTraining.vue @@ -159,7 +159,6 @@ style="width: 100%" v-model="form.Hospital" :fetch-suggestions="querySearch" - @select="handleSelect" placeholder="" > diff --git a/src/views/reviewers/curriculumVitae/components/info/info.vue b/src/views/reviewers/curriculumVitae/components/info/info.vue index af424e38..94f94864 100644 --- a/src/views/reviewers/curriculumVitae/components/info/info.vue +++ b/src/views/reviewers/curriculumVitae/components/info/info.vue @@ -757,11 +757,12 @@ export default { if (this.reviewerId) { this.form.Id = this.reviewerId } + // console.log(this.form) let data = Object.assign({}, this.form) - if (!this.hospitalList.find((item) => item.Id === data.HospitalId)) { - data.HospitalName = data.HospitalId - data.HospitalId = null - } + // if (!this.hospitalList.find((item) => item.Id === data.HospitalId)) { + // data.HospitalName = data.HospitalId + // data.HospitalId = null + // } this.loading = true let res = await addOrUpdateDoctorBasicInfoAndEmployment(data) this.loading = false diff --git a/src/views/system/user/list/index.vue b/src/views/system/user/list/index.vue index d963d16d..9583a02f 100644 --- a/src/views/system/user/list/index.vue +++ b/src/views/system/user/list/index.vue @@ -27,11 +27,26 @@