index.js 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. import request from "../utils/request"
  2. // let baseApi = ""
  3. let baseApi = "/new"
  4. // 获取openid
  5. export function xcxdl(data) {
  6. return request({
  7. url: "/machine/gzh/xcxdl",
  8. data: data,
  9. method: "get"
  10. })
  11. }
  12. // 是否实名
  13. export function xcxsfsm(data) {
  14. return request({
  15. url: "/machine" + baseApi + "/gzh/xcxsfsm",
  16. data: data,
  17. method: "get"
  18. })
  19. }
  20. // 获取手机号码
  21. export function xcxPhoneNumber(data) {
  22. return request({
  23. url: "/machine/gzh/xcxPhoneNumber",
  24. data: data,
  25. method: "post",
  26. header: {
  27. 'content-type': 'application/x-www-form-urlencoded'
  28. }
  29. })
  30. }
  31. // 绑定实名信息
  32. export function xcxsmbd(data) {
  33. return request({
  34. url: "/machine" + baseApi + "/gzh/xcxsmbd",
  35. data: data,
  36. method: "post",
  37. header: {
  38. 'content-type': 'application/x-www-form-urlencoded'
  39. }
  40. })
  41. }
  42. // 获取定位
  43. export function hqdw(data) {
  44. return request({
  45. // url: "/machine/gzh/hqdw",
  46. url: "https://smzc.shizhi.tv/prod-api/machine/all/hqdw",
  47. data: data,
  48. method: "post",
  49. })
  50. }
  51. // 企业列表
  52. export function xcxGetCompanyList(data) {
  53. return request({
  54. url: "/machine/gzh/xcxGetCompanyList",
  55. data: data,
  56. method: "post",
  57. header: {
  58. 'content-type': 'application/x-www-form-urlencoded'
  59. }
  60. })
  61. }
  62. // 获取企业税务机关代码
  63. export function xcxGetCompanySwjg(data) {
  64. return request({
  65. url: "/machine/gzh/xcxGetCompanySwjg",
  66. data: data,
  67. method: "post",
  68. header: {
  69. 'content-type': 'application/x-www-form-urlencoded'
  70. }
  71. })
  72. }
  73. // 大厅
  74. export function xcxsy(data) {
  75. return request({
  76. url: "/machine" + baseApi + "/gzh/xcxsy",
  77. data: data,
  78. method: "post",
  79. header: {
  80. 'content-type': 'application/x-www-form-urlencoded'
  81. }
  82. })
  83. }
  84. // 业务分类
  85. export function xcxywfl(data) {
  86. return request({
  87. url: "/machine" + baseApi + "/gzh/xcxywfl",
  88. data: data,
  89. method: "post",
  90. header: {
  91. 'content-type': 'application/x-www-form-urlencoded'
  92. }
  93. })
  94. }
  95. // 业务办理材料
  96. export function xcxxdzl(data) {
  97. return request({
  98. url: "/machine" + baseApi + "/gzh/xcxxdzl",
  99. data: data,
  100. method: "post",
  101. header: {
  102. 'content-type': 'application/x-www-form-urlencoded'
  103. }
  104. })
  105. }
  106. // 取号
  107. export function xcxqh(data) {
  108. return request({
  109. url: "/machine" + baseApi + "/gzh/xcxqh",
  110. data: data,
  111. method: "post",
  112. header: {
  113. 'content-type': 'application/x-www-form-urlencoded'
  114. }
  115. })
  116. }
  117. // 刷新
  118. export function xcxsxph(data) {
  119. return request({
  120. url: "/machine" + baseApi + "/gzh/xcxsxph",
  121. data: data,
  122. method: "post",
  123. header: {
  124. 'content-type': 'application/x-www-form-urlencoded'
  125. }
  126. })
  127. }
  128. // 排队记录
  129. export function xcxpdjl(data) {
  130. return request({
  131. url: "/machine" + baseApi + "/gzh/xcxpdjl",
  132. data: data,
  133. method: "post",
  134. header: {
  135. 'content-type': 'application/x-www-form-urlencoded'
  136. }
  137. })
  138. }
  139. // 选择预约日期
  140. export function queryReserveDate(data) {
  141. return request({
  142. url: "/machine" + baseApi + "/gzh/queryReserveDate",
  143. data: data,
  144. method: "get",
  145. header: {
  146. 'content-type': 'application/x-www-form-urlencoded'
  147. }
  148. })
  149. }
  150. // 选择预约时间
  151. export function queryReserveTimePeriod(data) {
  152. return request({
  153. url: "/machine" + baseApi + "/gzh/queryReserveTimePeriod",
  154. data: data,
  155. method: "get",
  156. header: {
  157. 'content-type': 'application/x-www-form-urlencoded'
  158. }
  159. })
  160. }
  161. // 进行预约
  162. export function xcxjxyy(data) {
  163. return request({
  164. url: "/machine" + baseApi + "/gzh/xcxjxyy",
  165. data: data,
  166. method: "post"
  167. })
  168. }
  169. // 进行预约
  170. export function xcxqxyy(data) {
  171. return request({
  172. url: "/machine" + baseApi + "/gzh/xcxqxyy",
  173. data: data,
  174. method: "post",
  175. header: {
  176. 'content-type': 'application/x-www-form-urlencoded'
  177. }
  178. })
  179. }
  180. // 预约记录
  181. export function xcxyyjl(data) {
  182. return request({
  183. url: "/machine" + baseApi + "/gzh/xcxyyjl",
  184. data: data,
  185. method: "post",
  186. header: {
  187. 'content-type': 'application/x-www-form-urlencoded'
  188. }
  189. })
  190. }
  191. // 预约换号
  192. export function xcxyyhh(data) {
  193. return request({
  194. url: "/machine" + baseApi + "/gzh/xcxyyhh",
  195. data: data,
  196. method: "post",
  197. header: {
  198. 'content-type': 'application/x-www-form-urlencoded'
  199. }
  200. })
  201. }