|
@@ -9,7 +9,6 @@
|
9
|
9
|
:options="searchsType"
|
10
|
10
|
@change="stateChange()"
|
11
|
11
|
></cube-select>
|
12
|
|
- <!-- <div class="cont"> -->
|
13
|
12
|
<div class="scroll-list-wrap">
|
14
|
13
|
<cube-scroll
|
15
|
14
|
ref="scroll"
|
|
@@ -22,6 +21,7 @@
|
22
|
21
|
<div
|
23
|
22
|
class="conent"
|
24
|
23
|
v-for="item in items"
|
|
24
|
+ :key="item.id"
|
25
|
25
|
@click="toIncidentDetails(item)"
|
26
|
26
|
>
|
27
|
27
|
<div class="head">
|
|
@@ -84,6 +84,9 @@
|
84
|
84
|
>
|
85
|
85
|
<span>{{ item.acceptDate | timeFormat("MM-dd HH:mm") }}</span>
|
86
|
86
|
</div>
|
|
87
|
+ <cube-form-group class="sub">
|
|
88
|
+ <cube-button @click="assign(item)">指派</cube-button>
|
|
89
|
+ </cube-form-group>
|
87
|
90
|
</div>
|
88
|
91
|
<div class="wushuju" v-show="wushuju">
|
89
|
92
|
<img src="./../../static/images/wushuju.svg" alt />
|
|
@@ -214,9 +217,6 @@ export default {
|
214
|
217
|
},
|
215
|
218
|
methods: {
|
216
|
219
|
getParamsState() {
|
217
|
|
- if (this.$route.params.searchType) {
|
218
|
|
- this.searchType = this.$route.params.searchType;
|
219
|
|
- }
|
220
|
220
|
if (this.$route.params.type) {
|
221
|
221
|
this.type = this.$route.params.type;
|
222
|
222
|
if (this.type === "todo") {
|
|
@@ -366,6 +366,12 @@ export default {
|
366
|
366
|
};
|
367
|
367
|
</script>
|
368
|
368
|
<style lang="stylus" rel="stylesheet/stylus" scoped>
|
|
369
|
+.sub {
|
|
370
|
+ background: #ececec;
|
|
371
|
+ .cube-btn {
|
|
372
|
+ background-color: #005395 !important;
|
|
373
|
+ }
|
|
374
|
+}
|
369
|
375
|
.scroll-list-wrap {
|
370
|
376
|
/* height: 350px */
|
371
|
377
|
height: 85vh;
|