123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- <template>
- <el-table v-loading="loading" :data="data" style="width: 100%">
- <el-table-column align="center" prop="id" v-col="'id'" label="ID" width="100" />
- <el-table-column align="center" prop="name" v-col="'name'" label="名称" />
- <el-table-column align="center" prop="types" v-col="'type'" label="类型" :formatter="(a: any) => typesFormat(a.types)" />
- <el-table-column align="center" prop="addr" v-col="'address'" min-width="120" label="地址" />
- <el-table-column show-overflow-tooltip align="center" v-col="'createTime'" prop="createdAt" label="创建时间" width="170" />
- <el-table-column align="center" prop="types" v-col="'status'" label="状态">
- <template #default="scope">
- <el-tag size="medium" v-if="!scope.row.status" class="ml-2" type="info">未启动</el-tag>
- <el-tag size="medium" v-else class="ml-2" type="success">启动</el-tag>
- </template>
- </el-table-column>
- <el-table-column align="center" label="操作" v-col="'auth'" width="160">
- <template #default="scope">
- <el-button @click="toDetail(scope.row.id)" size="small" v-auth="'detail'" text type="primary">详情</el-button>
- <el-button size="small" link key="info" type="info" v-auth="'edit'" @click="toEdit(scope.row.id)">编辑</el-button>
- <el-popover placement="bottom" :width="160" trigger="click">
- <template #reference>
- <el-button size="small" text type="primary" v-auth="'more'" class="more-btn" @click="isShowMore = !isShowMore">更多
- <i style="margin-left: 2px;" :class="isShowMore ? 'fa fa-angle-down' : 'fa fa-angle-up'"></i>
- </el-button>
- </template>
- <div class="more-opearte-wrap">
- <el-button @click="onChangeStatus(scope.row.id, 1)" :disabled="scope.row.status" v-auth="'on'" link size="small" key="success" type="success">启 用</el-button>
- <el-divider direction="vertical" />
- <el-button @click="onChangeStatus(scope.row.id, 0)" :disabled="!scope.row.status" v-auth="'off'" link size="small" key="warning" type="warning">禁 用</el-button>
- <el-divider direction="vertical" />
- <el-button @click="onRowDel(scope.row)" link size="small" key="danger" v-auth="'off'" type="danger">删 除</el-button>
- </div>
- </el-popover>
- </template>
- </el-table-column>
- </el-table>
- <el-pagination @size-change="onHandleSizeChange" @current-change="onHandleCurrentChange" class="mt15" :pager-count="5" :page-sizes="[10, 20, 30, 50, 100, 200, 300, 500]" v-model:current-page="param.page" background v-model:page-size="param.pageSize"
- layout="total, sizes, prev, pager, next, jumper" :total="total">
- </el-pagination>
- </template>
- <script lang="ts">
- import { toRefs, reactive, onMounted, getCurrentInstance, unref, defineComponent } from 'vue';
- import { ElMessageBox, ElMessage } from 'element-plus';
- import { useRouter } from 'vue-router';
- import api from '/@/api/network';
- // 定义接口来定义对象的类型
- interface TableDataForm {
- id: number;
- server: string;
- name: string;
- }
- interface TableData {
- data: Array<TableDataForm>;
- total: number;
- loading: boolean;
- param: {
- page: number;
- pageSize: number;
- };
- isShowMore: boolean
- }
- export default defineComponent({
- name: 'tunnel',
- props: {
- // 输入框前置内容
- keyWord: {
- type: String,
- default: '',
- },
- },
- setup(props, { emit }) {
- const { proxy } = getCurrentInstance() as any;
- const { network_tunnel_type } = proxy.useDict('network_tunnel_type');
- const typesFormat = (types: string) => {
- return proxy.selectDictLabel(unref(network_tunnel_type), types);
- };
- const router = useRouter();
- const state = reactive<TableData>({
- data: [],
- total: 0,
- loading: false,
- param: {
- page: 1,
- pageSize: 20,
- },
- isShowMore: true
- });
- // 改变状态
- const onChangeStatus = (id: number, status: number) => {
- api.tunnel.changeTunnelStatus({ id: id, status: status }).then((res: any) => {
- ElMessage.success(status ? '已开启' : '已关闭');
- fetchList();
- })
- };
- // 分页改变
- const onHandleSizeChange = (val: number) => {
- state.param.pageSize = val;
- fetchList()
- };
- // 分页改变
- const onHandleCurrentChange = (val: number) => {
- state.param.page = val;
- fetchList()
- };
- // 初始化表格数据
- const initTableData = () => {
- fetchList()
- };
- // 获取数据
- const fetchList = () => {
- state.loading = true
- let params = {
- keyWord: props.keyWord,
- pageNum: state.param.page,
- PageSize: state.param.pageSize
- }
- api.tunnel.getList(params).then((res: any) => {
- const { list, total, page } = res
- state.data = list
- state.total = total
- state.param.page = page
- state.loading = false
- });
- };
- // 删除
- const onRowDel = (row: TableDataForm) => {
- ElMessageBox.confirm(`此操作将永久删除“${row.name}”,是否继续?`, '提示', {
- confirmButtonText: '确认',
- cancelButtonText: '取消',
- type: 'warning',
- })
- .then(() => {
- api.tunnel.deleteItem({ ids: [row.id] }).then((res: any) => {
- fetchList()
- ElMessage.success('删除成功');
- });
- })
- .catch(() => { });
- };
- const toDetail = (id: number) => {
- router.push(`/iotmanager/network/tunnel/detail/${id}`)
- };
- const toEdit = (id: number) => {
- router.push(`/iotmanager/network/tunnel/edit/${id}`)
- };
- // 页面加载时
- onMounted(() => {
- initTableData();
- });
- return {
- fetchList,
- toDetail,
- toEdit,
- onChangeStatus,
- onRowDel,
- onHandleSizeChange,
- onHandleCurrentChange,
- typesFormat,
- ...toRefs(state),
- };
- }
- });
- </script>
- <style lang="scss" scoped>
- :deep(div.more-opearte-wrap) {
- flex-direction: row;
- background-color: pink;
- }
- </style>
|