chore: 小班作业心得思考题等编辑框提示修改

- 将应用版本从2.0.46提升至2.0.47
- 更新edu-core依赖版本至1.0.10
- 在manifest.json中新增读取外部存储和媒体图片的权限
- 修改多个页面的文本提示以提高用户体验
This commit is contained in:
2026-03-27 09:34:02 +08:00
parent 32c625ab2a
commit 6fddc1cb4a
7 changed files with 18 additions and 16 deletions

View File

@@ -3,8 +3,8 @@ let socketUrl = "";
if (process.env.NODE_ENV === 'development') {
// 开发环境
// baseUrl = "https://testapi.nuttyreading.com/"; // 线上测试
// baseUrl = "https://api.nuttyreading.com/"; //线上正式'
baseUrl = "http://192.168.110.100:9200/pb/"; //张川川
baseUrl = "https://api.nuttyreading.com/"; //线上正式'
// baseUrl = "http://192.168.110.100:9200/pb/"; //张川川
} else if (process.env.NODE_ENV === 'production') {
// 生产环境11
baseUrl = "https://api.nuttyreading.com/"; //线上正式

View File

@@ -12,8 +12,8 @@
"src" : "图片路径"
}
],
"versionName" : "2.0.46",
"versionCode" : 2046,
"versionName" : "2.0.47",
"versionCode" : 2047,
"sassImplementationName" : "node-sass",
"app-plus" : {
"nvueCompiler" : "uni-app",
@@ -71,6 +71,8 @@
"<uses-permission android:name=\"android.permission.INTERNET\"/>",
"<uses-permission android:name=\"android.permission.MODIFY_AUDIO_SETTINGS\"/>",
"<uses-permission android:name=\"android.permission.MOUNT_UNMOUNT_FILESYSTEMS\"/>",
"<uses-permission android:name=\"android.permission.READ_EXTERNAL_STORAGE\"/>",
"<uses-permission android:name=\"android.permission.READ_MEDIA_IMAGES\"/>",
"<uses-permission android:name=\"android.permission.READ_PHONE_STATE\"/>",
"<uses-permission android:name=\"android.permission.RECEIVE_BOOT_COMPLETED\"/>",
"<uses-permission android:name=\"android.permission.REQUEST_INSTALL_PACKAGES\"/>",

2
package-lock.json generated
View File

@@ -24,7 +24,7 @@
"extraneous": true
},
"../edu-core": {
"version": "1.0.7",
"version": "1.0.10",
"license": "ISC",
"devDependencies": {}
},

View File

@@ -120,7 +120,7 @@
<view class="page-body">
<view class='wrapper'>
<view class="editor-wrapper">
<editor @input="editorIput" id="editor" class="ql-container" placeholder="请输入您的见解..."
<editor @input="editorIput" id="editor" class="ql-container" placeholder="请您一次性提交答题内容,提交后会进入评分流程"
show-img-size show-img-toolbar show-img-resize
@statuschange="onStatusChange" :read-only="readOnly"
@ready="onEditorReady">

View File

@@ -93,8 +93,6 @@
"
>
<common-list
@lower="onReachBottom1"
:pagination="pagination"
:dataList="titleList"
@hancleClick="gotoDetail"
label="title"
@@ -107,7 +105,6 @@
</template>
<template v-else-if="curOneCateIndex == 0 || curOneCateIndex == 2">
<common-list
@lower="onReachBottom1"
:dataList="titleList"
@hancleClick="gotoDetail"
label="name"
@@ -125,7 +122,6 @@
</template>
<template v-if="curOneCateIndex == 3">
<common-list
@lower="onReachBottom1"
:dataList="titleList"
@hancleClick="gotoDetail"
label="title"
@@ -575,8 +571,12 @@ export default {
// }).exec();
await uni
.createSelectorQuery()
.select(".cateList")
.in(this)
.select(".twoCateList")
.boundingClientRect(function (rect) {
if (!rect || typeof rect.height !== "number") {
return;
}
console.log(rect.height, "22222");
var height = 42 + rect.height + 20;

View File

@@ -46,9 +46,9 @@
<view class="in">
<view class="uni-textarea">
<textarea v-show="false" placeholder-style="font-size:26rpx" v-model="form.content"
auto-height placeholder="请输入内容" />
auto-height placeholder="请您一次性提交答题内容,提交后会进入评分流程" />
<view class="editor-wrapper">
<editor @input="editorIput" id="editor" class="ql-container" placeholder="请输入内容..." show-img-size
<editor @input="editorIput" id="editor" class="ql-container" placeholder="请您一次性提交答题内容,提交后会进入评分流程" show-img-size
show-img-toolbar show-img-resize @statuschange="onStatusChange"
:read-only="readOnly" @ready="onEditorReady">
</editor>
@@ -537,4 +537,4 @@
}
}
}
</style>
</style>

View File

@@ -111,7 +111,7 @@
<view class="in">
<view class="uni-textarea">
<textarea placeholder-style="font-size:26rpx" v-model="form.content" maxlength="-1"
auto-height placeholder="请输入内容" />
auto-height placeholder="请您一次性提交答题内容,提交后会进入评分流程" />
</view>
</view>
@@ -750,4 +750,4 @@
background-image: linear-gradient(30deg, #d4eaf0 0%, #d4eaf0 50%, #fdf0ed 100%);
min-height: 100vh;
}
</style>
</style>