diff --git a/public/react/src/AppConfig.js b/public/react/src/AppConfig.js
index 9d856d899..94abb3740 100644
--- a/public/react/src/AppConfig.js
+++ b/public/react/src/AppConfig.js
@@ -83,7 +83,7 @@ export function initAxiosInterceptors(props) {
//proxy="http://47.96.87.25:48080"
proxy="https://pre-newweb.educoder.net"
proxy="https://test-newweb.educoder.net"
- // proxy="https://test-jupyterweb.educoder.net"
+ proxy="https://test-jupyterweb.educoder.net"
//proxy="http://192.168.2.63:3001"
// 在这里使用requestMap控制,避免用户通过双击等操作发出重复的请求;
@@ -123,7 +123,10 @@ export function initAxiosInterceptors(props) {
}
}
if(`${config[0]}`!=`true`){
+ let timestamp = Date.parse(new Date())/1000;
if (window.location.port === "3007") {
+ // let timestamp=railsgettimes(proxy);
+ console.log(timestamp)
railsgettimes(`${proxy}/api/main/first_stamp.json`);
let newopens=md5(opens+timestamp)
config.url = `${proxy}${url}`;
diff --git a/public/react/src/common/quillForEditor/ImageBlot.js b/public/react/src/common/quillForEditor/ImageBlot.js
index d00f2bafd..5ff84b249 100644
--- a/public/react/src/common/quillForEditor/ImageBlot.js
+++ b/public/react/src/common/quillForEditor/ImageBlot.js
@@ -4,7 +4,7 @@
* @Github:
* @Date: 2019-12-16 15:50:45
* @LastEditors : tangjiang
- * @LastEditTime : 2019-12-27 15:07:11
+ * @LastEditTime : 2019-12-31 13:59:02
*/
import Quill from "quill";
@@ -50,6 +50,7 @@ export default class ImageBlot extends BlockEmbed {
return node;
}
+ // 获取节点值
static value (node) {
return {
diff --git a/public/react/src/common/quillForEditor/index.js b/public/react/src/common/quillForEditor/index.js
index cb214465c..f3f359a80 100644
--- a/public/react/src/common/quillForEditor/index.js
+++ b/public/react/src/common/quillForEditor/index.js
@@ -4,7 +4,7 @@
* @Github:
* @Date: 2019-12-18 08:49:30
* @LastEditors : tangjiang
- * @LastEditTime : 2019-12-27 16:49:25
+ * @LastEditTime : 2019-12-31 15:11:37
*/
import './index.scss';
import 'quill/dist/quill.core.css'; // 核心样式
@@ -18,10 +18,18 @@ import deepEqual from './deepEqual.js'
import { fetchUploadImage } from '../../services/ojService.js';
import { getImageUrl } from 'educoder'
import ImageBlot from './ImageBlot';
+const Size = Quill.import('attributors/style/size');
+const Font = Quill.import('formats/font');
+// const Color = Quill.import('attributes/style/color');
+Size.whitelist = ['12px', '14px', '16px', '18px', '20px', false];
+Font.whitelist = ['SimSun', 'SimHei','Microsoft-YaHei','KaiTi','FangSong','Arial','Times-New-Roman','sans-serif'];
window.Quill = Quill;
window.katex = katex;
Quill.register(ImageBlot);
+Quill.register(Size);
+Quill.register(Font, true);
+// Quill.register(Color);
function QuillForEditor ({
placeholder,
@@ -38,15 +46,16 @@ function QuillForEditor ({
}) {
// toolbar 默认值
const defaultConfig = [
- ['bold', 'italic', 'underline'],
- [{align: []}, {list: 'ordered'}, {list: 'bullet'}], // 列表
- [{script: 'sub'}, {script: 'super'}],
- [{ 'color': [] }, { 'background': [] }],
- [{header: [1,2,3,4,5,false]}],
- ['blockquote', 'code-block'],
- ['link', 'image', 'video'],
- ['formula'],
- ['clean']
+ 'bold', 'italic', 'underline',
+ {size: ['12px', '14px', '16px', '18px', '20px']},
+ {align: []}, {list: 'ordered'}, {list: 'bullet'}, // 列表
+ {script: 'sub'}, {script: 'super'},
+ { 'color': [] }, { 'background': [] },
+ {header: [1,2,3,4,5,false]},
+ 'blockquote', 'code-block',
+ 'link', 'image', 'video',
+ 'formula',
+ 'clean'
];
const editorRef = useRef(null);
diff --git a/public/react/src/common/quillForEditor/index.scss b/public/react/src/common/quillForEditor/index.scss
index 3e951e2b6..96cd45edd 100644
--- a/public/react/src/common/quillForEditor/index.scss
+++ b/public/react/src/common/quillForEditor/index.scss
@@ -7,4 +7,107 @@
cursor: pointer;
}
}
+ .ql-snow .ql-picker.ql-size .ql-picker-label[data-value="12px"]::before,
+ .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="12px"]::before {
+ content: '12px';
+ font-size: 12px;
+ }
+ .ql-snow .ql-picker.ql-size .ql-picker-label[data-value="14px"]::before,
+ .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="14px"]::before {
+ content: '14px';
+ font-size: 14px;
+ }
+ .ql-snow .ql-picker.ql-size .ql-picker-label[data-value="16px"]::before,
+ .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="16px"]::before {
+ content: '16px';
+ font-size: 16px;
+ }
+ .ql-snow .ql-picker.ql-size .ql-picker-label[data-value="18px"]::before,
+ .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="18px"]::before {
+ content: '18px';
+ font-size: 18px;
+ }
+ .ql-snow .ql-picker.ql-size .ql-picker-label[data-value="20px"]::before,
+ .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="20px"]::before {
+ content: '20px';
+ font-size: 20px;
+ }
+ //默认的样式
+ .ql-snow .ql-picker.ql-size .ql-picker-label::before,
+ .ql-snow .ql-picker.ql-size .ql-picker-item::before {
+ content: '14px';
+ font-size: 14px;
+ }
+
+ .ql-snow .ql-picker.ql-font .ql-picker-label[data-value=SimSun]::before,
+ .ql-snow .ql-picker.ql-font .ql-picker-item[data-value=SimSun]::before {
+ content: "宋体";
+ font-family: "SimSun";
+ }
+ .ql-snow .ql-picker.ql-font .ql-picker-label[data-value=SimHei]::before,
+ .ql-snow .ql-picker.ql-font .ql-picker-item[data-value=SimHei]::before {
+ content: "黑体";
+ font-family: "SimHei";
+ }
+ .ql-snow .ql-picker.ql-font .ql-picker-label[data-value=Microsoft-YaHei]::before,
+ .ql-snow .ql-picker.ql-font .ql-picker-item[data-value=Microsoft-YaHei]::before {
+ content: "微软雅黑";
+ font-family: "Microsoft YaHei";
+ }
+ .ql-snow .ql-picker.ql-font .ql-picker-label[data-value=KaiTi]::before,
+ .ql-snow .ql-picker.ql-font .ql-picker-item[data-value=KaiTi]::before {
+ content: "楷体";
+ font-family: "KaiTi";
+ }
+ .ql-snow .ql-picker.ql-font .ql-picker-label[data-value=FangSong]::before,
+ .ql-snow .ql-picker.ql-font .ql-picker-item[data-value=FangSong]::before {
+ content: "仿宋";
+ font-family: "FangSong";
+ }
+ .ql-snow .ql-picker.ql-font .ql-picker-label[data-value=Arial]::before,
+ .ql-snow .ql-picker.ql-font .ql-picker-item[data-value=Arial]::before {
+ content: "Arial";
+ font-family: "Arial";
+ }
+ .ql-snow .ql-picker.ql-font .ql-picker-label[data-value=Times-New-Roman]::before,
+ .ql-snow .ql-picker.ql-font .ql-picker-item[data-value=Times-New-Roman]::before {
+ content: "Times New Roman";
+ font-family: "Times New Roman";
+ }
+ .ql-snow .ql-picker.ql-font .ql-picker-label[data-value=sans-serif]::before,
+ .ql-snow .ql-picker.ql-font .ql-picker-item[data-value=sans-serif]::before {
+ content: "sans-serif";
+ font-family: "sans-serif";
+ }
+
+ .ql-font-SimSun {
+ font-family: "SimSun";
+ }
+ .ql-font-SimHei {
+ font-family: "SimHei";
+ }
+ .ql-font-Microsoft-YaHei {
+ font-family: "Microsoft YaHei";
+ }
+ .ql-font-KaiTi {
+ font-family: "KaiTi";
+ }
+ .ql-font-FangSong {
+ font-family: "FangSong";
+ }
+ .ql-font-Arial {
+ font-family: "Arial";
+ }
+ .ql-font-Times-New-Roman {
+ font-family: "Times New Roman";
+ }
+ .ql-font-sans-serif {
+ font-family: "sans-serif";
+ }
+
+ .ql-snow .ql-picker.ql-font .ql-picker-label::before,
+ .ql-snow .ql-picker.ql-font .ql-picker-item::before {
+ content: "微软雅黑";
+ font-family: "Microsoft YaHei";
+ }
}
\ No newline at end of file
diff --git a/public/react/src/constants/index.js b/public/react/src/constants/index.js
index 3e7aceab0..e9401e76e 100644
--- a/public/react/src/constants/index.js
+++ b/public/react/src/constants/index.js
@@ -3,8 +3,8 @@
* @Author: tangjiang
* @Github:
* @Date: 2019-11-20 23:10:48
- * @LastEditors: tangjiang
- * @LastEditTime: 2019-12-06 15:53:27
+ * @LastEditors : tangjiang
+ * @LastEditTime : 2020-01-02 14:57:02
*/
const CONST = {
jcLabel: {
@@ -12,9 +12,11 @@ const CONST = {
language: '编程语言',
description: '描述',
difficult: '难易度',
- category: '分类',
+ category: '课程',
openOrNot: '公开程序',
- timeLimit: '时间限制'
+ timeLimit: '时间限制',
+ knowledge: '知识点',
+ sub_discipline_id: '课程'
},
fontSetting: {
title: '代码格式',
diff --git a/public/react/src/modules/courses/Resource/Fileslistitem.js b/public/react/src/modules/courses/Resource/Fileslistitem.js
index 99888e558..e7e31baab 100644
--- a/public/react/src/modules/courses/Resource/Fileslistitem.js
+++ b/public/react/src/modules/courses/Resource/Fileslistitem.js
@@ -253,22 +253,22 @@ class Fileslistitem extends Component{
{discussMessage.is_publish===false?
{data&&data.username}
+{data&&data.username}
-
-
-
+
+