增加创建链接
This commit is contained in:
parent
719551bbb0
commit
128ada0d4e
|
@ -2,6 +2,10 @@
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<Breadcrumb :items="['menu.promotion', 'menu.promotion.Table']" />
|
<Breadcrumb :items="['menu.promotion', 'menu.promotion.Table']" />
|
||||||
<a-card class="general-card" :title="$t('menu.promotion.Table')">
|
<a-card class="general-card" :title="$t('menu.promotion.Table')">
|
||||||
|
<div style="display: flex;justify-content: space-between;">
|
||||||
|
<a-button type="primary" @click="createlink">生成新链接</a-button>
|
||||||
|
<div>http://127.0.0.1:8787/Recommend/index?invite_code=邀请码</div>
|
||||||
|
</div>
|
||||||
<!-- <a-table :columns="columns" :data="data" @change="handleChange">
|
<!-- <a-table :columns="columns" :data="data" @change="handleChange">
|
||||||
<template #columns>
|
<template #columns>
|
||||||
<a-table-column title="id" data-index="id"></a-table-column>
|
<a-table-column title="id" data-index="id"></a-table-column>
|
||||||
|
@ -29,10 +33,16 @@
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import { ref, onMounted, h } from 'vue';
|
import { ref, onMounted, h } from 'vue';
|
||||||
import { lists } from '@/api/promotion';
|
import { lists, Generatelink } from '@/api/promotion';
|
||||||
import { IconSearch } from '@arco-design/web-vue/es/icon';
|
import { IconSearch } from '@arco-design/web-vue/es/icon';
|
||||||
const data = ref([])
|
const data = ref([])
|
||||||
|
|
||||||
|
const createlink = async () => {
|
||||||
|
const res1 = await Generatelink()
|
||||||
|
const res = await lists()
|
||||||
|
data.value = res.data
|
||||||
|
}
|
||||||
|
|
||||||
onMounted(async () => {
|
onMounted(async () => {
|
||||||
const res = await lists()
|
const res = await lists()
|
||||||
data.value = res.data
|
data.value = res.data
|
||||||
|
|
Loading…
Reference in New Issue