index.js 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526
  1. //import * as WxJsApi from '@/utils/wxJsApi.js'
  2. import * as API from '@/apis/index.js'
  3. export default {
  4. data() {
  5. return {
  6. list: [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  7. {
  8. "name":"IndexIndex",
  9. "path": "pages/index/index",
  10. "style": {
  11. //"navigationStyle": "custom" // 隐藏系统导航栏
  12. }
  13. }
  14. ,{//微信登录
  15. "path" : "pages/login/wxLogin/wxLogin",
  16. "style" :
  17. {
  18. "navigationBarTitleText": "微信登录"
  19. }
  20. }
  21. ,{//手机号登录
  22. "path" : "pages/login/phoneLogin/phoneLogin",
  23. "style" :
  24. {
  25. "navigationBarTitleText": "手机号登录"
  26. }
  27. }
  28. ,{//填写验证码
  29. "path" : "pages/login/vCode/vCode",
  30. "style" :
  31. {
  32. "navigationBarTitleText": "填写验证码"
  33. }
  34. }
  35. ,{//密码登录
  36. "path" : "pages/login/passwordLogin/passwordLogin",
  37. "style" :
  38. {
  39. "navigationBarTitleText": "密码登录"
  40. }
  41. }
  42. ,{
  43. "path" : "pages/job/index/index",
  44. "style" :
  45. {
  46. "navigationBarTitleText": "求职主页",
  47. "enablePullDownRefresh": false
  48. }
  49. }
  50. ,{
  51. "path" : "pages/job/index/recruitInfo/recruitInfo",
  52. "style" :
  53. {
  54. "navigationBarTitleText": "招聘详情",
  55. "enablePullDownRefresh": false
  56. }
  57. }
  58. ,{
  59. "path" : "pages/hr/index/recruitInfo/recruitInfo",
  60. "style" :
  61. {
  62. "navigationBarTitleText": "招聘详情",
  63. "enablePullDownRefresh": false
  64. }
  65. }
  66. ,{
  67. "path" : "pages/job/index/companyInfo/companyInfo",
  68. "style" :
  69. {
  70. "navigationBarTitleText": "企业详情",
  71. "enablePullDownRefresh": false
  72. }
  73. }
  74. ,{
  75. "path" : "pages/job/query/query",
  76. "style" :
  77. {
  78. "navigationBarTitleText": "搜索",
  79. "enablePullDownRefresh": false
  80. }
  81. }
  82. ,{
  83. "path" : "pages/job/query/queryResult/queryResult",
  84. "style" :
  85. {
  86. "navigationBarTitleText": "搜索结果",
  87. "enablePullDownRefresh": false
  88. }
  89. }
  90. ,{
  91. "path" : "pages/job/newsIndex/newsIndex",
  92. "style" :
  93. {
  94. "navigationBarTitleText": "分类消息",
  95. "enablePullDownRefresh": false
  96. }
  97. }
  98. ,{
  99. "path" : "pages/job/newsIndex/newsList/newsList",
  100. "style" :
  101. {
  102. "navigationBarTitleText": "消息列表",
  103. "enablePullDownRefresh": false
  104. }
  105. }
  106. ,{
  107. "path" : "pages/job/newsIndex/newsRecommend/newsRecommend",
  108. "style" :
  109. {
  110. "navigationBarTitleText": "推荐职位",
  111. "enablePullDownRefresh": false
  112. }
  113. }
  114. ,{
  115. "path" : "pages/job/newsIndex/newsInvitationPhone/newsInvitationPhone",
  116. "style" :
  117. {
  118. "navigationBarTitleText": "沟通邀请通知",
  119. "enablePullDownRefresh": false
  120. }
  121. }
  122. ,{
  123. "path" : "pages/job/newsIndex/newsInvitationBefore/newsInvitationBefore",
  124. "style" :
  125. {
  126. "navigationBarTitleText": "面试邀请通知",
  127. "enablePullDownRefresh": false
  128. }
  129. }
  130. ,{
  131. "path" : "pages/job/newsIndex/newsEntry/newsEntry",
  132. "style" :
  133. {
  134. "navigationBarTitleText": "录用意向书详情",
  135. "enablePullDownRefresh": false
  136. }
  137. }
  138. ,{
  139. "path" : "pages/job/personal/personal",
  140. "style" :
  141. {
  142. "navigationBarTitleText": "个人中心",
  143. "enablePullDownRefresh": false
  144. }
  145. }
  146. ,{
  147. "path" : "pages/job/personal/my/my",
  148. "style" :
  149. {
  150. "navigationBarTitleText": "我的",
  151. "enablePullDownRefresh": false
  152. }
  153. }
  154. ,{
  155. "path" : "pages/job/personal/my/resumeMy/resumeMy",
  156. "style" :
  157. {
  158. "navigationBarTitleText": "我的简历",
  159. "enablePullDownRefresh": false
  160. }
  161. }
  162. ,{
  163. "path" : "pages/job/personal/my/resumeAdd/resumeAdd",
  164. "style" :
  165. {
  166. "navigationBarTitleText": "创建简历",
  167. "enablePullDownRefresh": false
  168. }
  169. }
  170. ,{
  171. "path" : "pages/job/personal/my/resumeAdd/resumeSelect/resumeSelect",
  172. "style" :
  173. {
  174. "navigationBarTitleText": "选择职位输入",
  175. "enablePullDownRefresh": false
  176. }
  177. }
  178. ,{
  179. "path" : "pages/job/personal/my/resumeAdd/resumeEdit/resumeEdit",
  180. "style" :
  181. {
  182. "navigationBarTitleText": "编辑自我介绍",
  183. "enablePullDownRefresh": false
  184. }
  185. }
  186. ,{
  187. "path" : "pages/job/personal/my/resumeAdd/resumeSucc/resumeSucc",
  188. "style" :
  189. {
  190. "navigationBarTitleText": "简历提交成功",
  191. "enablePullDownRefresh": false
  192. }
  193. }
  194. ,{
  195. "path" : "pages/job/personal/my/resumeList/resumeList",
  196. "style" :
  197. {
  198. "navigationBarTitleText": "投递记录",
  199. "enablePullDownRefresh": false
  200. }
  201. }
  202. ,{
  203. "path" : "pages/job/personal/my/resumeLook/resumeLook",
  204. "style" :
  205. {
  206. "navigationBarTitleText": "看过的职位",
  207. "enablePullDownRefresh": false
  208. }
  209. }
  210. ,{
  211. "path" : "pages/job/personal/my/resumeCollect/resumeCollect",
  212. "style" :
  213. {
  214. "navigationBarTitleText": "职位收藏",
  215. "enablePullDownRefresh": false
  216. }
  217. }
  218. ,{
  219. "path" : "pages/job/personal/my/resumeAuth/resumeAuth",
  220. "style" :
  221. {
  222. "navigationBarTitleText": "个人认证",
  223. "enablePullDownRefresh": false
  224. }
  225. }
  226. ,{
  227. "path" : "pages/job/personal/install/install",
  228. "style" :
  229. {
  230. "navigationBarTitleText": "设置",
  231. "enablePullDownRefresh": false
  232. }
  233. }
  234. ,{
  235. "path" : "pages/job/personal/install/myInfo/myInfo",
  236. "style" :
  237. {
  238. "navigationBarTitleText": "个人信息",
  239. "enablePullDownRefresh": false
  240. }
  241. }
  242. ,{
  243. "path" : "pages/job/personal/install/account/account",
  244. "style" :
  245. {
  246. "navigationBarTitleText": "账号管理",
  247. "enablePullDownRefresh": false
  248. }
  249. }
  250. ,{
  251. "path" : "pages/job/personal/install/account/passwordA/passwordA",
  252. "style" :
  253. {
  254. "navigationBarTitleText": "忘记密码",
  255. "enablePullDownRefresh": false
  256. }
  257. }
  258. ,{
  259. "path" : "pages/job/personal/install/account/passwordB/passwordB",
  260. "style" :
  261. {
  262. "navigationBarTitleText": "验证码找回",
  263. "enablePullDownRefresh": false
  264. }
  265. }
  266. ,{
  267. "path" : "pages/job/personal/install/account/passwordC/passwordC",
  268. "style" :
  269. {
  270. "navigationBarTitleText": "重设密码",
  271. "enablePullDownRefresh": false
  272. }
  273. }
  274. ,{
  275. "path" : "pages/job/personal/install/account/phoneA/phoneA",
  276. "style" :
  277. {
  278. "navigationBarTitleText": "填写验证码",
  279. "enablePullDownRefresh": false
  280. }
  281. }
  282. ,{
  283. "path" : "pages/job/personal/install/account/phoneB/phoneB",
  284. "style" :
  285. {
  286. "navigationBarTitleText": "绑定手机号",
  287. "enablePullDownRefresh": false
  288. }
  289. }
  290. ,{
  291. "path" : "pages/job/personal/install/account/phoneC/phoneC",
  292. "style" :
  293. {
  294. "navigationBarTitleText": "绑定验证码 Copy",
  295. "enablePullDownRefresh": false
  296. }
  297. }
  298. ,{
  299. "path" : "pages/job/personal/about/about",
  300. "style" :
  301. {
  302. "navigationBarTitleText": "关于我们",
  303. "enablePullDownRefresh": false
  304. }
  305. },{
  306. "path" : "pages/job/personal/install/resume/resume",
  307. "style" :
  308. {
  309. "navigationBarTitleText": "我的简历",
  310. "enablePullDownRefresh": false
  311. }
  312. },{
  313. "path" : "pages/job/personal/install/addResume/addResume",
  314. "style" :
  315. {
  316. "navigationBarTitleText": "创建简历",
  317. "enablePullDownRefresh": false
  318. }
  319. }
  320. ,{
  321. "path" : "pages/hr/index/index",
  322. "style" :
  323. {
  324. "navigationBarTitleText": "招聘主页",
  325. "enablePullDownRefresh": false
  326. }
  327. }
  328. ,{
  329. "path" : "pages/hr/index/resumeInfo/resumeInfo",
  330. "style" :
  331. {
  332. "navigationBarTitleText": "简历详情",
  333. "enablePullDownRefresh": false
  334. }
  335. }
  336. ,{
  337. "path" : "pages/hr/query/query",
  338. "style" :
  339. {
  340. "navigationBarTitleText": "搜索",
  341. "enablePullDownRefresh": false
  342. }
  343. }
  344. ,{
  345. "path" : "pages/hr/query/queryResult/queryResult",
  346. "style" :
  347. {
  348. "navigationBarTitleText": "搜索结果",
  349. "enablePullDownRefresh": false
  350. }
  351. }
  352. ,{
  353. "path" : "pages/hr/newsIndex/newsIndex",
  354. "style" :
  355. {
  356. "navigationBarTitleText": "消息分类",
  357. "enablePullDownRefresh": false
  358. }
  359. }
  360. ,{
  361. "path" : "pages/hr/newsIndex/newsList/newsList",
  362. "style" :
  363. {
  364. "navigationBarTitleText": "消息列表",
  365. "enablePullDownRefresh": false
  366. }
  367. }
  368. ,{
  369. "path" : "pages/hr/newsIndex/newsRecommend/newsRecommend",
  370. "style" :
  371. {
  372. "navigationBarTitleText": "推荐简历",
  373. "enablePullDownRefresh": false
  374. }
  375. }
  376. ,{
  377. "path" : "pages/hr/newsIndex/servicesList/servicesList",
  378. "style" :
  379. {
  380. "navigationBarTitleText": "劳务对接列表",
  381. "enablePullDownRefresh": false
  382. }
  383. }
  384. ,{
  385. "path" : "pages/hr/newsIndex/servicesInfo/servicesInfo",
  386. "style" :
  387. {
  388. "navigationBarTitleText": "劳务对接详情",
  389. "enablePullDownRefresh": false
  390. }
  391. }
  392. ,{
  393. "path" : "pages/hr/my/my",
  394. "style" :
  395. {
  396. "navigationBarTitleText": "我的",
  397. "enablePullDownRefresh": false
  398. }
  399. }
  400. ,{
  401. "path" : "pages/hr/my/position/position",
  402. "style" :
  403. {
  404. "navigationBarTitleText": "职位管理",
  405. "enablePullDownRefresh": false
  406. }
  407. }
  408. ,{
  409. "path" : "pages/hr/my/follow/follow",
  410. "style" :
  411. {
  412. "navigationBarTitleText": "对您感兴趣",
  413. "enablePullDownRefresh": false
  414. }
  415. }
  416. ,{
  417. "path" : "pages/hr/my/enroll/enroll",
  418. "style" :
  419. {
  420. "navigationBarTitleText": "求职管理",
  421. "enablePullDownRefresh": false
  422. }
  423. }
  424. ,{
  425. "path" : "pages/hr/my/collection/collection",
  426. "style" :
  427. {
  428. "navigationBarTitleText": "收藏简历",
  429. "enablePullDownRefresh": false
  430. }
  431. }
  432. ],
  433. isReady: false,
  434. }
  435. },
  436. components: {
  437. },
  438. onLoad(op) {
  439. //this.id=op.id;
  440. },
  441. methods: {
  442. test1() {
  443. uni.showLoading({
  444. title: '加载中'
  445. });
  446. // uni.hideLoading();
  447. },
  448. },
  449. onReady() {
  450. this.isReady = true;
  451. },
  452. onShow() {
  453. if (this.isReady) {
  454. }
  455. },
  456. }