Commit 450d31b7 by zhaochengxiang

bug fix

parent 0eef2f8e
...@@ -176,7 +176,7 @@ const ModelTable = (props) => { ...@@ -176,7 +176,7 @@ const ModelTable = (props) => {
{ {
name: '模型名称', name: '模型名称',
key: 'name', key: 'name',
width: isSzseEnv?360:160, minWidth: isSzseEnv?360:160,
sortable: true, sortable: true,
resizable: true, resizable: true,
formatter(props) { formatter(props) {
...@@ -203,7 +203,7 @@ const ModelTable = (props) => { ...@@ -203,7 +203,7 @@ const ModelTable = (props) => {
{ {
name: '中文名称', name: '中文名称',
key: 'cnName', key: 'cnName',
width: isSzseEnv?420:160, minWidth: isSzseEnv?420:160,
sortable: true, sortable: true,
resizable: true, resizable: true,
formatter(props) { formatter(props) {
...@@ -217,7 +217,7 @@ const ModelTable = (props) => { ...@@ -217,7 +217,7 @@ const ModelTable = (props) => {
{ {
name: '路径', name: '路径',
key: 'path', key: 'path',
width: 120, minWidth: 120,
sortable: true, sortable: true,
resizable: true, resizable: true,
formatter(props) { formatter(props) {
...@@ -231,7 +231,7 @@ const ModelTable = (props) => { ...@@ -231,7 +231,7 @@ const ModelTable = (props) => {
{ {
name: '状态', name: '状态',
key: 'state', key: 'state',
width: 100, minWidth: 100,
sortable: true, sortable: true,
resizable: true, resizable: true,
formatter(props) { formatter(props) {
...@@ -255,14 +255,14 @@ const ModelTable = (props) => { ...@@ -255,14 +255,14 @@ const ModelTable = (props) => {
{ {
name: '创建人', name: '创建人',
key: 'editor', key: 'editor',
width: 100, minWidth: 100,
sortable: true, sortable: true,
resizable: true, resizable: true,
}, },
{ {
name: '版本号', name: '版本号',
key: 'modifiedTs', key: 'modifiedTs',
width: 170, minWidth: 170,
sortable: true, sortable: true,
resizable: true, resizable: true,
formatter(props) { formatter(props) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment