浏览代码

2023.10.31 - 修复活动停止bug

GuYun-D 1 年之前
父节点
当前提交
7dbd8ba803

+ 3 - 3
.env.development

@@ -4,11 +4,11 @@ ENV = 'development'
 # base api
 VUE_APP_BASE_API = '/dev-api'
 # 开发环境
-# VUE_APP_DOMAIN_PREFIX = 'http://192.168.0.91:9007'
+# VUE_APP_DOMAIN_PREFIX = 'http://192.168.0.91:9104'
 VUE_APP_DOMAIN_PREFIX = '/businessapi'
 
 # 演示环境
-# VUE_APP_DOMAIN_PREFIX = 'http://192.168.0.91:9007'
+# VUE_APP_DOMAIN_PREFIX = 'http://192.168.0.91:9104'
 
-# VUE_APP_DOMAIN_PREFIX = 'http://192.168.0.91:9007'
+# VUE_APP_DOMAIN_PREFIX = 'http://192.168.0.91:9104'
 

+ 2 - 2
src/api/user.js

@@ -2,7 +2,7 @@ import request from '@/utils/request'
 
 export function login(data) {
   return request({
-    url: 'business/login',
+    url: '/business/login',
     method: 'post',
     data
   })
@@ -10,7 +10,7 @@ export function login(data) {
 
 export function adminBuild(data) {
   return request({
-    url: 'business/build',
+    url: '/business/build',
     method: 'post',
     data
   })

+ 3 - 0
src/store/modules/user.js

@@ -49,6 +49,7 @@ const actions = {
       code,
       rememberMe
     } = userInfo
+
     return new Promise((resolve, reject) => {
       login({
         username: username.trim(),
@@ -59,6 +60,8 @@ const actions = {
         const {
           data
         } = response
+        console.log("有了", data);
+
         setName(data.name)
         console.log('avatar', data.avatar)
         setAvatar(data.avatar)

+ 1 - 1
src/views/marketing/coupon/index.vue

@@ -79,7 +79,7 @@
               >
                 <el-button slot="reference" class="delCls" type="text">删除</el-button>
               </el-popconfirm>
-              <el-popconfirm v-if="scope.row.state === 1" title="是否停止此活动?" @onConfirm="stopFn(scope.row.shopCouponId)">
+              <el-popconfirm v-if="scope.row.state === 1" title="是否停止此活动?" @confirm="stopFn(scope.row.shopCouponId)">
                 <el-button slot="reference" class="delCls" type="text">停止</el-button>
               </el-popconfirm>
             </div>

+ 1 - 1
src/views/marketing/discount/index.vue

@@ -66,7 +66,7 @@
               >
                 <el-button slot="reference" class="delCls" type="text">删除</el-button>
               </el-popconfirm>
-              <el-popconfirm v-if="scope.row.state === 1" title="确定停止此活动?" @onConfirm="stopFn(scope.row.shopDiscountId)">
+              <el-popconfirm v-if="scope.row.state === 1" title="确定停止此活动?" @confirm="stopFn(scope.row.shopDiscountId)">
                 <el-button slot="reference" class="delCls" type="text">停止</el-button>
               </el-popconfirm>
             </div>

+ 1 - 1
src/views/marketing/group/index.vue

@@ -66,7 +66,7 @@
               >
                 <el-button slot="reference" class="delCls" type="text">删除</el-button>
               </el-popconfirm>
-              <el-popconfirm v-if="scope.row.state === 1" title="确定停止此活动?" @onConfirm="stopFn(scope.row.shopGroupWorkId)">
+              <el-popconfirm v-if="scope.row.state === 1" title="确定停止此活动?" @confirm="stopFn(scope.row.shopGroupWorkId)">
                 <el-button slot="reference" class="delCls" type="text">停止</el-button>
               </el-popconfirm>
             </div>

+ 1 - 1
src/views/marketing/scene/index.vue

@@ -39,7 +39,7 @@
               <el-popconfirm v-if="scope.row.state === 2" title="是否确定启动该场景营销?" @onConfirm="startStopFn(scope.row)">
                 <el-button slot="reference" class="delCls" type="text">启动</el-button>
               </el-popconfirm>
-              <el-popconfirm v-if="scope.row.state === 1" title="是否确定停止该场景营销?" @onConfirm="startStopFn(scope.row)">
+              <el-popconfirm v-if="scope.row.state === 1" title="是否确定停止该场景营销?" @confirm="startStopFn(scope.row)">
                 <el-button slot="reference" class="delCls" type="text">停止</el-button>
               </el-popconfirm>
             </div>

+ 2 - 1
src/views/marketing/spike/index.vue

@@ -61,7 +61,7 @@
               >
                 <el-button slot="reference" class="delCls" type="text">删除</el-button>
               </el-popconfirm>
-              <el-popconfirm v-if="scope.row.state === 1" title="确定停止此活动?" @onConfirm="stopFn(scope.row.shopSeckillId)">
+              <el-popconfirm v-if="scope.row.state === 1" title="确定停止此活动?" @confirm="stopFn(scope.row.shopSeckillId)">
                 <el-button slot="reference" class="delCls" type="text">停止</el-button>
               </el-popconfirm>
             </div>
@@ -205,6 +205,7 @@ export default {
     },
     // 停止秒杀活动
     stopFn(id) {
+      console.log("来了老弟", id);
       seckillStop({ shopSeckillId: id }).then((res) => {
         if (res.code === '') {
           this.$message.success('停止成功')

+ 4 - 4
vue.config.js

@@ -40,16 +40,16 @@ module.exports = {
     },
     proxy: {
       '/businessapi': {
-        // target: 'http://192.168.0.91:9004',
-        target: 'https://nsbusinessapi.tuanfengkeji.cn',
+        target: 'http://192.168.0.91:9104',
+        // target: 'https://nsbusinessapi.tuanfengkeji.cn',
         changeOrigin: true,
         pathRewrite: {
           '^/businessapi': ''
         }
       },
       '/canvasApi': {
-        // target: 'http://192.168.0.91:9004', // 测试
-        target: 'https://nsbusinessapi.tuanfengkeji.cn',
+        target: 'http://192.168.0.91:9104', // 测试
+        // target: 'https://nsbusinessapi.tuanfengkeji.cn',
         changeOrigin: true,
         pathRewrite: {
           '^/canvasApi': ''