feat:修改证书

This commit is contained in:
lixg
2023-02-09 15:45:35 +08:00
parent e9a2fc0a6b
commit be4b4d0c2e
4 changed files with 338 additions and 98 deletions

View File

@@ -307,7 +307,7 @@
id="inputNumber"
v-model:value="score"
:min="1"
:max="100"
:max="projectPoints"
style="width: 70px"
:disabled="condition !== 5"
/>
@@ -320,7 +320,7 @@
margin-left: 5px;
"
>
分可获得当前项目积分为 10
分可获得当前项目积分为 {{ projectPoints }}
</div>
</div>
<!-- <a-radio v-model:checked="checked" :value="6" >
@@ -422,6 +422,7 @@ export default {
selectExamName: null,
selectExamId: null,
score: null, //积分
projectPoints: 0,
fileType: ["jpg", "jpeg", "png", "gif", "svg", "bmp"],
});
@@ -471,6 +472,7 @@ export default {
.then((res) => {
if (res.data.code === 200) {
console.log("获取项目总积分", res);
state.projectPoints = res.data.data;
}
})
.catch((err) => {