刘翔宇-旅管家 3 years ago
parent 10e2389c67
commit 65dae29716

@ -31,5 +31,8 @@ Vue.prototype.util = util;
import gcoord from "@/utils/gcoord.js";
Vue.prototype.gcoord = gcoord;
import moment from "moment"
Vue.prototype.$moment = moment;
import {VueJsonp} from 'vue-jsonp' //中间有忘记大括号出现install undefind问题
Vue.use(VueJsonp)

@ -1,5 +1,6 @@
{
"dependencies": {
"moment": "^2.29.4",
"uview-ui": "^1.8.4",
"vue-jsonp": "^2.0.0"
}

@ -114,6 +114,14 @@
"enablePullDownRefresh": false
// "disableScroll": true
}
}, {
"path": "plan/plan",
"style": {
"navigationBarTitleText": "雨管养护",
"enablePullDownRefresh": false
// "disableScroll": true
}
}]
}, {
@ -138,6 +146,14 @@
"enablePullDownRefresh": false
// "disableScroll": true
}
}, {
"path": "plan/plan",
"style": {
"navigationBarTitleText": "雨管巡查",
"enablePullDownRefresh": false
// "disableScroll": true
}
}]
}, {

@ -20,6 +20,8 @@
<text class="navtxt">雨管巡查</text>
</view>
</u-col>
</u-row>
<u-row gutter="16">
<u-col span="6" v-if="isshowyh">
<view class="demo-layout bg-purple" @click="toviewplan(2)">
<text class="iconfont icon-zuzhijiagouguanli"></text>

@ -2,52 +2,69 @@
<view class="boxContent">
<view :class="mask?'list listfixed':'list'" style="padding-top: 20rpx;">
<block v-for="(item, index) in dataList">
<u-card :title="item.created_at" padding="20" margin="20rpx" :border="true"
:sub-title="item.statusName" :thumb="thumb" thumb-width="36">
<view class="" slot="body" @click="todetail(item.id)">
<u-card :title="item.created_at" padding="20" margin="20rpx" :border="true">
<view class="" slot="body" >
<u-row gutter="16">
<u-col span="12">
<view class="demo-layout bg-purple">地址/排放点</view>
</u-col>
<u-col span="12">
<view class="demo-layout bg-purple-light">{{item.address}}</view>
<u-col span="24">
<view class="demo-layout bg-purple-light">{{item.name}}</view>
</u-col>
</u-row>
<u-row gutter="16">
<u-col span="4">
<view class="demo-layout bg-purple">巡查类型</view>
<view class="demo-layout bg-purple">巡查频率</view>
</u-col>
<u-col span="8">
<view class="demo-layout bg-purple-light">{{item.typeName}}</view>
<view class="demo-layout bg-purple-light">{{item.day}}一个循环</view>
</u-col>
<u-col span="4">
<view class="demo-layout bg-purple">所属片区</view>
</u-col>
<u-col span="8">
<view class="demo-layout bg-purple-light">{{item.area_info?item.area_info.name:''}}</view>
<view class="demo-layout bg-purple-light">{{item.area_info?item.area_info.name:''}}
</view>
</u-col>
<u-col span="4">
<view class="demo-layout bg-purple">开始日期</view>
</u-col>
<u-col span="8">
<view class="demo-layout bg-purple-light">{{item.start_date}}</view>
</u-col>
<u-col span="4">
<view class="demo-layout bg-purple">所属道路</view>
<view class="demo-layout bg-purple">结束日期</view>
</u-col>
<u-col span="8">
<view class="demo-layout bg-purple-light">{{item.road_name}}</view>
<view class="demo-layout bg-purple-light">{{item.end_date}}</view>
</u-col>
</u-row>
<!-- <u-row gutter="16">
<u-row gutter="16">
<u-col span="3">
<view class="demo-layout bg-purple">描述</view>
</u-col>
<u-col span="12">
<view class="demo-layout bg-purple-light">{{item.content}}</view>
<view class="demo-layout bg-purple-light">{{item.remark}}</view>
</u-col>
</u-row> -->
</u-row>
<div>所属道路</div>
<block v-for="(mod,index) of item.roads" :key="index">
<div style="display: flex;justify-content: space-between;height: 60px;line-height: 60px;
align-items: center;">
<div>
{{mod.road.name}}
</div>
<div>
<u-button :ripple="true" @click="toInspection(mod.road.id,mod.road.name)"
ripple-bg-color="#909399">去巡查
</u-button>
</div>
</div>
</block>
</view>
</u-card>
</block>
<u-loadmore class="loadmore" :status="loadStatus" :load-text="loadText"/>
<u-loadmore class="loadmore" :status="loadStatus" :load-text="loadText" />
<u-empty text="暂无数据" margin-top="200" v-if="dataList.length==0" mode="list"></u-empty>
</view>
</view>
@ -68,20 +85,20 @@
backgroundColor: '#0385e5'
},
mask: false,
loadStatus:"loadmore",
loadText:{
loadmore:"加载更多",
nomore:"已经到底了"
loadStatus: "loadmore",
loadText: {
loadmore: "加载更多",
nomore: "已经到底了"
},
dataList: [],
thumb: "/static/img/location.png",
currentPage: 0,
lastPage:0,
lastPage: 0,
}
},
onReachBottom: function(e) {
if(this.currentPage>=this.lastPage){
if (this.currentPage >= this.lastPage) {
this.loadStatus = "nomore"
return;
}
@ -97,19 +114,25 @@
this.loadPage(1);
},
methods: {
openmask(){
this.mask=true
toInspection(road_id, road_name) {
let url = "/raininspection/raininspection/raininspection?roadid=" + road_id + "&roadname=" + road_name
uni.navigateTo({
url: url
})
},
openmask() {
this.mask = true
// this.isPullDown(false);
},
closemask(){
this.mask=false
closemask() {
this.mask = false
// this.isPullDown(true);
},
tosearch() {
this.loadPage(1)
this.$refs.uDropdown.close();
},
loadPage: function(page) {
uni.hideKeyboard()
var that = this;
@ -119,14 +142,14 @@
customLoading: false,
data: {
page: page,
page_size: 4,
page_size: 4,
...that.serachEntity
},
utilSuccess: function(r) {
var res = r.data;
that.lastPage = r.last_page;
uni.stopPullDownRefresh(); // < ,
if(r.total<5){
if (r.total < 5) {
that.loadStatus = "nomore";
}
var hasNoMore = that.dataList.length < 4 && page > 1;
@ -190,7 +213,8 @@
margin: 10rpx 0;
font-size: 28rpx;
}
.u-card{
.u-card {
z-index: 1;
}
</style>
@ -201,16 +225,20 @@
background: #0385e5;
padding: 20rpx;
}
.overflowmask{
.overflowmask {
overflow: hidden;
}
.loadmore{
padding:24rpx!important
.loadmore {
padding: 24rpx !important
}
.listfixed{
.listfixed {
position: fixed;
width:100%;
width: 100%;
}
.u-config-wrap {
padding: 30rpx;
}
@ -243,4 +271,4 @@
}
}
}
</style>
</style>

@ -1,22 +1,277 @@
<template>
<view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
}
}
</script>
<style>
<template>
<view class="boxContent">
<view :class="mask?'list listfixed':'list'" style="padding-top: 20rpx;">
<block v-for="(item, index) in dataList">
<u-card :title="item.created_at" padding="20" margin="20rpx" :border="true">
<view class="" slot="body">
<u-row gutter="16">
<u-col span="24">
<view class="demo-layout bg-purple-light">{{item.name}}</view>
</u-col>
</u-row>
<u-row gutter="16">
<u-col span="4">
<view class="demo-layout bg-purple">巡查频率</view>
</u-col>
<u-col span="8">
<view class="demo-layout bg-purple-light">{{item.day}}一个循环</view>
</u-col>
<u-col span="4">
<view class="demo-layout bg-purple">所属片区</view>
</u-col>
<u-col span="8">
<view class="demo-layout bg-purple-light">{{item.area_info?item.area_info.name:''}}
</view>
</u-col>
<u-col span="4">
<view class="demo-layout bg-purple">开始日期</view>
</u-col>
<u-col span="8">
<view class="demo-layout bg-purple-light">{{item.start_date}}</view>
</u-col>
<u-col span="4">
<view class="demo-layout bg-purple">结束日期</view>
</u-col>
<u-col span="8">
<view class="demo-layout bg-purple-light">{{item.end_date}}</view>
</u-col>
</u-row>
<u-row gutter="16">
<u-col span="3">
<view class="demo-layout bg-purple">描述</view>
</u-col>
<u-col span="12">
<view class="demo-layout bg-purple-light">{{item.remark}}</view>
</u-col>
</u-row>
<div>所属道路</div>
<block v-for="(mod,index) of item.roads" :key="index">
<div style="display: flex;justify-content: space-between;height: 60px;line-height: 60px;
align-items: center;">
<div>
{{mod.road.name}}
</div>
<div>
<u-button :ripple="true" @click="toInspection(mod.road.id,mod.road.name)"
ripple-bg-color="#909399">去巡查
</u-button>
</div>
</div>
</block>
</view>
</u-card>
</block>
<u-loadmore class="loadmore" :status="loadStatus" :load-text="loadText" />
<u-empty text="暂无数据" margin-top="200" v-if="dataList.length==0" mode="list"></u-empty>
</view>
</view>
</template>
<script>
export default {
data() {
return {
serachEntity: {
keyword: "",
status: "",
type: "",
date: "2022-10",
area_id: ""
},
background: {
backgroundColor: '#0385e5'
},
mask: false,
loadStatus: "loadmore",
loadText: {
loadmore: "加载更多",
nomore: "已经到底了"
},
dataList: [],
thumb: "/static/img/location.png",
currentPage: 0,
lastPage: 0,
}
},
onReachBottom: function(e) {
if (this.currentPage >= this.lastPage) {
this.loadStatus = "nomore"
return;
}
this.loadPage(this.currentPage + 1);
},
onPullDownRefresh: function(e) {
this.loadPage(1);
},
onShow: function() {
var that = this;
},
onLoad(options) {
this.serachEntity.date = this.$moment().format("YYYY-MM");
this.loadPage(1);
},
methods: {
toInspection(road_id, road_name) {
let url = "/raininspection/rainmaintain/rainmaintain?roadid=" + road_id + "&roadname=" + road_name
uni.navigateTo({
url: url
})
},
openmask() {
this.mask = true
// this.isPullDown(false);
},
closemask() {
this.mask = false
// this.isPullDown(true);
},
tosearch() {
this.loadPage(1)
this.$refs.uDropdown.close();
},
loadPage: function(page) {
uni.hideKeyboard()
var that = this;
this.util.request({
bindThis: that,
api: '/api/mobile/maintain-plan/index',
customLoading: false,
data: {
page: page,
page_size: 4,
...that.serachEntity
},
utilSuccess: function(r) {
var res = r.data;
that.lastPage = r.last_page;
uni.stopPullDownRefresh(); // < ,
if (r.total < 5) {
that.loadStatus = "nomore";
}
var hasNoMore = that.dataList.length < 4 && page > 1;
if (hasNoMore || res.length == 0 && page > 1) {
//
that.loadStatus = "nomore";
uni.showToast({
title: '已加载到最后一页',
icon: 'none'
});
return;
}
var dataList = that.dataList;
if (page == 1) {
dataList = res;
} else {
dataList.push(...res);
}
that.currentPage = page;
that.dataList = dataList;
},
utilFail: function(res) {
uni.stopPullDownRefresh();
if (page == 1) {
that.currentPage = page;
}
this.util.alert(res);
}
});
}
}
}
</script>
<style>
.boxContent {
background: #f3f4f6;
min-height: 100vh;
}
.footer {
display: flex;
justify-content: flex-end;
}
.box-header {
position: fixed;
/* top: 0; */
width: 100%;
z-index: 99;
}
.u-row {
margin: 10rpx 0;
font-size: 28rpx;
}
.u-card {
z-index: 1;
}
</style>
<style scoped lang="scss">
.search-wrap {
background: #0385e5;
padding: 20rpx;
}
.overflowmask {
overflow: hidden;
}
.loadmore {
padding: 24rpx !important
}
.listfixed {
position: fixed;
width: 100%;
}
.u-config-wrap {
padding: 30rpx;
}
.bg-purple {
font-weight: bold;
}
.slot-content {
background-color: #FFFFFF;
padding: 24rpx;
.item-box {
margin-bottom: 50rpx;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
.item {
border: 1px solid $u-type-primary;
color: $u-type-primary;
padding: 8rpx 40rpx;
border-radius: 100rpx;
margin-top: 30rpx;
}
.active {
color: #FFFFFF;
background-color: $u-type-primary;
}
}
}
</style>

@ -1,6 +1,5 @@
<template>
<view class="boxContent">
<view class="box-header">
<view class="search-wrap">
<!-- 如果使用u-search组件必须要给v-model绑定一个变量 -->
@ -11,6 +10,7 @@
</view>
<view :class="mask?'list listfixed':'list'" style="padding-top: 100rpx;">
<view class='showclear' v-if='showClear'>附近道路:</view>
<u-radio-group :wrap="true">
<u-radio @change="radioChange" v-for="(item, index) in dataList" :key="index"
@ -23,6 +23,7 @@
</u-radio-group>
<u-loadmore class="loadmore" :status="loadStatus" :load-text="loadText" />
<u-empty text="暂无数据" margin-top="200" v-if="dataList.length==0" mode="list"></u-empty>
</view>
<view class="box-footer">
@ -58,7 +59,8 @@
totype: "",
road_id: "",
road_name: "",
orderId:""
orderId: "",
locinfo: null
}
},
@ -78,41 +80,44 @@
onLoad(options) {
let that = this;
that.totype = options.type;
that.orderId = options.orderId?options.orderId:""
that.orderId = options.orderId ? options.orderId : ""
uni.getLocation({
type: "wgs84",
geocode: true,
success(res) {
var loc = null
console.log(typeof(window.android))
if (typeof(window.android)!=undefined&&typeof(window.android)!="undefined") {
loc = window.android.getLocInfo();
if (typeof(window.android) != undefined && typeof(window.android) != "undefined") {
that.locinfo = loc = window.android.getLocInfo();
}
if (loc) {
that.latitude = JSON.parse(loc).lat;
that.longitude = JSON.parse(loc).lon;
} else {
that.latitude = res.latitude;
that.longitude = res.longitude;
if (res) {
that.latitude = res.latitude;
that.longitude = res.longitude;
}
}
that.loadPage(1);
}
})
},
methods: {
towhichtype() {
if(this.road_id==""){
uni.showToast({
icon: "none",
title: "请选择道路",
complete() {
},
duration: 2000
})
return
}
towhichtype() {
if (this.road_id == "") {
uni.showToast({
icon: "none",
title: "请选择道路",
complete() {},
duration: 2000
})
return
}
let totype = this.totype
let url = "/packageA/pages/generalPatrol/generalPatrol";
// if (totype == 'general') {
@ -121,14 +126,15 @@
// }
if (totype == 'daily') {
url = "/packageB/pages/dailyInspection/dailyInspection?roadid=" + this.road_id + "&roadname=" + this
.road_name+"&orderId="+this.orderId
.road_name + "&orderId=" + this.orderId
}
if (totype == 'rainmaintain') {
url = "/rainmaintain/rainmaintain/rainmaintain?roadid=" + this.road_id + "&roadname=" + this.road_name+"&orderId="+this.orderId
url = "/rainmaintain/rainmaintain/rainmaintain?roadid=" + this.road_id + "&roadname=" + this
.road_name + "&orderId=" + this.orderId
}
if (totype == 'raininspection') {
url = "/raininspection/raininspection/raininspection?roadid=" + this.road_id + "&roadname=" + this
.road_name+"&orderId="+this.orderId
.road_name + "&orderId=" + this.orderId
}
uni.navigateTo({
url: url
@ -139,16 +145,15 @@
this.road_id = arr[0]
this.road_name = arr[1]
},
tosearch() {
if(this.keyword==""){
uni.showToast({
icon: "none",
title: "请输入关键字",
complete() {
},
duration: 2000
})
return
tosearch() {
if (this.keyword == "") {
uni.showToast({
icon: "none",
title: "请输入关键字",
complete() {},
duration: 2000
})
return
}
// this.latitude = ""
// this.longitude = ""
@ -159,7 +164,7 @@
url: "../rainmaintain/rainmaintain?id=" + id
})
},
loadPage: function(page) {
uni.hideKeyboard()
var that = this;
@ -175,7 +180,7 @@
name: that.keyword,
},
utilSuccess: function(r) {
if (that.longitude != "") {
if (that.longitude && that.longitude != "" && that.longitude != "0") {
// var res = r;
that.showClear = true
that.loadStatus = "nomore";
@ -334,4 +339,4 @@
}
}
}
</style>
</style>

@ -1,7 +1,7 @@
import md5 from "./md5.min";
const HOSTARR = {
'development': 'http://192.168.60.100:9001',
//'development': 'http://patrol.115.langye.net',
//'development': 'http://192.168.60.100:9001',
'development': 'http://patrol.115.langye.net',
'production': 'http://192.168.60.100:9001'
}; // 审核状态

Loading…
Cancel
Save