常用的开发中,前端项目主要负责数据的表层处理。
更多主要数据业务逻辑实际操作是在后端,主要体现在数据的增删改查业务逻辑及其数据库的操作上。
今日简单罗列一下前端项目中数据表层的增删改查功能:

一,增,改

1.html中:

<ion-header><div class="bill-header"><div class="bill-header-title"><div class="bill-header-icon" (click)="goBack()"><ion-icon name="chevron-back-outline" class="icon-left"></ion-icon></div></div><div class="bill-header-null">添加发票信息</div><div class="bill-header-detail"><span></span></div><div class="bill-header-icon" *ngIf="!showEdit" (click)="showEdit=!showEdit"><span>管理</span></div><div class="bill-header-icon" *ngIf="showEdit" (click)="onFinished();"><span>完成</span></div></div>
</ion-header> <div class="bill-types"><div class="btype-title">发票类型</div><div class="btype-check"><div class="bt-citem"  *ngFor="let item of Itypes" (click)="selectType(item)"><ion-checkbox  [(ngModel)]="item.isToggled"></ion-checkbox><span>{{item.title}}</span></div></div>
</div>
<div class="bill-bottom-bg"></div>
<ion-content class="bill-message"><div class="bill-message-content"><div class="bill-message-content-cell"><a>公司名称:</a><ion-input [(ngModel)]="companyName"></ion-input></div><div class="bill-message-content-cell"><a>纳税人识别号:</a><ion-input [(ngModel)]="taxpayerIdentif"></ion-input></div><div class="bill-message-content-bcell"><ion-input placeholder=" 请输入详细地址信息"  [(ngModel)]="registerAddress">注册地址:</ion-input></div><div class="bill-message-content-cell"><a>注册电话:</a>  <ion-input [(ngModel)]="registerTelepho"></ion-input></div><div class="bill-message-content-cell"><a>开户银行:</a>  <ion-input [(ngModel)]="depositBank"></ion-input></div><div class="bill-message-content-cell"><a>银行账号:</a>  <ion-input [(ngModel)]="bankAccount"></ion-input></div><div class="bill-message-content-footer" (click)="saveBill()"><span >保存</span></div></div>
</ion-content><ion-footer>
</ion-footer>

ts中调用接口,点击保存:

 //新增发票信息
async getinsertInvoice() {const goodsReq = {'invoiceType' :this.invoiceType,//'invoiceType' :1,'companyName' :this.companyName,'taxpayerIdentifyNumber':this.taxpayerIdentif,'registerAddress':this.registerAddress,'registerTelepho':this.registerTelepho,'depositBank' :this.depositBank,'bankAccount	' :this.bankAccount,'businessLicense':'1',}this.showLoading(this.loadingCtrl, '加载中...').then((loading) => {this.rest.apiPost(goodsReq, this.rest.getinsertInvoice).subscribe(res => {const { status, msg, data } = res;if (status == 200) {this.toastWarning(this.toastCtrl, "添加成功!!");this.navCtrl.back();} else {console.log("请求失败");}loading.dismiss();}, (err) => {this.toastError(this.toastCtrl, err.msg);loading.dismiss();});})
}//保存添加
saveBill(){if(this.invoiceType!=null&&this.companyName!=null&&this.taxpayerIdentif!=null&&this.registerAddress!=null&&this.registerTelepho!=null&&this.depositBank!=null&&this.bankAccount!=null){this.getinsertInvoice();}else{this.toastWarning(this.toastCtrl, "请填写完整信息!!");}
}

二,删

html

      <div class="bill-operation"  *ngIf="showEdit"><div class="bill-null"></div><div class="bill-button"><div class="bill-delete" (click)="deleteBill(item)">删除</div><div class="bill-edit" (click)="editBill(item)">编辑</div></div></div>

ts

//删除发票信息
async getdeleteInvoice() {const goodsReq = {'id':this.selectId}this.showLoading(this.loadingCtrl, '加载中...').then((loading) => {this.rest.apiPost(goodsReq, this.rest.getdeleteInvoice).subscribe(res => {const { status, msg, data } = res;if (status == 200) {this.toastWarning(this.toastCtrl, "删除成功!");this.getlistInvoice();} else {console.log("请求失败");}loading.dismiss();}, (err) => {this.toastError(this.toastCtrl, err.msg);loading.dismiss();});})
}//删除发票
deleteBill(item){console.log("删除",item,item.id)if(item!=null){this.selectId=item.idthis.getdeleteInvoice();}
}

三,查,根据分类条件查,筛选条件查。

在这里插入图片描述

1.html获取搜索框输入内容

   <div class="shop-item-search"><img class="shop-search-find" src="../../../assets/icon/search-icon/search.png"><div class="selected-tag" *ngIf="selectTag"  (click)="touchTag(inputContent)">{{this.tagName}}<div class="sure-tag" *ngIf="selectTag"><ion-icon name="close-outline" class="sure-outline"></ion-icon></div></div><div *ngIf="!selectTag"></div><ion-input class="shop-search" type="text" [(ngModel)]="inputContent"(keyup)='getVal($event)'(click)="clearInput()"></ion-input><div class="cancel-tag" *ngIf="selectNoTag"><ion-icon name="close-outline" class="close-outline"></ion-icon></div></div>

2,ts

1》获取取搜索框输入内容

  getVal(e) {//实现防抖,设置定时器let timer = null;timer && clearInterval(timer)timer = setTimeout(() => {console.log(this.inputContent);}, 500);if (this.inputContent.length > 0) {this.inputContent = this.inputContent.slice(0, 30)}let keycode = window.event ? e.keyCode : e.which;if (keycode == 13) {this.selectNoTag = true;//获取到搜索内容this.getProductSearch();}if (keycode == 27 || this.inputContent == "") {//esc键this.selectNoTag = false;this.getProductSearch();}}

2》接口传入:this.inputContent

  //产品搜索async getProductSearch() {const userInfo = {'q': this.inputContent,'pageNo': 1,'pageSize': 16,'order': this.sequenceList,'specOptionName': this.sizeItems,'brand': this.checkedBrands,'price': this.inputPrice,'categoryId': this.tagId,}this.rest.apiPost(userInfo, this.rest.getProductSearch).subscribe(res => {const { status, msg, data } = res;if (status == 200) {console.log("------产品分类搜索-----");this.tagSearchList = res.data.result;console.log(this.tagSearchList);} else {console.log("请求失败");}});}

3》完整代码

在这里插入图片描述

a.html

<ion-content fullscreen (ionScroll)="resizeHeader($event)" scrollEvents="true" class="product-reclassify"><section class="shop-item-header"><div id="detailNavBar" [ngClass]="isZindex ? 'onIndex': 'upIndex'"><div class="shop-content-left" (click)="goBack()"><img class="shop-cleft-img" src="../../../assets/icon/search-icon/left.png"></div><div class="shop-item-search"><img class="shop-search-find" src="../../../assets/icon/search-icon/search.png"><div class="selected-tag" *ngIf="selectTag"  (click)="touchTag(inputContent)">{{this.tagName}}<div class="sure-tag" *ngIf="selectTag"><ion-icon name="close-outline" class="sure-outline"></ion-icon></div></div><div *ngIf="!selectTag"></div><ion-input class="shop-search" type="text" [(ngModel)]="inputContent"(keyup)='getVal($event)'(click)="clearInput()"></ion-input><div class="cancel-tag" *ngIf="selectNoTag"><ion-icon name="close-outline" class="close-outline"></ion-icon></div></div><div class="shop-content-right"><img class="shop-cright-img" src="../../../assets/icon/search-icon/message.png"></div></div></section><section class="shop-in-tabs" ><div class="header-tabs" [ngClass]="isZindex ? 'onIndex':'upIndex' "><div class="tab-cell" (click)="changeBymultiple()"><span>综合排序</span></div><div class="tab-cell" (click)="changeBySales()"><span>销量优先</span></div><div class="tab-cell" (click)="changeSequence()"><div class="menu-text"><span>价格排序</span></div><div class="to-select"><div class="to-up" [ngClass]="checkedBydesc ? 'downcolor': 'upcolor'"></div><div class="to-down" [ngClass]="!checkedBydesc ? 'downcolor' : 'upcolor'"></div></div></div><div class="tab-cell" id="left-button"  (click)="openMenu()"><span>筛选</span></div></div></section><section><div class="research-result-details"><div class="research-result-adv" *ngFor="let item of tagSearchList"[routerLink]="['/product-details',item.goodsId]"><div class="result-container-img"><img [src]="item.picturepath"></div><div class="result-container-text"><div class="result-container-name"><span>{{item.productname}}</span></div><div class="result-container-price"><div class="container-price-left"><span>¥{{item.promotionprice}}</span>/<b>盒</b></div><div class="container-price-right"><a>已售{{item.salesVolume}}{{item.salesvolume}}</a></div></div></div></div></div></section><div class="no-more">--暂无更多内容--</div>
<!-- <ion-app > -->
<ion-menu side="end" menuId="first" type="overlay" class="inner-scroll" class="my-custom-menu"><ion-content><!-- 品牌 --><div ng-repeat="ite in getbrand"><div class="select-selector"><div class="selector-title"><span>{{brandList.specName}}</span></div></div><ion-list><div class="select-prices" *ngFor="let index of brandList.options"><div class="alert-brand" (click)="checkBrand(index)"><span>{{index.optionName}}</span></div></div></ion-list></div><!-- 尺寸,颜色--><div *ngFor="let item of specificAtions"><div class="select-selector"><div class="selector-title"><span>{{item.specName}}</span></div><div class="selector-text" (click)="isNoOpen(item)">{{item.options[0].specOptionName}}, {{item.options[1].specOptionName}}...</div><div class="selector-icon" (click)="isNoOpen(item)"><ion-icon name="chevron-down-outline" class="up-gray" *ngIf="!item.isOpen"></ion-icon><ion-icon name="chevron-up-outline" class="down-gray" *ngIf="item.isOpen"></ion-icon></div></div><ion-list class="open-cell" *ngIf="!item.isOpen"><div class="select-prices" *ngFor="let index of item.options"><div class="alert-size" (click)="checkSize(index)" [ngClass]="index.selectCell ? 'isSelect': 'noSelect'">{{index.specOptionName}}</div></div></ion-list><ion-list class="normal-cell" *ngIf="item.isOpen"><div class="select-prices" *ngFor="let index of item.options"><div class="alert-size" (click)="checkSize(index)" [ngClass]="index.selectCell ? 'isSelect': 'noSelect'">{{index.specOptionName}}</div></div></ion-list></div><div><div class="select-selector"><div class="selector-title"><span>价格区间(元)</span></div></div><ion-list><div class="price-area"><ion-input class="alert-price" placeholder="最低价" type="text" [(ngModel)]="beginPrice"(ngModelChange)='priceRegion($event)'></ion-input><div class="alert-bar"><div class="bar"></div></div><ion-input class="alert-price" type="text" placeholder="最高价" [(ngModel)]="endPrice"(ngModelChange)='priceRegion($event)'></ion-input></div></ion-list></div></ion-content><ion-footer><div class="bottom-buttons"><div class="alert-button" (click)="onReset()">重置</div><div class="alert-button" (click)="onFinished()">完成</div></div></ion-footer>
</ion-menu>
<ion-router-outlet main></ion-router-outlet>
<!-- </ion-app> --></ion-content>

b.ts

import { Component, OnInit, ViewChild, ElementRef} from '@angular/core';
import { RestService, StorageService, AppService } from '../../service'
import { ToastController, LoadingController, NavController, MenuController } from '@ionic/angular';
import { UserInfo } from 'src/app/common/userinfo';
import { Router, ActivatedRoute } from '@angular/router';@Component({selector: 'app-product-reclassify ',templateUrl: './product-reclassify.page.html',styleUrls: ['./product-reclassify.page.scss'],
})
export class ProductReclassifyPage extends UserInfo implements OnInit {public goodsId: string = ""//货物idpublic tagId: string = "";//选中分类id(传参1)public tagName: string = "";//选中分类值(传参2)// public inputValue: string = "";//分类页搜索值(传参3)public inputContent: string = "";//顶部搜索public selectTag = true; //输入框内默认标签选项public checkedBydesc = true;//价格升降序转换public selectNoTag = false;public tagSearchList = [];//public sequenceList = "";//排序条件public isZindex = true;//层级选择public isOpen = true;//筛选选项伸缩public specificAtions;//规格public checkedSize = '';//选中规格(尺寸颜色)public checkedSizes = [];public sizeItems = "";//选中规格拼接为字符串(尺寸颜色)public selectCell = null;//选中筛选条件public brandList = {specName: '',options: '',optionName:''};//品牌public checkedBrands = '';//选中品牌public beginPrice: string = ""//最低价格public endPrice: string = ""//最高价格public inputPrice: string = ""//价格区间public searchTarget=[];//搜索记录constructor(private rest: RestService,private router: Router,private activatedRoute: ActivatedRoute,private navCtrl: NavController,private menu: MenuController,private loadingCtrl: LoadingController,public appService: AppService,public localStorageService: StorageService,private toastCtrl: ToastController,private el: ElementRef,){ super(appService, localStorageService);this.goodsId = this.activatedRoute.snapshot.paramMap.get('goodsId');this.tagId = this.activatedRoute.snapshot.paramMap.get('tagId');this.tagName = this.activatedRoute.snapshot.paramMap.get('tagName');// this.inputValue = this.activatedRoute.snapshot.paramMap.get('inputValue');}//回退方法goBack() {this.navCtrl.back();}// 监听滚动条resizeHeader(event) {var _header = document.getElementById("detailNavBar");let _opacity = event.detail.scrollTop / 235;if (_opacity > 1) {_opacity = 1_header.setAttribute('style', 'background: rgba(255,255,255,' + _opacity + ')');} else {_header.setAttribute('style', 'background: rgba(255,255,255,' + _opacity + ')');}}// Angular+Ionic侧边栏电商项目实现筛选功能//产品搜索async getProductSearch() {const userInfo = {'q': this.inputContent,'pageNo': 1,'pageSize': 16,'order': this.sequenceList,// 'shopId': '',// 'isNew': 'desc','specOptionName': this.sizeItems,// this.checkedSizes,// 'customCategoryId': '','brand': this.checkedBrands,'price': this.inputPrice,'categoryId': this.tagId,}this.rest.apiPost(userInfo, this.rest.getProductSearch).subscribe(res => {const { status, msg, data } = res;if (status == 200) {console.log("------产品分类搜索-----");this.tagSearchList = res.data.result;console.log(this.tagSearchList);} else {console.log("请求失败");}});}//筛选数据async getListBandAnd() {const userInfo = {'categoryId': this.tagId,}this.rest.apiPost(userInfo, this.rest.getListBandAndSpecOption).subscribe(res => {const { status, msg, data } = res;if (status == 200) {console.log("======筛选获取规格======");console.log(res.data);//品牌this.brandList = res.data[3];//颜色,颜色2,尺寸let list = res.data.splice(0, 3);this.specificAtions = list;console.log(this.specificAtions);console.log(this.brandList);} else {console.log("请求失败");}});}// inputValue//打开侧边栏openMenu() {// e.stopPropagation();this.getListBandAnd();this.menu.enable(true, 'first')this.menu.open("first");console.log("aaa2");if (this.menu.enable(true, 'first'),this.menu.open('first')) {this.isZindex == !this.isZindex;console.log("aaa1")}else if (this.menu.enable(false)) {this.isZindex == true;console.log("aaa2")}}//筛选尺寸颜色选择checkSize(index) {this.specificAtions.forEach(item => {let allCells = item.options;allCells.forEach(itemb => {itemb.selectCell = false;if (index.id == itemb.id) {itemb.selectCell = true;//选中// this.checkedSize = index.specOptionName;// this.checkedSizes.push(index.specOptionName);}});}); if (index.selectCell == true) { this.checkedSize = index.specOptionName;this.checkedSizes.push(index.specOptionName);} if (index.selectCell ==false) {// this.checkedSize = index.specOptionName;this.checkedSizes.splice(index, 1);}console.log(index.selectCell);console.log(this.checkedSizes);let Lists = this.checkedSizes.map(function (obj, indexa) {return obj;}).join(',');//转换为字符串this.sizeItems = Lists;console.log(this.sizeItems);// this.checkedSizes = Object.assign(index.specOptionName,index.specOptionName);// this.inputContent = "";// this.sequence = "";// this.tagId = "";this.getProductSearch();}//筛选品牌选择checkBrand(index) {console.log("选中了");this.checkedBrands = index.optionName;console.log(this.checkedBrands);this.getProductSearch();}//筛选打开关闭isNoOpen(item) {item.isOpen = !item.isOpen;// console.log(item);}
//筛选价格区间priceRegion($event) { this.inputPrice = this.beginPrice + '-' + this.endPrice;this.getProductSearch();console.log(this.inputPrice);}//重置onReset() { this.checkedBrands = '';this.sizeItems = '';this.getProductSearch();this.menu.open('first');}//完成onFinished() { this.menu.enable(false, 'first');this.getProductSearch();}//清除标签touchTag(inputContent) {console.log("aaaa");this.selectTag = false;this.tagId = "";console.log("aaaa");if (inputContent!==null) { this.sequenceList=""this.inputContent=inputContent;this.getProductSearch();}if (inputContent==null) { this.sequenceList=""this.getProductSearch();}}//回车搜索getVal(e) {//实现防抖,设置定时器let timer = null;timer && clearInterval(timer)timer = setTimeout(() => {console.log(this.inputContent);}, 500);if (this.inputContent.length > 0) {this.inputContent = this.inputContent.slice(0, 30)}let keycode = window.event ? e.keyCode : e.which;if (keycode == 13) {this.selectNoTag = true;//获取到搜索内容this.getProductSearch();}if (keycode == 27 || this.inputContent == "") {//esc键this.selectNoTag = false;this.getProductSearch();}}//清除输入clearInput() {this.selectNoTag = !this.selectNoTagthis.inputContent = ""this.getProductSearch();}//综合排序1changeBymultiple() { this.sequenceList = "1";this.getProductSearch();console.log(this.sequenceList);}//销量排序2changeBySales() {this.sequenceList = "2";this.getProductSearch();console.log(this.sequenceList);}//升序3降序4changeSequence() {this.checkedBydesc = !this.checkedBydescif (this.checkedBydesc==true) {this.sequenceList = "3";this.getProductSearch();console.log(this.sequenceList);} if (this.checkedBydesc!=true) {this.sequenceList = "4";this.getProductSearch();console.log(this.sequenceList);}}//获取分类页搜索框的historyItemgetclassifyTab(historyItems: any) {return JSON.parse(localStorage.getItem(historyItems))}classifyTab() { let searchTargetItem=null;if(this.searchTarget!=undefined||this.searchTarget!=null){this.searchTarget =localStorage.historyItems.split(",");//接收分类页面的输入}for (const key in this.searchTarget) {console.log(+"1111");searchTargetItem=this.searchTarget[key]}if (this.tagId == null && this.tagName == null) {this.selectTag = false;//清除掉输入框标签searchTargetItem = searchTargetItem.replace("\"", "").replace("\"", "");//去掉""this.inputContent = searchTargetItem;this.getProductSearch();console.log(searchTargetItem + "获取Item2");}console.log(this.tagId);console.log(this.tagName);}ngOnInit() {}ionViewWillEnter() {this.classifyTab();this.getProductSearch();this.getListBandAnd();}
}

c.scss

@import "../../../style/mixin.scss";
//产业商圈搜索页
.product-reclassify{width: 100%;.no-more {width: 100%;height: rem(80);line-height: rem(50);font-size: rem(32);}
//顶部搜索
.shop-item-header {width: rem(750);height: rem(88);position: fixed;top: rem(0);left: rem(0);display: flex;flex-direction: row;justify-items: center;background-color: white;z-index: 1;.onIndex {z-index: 1;color: orange;}.upIndex {z-index: 0;color: palegreen;}#detailNavBar {display: flex;align-items: center;}.shop-content-left {width: rem(100);height: rem(60);display: flex;align-items: center;.shop-cleft-img {width: rem(30);height: rem(30);margin-left: rem(30);margin-right: rem(20);}}.shop-content-right {width: rem(100);height: rem(60);text-align: center;display: flex;flex-direction: column;justify-content: space-between;justify-items: center;align-items: center;.shop-cright-img {width: rem(30);height: rem(30);margin-top: rem(8);}.shop-cright-text {width: rem(100);height: rem(30);text-align: center;font-size: rem(18);color: #6C6CA1;line-height: rem(30);}}.shop-item-search {width: rem(550);height: rem(60);font-size: rem(28);font-weight: 400;color: rgba(169, 169, 169, 1);line-height: rem(60);display: flex;align-items: center;border-radius: rem(8);background-color: #F1F2F6;.selected-tag{margin-left:rem(10);margin-top: rem(5);margin-bottom: rem(5);min-width: rem(150);max-width: rem(220);height: rem(50);line-height: rem(50);font-size: rem(28);color: #333333;background:#e0e1e6;border-radius: rem(8);text-indent: rem(15);.sure-tag {width: rem(30);height: rem(30);background: #939496;border-radius: 50%;position: absolute;top: rem(30);left: rem(280);.sure-outline {width: rem(30);height: rem(30);position: relative;top: rem(-5);left: rem(-15);color: white;}}}.shop-search-find {width: rem(30);height: rem(30);margin: 0 rem(15);};.cancel-tag {width: rem(30);height: rem(30);background:#939496;border-radius: 50%;position: absolute;top: rem(30);right: rem(120);.close-outline {width: rem(30);height: rem(30);position: relative;top: rem(-10);color:white;}}input.shop-search {flex: 1;height: rem(60);line-height: rem(60);font-size: rem(24);color: rgba(169, 169, 169, 1);border: 0;}}
}//顶部切换
.shop-in-tabs{width: 100%;//height: rem(37);height: rem(82);z-index: 1;
.onIndex{z-index: 1;background-color: orange;
}
.upIndex {z-index: 0;background-color: palegreen;
}
.header-tabs {width: 100%;height: rem(80);line-height: rem(80);display: flex;align-items: center;justify-content: center;top: rem(88);position: fixed;background-color: #FFFFFF;border-top: rem(1) solid #F1F2F6;border-bottom: rem(1) solid #F1F2F6;.tab-cell {width: 25%;text-align: center;.menu-text{width: 80%;span{width: rem(40);height: rem(80);line-height: rem(80);font-size: rem(24);color: #333333;}}.to-select {position: relative;.to-down {height: rem(15);width: rem(15);border-top: rem(15) solid transparent;border-left: rem(15) solid transparent;transform: rotate(225deg);position: absolute;top: rem(-48);left: rem(130);}.to-up {height: rem(15);width: rem(15);border-top: rem(15) solid transparent;border-left: rem(15) solid transparent;transform: rotate(45deg);position: absolute;top:rem(-50);left: rem(120);}.downcolor {border-right: rem(15) solid #007AFF;}.upcolor {border-right: rem(15) solid gray;}}span {width: rem(40);height: rem(80);line-height: rem(80);font-size: rem(24);color: #333333;}span:hover {border-bottom: 2px solid #0265ff;}.spanAtive {color: #0265ff;padding-bottom: rem(3);border-bottom: 2px solid #0265ff;}}
}.header-icon-left {width: rem(60);margin-top: rem(11);height: rem(60);background: rgba(0, 0, 0, 1);opacity: 0.49;border-radius: 50%;left: rem(40);img {width: rem(20);height: rem(40);margin-left: rem(20);margin-top: rem(12);}
}.header-icon-center-img {width: rem(80);height: rem(88);left: rem(240);img {margin-top: rem(4);width: rem(80);height: rem(80);}}.header-icon-cart {width: rem(60);height: rem(60);margin-top: rem(11);background: rgba(0, 0, 0, 1);opacity: 0.49;border-radius: 50%;position: relative;left: rem(440);img {width: rem(30);height: rem(40);margin-left: rem(12);margin-top: rem(12);}
}.header-icon-message {width: rem(60);height: rem(60);margin-top: rem(11);background: rgba(0, 0, 0, 1);opacity: 0.49;border-radius: 50%;position: relative;left: rem(500);img {width: rem(35);height: rem(35);margin-left: rem(12);margin-top: rem(12);}
}
}
//店铺信息.middle-rate-shop-name {margin-top: rem(80);width:rem(750);height: rem(140);display: flex;.middle-rate-shop-name-img {width: 20%;height: rem(140);img {margin: rem(20);width: rem(100);height: rem(100);}}.middle-rate-shop-name-text {width: 80%;height: rem(140);span {font-size: rem(22);font-weight: 500;color: rgba(245, 217, 108, 1);}.rate-shop-name-text-qzh {height: rem(70);font-size: rem(30);font-weight: 400;line-height: rem(70);}}
}.middle-rate-shop-number {width: 100%;height: rem(130);display: flex;.middle-rate-shop-number-all {width: rem(175);height: rem(130);text-align: center;.shop-number-all-text {width: rem(175);height: rem(65);font-size: rem(30);color: rgba(51, 51, 51, 1);}span {width: rem(175);height: rem(65);font-size: rem(22);color: rgba(102, 102, 102, 1);}}.middle-rate-shop-number-people {width: rem(225);height: rem(130);.shop-number-people-thing {width: rem(225);height: rem(65);span {font-size: rem(22);color: rgba(102, 102, 102, 1);}a {font-size: rem(22);color: rgba(0, 122, 255, 1);}}.shop-number-people-service {width: rem(225);height: rem(65);span {font-size: rem(22);color: rgba(102, 102, 102, 1);}a {font-size: rem(22);color: rgba(0, 122, 255, 1);}}}
}.middle-rate-shop-types {width: 100%;height: rem(130);display: flex;.middle-rate-shop-types-itemize {width: 50%;height: rem(130);text-align: center;span {display: inline-block;color: rgba(0, 122, 255, 1);width: rem(160);height: rem(60);font-size: rem(24);line-height: rem(60);margin-top: rem(35);margin-left: rem(175);border-radius: rem(5);border: rem(1) solid rgba(0, 122, 255, 1);}}.middle-rate-shop-types-play {width: 50%;height: rem(130);text-align: center;span {display: inline-block;color: rgba(0, 122, 255, 1);width: rem(160);height: rem(60);font-size: rem(24);line-height: rem(60);margin-top: rem(35);margin-right: rem(175);border-radius: rem(5);border: rem(1) solid rgba(0, 122, 255, 1);}}}
.shop-in-bottom-bar{
.bottom-tabs{width: 100%;height: rem(80);display: flex;align-items: center;justify-content: center;
bottom: rem(0);position: fixed;
background-color:oldlace ;.tab-cell {width: 40%;text-align: center;span {width: rem(40);height: rem(56);font-size: rem(24);color: #333333;}span:hover {border-bottom: 2px solid #0265ff;}.spanAtive {color: #0265ff;padding-bottom: rem(3);border-bottom: 2px solid #0265ff;}}.tab-cell-service{width: 20%;display: flex;flex-direction: column;justify-content: space-between;justify-items: center;align-items: center;.shop-cright-img {width: rem(30);height: rem(30);margin-top: rem(8);}.shop-cright-text {width: rem(100);height: rem(30);text-align: center;font-size: rem(18);color: #6C6CA1;line-height: rem(30);}}
} 
}//搜索结果展示.research-result-details {margin-top: rem(84);// background-color: orange;width:rem(750);display: flex;flex-direction: row;flex-wrap: wrap;
.research-result-swipe {width: rem(250);height: rem(420);}
.research-result-adv:nth-child(1n) {border-bottom: rem(1) solid #F0F0F0;border-right: rem(1) solid #F0F0F0;
}
.research-result-adv:nth-child(2n) {border-bottom: rem(1) solid #F0F0F0;
}.research-result-adv {width:rem(374);height: rem(500);.result-container-img {width: 100%;height: rem(355);img {width: rem(334);height: rem(334);margin: rem(20) rem(20) rem(0) rem(20);}}.result-container-text {width: rem(375);height: rem(146);.result-container-name {width: rem(355);height: rem(90);margin-left:rem(20);padding-top: rem(20);display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;word-wrap: break-word;overflow: hidden;span {font-size: rem(24);font-family: PingFangSC-Regular, PingFang SC;font-weight: 400;color: rgba(51, 51, 51, 1);line-height: rem(28);}}.result-container-price {margin: rem(10) rem(10);width: rem(355);height: rem(51);line-height: rem(51);display: flex;.container-price-left{width: 60%;height: rem(51);color:#666666;span {width: rem(84);height: rem(40);font-size: rem(20);font-family: PingFangSC-Medium, PingFang SC;font-weight: 500;color:#FF4300;line-height: rem(20);margin-left: rem(10);}}.container-price-right{width: 40%;height: rem(51);a {display: inline-block;width: rem(200);height: rem(40);line-height: rem(20);color:#666666;font-size: rem(20);font-family: PingFangSC-Regular, PingFang SC;font-weight: 400;color: rgba(153, 153, 153, 1);text-indent: rem(5);}}}}}
}//侧边栏   .my-custom-menu {--width: 80%;position: fixed;--z-index: 20;.open-cell {width: 100%;height: rem(160);}.normal {height: rem(160);background-color: plum;}.alert-brand{width: rem(173);height: rem(60);line-height: rem(60);color:#999999;margin: rem(10) rem(20) rem(10) rem(20);font-size: rem(24);text-align: center;border-radius: rem(8);background-color: #F1F2F6;}.alert-brand:hover {color: #007AFF;font-size: rem(24);border: rem(1) #007AFF solid;}.select-selector {width: 100%;height: rem(80);display: flex;.selector-title {width: 66%;height: rem(80);span {display: inline-block;height: rem(80);line-height: rem(80);width: rem(173);padding-left: rem(20);color: #666666;font-size: rem(24);}}.selector-text {width: 24%;height: rem(80);line-height: rem(80);color: #999999;font-size: rem(24);text-align: end;display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;word-wrap: break-word;overflow: hidden;}.selector-text:hover {color: #007AFF;font-size: rem(24);}.selector-icon {width: 10%;height: rem(80);.down-gray,.up-gray {height: rem(40);width: rem(60);margin-top: rem(20);color: rgba(153, 153, 153, 1);}}}.price-area {display: flex;height: rem(60);line-height: rem(60);.alert-price {width: rem(260);height: rem(60);line-height: rem(60);margin-left: rem(20);color: #999999;font-size: rem(24);text-align: center;background-color: #F1F2F6;border-radius: rem(8);}.alert-bar {width: rem(20);height: rem(60);.bar {margin-top: rem(30);margin-left: rem(12);width: rem(15);height: rem(2);background-color: #999999;}}.alert-price:hover {border: rem(1) #007AFF solid;background-color: #FFFFFF;color: #007AFF;}}.select-prices {width: 33%;overflow-y: hidden;line-height: rem(100);font-weight: 400;float: left;.alert-size {width: rem(173);height: rem(60);line-height: rem(60);margin: rem(10) rem(20) rem(10) rem(20);font-size: rem(24);text-align: center;border-radius: rem(8);}.isSelect {border: rem(1) #007AFF solid;background-color: #FFFFFF;color: #007AFF;}.noSelect {color: #999999;background-color: #F1F2F6;}}.bottom-buttons {width: 100%;display: flex;.alert-button {width: 50%;height: rem(100);line-height: rem(100);text-align: center;font-size: rem(32);color: #333333;}.alert-button:hover {color: #FFFFFF;background-color: #007AFF;}}}}
查看全文
如若内容造成侵权/违法违规/事实不符,请联系编程学习网邮箱:809451989@qq.com进行投诉反馈,一经查实,立即删除!

相关文章

  1. 2021-03-12

    ZooKeeper 图片灯箱插件之lightBox 图片放大镜插件之jqzoom 表单验证插件之validate jQuery 强大的jQuery弹出层插件–BlockUI https://blog.csdn.net/ATFWUS/article/details/106157480 jQuery UI 常用插件:   1.dialog插件 2.tabs插件 3.menu插件 4.autocomplete插件 5.…...

    2024/4/21 5:09:51
  2. 福州比华利微雕智慧双眼皮保持多久

    ...

    2024/5/1 21:38:47
  3. jquery-file-upload angularjs下使用简介

    1.什么是jquery-file-upload jQuery File Upload是一个非常优秀的上传组件&#xff0c;主要使用了XHR作为上传方式&#xff0c;并且利用了相当多的现代浏览器功能&#xff0c;所以可以实现诸如批量上传、超大文件上传、图片预览、拖拽上传、上传进度显示、跨域上传等功能。 美中…...

    2024/4/21 5:09:48
  4. How to Lazy Load Components in Angular 4 in Three Steps

    // angular按模块开发&#xff0c;跟模块&#xff0c;特性模块&#xff0c;核心模块(整个应用只在跟模块只加载一次)&#xff0c;惰性加载模块等 只是有一个问题&#xff0c;即在惰性加载模块里&#xff08;selector方式的模板方式&#xff0c;即 <app-title [subtitle]&q…...

    2024/4/21 5:09:46
  5. 贴双眼皮贴好不好

    ...

    2024/4/21 5:09:45
  6. Angular 2 遇见的坑

    1. npm install "types/jquery" --save-dev 2. jquery的$不识别 3. index.html页面不识别引用过来的外部.css 和 .js 文件 解决方案&#xff1a;把对应的文件放到公网上&#xff0c;比如&#xff1a;<link href"http://www.xxxx.cn/prebuilt-themes/indigo…...

    2024/4/21 5:09:45
  7. angular组件合集

    2019独角兽企业重金招聘Python工程师标准>>> 图片视频类 angular-maxonry 图片墙效果插件&#xff0c;可以将图片组织成类似于瀑布流的效果&#xff0c;依赖于jQuery、imageloaded和Masonryangular-deckgrid 另一个照片瀑布流解决方案ngImgCrop 图片剪裁工具ngVideo…...

    2024/4/28 18:33:25
  8. support AngularJS Mult Single Auto-Complete

    Requirement 基于AngularJS UI Bootstrap&#xff0c;支持用户可以多选择与单选择功能。 其它前提细节: 至少输入三个去重支持用户键盘Enter回车选中当用户对Input框失去焦点的时候处理用户CtrlC/V的操作扩展&#xff1a; 大部分的auto-complete都有一种现象&#xff0c;就是异…...

    2024/4/29 20:10:18
  9. Ionic4—抽取公共方法loading

    目录 一、概述 二、创建公共服务封装loading方法 三、创建公共类封装loading方法 一、概述 将loading抽取为公共方法,以下介绍两种方法。...

    2024/4/21 5:09:42
  10. 割完双眼皮开眼角多久能化妆

    ...

    2024/4/21 5:09:40
  11. angular4中引入echarts

    1.安装ngx-echarts //if you use npmnpm install echarts --save //if your angular version >6npm install ngx-echarts --save //else if your angular version<6npm install ngx-echarts2.3.1 --save 2.在项目中引入echarts //angular-cli.json文件{"apps"…...

    2024/4/21 5:09:39
  12. 双眼皮组织粘连怎么办

    ...

    2024/5/1 21:11:27
  13. 割了双眼皮睁眼难受

    ...

    2024/4/21 5:09:37
  14. gulp处理多文件流合并处理及根据注释向页面自动植入js和css

    导读 在前端自动化项目过程中&#xff0c;会根据项目需求&#xff0c;实现一些特殊的需求&#xff0c;就比如把本地引入的第三方库资源批量植入页面html&#xff0c;或者类似于一些相同工作流&#xff0c;只是入口出口不一样&#xff0c;我们需要合并统一处理工作流&#xff0…...

    2024/4/21 5:09:37
  15. 双眼皮手术后 吃什么恢复快

    ...

    2024/4/29 3:49:35
  16. 埋线双眼皮几天能化妆

    ...

    2024/4/21 5:09:34
  17. 韩式定点双眼皮感染

    ...

    2024/4/20 19:28:56
  18. 怎么确认双眼皮割宽了

    ...

    2024/4/20 19:28:55
  19. 双眼皮不对称怎么修复

    ...

    2024/4/20 19:28:54
  20. 双眼皮线割的长可以修复短的吗

    ...

    2024/4/20 19:28:53

最新文章

  1. 延时任务通知服务的设计及实现(二)-- redisson的延迟队列RDelayedQueue

    一、接着上文 RDelayedQueue作为redisson封装的一个分布式延迟队列&#xff0c;直接拿来使用还是比较简单的。 本文主要包括以下几部分&#xff1a; 保存至延迟队列&#xff08;生产者&#xff09;读取延迟队列&#xff08;消费者&#xff09;从延迟队列移除任务 二、rediss…...

    2024/5/1 22:28:00
  2. 梯度消失和梯度爆炸的一些处理方法

    在这里是记录一下梯度消失或梯度爆炸的一些处理技巧。全当学习总结了如有错误还请留言&#xff0c;在此感激不尽。 权重和梯度的更新公式如下&#xff1a; w w − η ⋅ ∇ w w w - \eta \cdot \nabla w ww−η⋅∇w 个人通俗的理解梯度消失就是网络模型在反向求导的时候出…...

    2024/3/20 10:50:27
  3. java自动化学习-03-02java基础语法01

    1、java基础语法 在JAVA中源文件名称必须和主类名称相同 源文件名&#xff1a;源文件名必须和类名相同。当保存文件的时候&#xff0c;你应该使用类名作为 文件名保存&#xff08;切记 Java 是大小写敏感的&#xff09;&#xff0c;文件名的后缀为 .java。&#xff08;如果文…...

    2024/5/1 14:07:16
  4. 基于JSPM的美食推荐管理系统

    背景 互联网的迅猛扩张彻底转变了全球各类组织的运营模式。自20世纪90年代起&#xff0c;中国各级政府和企事业单位便开始探索运用网络系统来处理管理事务。然而&#xff0c;早期的网络覆盖不广、用户接受度不高、相关网络法规不健全以及技术发展不成熟等因素&#xff0c;都曾…...

    2024/5/1 14:33:06
  5. 【外汇早评】美通胀数据走低,美元调整

    原标题:【外汇早评】美通胀数据走低,美元调整昨日美国方面公布了新一期的核心PCE物价指数数据,同比增长1.6%,低于前值和预期值的1.7%,距离美联储的通胀目标2%继续走低,通胀压力较低,且此前美国一季度GDP初值中的消费部分下滑明显,因此市场对美联储后续更可能降息的政策…...

    2024/5/1 17:30:59
  6. 【原油贵金属周评】原油多头拥挤,价格调整

    原标题:【原油贵金属周评】原油多头拥挤,价格调整本周国际劳动节,我们喜迎四天假期,但是整个金融市场确实流动性充沛,大事频发,各个商品波动剧烈。美国方面,在本周四凌晨公布5月份的利率决议和新闻发布会,维持联邦基金利率在2.25%-2.50%不变,符合市场预期。同时美联储…...

    2024/4/30 18:14:14
  7. 【外汇周评】靓丽非农不及疲软通胀影响

    原标题:【外汇周评】靓丽非农不及疲软通胀影响在刚结束的周五,美国方面公布了新一期的非农就业数据,大幅好于前值和预期,新增就业重新回到20万以上。具体数据: 美国4月非农就业人口变动 26.3万人,预期 19万人,前值 19.6万人。 美国4月失业率 3.6%,预期 3.8%,前值 3…...

    2024/4/29 2:29:43
  8. 【原油贵金属早评】库存继续增加,油价收跌

    原标题:【原油贵金属早评】库存继续增加,油价收跌周三清晨公布美国当周API原油库存数据,上周原油库存增加281万桶至4.692亿桶,增幅超过预期的74.4万桶。且有消息人士称,沙特阿美据悉将于6月向亚洲炼油厂额外出售更多原油,印度炼油商预计将每日获得至多20万桶的额外原油供…...

    2024/4/30 18:21:48
  9. 【外汇早评】日本央行会议纪要不改日元强势

    原标题:【外汇早评】日本央行会议纪要不改日元强势近两日日元大幅走强与近期市场风险情绪上升,避险资金回流日元有关,也与前一段时间的美日贸易谈判给日本缓冲期,日本方面对汇率问题也避免继续贬值有关。虽然今日早间日本央行公布的利率会议纪要仍然是支持宽松政策,但这符…...

    2024/4/27 17:58:04
  10. 【原油贵金属早评】欧佩克稳定市场,填补伊朗问题的影响

    原标题:【原油贵金属早评】欧佩克稳定市场,填补伊朗问题的影响近日伊朗局势升温,导致市场担忧影响原油供给,油价试图反弹。此时OPEC表态稳定市场。据消息人士透露,沙特6月石油出口料将低于700万桶/日,沙特已经收到石油消费国提出的6月份扩大出口的“适度要求”,沙特将满…...

    2024/4/27 14:22:49
  11. 【外汇早评】美欲与伊朗重谈协议

    原标题:【外汇早评】美欲与伊朗重谈协议美国对伊朗的制裁遭到伊朗的抗议,昨日伊朗方面提出将部分退出伊核协议。而此行为又遭到欧洲方面对伊朗的谴责和警告,伊朗外长昨日回应称,欧洲国家履行它们的义务,伊核协议就能保证存续。据传闻伊朗的导弹已经对准了以色列和美国的航…...

    2024/4/28 1:28:33
  12. 【原油贵金属早评】波动率飙升,市场情绪动荡

    原标题:【原油贵金属早评】波动率飙升,市场情绪动荡因中美贸易谈判不安情绪影响,金融市场各资产品种出现明显的波动。随着美国与中方开启第十一轮谈判之际,美国按照既定计划向中国2000亿商品征收25%的关税,市场情绪有所平复,已经开始接受这一事实。虽然波动率-恐慌指数VI…...

    2024/4/30 9:43:09
  13. 【原油贵金属周评】伊朗局势升温,黄金多头跃跃欲试

    原标题:【原油贵金属周评】伊朗局势升温,黄金多头跃跃欲试美国和伊朗的局势继续升温,市场风险情绪上升,避险黄金有向上突破阻力的迹象。原油方面稍显平稳,近期美国和OPEC加大供给及市场需求回落的影响,伊朗局势并未推升油价走强。近期中美贸易谈判摩擦再度升级,美国对中…...

    2024/4/27 17:59:30
  14. 【原油贵金属早评】市场情绪继续恶化,黄金上破

    原标题:【原油贵金属早评】市场情绪继续恶化,黄金上破周初中国针对于美国加征关税的进行的反制措施引发市场情绪的大幅波动,人民币汇率出现大幅的贬值动能,金融市场受到非常明显的冲击。尤其是波动率起来之后,对于股市的表现尤其不安。隔夜美国股市出现明显的下行走势,这…...

    2024/4/25 18:39:16
  15. 【外汇早评】美伊僵持,风险情绪继续升温

    原标题:【外汇早评】美伊僵持,风险情绪继续升温昨日沙特两艘油轮再次发生爆炸事件,导致波斯湾局势进一步恶化,市场担忧美伊可能会出现摩擦生火,避险品种获得支撑,黄金和日元大幅走强。美指受中美贸易问题影响而在低位震荡。继5月12日,四艘商船在阿联酋领海附近的阿曼湾、…...

    2024/4/28 1:34:08
  16. 【原油贵金属早评】贸易冲突导致需求低迷,油价弱势

    原标题:【原油贵金属早评】贸易冲突导致需求低迷,油价弱势近日虽然伊朗局势升温,中东地区几起油船被袭击事件影响,但油价并未走高,而是出于调整结构中。由于市场预期局势失控的可能性较低,而中美贸易问题导致的全球经济衰退风险更大,需求会持续低迷,因此油价调整压力较…...

    2024/4/26 19:03:37
  17. 氧生福地 玩美北湖(上)——为时光守候两千年

    原标题:氧生福地 玩美北湖(上)——为时光守候两千年一次说走就走的旅行,只有一张高铁票的距离~ 所以,湖南郴州,我来了~ 从广州南站出发,一个半小时就到达郴州西站了。在动车上,同时改票的南风兄和我居然被分到了一个车厢,所以一路非常愉快地聊了过来。 挺好,最起…...

    2024/4/29 20:46:55
  18. 氧生福地 玩美北湖(中)——永春梯田里的美与鲜

    原标题:氧生福地 玩美北湖(中)——永春梯田里的美与鲜一觉醒来,因为大家太爱“美”照,在柳毅山庄去寻找龙女而错过了早餐时间。近十点,向导坏坏还是带着饥肠辘辘的我们去吃郴州最富有盛名的“鱼头粉”。说这是“十二分推荐”,到郴州必吃的美食之一。 哇塞!那个味美香甜…...

    2024/4/30 22:21:04
  19. 氧生福地 玩美北湖(下)——奔跑吧骚年!

    原标题:氧生福地 玩美北湖(下)——奔跑吧骚年!让我们红尘做伴 活得潇潇洒洒 策马奔腾共享人世繁华 对酒当歌唱出心中喜悦 轰轰烈烈把握青春年华 让我们红尘做伴 活得潇潇洒洒 策马奔腾共享人世繁华 对酒当歌唱出心中喜悦 轰轰烈烈把握青春年华 啊……啊……啊 两…...

    2024/5/1 4:32:01
  20. 扒开伪装医用面膜,翻六倍价格宰客,小姐姐注意了!

    原标题:扒开伪装医用面膜,翻六倍价格宰客,小姐姐注意了!扒开伪装医用面膜,翻六倍价格宰客!当行业里的某一品项火爆了,就会有很多商家蹭热度,装逼忽悠,最近火爆朋友圈的医用面膜,被沾上了污点,到底怎么回事呢? “比普通面膜安全、效果好!痘痘、痘印、敏感肌都能用…...

    2024/4/27 23:24:42
  21. 「发现」铁皮石斛仙草之神奇功效用于医用面膜

    原标题:「发现」铁皮石斛仙草之神奇功效用于医用面膜丽彦妆铁皮石斛医用面膜|石斛多糖无菌修护补水贴19大优势: 1、铁皮石斛:自唐宋以来,一直被列为皇室贡品,铁皮石斛生于海拔1600米的悬崖峭壁之上,繁殖力差,产量极低,所以古代仅供皇室、贵族享用 2、铁皮石斛自古民间…...

    2024/4/28 5:48:52
  22. 丽彦妆\医用面膜\冷敷贴轻奢医学护肤引导者

    原标题:丽彦妆\医用面膜\冷敷贴轻奢医学护肤引导者【公司简介】 广州华彬企业隶属香港华彬集团有限公司,专注美业21年,其旗下品牌: 「圣茵美」私密荷尔蒙抗衰,产后修复 「圣仪轩」私密荷尔蒙抗衰,产后修复 「花茵莳」私密荷尔蒙抗衰,产后修复 「丽彦妆」专注医学护…...

    2024/4/30 9:42:22
  23. 广州械字号面膜生产厂家OEM/ODM4项须知!

    原标题:广州械字号面膜生产厂家OEM/ODM4项须知!广州械字号面膜生产厂家OEM/ODM流程及注意事项解读: 械字号医用面膜,其实在我国并没有严格的定义,通常我们说的医美面膜指的应该是一种「医用敷料」,也就是说,医用面膜其实算作「医疗器械」的一种,又称「医用冷敷贴」。 …...

    2024/4/30 9:43:22
  24. 械字号医用眼膜缓解用眼过度到底有无作用?

    原标题:械字号医用眼膜缓解用眼过度到底有无作用?医用眼膜/械字号眼膜/医用冷敷眼贴 凝胶层为亲水高分子材料,含70%以上的水分。体表皮肤温度传导到本产品的凝胶层,热量被凝胶内水分子吸收,通过水分的蒸发带走大量的热量,可迅速地降低体表皮肤局部温度,减轻局部皮肤的灼…...

    2024/4/30 9:42:49
  25. 配置失败还原请勿关闭计算机,电脑开机屏幕上面显示,配置失败还原更改 请勿关闭计算机 开不了机 这个问题怎么办...

    解析如下&#xff1a;1、长按电脑电源键直至关机&#xff0c;然后再按一次电源健重启电脑&#xff0c;按F8健进入安全模式2、安全模式下进入Windows系统桌面后&#xff0c;按住“winR”打开运行窗口&#xff0c;输入“services.msc”打开服务设置3、在服务界面&#xff0c;选中…...

    2022/11/19 21:17:18
  26. 错误使用 reshape要执行 RESHAPE,请勿更改元素数目。

    %读入6幅图像&#xff08;每一幅图像的大小是564*564&#xff09; f1 imread(WashingtonDC_Band1_564.tif); subplot(3,2,1),imshow(f1); f2 imread(WashingtonDC_Band2_564.tif); subplot(3,2,2),imshow(f2); f3 imread(WashingtonDC_Band3_564.tif); subplot(3,2,3),imsho…...

    2022/11/19 21:17:16
  27. 配置 已完成 请勿关闭计算机,win7系统关机提示“配置Windows Update已完成30%请勿关闭计算机...

    win7系统关机提示“配置Windows Update已完成30%请勿关闭计算机”问题的解决方法在win7系统关机时如果有升级系统的或者其他需要会直接进入一个 等待界面&#xff0c;在等待界面中我们需要等待操作结束才能关机&#xff0c;虽然这比较麻烦&#xff0c;但是对系统进行配置和升级…...

    2022/11/19 21:17:15
  28. 台式电脑显示配置100%请勿关闭计算机,“准备配置windows 请勿关闭计算机”的解决方法...

    有不少用户在重装Win7系统或更新系统后会遇到“准备配置windows&#xff0c;请勿关闭计算机”的提示&#xff0c;要过很久才能进入系统&#xff0c;有的用户甚至几个小时也无法进入&#xff0c;下面就教大家这个问题的解决方法。第一种方法&#xff1a;我们首先在左下角的“开始…...

    2022/11/19 21:17:14
  29. win7 正在配置 请勿关闭计算机,怎么办Win7开机显示正在配置Windows Update请勿关机...

    置信有很多用户都跟小编一样遇到过这样的问题&#xff0c;电脑时发现开机屏幕显现“正在配置Windows Update&#xff0c;请勿关机”(如下图所示)&#xff0c;而且还需求等大约5分钟才干进入系统。这是怎样回事呢&#xff1f;一切都是正常操作的&#xff0c;为什么开时机呈现“正…...

    2022/11/19 21:17:13
  30. 准备配置windows 请勿关闭计算机 蓝屏,Win7开机总是出现提示“配置Windows请勿关机”...

    Win7系统开机启动时总是出现“配置Windows请勿关机”的提示&#xff0c;没过几秒后电脑自动重启&#xff0c;每次开机都这样无法进入系统&#xff0c;此时碰到这种现象的用户就可以使用以下5种方法解决问题。方法一&#xff1a;开机按下F8&#xff0c;在出现的Windows高级启动选…...

    2022/11/19 21:17:12
  31. 准备windows请勿关闭计算机要多久,windows10系统提示正在准备windows请勿关闭计算机怎么办...

    有不少windows10系统用户反映说碰到这样一个情况&#xff0c;就是电脑提示正在准备windows请勿关闭计算机&#xff0c;碰到这样的问题该怎么解决呢&#xff0c;现在小编就给大家分享一下windows10系统提示正在准备windows请勿关闭计算机的具体第一种方法&#xff1a;1、2、依次…...

    2022/11/19 21:17:11
  32. 配置 已完成 请勿关闭计算机,win7系统关机提示“配置Windows Update已完成30%请勿关闭计算机”的解决方法...

    今天和大家分享一下win7系统重装了Win7旗舰版系统后&#xff0c;每次关机的时候桌面上都会显示一个“配置Windows Update的界面&#xff0c;提示请勿关闭计算机”&#xff0c;每次停留好几分钟才能正常关机&#xff0c;导致什么情况引起的呢&#xff1f;出现配置Windows Update…...

    2022/11/19 21:17:10
  33. 电脑桌面一直是清理请关闭计算机,windows7一直卡在清理 请勿关闭计算机-win7清理请勿关机,win7配置更新35%不动...

    只能是等着&#xff0c;别无他法。说是卡着如果你看硬盘灯应该在读写。如果从 Win 10 无法正常回滚&#xff0c;只能是考虑备份数据后重装系统了。解决来方案一&#xff1a;管理员运行cmd&#xff1a;net stop WuAuServcd %windir%ren SoftwareDistribution SDoldnet start WuA…...

    2022/11/19 21:17:09
  34. 计算机配置更新不起,电脑提示“配置Windows Update请勿关闭计算机”怎么办?

    原标题&#xff1a;电脑提示“配置Windows Update请勿关闭计算机”怎么办&#xff1f;win7系统中在开机与关闭的时候总是显示“配置windows update请勿关闭计算机”相信有不少朋友都曾遇到过一次两次还能忍但经常遇到就叫人感到心烦了遇到这种问题怎么办呢&#xff1f;一般的方…...

    2022/11/19 21:17:08
  35. 计算机正在配置无法关机,关机提示 windows7 正在配置windows 请勿关闭计算机 ,然后等了一晚上也没有关掉。现在电脑无法正常关机...

    关机提示 windows7 正在配置windows 请勿关闭计算机 &#xff0c;然后等了一晚上也没有关掉。现在电脑无法正常关机以下文字资料是由(历史新知网www.lishixinzhi.com)小编为大家搜集整理后发布的内容&#xff0c;让我们赶快一起来看一下吧&#xff01;关机提示 windows7 正在配…...

    2022/11/19 21:17:05
  36. 钉钉提示请勿通过开发者调试模式_钉钉请勿通过开发者调试模式是真的吗好不好用...

    钉钉请勿通过开发者调试模式是真的吗好不好用 更新时间:2020-04-20 22:24:19 浏览次数:729次 区域: 南阳 > 卧龙 列举网提醒您:为保障您的权益,请不要提前支付任何费用! 虚拟位置外设器!!轨迹模拟&虚拟位置外设神器 专业用于:钉钉,外勤365,红圈通,企业微信和…...

    2022/11/19 21:17:05
  37. 配置失败还原请勿关闭计算机怎么办,win7系统出现“配置windows update失败 还原更改 请勿关闭计算机”,长时间没反应,无法进入系统的解决方案...

    前几天班里有位学生电脑(windows 7系统)出问题了&#xff0c;具体表现是开机时一直停留在“配置windows update失败 还原更改 请勿关闭计算机”这个界面&#xff0c;长时间没反应&#xff0c;无法进入系统。这个问题原来帮其他同学也解决过&#xff0c;网上搜了不少资料&#x…...

    2022/11/19 21:17:04
  38. 一个电脑无法关闭计算机你应该怎么办,电脑显示“清理请勿关闭计算机”怎么办?...

    本文为你提供了3个有效解决电脑显示“清理请勿关闭计算机”问题的方法&#xff0c;并在最后教给你1种保护系统安全的好方法&#xff0c;一起来看看&#xff01;电脑出现“清理请勿关闭计算机”在Windows 7(SP1)和Windows Server 2008 R2 SP1中&#xff0c;添加了1个新功能在“磁…...

    2022/11/19 21:17:03
  39. 请勿关闭计算机还原更改要多久,电脑显示:配置windows更新失败,正在还原更改,请勿关闭计算机怎么办...

    许多用户在长期不使用电脑的时候&#xff0c;开启电脑发现电脑显示&#xff1a;配置windows更新失败&#xff0c;正在还原更改&#xff0c;请勿关闭计算机。。.这要怎么办呢&#xff1f;下面小编就带着大家一起看看吧&#xff01;如果能够正常进入系统&#xff0c;建议您暂时移…...

    2022/11/19 21:17:02
  40. 还原更改请勿关闭计算机 要多久,配置windows update失败 还原更改 请勿关闭计算机,电脑开机后一直显示以...

    配置windows update失败 还原更改 请勿关闭计算机&#xff0c;电脑开机后一直显示以以下文字资料是由(历史新知网www.lishixinzhi.com)小编为大家搜集整理后发布的内容&#xff0c;让我们赶快一起来看一下吧&#xff01;配置windows update失败 还原更改 请勿关闭计算机&#x…...

    2022/11/19 21:17:01
  41. 电脑配置中请勿关闭计算机怎么办,准备配置windows请勿关闭计算机一直显示怎么办【图解】...

    不知道大家有没有遇到过这样的一个问题&#xff0c;就是我们的win7系统在关机的时候&#xff0c;总是喜欢显示“准备配置windows&#xff0c;请勿关机”这样的一个页面&#xff0c;没有什么大碍&#xff0c;但是如果一直等着的话就要两个小时甚至更久都关不了机&#xff0c;非常…...

    2022/11/19 21:17:00
  42. 正在准备配置请勿关闭计算机,正在准备配置windows请勿关闭计算机时间长了解决教程...

    当电脑出现正在准备配置windows请勿关闭计算机时&#xff0c;一般是您正对windows进行升级&#xff0c;但是这个要是长时间没有反应&#xff0c;我们不能再傻等下去了。可能是电脑出了别的问题了&#xff0c;来看看教程的说法。正在准备配置windows请勿关闭计算机时间长了方法一…...

    2022/11/19 21:16:59
  43. 配置失败还原请勿关闭计算机,配置Windows Update失败,还原更改请勿关闭计算机...

    我们使用电脑的过程中有时会遇到这种情况&#xff0c;当我们打开电脑之后&#xff0c;发现一直停留在一个界面&#xff1a;“配置Windows Update失败&#xff0c;还原更改请勿关闭计算机”&#xff0c;等了许久还是无法进入系统。如果我们遇到此类问题应该如何解决呢&#xff0…...

    2022/11/19 21:16:58
  44. 如何在iPhone上关闭“请勿打扰”

    Apple’s “Do Not Disturb While Driving” is a potentially lifesaving iPhone feature, but it doesn’t always turn on automatically at the appropriate time. For example, you might be a passenger in a moving car, but your iPhone may think you’re the one dri…...

    2022/11/19 21:16:57