123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- <template>
- <div style="padding: 0px 0px 8px 8px">
- <el-row :gutter="8" style="width: 100%">
- <el-col :span="24" :xs="24">
- <el-card shadow="never" :body-style="{ paddingBottom: '0' }" style="margin-top: 8px">
- <el-form :inline="true">
- <el-form-item>
- <el-button type="primary" icon="ele-Search" @click="onQuery"> 查询 </el-button>
- <el-button type="primary" icon="ele-Plus" @click="onAdd"> 新增 </el-button>
- </el-form-item>
- </el-form>
- </el-card>
- <el-card shadow="never" style="margin-top: 8px">
- <el-table :data="state.listData" style="width: 100%" v-loading="state.loading" row-key="id">
- <el-table-column prop="" label="" min-width="120" show-overflow-tooltip />
- <el-table-column label="操作" width="160" fixed="right" header-align="center" align="center">
- <template #default="{ row }">
- <el-button icon="ele-EditPen" size="small" text type="primary" @click="onEdit(row)">编辑</el-button>
- <el-button icon="ele-Delete" size="small" text type="danger" @click="onDelete(row)">删除</el-button>
- </template>
- </el-table-column>
- </el-table>
- <div class="my-flex my-flex-end view-info-page">
- <el-pagination
- v-model:currentPage="state.pageInput.currentPage"
- v-model:page-size="state.pageInput.pageSize"
- :total="state.total"
- :page-sizes="state.pageSize"
- :layout="state.layout"
- @size-change="onSizeChange"
- @current-change="onCurrentChange"
- ></el-pagination>
- </div>
- </el-card>
- </el-col>
- </el-row>
- <srm-form ref="srmFormRef" :title="state.srmFormTitle"></srm-form>
- </div>
- </template>
- <script lang="ts" setup>
- import { getCurrentInstance, onMounted, onUnmounted, reactive, ref } from 'vue'
- import SrmForm from './components/srm-form.vue'
- const { proxy } = getCurrentInstance() as any
- const srmFormRef = ref()
- const state = reactive({
- loading: false,
- srmFormTitle: '',
- total: 0,
- pageSize: [10, 20, 50, 100],
- layout: 'total, sizes, prev, pager, next',
- pageInput: {
- currentPage: 1,
- pageSize: 10,
- },
- listData: [],
- })
- onMounted(() => {
- onQuery()
- proxy.eventBus.on('refresh', async () => {
- onQuery()
- })
- })
- onUnmounted(() => {
- proxy.eventBus.off('refresh')
- })
- const onQuery = async () => {
- state.loading = true
- const res = {} as any
- state.listData = res?.data?.list ?? []
- state.total = res?.data?.total ?? 0
- state.loading = false
- }
- const onAdd = () => {
- state.srmFormTitle = '新增'
- srmFormRef.value.open()
- }
- const onEdit = (row: any) => {
- state.srmFormTitle = '编辑'
- srmFormRef.value.open(row)
- }
- const onDelete = (row: any) => {
- proxy.$modal
- .confirmDelete(`确定要删除?`)
- .then(async () => {
- onQuery()
- })
- .catch(() => {})
- }
- const onSizeChange = (val: number) => {
- state.pageInput.pageSize = val
- onQuery()
- }
- const onCurrentChange = (val: number) => {
- state.pageInput.currentPage = val
- onQuery()
- }
- </script>
- <script lang="ts">
- import { defineComponent } from 'vue'
- export default defineComponent({
- name: 'admin/srm',
- })
- </script>
- <style lang="scss" scoped></style>
|