|
@@ -51,7 +51,7 @@
|
|
|
<el-col :span="12" :xs="24">
|
|
<el-col :span="12" :xs="24">
|
|
|
<el-form-item label="能力评估结果">
|
|
<el-form-item label="能力评估结果">
|
|
|
<el-button
|
|
<el-button
|
|
|
- :disabled="!!!dataForm.associateId"
|
|
|
|
|
|
|
+ :disabled="!dataForm.associateId"
|
|
|
style="width: 100%"
|
|
style="width: 100%"
|
|
|
@click="handleOpenReport"
|
|
@click="handleOpenReport"
|
|
|
><Icon icon="ep:document" />{{ propertiesName }}</el-button
|
|
><Icon icon="ep:document" />{{ propertiesName }}</el-button
|
|
@@ -318,8 +318,8 @@ const isDetail = ref(false)
|
|
|
/** 打开弹窗 */
|
|
/** 打开弹窗 */
|
|
|
const init = async (id, detail, status) => {
|
|
const init = async (id, detail, status) => {
|
|
|
dataForm.value.startTenantId = getTenantId()
|
|
dataForm.value.startTenantId = getTenantId()
|
|
|
- getTreeData()
|
|
|
|
|
- getNurseLevelList()
|
|
|
|
|
|
|
+ await getTreeData()
|
|
|
|
|
+ await getNurseLevelList()
|
|
|
isDetail.value = detail
|
|
isDetail.value = detail
|
|
|
if (id) {
|
|
if (id) {
|
|
|
const res = await getNurseChangeRecordById(id, status,isDetail.value)
|
|
const res = await getNurseChangeRecordById(id, status,isDetail.value)
|
|
@@ -329,13 +329,19 @@ const init = async (id, detail, status) => {
|
|
|
discount.value = formatNum(res.discount)
|
|
discount.value = formatNum(res.discount)
|
|
|
discountAmount.value = formatNum(res.discountAmount)
|
|
discountAmount.value = formatNum(res.discountAmount)
|
|
|
syntheticAbilityId.value = res.syntheticAbilityId
|
|
syntheticAbilityId.value = res.syntheticAbilityId
|
|
|
- getEvaluation()
|
|
|
|
|
|
|
+ await getEvaluation()
|
|
|
active.value = getSyntheticAbilityName(res.totalScore)
|
|
active.value = getSyntheticAbilityName(res.totalScore)
|
|
|
if(!res.startTenantId){
|
|
if(!res.startTenantId){
|
|
|
dataForm.value.startTenantId = getTenantId()
|
|
dataForm.value.startTenantId = getTenantId()
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+ }
|
|
|
|
|
+ await getOverheadList()
|
|
|
|
|
+ if(id){
|
|
|
|
|
+ handleChange()
|
|
|
|
|
+ console.log("AAAA",dataForm.value)
|
|
|
}
|
|
}
|
|
|
- getOverheadList()
|
|
|
|
|
|
|
+
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
const submitForm = async () => {
|
|
const submitForm = async () => {
|