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

编辑器修改

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