特易招,招聘小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

87 lines
1.3 KiB

1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
  1. <template>
  2. <view class="page">
  3. <navbar
  4. title="考证咨询"
  5. />
  6. <view class="list">
  7. <view class="item"
  8. v-for="(item, index) in list"
  9. :key="index">
  10. <!-- <view class="title">
  11. {{item.name}}
  12. </view> -->
  13. <view class="uni-color-btn"
  14. @click="$utils.navigateTo('/pages_order/work/postConsult')">
  15. {{item.name}}
  16. </view>
  17. </view>
  18. </view>
  19. <tabber select="2"/>
  20. </view>
  21. </template>
  22. <script>
  23. import tabber from '@/components/base/tabbar.vue'
  24. import { mapGetters } from 'vuex'
  25. export default {
  26. components : {
  27. tabber,
  28. },
  29. computed : {
  30. ...mapGetters(['userShop']),
  31. },
  32. data() {
  33. return {
  34. list:[]
  35. }
  36. },
  37. onShow() {
  38. this.queryCert();
  39. },
  40. //滚动到屏幕底部
  41. onReachBottom() {
  42. },
  43. methods: {
  44. queryCert(){
  45. this.$api('queryCert',{}, res =>{
  46. if(res.code == 200){
  47. this.list = res.result.records;
  48. }
  49. })
  50. },
  51. // addMaterial(){
  52. // if(this.$utils.verificationAll(this.form,{
  53. // code:'请输入兑换码'
  54. // })) {
  55. // return
  56. // }
  57. // this.$api('addMaterial',this.form, res =>{
  58. // if(res.code == 200){
  59. // uni.showToast({
  60. // title:'兑换成功',
  61. // icon: 'none'
  62. // })
  63. // }
  64. // })
  65. // },
  66. }
  67. }
  68. </script>
  69. <style scoped lang="scss">
  70. .page{
  71. }
  72. </style>