This commit is contained in:
Paidax
2025-02-20 13:56:04 +08:00
parent 409ff2e0bb
commit bce946e651
189 changed files with 9732 additions and 4037 deletions
@@ -154,7 +154,7 @@
<el-form-item prop="updateUserState" label="是否改变在职状态" style="width: 100%">
<dict-select v-model="formData.changeUserState" style="width: 100%" clearable
placeholder="是否改变在职状态"
code="userState"></dict-select>
code="USER_STATE"></dict-select>
</el-form-item>
</el-col>
</el-row>
@@ -169,7 +169,7 @@
<el-form-item prop="updateUserState" label="是否改变人员类型" style="width: 100%">
<dict-select v-model="formData.changePersonType" style="width: 100%" clearable
placeholder="是否改变人员类型"
code="UserType"></dict-select>
code="PERSON_TYPE"></dict-select>
</el-form-item>
</el-col>
</el-row>
@@ -201,7 +201,7 @@
<el-form-item prop="education" label="新的学历" style="width: 100%">
<dict-select v-model="formData.changeEducation" style="width: 100%" clearable
placeholder="请选择新的学历"
code="Education"></dict-select>
code="USER_EDUCATION"></dict-select>
</el-form-item>
</div>
@@ -76,7 +76,7 @@
<div class="is-flex">
<el-form-item prop="education" label="学&emsp;&emsp;历">
<dict-select v-model="formData.education" style="width: 100%" placeholder="请选择学历" code="Education"></dict-select>
<dict-select v-model="formData.education" style="width: 100%" placeholder="请选择学历" code="USER_EDUCATION"></dict-select>
</el-form-item>
<el-form-item prop="academicDegree" label="学&emsp;&emsp;位">
@@ -84,7 +84,7 @@
v-model="formData.academicDegree"
style="width: 100%"
placeholder="请选择学位"
code="academicDegree"
code="USER_ACADEMIC_DEGREE"
></dict-select>
</el-form-item>
</div>
@@ -100,7 +100,7 @@
v-model="formData.political"
style="width: 100%"
placeholder="请选择政治面貌"
code="political"
code="USER_POLITICAL"
></dict-select>
</el-form-item>
</div>
@@ -110,7 +110,7 @@
v-model="formData.personType"
style="width: 100%"
placeholder="请选择人员类型"
code="UserType"
code="PERSON_TYPE"
></dict-select>
</el-form-item>
@@ -119,7 +119,7 @@
v-model="formData.userState"
style="width: 100%"
placeholder="请选择在职状态"
code="UserState"
code="USER_STATE"
></dict-select>
</el-form-item>
</div>
@@ -95,7 +95,7 @@
<dict-select v-model="pageForm.personType" style="width: 100%" clearable
placeholder="人员类型"
@change="doSearch"
code="UserType"></dict-select>
code="PERSON_TYPE"></dict-select>
</div>
</div>
@@ -105,7 +105,7 @@
<dict-select v-model="pageForm.userState" style="width: 100%" clearable
placeholder="在职状态"
@change="doSearch"
code="UserState"></dict-select>
code="USER_STATE"></dict-select>
</div>
</div>
@@ -665,8 +665,8 @@ module.exports = {
}*/
await this.flushUnits()
await this.getActivityGroup()
this.personTypeOptions = await getDictOptions("UserType")
this.userStateOptions = await getDictOptions("UserState")
this.personTypeOptions = await getDictOptions("PERSON_TYPE")
this.userStateOptions = await getDictOptions("USER_STATE")
await this.getMenuOptions()
await this.pageData()
},
@@ -81,8 +81,8 @@ module.exports = {
clearInterval(signatureInterval)
const ts = new Date().getTime() + (Math.floor(Math.random() * (1000 - 1 + 1)) + 1).toString()
console.log(ts)
// this.postAddress = location.protocol + '//' + location.host + '/signature?prefix=' + this.prefix + '&id=' + ts + "&is_value_base64=" + this.is_value_base64
this.postAddress = 'https://zhgh.hmc.edu.cn/signature?prefix=' + this.prefix + '&id=' + ts + "&is_value_base64=" + this.is_value_base64
this.postAddress = location.protocol + '//' + location.host + '/signature?prefix=' + this.prefix + '&id=' + ts + "&is_value_base64=" + this.is_value_base64
// this.postAddress = 'https://zhgh.hmc.edu.cn/signature?prefix=' + this.prefix + '&id=' + ts + "&is_value_base64=" + this.is_value_base64
this.showQrCode = true
@@ -64,7 +64,7 @@
<dict-select v-model="pageForm.personType" style="width: 100%" clearable
placeholder="人员类型"
@change="doSearch"
code="UserType"></dict-select>
code="PERSON_TYPE"></dict-select>
</div>
</div>
@@ -74,7 +74,7 @@
<dict-select v-model="pageForm.userState" style="width: 100%" clearable
placeholder="在职状态"
@change="doSearch"
code="UserState"></dict-select>
code="USER_STATE"></dict-select>
</div>
</div>
@@ -624,8 +624,8 @@ module.exports = {
}
await this.flushUnits()
await this.getActivityGroup()
this.personTypeOptions = await getDictOptions("UserType")
this.userStateOptions = await getDictOptions("UserState")
this.personTypeOptions = await getDictOptions("PERSON_TYPE")
this.userStateOptions = await getDictOptions("USER_STATE")
await this.getMenuOptions()
await this.pageData()
},