| 1234567891011121314151617181920212223242526 |
- import requests
- # url = "http://127.0.0.1:8001/api/store/get_esign_templates"
- # url = "http://120.26.186.130:33333/api/store/get_esign_templates"
- # body = {
- # "store_id": 999,
- # "store_name": "爱丽恩严(大连)商务科技有限公司深圳分公司",
- # "business_segment": "生活服务",
- # "merchant_name": "彭少荣",
- # "contact_phone": "13923864580",
- # "ord_id": "91440300MADDW7XC4C"
- # }
- # res = requests.post(url, json=body)
- # print(res.text)
- url = "http://127.0.0.1:8001/api/store/contracts/400"
- resp = requests.get(url)
- print(resp.text)
- # url = "http://127.0.0.1:8001/api/store/contracts/detail/c2259cb97f3f4066b7bca57a62e3843a"
- # resp = requests.get(url)
- # print(resp.text)
|