|
|
|
@ -4,6 +4,20 @@ |
|
|
|
|
<div class="table-page-search-wrapper"> |
|
|
|
|
<a-form layout="inline" @keyup.enter.native="searchQuery"> |
|
|
|
|
<a-row :gutter="24"> |
|
|
|
|
|
|
|
|
|
<a-col :md="6" :sm="12"> |
|
|
|
|
<a-form-item label="角色名称"> |
|
|
|
|
<j-input v-model="queryParam.moduleName"></j-input> |
|
|
|
|
</a-form-item> |
|
|
|
|
</a-col> |
|
|
|
|
|
|
|
|
|
<a-col :md="6" :sm="8"> |
|
|
|
|
<span style="float: left;overflow: hidden;" class="table-page-search-submitButtons"> |
|
|
|
|
<a-button type="primary" @click="searchQuery" icon="search">查询</a-button> |
|
|
|
|
<a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button> |
|
|
|
|
</span> |
|
|
|
|
</a-col> |
|
|
|
|
|
|
|
|
|
</a-row> |
|
|
|
|
</a-form> |
|
|
|
|
</div> |
|
|
|
@ -12,24 +26,13 @@ |
|
|
|
|
<!-- 操作按钮区域 --> |
|
|
|
|
<div class="table-operator"> |
|
|
|
|
<a-button @click="handleAdd" type="primary" icon="plus">新增</a-button> |
|
|
|
|
<a-button type="primary" icon="download" @click="handleExportXls('模块管理')">导出</a-button> |
|
|
|
|
<a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel"> |
|
|
|
|
<a-button type="primary" icon="import">导入</a-button> |
|
|
|
|
</a-upload> |
|
|
|
|
<!-- 高级查询区域 --> |
|
|
|
|
<j-super-query :fieldList="superFieldList" ref="superQueryModal" @handleSuperQuery="handleSuperQuery"></j-super-query> |
|
|
|
|
<a-dropdown v-if="selectedRowKeys.length > 0"> |
|
|
|
|
<a-menu slot="overlay"> |
|
|
|
|
<a-menu-item key="1" @click="batchDel"><a-icon type="delete"/>删除</a-menu-item> |
|
|
|
|
</a-menu> |
|
|
|
|
<a-button style="margin-left: 8px"> 批量操作 <a-icon type="down" /></a-button> |
|
|
|
|
</a-dropdown> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<!-- table区域-begin --> |
|
|
|
|
<div> |
|
|
|
|
<div class="ant-alert ant-alert-info" style="margin-bottom: 16px;"> |
|
|
|
|
<i class="anticon anticon-info-circle ant-alert-icon"></i> 已选择 <a style="font-weight: 600">{{ selectedRowKeys.length }}</a>项 |
|
|
|
|
<i class="anticon anticon-info-circle ant-alert-icon"></i> 已选择 <a |
|
|
|
|
style="font-weight: 600">{{ selectedRowKeys.length }}</a>项 |
|
|
|
|
<a style="margin-left: 24px" @click="onClearSelected">清空</a> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
@ -50,40 +53,18 @@ |
|
|
|
|
<template slot="htmlSlot" slot-scope="text"> |
|
|
|
|
<div v-html="text"></div> |
|
|
|
|
</template> |
|
|
|
|
<template slot="imgSlot" slot-scope="text"> |
|
|
|
|
<span v-if="!text" style="font-size: 12px;font-style: italic;">无图片</span> |
|
|
|
|
<img v-else :src="getImgView(text)" height="25px" alt="" style="max-width:80px;font-size: 12px;font-style: italic;"/> |
|
|
|
|
</template> |
|
|
|
|
<template slot="fileSlot" slot-scope="text"> |
|
|
|
|
<span v-if="!text" style="font-size: 12px;font-style: italic;">无文件</span> |
|
|
|
|
<a-button |
|
|
|
|
v-else |
|
|
|
|
:ghost="true" |
|
|
|
|
type="primary" |
|
|
|
|
icon="download" |
|
|
|
|
size="small" |
|
|
|
|
@click="downloadFile(text)"> |
|
|
|
|
下载 |
|
|
|
|
</a-button> |
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<span slot="action" slot-scope="text, record"> |
|
|
|
|
<a @click="handleEdit(record)">编辑</a> |
|
|
|
|
<a-divider type="vertical"/> |
|
|
|
|
<a @click="handleDetail(record)">详情</a> |
|
|
|
|
|
|
|
|
|
<a-divider type="vertical"/> |
|
|
|
|
<a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)"> |
|
|
|
|
<a>删除</a> |
|
|
|
|
</a-popconfirm> |
|
|
|
|
|
|
|
|
|
<a-divider type="vertical" /> |
|
|
|
|
<a-dropdown> |
|
|
|
|
<a class="ant-dropdown-link">更多 <a-icon type="down" /></a> |
|
|
|
|
<a-menu slot="overlay"> |
|
|
|
|
<a-menu-item> |
|
|
|
|
<a @click="handleDetail(record)">详情</a> |
|
|
|
|
</a-menu-item> |
|
|
|
|
<a-menu-item> |
|
|
|
|
<a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)"> |
|
|
|
|
<a>删除</a> |
|
|
|
|
</a-popconfirm> |
|
|
|
|
</a-menu-item> |
|
|
|
|
</a-menu> |
|
|
|
|
</a-dropdown> |
|
|
|
|
</span> |
|
|
|
|
|
|
|
|
|
</a-table> |
|
|
|
@ -95,206 +76,206 @@ |
|
|
|
|
|
|
|
|
|
<script> |
|
|
|
|
|
|
|
|
|
import '@assets/less/TableExpand.less' |
|
|
|
|
import { mixinDevice } from '@/utils/mixin' |
|
|
|
|
import { JeecgListMixin } from '@/mixins/JeecgListMixin' |
|
|
|
|
import ModulexModal from './modules/ModulexModal' |
|
|
|
|
import '@assets/less/TableExpand.less' |
|
|
|
|
import {mixinDevice} from '@/utils/mixin' |
|
|
|
|
import {JeecgListMixin} from '@/mixins/JeecgListMixin' |
|
|
|
|
import ModulexModal from './modules/ModulexModal' |
|
|
|
|
|
|
|
|
|
export default { |
|
|
|
|
name: 'ModulexList', |
|
|
|
|
mixins:[JeecgListMixin, mixinDevice], |
|
|
|
|
components: { |
|
|
|
|
ModulexModal |
|
|
|
|
}, |
|
|
|
|
data () { |
|
|
|
|
return { |
|
|
|
|
description: '模块管理管理页面', |
|
|
|
|
// 表头 |
|
|
|
|
columns: [ |
|
|
|
|
{ |
|
|
|
|
title: '#', |
|
|
|
|
dataIndex: '', |
|
|
|
|
key:'rowIndex', |
|
|
|
|
width:60, |
|
|
|
|
align:"center", |
|
|
|
|
customRender:function (t,r,index) { |
|
|
|
|
return parseInt(index)+1; |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title:'上级模块id', |
|
|
|
|
align:"center", |
|
|
|
|
dataIndex: 'pid' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title:'项目id', |
|
|
|
|
align:"center", |
|
|
|
|
dataIndex: 'projectId' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title:'中文名称', |
|
|
|
|
align:"center", |
|
|
|
|
dataIndex: 'moduleName' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title:'英文名称', |
|
|
|
|
align:"center", |
|
|
|
|
dataIndex: 'moduleEnName' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title:'模块编码', |
|
|
|
|
align:"center", |
|
|
|
|
dataIndex: 'moduleCode' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title:'内容描述', |
|
|
|
|
align:"center", |
|
|
|
|
dataIndex: 'pmDescribe' |
|
|
|
|
}, |
|
|
|
|
// { |
|
|
|
|
// title:'责任人', |
|
|
|
|
// align:"center", |
|
|
|
|
// dataIndex: 'managerUsers' |
|
|
|
|
// }, |
|
|
|
|
{ |
|
|
|
|
title:'任务等级', |
|
|
|
|
align:"center", |
|
|
|
|
dataIndex: 'workLevel_dictText' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title:'任务状态', |
|
|
|
|
align:"center", |
|
|
|
|
dataIndex: 'workStatus_dictText' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title:'发布时间', |
|
|
|
|
align:"center", |
|
|
|
|
dataIndex: 'publishTime', |
|
|
|
|
customRender:function (text) { |
|
|
|
|
return !text?"":(text.length>10?text.substr(0,10):text) |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title:'任务时长', |
|
|
|
|
align:"center", |
|
|
|
|
dataIndex: 'duration' |
|
|
|
|
}, |
|
|
|
|
// { |
|
|
|
|
// title:'开始时间', |
|
|
|
|
// align:"center", |
|
|
|
|
// dataIndex: 'startTime', |
|
|
|
|
// customRender:function (text) { |
|
|
|
|
// return !text?"":(text.length>10?text.substr(0,10):text) |
|
|
|
|
// } |
|
|
|
|
// }, |
|
|
|
|
// { |
|
|
|
|
// title:'提交时间', |
|
|
|
|
// align:"center", |
|
|
|
|
// dataIndex: 'submitTime', |
|
|
|
|
// customRender:function (text) { |
|
|
|
|
// return !text?"":(text.length>10?text.substr(0,10):text) |
|
|
|
|
// } |
|
|
|
|
// }, |
|
|
|
|
{ |
|
|
|
|
title:'实际时长', |
|
|
|
|
align:"center", |
|
|
|
|
dataIndex: 'realDuration' |
|
|
|
|
}, |
|
|
|
|
// { |
|
|
|
|
// title:'用户角色', |
|
|
|
|
// align:"center", |
|
|
|
|
// dataIndex: 'userRole' |
|
|
|
|
// }, |
|
|
|
|
// { |
|
|
|
|
// title:'关联实体', |
|
|
|
|
// align:"center", |
|
|
|
|
// dataIndex: 'relatedBean' |
|
|
|
|
// }, |
|
|
|
|
// { |
|
|
|
|
// title:'原型图', |
|
|
|
|
// align:"center", |
|
|
|
|
// dataIndex: 'prototypes' |
|
|
|
|
// }, |
|
|
|
|
// { |
|
|
|
|
// title:'分析图', |
|
|
|
|
// align:"center", |
|
|
|
|
// dataIndex: 'diagrams' |
|
|
|
|
// }, |
|
|
|
|
{ |
|
|
|
|
title:'模块状态', |
|
|
|
|
align:"center", |
|
|
|
|
dataIndex: 'status_dictText' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title:'版本状态', |
|
|
|
|
align:"center", |
|
|
|
|
dataIndex: 'verisonStatus_dictText' |
|
|
|
|
}, |
|
|
|
|
// { |
|
|
|
|
// title:'版本号', |
|
|
|
|
// align:"center", |
|
|
|
|
// dataIndex: 'verison' |
|
|
|
|
// }, |
|
|
|
|
{ |
|
|
|
|
title: '操作', |
|
|
|
|
dataIndex: 'action', |
|
|
|
|
align:"center", |
|
|
|
|
fixed:"right", |
|
|
|
|
width:147, |
|
|
|
|
scopedSlots: { customRender: 'action' } |
|
|
|
|
export default { |
|
|
|
|
name: 'ModulexList', |
|
|
|
|
mixins: [JeecgListMixin, mixinDevice], |
|
|
|
|
components: { |
|
|
|
|
ModulexModal |
|
|
|
|
}, |
|
|
|
|
data() { |
|
|
|
|
return { |
|
|
|
|
description: '模块管理管理页面', |
|
|
|
|
// 表头 |
|
|
|
|
columns: [ |
|
|
|
|
{ |
|
|
|
|
title: '#', |
|
|
|
|
dataIndex: '', |
|
|
|
|
key: 'rowIndex', |
|
|
|
|
width: 60, |
|
|
|
|
align: "center", |
|
|
|
|
customRender: function (t, r, index) { |
|
|
|
|
return parseInt(index) + 1; |
|
|
|
|
} |
|
|
|
|
], |
|
|
|
|
url: { |
|
|
|
|
list: "/modulex/modulex/list", |
|
|
|
|
delete: "/modulex/modulex/delete", |
|
|
|
|
deleteBatch: "/modulex/modulex/deleteBatch", |
|
|
|
|
exportXlsUrl: "/modulex/modulex/exportXls", |
|
|
|
|
importExcelUrl: "modulex/modulex/importExcel", |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
dictOptions:{}, |
|
|
|
|
superFieldList:[], |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
created() { |
|
|
|
|
{ |
|
|
|
|
title: '上级模块id', |
|
|
|
|
align: "center", |
|
|
|
|
dataIndex: 'pid_dictText' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title: '项目id', |
|
|
|
|
align: "center", |
|
|
|
|
dataIndex: 'projectId_dictText' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title: '中文名称', |
|
|
|
|
align: "center", |
|
|
|
|
dataIndex: 'moduleName' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title: '英文名称', |
|
|
|
|
align: "center", |
|
|
|
|
dataIndex: 'moduleEnName' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title: '模块编码', |
|
|
|
|
align: "center", |
|
|
|
|
dataIndex: 'moduleCode' |
|
|
|
|
}, |
|
|
|
|
// { |
|
|
|
|
// title: '内容描述', |
|
|
|
|
// align: "center", |
|
|
|
|
// dataIndex: 'pmDescribe' |
|
|
|
|
// }, |
|
|
|
|
// { |
|
|
|
|
// title:'责任人', |
|
|
|
|
// align:"center", |
|
|
|
|
// dataIndex: 'managerUsers' |
|
|
|
|
// }, |
|
|
|
|
{ |
|
|
|
|
title: '任务等级', |
|
|
|
|
align: "center", |
|
|
|
|
dataIndex: 'workLevel_dictText' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title: '任务状态', |
|
|
|
|
align: "center", |
|
|
|
|
dataIndex: 'workStatus_dictText' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title: '发布时间', |
|
|
|
|
align: "center", |
|
|
|
|
dataIndex: 'publishTime', |
|
|
|
|
customRender: function (text) { |
|
|
|
|
return !text ? "" : (text.length > 10 ? text.substr(0, 10) : text) |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title: '任务时长', |
|
|
|
|
align: "center", |
|
|
|
|
dataIndex: 'duration' |
|
|
|
|
}, |
|
|
|
|
// { |
|
|
|
|
// title:'开始时间', |
|
|
|
|
// align:"center", |
|
|
|
|
// dataIndex: 'startTime', |
|
|
|
|
// customRender:function (text) { |
|
|
|
|
// return !text?"":(text.length>10?text.substr(0,10):text) |
|
|
|
|
// } |
|
|
|
|
// }, |
|
|
|
|
// { |
|
|
|
|
// title:'提交时间', |
|
|
|
|
// align:"center", |
|
|
|
|
// dataIndex: 'submitTime', |
|
|
|
|
// customRender:function (text) { |
|
|
|
|
// return !text?"":(text.length>10?text.substr(0,10):text) |
|
|
|
|
// } |
|
|
|
|
// }, |
|
|
|
|
{ |
|
|
|
|
title: '实际时长', |
|
|
|
|
align: "center", |
|
|
|
|
dataIndex: 'realDuration' |
|
|
|
|
}, |
|
|
|
|
// { |
|
|
|
|
// title:'用户角色', |
|
|
|
|
// align:"center", |
|
|
|
|
// dataIndex: 'userRole' |
|
|
|
|
// }, |
|
|
|
|
{ |
|
|
|
|
title:'关联实体', |
|
|
|
|
align:"center", |
|
|
|
|
dataIndex: 'relatedBean_dictText' |
|
|
|
|
}, |
|
|
|
|
// { |
|
|
|
|
// title:'原型图', |
|
|
|
|
// align:"center", |
|
|
|
|
// dataIndex: 'prototypes' |
|
|
|
|
// }, |
|
|
|
|
// { |
|
|
|
|
// title:'分析图', |
|
|
|
|
// align:"center", |
|
|
|
|
// dataIndex: 'diagrams' |
|
|
|
|
// }, |
|
|
|
|
{ |
|
|
|
|
title: '模块状态', |
|
|
|
|
align: "center", |
|
|
|
|
dataIndex: 'status_dictText' |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title: '版本状态', |
|
|
|
|
align: "center", |
|
|
|
|
dataIndex: 'verisonStatus_dictText' |
|
|
|
|
}, |
|
|
|
|
// { |
|
|
|
|
// title:'版本号', |
|
|
|
|
// align:"center", |
|
|
|
|
// dataIndex: 'verison' |
|
|
|
|
// }, |
|
|
|
|
{ |
|
|
|
|
title: '操作', |
|
|
|
|
dataIndex: 'action', |
|
|
|
|
align: "center", |
|
|
|
|
fixed: "right", |
|
|
|
|
width: 147, |
|
|
|
|
scopedSlots: {customRender: 'action'} |
|
|
|
|
} |
|
|
|
|
], |
|
|
|
|
url: { |
|
|
|
|
list: "/modulex/modulex/list", |
|
|
|
|
delete: "/modulex/modulex/delete", |
|
|
|
|
deleteBatch: "/modulex/modulex/deleteBatch", |
|
|
|
|
exportXlsUrl: "/modulex/modulex/exportXls", |
|
|
|
|
importExcelUrl: "modulex/modulex/importExcel", |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
dictOptions: {}, |
|
|
|
|
superFieldList: [], |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
created() { |
|
|
|
|
this.getSuperFieldList(); |
|
|
|
|
}, |
|
|
|
|
computed: { |
|
|
|
|
importExcelUrl: function () { |
|
|
|
|
return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`; |
|
|
|
|
}, |
|
|
|
|
computed: { |
|
|
|
|
importExcelUrl: function(){ |
|
|
|
|
return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`; |
|
|
|
|
}, |
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
initDictConfig() { |
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
initDictConfig(){ |
|
|
|
|
}, |
|
|
|
|
getSuperFieldList(){ |
|
|
|
|
let fieldList=[]; |
|
|
|
|
fieldList.push({type:'string',value:'pid',text:'上级模块id',dictCode:''}) |
|
|
|
|
fieldList.push({type:'string',value:'projectId',text:'项目id',dictCode:''}) |
|
|
|
|
fieldList.push({type:'string',value:'moduleName',text:'中文名称',dictCode:''}) |
|
|
|
|
fieldList.push({type:'string',value:'moduleEnName',text:'英文名称',dictCode:''}) |
|
|
|
|
fieldList.push({type:'string',value:'moduleCode',text:'模块编码',dictCode:''}) |
|
|
|
|
fieldList.push({type:'string',value:'pmDescribe',text:'内容描述',dictCode:''}) |
|
|
|
|
fieldList.push({type:'string',value:'managerUsers',text:'责任人',dictCode:''}) |
|
|
|
|
fieldList.push({type:'int',value:'workLevel',text:'任务等级',dictCode:''}) |
|
|
|
|
fieldList.push({type:'int',value:'workStatus',text:'任务状态',dictCode:''}) |
|
|
|
|
fieldList.push({type:'date',value:'publishTime',text:'发布时间'}) |
|
|
|
|
fieldList.push({type:'double',value:'duration',text:'任务时长',dictCode:''}) |
|
|
|
|
fieldList.push({type:'date',value:'startTime',text:'开始时间'}) |
|
|
|
|
fieldList.push({type:'date',value:'submitTime',text:'提交时间'}) |
|
|
|
|
fieldList.push({type:'double',value:'realDuration',text:'实际时长',dictCode:''}) |
|
|
|
|
fieldList.push({type:'string',value:'userRole',text:'用户角色',dictCode:''}) |
|
|
|
|
fieldList.push({type:'string',value:'relatedBean',text:'关联实体',dictCode:''}) |
|
|
|
|
fieldList.push({type:'string',value:'prototypes',text:'原型图',dictCode:''}) |
|
|
|
|
fieldList.push({type:'string',value:'diagrams',text:'分析图',dictCode:''}) |
|
|
|
|
fieldList.push({type:'int',value:'status',text:'模块状态',dictCode:''}) |
|
|
|
|
fieldList.push({type:'int',value:'verisonStatus',text:'版本状态',dictCode:''}) |
|
|
|
|
fieldList.push({type:'int',value:'verison',text:'版本号',dictCode:''}) |
|
|
|
|
this.superFieldList = fieldList |
|
|
|
|
} |
|
|
|
|
getSuperFieldList() { |
|
|
|
|
let fieldList = []; |
|
|
|
|
fieldList.push({type: 'string', value: 'pid', text: '上级模块id', dictCode: ''}) |
|
|
|
|
fieldList.push({type: 'string', value: 'projectId', text: '项目id', dictCode: ''}) |
|
|
|
|
fieldList.push({type: 'string', value: 'moduleName', text: '中文名称', dictCode: ''}) |
|
|
|
|
fieldList.push({type: 'string', value: 'moduleEnName', text: '英文名称', dictCode: ''}) |
|
|
|
|
fieldList.push({type: 'string', value: 'moduleCode', text: '模块编码', dictCode: ''}) |
|
|
|
|
fieldList.push({type: 'string', value: 'pmDescribe', text: '内容描述', dictCode: ''}) |
|
|
|
|
fieldList.push({type: 'string', value: 'managerUsers', text: '责任人', dictCode: ''}) |
|
|
|
|
fieldList.push({type: 'int', value: 'workLevel', text: '任务等级', dictCode: ''}) |
|
|
|
|
fieldList.push({type: 'int', value: 'workStatus', text: '任务状态', dictCode: ''}) |
|
|
|
|
fieldList.push({type: 'date', value: 'publishTime', text: '发布时间'}) |
|
|
|
|
fieldList.push({type: 'double', value: 'duration', text: '任务时长', dictCode: ''}) |
|
|
|
|
fieldList.push({type: 'date', value: 'startTime', text: '开始时间'}) |
|
|
|
|
fieldList.push({type: 'date', value: 'submitTime', text: '提交时间'}) |
|
|
|
|
fieldList.push({type: 'double', value: 'realDuration', text: '实际时长', dictCode: ''}) |
|
|
|
|
fieldList.push({type: 'string', value: 'userRole', text: '用户角色', dictCode: ''}) |
|
|
|
|
fieldList.push({type: 'string', value: 'relatedBean', text: '关联实体', dictCode: ''}) |
|
|
|
|
fieldList.push({type: 'string', value: 'prototypes', text: '原型图', dictCode: ''}) |
|
|
|
|
fieldList.push({type: 'string', value: 'diagrams', text: '分析图', dictCode: ''}) |
|
|
|
|
fieldList.push({type: 'int', value: 'status', text: '模块状态', dictCode: ''}) |
|
|
|
|
fieldList.push({type: 'int', value: 'verisonStatus', text: '版本状态', dictCode: ''}) |
|
|
|
|
fieldList.push({type: 'int', value: 'verison', text: '版本号', dictCode: ''}) |
|
|
|
|
this.superFieldList = fieldList |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
</script> |
|
|
|
|
<style scoped> |
|
|
|
|
@import '~@assets/less/common.less'; |
|
|
|
|
@import '~@assets/less/common.less'; |
|
|
|
|
</style> |