| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <!-- 我的仓储-我的库存 -->
- <template>
- <app-view>
- <template #header>
- <app-filter v-bind="{ selectList, inputList, buttonList }" :loading="loading" />
- </template>
- <!-- 表格数据 -->
- <app-table :data="dataList" v-model:columns="columns" :loading="loading">
- <template #header>
- <app-auth-operation :menus="['add', 'sell']" @closed="getDiamondList" />
- </template>
- <!-- 颜色 -->
- <template #zscolortype="{ row }">
- {{ `${row.zscolortype1display}-${row.zscolortype2display}` }}
- </template>
- <!-- 净度 -->
- <template #zsclaritytype="{ row }">
- {{ `${row.zsclaritytype1display}-${row.zsclaritytype2display}` }}
- </template>
- <!-- 操作 -->
- <template #operate="{ row }">
- <app-auth-operation :menus="['details']" :options="{ selectedRow: row }" @closed="getDiamondList" />
- </template>
- <template #footer>
- <app-pagination :total="total" v-model:page-size="pageSize" v-model:page-index="pageIndex"
- @change="getDiamondList" />
- </template>
- </app-table>
- </app-view>
- </template>
- <script lang="ts" setup>
- import { ElMessage } from 'element-plus'
- import { useDiamond } from '@/business/goods'
- import AppTable from '@pc/components/base/table/index.vue'
- import AppPagination from '@pc/components/base/pagination/index.vue'
- import AppAuthOperation from '@pc/components/modules/auth-operation/index.vue'
- import AppFilter from '@pc/components/base/table-filter/index.vue'
- const { loading, dataList, total, pageIndex, pageSize, columns, selectList, inputList, buttonList, getDiamondList } = useDiamond()
- getDiamondList().catch((err) => ElMessage.error(err))
- </script>
|