Commit 4a020ad5 by 于方蒙

update

parent dadce1e3
......@@ -17,6 +17,11 @@ XXZN_CONFIG = {
"app_secret": os.getenv("XXZN_MINI_PROGRAM_APPSECRET"),
}
ZAJ_CONFIG = {
"app_id": os.getenv("ZAJ_APPSECRET"),
"app_secret": os.getenv("ZAJ_APPSECRET"),
}
XX_PAY_CONFIG = {
"mch_id": os.getenv("XX_MCHID"),
"pay_key": os.getenv("XX_PAY_KEY"),
......@@ -48,19 +53,21 @@ platform_config_list = ["", "sukang24h", "xxzn"]
platform_config_dict = {
"sukang24h": SK_CONFIG,
"xxzn": XXZN_CONFIG
"xxzn": XXZN_CONFIG,
"zaj": ZAJ_CONFIG
}
platform_appid_config_list = [
"",
SK_CONFIG["app_id"], # 苏康24H 平台序号 ==>1
XXZN_CONFIG["app_id"]
XXZN_CONFIG["app_id"],
ZAJ_CONFIG["app_id"]
]
platform_appid_config_dict = {
"sukang24h": SK_CONFIG["app_id"],
"xxzn": XXZN_CONFIG["app_id"]
"xxzn": XXZN_CONFIG["app_id"],
"zaj": ZAJ_CONFIG["app_id"]
}
NFC_PAY_CALLBCK_URL = '/nfc_card/wx_pay_callback'
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment