还原冲突文件导致页面的变动
This commit is contained in:
parent
bc15e700fe
commit
ca5fc1a8a7
|
@ -1,10 +1,7 @@
|
||||||
package org.jeecg.modules.demo.xxhbjwxtscwjxx.controller;
|
package org.jeecg.modules.demo.xxhbjwxtscwjxx.controller;
|
||||||
|
|
||||||
import java.io.*;
|
import java.io.*;
|
||||||
import java.util.Arrays;
|
import java.util.*;
|
||||||
import java.util.HashMap;
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.Map;
|
|
||||||
import java.util.stream.Collectors;
|
import java.util.stream.Collectors;
|
||||||
import java.net.URLDecoder;
|
import java.net.URLDecoder;
|
||||||
import java.util.zip.ZipEntry;
|
import java.util.zip.ZipEntry;
|
||||||
|
@ -90,6 +87,32 @@ public class XxhbjwxtscwjxxController extends JeecgController<Xxhbjwxtscwjxx, IX
|
||||||
return Result.OK(pageList);
|
return Result.OK(pageList);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ApiOperation(value="教务系统上传文件信息-分页列表查询", notes="教务系统上传文件信息-分页列表查询")
|
||||||
|
@GetMapping(value = "/khcllist")
|
||||||
|
public Result<IPage<Xxhbjwxtscwjxx>> khcllist(Xxhbjwxtscwjxx xxhbjwxtscwjxx,
|
||||||
|
@RequestParam(name="pageNo", defaultValue="1") Integer pageNo,
|
||||||
|
@RequestParam(name="pageSize", defaultValue="10") Integer pageSize,
|
||||||
|
HttpServletRequest req) {
|
||||||
|
QueryWrapper<Xxhbjwxtscwjxx> queryWrapper = QueryGenerator.initQueryWrapper(xxhbjwxtscwjxx, req.getParameterMap());
|
||||||
|
Page<Xxhbjwxtscwjxx> page = new Page<Xxhbjwxtscwjxx>(pageNo, pageSize);
|
||||||
|
IPage<Xxhbjwxtscwjxx> pageList = xxhbjwxtscwjxxService.page(page, queryWrapper);
|
||||||
|
|
||||||
|
List<Xxhbjwxtscwjxx> list = pageList.getRecords();
|
||||||
|
if(list.size()>0){
|
||||||
|
List<Xxhbjwxtscwjxx> list2 = new ArrayList<>();
|
||||||
|
String sorts[] = ("课程考核合理性审核记录单,课程目标达成情况评价报告,课程考核质量评价单,期未考试-试题(或内容及要求),期末考试-评分标准,历次过程性考核-内容及要求(或试题),历次过程性考核-评分标准").split(",");
|
||||||
|
for (String par : sorts){
|
||||||
|
list2.add(list.stream().filter(item->item.getFjtype().equals(par)).findFirst().orElse(null));
|
||||||
|
}
|
||||||
|
pageList.setRecords(list2);
|
||||||
|
pageList.getRecords().forEach(item->{
|
||||||
|
item.setId(item.getPath());
|
||||||
|
});
|
||||||
|
}
|
||||||
|
return Result.OK(pageList);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 添加
|
* 添加
|
||||||
*
|
*
|
||||||
|
|
|
@ -13,17 +13,17 @@
|
||||||
<a-form ref="formRef" @keyup.enter.native="searchQuery2" :model="queryParam" :label-col="labelCol" :wrapper-col="wrapperCol" class="query-criteria">
|
<a-form ref="formRef" @keyup.enter.native="searchQuery2" :model="queryParam" :label-col="labelCol" :wrapper-col="wrapperCol" class="query-criteria">
|
||||||
<a-row :gutter="24">
|
<a-row :gutter="24">
|
||||||
<a-col :lg="6">
|
<a-col :lg="6">
|
||||||
<a-form-item name="xn">
|
<a-form-item name="zjxnxq">
|
||||||
<template #label><span title="学年" class="xn-title">学年</span></template>
|
<template #label><span title="学年学期" class="xn-title">学年学期</span></template>
|
||||||
<j-dict-select-tag placeholder="请选择学年" v-model:value="queryParam2.xn" :dictCode="`v_xn,xn,xn`" allow-clear />
|
<j-dict-select-tag placeholder="请选择学年学期" v-model:value="queryParam2.zjxnxq" :dictCode="`v_xqxn,xqxn,xqxn`" allow-clear />
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
<a-col :lg="6">
|
<!-- <a-col :lg="6">
|
||||||
<a-form-item name="xqmc">
|
<a-form-item name="xqmc">
|
||||||
<template #label><span title="学期" class="xn-title">学期</span></template>
|
<template #label><span title="学期" class="xn-title">学期</span></template>
|
||||||
<j-dict-select-tag placeholder="请选择学期" v-model:value="queryParam2.xqmc" dictCode="cjxq" allow-clear />
|
<j-dict-select-tag placeholder="请选择学期" v-model:value="queryParam2.xqmc" dictCode="cjxq" allow-clear />
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col> -->
|
||||||
<a-col :lg="6">
|
<a-col :lg="6">
|
||||||
<a-form-item name="kkyxmc">
|
<a-form-item name="kkyxmc">
|
||||||
<template #label><span title="开课单位名称" class="xn-title">开课单位名称</span></template>
|
<template #label><span title="开课单位名称" class="xn-title">开课单位名称</span></template>
|
||||||
|
@ -63,7 +63,7 @@
|
||||||
/>
|
/>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
<a-col :span="12" style="text-align: right">
|
<a-col :span="18" style="text-align: right">
|
||||||
<a-button type="primary" preIcon="ant-design:search-outlined" @click="searchQuery2">查询</a-button>
|
<a-button type="primary" preIcon="ant-design:search-outlined" @click="searchQuery2">查询</a-button>
|
||||||
</a-col>
|
</a-col>
|
||||||
</a-row>
|
</a-row>
|
||||||
|
@ -133,6 +133,12 @@
|
||||||
</a-popover>
|
</a-popover>
|
||||||
</a-col> -->
|
</a-col> -->
|
||||||
<a-col :lg="6">
|
<a-col :lg="6">
|
||||||
|
<a-form-item name="zjxnxq">
|
||||||
|
<template #label><span title="学年学期" class="xn-title">学年学期</span></template>
|
||||||
|
<j-dict-select-tag placeholder="请选择学年学期" v-model:value="queryParam.zjxnxq" :dictCode="`v_xqxn,xqxn,xqxn`" allow-clear />
|
||||||
|
</a-form-item>
|
||||||
|
</a-col>
|
||||||
|
<!-- <a-col :lg="6">
|
||||||
<a-form-item name="xn">
|
<a-form-item name="xn">
|
||||||
<template #label><span title="学年" class="xn-title">学年</span></template>
|
<template #label><span title="学年" class="xn-title">学年</span></template>
|
||||||
<j-dict-select-tag placeholder="请选择学年" v-model:value="queryParam.xn" :dictCode="`v_xn,xn,xn`" allow-clear />
|
<j-dict-select-tag placeholder="请选择学年" v-model:value="queryParam.xn" :dictCode="`v_xn,xn,xn`" allow-clear />
|
||||||
|
@ -143,7 +149,7 @@
|
||||||
<template #label><span title="学期" class="xn-title">学期</span></template>
|
<template #label><span title="学期" class="xn-title">学期</span></template>
|
||||||
<j-dict-select-tag placeholder="请选择学期" v-model:value="queryParam.xqmc" dictCode="cjxq" allow-clear />
|
<j-dict-select-tag placeholder="请选择学期" v-model:value="queryParam.xqmc" dictCode="cjxq" allow-clear />
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col> -->
|
||||||
<a-col :lg="6">
|
<a-col :lg="6">
|
||||||
<a-form-item name="kkyxmc">
|
<a-form-item name="kkyxmc">
|
||||||
<template #label><span title="开课单位名称" class="xn-title">开课单位名称</span></template>
|
<template #label><span title="开课单位名称" class="xn-title">开课单位名称</span></template>
|
||||||
|
@ -190,7 +196,7 @@
|
||||||
<j-input placeholder="请输入课程名称" v-model:value="queryParam.kcmc" allow-clear ></j-input>
|
<j-input placeholder="请输入课程名称" v-model:value="queryParam.kcmc" allow-clear ></j-input>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col> -->
|
</a-col> -->
|
||||||
<a-col :span="12" style="text-align: right">
|
<a-col :span="18" style="text-align: right">
|
||||||
<a-button type="primary" preIcon="ant-design:search-outlined" @click="searchQuery">查询</a-button>
|
<a-button type="primary" preIcon="ant-design:search-outlined" @click="searchQuery">查询</a-button>
|
||||||
<a-button type="primary" preIcon="ant-design:reload-outlined" @click="searchReset" style="margin-left: 8px">重置</a-button>
|
<a-button type="primary" preIcon="ant-design:reload-outlined" @click="searchReset" style="margin-left: 8px">重置</a-button>
|
||||||
<a-button type="primary" preIcon="ant-design:export-outlined" @click="onExportXls" style="margin-left: 8px"> 导出</a-button>
|
<a-button type="primary" preIcon="ant-design:export-outlined" @click="onExportXls" style="margin-left: 8px"> 导出</a-button>
|
||||||
|
@ -406,7 +412,7 @@ function handleSuccess() {
|
||||||
function getTableAction(record) {
|
function getTableAction(record) {
|
||||||
return [
|
return [
|
||||||
{
|
{
|
||||||
label: '成绩单',
|
label: '学生成绩',
|
||||||
onClick: handleCjd.bind(null, record),
|
onClick: handleCjd.bind(null, record),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
@ -5,6 +5,7 @@ const { createConfirm } = useMessage();
|
||||||
|
|
||||||
enum Api {
|
enum Api {
|
||||||
list = '/xxhbjwxtscwjxx/xxhbjwxtscwjxx/list',
|
list = '/xxhbjwxtscwjxx/xxhbjwxtscwjxx/list',
|
||||||
|
khcllist = '/xxhbjwxtscwjxx/xxhbjwxtscwjxx/khcllist',
|
||||||
save='/xxhbjwxtscwjxx/xxhbjwxtscwjxx/add',
|
save='/xxhbjwxtscwjxx/xxhbjwxtscwjxx/add',
|
||||||
edit='/xxhbjwxtscwjxx/xxhbjwxtscwjxx/edit',
|
edit='/xxhbjwxtscwjxx/xxhbjwxtscwjxx/edit',
|
||||||
deleteOne = '/xxhbjwxtscwjxx/xxhbjwxtscwjxx/delete',
|
deleteOne = '/xxhbjwxtscwjxx/xxhbjwxtscwjxx/delete',
|
||||||
|
@ -29,6 +30,7 @@ export const getImportUrl = Api.importExcel;
|
||||||
* @param params
|
* @param params
|
||||||
*/
|
*/
|
||||||
export const list = (params) => defHttp.get({ url: Api.list, params });
|
export const list = (params) => defHttp.get({ url: Api.list, params });
|
||||||
|
export const khcllist = (params) => defHttp.get({ url: Api.khcllist, params });
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 删除单个
|
* 删除单个
|
||||||
|
|
|
@ -56,7 +56,7 @@ import { ref, reactive } from 'vue';
|
||||||
import { BasicTable, useTable, TableAction } from '/@/components/Table';
|
import { BasicTable, useTable, TableAction } from '/@/components/Table';
|
||||||
import { useListPage } from '/@/hooks/system/useListPage';
|
import { useListPage } from '/@/hooks/system/useListPage';
|
||||||
import { columns, superQuerySchema } from './Xxhbjwxtscwjxx.data';
|
import { columns, superQuerySchema } from './Xxhbjwxtscwjxx.data';
|
||||||
import { list, deleteOne, batchDelete, getImportUrl, getExportUrl } from './Xxhbjwxtscwjxx.api';
|
import { khcllist, deleteOne, batchDelete, getImportUrl, getExportUrl } from './Xxhbjwxtscwjxx.api';
|
||||||
import { downloadFile,downloadFileLoacl } from '/@/utils/common/renderUtils';
|
import { downloadFile,downloadFileLoacl } from '/@/utils/common/renderUtils';
|
||||||
import XxhbjwxtscwjxxModal from './components/XxhbjwxtscwjxxModal.vue';
|
import XxhbjwxtscwjxxModal from './components/XxhbjwxtscwjxxModal.vue';
|
||||||
import { useUserStore } from '/@/store/modules/user';
|
import { useUserStore } from '/@/store/modules/user';
|
||||||
|
@ -77,7 +77,7 @@ const emit = defineEmits(['callback']);
|
||||||
//注册table数据
|
//注册table数据
|
||||||
const { prefixCls, tableContext, onExportXls, onImportXls } = useListPage({
|
const { prefixCls, tableContext, onExportXls, onImportXls } = useListPage({
|
||||||
tableProps: {
|
tableProps: {
|
||||||
api: list,
|
api: khcllist,
|
||||||
columns,
|
columns,
|
||||||
canResize: false,
|
canResize: false,
|
||||||
useSearchForm: false,
|
useSearchForm: false,
|
||||||
|
@ -257,8 +257,7 @@ function searchReset() {
|
||||||
|
|
||||||
function init(record) {
|
function init(record) {
|
||||||
queryParam.kcrwdm = record.kcrwdm;
|
queryParam.kcrwdm = record.kcrwdm;
|
||||||
queryParam.fjtype =
|
queryParam.fjtype = '课程考核合理性审核记录单,课程目标达成情况评价报告,课程考核质量评价单,期未考试-试题(或内容及要求),期末考试-评分标准,历次过程性考核-内容及要求(或试题),历次过程性考核-评分标准';
|
||||||
'历次过程性考核-评分标准,课程目标达成情况评价报告,课程考核合理性审核记录单,历次过程性考核-内容及要求(或试题),课程考核质量评价单,期未考试-试题(或内容及要求),期末考试-评分标准';
|
|
||||||
// 平时成绩
|
// 平时成绩
|
||||||
// 期末成绩
|
// 期末成绩
|
||||||
// 期中成绩
|
// 期中成绩
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import {BasicColumn} from '/@/components/Table';
|
import { BasicColumn } from '/@/components/Table';
|
||||||
import {FormSchema} from '/@/components/Table';
|
import { FormSchema } from '/@/components/Table';
|
||||||
import { rules} from '/@/utils/helper/validator';
|
import { rules } from '/@/utils/helper/validator';
|
||||||
import { render } from '/@/utils/common/renderUtils';
|
import { render } from '/@/utils/common/renderUtils';
|
||||||
import { getWeekMonthQuarterYear } from '/@/utils';
|
import { getWeekMonthQuarterYear } from '/@/utils';
|
||||||
//列表数据
|
//列表数据
|
||||||
|
@ -68,8 +68,8 @@ export const columns: BasicColumn[] = [
|
||||||
title: '成绩类型',
|
title: '成绩类型',
|
||||||
dataIndex: 'cj1mc',
|
dataIndex: 'cj1mc',
|
||||||
width: 100,
|
width: 100,
|
||||||
customRender:({text}) =>{
|
customRender: ({ text }) => {
|
||||||
text = !text ? "" : (text.length > 0 ? text.substr(0,text.indexOf("[")) : "");
|
text = !text ? "" : (text.length > 0 ? text.substr(0, text.indexOf("[")) : "");
|
||||||
return text;
|
return text;
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -82,8 +82,8 @@ export const columns: BasicColumn[] = [
|
||||||
title: '占比',
|
title: '占比',
|
||||||
dataIndex: 'cj1mc',
|
dataIndex: 'cj1mc',
|
||||||
width: 100,
|
width: 100,
|
||||||
customRender:({text}) =>{
|
customRender: ({ text }) => {
|
||||||
text = !text ? "" : (text.length > 0 ? text.substr(text.indexOf("["),text.indexOf("]")) : "");
|
text = !text ? "" : (text.length > 0 ? text.substr(text.indexOf("["), text.indexOf("]")) : "");
|
||||||
return text;
|
return text;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -98,8 +98,8 @@ export const columns: BasicColumn[] = [
|
||||||
title: '成绩类型',
|
title: '成绩类型',
|
||||||
dataIndex: 'cj2mc',
|
dataIndex: 'cj2mc',
|
||||||
width: 100,
|
width: 100,
|
||||||
customRender:({text}) =>{
|
customRender: ({ text }) => {
|
||||||
text = !text ? "" : (text.length > 0 ? text.substr(0,text.indexOf("[")) : "");
|
text = !text ? "" : (text.length > 0 ? text.substr(0, text.indexOf("[")) : "");
|
||||||
return text;
|
return text;
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -112,8 +112,8 @@ export const columns: BasicColumn[] = [
|
||||||
title: '占比',
|
title: '占比',
|
||||||
dataIndex: 'cj2mc',
|
dataIndex: 'cj2mc',
|
||||||
width: 100,
|
width: 100,
|
||||||
customRender:({text}) =>{
|
customRender: ({ text }) => {
|
||||||
text = !text ? "" : (text.length > 0 ? text.substr(text.indexOf("["),text.indexOf("]")) : "");
|
text = !text ? "" : (text.length > 0 ? text.substr(text.indexOf("["), text.indexOf("]")) : "");
|
||||||
return text;
|
return text;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -128,8 +128,8 @@ export const columns: BasicColumn[] = [
|
||||||
title: '成绩类型',
|
title: '成绩类型',
|
||||||
dataIndex: 'cj3mc',
|
dataIndex: 'cj3mc',
|
||||||
width: 100,
|
width: 100,
|
||||||
customRender:({text}) =>{
|
customRender: ({ text }) => {
|
||||||
text = !text ? "" : (text.length > 0 ? text.substr(0,text.indexOf("[")) : "");
|
text = !text ? "" : (text.length > 0 ? text.substr(0, text.indexOf("[")) : "");
|
||||||
return text;
|
return text;
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -142,8 +142,8 @@ export const columns: BasicColumn[] = [
|
||||||
title: '占比',
|
title: '占比',
|
||||||
dataIndex: 'cj3mc',
|
dataIndex: 'cj3mc',
|
||||||
width: 100,
|
width: 100,
|
||||||
customRender:({text}) =>{
|
customRender: ({ text }) => {
|
||||||
text = !text ? "" : (text.length > 0 ? text.substr(text.indexOf("["),text.indexOf("]")) : "");
|
text = !text ? "" : (text.length > 0 ? text.substr(text.indexOf("["), text.indexOf("]")) : "");
|
||||||
return text;
|
return text;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -158,8 +158,8 @@ export const columns: BasicColumn[] = [
|
||||||
title: '成绩类型',
|
title: '成绩类型',
|
||||||
dataIndex: 'cj5mc',
|
dataIndex: 'cj5mc',
|
||||||
width: 100,
|
width: 100,
|
||||||
customRender:({text}) =>{
|
customRender: ({ text }) => {
|
||||||
text = !text ? "" : (text.length > 0 ? text.substr(0,text.indexOf("[")) : "");
|
text = !text ? "" : (text.length > 0 ? text.substr(0, text.indexOf("[")) : "");
|
||||||
return text;
|
return text;
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -172,8 +172,8 @@ export const columns: BasicColumn[] = [
|
||||||
title: '占比',
|
title: '占比',
|
||||||
dataIndex: 'cj4mc',
|
dataIndex: 'cj4mc',
|
||||||
width: 100,
|
width: 100,
|
||||||
customRender:({text}) =>{
|
customRender: ({ text }) => {
|
||||||
text = !text ? "" : (text.length > 0 ? text.substr(text.indexOf("["),text.indexOf("]")) : "");
|
text = !text ? "" : (text.length > 0 ? text.substr(text.indexOf("["), text.indexOf("]")) : "");
|
||||||
return text;
|
return text;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -188,8 +188,8 @@ export const columns: BasicColumn[] = [
|
||||||
title: '成绩类型',
|
title: '成绩类型',
|
||||||
dataIndex: 'cj5mc',
|
dataIndex: 'cj5mc',
|
||||||
width: 100,
|
width: 100,
|
||||||
customRender:({text}) =>{
|
customRender: ({ text }) => {
|
||||||
text = !text ? "" : (text.length > 0 ? text.substr(0,text.indexOf("[")) : "");
|
text = !text ? "" : (text.length > 0 ? text.substr(0, text.indexOf("[")) : "");
|
||||||
return text;
|
return text;
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -202,8 +202,8 @@ export const columns: BasicColumn[] = [
|
||||||
title: '占比',
|
title: '占比',
|
||||||
dataIndex: 'cj4mc',
|
dataIndex: 'cj4mc',
|
||||||
width: 100,
|
width: 100,
|
||||||
customRender:({text}) =>{
|
customRender: ({ text }) => {
|
||||||
text = !text ? "" : (text.length > 0 ? text.substr(text.indexOf("["),text.indexOf("]")) : "");
|
text = !text ? "" : (text.length > 0 ? text.substr(text.indexOf("["), text.indexOf("]")) : "");
|
||||||
return text;
|
return text;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -286,24 +286,21 @@ export const columns3: BasicColumn[] = [
|
||||||
align: "center",
|
align: "center",
|
||||||
dataIndex: 'cj1',
|
dataIndex: 'cj1',
|
||||||
width: 100,
|
width: 100,
|
||||||
// defaultHidden: ({text}) =>{
|
defaultHidden: true,
|
||||||
// if(text){
|
|
||||||
|
|
||||||
// }
|
|
||||||
// return true;
|
|
||||||
// },
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '平时成绩2',
|
title: '平时成绩2',
|
||||||
align: "center",
|
align: "center",
|
||||||
dataIndex: 'cj2',
|
dataIndex: 'cj2',
|
||||||
width: 100,
|
width: 100,
|
||||||
|
defaultHidden: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '平时成绩3',
|
title: '平时成绩3',
|
||||||
align: "center",
|
align: "center",
|
||||||
dataIndex: 'cj3',
|
dataIndex: 'cj3',
|
||||||
width: 100,
|
width: 100,
|
||||||
|
defaultHidden: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '期中成绩',
|
title: '期中成绩',
|
||||||
|
@ -527,27 +524,27 @@ export const columns5: BasicColumn[] = [
|
||||||
|
|
||||||
// 高级查询数据
|
// 高级查询数据
|
||||||
export const superQuerySchema = {
|
export const superQuerySchema = {
|
||||||
kcrwdm: {title: 'kcrwdm',order: 0,view: 'text', type: 'string',},
|
kcrwdm: { title: 'kcrwdm', order: 0, view: 'text', type: 'string', },
|
||||||
nj: {title: 'nj',order: 1,view: 'text', type: 'string',},
|
nj: { title: 'nj', order: 1, view: 'text', type: 'string', },
|
||||||
xsztmc: {title: 'xsztmc',order: 2,view: 'text', type: 'string',},
|
xsztmc: { title: 'xsztmc', order: 2, view: 'text', type: 'string', },
|
||||||
zymc: {title: 'zymc',order: 3,view: 'text', type: 'string',},
|
zymc: { title: 'zymc', order: 3, view: 'text', type: 'string', },
|
||||||
xsbh: {title: 'xsbh',order: 4,view: 'text', type: 'string',},
|
xsbh: { title: 'xsbh', order: 4, view: 'text', type: 'string', },
|
||||||
xsxm: {title: 'xsxm',order: 5,view: 'text', type: 'string',},
|
xsxm: { title: 'xsxm', order: 5, view: 'text', type: 'string', },
|
||||||
kcmc: {title: 'kcmc',order: 6,view: 'text', type: 'string',},
|
kcmc: { title: 'kcmc', order: 6, view: 'text', type: 'string', },
|
||||||
kclb: {title: 'kclb',order: 7,view: 'text', type: 'string',},
|
kclb: { title: 'kclb', order: 7, view: 'text', type: 'string', },
|
||||||
teaxm: {title: 'teaxm',order: 8,view: 'text', type: 'string',},
|
teaxm: { title: 'teaxm', order: 8, view: 'text', type: 'string', },
|
||||||
cj1: {title: 'cj1',order: 9,view: 'text', type: 'string',},
|
cj1: { title: 'cj1', order: 9, view: 'text', type: 'string', },
|
||||||
cj2: {title: 'cj2',order: 10,view: 'text', type: 'string',},
|
cj2: { title: 'cj2', order: 10, view: 'text', type: 'string', },
|
||||||
cj3: {title: 'cj3',order: 11,view: 'text', type: 'string',},
|
cj3: { title: 'cj3', order: 11, view: 'text', type: 'string', },
|
||||||
cj4: {title: 'cj4',order: 12,view: 'text', type: 'string',},
|
cj4: { title: 'cj4', order: 12, view: 'text', type: 'string', },
|
||||||
cj5: {title: 'cj5',order: 13,view: 'text', type: 'string',},
|
cj5: { title: 'cj5', order: 13, view: 'text', type: 'string', },
|
||||||
cj1mc: {title: 'cj1mc',order: 14,view: 'text', type: 'string',},
|
cj1mc: { title: 'cj1mc', order: 14, view: 'text', type: 'string', },
|
||||||
cj2mc: {title: 'cj2mc',order: 15,view: 'text', type: 'string',},
|
cj2mc: { title: 'cj2mc', order: 15, view: 'text', type: 'string', },
|
||||||
cj3mc: {title: 'cj3mc',order: 16,view: 'text', type: 'string',},
|
cj3mc: { title: 'cj3mc', order: 16, view: 'text', type: 'string', },
|
||||||
cj4mc: {title: 'cj4mc',order: 17,view: 'text', type: 'string',},
|
cj4mc: { title: 'cj4mc', order: 17, view: 'text', type: 'string', },
|
||||||
cj5mc: {title: 'cj5mc',order: 18,view: 'text', type: 'string',},
|
cj5mc: { title: 'cj5mc', order: 18, view: 'text', type: 'string', },
|
||||||
zcj: {title: 'zcj',order: 19,view: 'text', type: 'string',},
|
zcj: { title: 'zcj', order: 19, view: 'text', type: 'string', },
|
||||||
cjfsmc: {title: 'cjfsmc',order: 20,view: 'text', type: 'string',},
|
cjfsmc: { title: 'cjfsmc', order: 20, view: 'text', type: 'string', },
|
||||||
xdfsmc: {title: 'xdfsmc',order: 21,view: 'text', type: 'string',},
|
xdfsmc: { title: 'xdfsmc', order: 21, view: 'text', type: 'string', },
|
||||||
ksxzmc: {title: 'ksxzmc',order: 22,view: 'text', type: 'string',},
|
ksxzmc: { title: 'ksxzmc', order: 22, view: 'text', type: 'string', },
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue