1
xuxueyang
2024-07-31 fba19090a86a4821fd70c301a5a0cd1e4b7f3244
sub_pages/supplier/flower-manage/flower-manage.vue
@@ -241,7 +241,7 @@
            })
         },
         async buttonStatus(item, status) {
            await this.$message.confirm(`确定${status==='off'?'下降':'上架'}此商品吗`)
            await this.$message.confirm(`确定${status==='off'?'下架':'上架'}此商品吗`)
            this.$message.showLoading()
            this.$http.request('get', '/api/supplier/flower/list/' + status, {
               params: {
@@ -250,7 +250,7 @@
            }).then(res => {
               if (res.code == 0) {
                  this.$message.showToast('操作成功')
                  item.status = status
                  item.status = (status == 'off' ? 'OFF' : 'UP')
                  item.statusStr = (status == 'off' ? '下架' : '上架')
               }
            }).finally(() => {