cehn 7 luni în urmă
părinte
comite
f4b3cfc009

BIN
projects/textbook/public/favicon.ico


+ 15 - 0
projects/textbook/public/img/Logo.svg

@@ -0,0 +1,15 @@
+<svg width="42" height="43" viewBox="0 0 42 43" fill="none" xmlns="http://www.w3.org/2000/svg">
+<g clip-path="url(#clip0_1102_22892)">
+<path d="M33 10.8334H14.3333C13.6261 10.8334 12.9478 11.1144 12.4477 11.6145C11.9476 12.1146 11.6667 12.7928 11.6667 13.5001C11.6667 14.2073 11.9476 14.8856 12.4477 15.3857C12.9478 15.8858 13.6261 16.1667 14.3333 16.1667H33V33.5001C33 33.8537 32.8595 34.1928 32.6095 34.4429C32.3594 34.6929 32.0203 34.8334 31.6667 34.8334H14.3333C12.9188 34.8334 11.5623 34.2715 10.5621 33.2713C9.5619 32.2711 9 30.9146 9 29.5001V13.5001C9 12.0856 9.5619 10.729 10.5621 9.72885C11.5623 8.72865 12.9188 8.16675 14.3333 8.16675H31.6667C32.0203 8.16675 32.3594 8.30722 32.6095 8.55727C32.8595 8.80732 33 9.14646 33 9.50008V10.8334Z" fill="url(#paint0_linear_1102_22892)"/>
+<path d="M14.3333 14.8332H31.6667V12.1665H14.3333C13.9797 12.1665 13.6406 12.307 13.3905 12.557C13.1405 12.8071 13 13.1462 13 13.4998C13 13.8535 13.1405 14.1926 13.3905 14.4426C13.6406 14.6927 13.9797 14.8332 14.3333 14.8332Z" fill="#E89CA1"/>
+</g>
+<defs>
+<linearGradient id="paint0_linear_1102_22892" x1="21" y1="8.16675" x2="43" y2="61.5001" gradientUnits="userSpaceOnUse">
+<stop stop-color="#E04860"/>
+<stop offset="1" stop-color="#E99306"/>
+</linearGradient>
+<clipPath id="clip0_1102_22892">
+<rect width="32" height="32" fill="white" transform="translate(5 5.5)"/>
+</clipPath>
+</defs>
+</svg>

BIN
projects/textbook/public/img/book.ico


BIN
projects/textbook/public/img/favicon.ico


+ 1 - 1
projects/textbook/src/app/comp-user/comp-user.component.html

@@ -2,7 +2,7 @@
       <!--logo标识-->
       <div class="logo-box">
         <div class="logo-content">
-            <img class="logo-img" src="/img/book.png" alt="feima-contest-logo">
+            <img class="logo-img" src="/img/Logo.svg" alt="feima-contest-logo">
             <div class="logo-font">“十四五”普通高等教育本科国家级规划教材申报系统</div>
           </div>
     </div>

+ 3 - 2
projects/textbook/src/modules/login/account-info/account-info.component.html

@@ -30,8 +30,8 @@
       </div>
       完善账号信息
       <div class="tips">
-        欢迎使用“十四五”高等教育国家规划教材申报系统
-        ,为了激活账号使用权限,请先完善您的资料信息。
+        欢迎使用“十四五”普通高等教育本科国家规划教材申报系统
+        ,请先完善您的资料信息,以便管理员审核账号
       </div>
     </div>
     <div class="form">
@@ -191,6 +191,7 @@
               style="width: 100%"
               nzShowSearch
               nzAllowClear
+              [disabled]="true"
               nzPlaceHolder="请选择所在单位类型"
               [(ngModel)]="companyType"
               [ngModelOptions]="{ standalone: true }"

+ 3 - 2
projects/textbook/src/modules/login/account-info/account-info.component.ts

@@ -58,7 +58,7 @@ export class AccountInfoComponent implements OnInit {
     name: ['', [Validators.required]],
     phone: [''],
     email: ['', [Validators.required]],
-    identity: ['', [Validators.required]],
+    identity: ['工作联系人', [Validators.required]],
     // telephone: [''],
     // province: [''],
     // idcard: ['', [Validators.required]],
@@ -73,7 +73,7 @@ export class AccountInfoComponent implements OnInit {
   provinces: Array<string> = provinces.options; //省份
   unitTypes: Array<any> = [];
   companys: Array<any> = [];
-  userType: Array<string> = ['工作联系人', '评审专家', '高校联系人', '个人'];
+  userType: Array<string> = ['工作联系人'];
 
   constructor(
     public tbookSer: textbookServer,
@@ -127,6 +127,7 @@ export class AccountInfoComponent implements OnInit {
     query.equalTo('branch', undefined);
     query.equalTo('parent', undefined);
     query.notEqualTo('isDeleted', true);
+    query.descending('createdAt')
     query.select('name');
     let r = await query.find();
     r.forEach((item) => {

BIN
public/favicon.ico