1234567891011121314151617181920212223242526272829 |
- # -*- coding: utf-8 -*-
- #!/usr/bin/env python
- import os
- import sys
- import datetime
- PROJECT_ROOT = os.path.join(os.path.abspath(os.path.split(os.path.realpath(__file__))[0] + "/.."), '..')
- sys.path.insert(0, PROJECT_ROOT)
- from script.base import *
- init_env(interactive=True)
- logger = get_logger(__name__)
- faqs = [
- {
- "question": u"洗衣机如何启动?",
- "answer": u"使用微信扫码支付并选择套餐,然后按下洗衣机的启动按钮洗衣。"
- },
- {
- "question": u"设备离线怎么办?",
- "answer": u"请首先检查:1.是否连接电源,2.是否连接天线,3.是否将天线放在盒子外?(铁盒子有屏蔽信号的作用)"
- },
- {
- "question": u"无法看到线下投币?",
- "answer": u"请首先检查是否正确连接盒子"
- }
- ]
|