|
@@ -114,10 +114,6 @@ export default {
|
|
|
const transferWellNumberAndTrustInBody = function(repQuestion) {
|
|
|
//将题干中的三个#替换为下划线
|
|
|
if (repQuestion.body) {
|
|
|
- //将题干里的 换成空格
|
|
|
- repQuestion.body = repQuestion.body
|
|
|
- .toString()
|
|
|
- .replace(new RegExp(" ", "g"), " ");
|
|
|
repQuestion.body = repQuestion.body
|
|
|
.toString()
|
|
|
.replace(new RegExp("###", "g"), "_______");
|