Files
opc-manager/static/modules/operations.js
mac c12389fb89 feat: 运营模块 + 全局 Slogan + 模板热加载
- 新增运营模块(侧边栏/panel/render,7条运营思考)
- 全局 Slogan 置于顶部品牌区(蓝白 pill 标签)
- flask_app.py 启用 TEMPLATES_AUTO_RELOAD
- 项目模块状态筛选改为 Tab(已签约/待签约)
2026-07-07 13:15:54 +08:00

21 lines
1.5 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
// operations.js — 运营模块
window.renderOperations = () => {
document.querySelector("#operations").innerHTML = `<div class="grid gap-4">
<section class="card p-6 max-w-4xl">
<h2 class="text-lg font-bold text-slate-800 mb-4">运营思考</h2>
<p class="text-slate-700 leading-relaxed mb-4"><strong>和内部联动,真正快速做实交付很重要</strong></p>
<ol class="list-decimal list-inside space-y-3 text-slate-600 leading-relaxed">
<li>门店的大屏幕,要上,一个视频拍摄出来,然后在几百家门店同步轮巡播放,还是很震撼的</li>
<li>拍摄的内容,按病种整理成不同的专区,然后以 H5 或者小程序的形式,在门店科普教育,患者群,企业微信推送下去</li>
<li>同理,在保险的理赔环节,报案环节推送下去,而不是只是挂一个 H5 的专区</li>
<li>和门店、医生联动,把患者群都建立起来,把群的数量建起来</li>
<li>用源泉把患者的档案都建立起来真正的有档案沉淀AI 推送沉淀</li>
<li>用 AI + 人工,把随访量也都弄起来</li>
<li>对应的运营活动,还有排行版,在有一定量以后,要逐步的做起来,包括科普的排行版,科普的明星医生等等</li>
</ol>
<hr class="my-6 border-slate-200">
<p class="text-slate-700 font-semibold leading-relaxed">要形成一份专门的报告,真正的证明我们科普和患者管理的价值</p>
</section>
</div>`;
};