From e67e4ed8af88142538ad0b3359650ee214cdeaf8 Mon Sep 17 00:00:00 2001 From: Gitea Date: Fri, 1 Nov 2024 15:03:32 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=9B=E6=96=B0=E5=88=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../InnovationVoucher.data.ts | 12 +-- .../InnovationVoucher.data2.ts | 96 +++++++++++++++++++ .../InnovationVoucher.data4.ts | 96 +++++++++++++++++++ .../InnovationVoucherList2.vue | 2 +- .../InnovationVoucherList3.vue | 2 +- .../InnovationVoucherList4.vue | 2 +- .../InnovationVoucherList5.vue | 2 +- 7 files changed, 202 insertions(+), 10 deletions(-) create mode 100644 jeecgboot-vue3/src/views/innovationvoucher/InnovationVoucher.data2.ts create mode 100644 jeecgboot-vue3/src/views/innovationvoucher/InnovationVoucher.data4.ts diff --git a/jeecgboot-vue3/src/views/innovationvoucher/InnovationVoucher.data.ts b/jeecgboot-vue3/src/views/innovationvoucher/InnovationVoucher.data.ts index a7f72ca..dee492a 100644 --- a/jeecgboot-vue3/src/views/innovationvoucher/InnovationVoucher.data.ts +++ b/jeecgboot-vue3/src/views/innovationvoucher/InnovationVoucher.data.ts @@ -40,27 +40,27 @@ export const columns: BasicColumn[] = [ align: "center", dataIndex: 'applyDept_dictText' }, - { +/* { title: '是否同意', align: "center", dataIndex: 'sfState_dictText' - }, + },*/ { title: '审核状态', align: "center", dataIndex: 'state_dictText' }, - { +/* { title: '使用状态', align: "center", dataIndex: 'useState_dictText' - }, + },*/ { title: '驳回原因', align: "center", dataIndex: 'reject' }, - { +/* { title: '是否申请兑现', align: "center", dataIndex: 'sfSqdxSta_dictText' @@ -74,7 +74,7 @@ export const columns: BasicColumn[] = [ title: '兑现驳回原因', align: "center", dataIndex: 'dxReject' - }, + },*/ ]; // 高级查询数据 diff --git a/jeecgboot-vue3/src/views/innovationvoucher/InnovationVoucher.data2.ts b/jeecgboot-vue3/src/views/innovationvoucher/InnovationVoucher.data2.ts new file mode 100644 index 0000000..504b4ee --- /dev/null +++ b/jeecgboot-vue3/src/views/innovationvoucher/InnovationVoucher.data2.ts @@ -0,0 +1,96 @@ +import {BasicColumn} from '/@/components/Table'; +import {FormSchema} from '/@/components/Table'; +import { rules} from '/@/utils/helper/validator'; +import { render } from '/@/utils/common/renderUtils'; +import { getWeekMonthQuarterYear } from '/@/utils'; +//列表数据 +export const columns: BasicColumn[] = [ + { + title: '创新券编码', + align: "center", + dataIndex: 'cxqCode' + }, + { + title: '申报项目名称', + align: "center", + dataIndex: 'proName' + }, + { + title: '申报类别', + align: "center", + dataIndex: 'proType_dictText' + }, + { + title: '申领金额', + align: "center", + dataIndex: 'proMoney' + }, + { + title: '附件', + align: "center", + dataIndex: 'attachment', + }, + { + title: '申领单位', + align: "center", + dataIndex: 'proDept_dictText' + }, + { + title: '服务单位', + align: "center", + dataIndex: 'applyDept_dictText' + }, + { + title: '是否同意', + align: "center", + dataIndex: 'sfState_dictText' + }, +/* { + title: '审核状态', + align: "center", + dataIndex: 'state_dictText' + },*/ + { + title: '使用状态', + align: "center", + dataIndex: 'useState_dictText' + }, +/* { + title: '驳回原因', + align: "center", + dataIndex: 'reject' + }, + { + title: '是否申请兑现', + align: "center", + dataIndex: 'sfSqdxSta_dictText' + }, + { + title: '兑现审核状态', + align: "center", + dataIndex: 'dxshSta_dictText' + }, + { + title: '兑现驳回原因', + align: "center", + dataIndex: 'dxReject' + },*/ +]; + +// 高级查询数据 +export const superQuerySchema = { + cxqCode: {title: '创新券编码',order: 0,view: 'text', type: 'string',}, + proName: {title: '申报项目名称',order: 1,view: 'text', type: 'string',}, + proType: {title: '申报类别',order: 2,view: 'list', type: 'string',dictCode: 'cxq_type',}, + proMoney: {title: '申领金额',order: 3,view: 'number', type: 'number',}, + attachment: {title: '附件',order: 4,view: 'file', type: 'string',}, + proDept: {title: '申领单位',order: 5,view: 'sel_depart', type: 'string',}, + applyDept: {title: '服务单位',order: 6,view: 'sel_depart', type: 'string',}, + sfState: {title: '是否同意',order: 7,view: 'list', type: 'string',dictCode: 'cxq_sf_sta',}, + state: {title: '审核状态',order: 8,view: 'list', type: 'string',dictCode: 'in_exam_status',}, + useState: {title: '使用状态',order: 9,view: 'list', type: 'string',dictCode: 'cxq_use_sta',}, + reject: {title: '驳回原因',order: 10,view: 'textarea', type: 'string',}, + sfSqdxSta: {title: '是否申请兑现',order: 11,view: 'list', type: 'string',dictCode: 'sqdx_sf',}, + dxshSta: {title: '兑现审核状态',order: 12,view: 'list', type: 'string',dictCode: 'in_exam_status',}, + dxReject: {title: '兑现驳回原因',order: 13,view: 'textarea', type: 'string',}, +}; diff --git a/jeecgboot-vue3/src/views/innovationvoucher/InnovationVoucher.data4.ts b/jeecgboot-vue3/src/views/innovationvoucher/InnovationVoucher.data4.ts new file mode 100644 index 0000000..9ccf40c --- /dev/null +++ b/jeecgboot-vue3/src/views/innovationvoucher/InnovationVoucher.data4.ts @@ -0,0 +1,96 @@ +import {BasicColumn} from '/@/components/Table'; +import {FormSchema} from '/@/components/Table'; +import { rules} from '/@/utils/helper/validator'; +import { render } from '/@/utils/common/renderUtils'; +import { getWeekMonthQuarterYear } from '/@/utils'; +//列表数据 +export const columns: BasicColumn[] = [ + { + title: '创新券编码', + align: "center", + dataIndex: 'cxqCode' + }, + { + title: '申报项目名称', + align: "center", + dataIndex: 'proName' + }, + { + title: '申报类别', + align: "center", + dataIndex: 'proType_dictText' + }, + { + title: '申领金额', + align: "center", + dataIndex: 'proMoney' + }, + { + title: '附件', + align: "center", + dataIndex: 'attachment', + }, + { + title: '申领单位', + align: "center", + dataIndex: 'proDept_dictText' + }, + { + title: '服务单位', + align: "center", + dataIndex: 'applyDept_dictText' + }, +/* { + title: '是否同意', + align: "center", + dataIndex: 'sfState_dictText' + }, + { + title: '审核状态', + align: "center", + dataIndex: 'state_dictText' + },*/ + { + title: '使用状态', + align: "center", + dataIndex: 'useState_dictText' + }, +/* { + title: '驳回原因', + align: "center", + dataIndex: 'reject' + },*/ + { + title: '是否申请兑现', + align: "center", + dataIndex: 'sfSqdxSta_dictText' + }, + { + title: '兑现审核状态', + align: "center", + dataIndex: 'dxshSta_dictText' + }, + { + title: '兑现驳回原因', + align: "center", + dataIndex: 'dxReject' + }, +]; + +// 高级查询数据 +export const superQuerySchema = { + cxqCode: {title: '创新券编码',order: 0,view: 'text', type: 'string',}, + proName: {title: '申报项目名称',order: 1,view: 'text', type: 'string',}, + proType: {title: '申报类别',order: 2,view: 'list', type: 'string',dictCode: 'cxq_type',}, + proMoney: {title: '申领金额',order: 3,view: 'number', type: 'number',}, + attachment: {title: '附件',order: 4,view: 'file', type: 'string',}, + proDept: {title: '申领单位',order: 5,view: 'sel_depart', type: 'string',}, + applyDept: {title: '服务单位',order: 6,view: 'sel_depart', type: 'string',}, + sfState: {title: '是否同意',order: 7,view: 'list', type: 'string',dictCode: 'cxq_sf_sta',}, + state: {title: '审核状态',order: 8,view: 'list', type: 'string',dictCode: 'in_exam_status',}, + useState: {title: '使用状态',order: 9,view: 'list', type: 'string',dictCode: 'cxq_use_sta',}, + reject: {title: '驳回原因',order: 10,view: 'textarea', type: 'string',}, + sfSqdxSta: {title: '是否申请兑现',order: 11,view: 'list', type: 'string',dictCode: 'sqdx_sf',}, + dxshSta: {title: '兑现审核状态',order: 12,view: 'list', type: 'string',dictCode: 'in_exam_status',}, + dxReject: {title: '兑现驳回原因',order: 13,view: 'textarea', type: 'string',}, +}; diff --git a/jeecgboot-vue3/src/views/innovationvoucher/InnovationVoucherList2.vue b/jeecgboot-vue3/src/views/innovationvoucher/InnovationVoucherList2.vue index 10c8c91..8c2368f 100644 --- a/jeecgboot-vue3/src/views/innovationvoucher/InnovationVoucherList2.vue +++ b/jeecgboot-vue3/src/views/innovationvoucher/InnovationVoucherList2.vue @@ -83,7 +83,7 @@ import { ref, reactive } from 'vue'; import { BasicTable, useTable, TableAction } from '/@/components/Table'; import { useListPage } from '/@/hooks/system/useListPage'; - import { columns, superQuerySchema } from './InnovationVoucher.data'; + import { columns, superQuerySchema } from './InnovationVoucher.data2'; import { list2, deleteOne, batchDelete, getImportUrl, getExportUrl } from './InnovationVoucher.api'; import { downloadFile } from '/@/utils/common/renderUtils'; import InnovationVoucherModal2 from './components/InnovationVoucherModal2.vue' diff --git a/jeecgboot-vue3/src/views/innovationvoucher/InnovationVoucherList3.vue b/jeecgboot-vue3/src/views/innovationvoucher/InnovationVoucherList3.vue index 020bdb0..cf0767b 100644 --- a/jeecgboot-vue3/src/views/innovationvoucher/InnovationVoucherList3.vue +++ b/jeecgboot-vue3/src/views/innovationvoucher/InnovationVoucherList3.vue @@ -83,7 +83,7 @@ import { ref, reactive } from 'vue'; import { BasicTable, useTable, TableAction } from '/@/components/Table'; import { useListPage } from '/@/hooks/system/useListPage'; - import { columns, superQuerySchema } from './InnovationVoucher.data'; + import { columns, superQuerySchema } from './InnovationVoucher.data2'; import { list3, deleteOne, diff --git a/jeecgboot-vue3/src/views/innovationvoucher/InnovationVoucherList4.vue b/jeecgboot-vue3/src/views/innovationvoucher/InnovationVoucherList4.vue index e2b2da5..5dc1d48 100644 --- a/jeecgboot-vue3/src/views/innovationvoucher/InnovationVoucherList4.vue +++ b/jeecgboot-vue3/src/views/innovationvoucher/InnovationVoucherList4.vue @@ -83,7 +83,7 @@ import { ref, reactive } from 'vue'; import { BasicTable, useTable, TableAction } from '/@/components/Table'; import { useListPage } from '/@/hooks/system/useListPage'; - import { columns, superQuerySchema } from './InnovationVoucher.data'; + import { columns, superQuerySchema } from './InnovationVoucher.data4'; import { list4, deleteOne, batchDelete, getImportUrl, getExportUrl,tjdxsh } from './InnovationVoucher.api'; import { downloadFile } from '/@/utils/common/renderUtils'; import InnovationVoucherModal from './components/InnovationVoucherModal.vue' diff --git a/jeecgboot-vue3/src/views/innovationvoucher/InnovationVoucherList5.vue b/jeecgboot-vue3/src/views/innovationvoucher/InnovationVoucherList5.vue index 872870b..defb6e1 100644 --- a/jeecgboot-vue3/src/views/innovationvoucher/InnovationVoucherList5.vue +++ b/jeecgboot-vue3/src/views/innovationvoucher/InnovationVoucherList5.vue @@ -84,7 +84,7 @@ import { ref, reactive } from 'vue'; import { BasicTable, useTable, TableAction } from '/@/components/Table'; import { useListPage } from '/@/hooks/system/useListPage'; - import { columns, superQuerySchema } from './InnovationVoucher.data'; + import { columns, superQuerySchema } from './InnovationVoucher.data4'; import { list5, deleteOne,