|
@@ -1,487 +1,587 @@
|
1
|
1
|
<template>
|
2
|
|
- <div class="bgColor">
|
3
|
|
- <div slot="content" class="scroll-wrapper">
|
4
|
|
- <div class="demo">
|
5
|
|
- <div class="scroll-list-wrap">
|
6
|
|
- <cube-scroll ref="scroll" :data="items" :options="options" @pulling-down="onPullingDown" @pulling-up="onPullingUp">
|
7
|
|
- <cube-select
|
8
|
|
- v-model="stateValue"
|
9
|
|
- :options="stateData"
|
10
|
|
- @change="stateChange()">
|
11
|
|
- </cube-select>
|
12
|
|
- <ul class="foods-wrapper">
|
13
|
|
- <li v-for="data in items" class="food-item border-1px" @click="toIncidentDetails(data)">
|
14
|
|
- <div class="food-content">
|
15
|
|
- <div class="title">
|
16
|
|
- <div><i class="iconfont icon-baoxiuliebiao"></i><span>报修编号: {{data.bxcode||"暂无"}}</span></div>
|
17
|
|
- <div :class="stateClassFn(data.state.name)">{{data.state.name}}</div>
|
18
|
|
- </div>
|
19
|
|
- <div class="conent">
|
20
|
|
- {{data.description}}
|
21
|
|
- </div>
|
22
|
|
- <div class="timeBox">
|
23
|
|
- <div>
|
24
|
|
- 维修人: {{data.incident.handlingPersonnelUser?data.incident.handlingPersonnelUser.name:"暂无"}}
|
25
|
|
- </div>
|
26
|
|
- <div>
|
27
|
|
- 报修时间: {{data.createTime}}
|
28
|
|
- </div>
|
29
|
|
- </div>
|
30
|
|
- </div>
|
31
|
|
- </li>
|
32
|
|
- <div class="wushuju" v-show="wushuju">
|
33
|
|
- <img src="./../../static/images/wushuju.svg" alt="">
|
34
|
|
- <div class="noDataFont">暂无数据</div>
|
35
|
|
- </div>
|
36
|
|
- </ul>
|
37
|
|
- <template v-if="customPullDown" slot="pulldown" slot-scope="props">
|
38
|
|
- <div v-if="props.pullDownRefresh" class="cube-pulldown-wrapper" :style="props.pullDownStyle">
|
39
|
|
- <div v-show="props.beforePullDown" class="before-trigger" :style="{paddingTop: props.bubbleY + 'px'}">
|
40
|
|
- <span :class="{rotate: props.bubbleY > pullDownRefreshThreshold - 40}">↓</span>
|
41
|
|
- </div>
|
42
|
|
- <div class="after-trigger" v-show="!props.beforePullDown">
|
43
|
|
- <div v-show="props.isPullingDown" class="loading">
|
44
|
|
- <cube-loading></cube-loading>
|
45
|
|
- </div>
|
46
|
|
- <div v-show="!props.isPullingDown" class="text">
|
47
|
|
- <span class="refresh-text">更新成功</span>
|
48
|
|
- </div>
|
49
|
|
- </div>
|
50
|
|
- </div>
|
51
|
|
- </template>
|
52
|
|
- </cube-scroll>
|
|
2
|
+ <div class="bgColor">
|
|
3
|
+ <div slot="content" class="scroll-wrapper">
|
|
4
|
+ <div class="demo">
|
|
5
|
+ <div class="scroll-list-wrap">
|
|
6
|
+ <cube-scroll
|
|
7
|
+ ref="scroll"
|
|
8
|
+ :data="items"
|
|
9
|
+ :options="options"
|
|
10
|
+ @pulling-down="onPullingDown"
|
|
11
|
+ @pulling-up="onPullingUp"
|
|
12
|
+ >
|
|
13
|
+ <cube-select
|
|
14
|
+ v-model="stateValue"
|
|
15
|
+ :options="stateData"
|
|
16
|
+ @change="stateChange()"
|
|
17
|
+ >
|
|
18
|
+ </cube-select>
|
|
19
|
+ <ul class="foods-wrapper">
|
|
20
|
+ <li
|
|
21
|
+ v-for="data in items"
|
|
22
|
+ class="food-item border-1px"
|
|
23
|
+ @click="toIncidentDetails(data)"
|
|
24
|
+ >
|
|
25
|
+ <div class="food-content">
|
|
26
|
+ <div class="title">
|
|
27
|
+ <div>
|
|
28
|
+ <i class="iconfont icon-baoxiuliebiao"></i
|
|
29
|
+ ><span>报修编号: {{ data.bxcode || "暂无" }}</span>
|
|
30
|
+ </div>
|
|
31
|
+ <div :class="stateClassFn(data.state.name)">
|
|
32
|
+ {{ data.state.name }}
|
|
33
|
+ </div>
|
|
34
|
+ </div>
|
|
35
|
+ <div class="conent">
|
|
36
|
+ {{ data.description }}
|
|
37
|
+ </div>
|
|
38
|
+ <div class="timeBox">
|
|
39
|
+ <div>
|
|
40
|
+ 维修人: {{
|
|
41
|
+ data.incident.handlingPersonnelUser
|
|
42
|
+ ? data.incident.handlingPersonnelUser.name
|
|
43
|
+ : "暂无"
|
|
44
|
+ }}
|
|
45
|
+ </div>
|
|
46
|
+ <div>报修时间: {{ data.createTime }}</div>
|
|
47
|
+ </div>
|
|
48
|
+ <div
|
|
49
|
+ class="timeBox noneBorder"
|
|
50
|
+ v-if="wxIncidentWithCmdb == 1"
|
|
51
|
+ >
|
|
52
|
+ <div>资产: {{ data.assetId || "无" }}</div>
|
|
53
|
+ </div>
|
53
|
54
|
</div>
|
54
|
|
- </div>
|
|
55
|
+ </li>
|
|
56
|
+ <div class="wushuju" v-show="wushuju">
|
|
57
|
+ <img src="./../../static/images/wushuju.svg" alt="" />
|
|
58
|
+ <div class="noDataFont">暂无数据</div>
|
|
59
|
+ </div>
|
|
60
|
+ </ul>
|
|
61
|
+ <template v-if="customPullDown" slot="pulldown" slot-scope="props">
|
|
62
|
+ <div
|
|
63
|
+ v-if="props.pullDownRefresh"
|
|
64
|
+ class="cube-pulldown-wrapper"
|
|
65
|
+ :style="props.pullDownStyle"
|
|
66
|
+ >
|
|
67
|
+ <div
|
|
68
|
+ v-show="props.beforePullDown"
|
|
69
|
+ class="before-trigger"
|
|
70
|
+ :style="{ paddingTop: props.bubbleY + 'px' }"
|
|
71
|
+ >
|
|
72
|
+ <span
|
|
73
|
+ :class="{
|
|
74
|
+ rotate: props.bubbleY > pullDownRefreshThreshold - 40,
|
|
75
|
+ }"
|
|
76
|
+ >↓</span
|
|
77
|
+ >
|
|
78
|
+ </div>
|
|
79
|
+ <div class="after-trigger" v-show="!props.beforePullDown">
|
|
80
|
+ <div v-show="props.isPullingDown" class="loading">
|
|
81
|
+ <cube-loading></cube-loading>
|
|
82
|
+ </div>
|
|
83
|
+ <div v-show="!props.isPullingDown" class="text">
|
|
84
|
+ <span class="refresh-text">更新成功</span>
|
|
85
|
+ </div>
|
|
86
|
+ </div>
|
|
87
|
+ </div>
|
|
88
|
+ </template>
|
|
89
|
+ </cube-scroll>
|
55
|
90
|
</div>
|
56
|
|
- <load-ing v-show="loadShow"></load-ing>
|
|
91
|
+ </div>
|
57
|
92
|
</div>
|
|
93
|
+ <load-ing v-show="loadShow"></load-ing>
|
|
94
|
+ </div>
|
58
|
95
|
</template>
|
59
|
96
|
<script>
|
60
|
|
-import Vue from 'vue'
|
61
|
|
-import CubePage from '../components/cube-page.vue'
|
62
|
|
-import SwitchOption from '../components/switch-option'
|
63
|
|
-import InputOption from '../components/input-option'
|
64
|
|
-import SelectOption from '../components/select-option'
|
65
|
|
-import {formatDate} from './../components/js/date.js';
|
66
|
|
-import LoadIng from './../views/loading.vue'
|
|
97
|
+import Vue from "vue";
|
|
98
|
+import CubePage from "../components/cube-page.vue";
|
|
99
|
+import SwitchOption from "../components/switch-option";
|
|
100
|
+import InputOption from "../components/input-option";
|
|
101
|
+import SelectOption from "../components/select-option";
|
|
102
|
+import { formatDate } from "./../components/js/date.js";
|
|
103
|
+import LoadIng from "./../views/loading.vue";
|
67
|
104
|
export default {
|
68
|
105
|
data() {
|
69
|
106
|
return {
|
70
|
|
- // items: _foods,
|
71
|
|
- loginUser:JSON.parse(localStorage.getItem("loginUser")),
|
72
|
|
- items:[],
|
|
107
|
+ // items: _foods,
|
|
108
|
+ incidentWithConsumable: localStorage.getItem("incidentWithConsumable"), //是否绑定耗材
|
|
109
|
+ wxIncidentWithCmdb: localStorage.getItem("wxIncidentWithCmdb"), //是否绑定资产
|
|
110
|
+ loginUser: JSON.parse(localStorage.getItem("loginUser")),
|
|
111
|
+ items: [],
|
73
|
112
|
pullDownRefresh: true,
|
74
|
113
|
pullDownRefreshThreshold: 60,
|
75
|
114
|
pullDownRefreshStop: 40,
|
76
|
|
- pullDownRefreshTxt: 'Refresh success',
|
|
115
|
+ pullDownRefreshTxt: "Refresh success",
|
77
|
116
|
pullUpLoad: true,
|
78
|
117
|
pullUpLoadThreshold: 0,
|
79
|
|
- pullUpLoadMoreTxt: 'Load more',
|
80
|
|
- pullUpLoadNoMoreTxt: '没有更多数据',
|
|
118
|
+ pullUpLoadMoreTxt: "Load more",
|
|
119
|
+ pullUpLoadNoMoreTxt: "没有更多数据",
|
81
|
120
|
customPullDown: true,
|
82
|
|
- wushuju:false,
|
83
|
|
- stateData:[
|
|
121
|
+ wushuju: false,
|
|
122
|
+ stateData: [
|
84
|
123
|
{
|
85
|
|
- text:"全部",
|
86
|
|
- value:0
|
87
|
|
- },{
|
88
|
|
- text:"未转换",
|
89
|
|
- value:1592
|
90
|
|
- },{
|
91
|
|
- text:"不受理",
|
92
|
|
- value:1593
|
93
|
|
- },{
|
94
|
|
- text:"处理中",
|
95
|
|
- value:1594
|
96
|
|
- },{
|
97
|
|
- text:"待评价",
|
98
|
|
- value:1595
|
99
|
|
- },{
|
100
|
|
- text:"已解决",
|
101
|
|
- value:1596
|
102
|
|
- },{
|
103
|
|
- text:"已撤回",
|
104
|
|
- value:1597
|
105
|
|
- }
|
|
124
|
+ text: "全部",
|
|
125
|
+ value: 0,
|
|
126
|
+ },
|
|
127
|
+ {
|
|
128
|
+ text: "未转换",
|
|
129
|
+ value: 1592,
|
|
130
|
+ },
|
|
131
|
+ {
|
|
132
|
+ text: "不受理",
|
|
133
|
+ value: 1593,
|
|
134
|
+ },
|
|
135
|
+ {
|
|
136
|
+ text: "处理中",
|
|
137
|
+ value: 1594,
|
|
138
|
+ },
|
|
139
|
+ {
|
|
140
|
+ text: "待评价",
|
|
141
|
+ value: 1595,
|
|
142
|
+ },
|
|
143
|
+ {
|
|
144
|
+ text: "已解决",
|
|
145
|
+ value: 1596,
|
|
146
|
+ },
|
|
147
|
+ {
|
|
148
|
+ text: "已撤回",
|
|
149
|
+ value: 1597,
|
|
150
|
+ },
|
106
|
151
|
],
|
107
|
|
- stateValue:0,
|
108
|
|
- sum:10,
|
109
|
|
- idx:0,
|
110
|
|
- stateClass:"",
|
111
|
|
- loadShow:true
|
112
|
|
- }
|
|
152
|
+ stateValue: 0,
|
|
153
|
+ sum: 10,
|
|
154
|
+ idx: 0,
|
|
155
|
+ stateClass: "",
|
|
156
|
+ loadShow: true,
|
|
157
|
+ };
|
113
|
158
|
},
|
114
|
159
|
components: {
|
115
|
160
|
CubePage,
|
116
|
161
|
SwitchOption,
|
117
|
162
|
InputOption,
|
118
|
163
|
SelectOption,
|
119
|
|
- LoadIng
|
|
164
|
+ LoadIng,
|
120
|
165
|
},
|
121
|
166
|
computed: {
|
122
|
167
|
options() {
|
123
|
168
|
return {
|
124
|
169
|
pullDownRefresh: this.pullDownRefreshObj,
|
125
|
170
|
pullUpLoad: this.pullUpLoadObj,
|
126
|
|
- scrollbar: true
|
127
|
|
- }
|
|
171
|
+ scrollbar: true,
|
|
172
|
+ };
|
128
|
173
|
},
|
129
|
|
- pullDownRefreshObj: function() {
|
130
|
|
- return this.pullDownRefresh ? {
|
131
|
|
- threshold: parseInt(this.pullDownRefreshThreshold),
|
132
|
|
- txt: this.pullDownRefreshTxt
|
133
|
|
- } : false
|
|
174
|
+ pullDownRefreshObj: function () {
|
|
175
|
+ return this.pullDownRefresh
|
|
176
|
+ ? {
|
|
177
|
+ threshold: parseInt(this.pullDownRefreshThreshold),
|
|
178
|
+ txt: this.pullDownRefreshTxt,
|
|
179
|
+ }
|
|
180
|
+ : false;
|
|
181
|
+ },
|
|
182
|
+ pullUpLoadObj: function () {
|
|
183
|
+ return this.pullUpLoad
|
|
184
|
+ ? {
|
|
185
|
+ threshold: parseInt(this.pullUpLoadThreshold),
|
|
186
|
+ txt: {
|
|
187
|
+ more: this.pullUpLoadMoreTxt,
|
|
188
|
+ noMore: this.pullUpLoadNoMoreTxt,
|
|
189
|
+ },
|
|
190
|
+ }
|
|
191
|
+ : false;
|
134
|
192
|
},
|
135
|
|
- pullUpLoadObj: function() {
|
136
|
|
- return this.pullUpLoad ? {
|
137
|
|
- threshold: parseInt(this.pullUpLoadThreshold),
|
138
|
|
- txt: {
|
139
|
|
- more: this.pullUpLoadMoreTxt,
|
140
|
|
- noMore: this.pullUpLoadNoMoreTxt
|
141
|
|
- }
|
142
|
|
- } : false
|
143
|
|
- }
|
144
|
193
|
},
|
145
|
194
|
methods: {
|
146
|
|
- getParamsState(){
|
147
|
|
- if(this.$route.params.state){
|
148
|
|
- this.stateValue=this.$route.params.state
|
|
195
|
+ getParamsState() {
|
|
196
|
+ if (this.$route.params.state) {
|
|
197
|
+ this.stateValue = this.$route.params.state;
|
149
|
198
|
}
|
150
|
199
|
},
|
151
|
|
- stateClassFn(data){
|
152
|
|
- if(data=="未转换"){
|
153
|
|
- return "weishouli"
|
154
|
|
- }else if(data=="不受理"){
|
155
|
|
- return "bushouli"
|
156
|
|
- }else if(data=="处理中"){
|
157
|
|
- return "chulizhong"
|
158
|
|
- }else if(data=="待评价"){
|
159
|
|
- return "daipingjia"
|
160
|
|
- }else if(data=="已解决"){
|
161
|
|
- return "yijiejue"
|
162
|
|
- }else if(data=="已撤回"){
|
163
|
|
- return "yichehui"
|
164
|
|
- }else{
|
165
|
|
- return "yichehui"
|
|
200
|
+ stateClassFn(data) {
|
|
201
|
+ if (data == "未转换") {
|
|
202
|
+ return "weishouli";
|
|
203
|
+ } else if (data == "不受理") {
|
|
204
|
+ return "bushouli";
|
|
205
|
+ } else if (data == "处理中") {
|
|
206
|
+ return "chulizhong";
|
|
207
|
+ } else if (data == "待评价") {
|
|
208
|
+ return "daipingjia";
|
|
209
|
+ } else if (data == "已解决") {
|
|
210
|
+ return "yijiejue";
|
|
211
|
+ } else if (data == "已撤回") {
|
|
212
|
+ return "yichehui";
|
|
213
|
+ } else {
|
|
214
|
+ return "yichehui";
|
166
|
215
|
}
|
167
|
216
|
},
|
168
|
|
- stateChange(){
|
169
|
|
- var that=this;
|
170
|
|
- this.loadShow=true;
|
171
|
|
- that.items=[];
|
172
|
|
- this.$http.post('service/apply/bpm/fetchServiceTasks',{
|
173
|
|
- 'assignee':that.loginUser.account,
|
174
|
|
- 'state':that.stateValue,
|
175
|
|
- 'idx':0,
|
176
|
|
- 'sum':10
|
177
|
|
- }).then(function(res){
|
178
|
|
- if(res.data.data.length>0){
|
179
|
|
- for(var i=0;i<res.data.data.length;i++){
|
180
|
|
- res.data.data[i].createTime=formatDate(new Date(res.data.data[i].createTime), 'yyyy-MM-dd hh:mm');
|
181
|
|
- }
|
182
|
|
- that.items=res.data.data;
|
183
|
|
- that.wushuju=false
|
184
|
|
- }else{
|
185
|
|
- that.wushuju=true
|
186
|
|
- }
|
187
|
|
- that.loadShow=false
|
|
217
|
+ stateChange() {
|
|
218
|
+ var that = this;
|
|
219
|
+ this.loadShow = true;
|
|
220
|
+ that.items = [];
|
|
221
|
+ this.$http
|
|
222
|
+ .post("service/apply/bpm/fetchServiceTasks", {
|
|
223
|
+ assignee: that.loginUser.account,
|
|
224
|
+ state: that.stateValue,
|
|
225
|
+ idx: 0,
|
|
226
|
+ sum: 10,
|
188
|
227
|
})
|
|
228
|
+ .then(function (res) {
|
|
229
|
+ if (res.data.data.length > 0) {
|
|
230
|
+ for (var i = 0; i < res.data.data.length; i++) {
|
|
231
|
+ res.data.data[i].createTime = formatDate(
|
|
232
|
+ new Date(res.data.data[i].createTime),
|
|
233
|
+ "yyyy-MM-dd hh:mm"
|
|
234
|
+ );
|
|
235
|
+ }
|
|
236
|
+ that.items = res.data.data;
|
|
237
|
+ that.wushuju = false;
|
|
238
|
+ } else {
|
|
239
|
+ that.wushuju = true;
|
|
240
|
+ }
|
|
241
|
+ that.loadShow = false;
|
|
242
|
+ });
|
189
|
243
|
},
|
190
|
|
- toIncidentDetails(data){
|
|
244
|
+ toIncidentDetails(data) {
|
191
|
245
|
this.$router.push({
|
192
|
|
- name:'IncidentDetails',
|
193
|
|
- params:{
|
194
|
|
- data:JSON.stringify(data)
|
195
|
|
- }
|
196
|
|
- })
|
|
246
|
+ name: "IncidentDetails",
|
|
247
|
+ params: {
|
|
248
|
+ data: JSON.stringify(data),
|
|
249
|
+ },
|
|
250
|
+ });
|
197
|
251
|
},
|
198
|
252
|
onPullingDown() {
|
199
|
253
|
// 模拟更新数据
|
200
|
|
- this.idx=0;
|
|
254
|
+ this.idx = 0;
|
201
|
255
|
setTimeout(() => {
|
202
|
|
- var that=this;
|
|
256
|
+ var that = this;
|
203
|
257
|
// that.items=[];
|
204
|
|
- this.$http.post('service/apply/bpm/fetchServiceTasks',{
|
205
|
|
- 'assignee':that.loginUser.account,
|
206
|
|
- 'state':that.stateValue,
|
207
|
|
- 'idx':0,
|
208
|
|
- 'sum':10
|
209
|
|
- }).then(function(res){
|
210
|
|
- if(res.data.data.length>0){
|
211
|
|
- that.wushuju=false;
|
212
|
|
- for(var i=0;i<res.data.data.length;i++){
|
213
|
|
- res.data.data[i].createTime=formatDate(new Date(res.data.data[i].createTime), 'yyyy-MM-dd hh:mm');
|
214
|
|
- }
|
215
|
|
- that.items=res.data.data;
|
216
|
|
- }else{
|
217
|
|
- that.wushuju=true;
|
218
|
|
- that.$refs.scroll.forceUpdate()
|
219
|
|
- }
|
220
|
|
- })
|
221
|
|
- }, 1000)
|
222
|
|
- },
|
223
|
|
- getData(idx,sum){
|
224
|
|
- var that=this;
|
225
|
|
- this.$http.post('service/apply/bpm/fetchServiceTasks',{
|
226
|
|
- 'assignee':that.loginUser.account,
|
227
|
|
- 'state':that.stateValue,
|
228
|
|
- 'idx':idx,
|
229
|
|
- 'sum':sum
|
230
|
|
- }).then(function(res){
|
231
|
|
- if(res.data.data.length>0){
|
232
|
|
- that.wushuju=false;
|
233
|
|
- for(var i=0;i<res.data.data.length;i++){
|
234
|
|
- res.data.data[i].createTime=formatDate(new Date(res.data.data[i].createTime), 'yyyy-MM-dd hh:mm');
|
|
258
|
+ this.$http
|
|
259
|
+ .post("service/apply/bpm/fetchServiceTasks", {
|
|
260
|
+ assignee: that.loginUser.account,
|
|
261
|
+ state: that.stateValue,
|
|
262
|
+ idx: 0,
|
|
263
|
+ sum: 10,
|
|
264
|
+ })
|
|
265
|
+ .then(function (res) {
|
|
266
|
+ if (res.data.data.length > 0) {
|
|
267
|
+ that.wushuju = false;
|
|
268
|
+ for (var i = 0; i < res.data.data.length; i++) {
|
|
269
|
+ res.data.data[i].createTime = formatDate(
|
|
270
|
+ new Date(res.data.data[i].createTime),
|
|
271
|
+ "yyyy-MM-dd hh:mm"
|
|
272
|
+ );
|
235
|
273
|
}
|
236
|
|
- that.items=res.data.data;
|
237
|
|
- }else{
|
238
|
|
- that.wushuju=true
|
|
274
|
+ that.items = res.data.data;
|
|
275
|
+ } else {
|
|
276
|
+ that.wushuju = true;
|
|
277
|
+ that.$refs.scroll.forceUpdate();
|
239
|
278
|
}
|
240
|
|
- that.loadShow=false
|
|
279
|
+ });
|
|
280
|
+ }, 1000);
|
|
281
|
+ },
|
|
282
|
+ getData(idx, sum) {
|
|
283
|
+ var that = this;
|
|
284
|
+ this.$http
|
|
285
|
+ .post("service/apply/bpm/fetchServiceTasks", {
|
|
286
|
+ assignee: that.loginUser.account,
|
|
287
|
+ state: that.stateValue,
|
|
288
|
+ idx: idx,
|
|
289
|
+ sum: sum,
|
241
|
290
|
})
|
|
291
|
+ .then(function (res) {
|
|
292
|
+ if (res.data.data.length > 0) {
|
|
293
|
+ that.wushuju = false;
|
|
294
|
+ for (var i = 0; i < res.data.data.length; i++) {
|
|
295
|
+ res.data.data[i].createTime = formatDate(
|
|
296
|
+ new Date(res.data.data[i].createTime),
|
|
297
|
+ "yyyy-MM-dd hh:mm"
|
|
298
|
+ );
|
|
299
|
+ }
|
|
300
|
+ that.items = res.data.data;
|
|
301
|
+ } else {
|
|
302
|
+ that.wushuju = true;
|
|
303
|
+ }
|
|
304
|
+ that.loadShow = false;
|
|
305
|
+ });
|
242
|
306
|
},
|
243
|
307
|
onPullingUp() {
|
244
|
|
- var that=this;
|
245
|
|
- that.idx=that.idx+1;
|
246
|
|
- this.$http.post('service/apply/bpm/fetchServiceTasks',{
|
247
|
|
- 'assignee':that.loginUser.account,
|
248
|
|
- 'state':that.stateValue,
|
249
|
|
- 'idx':that.idx,
|
250
|
|
- 'sum':that.sum,
|
251
|
|
- }).then(function(res){
|
252
|
|
- for(var i=0;i<res.data.data.length;i++){
|
253
|
|
- res.data.data[i].createTime=formatDate(new Date(res.data.data[i].createTime), 'yyyy-MM-dd hh:mm');
|
254
|
|
- }
|
255
|
|
- setTimeout(() => {
|
256
|
|
- if(res.data.data.length>0){
|
257
|
|
- that.items=that.items.concat(res.data.data);
|
258
|
|
- }else{
|
259
|
|
- that.$refs.scroll.forceUpdate()
|
260
|
|
- }
|
261
|
|
- }, 1000)
|
|
308
|
+ var that = this;
|
|
309
|
+ that.idx = that.idx + 1;
|
|
310
|
+ this.$http
|
|
311
|
+ .post("service/apply/bpm/fetchServiceTasks", {
|
|
312
|
+ assignee: that.loginUser.account,
|
|
313
|
+ state: that.stateValue,
|
|
314
|
+ idx: that.idx,
|
|
315
|
+ sum: that.sum,
|
262
|
316
|
})
|
|
317
|
+ .then(function (res) {
|
|
318
|
+ for (var i = 0; i < res.data.data.length; i++) {
|
|
319
|
+ res.data.data[i].createTime = formatDate(
|
|
320
|
+ new Date(res.data.data[i].createTime),
|
|
321
|
+ "yyyy-MM-dd hh:mm"
|
|
322
|
+ );
|
|
323
|
+ }
|
|
324
|
+ setTimeout(() => {
|
|
325
|
+ if (res.data.data.length > 0) {
|
|
326
|
+ that.items = that.items.concat(res.data.data);
|
|
327
|
+ } else {
|
|
328
|
+ that.$refs.scroll.forceUpdate();
|
|
329
|
+ }
|
|
330
|
+ }, 1000);
|
|
331
|
+ });
|
263
|
332
|
},
|
264
|
333
|
updatePullDownRefresh(val) {
|
265
|
|
- this.pullDownRefresh = val
|
|
334
|
+ this.pullDownRefresh = val;
|
266
|
335
|
},
|
267
|
336
|
updatePullDownRefreshThreshold(val) {
|
268
|
|
- this.pullDownRefreshThreshold = val
|
|
337
|
+ this.pullDownRefreshThreshold = val;
|
269
|
338
|
},
|
270
|
339
|
updatePullDownRefreshTxt(val) {
|
271
|
|
- this.pullDownRefreshTxt = val
|
|
340
|
+ this.pullDownRefreshTxt = val;
|
272
|
341
|
},
|
273
|
342
|
updatePullUpLoad(val) {
|
274
|
|
- this.pullUpLoad = val
|
|
343
|
+ this.pullUpLoad = val;
|
275
|
344
|
},
|
276
|
345
|
updatePullUpLoadThreshold(val) {
|
277
|
|
- this.pullUpLoadThreshold = val
|
|
346
|
+ this.pullUpLoadThreshold = val;
|
278
|
347
|
},
|
279
|
348
|
updatePullUpLoadMoreTxt(val) {
|
280
|
|
- this.pullUpLoadMoreTxt = val
|
|
349
|
+ this.pullUpLoadMoreTxt = val;
|
281
|
350
|
},
|
282
|
351
|
updatePullUpLoadNoMoreTxt(val) {
|
283
|
|
- this.pullUpLoadNoMoreTxt = val
|
|
352
|
+ this.pullUpLoadNoMoreTxt = val;
|
284
|
353
|
},
|
285
|
354
|
updateCustomPullDown(val) {
|
286
|
|
- this.customPullDown = val
|
|
355
|
+ this.customPullDown = val;
|
287
|
356
|
},
|
288
|
357
|
rebuildScroll() {
|
289
|
358
|
Vue.nextTick(() => {
|
290
|
|
- this.$refs.scroll.destroy()
|
291
|
|
- this.$refs.scroll.initScroll()
|
292
|
|
- })
|
293
|
|
- }
|
|
359
|
+ this.$refs.scroll.destroy();
|
|
360
|
+ this.$refs.scroll.initScroll();
|
|
361
|
+ });
|
|
362
|
+ },
|
294
|
363
|
},
|
295
|
|
- created(){
|
296
|
|
- this.getParamsState();
|
297
|
|
- this.getData(this.idx,this.sum);
|
298
|
|
- }
|
299
|
|
-}
|
|
364
|
+ created() {
|
|
365
|
+ this.getParamsState();
|
|
366
|
+ this.getData(this.idx, this.sum);
|
|
367
|
+ },
|
|
368
|
+};
|
300
|
369
|
</script>
|
301
|
370
|
<style lang="stylus" rel="stylesheet/stylus" scoped>
|
302
|
|
-.scroll-list-wrap
|
|
371
|
+.scroll-list-wrap {
|
303
|
372
|
/* height: 350px */
|
304
|
|
- height:95vh
|
|
373
|
+ height: 95vh;
|
305
|
374
|
/* border: 1px solid rgba(0, 0, 0, 0.1) */
|
306
|
|
- border-radius: 5px
|
307
|
|
- transform: rotate(0deg) // fix 子元素超出边框圆角部分不隐藏的问题
|
308
|
|
- overflow: hidden
|
|
375
|
+ border-radius: 5px;
|
|
376
|
+ transform: rotate(0deg); // fix 子元素超出边框圆角部分不隐藏的问题
|
|
377
|
+ overflow: hidden;
|
|
378
|
+}
|
|
379
|
+
|
|
380
|
+.foods-wrapper {
|
|
381
|
+ .food-item {
|
|
382
|
+ display: flex;
|
309
|
383
|
|
310
|
|
-.foods-wrapper
|
311
|
|
- .food-item
|
312
|
|
- display: flex
|
313
|
384
|
/* padding: 18px */
|
314
|
385
|
/* border-bottom: 1px solid rgba(7, 17, 27, 0.1) */
|
315
|
386
|
/* border-top: 1px solid rgba(7, 17, 27, 0.1)!important */
|
|
387
|
+ &:last-child {
|
|
388
|
+ border-none();
|
|
389
|
+ margin-bottom: 0;
|
|
390
|
+ }
|
316
|
391
|
|
317
|
|
- &:last-child
|
318
|
|
- border-none()
|
319
|
|
- margin-bottom: 0
|
320
|
|
- .icon
|
321
|
|
- flex: 0 0 57px
|
322
|
|
- margin-right: 10px
|
|
392
|
+ .icon {
|
|
393
|
+ flex: 0 0 57px;
|
|
394
|
+ margin-right: 10px;
|
|
395
|
+ }
|
323
|
396
|
|
324
|
|
- .food-content
|
325
|
|
- flex: 1
|
326
|
|
- .name
|
327
|
|
- margin: 2px 0 8px 0
|
328
|
|
- height: 14px
|
329
|
|
- line-height: 14px
|
330
|
|
- font-size: 14px
|
331
|
|
- color: rgb(7, 17, 27)
|
332
|
|
- .description, .extra
|
333
|
|
- line-height: 10px
|
334
|
|
- font-size: 10px
|
335
|
|
- color: rgb(147, 153, 159)
|
336
|
|
- .description
|
337
|
|
- line-height: 12px
|
338
|
|
- margin-bottom: 8px
|
339
|
|
- .extra
|
340
|
|
- .count
|
341
|
|
- margin-right: 12px
|
342
|
|
- .price
|
343
|
|
- font-weight: 700
|
344
|
|
- line-height: 24px
|
345
|
|
- .now
|
346
|
|
- margin-right: 8px
|
347
|
|
- font-size: 14px
|
348
|
|
- color: rgb(240, 20, 20)
|
349
|
|
- .old
|
350
|
|
- text-decoration: line-through
|
351
|
|
- font-size: 10px
|
352
|
|
- color: rgb(147, 153, 159)
|
353
|
|
- .cartcontrol-wrapper
|
354
|
|
- position: absolute
|
355
|
|
- right: 0
|
356
|
|
- bottom: 12px
|
357
|
|
- .scroll-wrapper{
|
358
|
|
- .cube-pulldown-wrapper{
|
359
|
|
- .before-trigger{
|
360
|
|
- font-size: 30px;
|
361
|
|
- line-height: 30px;
|
362
|
|
- align-self: flex-end;
|
363
|
|
- span{
|
364
|
|
- display: inline-block;
|
365
|
|
- transition: all 0.3s;
|
366
|
|
- color: #666;
|
367
|
|
- &.rotate{
|
368
|
|
- transform: rotate(180deg)
|
369
|
|
- }
|
|
397
|
+ .food-content {
|
|
398
|
+ flex: 1;
|
|
399
|
+
|
|
400
|
+ .name {
|
|
401
|
+ margin: 2px 0 8px 0;
|
|
402
|
+ height: 14px;
|
|
403
|
+ line-height: 14px;
|
|
404
|
+ font-size: 14px;
|
|
405
|
+ color: rgb(7, 17, 27);
|
370
|
406
|
}
|
371
|
|
- }
|
372
|
|
- .after-trigger{
|
373
|
|
- .refresh-text{
|
374
|
|
- color: grey
|
|
407
|
+
|
|
408
|
+ .description, .extra {
|
|
409
|
+ line-height: 10px;
|
|
410
|
+ font-size: 10px;
|
|
411
|
+ color: rgb(147, 153, 159);
|
|
412
|
+ }
|
|
413
|
+
|
|
414
|
+ .description {
|
|
415
|
+ line-height: 12px;
|
|
416
|
+ margin-bottom: 8px;
|
|
417
|
+ }
|
|
418
|
+
|
|
419
|
+ .extra {
|
|
420
|
+ .count {
|
|
421
|
+ margin-right: 12px;
|
|
422
|
+ }
|
|
423
|
+ }
|
|
424
|
+
|
|
425
|
+ .price {
|
|
426
|
+ font-weight: 700;
|
|
427
|
+ line-height: 24px;
|
|
428
|
+
|
|
429
|
+ .now {
|
|
430
|
+ margin-right: 8px;
|
|
431
|
+ font-size: 14px;
|
|
432
|
+ color: rgb(240, 20, 20);
|
|
433
|
+ }
|
|
434
|
+
|
|
435
|
+ .old {
|
|
436
|
+ text-decoration: line-through;
|
|
437
|
+ font-size: 10px;
|
|
438
|
+ color: rgb(147, 153, 159);
|
|
439
|
+ }
|
|
440
|
+ }
|
|
441
|
+
|
|
442
|
+ .cartcontrol-wrapper {
|
|
443
|
+ position: absolute;
|
|
444
|
+ right: 0;
|
|
445
|
+ bottom: 12px;
|
|
446
|
+
|
|
447
|
+ .scroll-wrapper {
|
|
448
|
+ .cube-pulldown-wrapper {
|
|
449
|
+ .before-trigger {
|
|
450
|
+ font-size: 30px;
|
|
451
|
+ line-height: 30px;
|
|
452
|
+ align-self: flex-end;
|
|
453
|
+
|
|
454
|
+ span {
|
|
455
|
+ display: inline-block;
|
|
456
|
+ transition: all 0.3s;
|
|
457
|
+ color: #666;
|
|
458
|
+
|
|
459
|
+ &.rotate {
|
|
460
|
+ transform: rotate(180deg);
|
|
461
|
+ }
|
|
462
|
+ }
|
|
463
|
+ }
|
|
464
|
+
|
|
465
|
+ .after-trigger {
|
|
466
|
+ .refresh-text {
|
|
467
|
+ color: grey;
|
|
468
|
+ }
|
|
469
|
+ }
|
|
470
|
+ }
|
|
471
|
+ }
|
375
|
472
|
}
|
376
|
473
|
}
|
377
|
|
- }
|
|
474
|
+ }
|
378
|
475
|
}
|
379
|
476
|
</style>
|
380
|
477
|
<style scoped>
|
381
|
|
-.bgColor{
|
382
|
|
- background-color: white
|
|
478
|
+.bgColor {
|
|
479
|
+ background-color: white;
|
383
|
480
|
}
|
384
|
|
-.food-item{
|
385
|
|
- border-top: .16rem rgb(238,238,238) solid;
|
|
481
|
+.food-item {
|
|
482
|
+ border-top: 0.16rem rgb(238, 238, 238) solid;
|
386
|
483
|
}
|
387
|
|
-.food-content{
|
388
|
|
- border-top: .01rem rgb(223, 222, 222) solid;
|
389
|
|
- border-bottom: .01rem rgb(223, 222, 222) solid;
|
|
484
|
+.food-content {
|
|
485
|
+ border-top: 0.01rem rgb(223, 222, 222) solid;
|
|
486
|
+ border-bottom: 0.01rem rgb(223, 222, 222) solid;
|
390
|
487
|
}
|
391
|
|
-.cube-select{
|
392
|
|
- height: .88rem;
|
393
|
|
- line-height: .88rem;
|
394
|
|
- padding: 0 .24rem;
|
395
|
|
- font-size: .36rem;
|
396
|
|
- color:#333333
|
|
488
|
+.cube-select {
|
|
489
|
+ height: 0.88rem;
|
|
490
|
+ line-height: 0.88rem;
|
|
491
|
+ padding: 0 0.24rem;
|
|
492
|
+ font-size: 0.36rem;
|
|
493
|
+ color: #333333;
|
397
|
494
|
}
|
398
|
|
-.title{
|
|
495
|
+.title {
|
399
|
496
|
display: flex;
|
400
|
|
- justify-content:space-between;
|
401
|
|
- height: .7rem;
|
402
|
|
- line-height: .7rem;
|
403
|
|
- border-top: .01rem rgb(223, 222, 222) solid;
|
404
|
|
- padding: 0 .24rem;
|
405
|
|
- border-bottom: .01rem rgb(223, 222, 222) solid;
|
|
497
|
+ justify-content: space-between;
|
|
498
|
+ height: 0.7rem;
|
|
499
|
+ line-height: 0.7rem;
|
|
500
|
+ border-top: 0.01rem rgb(223, 222, 222) solid;
|
|
501
|
+ padding: 0 0.24rem;
|
|
502
|
+ border-bottom: 0.01rem rgb(223, 222, 222) solid;
|
406
|
503
|
}
|
407
|
|
-.title i{
|
408
|
|
- font-size: .32rem;
|
409
|
|
- color: #005395
|
|
504
|
+.title i {
|
|
505
|
+ font-size: 0.32rem;
|
|
506
|
+ color: #005395;
|
410
|
507
|
}
|
411
|
|
-.title div:nth-child(1){
|
412
|
|
- font-size: .32rem;
|
|
508
|
+.title div:nth-child(1) {
|
|
509
|
+ font-size: 0.32rem;
|
413
|
510
|
}
|
414
|
|
-.title div:nth-child(1) span{
|
|
511
|
+.title div:nth-child(1) span {
|
415
|
512
|
display: inline-block;
|
416
|
|
- margin-left: .08rem
|
|
513
|
+ margin-left: 0.08rem;
|
417
|
514
|
}
|
418
|
|
-.title div:nth-child(2){
|
419
|
|
- padding: .05rem .3rem;
|
|
515
|
+.title div:nth-child(2) {
|
|
516
|
+ padding: 0.05rem 0.3rem;
|
420
|
517
|
/* border: 0.01rem rgb(0,0,255) solid; */
|
421
|
|
- border-radius: 16px ;
|
|
518
|
+ border-radius: 16px;
|
422
|
519
|
/* color: rgb(0,0,255); */
|
423
|
|
- height: .25rem;
|
424
|
|
- line-height: .25rem;
|
425
|
|
- margin-top: .15rem;
|
426
|
|
- font-size: .24rem
|
|
520
|
+ height: 0.25rem;
|
|
521
|
+ line-height: 0.25rem;
|
|
522
|
+ margin-top: 0.15rem;
|
|
523
|
+ font-size: 0.24rem;
|
427
|
524
|
}
|
428
|
|
-.weishouli{
|
429
|
|
- color:#991f00;
|
|
525
|
+.weishouli {
|
|
526
|
+ color: #991f00;
|
430
|
527
|
border: 0.01rem #991f00 solid;
|
431
|
|
- background-color: #f4e8e5
|
|
528
|
+ background-color: #f4e8e5;
|
432
|
529
|
}
|
433
|
|
-.bushouli{
|
434
|
|
- color:#666666;
|
|
530
|
+.bushouli {
|
|
531
|
+ color: #666666;
|
435
|
532
|
background-color: #eeeeee;
|
436
|
533
|
border: 0.01rem #666666 solid;
|
437
|
534
|
}
|
438
|
|
-.chulizhong{
|
439
|
|
- color:#003057;
|
|
535
|
+.chulizhong {
|
|
536
|
+ color: #003057;
|
440
|
537
|
background-color: #e5eaee;
|
441
|
538
|
border: 0.01rem #003057 solid;
|
442
|
539
|
}
|
443
|
|
-.daipingjia{
|
444
|
|
- color:#825b00;
|
|
540
|
+.daipingjia {
|
|
541
|
+ color: #825b00;
|
445
|
542
|
background-color: #f2eee5;
|
446
|
543
|
border: 0.01rem #825b00 solid;
|
447
|
544
|
}
|
448
|
|
-.yijiejue{
|
449
|
|
- color:#40a19c;
|
|
545
|
+.yijiejue {
|
|
546
|
+ color: #40a19c;
|
450
|
547
|
background-color: #ebf5f5;
|
451
|
548
|
border: 0.01rem #40a19c solid;
|
452
|
549
|
}
|
453
|
|
-.yichehui{
|
454
|
|
- color:#48a843;
|
|
550
|
+.yichehui {
|
|
551
|
+ color: #48a843;
|
455
|
552
|
background-color: #ecf6ec;
|
456
|
553
|
border: 0.01rem #48a843 solid;
|
457
|
554
|
}
|
458
|
|
-.conent{
|
459
|
|
- font-size: .28rem;
|
460
|
|
- line-height: .39rem;
|
|
555
|
+.conent {
|
|
556
|
+ font-size: 0.28rem;
|
|
557
|
+ line-height: 0.39rem;
|
461
|
558
|
overflow: hidden;
|
462
|
559
|
display: -webkit-box;
|
463
|
560
|
-webkit-line-clamp: 2;
|
464
|
561
|
-webkit-box-orient: vertical;
|
465
|
562
|
word-break: break-all;
|
466
|
|
- padding: 0 .64rem;
|
467
|
|
- margin: .24rem 0
|
|
563
|
+ padding: 0 0.64rem;
|
|
564
|
+ margin: 0.24rem 0;
|
468
|
565
|
}
|
469
|
|
-.timeBox{
|
|
566
|
+.timeBox {
|
470
|
567
|
display: flex;
|
471
|
|
- justify-content:space-between;
|
472
|
|
- font-size: .24rem;
|
|
568
|
+ justify-content: space-between;
|
|
569
|
+ font-size: 0.24rem;
|
473
|
570
|
color: #999999;
|
474
|
|
- border-top: .01rem rgb(223, 222, 222) solid;
|
475
|
|
- height: .7rem;
|
476
|
|
- line-height: .7rem;
|
477
|
|
- padding: 0 .24rem 0 .64rem
|
|
571
|
+ height: 0.7rem;
|
|
572
|
+ line-height: 0.7rem;
|
|
573
|
+ padding: 0 0.24rem 0 0.24rem;
|
|
574
|
+ border-top: 0.01rem rgb(223, 222, 222) solid;
|
|
575
|
+}
|
|
576
|
+.timeBox.noneBorder {
|
|
577
|
+ border-top: none;
|
478
|
578
|
}
|
479
|
|
-.wushuju{
|
480
|
|
- margin-top: 2.4rem;
|
481
|
|
- text-align: center;
|
|
579
|
+.wushuju {
|
|
580
|
+ margin-top: 2.4rem;
|
|
581
|
+ text-align: center;
|
482
|
582
|
}
|
483
|
|
-.wushuju img{
|
484
|
|
- width: 5.12rem;
|
485
|
|
- height: 2.84rem;
|
|
583
|
+.wushuju img {
|
|
584
|
+ width: 5.12rem;
|
|
585
|
+ height: 2.84rem;
|
486
|
586
|
}
|
487
|
587
|
</style>
|