优化页面
This commit is contained in:
@@ -23,6 +23,8 @@
|
||||
width: 100%;
|
||||
height: 100rpx;
|
||||
background: #ffffff;
|
||||
border: 1px solid #e5e5e5;
|
||||
border-radius: 10rpx;
|
||||
}
|
||||
/* 样式定义 */
|
||||
</style>
|
||||
@@ -48,7 +48,7 @@ let tabList = reactive([
|
||||
iconPath: "../../static/Forum.png",
|
||||
selectedIconPath: "../../static/Forumclick.png",
|
||||
text: "论坛",
|
||||
pagePath: "",
|
||||
pagePath: "/pages/Forum/Forum",
|
||||
middleClass: "",
|
||||
},
|
||||
{
|
||||
|
||||
@@ -4,13 +4,13 @@
|
||||
@click="MakeAppointmentPK"
|
||||
:class="{ Selectcss: !Select, NoSelectcss: Select }"
|
||||
class="RealTime"
|
||||
>PK大厅</view
|
||||
>今日PK</view
|
||||
>
|
||||
<view
|
||||
@click="RealTimePk"
|
||||
:class="{ Selectcss: Select, NoSelectcss: !Select }"
|
||||
class="MakeAppointment"
|
||||
>今日PK</view
|
||||
>PK大厅</view
|
||||
>
|
||||
<!-- <view @click="screening" class="Screening">筛选</view>
|
||||
<image @click="Search" src="../../static/Searching.png" class="filter-icon" /> -->
|
||||
@@ -29,14 +29,14 @@ export default {
|
||||
// 页面加载时执行
|
||||
},
|
||||
methods: {
|
||||
MakeAppointmentPK() {
|
||||
this.Select = false;
|
||||
this.$emit("MakeAppointmentPK");
|
||||
},
|
||||
RealTimePk() {
|
||||
this.Select = true;
|
||||
this.$emit("RealTimePk");//触发实时PK事件
|
||||
},
|
||||
MakeAppointmentPK() {
|
||||
this.Select = false;
|
||||
this.$emit("MakeAppointmentPK");//触发预约PK事件
|
||||
},
|
||||
screening() {
|
||||
this.$emit("screening");//触发筛选事件
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user