i want to die

master
yjh 2 months ago
parent 9871fd9b46
commit 01ec74673b

8
.idea/.gitignore vendored

@ -0,0 +1,8 @@
# Default ignored files
/shelf/
/workspace.xml
# Editor-based HTTP Client requests
/httpRequests/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$" />
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

@ -0,0 +1,6 @@
<component name="InspectionProjectProfileManager">
<profile version="1.0">
<option name="myName" value="Project Default" />
<inspection_tool class="Eslint" enabled="true" level="WARNING" enabled_by_default="true" />
</profile>
</component>

@ -0,0 +1,14 @@
<component name="libraryTable">
<library name="fonts">
<CLASSES>
<root url="jar://$PROJECT_DIR$/fonts/transfonter.org-20241009-024451.zip!/" />
<root url="jar://$PROJECT_DIR$/fonts/transfonter.org-20241008-125738.zip!/" />
<root url="jar://$PROJECT_DIR$/fonts/transfonter.org-20241009-024941.zip!/" />
<root url="jar://$PROJECT_DIR$/fonts/transfonter.org-20241009-030649.zip!/" />
<root url="jar://$PROJECT_DIR$/fonts/transfonter.org-20241010-094225.zip!/" />
<root url="jar://$PROJECT_DIR$/fonts/transfonter.org-20241008-101220.zip!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
</library>
</component>

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectRootManager">
<output url="file://$PROJECT_DIR$/out" />
</component>
</project>

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/callprogram-main.iml" filepath="$PROJECT_DIR$/.idea/callprogram-main.iml" />
</modules>
</component>
</project>

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="" vcs="Git" />
<mapping directory="$PROJECT_DIR$/freeman" vcs="Git" />
</component>
</project>

@ -8,7 +8,7 @@ Page({
operationName: '',
student_ID: "000000001",
name: "张三",
scoreOptions: [0.5, 1, 1.5, 2, 2.5, 3], // 分数选项
scoreOptions: [2, 2.5, 3, 3.5, 4, 4.5], // 分数选项
selectedScore: null, // 选中的分数
showScorePicker: false // 控制分数选择器的显示
},
@ -73,7 +73,7 @@ Page({
// 确认分数按钮的回调
confirmScore: function () {
if (this.data.selectedScore !== null) {
file.updatescore(this.data.selectedScore+1.5); // 更新分数
file.updatescore(this.data.selectedScore); // 更新分数
this.setData({
showScorePicker: false // 隐藏分数选择器
});

@ -1,7 +1,12 @@
{
"description": "项目配置文件",
"packOptions": {
"ignore": [],
"ignore": [
{
"value": "/minitest",
"type": "folder"
}
],
"include": []
},
"setting": {
@ -49,5 +54,6 @@
"tabSize": 4
},
"cloudfunctionTemplateRoot": "cloudfunctionTemplate/",
"cloudfunctionRoot": "cloud/"
"cloudfunctionRoot": "cloud/",
"testRoot": "minitest/"
}
Loading…
Cancel
Save