|
@@ -14,7 +14,7 @@
|
|
|
<template slot="filterRight">
|
|
|
<Button type="success" icon="md-add" @click="add()">添加</Button>
|
|
|
</template>
|
|
|
- <Table :loading="loading" ref="selection" :columns="columns" :data="list.lists" stripe>
|
|
|
+ <Table ref="selection" :columns="columns" :data="list.lists" stripe>
|
|
|
<template slot-scope="{ row }" slot="type">
|
|
|
<field-map :value="row.type" :map="type"></field-map>
|
|
|
</template>
|
|
@@ -90,9 +90,6 @@
|
|
|
this.$request('/system/request/type').success((r) => {
|
|
|
this.requestType = r.data
|
|
|
}).get()
|
|
|
- if (this.list) {
|
|
|
- this.loading = false;
|
|
|
- }
|
|
|
},
|
|
|
methods: {
|
|
|
add () {
|
|
@@ -129,7 +126,6 @@
|
|
|
},
|
|
|
data () {
|
|
|
return {
|
|
|
- loading: true,
|
|
|
requestType: [],
|
|
|
filter: {
|
|
|
keyword: '',
|