123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390 |
- <!-- 2无缓存,只展示代办数据 -->
- <template>
- <div class="pageIndexClass">
- <!-- <Banner /> -->
- <div class="content">
- <byTable :source="sourceList.data" :pagination="sourceList.pagination" :config="config" :loading="loading" highlight-current-row
- :selectConfig="selectConfig" :table-events="{
- //element talbe事件都能传
- select: select,
- }" @get-list="getList">
- <template #slotName="{ item }">
- {{ item.createTime }}
- </template>
- <template #nodeType="{item}">
- <div style="width:100%">
- <span :class="{csNode:item.nodeHandleType=='30'}"> {{dictValueLabel(item.nodeHandleType,nodeTypeData)}}</span>
- </div>
- </template>
- </byTable>
- </div>
- <el-dialog :title="modalType == 'add' ? '新增' : '编辑'" v-model="dialogVisible" width="400" v-loading="loading">
- <byForm :formConfig="formConfig" :formOption="formOption" v-model="formData.data" :rules="rules" ref="byform">
- </byForm>
- <template #footer>
- <el-button @click="dialogVisible = false" size="default">取 消</el-button>
- <el-button type="primary" @click="submitForm('byform')" size="default" :loading="submitLoading">
- 确 定
- </el-button>
- </template>
- </el-dialog>
- </div>
- </template>
-
- <script setup name="Backlog">
- /* eslint-disable vue/no-unused-components */
- import { ElMessage, ElMessageBox } from "element-plus";
- import byTable from "@/components/byTable/index";
- import byForm from "@/components/byForm/index";
- import { computed, defineComponent, ref } from "vue";
- const loading = ref(false);
- const submitLoading = ref(false);
- const dictCommonModal = ref(false);
- const sourceList = ref({
- data: [],
- pagination: {
- total: 3,
- pageNum: 1,
- pageSize: 10,
- status: 1,
- },
- });
- let dialogVisible = ref(false);
- let roomDialogVisible = ref(false);
- let modalType = ref("add");
- let rules = ref({
- classifyName: [
- { required: true, message: "请输入功能模块", trigger: "blur" },
- ],
- flowKey: [{ required: true, message: "请输入流程标识", trigger: "blur" }],
- flowName: [{ required: true, message: "请输入流程名称", trigger: "blur" }],
- });
- const { proxy } = getCurrentInstance();
- const nodeTypeData = ref([
- {
- label: "常规",
- value: "10",
- },
- {
- label: "聚合",
- value: "20",
- },
- {
- label: "抄送",
- value: "30",
- },
- ]);
- const selectConfig = computed(() => {
- return [
- {
- label: "流程类型",
- prop: "flowInfoId",
- data: [],
- },
- ];
- });
- const config = computed(() => {
- return [
- {
- attrs: {
- label: "流程类型",
- prop: "flowName",
- width: 200,
- },
- },
- {
- attrs: {
- label: "流程标题",
- prop: "title",
- },
- },
- {
- attrs: {
- label: "当前处理节点",
- prop: "nodeName",
- width: 160,
- },
- },
- {
- attrs: {
- label: "节点类型",
- prop: "nodeType",
- slot: "nodeType",
- width: 100,
- },
- },
- {
- attrs: {
- label: "流程状态",
- width: 100,
- prop: "status",
- },
- render(status) {
- return status == 0 || status == 1
- ? "待处理"
- : status == 2
- ? "已通过"
- : "已驳回";
- },
- },
- {
- attrs: {
- label: "发起人",
- prop: "createUserName",
- width: 160,
- },
- },
- {
- attrs: {
- label: "发起时间",
- prop: "createTime",
- width: 160,
- },
- },
- {
- attrs: {
- label: "操作",
- width: "100",
- align: "center",
- },
- // 渲染 el-button,一般用在最后一列。
- renderHTML(row) {
- return [
- {
- attrs: {
- label: row.status == 0 || row.status == 1 ? "办理" : "查看",
- type: "primary",
- text: true,
- bg: true,
- disabled: false,
- },
- el: "button",
- click() {
- if (row.nodeHandleType == "30") {
- proxy.$router.push({
- path: "/platform_manage/process/processApproval",
- query: {
- flowKey: row.flowKey,
- id: row.id,
- processType: 10,
- version: row.version,
- businessId: row.businessId,
- submitType: "10",
- },
- });
- return;
- }
- if (row.status != 1 && row.status != 0) {
- proxy.$router.push({
- path: "/platform_manage/process/processApproval",
- query: {
- flowKey: row.flowKey,
- id: row.id,
- processType: 20,
- version: row.version,
- businessId: row.businessId,
- submitType: "10",
- },
- });
- return;
- }
- proxy
- .post("flowExample/getApprovalRecord", { id: row.id })
- .then((res) => {
- if (res.recordList.length > 0) {
- let data = res.recordList.filter(
- (item) => item.status === 2
- );
- let nodeType = 0;
- if (data && data.length > 0) {
- nodeType = data[0].nodeType;
- }
- proxy.$router.push({
- path: "/platform_manage/process/processApproval",
- query: {
- flowKey: row.flowKey,
- id: row.id,
- processType: nodeType == 1 ? 30 : 10,
- businessId: row.businessId,
- version: row.version,
- submitType: "10",
- },
- });
- }
- });
- },
- },
- ];
- },
- },
- ];
- });
- let dtlData = reactive({
- data: {},
- });
- let formData = reactive({
- data: {},
- treeData: [],
- });
- const formOption = reactive({
- inline: true,
- labelWidth: 100,
- itemWidth: 100,
- rules: [],
- });
- const byform = ref(null);
- const treeData = ref([]);
- const formConfig = computed(() => {
- return [
- {
- type: "input",
- prop: "classifyName",
- label: "功能模块",
- },
- {
- type: "input",
- prop: "flowKey",
- label: "流程标识",
- isHide: modalType.value == "edit",
- },
- {
- type: "input",
- prop: "flowName",
- label: "流程名称",
- },
- ];
- });
- const flowJump = (row, type) => {
- proxy
- .post("/flowProcess/jump", {
- flowId: row.id,
- handleType: type,
- version: row.version,
- data: {},
- })
- .then((message) => {
- console.log(message);
- if (message) {
- ElMessage.success("操作成功");
- getList();
- }
- });
- };
- const getFlowType = () => {
- proxy.post("/flowExample/getFlowType").then((message) => {
- console.log(message);
- selectConfig.value[0].data = message.map((item) => {
- return {
- label: item.flowName,
- value: item.id,
- };
- });
- });
- };
- getFlowType();
- const getUrlObj = {
- 1: "/flowExample/getToBeProcessedPage",
- 2: "/flowExample/getHaveInitiatedPage",
- 3: "/flowExample/getProcessedPage",
- };
- const getList = async (req) => {
- sourceList.value.pagination = { ...sourceList.value.pagination, ...req };
- loading.value = true;
- proxy
- .post(
- getUrlObj[sourceList.value.pagination.status],
- sourceList.value.pagination
- )
- .then((message) => {
- console.log(message);
- sourceList.value.data = message.rows;
- sourceList.value.pagination.total = message.total;
- setTimeout(() => {
- loading.value = false;
- }, 200);
- });
- };
- const openModal = () => {
- dialogVisible.value = true;
- modalType.value = "add";
- formData.data = {};
- };
- const selection = ref({
- data: [],
- });
- const select = (_selection, row) => {
- selection.value.data = _selection;
- console.log(_selection.length);
- };
- const tree = ref(null);
- const submitTree = () => {
- proxy
- .post("/tenantInfo/bindingMenu", {
- tenantId: selection.value.data[0].tenantId,
- menuIdList: tree.value.getCheckedKeys(),
- })
- .then((res) => {
- ElMessage({
- message: "保存成功",
- type: "success",
- });
- roomDialogVisible.value = false;
- });
- };
- const submitForm = () => {
- byform.value.handleSubmit((valid) => {
- submitLoading.value = true;
- proxy.post("/flowInfo/" + modalType.value, formData.data).then((res) => {
- ElMessage({
- message: modalType.value == "add" ? "添加成功" : "编辑成功",
- type: "success",
- });
- dialogVisible.value = false;
- submitLoading.value = false;
- getList();
- });
- });
- };
- const getDtl = (row) => {
- formData.data = { ...row };
- modalType.value = "edit";
- dialogVisible.value = true;
- };
- const changeStatus = (row) => {
- modalType.value = "edit";
- proxy
- .post("/flowInfo/edit", { ...row, status: row.status === 0 ? 1 : 0 })
- .then((res) => {
- ElMessage({
- message: "操作成功",
- type: "success",
- });
- getList();
- });
- };
- onMounted(() => {
- const route = useRoute();
- sourceList.value.pagination.status = route.query.type ? route.query.type : 1;
- getList();
- });
- </script>
-
- <style lang="scss" scoped>
- .tenant {
- padding: 20px;
- }
- .csNode {
- background: #39c55a;
- color: #fff;
- border-radius: 2px;
- padding: 4px;
- }
- </style>
|