Merge branch 'hi-ucs-dev' of http://124.222.94.39:3001/wuhongjian/hi-ucs into hi-ucs-dev
This commit is contained in:
commit
76b9b27a8d
|
@ -180,7 +180,11 @@
|
||||||
callTheTrendPort(start, end, 86400).then((res) => {
|
callTheTrendPort(start, end, 86400).then((res) => {
|
||||||
if (res.data.data.result) {
|
if (res.data.data.result) {
|
||||||
// res.data.data.result.splice(0, 1)
|
// res.data.data.result.splice(0, 1)
|
||||||
|
callTheTrendData.value.snum = []
|
||||||
res.data.data.result[0].values.map((item) => {
|
res.data.data.result[0].values.map((item) => {
|
||||||
|
callTheTrendData.value.snum.push(
|
||||||
|
moment(item[0] * 1000).format('MM-DD')
|
||||||
|
)
|
||||||
callTheTrendData.value.snum.push(parseInt(item[1]))
|
callTheTrendData.value.snum.push(parseInt(item[1]))
|
||||||
})
|
})
|
||||||
callTheTrend(callTheTrendData.value)
|
callTheTrend(callTheTrendData.value)
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
* @Author: hisense.liangjunhua
|
* @Author: hisense.liangjunhua
|
||||||
* @Date: 2022-06-08 11:56:28
|
* @Date: 2022-06-08 11:56:28
|
||||||
* @LastEditors: hisense.liangjunhua
|
* @LastEditors: hisense.liangjunhua
|
||||||
* @LastEditTime: 2022-06-13 15:29:27
|
* @LastEditTime: 2022-07-01 14:16:18
|
||||||
* @Description: 算法详情页头部
|
* @Description: 算法详情页头部
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
|
@ -83,12 +83,28 @@
|
||||||
//立即申请
|
//立即申请
|
||||||
function toView() {
|
function toView() {
|
||||||
// window.open(newpage.href, '_blank')
|
// window.open(newpage.href, '_blank')
|
||||||
|
console.log('一键申请===================>', props.dataList)
|
||||||
|
localStorage.setItem(
|
||||||
|
'applyList',
|
||||||
|
JSON.stringify([
|
||||||
|
{
|
||||||
|
arr: [
|
||||||
|
{
|
||||||
|
delFlag: props.dataList.delFlag,
|
||||||
|
description: props.dataList.description,
|
||||||
|
resourceId: props.dataList.id,
|
||||||
|
resourceName: props.dataList.name,
|
||||||
|
time: props.dataList.createDate,
|
||||||
|
type: props.dataList.type,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
deptId: props.dataList.deptId,
|
||||||
|
deptName: props.dataList.deptName,
|
||||||
|
},
|
||||||
|
])
|
||||||
|
)
|
||||||
router.push({
|
router.push({
|
||||||
path: '/apply',
|
path: '/apply',
|
||||||
query: {
|
|
||||||
name: props.dataList.name,
|
|
||||||
resourceId: [props.dataList.id],
|
|
||||||
},
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
const componentType = ref('')
|
const componentType = ref('')
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
* @Author: hisense.liangjunhua
|
* @Author: hisense.liangjunhua
|
||||||
* @Date: 2022-06-08 11:56:28
|
* @Date: 2022-06-08 11:56:28
|
||||||
* @LastEditors: hisense.liangjunhua
|
* @LastEditors: hisense.liangjunhua
|
||||||
* @LastEditTime: 2022-06-14 11:31:12
|
* @LastEditTime: 2022-07-01 14:20:52
|
||||||
* @Description: 算法详情页头部
|
* @Description: 算法详情页头部
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
|
@ -40,14 +40,14 @@
|
||||||
</a-tooltip>
|
</a-tooltip>
|
||||||
</div>
|
</div>
|
||||||
<div class="bottom" v-if="props.dataList.id">
|
<div class="bottom" v-if="props.dataList.id">
|
||||||
<!-- <a-button type="primary" @click="toView()">
|
<a-button type="primary" @click="toView()">
|
||||||
<template #icon><form-outlined /></template>
|
<template #icon><form-outlined /></template>
|
||||||
申请使用
|
申请使用
|
||||||
</a-button>
|
</a-button>
|
||||||
<a-button type="primary" @click="addShoppingCart()">
|
<a-button type="primary" @click="addShoppingCart()">
|
||||||
<template #icon><shopping-cart-outlined /></template>
|
<template #icon><shopping-cart-outlined /></template>
|
||||||
加入申购车
|
加入申购车
|
||||||
</a-button> -->
|
</a-button>
|
||||||
<a-button type="primary" @click="goTOCollection()">收藏</a-button>
|
<a-button type="primary" @click="goTOCollection()">收藏</a-button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -55,42 +55,58 @@
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script setup>
|
<script setup>
|
||||||
// import { ShoppingCartOutlined } from '@ant-design/icons-vue'
|
import { ShoppingCartOutlined } from '@ant-design/icons-vue'
|
||||||
import { defineProps, ref, watch } from 'vue'
|
import { defineProps, ref, watch } from 'vue'
|
||||||
import { scInsert } from '@/api/personalCenter'
|
import { scInsert } from '@/api/personalCenter'
|
||||||
// import { sgcInsert } from '@/api/home'
|
import { sgcInsert } from '@/api/home'
|
||||||
// import { useRouter } from 'vue-router'
|
import { useRouter } from 'vue-router'
|
||||||
// import mybus from '@/myplugins/mybus'
|
import mybus from '@/myplugins/mybus'
|
||||||
import { message } from 'ant-design-vue'
|
import { message } from 'ant-design-vue'
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
dataList: { type: Object, default: null },
|
dataList: { type: Object, default: null },
|
||||||
})
|
})
|
||||||
// const router = useRouter()
|
const router = useRouter()
|
||||||
const businessArea = ref('')
|
const businessArea = ref('')
|
||||||
// // 加入申购车
|
// // 加入申购车
|
||||||
// const addShoppingCart = () => {
|
const addShoppingCart = () => {
|
||||||
// console.log('加入申购车==================>', props.dataList)
|
console.log('加入申购车==================>', props.dataList)
|
||||||
// sgcInsert({
|
sgcInsert({
|
||||||
// delFlag: '0',
|
delFlag: '0',
|
||||||
// resourceId: props.dataList.id,
|
resourceId: props.dataList.id,
|
||||||
// // userId: userId.value,
|
// userId: userId.value,
|
||||||
// }).then((res) => {
|
}).then((res) => {
|
||||||
// console.log(res)
|
console.log(res)
|
||||||
// message.success('添加申购车成功!')
|
message.success('添加申购车成功!')
|
||||||
// mybus.emit('getSgcNum')
|
mybus.emit('getSgcNum')
|
||||||
// })
|
})
|
||||||
// }
|
}
|
||||||
// // 立即申请
|
// // 立即申请
|
||||||
// function toView() {
|
function toView() {
|
||||||
// // window.open(newpage.href, '_blank')
|
// window.open(newpage.href, '_blank')
|
||||||
// router.push({
|
console.log('一键申请===================>', props.dataList)
|
||||||
// path: '/apply',
|
localStorage.setItem(
|
||||||
// query: {
|
'applyList',
|
||||||
// name: props.dataList.name,
|
JSON.stringify([
|
||||||
// resourceId: [props.dataList.id],
|
{
|
||||||
// },
|
arr: [
|
||||||
// })
|
{
|
||||||
// }
|
delFlag: props.dataList.delFlag,
|
||||||
|
description: props.dataList.description,
|
||||||
|
resourceId: props.dataList.id,
|
||||||
|
resourceName: props.dataList.name,
|
||||||
|
time: props.dataList.createDate,
|
||||||
|
type: props.dataList.type,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
deptId: props.dataList.deptId,
|
||||||
|
deptName: props.dataList.deptName,
|
||||||
|
},
|
||||||
|
])
|
||||||
|
)
|
||||||
|
router.push({
|
||||||
|
path: '/apply',
|
||||||
|
})
|
||||||
|
}
|
||||||
// 收藏
|
// 收藏
|
||||||
const goTOCollection = () => {
|
const goTOCollection = () => {
|
||||||
console.log('收藏===================》', props.dataList)
|
console.log('收藏===================》', props.dataList)
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
* @Author: hisense.liangjunhua
|
* @Author: hisense.liangjunhua
|
||||||
* @Date: 2022-06-08 11:56:28
|
* @Date: 2022-06-08 11:56:28
|
||||||
* @LastEditors: hisense.liangjunhua
|
* @LastEditors: hisense.liangjunhua
|
||||||
* @LastEditTime: 2022-06-14 11:31:12
|
* @LastEditTime: 2022-07-01 14:21:04
|
||||||
* @Description: 开发组件详情页头部
|
* @Description: 开发组件详情页头部
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
|
@ -83,12 +83,28 @@
|
||||||
// 立即申请
|
// 立即申请
|
||||||
function toView() {
|
function toView() {
|
||||||
// window.open(newpage.href, '_blank')
|
// window.open(newpage.href, '_blank')
|
||||||
|
console.log('一键申请===================>', props.dataList)
|
||||||
|
localStorage.setItem(
|
||||||
|
'applyList',
|
||||||
|
JSON.stringify([
|
||||||
|
{
|
||||||
|
arr: [
|
||||||
|
{
|
||||||
|
delFlag: props.dataList.delFlag,
|
||||||
|
description: props.dataList.description,
|
||||||
|
resourceId: props.dataList.id,
|
||||||
|
resourceName: props.dataList.name,
|
||||||
|
time: props.dataList.createDate,
|
||||||
|
type: props.dataList.type,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
deptId: props.dataList.deptId,
|
||||||
|
deptName: props.dataList.deptName,
|
||||||
|
},
|
||||||
|
])
|
||||||
|
)
|
||||||
router.push({
|
router.push({
|
||||||
path: '/apply',
|
path: '/apply',
|
||||||
query: {
|
|
||||||
name: props.dataList.name,
|
|
||||||
resourceId: [props.dataList.id],
|
|
||||||
},
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
// 收藏
|
// 收藏
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
* @Author: hisense.liangjunhua
|
* @Author: hisense.liangjunhua
|
||||||
* @Date: 2022-06-08 11:56:28
|
* @Date: 2022-06-08 11:56:28
|
||||||
* @LastEditors: hisense.liangjunhua
|
* @LastEditors: hisense.liangjunhua
|
||||||
* @LastEditTime: 2022-06-14 11:31:12
|
* @LastEditTime: 2022-07-01 14:21:10
|
||||||
* @Description: 算法详情页头部
|
* @Description: 算法详情页头部
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
|
@ -83,12 +83,28 @@
|
||||||
// 立即申请
|
// 立即申请
|
||||||
function toView() {
|
function toView() {
|
||||||
// window.open(newpage.href, '_blank')
|
// window.open(newpage.href, '_blank')
|
||||||
|
console.log('一键申请===================>', props.dataList)
|
||||||
|
localStorage.setItem(
|
||||||
|
'applyList',
|
||||||
|
JSON.stringify([
|
||||||
|
{
|
||||||
|
arr: [
|
||||||
|
{
|
||||||
|
delFlag: props.dataList.delFlag,
|
||||||
|
description: props.dataList.description,
|
||||||
|
resourceId: props.dataList.id,
|
||||||
|
resourceName: props.dataList.name,
|
||||||
|
time: props.dataList.createDate,
|
||||||
|
type: props.dataList.type,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
deptId: props.dataList.deptId,
|
||||||
|
deptName: props.dataList.deptName,
|
||||||
|
},
|
||||||
|
])
|
||||||
|
)
|
||||||
router.push({
|
router.push({
|
||||||
path: '/apply',
|
path: '/apply',
|
||||||
query: {
|
|
||||||
name: props.dataList.name,
|
|
||||||
resourceId: [props.dataList.id],
|
|
||||||
},
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
// 收藏
|
// 收藏
|
||||||
|
|
|
@ -387,7 +387,9 @@
|
||||||
resourceName: item.resourceName,
|
resourceName: item.resourceName,
|
||||||
})
|
})
|
||||||
console.log(item.id)
|
console.log(item.id)
|
||||||
|
if (item.id) {
|
||||||
ids.push(item.id)
|
ids.push(item.id)
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
let obj = {}
|
let obj = {}
|
||||||
Object.assign(obj, formName)
|
Object.assign(obj, formName)
|
||||||
|
|
|
@ -182,21 +182,15 @@
|
||||||
>
|
>
|
||||||
免费试用
|
免费试用
|
||||||
</a-button> -->
|
</a-button> -->
|
||||||
<!-- <a-button
|
<a-button
|
||||||
type="primary"
|
type="primary"
|
||||||
@click="toView('apply', item)"
|
@click="toView('apply', item)"
|
||||||
v-show="
|
v-show="cardType == '组件服务'"
|
||||||
cardType !== '数据资源' &&
|
|
||||||
!(
|
|
||||||
cardType == '组件服务' &&
|
|
||||||
findComponentName(item, '智能算法')
|
|
||||||
)
|
|
||||||
"
|
|
||||||
>
|
>
|
||||||
{{
|
{{
|
||||||
item.shareCondition == '免批申请' ? '免批申请' : '立即申请'
|
item.shareCondition == '免批申请' ? '免批申请' : '立即申请'
|
||||||
}}
|
}}
|
||||||
</a-button> -->
|
</a-button>
|
||||||
</div>
|
</div>
|
||||||
<div class="right" v-else>
|
<div class="right" v-else>
|
||||||
<a-button type="primary" @click="openVideo(item)">
|
<a-button type="primary" @click="openVideo(item)">
|
||||||
|
@ -382,13 +376,28 @@
|
||||||
)
|
)
|
||||||
} else {
|
} else {
|
||||||
if (type === 'apply') {
|
if (type === 'apply') {
|
||||||
// window.open(newpage.href, '_blank')
|
console.log('一键申请===================>', item)
|
||||||
|
localStorage.setItem(
|
||||||
|
'applyList',
|
||||||
|
JSON.stringify([
|
||||||
|
{
|
||||||
|
arr: [
|
||||||
|
{
|
||||||
|
delFlag: item.delFlag,
|
||||||
|
description: item.description,
|
||||||
|
resourceId: item.id,
|
||||||
|
resourceName: item.name,
|
||||||
|
time: item.createDate,
|
||||||
|
type: item.type,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
deptId: item.deptId,
|
||||||
|
deptName: item.deptName,
|
||||||
|
},
|
||||||
|
])
|
||||||
|
)
|
||||||
router.push({
|
router.push({
|
||||||
path: '/apply',
|
path: '/apply',
|
||||||
query: {
|
|
||||||
name: [item.name],
|
|
||||||
resourceId: [item.id],
|
|
||||||
},
|
|
||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
console.log(
|
console.log(
|
||||||
|
|
|
@ -284,6 +284,7 @@
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
border-radius: 0.02rem;
|
border-radius: 0.02rem;
|
||||||
box-shadow: 0 0.05rem 0.2rem #ccc;
|
box-shadow: 0 0.05rem 0.2rem #ccc;
|
||||||
|
position: relative;
|
||||||
div:nth-of-type(1) {
|
div:nth-of-type(1) {
|
||||||
height: 1.02rem;
|
height: 1.02rem;
|
||||||
line-height: 1.02rem;
|
line-height: 1.02rem;
|
||||||
|
@ -336,6 +337,8 @@
|
||||||
text-align: center;
|
text-align: center;
|
||||||
margin-top: 0.1rem;
|
margin-top: 0.1rem;
|
||||||
margin-left: 0.85rem;
|
margin-left: 0.85rem;
|
||||||
|
position: absolute;
|
||||||
|
bottom: 0.2rem;
|
||||||
}
|
}
|
||||||
.btn:hover {
|
.btn:hover {
|
||||||
background: rgba(0, 88, 225, 0.3);
|
background: rgba(0, 88, 225, 0.3);
|
||||||
|
|
|
@ -76,8 +76,11 @@
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div v-else>
|
<div v-else>
|
||||||
<p class="content-body-content-son">
|
<p
|
||||||
<span v-if="item.name === '申请摄像头列表'">
|
class="content-body-content-son"
|
||||||
|
v-if="item.name === '申请摄像头列表'"
|
||||||
|
>
|
||||||
|
<span>
|
||||||
申请结果:{{
|
申请结果:{{
|
||||||
'列表地址:' +
|
'列表地址:' +
|
||||||
backUrl +
|
backUrl +
|
||||||
|
@ -89,7 +92,27 @@
|
||||||
'/resource/hls/getHls/?channelId='
|
'/resource/hls/getHls/?channelId='
|
||||||
}}
|
}}
|
||||||
</span>
|
</span>
|
||||||
<span v-else>申请结果:{{ item.comment || '暂无' }}</span>
|
<a-button
|
||||||
|
type="primary"
|
||||||
|
size="small"
|
||||||
|
@click="
|
||||||
|
copyComment(
|
||||||
|
'列表地址:' +
|
||||||
|
backUrl +
|
||||||
|
'resource/getApplyCameraList/' +
|
||||||
|
item.processInstanceId +
|
||||||
|
';' +
|
||||||
|
'视频流地址:' +
|
||||||
|
backUrl +
|
||||||
|
'/resource/hls/getHls/?channelId='
|
||||||
|
)
|
||||||
|
"
|
||||||
|
>
|
||||||
|
复制
|
||||||
|
</a-button>
|
||||||
|
</p>
|
||||||
|
<p class="content-body-content-son" v-else>
|
||||||
|
<span>申请结果:{{ item.comment || '暂无' }}</span>
|
||||||
<a-button
|
<a-button
|
||||||
type="primary"
|
type="primary"
|
||||||
size="small"
|
size="small"
|
||||||
|
@ -289,50 +312,7 @@
|
||||||
dataIndex: 'name',
|
dataIndex: 'name',
|
||||||
},
|
},
|
||||||
])
|
])
|
||||||
const xVideoList = ref([
|
const xVideoList = ref([])
|
||||||
{
|
|
||||||
name: '111',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: '222',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: '111',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: '222',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: '111',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: '222',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: '111',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: '222',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: '111',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: '222',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: '111',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: '222',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: '111',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: '222',
|
|
||||||
},
|
|
||||||
])
|
|
||||||
function tabqiehuan(item, index) {
|
function tabqiehuan(item, index) {
|
||||||
// debugger
|
// debugger
|
||||||
tabIndex.value = index
|
tabIndex.value = index
|
||||||
|
@ -375,9 +355,14 @@
|
||||||
resourceId.value = item.resourceId
|
resourceId.value = item.resourceId
|
||||||
}
|
}
|
||||||
const showVideoList = (item) => {
|
const showVideoList = (item) => {
|
||||||
// getApplyCameraList(item.processInstanceId).then(res=>{
|
console.log('显示列表', item)
|
||||||
// console.log('res', res)
|
getApplyCameraList(item.processInstanceId).then((res) => {
|
||||||
// })
|
console.log('res', res)
|
||||||
|
xVideoList.value = []
|
||||||
|
res.data.data.map((val) => {
|
||||||
|
xVideoList.value.push({ name: val.channelName, key: val.channelId })
|
||||||
|
})
|
||||||
|
})
|
||||||
videoVisible.value = true
|
videoVisible.value = true
|
||||||
}
|
}
|
||||||
const copyComment = (data) => {
|
const copyComment = (data) => {
|
||||||
|
|
|
@ -233,21 +233,30 @@
|
||||||
// scInsert
|
// scInsert
|
||||||
// )
|
// )
|
||||||
let scArr = []
|
let scArr = []
|
||||||
if (checkedList.value.length === 0) {
|
if (checkedListAbility.value.length === 0) {
|
||||||
message.error('请选择需要收藏的数据')
|
message.error('请选择需要收藏的数据')
|
||||||
} else {
|
} else {
|
||||||
list.value.forEach((val) => {
|
list.value.forEach((val) => {
|
||||||
if (checkedList.value.indexOf(val.deptId) !== -1) {
|
if (val.children) {
|
||||||
if (val.delFlag == 0) {
|
val.children.map((item) => {
|
||||||
scArr.push({ id: val.id })
|
if (item.resourceId == '8888888880000000001') {
|
||||||
|
message.warning('摄像头无法添加收藏!')
|
||||||
|
} else {
|
||||||
|
if (
|
||||||
|
checkedListAbility.value.indexOf(item.id) > -1 &&
|
||||||
|
item.delFlag == 0
|
||||||
|
) {
|
||||||
|
scArr.push({ resourceId: item.resourceId })
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
if (scArr.length > 0) {
|
if (scArr.length > 0) {
|
||||||
scInsert(scArr).then((res) => {
|
scInsert(scArr).then((res) => {
|
||||||
if (res.data.code === 0) {
|
if (res.data.code === 0) {
|
||||||
message.success('收藏成功')
|
message.success('收藏成功')
|
||||||
checkedList.value = []
|
clean()
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
|
@ -373,6 +382,7 @@
|
||||||
pageNum.value = '1'
|
pageNum.value = '1'
|
||||||
pageSize.value = '99999'
|
pageSize.value = '99999'
|
||||||
checkedList.value = []
|
checkedList.value = []
|
||||||
|
checkedListAbility.value = []
|
||||||
checkedListAll.value = []
|
checkedListAll.value = []
|
||||||
checkAll.value = false
|
checkAll.value = false
|
||||||
showKey.value++
|
showKey.value++
|
||||||
|
@ -631,11 +641,11 @@
|
||||||
}
|
}
|
||||||
// 删除按钮
|
// 删除按钮
|
||||||
const delList = () => {
|
const delList = () => {
|
||||||
if (checkedList.value.length == 0) {
|
if (checkedListAbility.value.length == 0) {
|
||||||
message.error('请先选择需要操作的数据!')
|
message.error('请先选择需要操作的数据!')
|
||||||
} else {
|
} else {
|
||||||
sgcDel({
|
sgcDel({
|
||||||
ids: checkedList.value,
|
ids: checkedListAbility.value,
|
||||||
}).then((res) => {
|
}).then((res) => {
|
||||||
if (res.data.msg === 'success') {
|
if (res.data.msg === 'success') {
|
||||||
message.success('删除成功')
|
message.success('删除成功')
|
||||||
|
|
Loading…
Reference in New Issue