1
0

6 Revīzijas f17af17e60 ... aef3bb4de8

Autors SHA1 Ziņojums Datums
  GuYun-D aef3bb4de8 Merge branch 'vfeat/20250103-商家分红设置' into dev 2 mēneši atpakaļ
  GuYun-D bd336f0e2c 2025.01.06-修改新增商家分红按钮文本 2 mēneši atpakaļ
  GuYun-D 1b5ee415c5 Merge branch 'feat/v20241212-人脉银行' into dev 3 mēneši atpakaļ
  GuYun-D ae81a6471d 2025.01.04-新增设置联盟卡为俱乐部默认卡的功能 3 mēneši atpakaļ
  GuYun-D ca66bcdd22 Merge branch 'feat/v20241212-人脉银行' into dev 3 mēneši atpakaļ
  GuYun-D 354c593a6f 20250.01.04-修改俱乐部patch->post 3 mēneši atpakaļ

+ 9 - 1
src/api/rm-bank/index.js

@@ -24,7 +24,7 @@ export function addClubApi(data) {
 export function editClubApi(data) {
   return request({
     url: '/people-bank-club/patchClub',
-    method: 'patch',
+    method: 'POST',
     data
   })
 }
@@ -191,3 +191,11 @@ export function getShopDividendSettingsByIdApi(params) {
     params
   })
 }
+// 设置联盟卡为俱乐部默认卡
+export function setOrCancelAllianceCardIsClubApi(data) {
+  return request({
+    url: '/alliance-card/setOrCancelAllianceCardIsClub',
+    method: 'POST',
+    data
+  })
+}

+ 40 - 0
src/views/business/alliance/index.vue

@@ -34,6 +34,13 @@
             </el-tag>
           </template>
         </el-table-column>
+        <el-table-column prop="isClub" label="是否俱乐部默认卡" width="120" align="center">
+          <template slot-scope="scope">
+            <el-tag :type="Number(scope.row.isClub) === 1 ? 'success' : 'info'" size="small">
+              {{ Number(scope.row.isClub) === 1 ? '是' : '否' }}
+            </el-tag>
+          </template>
+        </el-table-column>
         <el-table-column prop="coverUrl" label="联盟卡封面" width="180" align="center">
           <template slot-scope="scope">
             <el-image :src="scope.row.coverUrl" style="width: 50px"></el-image>
@@ -74,6 +81,13 @@
           <template slot-scope="{ row }">
             <el-button @click="$refs.checkDialogRef && $refs.checkDialogRef.handleOpen(row)" :disabled="row.state !== 1" type="warning" size="mini">审核</el-button>
             <el-button type="primary" size="mini" @click="$refs.detailDialogRef && $refs.detailDialogRef.handleOpen(row)">详情</el-button>
+            <el-button
+              :type="Number(row.isClub) === 1 ? 'danger' : 'success'"
+              size="mini"
+              @click="handleSetDefaultCard(row)"
+            >
+              {{ Number(row.isClub) === 1 ? '取消俱乐部默认卡' : '设为俱乐部默认卡' }}
+            </el-button>
           </template>
         </el-table-column>
       </el-table>
@@ -100,6 +114,7 @@
 
 <script>
 import { getAllianceCardListApi } from '@/api/business'
+import { setOrCancelAllianceCardIsClubApi } from '@/api/rm-bank'
 import DetailDialog from './components/DetailDialog'
 import CheckDialog from './components/CheckDialog'
 
@@ -161,6 +176,31 @@ export default {
       this.listQuery.search = ''
       this.listQuery.state = ''
       this.handleSearch()
+    },
+
+    handleSetDefaultCard(row) {
+      const isSet = Number(row.isClub) !== 1
+      const tipText = isSet ? '设置为俱乐部默认卡' : '取消俱乐部默认卡'
+      
+      this.$confirm(`是否要${tipText}?`, '提示', {
+        confirmButtonText: '确定',
+        cancelButtonText: '取消',
+        type: 'warning'
+      }).then(async () => {
+        try {
+          await setOrCancelAllianceCardIsClubApi({
+            allianceCardId: row.id,
+            state: isSet ? '1' : '0'
+          })
+          this.$message.success(`${tipText}成功`)
+          this.getList() // 刷新列表
+        } catch (error) {
+          console.error(error)
+          this.$message.error(`${tipText}失败`)
+        }
+      }).catch(() => {
+        this.$message.info('已取消操作')
+      })
     }
   }
 }

+ 1 - 1
src/views/rm-bank/merchant-dividends/index.vue

@@ -7,7 +7,7 @@
         <el-form-item>
           <el-button type="primary" plain @click="search">查询</el-button>
           <el-button plain @click="clear">重置</el-button>
-          <el-button type="primary" plain @click="$refs.merchantDividendsModalRef && $refs.merchantDividendsModalRef.show()">新增俱乐部</el-button>
+          <el-button type="primary" plain @click="$refs.merchantDividendsModalRef && $refs.merchantDividendsModalRef.show()">新增商家分红</el-button>
         </el-form-item>
       </el-form>
     </div>