|
@@ -1,7 +1,7 @@
|
|
|
<template>
|
|
|
<div class="app-container app-container-scheduling">
|
|
|
<div class="app-container_flex_auto">
|
|
|
- <div class="app-container_form" v-show="showSearch">
|
|
|
+ <div class="app-container_form app-container-queryform" v-show="showSearch">
|
|
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" label-width="68px">
|
|
|
<el-form-item v-if="queryShow.refundId" label="退款单号">
|
|
|
<el-input
|
|
@@ -86,7 +86,7 @@
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
</div>
|
|
|
- <div class="app-container_table">
|
|
|
+ <div class="app-container_table app-container-main">
|
|
|
<el-row :gutter="10" class="mb8">
|
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
</el-row>
|
|
@@ -231,11 +231,15 @@ export default {
|
|
|
thirdOrderNo: true,
|
|
|
status: true
|
|
|
},
|
|
|
+ show1: false
|
|
|
};
|
|
|
},
|
|
|
created() {
|
|
|
this.getList();
|
|
|
},
|
|
|
+ activated(){
|
|
|
+ //this.getList();
|
|
|
+ },
|
|
|
methods: {
|
|
|
/** 查询列表 */
|
|
|
getList() {
|