This commit is contained in:
shijingjing
2022-07-28 14:36:35 +08:00
parent d1ca78b8bb
commit f1e9c67d92
2 changed files with 5 additions and 4 deletions

View File

@@ -68,7 +68,7 @@
<div class="list_card"> <div class="list_card">
<div class="tab"> <div class="tab">
<u-subsection <u-subsection
:list="tabIndex == 0 ? subsection0 : subsection1" :list="tabIndex == 0 ? subsection_0 : subsection_1"
:current="subIndex" :current="subIndex"
@change="changeSub" @change="changeSub"
></u-subsection> ></u-subsection>
@@ -115,14 +115,14 @@ export default {
}; };
}, },
computed: { computed: {
subsection0() { subsection_0() {
return [ return [
{ name: "未执行" }, { name: "未执行" },
{ name: "已执行" }, { name: "已执行" },
{ name: "无法执行" }, { name: "无法执行" },
] ]
}, },
subsection1() { subsection_1() {
return [ return [
{ name: "未送达" }, { name: "未送达" },
{ name: "已送达" }, { name: "已送达" },

View File

@@ -773,7 +773,7 @@ export default {
.popup { .popup {
box-sizing: border-box; box-sizing: border-box;
// height: 800px; z-index: 9;
.tips { .tips {
width: 80px; width: 80px;
height: 6px; height: 6px;
@@ -870,6 +870,7 @@ export default {
padding: 80px 32px 20px 32px; padding: 80px 32px 20px 32px;
box-sizing: border-box; box-sizing: border-box;
height: 600px; height: 600px;
z-index: 19;
.startTime, .startTime,
.endTime { .endTime {