修改bug

This commit is contained in:
yangjun 2026-01-29 13:56:34 +08:00
parent 33f7f36b58
commit c882821092
4 changed files with 19 additions and 5 deletions

View File

@ -5,6 +5,12 @@ import { render } from '/@/utils/common/renderUtils';
import { getWeekMonthQuarterYear } from '/@/utils';
//列表数据
export const columns: BasicColumn[] = [
{
title: '机构名称',
align: "center",
dataIndex: 'orgName',
width: 240,
},
{
title: '发版日期',
align: "center",

View File

@ -5,6 +5,13 @@
<a-form ref="formRef" @keyup.enter.native="searchQuery" :model="queryParam" :label-col="labelCol"
:wrapper-col="wrapperCol">
<a-row :gutter="24">
<a-col :lg="6">
<a-form-item name="orgName">
<template #label><span title="机构名称">机构名称</span></template>
<j-dict-select-tag type='list' v-model:value="queryParam.orgName" dictCode="sys_depart,depart_name,depart_name"
placeholder="请选择机构名称" allow-clear />
</a-form-item>
</a-col>
<a-col :lg="6">
<a-form-item name="createTime">
<template #label><span title="发版日期">发版日期</span></template>
@ -15,7 +22,7 @@
<a-col :lg="6">
<a-form-item name="issueType">
<template #label><span title="发版类型">发版类型</span></template>
<j-select-multiple placeholder="请选择发版类型" v-model:value="queryParam.issueType" dictCode="issue_type"
<j-dict-select-tag type='list' placeholder="请选择发版类型" v-model:value="queryParam.issueType" dictCode="issue_type"
allow-clear />
</a-form-item>
</a-col>
@ -76,6 +83,7 @@ import IssueInfoDetailModal from './components/IssueInfoDetailModal.vue'
import { useUserStore } from '/@/store/modules/user';
import JSelectMultiple from '/@/components/Form/src/jeecg/components/JSelectMultiple.vue';
import { cloneDeep } from "lodash-es";
import JDictSelectTag from '/@/components/Form/src/jeecg/components/JDictSelectTag.vue';
const formRef = ref();
const queryParam = reactive<any>({});

View File

@ -6,7 +6,7 @@ import { getWeekMonthQuarterYear } from '/@/utils';
//列表数据
export const columns: BasicColumn[] = [
{
title: '企业名称',
title: '机构名称',
align: 'center',
dataIndex: 'comName',
},
@ -47,7 +47,7 @@ export const columns: BasicColumn[] = [
width: '8%'
},
{
title: '当前阶段',
title: '工单类型',
align: 'center',
dataIndex: 'buildStatus_dictText',
width: '8%'

View File

@ -7,7 +7,7 @@
<a-row :gutter="24">
<a-col :lg="6">
<a-form-item name="title">
<template #label><span title="企业信息">企业信息</span></template>
<template #label><span title="机构名称">机构名称</span></template>
<JInput v-model:value="queryParam.title" placeholder="请输入机构名称/负责人/联系电话" :type="'default'"/>
</a-form-item>
</a-col>