| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200 |
- <template>
- <div class="push-page">
- <el-card :bordered="false" class="proCard" style="position: relative">
- <BasicTable
- :columns="columns"
- :data-source="robotPushList"
- :row-key="(row) => row.id"
- :action-column="actionColumn"
- :loading="loading"
- :pagination="{ total: total, pageSize: size, hideOnSinglePage: !robotPushList.length }"
- :tableSetting="{
- size: false,
- redo: false,
- fullscreen: false,
- striped: false,
- setting: false,
- }"
- :striped="true"
- ref="tableRef"
- @order-change="orderByItem"
- @page-num-change="handlePageNumChange"
- @page-size-change="handlePageSizeChange"
- >
- <template #tableTitle>
- <el-button type="primary" :icon="Plus" @click="addDrawer">添加</el-button>
- </template>
- </BasicTable>
- </el-card>
- <AddRobot
- v-if="showDrawer"
- :robot-list="robotList"
- @on-close="closeDrawer"
- @sub-add="addSubRobot"
- @sub-edit="editSubRobot"
- />
- </div>
- </template>
- <script setup lang="ts">
- import { h, onMounted, reactive, ref } from 'vue';
- import { BasicTable, TableActionIcons } from '@/components/Table';
- import { BasicColumn } from '@/components/Table';
- import { columns } from './constant';
- import { Plus } from '@element-plus/icons-vue';
- import editIcon from '@/assets/images/table/table-edit.png';
- import deleteIcon from '@/assets/images/table/table-delete.png';
- import AddRobot from './component/AddRobot.vue';
- import { ElMessage, ElMessageBox } from 'element-plus';
- import { RobotType } from '@/api/push/push';
- import usePush from './usePush';
- const usePushRobot = usePush();
- const { robotPushList, total, page, size, loading, getRobotList, robotAdd, robotDel, robotEdit } =
- usePushRobot;
- onMounted(() => {
- getRobotList();
- });
- // 添加弹窗相关
- const showDrawer = ref(false);
- const robotList = ref<RobotType | null>({});
- //关闭drawer
- const closeDrawer = () => {
- showDrawer.value = false;
- };
- const addDrawer = () => {
- robotList.value = null;
- showDrawer.value = true;
- };
- const addSubRobot = (data) => {
- robotAdd(data).then(() => {
- ElMessage.success('添加成功');
- });
- showDrawer.value = false;
- };
- const editSubRobot = (data) => {
- robotEdit(data).then(() => {
- ElMessage.success('编辑成功');
- });
- showDrawer.value = false;
- };
- //操作列
- const actionColumn: BasicColumn = reactive({
- width: 200,
- title: '操作',
- prop: 'action',
- key: 'action',
- fixed: 'right',
- render(record) {
- return h(TableActionIcons as any, {
- space: 20,
- color: '#629bf9',
- iconStyle: 'img',
- size: 16,
- actionIcons: [
- {
- label: '编辑',
- icon: editIcon,
- onClick: handleEdit.bind(null, record.row),
- },
- {
- label: '删除',
- icon: deleteIcon,
- onClick: handleDelete.bind(null, record.row),
- },
- ],
- });
- },
- });
- // 列排序操作
- const orderByItem = () => {};
- const handlePageNumChange = (pageNum) => {
- page.value = pageNum;
- getRobotList();
- };
- const handlePageSizeChange = (pageSize) => {
- size.value = pageSize;
- getRobotList();
- };
- const handleDelete = (row) => {
- ElMessageBox.confirm(`您想删除机器人${row.robotName}`, '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning',
- draggable: true,
- })
- .then(() => {
- robotDel(row.id).then(() => {
- ElMessage.success('删除成功');
- });
- })
- .catch(() => {});
- };
- //编辑
- const handleEdit = (row) => {
- robotList.value = row;
- showDrawer.value = true;
- };
- </script>
- <style scoped>
- .push-page {
- position: relative;
- height: calc(100vh - 64px - 12px);
- background-color: #ffffff;
- }
- .camera-list {
- padding: 0 21px;
- }
- .empty-content {
- margin: auto;
- padding: 125px 0;
- }
- .empty-img {
- width: 396px;
- }
- .empty-text {
- font-size: 22px;
- color: #8e8e8e;
- line-height: 30px;
- text-align: center;
- }
- .add-tip {
- position: absolute;
- left: 187px;
- top: 64px;
- font-size: 16px;
- color: red;
- }
- .add-popover {
- position: absolute;
- width: calc(100% - 21px);
- height: 622px;
- top: 0;
- bottom: 0;
- margin: auto;
- z-index: 99;
- }
- .item {
- margin: 0px 40px 0px 15px;
- }
- </style>
|