特易招,招聘小程序
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.

90 lines
1.5 KiB

6 months ago
4 months ago
4 months ago
4 months ago
4 months ago
6 months ago
4 months ago
6 months ago
4 months ago
6 months ago
4 months ago
6 months ago
4 months ago
6 months ago
4 months ago
6 months ago
4 months ago
6 months ago
4 months ago
4 months ago
6 months ago
4 months ago
6 months ago
4 months ago
  1. <template>
  2. <view class="page">
  3. <navbar title="考证咨询" />
  4. <view class="list">
  5. <view class="item"
  6. v-for="(item, index) in list" :key="index"
  7. @click="$utils.navigateTo('/pages_order/work/postConsult')">
  8. <image :src="item.headImage"
  9. mode="aspectFill"></image>
  10. <view class="info">
  11. <view class="title">
  12. {{item.name}}
  13. </view>
  14. <view class="text">
  15. <uv-parse :content="item.summary"></uv-parse>
  16. </view>
  17. </view>
  18. </view>
  19. </view>
  20. <tabber select="2" />
  21. </view>
  22. </template>
  23. <script>
  24. import tabber from '@/components/base/tabbar.vue'
  25. import mixinList from '@/mixins/list.js'
  26. export default {
  27. mixins : [mixinList],
  28. components: {
  29. tabber,
  30. },
  31. computed: {
  32. },
  33. data() {
  34. return {
  35. mixinsListApi : 'queryCert',
  36. }
  37. },
  38. onShow() {
  39. },
  40. //滚动到屏幕底部
  41. onReachBottom() {},
  42. methods: {
  43. // addMaterial(){
  44. // if(this.$utils.verificationAll(this.form,{
  45. // code:'请输入兑换码'
  46. // })) {
  47. // return
  48. // }
  49. // this.$api('addMaterial',this.form, res =>{
  50. // if(res.code == 200){
  51. // uni.showToast({
  52. // title:'兑换成功',
  53. // icon: 'none'
  54. // })
  55. // }
  56. // })
  57. // },
  58. }
  59. }
  60. </script>
  61. <style scoped lang="scss">
  62. .page {
  63. .list{
  64. .item{
  65. display: flex;
  66. .image{
  67. width: 200rpx;
  68. height: 100%;
  69. min-height: 300rpx;
  70. border-radius: 20rpx;
  71. }
  72. .info{
  73. .title{
  74. }
  75. .text{
  76. }
  77. }
  78. }
  79. }
  80. }
  81. </style>