完成课程模块以及晋升模块排行模块用户管理模块的bug的修复
This commit is contained in:
BIN
dist8月4.zip
Normal file
BIN
dist8月4.zip
Normal file
Binary file not shown.
BIN
dist8月6日.zip
Normal file
BIN
dist8月6日.zip
Normal file
Binary file not shown.
@ -566,6 +566,9 @@ const handlePriceInput = (value: number, field: keyof CourseDetail) => {
|
||||
padding: 1.5rem;
|
||||
border-radius: 8px;
|
||||
line-height: 1.7;
|
||||
word-break: break-all;
|
||||
overflow-wrap: break-word;
|
||||
white-space: pre-wrap;
|
||||
}
|
||||
|
||||
.rich-content :deep(p) {
|
||||
|
@ -317,6 +317,17 @@ const reset = () => {
|
||||
</script>
|
||||
|
||||
<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 {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
@ -249,10 +249,6 @@ const viewDetail = (record: AdvancementApply) => {
|
||||
});
|
||||
};
|
||||
|
||||
// 返回上一页
|
||||
const goBack = () => {
|
||||
router.push('/performanceManagement');
|
||||
};
|
||||
|
||||
// 初始化加载数据
|
||||
onMounted(() => {
|
||||
@ -289,7 +285,6 @@ onMounted(() => {
|
||||
/>
|
||||
</a-form-item>
|
||||
<a-button @click="reset">重置</a-button>
|
||||
<a-button class="custom-button" @click="goBack">返回</a-button>
|
||||
</a-space>
|
||||
</a-form>
|
||||
</div>
|
||||
|
@ -238,7 +238,7 @@ const columns = [
|
||||
align: 'center'
|
||||
},
|
||||
{
|
||||
title: '用户昵称',
|
||||
title: '学校',
|
||||
dataIndex: 'nickName',
|
||||
width: 70,
|
||||
key: 'nickName',
|
||||
|
@ -133,6 +133,7 @@
|
||||
<phone-outlined class="info-icon" />
|
||||
<div class="info-content">
|
||||
<span class="info-label">手机号码</span>
|
||||
<span class="info-value highlight">{{ selectedUser.phoneNumber }}</span>
|
||||
</div>
|
||||
</div>
|
||||
</a-card>
|
||||
|
Reference in New Issue
Block a user