123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159 |
- <template>
- <div class="layout-padding">
- <div class="layout-padding-auto layout-padding-view">
- <el-row shadow="hover" v-show="showSearch" class="ml10">
- <el-form :inline="true" :model="state.queryForm" @keyup.enter="getDataList" ref="queryRef">
- <el-form-item :label="$t('marketingConfig.name')" prop="domain">
- <el-input :placeholder="$t('marketingConfig.inputNameTip')" clearable style="max-width: 180px" v-model="state.queryForm.domain" />
- </el-form-item>
- <el-form-item>
- <el-button @click="query" class="ml10" icon="search" type="primary">
- {{ $t('common.queryBtn') }}
- </el-button>
- <el-button @click="resetQuery" icon="Refresh">{{ $t('common.resetBtn') }}</el-button>
- </el-form-item>
- </el-form>
- </el-row>
- <el-row>
- <div class="mb8" style="width: 100%">
- <el-button @click="onOpenAddMenu" class="ml10" icon="folder-add" type="primary" v-auth="'sys_menu_add'">
- {{ $t('common.addBtn') }}
- </el-button>
- <el-button plain :disabled="multiple" icon="Delete" type="primary" class="ml10" v-auth="'sys_user_del'" @click="handleDelete(selectObjs)">
- {{ $t('common.delBtn') }}
- </el-button>
- <right-toolbar
- v-model:showSearch="showSearch"
- class="ml10"
- style="float: right; margin-right: 20px"
- @queryTable="getDataList"
- ></right-toolbar>
- </div>
- </el-row>
- <el-table
- ref="tableRef"
- :data="state.dataList"
- row-key="path"
- style="width: 100%"
- v-loading="state.loading"
- border
- :cell-style="tableStyle.cellStyle"
- :header-cell-style="tableStyle?.headerCellStyle"
- @selection-change="handleSelectionChange"
- >
- <el-table-column type="selection" :selectable="handleSelectable" width="50" align="center" />
- <el-table-column :label="$t('marketingConfig.name')" fixed prop="domain" width="240" show-overflow-tooltip></el-table-column>
- <el-table-column :label="$t('marketingConfig.config')" prop="configs">
- <template #default="scope">
- <div style="display: flex; flex-wrap: wrap; margin-left: 14%;">
- <div
- style="display: flex; margin-right: 30px; text-align: left; float: left; justify-content: start; line-height: 25px;"
- v-for="item in scope.row.configs" :key="item.ip">
- <!-- <el-tag class="mr10">{{ item.ip }}</el-tag>: -->
- <span :title="item.ip" style="display: inline-block;">{{ item.ip }}</span>:
- <el-link :title="item.appName" style="color: var(--el-color-primary); text-align: left;" :href="item.download">{{ item.appName }}</el-link>
- </div>
- </div>
- </template>
- </el-table-column>
- <el-table-column :label="$t('common.action')" show-overflow-tooltip width="250">
- <template #default="scope">
- <el-button icon="edit-pen" @click="onOpenEditMenu('edit', scope.row)" text type="primary" v-auth="'sys_menu_edit'"
- >{{ $t('common.editBtn') }}
- </el-button>
- <span style="margin-left: 12px">
- <el-button
- icon="delete"
- @click="handleDelete([scope.row.id])"
- text
- type="primary"
- v-auth="'sys_menu_del'"
- >
- {{ $t('common.delBtn') }}
- </el-button>
- </span>
- </template>
- </el-table-column>
- </el-table>
- </div>
- <MenuDialog @refresh="getDataList()" ref="menuDialogRef" />
- </div>
- </template>
- <script lang="ts" name="marketingConfig" setup>
- import { delObj, pageList } from '/@/api/marketing/config';
- import { BasicTableProps, useTable } from '/@/hooks/table';
- import { useMessage, useMessageBox } from '/@/hooks/message';
- import { useI18n } from 'vue-i18n';
- // 引入组件
- const MenuDialog = defineAsyncComponent(() => import('./form.vue'));
- const { t } = useI18n();
- // 定义变量内容
- const tableRef = ref();
- const menuDialogRef = ref();
- const queryRef = ref();
- const showSearch = ref(true);
- // 多选rows
- const selectObjs = ref([]) as any;
- // 是否可以多选
- const multiple = ref(true);
- const state: BasicTableProps = reactive<BasicTableProps>({
- pageList: pageList, // H
- queryForm: {
- domain: '',
- }
- });
- const { getDataList, tableStyle } = useTable(state);
- // 打开新增菜单弹窗
- const onOpenAddMenu = (type?: string, row?: any) => {
- menuDialogRef.value.openDialog(type, row);
- };
- // 打开编辑菜单弹窗
- const onOpenEditMenu = (type: string, row: any) => {
- menuDialogRef.value.openDialog(type, row);
- };
- // 搜索事件
- const query = () => {
- state.dataList = [];
- getDataList();
- };
- // 清空搜索条件
- const resetQuery = () => {
- queryRef.value.resetFields();
- state.dataList = [];
- getDataList();
- };
- // 多选事件
- const handleSelectionChange = (objs: { id: string }[]) => {
- selectObjs.value = objs.map(({ id }) => id);
- multiple.value = !objs.length;
- };
- // 删除操作
- const handleDelete = async (ids: string[]) => {
- try {
- await useMessageBox().confirm(t('common.delConfirmText'));
- } catch {
- return;
- }
- try {
- await delObj(ids);
- getDataList();
- useMessage().success(t('common.delSuccessText'));
- } catch (err: any) {
- useMessage().error(err.msg);
- }
- };
- </script>
- <style scoped>
- :deep(.el-link__inner) {
- display: inline-block;
- width: 100%;
- justify-content: start;
- }
- </style>
|