123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- <template>
- <view>
- <image src="/static/icon/background.png" mode="" class="background"></image>
- <view class="" style="padding-top: 90rpx;">
- <back></back>
- </view>
- <view style="padding-top: 60rpx;">
- <view style="margin: 20rpx;">
- <u-search placeholder="请输入楼宇名称" v-model="nameValue" :action-style="{'font-size':'40rpx'}" @custom="getProjectList()"></u-search>
- </view>
- <view v-for="(item,index) in list" :key="index" >
- <view class="project-content" @click="gotoindex(item)">
- <view>
- <view class="font-forty-eight blue">
- {{item.name}}<u-icon name="arrow-right"></u-icon>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import service from '@/api/index.js'
- export default {
- data() {
- return {
- list:[],
- value:'',
- nameValue:'',
- civilPower:'',
- community:'',
- building:''
- }
- },
- onLoad(e) {
- console.log(e)
- this.value = e.value
- this.community = e.community
- this.building = e.building
- this.buildingName=e.buildingName
- this.getProjectList();
- this.getUserName();
- },
- methods: {
- gotoindex(item){
- console.log(item)
- let url1=null
- if (this.value==0)
- { url1=`/pages/noLogin/emergencyRepairOrder/emergencyRepairOrder?unit=${item.id}`
- console.log(this.value)
- }else if(this.value==2)
- {
- url1=`/pages/noLogin/PressureRegulatingBox/PressureRegulatingBox?unit=${item.id}&community=${this.community}&building=${this.building}`
- console.log(this.value)
- }else if(this.value==3)
- {
- url1=`/pages/noLogin/CourtyardNetworkManagement/CourtyardNetworkManagement?unit=${item.id}&building=${this.building}&buildingName=${item.name}&unitName=${item.name}`
- console.log(this.value)
- }
- uni.navigateTo({
- url:url1
- })
- },
- topage(url){
- uni.navigateTo({
- url
- })
- },
- getProjectList() {
- service.getUnitList({buildingId:this.building}).then(res=>{
- console.log('getProjectType', res)
- if(res.length == 0){
- this.$UTILS.showPrompt('暂无项目!')
- }
- this.list = res;
- })
- },
- getUserName(){
- service.getUserName().then(res=>{
- this.civilPower = res.civilPower;
- })
- },
- },
- }
- </script>
- <style lang="scss" scoped>
- .background {
- z-index: -1;
- position: fixed;
- width: 100%;
- height: 100%;
- background-size: 100% 100%;
- }
- .project {
- border-radius: 72rpx;
- padding: 25rpx 0;
- text-align: center;
- margin: 170rpx 55rpx 0;
- }
- .project-content {
- border: 4rpx solid #3857F3;
- margin: 40rpx 55rpx 0;
- padding: 30rpx 20rpx;
- border-radius: 48rpx;
- }
- .position{
- position: absolute;
- bottom: 100rpx;
- right: 50rpx;
- .arrow{
- width: 152rpx;
- height: 152rpx;
- border-radius: 50%;
- padding: 25rpx;
- margin-left: 20rpx;
- }
- }
-
- </style>
|