Skip to content
This repository has been archived by the owner on Aug 2, 2023. It is now read-only.

Commit

Permalink
chore: wip
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisbbreuer committed Aug 12, 2022
1 parent 78f2230 commit ea093cf
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 21 deletions.
10 changes: 5 additions & 5 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

30 changes: 14 additions & 16 deletions src/components/TableV2.ce.vue
Original file line number Diff line number Diff line change
@@ -1,24 +1,23 @@
<script setup>
import { Table as TableApp } from './Table.vue'
import TableApp from './Table.vue'
// import '../../node_modules/@ow3/table-vue/dist/style.css'
</script>

<template>
<Suspense>
<TableApp
source="http://3.85.80.143:7700"
password="NtUvZv5Q87e355b807622149c350ac38679645b4e2603a1d3eb48cda080f977e76329aeb"
type="orders"
columns="
<TableApp
source="http://3.85.80.143:7700"
password="NtUvZv5Q87e355b807622149c350ac38679645b4e2603a1d3eb48cda080f977e76329aeb"
type="orders"
columns="
id: Order,
customer_name: Customer,
customer_po: PO#,
part_name: Parts,
created_at: Ordered,
due_at: Due,
stage_name: Status" sort="id:desc"
sorts="created_at, customer_name, customer_po, due_at, id, part_name, stage_name"
filters="
sorts="created_at, customer_name, customer_po, due_at, id, part_name, stage_name"
filters="
created_at: date-range,
customer_name: multi-select,
customer_po: multi-select,
Expand All @@ -29,17 +28,16 @@ import { Table as TableApp } from './Table.vue'
part_name: multi-select,
stage_name: multi-select,
vendor_name: multi-select"
actions="Info"
per-page="10"
selectable="true"
>
<!-- <template #part_name="partNameProps">
actions="Info"
per-page="10"
selectable="true"
>
<!-- <template #part_name="partNameProps">
<div v-for="(part, x) in partNameProps.value" :key="x" class="text-yellow-600">
{{ part }}
</div>
</template> -->
</TableApp>
</Suspense>
</TableApp>
</template>

<style scoped>
Expand Down

0 comments on commit ea093cf

Please sign in to comment.