myevaluate.vue
3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<template>
<view class="page">
<pyh-nv ref="nv" :config="nvConfig"></pyh-nv>
<view class="listBox" :style="{'padding-top':(pageTop+'px')}">
<view class="content">
<!-- 订单列表 -->
<view class="order-list">
<view class="list" v-for="(item,index) in list" @click="onOrderList" :key="index">
<view class="title-status">
<view class="title">
<text>逝者编号:{{item.funeralNumber}}</text>
<image src="../../static/right1.png"></image>
</view>
<view class="status">
<text v-if="item.status=='0'">待评价</text>
<text v-else>已评价</text>
</view>
</view>
<view class="goods-list">
<view class="goods">
<view class="item">
<view class="goods-name">
<view class="goods-name-title">逝者姓名:{{item.deceasedName}}</view>
<view>创建时间:{{item.createdTime}}</view>
</view>
</view>
</view>
</view>
<view class="status-btn" v-if="item.status=='0'">
<view><text class="red"></text><text class="red big"></text></view>
<view class="btn" @click="tz(item)">
<image src="../../static/btn.png" mode="widthFix"></image>
<text>去评价</text>
</view>
</view>
</view>
</view>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
OrderType: 0,
nvConfig:{
title:"服务评价",
bgColor:"#ffffff",
color:"#000000",
fixedAssist:{
hide:true,
},
},
list:[],
};
},
onPageScroll(e) {this.$refs.nv.pageScroll(e)},
computed:{
pageTop(){return parseInt(88*uni.getSystemInfoSync().windowWidth/750) + uni.getSystemInfoSync().statusBarHeight}
},
onLoad(params) {
this.OrderType = params.type;
// this.getfwlist();
this.getfwlist1();
},
methods:{
// 跳转
tz(item){
var info = JSON.stringify(item);
uni.navigateTo({
url:'/pages/myevaluatedetail/myevaluatedetail?info=' + info
})
},
// 获取服务列表
getfwlist(){
this.API.getwsyy().then(res1=>{
console.log("获取详细报丧信息",res1);
this.list = res1.rows
})
// myevaluatedetail
},
// 获取评价列表
getfwlist1(){
var info = {
userId:uni.getStorageSync("USERS_KEY").userId
}
this.API.getfwlist1(info).then(res=>{
console.log("获取服务评价",res);
this.list = res.data
})
},
/**
* 返回点击
*/
onBack(){
uni.navigateBack();
},
/**
* 订单tab点击
*/
onOrderTab(type){
this.OrderType = type;
// #ifdef H5
uni.redirectTo({
url: '/pages/MyOrderList/MyOrderList?type=' + type,
})
//#endif
},
/**
* 订单列表点击
*/
onOrderList(){
uni.navigateTo({
url: '/pages/OrderDetails/OrderDetails',
})
},
/**
* 评价点击
*/
onEvaluate(){
uni.navigateTo({
url: '/pages/MyEvaluatePush/MyEvaluatePush'
})
}
}
}
</script>
<style scoped lang="scss">
@import 'myevaluate.scss';
</style>