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.

evaluate-salesman-item.vue 292B

2 vuotta sitten
1234567891011121314151617181920
  1. <!-- 业务员满意度评价列表Item -->
  2. <template>
  3. 业务员满意度评价列表Item(UI未出)
  4. </template>
  5. <script setup lang="ts">
  6. defineProps({
  7. //数据列表
  8. dataList:{
  9. type:Array,
  10. default:()=>{
  11. return [];
  12. }
  13. }
  14. })
  15. </script>
  16. <style lang="scss" scoped>
  17. </style>