提交代码

This commit is contained in:
wangchengming 2025-08-13 21:58:43 +08:00
parent 8c7e75a39c
commit 1932c81c14
2 changed files with 3 additions and 2 deletions

View File

@ -123,7 +123,7 @@ export function updateUserPwd(oldPassword, newPassword) {
return request({
url: '/system/user/profile/updatePwd',
method: 'put',
data: data
params: data
})
}

View File

@ -1,7 +1,7 @@
<template>
<div class="borderLine"></div>
<el-table v-loading="loading" :data="tableData" style="width: 100%">
<el-table-column prop="qualificationName" label="资质名称" width="100" />
<el-table-column prop="qualificationName" label="资质名称" width="110" />
<el-table-column prop="certificateUrl" label="资质证书" align="center">
<template #default="scope">
<el-image v-if="scope.row.certificateUrl" style="width: 70px; height: 44px;line-height: 50px;"
@ -71,6 +71,7 @@
import { onMounted, ref } from 'vue'
import { getCurrentUserList, uploadFile, updateCurrentCertificate, getCurrentCertificateDetail } from "@/api/qualification/myQualifications"
import { Plus } from '@element-plus/icons-vue'
import myFileUpload from './myFileUpload.vue'
import moment from 'moment'
const isShowExpireTime = ref(false)