You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

433 lines
9.7 KiB

4 years ago
<template>
4 years ago
<view class="boxContent">
<view class="box-header">
<view class="search-wrap">
<!-- 如果使用u-search组件必须要给v-model绑定一个变量 -->
3 years ago
<u-search v-model="searchEntity.keyword" placeholder="地址/河道等" @custom="tosearch()" @search="tosearch()"
height="56" :action-style="{color: '#fff'}">
4 years ago
</u-search>
</view>
3 years ago
4 years ago
</view>
3 years ago
<view :class="mask?'list listfixed':'list'" style="padding-top: 100rpx;">
3 years ago
<u-dropdown ref="uDropdown" @open="openmask" @close="closemask" :class="mask?'':'overflowmask'">
<u-dropdown-item v-model="searchEntity.ask_type_id"
:title="searchEntity.ask_type_id==''?'问题类型':searchEntity.ask_type" @change="toChangeAsk"
:options="askTypeArr">
3 years ago
</u-dropdown-item>
3 years ago
<u-dropdown-item v-model="searchEntity.status"
:title="searchEntity.status==''?'工单状态':searchEntity.statusName" @change="toChangeStatus"
:options="statusArr">
3 years ago
</u-dropdown-item>
4 years ago
</u-dropdown>
4 years ago
<block v-for="(item, index) in dataList">
3 years ago
<u-card :title="item.created_at" padding="20" margin="20rpx" :border="true" :sub-title="item.statusName"
thumb-width="36">
4 years ago
<view class="" slot="body" @click="todetail(item.id)">
4 years ago
<u-row gutter="16">
<u-col span="4">
4 years ago
<view class="demo-layout bg-purple">问题类别</view>
</u-col>
<u-col span="8">
4 years ago
<view class="demo-layout bg-purple-light">{{item.ask_type_detail.value}}</view>
4 years ago
</u-col>
<u-col span="4">
4 years ago
<view class="demo-layout bg-purple">问题内容</view>
</u-col>
<u-col span="8">
4 years ago
<view class="demo-layout bg-purple-light">{{item.ask_content_detail.value}}</view>
4 years ago
</u-col>
</u-row>
<u-row gutter="16">
<u-col span="4">
4 years ago
<view class="demo-layout bg-purple">反馈科室</view>
</u-col>
<u-col span="8">
4 years ago
<view class="demo-layout bg-purple-light">{{item.feedback_department.name}}</view>
</u-col>
3 years ago
3 years ago
</u-row>
<!-- <u-row gutter="16">
3 years ago
<u-col span="3">
<view class="demo-layout bg-purple">所属道路</view>
</u-col>
<u-col span="9">
<view class="demo-layout bg-purple-light">{{item.road_name}}</view>
</u-col>
3 years ago
</u-row> -->
4 years ago
<u-row gutter="16">
<u-col span="3">
<view class="demo-layout bg-purple">描述</view>
</u-col>
4 years ago
<u-col span="12">
4 years ago
<view class="demo-layout bg-purple-light">{{item.content}}</view>
</u-col>
</u-row>
</view>
3 years ago
<view class="footer" slot="foot">
3 years ago
<block>
<u-button :custom-style="editStyle" type="primary" size="medium" @click="toedit(item.id)"
:ripple="true">编辑
3 years ago
</u-button>
</block>
3 years ago
<block>
<u-button type="error" size="medium" @click="del(item.id)" :custom-style="customStyle"
:ripple="true">删除
3 years ago
</u-button>
</block>
4 years ago
</view>
</u-card>
</block>
3 years ago
<u-loadmore class="loadmore" :status="loadStatus" :load-text="loadText" />
4 years ago
<u-empty text="暂无数据" margin-top="200" v-if="dataList.length==0" mode="list"></u-empty>
</view>
4 years ago
</view>
4 years ago
4 years ago
</template>
<script>
export default {
data() {
return {
4 years ago
background: {
3 years ago
backgroundColor: '#0385e5'
4 years ago
},
3 years ago
mask: false,
3 years ago
loadStatus: "loadmore",
loadText: {
loadmore: "加载更多",
nomore: "已经到底了"
4 years ago
},
4 years ago
dataList: [],
3 years ago
currentPage: 0,
3 years ago
lastPage: 0,
editStyle: {
fontSize: '30rpx'
3 years ago
},
customStyle: {
marginLeft: '20px',
3 years ago
fontSize: '30rpx'
},
searchEntity: {
status: "",
ask_type_id: "",
keyword: "",
statusName: "",
ask_type: ""
4 years ago
},
3 years ago
askTypeArr: [],
statusArr: [{
4 years ago
label: "所有",
3 years ago
value: "",
4 years ago
}, {
3 years ago
label: "已提交",
value: "1"
4 years ago
}, {
3 years ago
label: "已审核",
value: "2"
4 years ago
}, {
3 years ago
label: "已办结",
value: "3"
4 years ago
}]
4 years ago
}
},
4 years ago
onReachBottom: function(e) {
3 years ago
if (this.currentPage >= this.lastPage) {
3 years ago
this.loadStatus = "nomore"
return;
}
4 years ago
this.loadPage(this.currentPage + 1);
},
onPullDownRefresh: function(e) {
this.loadPage(1);
},
onShow: function() {
var that = this;
},
onLoad(options) {
3 years ago
let that = this;
4 years ago
this.loadPage(1);
3 years ago
this.loadType({
'number': "general_type",
}, function(res) {
console.log(res)
var arr = [];
arr.push({
label: "所有",
value: "",
})
for (var m of res) {
arr.push({
label: m.value,
value: m.id,
})
}
that.askTypeArr = arr;
});
4 years ago
},
3 years ago
methods: {
3 years ago
loadType(data, call) {
let that = this;
this.util.request({
api: '/api/admin/parameter/show',
data: data,
utilSuccess: function(res) {
call(res.detail)
},
utilFail: function(res) {
this.util.alert(res);
}
});
},
openmask() {
this.mask = true
3 years ago
// this.isPullDown(false);
},
3 years ago
closemask() {
this.mask = false
3 years ago
// this.isPullDown(true);
4 years ago
},
4 years ago
toChangeStatus: function(value) {
3 years ago
var jsonSearch = this.statusArr.filter(function(e) {
4 years ago
return e.value == value;
});
3 years ago
this.searchEntity.statusName = jsonSearch[0].label;
this.loadPage(1)
this.$refs.uDropdown.close();
},
toChangeAsk: function(value) {
var jsonSearch = this.askTypeArr.filter(function(e) {
return e.value == value;
});
this.searchEntity.ask_type = jsonSearch[0].label;
4 years ago
this.loadPage(1)
this.$refs.uDropdown.close();
},
tosearch() {
this.loadPage(1)
this.$refs.uDropdown.close();
},
tagClick(index) {
this.options1[index].active = !this.options1[index].active;
},
4 years ago
3 years ago
toedit(id) {
3 years ago
uni.navigateTo({
3 years ago
url: "../generalPatrol/generalPatrol?id=" + id
3 years ago
})
4 years ago
},
3 years ago
4 years ago
todetail: function(id) {
uni.navigateTo({
4 years ago
url: "../generalPatrol/viewPatrol?id=" + id
4 years ago
})
3 years ago
},
3 years ago
4 years ago
loadPage: function(page) {
uni.hideKeyboard()
var that = this;
this.util.request({
bindThis: that,
api: '/api/mobile/common-inspection/index',
customLoading: false,
data: {
page: page,
4 years ago
page_size: 4,
3 years ago
...that.searchEntity
4 years ago
},
utilSuccess: function(r) {
var res = r.data;
4 years ago
that.lastPage = r.last_page;
4 years ago
uni.stopPullDownRefresh(); // 服务器总条数 < 每页条数, 会将第一页的条数重新返回
3 years ago
if (r.total < 5) {
3 years ago
that.loadStatus = "nomore";
4 years ago
}
var hasNoMore = that.dataList.length < 4 && page > 1;
4 years ago
if (hasNoMore || res.length == 0 && page > 1) {
3 years ago
// 已加载到最后一页
4 years ago
that.loadStatus = "nomore";
4 years ago
uni.showToast({
title: '已加载到最后一页',
icon: 'none'
});
return;
}
var dataList = that.dataList;
4 years ago
4 years ago
if (page == 1) {
dataList = res;
} else {
dataList.push(...res);
}
for (var m of dataList) {
3 years ago
m.created_at = m.created_at.split("T")[0]
3 years ago
m.road_name = m.road ? m.road.name : ""
switch (m.status) {
3 years ago
case 1:
m.statusName = "已提交"
break
case 2:
m.statusName = "已复核"
break
case 3:
m.statusName = "已处理"
break
case 4:
m.statusName = "已办结"
break
3 years ago
3 years ago
default:
3 years ago
3 years ago
break;
4 years ago
}
4 years ago
}
console.log(dataList)
4 years ago
4 years ago
that.currentPage = page;
that.dataList = dataList;
},
utilFail: function(res) {
uni.stopPullDownRefresh();
4 years ago
4 years ago
if (page == 1) {
4 years ago
4 years ago
that.currentPage = page;
4 years ago
}
4 years ago
this.util.alert(res);
}
});
3 years ago
},
3 years ago
del(id) {
var that = this;
uni.showModal({
title: '提示',
content: '是否确定删除?',
success(res) {
if (res.confirm) {
that.util.request({
api: '/api/mobile/common-inspection/destroy',
customLoading: false,
method: "get",
data: {
id: id
},
utilSuccess: function(r) {
uni.showToast({
icon: "none",
title: "提交成功",
complete() {
that.loadPage(1)
},
duration: 2000
})
},
utilFail: function(r) {
this.util.alert(res);
},
})
} else if (res.cancel) {
}
}
})
4 years ago
}
4 years ago
4 years ago
}
4 years ago
4 years ago
}
</script>
<style>
4 years ago
.boxContent {
background: #f3f4f6;
min-height: 100vh;
4 years ago
}
4 years ago
.footer {
display: flex;
justify-content: flex-end;
}
.box-header {
position: fixed;
/* top: 0; */
3 years ago
width: 100%;
4 years ago
z-index: 99;
}
.u-row {
margin: 10rpx 0;
font-size: 28rpx;
3 years ago
}
3 years ago
.u-card {
3 years ago
z-index: 1;
4 years ago
}
</style>
<style scoped lang="scss">
.search-wrap {
3 years ago
background: #0385e5;
4 years ago
padding: 20rpx;
}
3 years ago
.overflowmask {
3 years ago
overflow: hidden;
}
3 years ago
.loadmore {
padding: 24rpx !important
3 years ago
}
3 years ago
.listfixed {
3 years ago
position: fixed;
3 years ago
width: 100%;
}
3 years ago
4 years ago
.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;
}
}
4 years ago
}
3 years ago
</style>