This commit is contained in:
zhangsir
2023-09-25 18:03:57 +08:00
parent e5c5c28fe3
commit d68a23a0f0
3 changed files with 11 additions and 11 deletions

View File

@@ -247,7 +247,7 @@ getList()
dataIndex: "recommendBy", dataIndex: "recommendBy",
key: "recommendBy", key: "recommendBy",
width: "35%", width: "35%",
align: "left", align: "center",
ellipsis: true, ellipsis: true,
className: "h", className: "h",
customRender: ({ text }) => { customRender: ({ text }) => {
@@ -259,7 +259,7 @@ getList()
dataIndex: "listPageName", dataIndex: "listPageName",
key: "listPageName", key: "listPageName",
width: "15%", width: "15%",
align: "left", align: "center",
className: "h", className: "h",
customRender: ({ text }) => { customRender: ({ text }) => {
return text ? text : "-"; return text ? text : "-";
@@ -270,7 +270,7 @@ getList()
dataIndex: "recommendTime", dataIndex: "recommendTime",
key: "recommendTime", key: "recommendTime",
width: "15%", width: "15%",
align: "left", align: "center",
className: "h", className: "h",
customRender: ({ text }) => { customRender: ({ text }) => {
return text ? text : "-"; return text ? text : "-";
@@ -281,7 +281,7 @@ getList()
dataIndex: "courseCount", dataIndex: "courseCount",
key: "courseCount", key: "courseCount",
width: "15%", width: "15%",
align: "left", align: "center",
className: "h", className: "h",
customRender: ({ text }) => { customRender: ({ text }) => {
return text ? text : "-"; return text ? text : "-";
@@ -292,7 +292,7 @@ getList()
width: "10%", width: "10%",
dataIndex: "operation", dataIndex: "operation",
key: "operation", key: "operation",
align: "left", align: "center",
slots: { customRender: "operation" }, slots: { customRender: "operation" },
}, },
@@ -463,12 +463,12 @@ getList()
margin-bottom: 32px; margin-bottom: 32px;
margin-top: 17px; margin-top: 17px;
} }
.ant-input{ .inp>.ant-input{
width: 130px; width: 130px;
height: 40px; height: 40px;
margin-right: 18px; margin-right: 18px;
} }
.ant-btn-primary{ .inp>.ant-btn-primary{
width: 90px; width: 90px;
height: 40px; height: 40px;
border-radius: 5px; border-radius: 5px;

View File

@@ -419,12 +419,12 @@ getList()
margin-bottom: 32px; margin-bottom: 32px;
margin-top: 17px; margin-top: 17px;
} }
.ant-input{ .inp>.ant-input{
width: 130px; width: 130px;
height: 40px; height: 40px;
margin-right: 18px; margin-right: 18px;
} }
.ant-btn-primary{ .inp>.ant-btn-primary{
width: 90px; width: 90px;
height: 40px; height: 40px;
border-radius: 5px; border-radius: 5px;

View File

@@ -152,7 +152,7 @@
<a-pagination show-quick-jumper :pageSize="searchData.pageSize" :current="searchData.pageIndex" :total="state.total" <a-pagination show-quick-jumper :pageSize="searchData.pageSize" :current="searchData.pageIndex" :total="state.total"
class="pagination" @change="handelChangePage" show-size-changer /> class="pagination" @change="handelChangePage" show-size-changer />
</div> </div>
<InitiateRecommend v-model:visible="newNext" :title="添加案例"></InitiateRecommend> <RecommendedCourse v-model:visible="newNext" :title="推荐课程"></RecommendedCourse>
<SeeModal <SeeModal
:visible="lookCourseModal" :visible="lookCourseModal"
:detail="faceDetailObj" :detail="faceDetailObj"
@@ -172,7 +172,7 @@ import {
rePushOrWithdraw, rePushOrWithdraw,
} from "@/api/case"; } from "@/api/case";
import dialog from "@/utils/dialog"; import dialog from "@/utils/dialog";
import InitiateRecommend from "@/components/drawers/InitiateRecommend.vue"; import RecommendedCourse from "@/components/drawers/RecommendedCourse.vue";
import { checkMenu } from "@/utils/utils"; import { checkMenu } from "@/utils/utils";
import SeeModal from "@/components/courserecommended/CourseRecommended.vue"; import SeeModal from "@/components/courserecommended/CourseRecommended.vue";
const column = [ const column = [