zan.vue 669 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <template>
  2. <view>
  3. </view>
  4. </template>
  5. <script>
  6. export default {
  7. props:{
  8. datalist: {
  9. type: Array,
  10. default () {
  11. return []
  12. }
  13. },
  14. wtdt:{
  15. type: String,
  16. default () {
  17. return ''
  18. }
  19. },
  20. type:{
  21. type: [String,Number],
  22. default () {
  23. return ''
  24. }
  25. },
  26. },
  27. components:{
  28. noData
  29. },
  30. data(){
  31. return{
  32. topbg:require("@/static/images/order/staffs/topbg.png"),
  33. dbg:require("@/static/images/order/staffs/dbg.png"),
  34. ybg:require("@/static/images/order/staffs/ybg.png"),
  35. }
  36. },
  37. onLoad: function() {
  38. },
  39. methods:{
  40. getDetail(e){
  41. this.$emit('getDetail')
  42. }
  43. },
  44. }
  45. </script>
  46. <style lang="scss" scoped>
  47. </style>