mirror of
https://github.com/Jerryplusy/rc-plugin.git
synced 2025-10-14 08:09:19 +00:00
18 lines
370 B
JavaScript
18 lines
370 B
JavaScript
import Base from './base.js'
|
|
|
|
export default class BiliInfoModel extends Base {
|
|
constructor (e) {
|
|
super(e)
|
|
this.model = 'bili-info'
|
|
}
|
|
|
|
/** 生成版本信息图片 */
|
|
async getData (biliInfoData) {
|
|
return {
|
|
...this.screenData,
|
|
saveId: 'bili-info',
|
|
biliInfoData: biliInfoData,
|
|
}
|
|
}
|
|
}
|