77 lines
1.3 KiB
Vue
Raw Normal View History

2024-04-28 15:34:42 +08:00
<template>
2024-05-02 01:41:15 +08:00
<view class="danger-project">
2024-04-28 15:34:42 +08:00
<view class="finally">
<view style="padding:10px;">
危大工程名称基坑
</view>
<view style="padding:10px;">
计划时间基坑
</view>
<view style="padding:10px;">
验收人基坑
</view>
<view style="padding:10px;">
验收结果基坑
</view>
</view>
2024-05-02 01:41:15 +08:00
<view class="no-data">
<image class="img" src="/static/noData.png"></image>
<text class="txt">暂无数据</text>
</view>
2024-04-28 15:34:42 +08:00
</view>
</template>
<script>
export default {
props:['detailId'],
data() {
return {
};
2024-05-02 01:41:15 +08:00
},
created() {
this.initData()
},
methods:{
initData(){
this.sendRequest({
url:'xmgl/xzDangerousEngineeringAcceptance/list',
method:'get',
data:{
engineeringId: this.detailId,
projectSn: JSON.parse(uni.getStorageSync('projectDetail')).projectSn,
},
success:res=>{
uni.hideLoading()
console.log("xmgl/xzDangerousEngineeringAcceptance/list",res);
}
})
},
2024-04-28 15:34:42 +08:00
}
}
</script>
<style lang="scss">
2024-05-02 01:41:15 +08:00
.danger-project{
.finally{
background-color: #fff;
height: 150px;
margin: 10px;
}
.no-data{
text-align: center;
.img{
display: block;
height: 200rpx;
width: 200rpx;
margin: 0 auto;
margin-top: 60rpx;
margin-bottom: 60rpx;
}
.txt{
color: #C0C4CC;
}
}
2024-04-28 15:34:42 +08:00
}
</style>