转交 审核

This commit is contained in:
shijingjing
2022-05-19 17:38:34 +08:00
parent a766a732b9
commit e3f8916911
4 changed files with 216 additions and 225 deletions

View File

@@ -93,20 +93,15 @@
<div class="fixedBtn">
<div class="status00">
<div class="columns border-r" @click="toContent(1)">
<div class="columns" @click="toContent(1)">
<span class="hint">转交事件</span>
</div>
<!-- <div class="columns" @click="toContent(2)">
<span class="hint">拒绝受</span>
</div> -->
<div class="doIt" @click="doItShow = true">审核处理</div>
<div class="columns" @click="toContent(2)">
<span class="hint">审核处</span>
</div>
</div>
<div class="endDoIt" v-if="data.eventStatus == 1 && data.rightType == 0" @click="toContent(3)">前往办理</div>
</div>
<u-modal v-model="doItShow" :mask-close-able="true" z-index="99" content="确定处理该事件?" :show-cancel-button="true" @confirm="doThings"></u-modal>
</div>
</template>
@@ -117,7 +112,6 @@ export default {
list: [],
data: {},
id: '',
doItShow: false,
}
},
onLoad(o) {
@@ -142,8 +136,9 @@ export default {
current: img
})
},
// 转交 1 审核处理 2
toContent(status) {
uni.navigateTo({ url: `./result?status=${status}` })
uni.navigateTo({ url: `./result?status=${status}&id=${this.id}` })
},
}
}
@@ -366,38 +361,24 @@ export default {
display: flex;
flex-direction: column;
align-items: center;
width: 50%;
padding: 16px 0;
flex: 1;
padding: 28px 0;
border-top: 1px solid #ddd;
.hint {
margin-top: 16px;
font-size: 32px;
color: #666666;
color: #333;
}
}
.border-r {
border-right: 1px solid #ddd;
}
.doIt {
width: 56%;
.columns:last-child {
border-left: 1px solid #ddd;
background: #3975c6;
text-align: center;
line-height: 112px;
font-size: 32px;
font-weight: 500;
color: #fff;
.hint {
font-size: 32px;
color: #FFF;
}
}
}
.endDoIt {
background: #3975c6;
text-align: center;
padding: 34px 0;
font-size: 32px;
font-weight: 500;
color: #ffffff;
}
}
}
</style>