|
@@ -54,7 +54,7 @@
|
|
<el-table :data="list1" stripe style="width: 100%" fit :show-header="false">
|
|
<el-table :data="list1" stripe style="width: 100%" fit :show-header="false">
|
|
<el-table-column prop="field" width="300">
|
|
<el-table-column prop="field" width="300">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
- <span style="margin-left: 20px">{{ scope.row.field }}</span>
|
|
|
|
|
|
+ <span style="margin-left: 20px">{{ scope.row.field || '暂无' }}</span>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column prop="name" width="700">
|
|
<el-table-column prop="name" width="700">
|
|
@@ -137,8 +137,8 @@ export default {
|
|
};
|
|
};
|
|
},
|
|
},
|
|
async created() {
|
|
async created() {
|
|
- await this.searchInfo();
|
|
|
|
await this.searchType();
|
|
await this.searchType();
|
|
|
|
+ await this.searchInfo();
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
...dock({ dockQuery: 'query', dockFetch: 'fetch', goodsquery: 'goodsquery' }),
|
|
...dock({ dockQuery: 'query', dockFetch: 'fetch', goodsquery: 'goodsquery' }),
|