vue2-client 1.3.23 → 1.3.25

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # Change Log
2
2
  > 所有关于本项目的变化都在该文档里。
3
3
 
4
- **1.3.22 -2022-09-16 @江超**
4
+ **1.3.22 - 1.3.25 -2022-09-16 @江超**
5
5
  - 功能修改:
6
6
  - 修复上传问题
7
7
  - 登录页面更新
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue2-client",
3
- "version": "1.3.23",
3
+ "version": "1.3.25",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -1,9 +1,7 @@
1
1
  <template>
2
2
  <common-layout>
3
3
  <div class="loginContent">
4
- <div class="illustration">
5
- <img src="@vue2-client/assets/login/illustration.webp" width="100%" height="100%"/>
6
- </div>
4
+ <div class="illustration"/>
7
5
  <div class="business">
8
6
  <div class="top">
9
7
  <div class="header">
@@ -241,6 +239,10 @@ export default {
241
239
  display: flex;
242
240
  .illustration {
243
241
  flex: 1;
242
+ background-image: url("/img/login/illustration.webp");
243
+ background-size: contain;
244
+ background-position: center;
245
+ background-repeat: no-repeat;
244
246
  @media screen and (max-width: 959px) {
245
247
  flex: 0;
246
248
  }
@@ -272,7 +274,7 @@ export default {
272
274
  }
273
275
  color: #333333;
274
276
  font-weight: bold;
275
- font-family: 'Microsoft YaHei UI Light',serif;
277
+ font-family: 'Microsoft YaHei UI Light', 'Myriad Pro', 'Helvetica Neue', Arial, Helvetica, sans-serif;
276
278
  letter-spacing: 0.13rem;
277
279
  }
278
280
  }