修改bug
This commit is contained in:
parent
33f7f36b58
commit
c882821092
|
|
@ -5,6 +5,12 @@ import { render } from '/@/utils/common/renderUtils';
|
||||||
import { getWeekMonthQuarterYear } from '/@/utils';
|
import { getWeekMonthQuarterYear } from '/@/utils';
|
||||||
//列表数据
|
//列表数据
|
||||||
export const columns: BasicColumn[] = [
|
export const columns: BasicColumn[] = [
|
||||||
|
{
|
||||||
|
title: '机构名称',
|
||||||
|
align: "center",
|
||||||
|
dataIndex: 'orgName',
|
||||||
|
width: 240,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: '发版日期',
|
title: '发版日期',
|
||||||
align: "center",
|
align: "center",
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,13 @@
|
||||||
<a-form ref="formRef" @keyup.enter.native="searchQuery" :model="queryParam" :label-col="labelCol"
|
<a-form ref="formRef" @keyup.enter.native="searchQuery" :model="queryParam" :label-col="labelCol"
|
||||||
:wrapper-col="wrapperCol">
|
:wrapper-col="wrapperCol">
|
||||||
<a-row :gutter="24">
|
<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-col :lg="6">
|
||||||
<a-form-item name="createTime">
|
<a-form-item name="createTime">
|
||||||
<template #label><span title="发版日期">发版日期</span></template>
|
<template #label><span title="发版日期">发版日期</span></template>
|
||||||
|
|
@ -15,8 +22,8 @@
|
||||||
<a-col :lg="6">
|
<a-col :lg="6">
|
||||||
<a-form-item name="issueType">
|
<a-form-item name="issueType">
|
||||||
<template #label><span title="发版类型">发版类型</span></template>
|
<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 />
|
allow-clear />
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
<a-col :xl="6" :lg="7" :md="8" :sm="24">
|
<a-col :xl="6" :lg="7" :md="8" :sm="24">
|
||||||
|
|
@ -76,6 +83,7 @@ import IssueInfoDetailModal from './components/IssueInfoDetailModal.vue'
|
||||||
import { useUserStore } from '/@/store/modules/user';
|
import { useUserStore } from '/@/store/modules/user';
|
||||||
import JSelectMultiple from '/@/components/Form/src/jeecg/components/JSelectMultiple.vue';
|
import JSelectMultiple from '/@/components/Form/src/jeecg/components/JSelectMultiple.vue';
|
||||||
import { cloneDeep } from "lodash-es";
|
import { cloneDeep } from "lodash-es";
|
||||||
|
import JDictSelectTag from '/@/components/Form/src/jeecg/components/JDictSelectTag.vue';
|
||||||
|
|
||||||
const formRef = ref();
|
const formRef = ref();
|
||||||
const queryParam = reactive<any>({});
|
const queryParam = reactive<any>({});
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ import { getWeekMonthQuarterYear } from '/@/utils';
|
||||||
//列表数据
|
//列表数据
|
||||||
export const columns: BasicColumn[] = [
|
export const columns: BasicColumn[] = [
|
||||||
{
|
{
|
||||||
title: '企业名称',
|
title: '机构名称',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
dataIndex: 'comName',
|
dataIndex: 'comName',
|
||||||
},
|
},
|
||||||
|
|
@ -47,7 +47,7 @@ export const columns: BasicColumn[] = [
|
||||||
width: '8%'
|
width: '8%'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '当前阶段',
|
title: '工单类型',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
dataIndex: 'buildStatus_dictText',
|
dataIndex: 'buildStatus_dictText',
|
||||||
width: '8%'
|
width: '8%'
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@
|
||||||
<a-row :gutter="24">
|
<a-row :gutter="24">
|
||||||
<a-col :lg="6">
|
<a-col :lg="6">
|
||||||
<a-form-item name="title">
|
<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'"/>
|
<JInput v-model:value="queryParam.title" placeholder="请输入机构名称/负责人/联系电话" :type="'default'"/>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue