提交 4474ace9 authored 作者: 钟是志's avatar 钟是志

编辑器修改

上级 d6e75447
...@@ -2,6 +2,7 @@ import { Button, Drawer, Input, message } from 'antd'; ...@@ -2,6 +2,7 @@ import { Button, Drawer, Input, message } from 'antd';
import React, { useEffect, useState, useRef } from 'react'; import React, { useEffect, useState, useRef } from 'react';
import { connect } from 'dva'; import { connect } from 'dva';
import ButtonDiy from '@/baseComponent/ButtonDiy'; import ButtonDiy from '@/baseComponent/ButtonDiy';
import moment from 'moment';
const { TextArea } = Input; const { TextArea } = Input;
...@@ -26,6 +27,7 @@ function EditDrawer(props) { ...@@ -26,6 +27,7 @@ function EditDrawer(props) {
}; };
const handleSaveTemplate = () => { const handleSaveTemplate = () => {
lowCodeEdit.updateTime = moment().format('YYYY-MM-DD HH:mm:ss');
const content = JSON.stringify(lowCodeEdit); const content = JSON.stringify(lowCodeEdit);
message.info('正在保存数据,请耐心等待'); message.info('正在保存数据,请耐心等待');
dispatch({ dispatch({
...@@ -106,13 +108,12 @@ function EditDrawer(props) { ...@@ -106,13 +108,12 @@ function EditDrawer(props) {
<TextArea <TextArea
autoSize={{ autoSize={{
minRows: 10, minRows: 10,
maxRows: 20, maxRows: 15,
}} }}
defaultValue={lowCodeEdit?.beforeShow || ''} defaultValue={lowCodeEdit?.beforeShow || ''}
readOnly={true} onChange={(e) => {
// onChange={(e) => { changeKey(e.target.value, 'beforeShow');
// changeKey(e.target.value, 'beforeShow'); }}
// }}
// readOnly={true} // readOnly={true}
style={{ marginBottom: '20px' }} style={{ marginBottom: '20px' }}
/> />
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论