2024-04-28 18:40:19 +08:00

74 lines
1.3 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<view class="addPlanss">
<headers class="fixedheader" :themeType="true" :showBack="true">
<view class="headerName">
{{title}}
</view>
</headers>
<view class="backlogList-admin" @click="jobTrial">
<view class="backlogList backlogMargin">
<span>
危大工程名称ssss
</span>
<span class="backlogList-span">待确认</span>
</view>
<view class="backlogMargin">
计划执行时间ssss
</view>
<view class="backlogMargin">
申请验收单位ssss
</view>
<view class="backlogMargin">
申请验收人ssss
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
title: "查看待办",
};
},
methods:{
jobTrial(){
console.log('sssssss');
uni.navigateTo({
url:'./backlogTrial/backlogTrial'
})
}
}
}
</script>
<style lang="scss">
.addPlanss {
height: 100%;
background-color: #f6f6f6;
}
.backlogList-admin {
margin: 10px;
background-color: #fff;
height: 160px;
padding: 15px;
.backlogList {
display: flex;
justify-content: space-between;
align-items: center;
.backlogList-span{
padding: 3px 5px;
border: 1px solid #ccc;
color: #d17b00;
border-radius: 3px;
}
}
}
.backlogMargin{
margin-bottom: 15px;
}
</style>