init
This commit is contained in:
298
src/views/jsonflow/tabs-option/index.vue
Normal file
298
src/views/jsonflow/tabs-option/index.vue
Normal file
@@ -0,0 +1,298 @@
|
||||
<template>
|
||||
<div class="layout-padding">
|
||||
<div class="layout-padding-auto layout-padding-view">
|
||||
<el-row v-show="showSearch">
|
||||
<el-form :model="state.queryForm" ref="queryRef" :inline="true" @keyup.enter="getDataList">
|
||||
<el-form-item :label="$t('tabsOption.formName')" prop="formName" >
|
||||
<el-input :placeholder="t('tabsOption.inputFormNameTip')" v-model="state.queryForm.formName" clearable
|
||||
style="max-width: 180px" />
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button icon="search" type="primary" @click="getDataList">
|
||||
{{ $t('common.queryBtn') }}
|
||||
</el-button>
|
||||
<el-button icon="Refresh" @click="resetQuery">{{ $t('common.resetBtn') }}</el-button>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
</el-row>
|
||||
<el-row>
|
||||
<div class="mb8" style="width: 100%">
|
||||
<el-tooltip placement="top">
|
||||
<template #content>
|
||||
{{ $t('jfI18n.oneBtnDesign') }}
|
||||
</template>
|
||||
<el-button v-auth="'jsonflow_tabsoption_add'" type="primary" class="ml10" icon="Pointer"
|
||||
@click="handleDesignTabs(true)">
|
||||
</el-button>
|
||||
</el-tooltip>
|
||||
|
||||
<el-tooltip placement="top">
|
||||
<template #content>
|
||||
{{ $t('common.addBtn') }}
|
||||
</template>
|
||||
<el-button icon="Plus" type="primary" class="ml10" @click="formDialogRef.openDialog('add')"
|
||||
v-auth="'jsonflow_tabsoption_add'">
|
||||
</el-button>
|
||||
</el-tooltip>
|
||||
|
||||
<el-tooltip placement="top">
|
||||
<template #content>
|
||||
{{ $t('common.delBtn') }}
|
||||
</template>
|
||||
<el-button plain :disabled="multiple" icon="Delete" type="primary" class="ml10"
|
||||
v-auth="'jsonflow_tabsoption_del'" @click="handleDelete(selectObjs)">
|
||||
</el-button>
|
||||
</el-tooltip>
|
||||
|
||||
<right-toolbar v-model:showSearch="showSearch" :export="'jsonflow_tabsoption_export'"
|
||||
@exportExcel="exportExcel" class="ml10" style="float: right;margin-right: 20px"
|
||||
@queryTable="getDataList"></right-toolbar>
|
||||
</div>
|
||||
</el-row>
|
||||
<el-table :data="state.dataList" v-loading="state.loading" style="width: 100%"
|
||||
@selection-change="handleSelectionChange" @sort-change="sortChangeHandle">
|
||||
<el-table-column type="selection" width="40" align="center" />
|
||||
<el-table-column type="index" :label="t('tabsOption.index')" width="60" />
|
||||
<el-table-column prop="icon" :label="t('tabsOption.icon')" show-overflow-tooltip>
|
||||
<template #default="scope">
|
||||
<SvgIcon :name="scope.row.icon" :size="20" color="#409EFF"/>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="formName" :label="t('tabsOption.formName')" show-overflow-tooltip/>
|
||||
<el-table-column prop="groupName" :label="t('tabsOption.groupName')" show-overflow-tooltip/>
|
||||
<el-table-column prop="path" :label="t('tabsOption.path')" show-overflow-tooltip/>
|
||||
<!-- <el-table-column prop="isActive" :label="t('tabsOption.isActive')" show-overflow-tooltip>
|
||||
<template #default="scope">
|
||||
<dict-tag :options="DIC_PROP.YES_OR_NO" :value="scope.row.isActive"></dict-tag>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="isAutoAudit" :label="t('tabsOption.isAutoAudit')" show-overflow-tooltip>
|
||||
<template #default="scope">
|
||||
<dict-tag :options="DIC_PROP.YES_OR_NO" :value="scope.row.isAutoAudit"></dict-tag>
|
||||
</template>
|
||||
</el-table-column>-->
|
||||
<el-table-column prop="type" :label="t('tabsOption.type')" show-overflow-tooltip>
|
||||
<template #default="scope">
|
||||
<dict-tag :options="DIC_PROP.FORM_TYPE" :value="scope.row.type"></dict-tag>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="status" :label="t('tabsOption.status')" show-overflow-tooltip>
|
||||
<template #default="scope">
|
||||
<dict-tag :options="DIC_PROP.TEMP_STATUS" :value="scope.row.status"></dict-tag>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="sort" :label="t('tabsOption.sort')" show-overflow-tooltip/>
|
||||
<el-table-column prop="version" :label="t('tabsOption.version')" show-overflow-tooltip/>
|
||||
<!-- <el-table-column prop="createTime" :label="t('tabsOption.createTime')" show-overflow-tooltip/>-->
|
||||
<el-table-column :label="$t('common.action')" width="180">
|
||||
<template #default="scope">
|
||||
<el-tooltip placement="top">
|
||||
<template #content>
|
||||
{{ $t('common.viewBtn') }}
|
||||
</template>
|
||||
<el-button text type="primary" icon="view" @click="formDialogRef.openDialog('view', scope.row.id)" v-auth="'jsonflow_tabsoption_view'">
|
||||
</el-button>
|
||||
</el-tooltip>
|
||||
<el-tooltip placement="top">
|
||||
<template #content>
|
||||
{{ $t('common.editBtn') }}
|
||||
</template>
|
||||
<el-button icon="edit-pen" text type="primary" v-auth="'jsonflow_tabsoption_edit'" @click="formDialogRef.openDialog('edit', scope.row.id)">
|
||||
</el-button>
|
||||
</el-tooltip>
|
||||
<el-tooltip placement="top">
|
||||
<template #content>
|
||||
{{ $t('common.delBtn') }}
|
||||
</template>
|
||||
<el-button icon="delete" text type="primary" v-auth="'jsonflow_tabsoption_del'" @click="handleDelete([scope.row.id])">
|
||||
</el-button>
|
||||
</el-tooltip>
|
||||
<el-tooltip placement="top">
|
||||
<template #content>
|
||||
{{ $t('jfI18n.printTemplate') }}
|
||||
</template>
|
||||
<el-button icon="Document" text type="primary" @click="handlePrintTemplate(scope.row)">
|
||||
</el-button>
|
||||
</el-tooltip>
|
||||
|
||||
<el-tooltip placement="top" v-if="scope.row.formInfo">
|
||||
<template #content>
|
||||
{{ $t('jfI18n.viewPageBtn') }}
|
||||
</template>
|
||||
<el-button icon="ZoomIn" text type="primary" @click="openPreview(scope.row)">
|
||||
</el-button>
|
||||
</el-tooltip>
|
||||
|
||||
<el-tooltip placement="top">
|
||||
<template #content>
|
||||
{{ $t('jfI18n.onceMoreDesign') }}
|
||||
</template>
|
||||
<el-button text type="primary" icon="Pointer" v-auth="'jsonflow_tabsoption_edit'"
|
||||
@click.native="handleDesignTabs(true, scope.row)">
|
||||
</el-button>
|
||||
</el-tooltip>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
<pagination @size-change="sizeChangeHandle" @current-change="currentChangeHandle" v-bind="state.pagination" />
|
||||
</div>
|
||||
|
||||
<!-- 编辑、新增 -->
|
||||
<form-dialog ref="formDialogRef" @refresh="getDataList(false)" />
|
||||
|
||||
<!-- 表单设计 -->
|
||||
<el-drawer
|
||||
class="flow-overflow-drawer" direction="rtl"
|
||||
append-to-body size="100%"
|
||||
v-model="data.showDesignTabs"
|
||||
:with-header="false">
|
||||
<tabs-form-design v-if="data.showDesignTabs" :currFlowForm="data.currFlowForm" @handleDesignTabs="handleDesignTabs"></tabs-form-design>
|
||||
</el-drawer>
|
||||
|
||||
<!-- 查看表单 -->
|
||||
<el-dialog v-model="data.showViewOrder" top="20px" width="80%"
|
||||
title="查看表单" append-to-body>
|
||||
<form-render :currFlowForm="data.currFlowForm" v-if="data.showViewOrder" :renderType="'-1'"></form-render>
|
||||
</el-dialog>
|
||||
|
||||
<!-- 打印模板设计器 -->
|
||||
<el-drawer class="tinymce-print-drawer" append-to-body direction="rtl"
|
||||
v-model="data.showTinymceEditor" size="100%"
|
||||
:title="data.tinymceTitle" @close="getDataList">
|
||||
<tinymce-editor v-if="data.showTinymceEditor" :currFlowForm="data.currFlowForm"></tinymce-editor>
|
||||
</el-drawer>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts" name="systemTabsOption">
|
||||
import { BasicTableProps, useTable } from "/@/hooks/table";
|
||||
import { fetchList, delObjs, putObj } from "/@/api/order/flow-application";
|
||||
import { useMessage, useMessageBox } from "/@/hooks/message";
|
||||
|
||||
import { useI18n } from "vue-i18n";
|
||||
import other from '/@/utils/other';
|
||||
import {parseWithFunctions} from "/@/flow";
|
||||
import {utils} from "/@/flow/designer/utils/common";
|
||||
|
||||
// 引入组件
|
||||
const FormDialog = defineAsyncComponent(() => import('/@/flow/components/tabs-option/form.vue'));
|
||||
const TabsFormDesign = defineAsyncComponent(() => import('/@/flow/components/tabs-option/design.vue'));
|
||||
const FormRender = defineAsyncComponent(() => import('/@/flow/components/form-create/render.vue'));
|
||||
const TinymceEditor = defineAsyncComponent(() => import('/@/flow/components/tinymce/TinymceEditor.vue'));
|
||||
|
||||
const { t } = useI18n()
|
||||
// 定义查询字典
|
||||
|
||||
// 定义变量内容
|
||||
const formDialogRef = ref()
|
||||
// 搜索变量
|
||||
const queryRef = ref()
|
||||
const showSearch = ref(true)
|
||||
// 多选变量
|
||||
const selectObjs = ref([]) as any
|
||||
const multiple = ref(true)
|
||||
|
||||
const state: BasicTableProps = reactive<BasicTableProps>({
|
||||
queryForm: {},
|
||||
pageList: fetchList,
|
||||
descs: ["create_time"]
|
||||
})
|
||||
|
||||
// table hook
|
||||
const {
|
||||
getDataList,
|
||||
currentChangeHandle,
|
||||
sizeChangeHandle,
|
||||
sortChangeHandle,
|
||||
downBlobFile
|
||||
} = useTable(state)
|
||||
|
||||
// 清空搜索条件
|
||||
const resetQuery = () => {
|
||||
// 清空搜索条件
|
||||
queryRef.value?.resetFields()
|
||||
// 清空多选
|
||||
selectObjs.value = []
|
||||
getDataList()
|
||||
}
|
||||
|
||||
// 导出excel
|
||||
const exportExcel = () => {
|
||||
downBlobFile('/order/flow-application/export', state.queryForm, 'flow-application.xlsx')
|
||||
}
|
||||
|
||||
// 多选事件
|
||||
const handleSelectionChange = (objs: any) => {
|
||||
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 delObjs(ids);
|
||||
getDataList();
|
||||
useMessage().success(t('common.delSuccessText'));
|
||||
} catch (err: any) {
|
||||
useMessage().error(err.msg);
|
||||
}
|
||||
};
|
||||
|
||||
const data = reactive({
|
||||
showDesignTabs: false,
|
||||
showViewOrder: false,
|
||||
currFlowForm: {},
|
||||
showTinymceEditor: false,
|
||||
tinymceTitle: '',
|
||||
})
|
||||
|
||||
function handlePrintTemplate(row) {
|
||||
data.currFlowForm = {id: row.id, formType: row.type, formId: row.id, formName: row.formName, path: row.path, isForm: true}
|
||||
data.currFlowForm.formInfo = row.formInfo
|
||||
data.tinymceTitle = "打印模板设计器(自定义《" + row.formName + "》打印格式)"
|
||||
data.showTinymceEditor = true
|
||||
}
|
||||
|
||||
// 一键设计
|
||||
const handleDesignTabs = async (bool: boolean, row?: any) => {
|
||||
data.showDesignTabs = bool
|
||||
if (bool === false) {
|
||||
getDataList()
|
||||
return
|
||||
}
|
||||
if (row) {
|
||||
data.currFlowForm = other.deepClone(row)
|
||||
data.currFlowForm.formInfo = parseWithFunctions(row.formInfo, true)
|
||||
data.currFlowForm.active = "tabsSetting";
|
||||
} else {
|
||||
data.currFlowForm = {
|
||||
id: utils.getId(),
|
||||
active: 'tabsSetting',
|
||||
icon: 'iconfont icon-shuxingtu',
|
||||
formName: '未命名',
|
||||
type: '0',
|
||||
isActive: '1',
|
||||
isAutoAudit: '0',
|
||||
status: '-1',
|
||||
version: 1,
|
||||
isNew: true,
|
||||
sort: 1
|
||||
}
|
||||
}
|
||||
}
|
||||
// 查看表单
|
||||
const openPreview = async (row: any) => {
|
||||
data.currFlowForm = other.deepClone(row)
|
||||
data.showViewOrder = true
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
@import "../../../flow/components/style/flow-drawer.scss";
|
||||
</style>
|
||||
Reference in New Issue
Block a user