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

57 lines
999 B

6 months ago
  1. <template>
  2. <!-- 谁看过我 -->
  3. <view class="page">
  4. <navbar title="谁看过我简历"
  5. bgColor="#3796F8"
  6. leftClick
  7. color="#fff"
  8. @leftClick="$utils.navigateBack"/>
  9. <statisticsNumber title="简历被查看量"/>
  10. <bossList ref="bossList"/>
  11. </view>
  12. </template>
  13. <script>
  14. import bossList from '@/components/list/bossList/index.vue'
  15. import statisticsNumber from '../components/statistics/statisticsNumber.vue'
  16. import mixinList from '@/mixins/list.js'
  17. export default {
  18. mixins : [mixinList],
  19. components : {
  20. statisticsNumber,
  21. bossList
  22. },
  23. data() {
  24. return {
  25. options: [
  26. {
  27. text: '修改',
  28. style: {
  29. backgroundColor: '#ffa12c'
  30. }
  31. },
  32. {
  33. text: '删除',
  34. style: {
  35. backgroundColor: '#FA5A0A'
  36. }
  37. },
  38. ],
  39. }
  40. },
  41. methods: {
  42. clickSwipeAction({e, item}){
  43. console.log(e, item);
  44. },
  45. }
  46. }
  47. </script>
  48. <style scoped lang="scss">
  49. .page{
  50. /deep/ .uv-swipe-action{
  51. width: 100%;
  52. }
  53. }
  54. </style>