Browse Source

发布时间

aleyds 11 months ago
parent
commit
d680b6ab4e
1 changed files with 13 additions and 14 deletions
  1. 13 14
      src/views/tourism/productManagement/scenicAreaTickets.vue

+ 13 - 14
src/views/tourism/productManagement/scenicAreaTickets.vue

@@ -16,24 +16,24 @@
             </el-col>
             <right-toolbar :showSearch.sync="showSearch" @queryTable="getList" :columns="columns"></right-toolbar>
           </el-row>
-  
+
           <el-table v-loading="loading" :data="tableList" @selection-change="handleSelectionChange">
             <el-table-column type="index" label="序号" align="center"  />
             <el-table-column label="票务名称" align="center" key="name" prop="name" v-if="columns[0].visible" :show-overflow-tooltip="true" />
             <el-table-column label="票务规格" align="center" key="goodsName" prop="goodsName" v-if="columns[1].visible" :show-overflow-tooltip="true" />
             <el-table-column label="可用状态" align="center" key="status" prop="status" v-if="columns[2].visible">
                 <template slot-scope="scope">
-                  <switchBox 
-                  :defaultChecked="true" 
-                  v-model="scope.row.status" 
-                  @changeFun="openAttraction(scope.row)" 
+                  <switchBox
+                  :defaultChecked="true"
+                  v-model="scope.row.status"
+                  @changeFun="openAttraction(scope.row)"
                   :disabled="false"
                   :active-value="1"
                   :inactive-value="0"
                   />
                 </template>
             </el-table-column>
-            <el-table-column label="发布时间" align="center" key="goodsName1" prop="goodsName1" v-if="columns[3].visible" :show-overflow-tooltip="true" />
+            <el-table-column label="发布时间" align="center" key="onlineTime" prop="onlineTime" v-if="columns[3].visible" :show-overflow-tooltip="true" />
             <el-table-column
               label="操作"
               align="center"
@@ -64,7 +64,7 @@
               </template>
             </el-table-column>
           </el-table>
-  
+
           <pagination
             v-show="total>0"
             :total="total"
@@ -79,11 +79,11 @@
       <addAndEditSpecs ref="addAndEditSpecs" @refresh="getList" />
     </div>
   </template>
-  
+
   <script>
-  import { 
-    listTableApi, 
-    delTableParamsApi, 
+  import {
+    listTableApi,
+    delTableParamsApi,
     publicByPutApi as releaseApi
     } from "@/api/CURD";
   import addAndEdit from "./formBox/scenicAreaTicketsForm.vue"
@@ -151,7 +151,7 @@
         listTableApi(
           this.configUrl.list,
           this.addDateRange(
-            this.queryParams, 
+            this.queryParams,
             this.dateRange)).then(response => {
               this.tableList = response.data.rows;
               this.total = response.data.total;
@@ -162,7 +162,7 @@
           this.tableList = [];
           this.total = 0;
           this.loading = false
-        }) 
+        })
       },
       /** 搜索按钮操作 */
       handleQuery() {
@@ -261,4 +261,3 @@
     }
   };
   </script>
-