mirror of
https://github.com/lecepin/WeChatVideoDownloader.git
synced 2025-04-05 04:22:50 +08:00
replace url with video desc
This commit is contained in:
parent
2720364707
commit
40a3bb88ef
@ -43,9 +43,9 @@ function App() {
|
||||
dataSource={captureList}
|
||||
columns={[
|
||||
{
|
||||
title: '视频地址(捕获中……)',
|
||||
dataIndex: 'url',
|
||||
key: 'url',
|
||||
title: '视频标题(捕获中……)',
|
||||
dataIndex: 'description',
|
||||
key: 'description',
|
||||
render: value => value,
|
||||
ellipsis: true,
|
||||
},
|
||||
|
@ -218,8 +218,8 @@ export default createMachine(
|
||||
},
|
||||
},
|
||||
actions: {
|
||||
action_视频捕获: actions.assign(({ captureList }, { url, size, description, decode_key, ...other }) => {
|
||||
captureList.push({ size, url, prettySize: prettyBytes(+size), ...other });
|
||||
action_视频捕获: actions.assign(({ captureList }, { url, size, description, decodeKey, ...other }) => {
|
||||
captureList.push({ size, url, prettySize: prettyBytes(+size), description, decodeKey, ...other });
|
||||
|
||||
return {
|
||||
captureList: uniqBy(captureList, 'url'),
|
||||
|
Loading…
x
Reference in New Issue
Block a user