From 5d3b86a4d0032836c782e5e1319179eced5e5647 Mon Sep 17 00:00:00 2001
From: doum <doum>
Date: 星期五, 23 一月 2026 17:35:24 +0800
Subject: [PATCH] 经销商管理
---
admin/src/components/business/OperaChangeIntegralWindow.vue | 9 +++++----
1 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/admin/src/components/business/OperaChangeIntegralWindow.vue b/admin/src/components/business/OperaChangeIntegralWindow.vue
index 97f1cd9..8a86c23 100644
--- a/admin/src/components/business/OperaChangeIntegralWindow.vue
+++ b/admin/src/components/business/OperaChangeIntegralWindow.vue
@@ -30,7 +30,6 @@
<script>
import BaseOpera from '@/components/base/BaseOpera'
import GlobalWindow from '@/components/common/GlobalWindow'
-import { allList as shopList } from '@/api/business/shop'
export default {
name: 'OperaChangeShopWindow',
extends: BaseOpera,
@@ -43,6 +42,7 @@
form: {
memberId: null,
remark: null,
+ userType:null,
num: null,
type: 0
},
@@ -58,7 +58,7 @@
},
created () {
this.config({
- api: '/business/member',
+ api: '/business/integral',
'field.id': 'id'
})
},
@@ -76,18 +76,19 @@
this.$emit('success')
})
.catch(e => {
- this.$tip.apiFailed(e)
+ // this.$tip.apiFailed(e)
})
.finally(() => {
this.isWorking = false
})
})
},
- open (title, target) {
+ open (title, target,userType) {
this.title = title
this.visible = true
this.info = target
this.form.type = 0
+ this.form.userType = userType || 0
this.form.memberId = target.id
this.form.num = null
this.form.remark = null
--
Gitblit v1.9.3