|
@@ -162,8 +162,12 @@ export default {
|
|
|
"/api/ecs_core/org/propertyNoSession/OE_STUDENT_SYS_NAME?domainName=" +
|
|
|
this.schoolDomain
|
|
|
);
|
|
|
- const productName = await res.text();
|
|
|
- this.productName = productName || "远程教育网络考试";
|
|
|
+ if (res.ok) {
|
|
|
+ const productName = await res.text();
|
|
|
+ this.productName = productName || "远程教育网络考试";
|
|
|
+ } else {
|
|
|
+ this.productName = "远程教育网络考试";
|
|
|
+ }
|
|
|
} catch (e) {
|
|
|
this.productName = "远程教育网络考试";
|
|
|
}
|
|
@@ -533,6 +537,10 @@ export default {
|
|
|
.close:hover {
|
|
|
color: #444444;
|
|
|
}
|
|
|
+
|
|
|
+.footer {
|
|
|
+ position: relative;
|
|
|
+}
|
|
|
</style>
|
|
|
|
|
|
<style>
|