完成课程模块以及晋升模块排行模块用户管理模块的bug的修复

This commit is contained in:
2025-08-06 08:19:26 +08:00
parent 18c86adc94
commit d6f0ba4e6f
7 changed files with 16 additions and 6 deletions

BIN
dist8月4.zip Normal file

Binary file not shown.

BIN
dist8月6日.zip Normal file

Binary file not shown.

View File

@ -566,6 +566,9 @@ const handlePriceInput = (value: number, field: keyof CourseDetail) => {
padding: 1.5rem; padding: 1.5rem;
border-radius: 8px; border-radius: 8px;
line-height: 1.7; line-height: 1.7;
word-break: break-all;
overflow-wrap: break-word;
white-space: pre-wrap;
} }
.rich-content :deep(p) { .rich-content :deep(p) {

View File

@ -317,6 +317,17 @@ const reset = () => {
</script> </script>
<style scoped> <style scoped>
/* 新增全局表格单元格换行样式 */
:deep(.ant-table td) {
white-space: normal !important;
word-break: break-word !important;
}
/* 保持操作列不换行 */
:deep(.ant-table td.ant-table-cell:last-child) {
white-space: nowrap;
}
.search-box { .search-box {
margin-bottom: 10px; margin-bottom: 10px;
} }

View File

@ -249,10 +249,6 @@ const viewDetail = (record: AdvancementApply) => {
}); });
}; };
// 返回上一页
const goBack = () => {
router.push('/performanceManagement');
};
// 初始化加载数据 // 初始化加载数据
onMounted(() => { onMounted(() => {
@ -289,7 +285,6 @@ onMounted(() => {
/> />
</a-form-item> </a-form-item>
<a-button @click="reset">重置</a-button> <a-button @click="reset">重置</a-button>
<a-button class="custom-button" @click="goBack">返回</a-button>
</a-space> </a-space>
</a-form> </a-form>
</div> </div>

View File

@ -238,7 +238,7 @@ const columns = [
align: 'center' align: 'center'
}, },
{ {
title: '用户昵称', title: '学校',
dataIndex: 'nickName', dataIndex: 'nickName',
width: 70, width: 70,
key: 'nickName', key: 'nickName',

View File

@ -133,6 +133,7 @@
<phone-outlined class="info-icon" /> <phone-outlined class="info-icon" />
<div class="info-content"> <div class="info-content">
<span class="info-label">手机号码</span> <span class="info-label">手机号码</span>
<span class="info-value highlight">{{ selectedUser.phoneNumber }}</span>
</div> </div>
</div> </div>
</a-card> </a-card>