Compare commits

...

2 Commits

Author SHA1 Message Date
liyongle 371df8e5e0 chore(release): 1.0.1-B.0 3 years ago
liyongle 3bf5cb3ad4 fix: 🧩 修改停车布局问题 3 years ago
  1. 7
      CHANGELOG.md
  2. 4
      package-lock.json
  3. 2
      package.json
  4. 17
      src/components/CarInfo/CarInfo.vue

7
CHANGELOG.md

@ -2,6 +2,13 @@
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
### [1.0.1-B.0](https://git.1000my.com/project-shenyangk11/sy_k11_H_base_daoshi_vue_ts/compare/v1.0.0...v1.0.1-B.0) (2023-05-19)
### Bug Fixes
* 🧩 修改停车布局问题 ([3bf5cb3](https://git.1000my.com/project-shenyangk11/sy_k11_H_base_daoshi_vue_ts/commit/3bf5cb3ad45dac20c51f9d179cd9ddd9740d0388))
## [1.0.0](https://git.1000my.com/project-shenyangk11/sy_k11_H_base_daoshi_vue_ts/compare/v1.0.0-B.10...v1.0.0) (2023-05-17) ## [1.0.0](https://git.1000my.com/project-shenyangk11/sy_k11_H_base_daoshi_vue_ts/compare/v1.0.0-B.10...v1.0.0) (2023-05-17)
## [1.0.0-B.10](https://company/project-shenyangk11/sy_k11_H_base_daoshi_vue_ts/compare/v1.0.0-B.9...v1.0.0-B.10) (2023-05-17) ## [1.0.0-B.10](https://company/project-shenyangk11/sy_k11_H_base_daoshi_vue_ts/compare/v1.0.0-B.9...v1.0.0-B.10) (2023-05-17)

4
package-lock.json

@ -1,12 +1,12 @@
{ {
"name": "vue_cli_ts", "name": "vue_cli_ts",
"version": "1.0.0",
"version": "1.0.1-B.0",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "vue_cli_ts", "name": "vue_cli_ts",
"version": "1.0.0",
"version": "1.0.1-B.0",
"dependencies": { "dependencies": {
"@better-scroll/core": "^2.5.0", "@better-scroll/core": "^2.5.0",
"@better-scroll/observe-image": "^2.5.0", "@better-scroll/observe-image": "^2.5.0",

2
package.json

@ -1,6 +1,6 @@
{ {
"name": "vue_cli_ts", "name": "vue_cli_ts",
"version": "1.0.0",
"version": "1.0.1-B.0",
"private": true, "private": true,
"scripts": { "scripts": {
"serve": "vue-cli-service serve", "serve": "vue-cli-service serve",

17
src/components/CarInfo/CarInfo.vue

@ -79,19 +79,25 @@ function go() {
<style lang="scss" scoped> <style lang="scss" scoped>
.car-info-wrapper { .car-info-wrapper {
position: fixed; position: fixed;
top: 0;
left: 0;
z-index: 1001; z-index: 1001;
width: 1920px;
height: 1080px;
background: rgb(0 0 0 / 50%); background: rgb(0 0 0 / 50%);
inset: 0;
.masker { .masker {
position: absolute;
inset: 0;
position: fixed;
top: 0;
left: 0;
z-index: 2; z-index: 2;
width: 1920px;
height: 1080px;
} }
.car-content { .car-content {
position: absolute; position: absolute;
top: 50%;
left: 50%;
top: 520px;
left: 952px;
z-index: 3; z-index: 3;
width: 717px; width: 717px;
border-radius: 16px; border-radius: 16px;
@ -113,6 +119,7 @@ function go() {
display: flex; display: flex;
align-items: center; align-items: center;
padding: 48px 56px; padding: 48px 56px;
margin-top: -3px;
background: #efeeea; background: #efeeea;
} }
.car-group { .car-group {

Loading…
Cancel
Save