Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
夜猫逐梦
公众号管理平台
提交
b23f9ae5
公众号管理平台
项目概览
夜猫逐梦
/
公众号管理平台
与 Fork 源项目一致
从无法访问的项目Fork
通知
2
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
公众号管理平台
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
b23f9ae5
编写于
10月 30, 2022
作者:
6
62e00738167f7e3ed361db3c
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
引入 wechat-mp-hack 模块
上级
c977c02f
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
15 addition
and
4 deletion
+15
-4
my-mp/package.json
my-mp/package.json
+2
-1
my-mp/src/renderer/src/main.ts
my-mp/src/renderer/src/main.ts
+8
-0
my-mp/src/renderer/src/views/my_wechat/lilili.vue
my-mp/src/renderer/src/views/my_wechat/lilili.vue
+5
-3
未找到文件。
my-mp/package.json
浏览文件 @
b23f9ae5
...
...
@@ -25,7 +25,8 @@
"electron-updater"
:
"^4.6.5"
,
"element-plus"
:
"^2.2.19"
,
"string-format"
:
"^2.0.0"
,
"vue-router"
:
"^4.1.6"
"vue-router"
:
"^4.1.6"
,
"wechat-mp-hack"
:
"^1.1.10"
},
"devDependencies"
:
{
"@electron-toolkit/tsconfig"
:
"^1.0.1"
,
...
...
my-mp/src/renderer/src/main.ts
浏览文件 @
b23f9ae5
...
...
@@ -8,3 +8,11 @@ createApp(App)
.
use
(
router
)
.
use
(
ElementPlus
)
.
mount
(
'
#app
'
)
// 设置全局变量
window
[
'
my
'
]
=
{
"
settings
"
:{
"
title
"
:
"
MyElectron百宝箱
"
,
"
showSettings
"
:
true
,
"
tagsView
"
:
true
,
"
fixedHeader
"
:
false
,
"
sidebarLogo
"
:
false
,
"
errorLog
"
:
"
production
"
,
"
wechat_dirs
"
:{
"
root_article
"
:
"
D:
\\
_ALL
\\
LIFE
\\
Wechat
\\
文章发布
\\
"
},
"
dirs
"
:{
"
cwd
"
:
"
J:
\\
_ALL
\\
CODE
\\
gitee
\\
constellations
\\
Gemini
\\
MyAndroidAssemble
\\
electronTools
"
},
"
wechat_mps
"
:{
"
acg美女cosplay营地
"
:{}}
}
}
my-mp/src/renderer/src/views/my_wechat/lilili.vue
浏览文件 @
b23f9ae5
...
...
@@ -39,7 +39,9 @@
</
template
>
<
script
>
import
{
my_open_cmd
}
from
'
../../utils/my_index.js
'
// import { my_open_cmd } from '../../utils/my_index.js'
import
wx
from
'
wechat-mp-hack
'
const
API
=
new
Wechat
(
'
公众号账号
'
,
'
公众号密码
'
);
export
default
{
data
()
{
...
...
@@ -56,7 +58,6 @@ export default {
},
mounted
()
{
// 测试数据
let
my
=
{
"
settings
"
:{
"
title
"
:
"
MyElectron百宝箱
"
,
"
showSettings
"
:
true
,
"
tagsView
"
:
true
,
"
fixedHeader
"
:
false
,
"
sidebarLogo
"
:
false
,
"
errorLog
"
:
"
production
"
,
"
wechat_dirs
"
:{
"
root_article
"
:
"
D:
\\
_ALL
\\
LIFE
\\
Wechat
\\
文章发布
\\
"
},
"
dirs
"
:{
"
cwd
"
:
"
J:
\\
_ALL
\\
CODE
\\
gitee
\\
constellations
\\
Gemini
\\
MyAndroidAssemble
\\
electronTools
"
},
"
wechat_mps
"
:{
"
acg美女cosplay营地
"
:{}}}}
this
.
settings
.
root_article
=
my
.
settings
.
wechat_dirs
.
root_article
for
(
let
k
in
my
.
settings
.
wechat_mps
)
{
...
...
@@ -70,7 +71,8 @@ export default {
methods
:
{
mp_server
()
{
var
cmd
=
'
D:/Python/Python386/python.exe D:/_ALL/CODE/gitee/constellations/Capricorn/WeChat/mp_server/main.py
'
my_open_cmd
(
cmd
,
{
'
cwd
'
:
'
D:/_ALL/CODE/gitee/constellations/Capricorn/WeChat/my_cmd
'
})
// my_open_cmd(cmd, {'cwd': 'D:/_ALL/CODE/gitee/constellations/Capricorn/WeChat/my_cmd'})
console
.
log
(
cmd
,
wx
)
},
mp_open
()
{},
mp_update_token
()
{},
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录