MONSTER-ygh 1 anno fa
parent
commit
91820bbed1

+ 9 - 9
src/views/tourism/productManagement/formBox/scenicAreaTicketsSpecsForm.vue

@@ -39,8 +39,8 @@
                   v-model="scope.row.status" 
                   @changeFun="openAttraction(scope.row)" 
                   :disabled="false"
-                  :active-value="1"
-                  :inactive-value="0"
+                  :active-value="0"
+                  :inactive-value="1"
                   />
                 </template>
               </el-table-column>
@@ -321,6 +321,7 @@ export default {
         details: '/merchant/merchantPerformAuditorium/merchantGoodsDetail', // 规格详情
         list: '/merchant/merchantPerformAuditorium/merchantGoodsList',// 规格列表
         edit: '/merchant/merchantPerformAuditorium/saveMerchantGoods', // 编辑地址
+        updateStatusById: '/goods/goods/updateStatus',
       },
       performId: null,
       form: {
@@ -511,15 +512,14 @@ export default {
      * @returns {any}
      */
      openAttraction(row) {
-      console.log("row======",row)
-      this.$modal.confirm(`是否确认${row.status == 0 ? '上架' : '下架'} ${row.goodsName}点位吗?`).then( () => {
-        return addTableApi(this.configUrl.edit,{
-          ...row,
-          status: row.status == 0 ? 1 : 0
+      this.$modal.confirm(`是否确认${row.status == 1 ? '上架' : '下架'} ${row.goodsName}点位吗?`).then( () => {
+        return getTableDeatilsByIdApi(this.configUrl.updateStatusById,{
+          id: row.goodsId,
+          status: row.status == 1 ? 0 : 1
         });
       }).then(() => {
-        this.getList();
-        this.$modal.msgSuccess(`${row.status == 0 ? '上架' : '下架'}成功`);
+        this.getTableListFun({performId:this.performId})
+        this.$modal.msgSuccess(`${row.status == 1 ? '上架' : '下架'}成功`);
       }).catch((e) => {
         console.error("失败====",e)
       });

+ 26 - 11
src/views/tourism/productManagement/scenicAreaTickets.vue

@@ -51,6 +51,18 @@
                 </el-tooltip>
               </template>
             </el-table-column>
+            <el-table-column label="可用态" align="center" key="status" prop="status">
+                <template slot-scope="scope">
+                  <switchBox 
+                  :defaultChecked="true" 
+                  v-model="scope.row.status" 
+                  @changeFun="openAttraction(scope.row)" 
+                  :disabled="false"
+                  :active-value="0"
+                  :inactive-value="1"
+                  />
+                </template>
+              </el-table-column>
             <el-table-column
               label="操作"
               align="center"
@@ -127,7 +139,7 @@
           upload: '',// 导入地址
           download:'', // 下载模板地址
           export: '',// 导出地址
-          release: '/merchant/merchantIntroduction/updateStatus',// 上下线接口
+          updateStatusById: '/goods/performInfo/updateStatusById',
         },
         // 遮罩层
         loading: true,
@@ -257,21 +269,24 @@
           })
         }
       },
-      /** 开/闭 园 */
-      handleRelease(row) {
-        const ids = row.id;
-        this.$modal.confirm(`是否确认${row.status == 1 ? '上架' : '下架'}数据项?`).then( () => {
-          return releaseApi(this.configUrl.release,{
-            id: ids,
-            status: row.status == 1 ? 2 : 1
+      /**
+       * 修改状态
+       * @date 2023-11-22
+       * @returns {any}
+       */
+      openAttraction(row) {
+        this.$modal.confirm(`是否确认${row.status == 1 ? '上架' : '下架'} ${row.name}点位吗?`).then( () => {
+          return listTableApi(this.configUrl.updateStatusById,{
+            id: row.performId,
+            status: row.status == 1 ? 0 : 1
           });
         }).then(() => {
-          this.getList();
+          this.getList()
           this.$modal.msgSuccess(`${row.status == 1 ? '上架' : '下架'}成功`);
         }).catch((e) => {
-          console.error("发布失败====",e)
+          console.error("失败====",e)
         });
-      }
+      },
     }
   };
   </script>