Rap 原分销系统代码Web
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.

0ea9cbe7472f034b908952cdc76c9bfc80512526.svn-base 600B

5 months ago
123456789101112131415161718192021222324
  1. <template>
  2. <div v-if="crud.props.searchToggle">
  3. <el-input
  4. v-model="query.blurry"
  5. clearable
  6. size="small"
  7. placeholder="请输入你要搜索的内容"
  8. style="width: 200px;"
  9. class="filter-item"
  10. />
  11. <date-range-picker v-model="query.createTime" class="date-item" />
  12. <rrOperation />
  13. </div>
  14. </template>
  15. <script>
  16. import { header } from '@crud/crud'
  17. import rrOperation from '@crud/RR.operation'
  18. import DateRangePicker from '@/components/DateRangePicker'
  19. export default {
  20. components: { rrOperation, DateRangePicker },
  21. mixins: [header()]
  22. }
  23. </script>