22 lines
634 B
TypeScript
22 lines
634 B
TypeScript
// export default {
|
|
// printHeader: {
|
|
// // header: 'wechat',
|
|
// header: 'LogoImage',
|
|
// appName: '涂鸦丫小程序',
|
|
// },
|
|
// };
|
|
|
|
export const defaultPrintConfig: PrintConfig = {
|
|
// header: 'LogoImage',
|
|
header: 'wechat',
|
|
appName: '涂鸦丫小程序',
|
|
appHint: '数学|专注力|识字|练字',
|
|
};
|
|
|
|
export const defaultShareConfig = {
|
|
// title: '涂鸦丫 - 一张会“教知识”的涂色卡',
|
|
title: '涂鸦丫 - 快来生成宝宝的专属学习卡',
|
|
path: '/pages/mathIndex/mathIndex',
|
|
imageUrl: 'https://cdn.joeyone.cn/doodle/share-img/index-share-v2.png',
|
|
};
|