```javascript
<template><div id="map-container"><div v-if="isPatrol" class="menu br"><button @click="draw">绘制</button><button @click="edit">编辑</button><button @click="polyEditor.close()">结束</button></div><div class="menu tr"><button v-if="isPatrol" @click="drawRule">{{ ruleState ? "关闭测距" : "开启测距" }}</button><button @click="changeTheme('darkblue')">深色主题</button><button @click="changeTheme('normal')">浅色主题</button><button @click="toggleFullScreen">{{ startInitPatrolSet ? "关闭全屏并结束" : "全屏" }}</button></div><div v-if="isPatrol" class="map-control"><iv-if="!isPlay"class="el-icon-video-play"style="font-size: 24px; vertical-align: middle"@click="isPlay = true;navgControl('start');"/><iv-elseclass="el-icon-video-pause"style="font-size: 24px; vertical-align: middle"@click="isPlay = false;navgControl('pause');"/><!-- <span class="passed-time">{{ passedTime }}</span> --><!-- <el-sliderclass="map-slider"v-model="sliderVal":show-tooltip="false":step="0.0001"></el-slider> --><divclass="map-times"@mouseenter="isTimesChoose = true"@mouseleave="isTimesChoose = false"><div class="times-show">倍速 {{ times }}</div><div class="choose-box"><ul v-show="isTimesChoose"><liv-for="item in speedList":key="item":class="{ active: times === item }"@click="changeSpeed(item)">倍速 {{ item }}</li></ul></div></div><span class="passed-time">{{ totalTime }}</span></div><div style="display: none"><HeatSource ref="heatSource" :data="dialogData" /><Compensator ref="compensator" :data="dialogData" /><Cleaner ref="cleaner" :data="dialogData" /><Valve ref="valve" :data="dialogData" /><PipeLine ref="pipeLine" :data="dialogData" /><Exchange ref="exchange" :data="dialogData" /><Monitor ref="monitor" :data="dialogData" /><Well ref="well" :data="dialogData" /></div></div>
</template><script>
/*** Import Amap-Vue based on Gaode-map on demand* https://jimliu.net/amap-vue/*/
import AMapLoader from "@amap/amap-jsapi-loader";
import { mapGetters } from "vuex";
import HeatSource from "./MapDialog/HeatSource";
import Compensator from "./MapDialog/Compensator";
import Cleaner from "./MapDialog/Cleaner";
import Valve from "./MapDialog/Valve";
import PipeLine from "./MapDialog/PipeLine";
import Exchange from "./MapDialog/Exchange";
import Monitor from "./MapDialog/Monitor";
import Well from "./MapDialog/Well";
import { cloneDeep } from "lodash";
import http from "@/apis/geoInfo";
import { server_config } from "/public/config";
export default {name: "AMap",props: ["listener"],components: {HeatSource,Compensator,Cleaner,Valve,PipeLine,Exchange,Monitor,Well,},data() {return {layer: {},dialogData: {notes: "站位",},timesChanged: false,map: null, // 地图poly: null, // 多边形polyEditor: null, // 多边形编辑器ruleState: false, // 测距状态ruler: null, //测距工具heatSource: [], // 热源多边形数组exchange: [], //换热站heatArea: [], //供热区域monitor: [], // 计量站wellCap: [], //井盖steamValve: [], //排气阀bridge: [], //勾手cleaner: [], // 除污器compensator: [], //补偿器valve: [], //阀门pipeLine: [], // 管网fiber: [], // 光纤isOnSlider: false, //是否为手动鼠标拉动进度条playIcon: "resume", //开始按钮是重新开始还是继续isTimesChoose: false, //选择速度弹窗的open/closepassedTime: "00:00:00", //已经走了的时间totalTime: "00:00:00", //一共走了的时间isPlay: false, //是否为播放sliderVal: 0, //进度条滑动速度speed: 100, //初始速度,km/htimes: 1, //几倍速度播放navgtr: null, //巡航器speedList: [8, 4, 2, 1],pathList: [],trackList: [],lat: "",lng: "",moveConfig: [],moveIdx: 0,markers: [],passedPolylines: [],polylines: [],startInitPatrolSet: false,closeFullScreen: false,isFirstLoad: true,imageLayer: null,config:process.env.NODE_ENV === "production"? server_config.production: process.env.NODE_ENV === "debug"? server_config.debug: server_config.development,configSubPipeline: {},};},computed: {...mapGetters({token: "getToken",}),mode() {return this.$store.state.mode;},isPatrol() {return this.$route.path === "/Map/Patrol";},},beforeCreate() {// 加载地图AMapLoader.load({key: "1ccc7c0c495f09e0a1f663b5fb21bb7c", // 申请好的Web端开发者Key,首次调用 load 时必填version: "1.4.15", // 指定要加载的 JSAPI 的版本,缺省时默认为 1.4.15plugins: ["AMap.MouseTool","AMap.ElasticMarker","AMap.Scale","AMap.PolyEditor","AMap.RangingTool","AMap.DistrictSearch","AMap.Polygon","AMap.Polyline","AMap.Marker","AMap.MoveAnimation",], // 需要使用的的插件列表,如比例尺'AMap.Scale'等AMapUI: {// 是否加载 AMapUI,缺省不加载version: "1.1", // AMapUI 缺省 1.1},}).then((AMap) => {this.initMap(AMap);window.AMap = AMap;this.initWeather(AMap);}).catch((e) => {console.error(e);});document.addEventListener("fullscreenchange", () => {if (this.startInitPatrolSet) {if (this.closeFullScreen) {this.toggleFullScreen();this.closeFullScreen = false;} else {this.closeFullScreen = true;}}});},mounted() {this.addElement();this.updateElement();this.deleteElement();this.initPatrolSet();this.$EventBus.$on("clear-map", () => {this.clearMap();});this.$EventBus.$on("updateSubPipeline", ({ type, checked, systemId }) => {this.configSubPipeline[type] = { checked, systemId };console.log(type, checked, systemId);this.addSubPipeline();});},methods: {getBounds() {const bounds = this.map.getBounds();let width = Math.abs(bounds.northeast.lng - bounds.southwest.lng);let height = Math.abs(bounds.northeast.lat - bounds.southwest.lat);const longitude = bounds.southwest.lng;const latitude = bounds.northeast.lat;if (this.isFirstLoad) {this.isFirstLoad = false;http.getGeoList({width,height,longitude,latitude,}).then((res) => {this.$store.commit("setLayerData", res);this.$EventBus.$emit("getLayerEnd");});}//添加图层this.addSubPipeline();},addSubPipeline(systemId) {//删除图层if (this.layer.imageLayer) {this.map.remove(this.layer.imageLayer);this.layer.imageLayer.splice(0);} else {this.layer.imageLayer = [];}Object.keys(this.configSubPipeline).forEach((key) => {const { checked, systemId } = this.configSubPipeline[key];if (checked) {const mapSize = this.map.getSize();const width = mapSize.width;const height = mapSize.height;const northEastLng = this.map.getBounds().northeast.lng;const northEastLat = this.map.getBounds().northeast.lat;const southWestLng = this.map.getBounds().southwest.lng;const southWestLat = this.map.getBounds().southwest.lat;const imageLayer = new AMap.ImageLayer({bounds: this.map.getBounds(),url:this.config.baseURL +"geoInfo/img?zoom=" +this.map.getZoom() +"&width=" +width +"&height=" +height +"&northEastLng=" +northEastLng +"&northEastLat=" +northEastLat +"&southWestLng=" +southWestLng +"&southWestLat=" +southWestLat +"&systemId=" +systemId, // 图片 UrlzIndex: 2,zooms: [3, 18], // 设置可见级别,[最小级别,最大级别]});this.layer.imageLayer.push(imageLayer);this.map.add(this.layer.imageLayer);}});},// 初始化地图initMap(AMap) {this.map = new AMap.Map("map-container", {zoom: 14,resizeEnable: true,mapStyle: "amap://styles/darkblue",});this.map.on("click", function(e) {console.log(e.lnglat.getLng() + "," + e.lnglat.getLat());});this.map.on("moveend", this.getBounds);//  this.map.on("zoomend", this.getBounds);// this.map.on("mousewheel", () => {//   console.log(this.map.getResolution());// });// this.map.setCity('天津市')this.districtModal(AMap); // 若不需要此功能,注释掉代码就好},// 显示目标城市目标行政区域,外部遮罩。可根据业务需求修改城市adcode。若不需要此功能,可不调用此方法。districtModal(AMap) {let _this = this;new AMap.DistrictSearch({extensions: "all", // 是否返回行政区边界坐标点subdistrict: 0,}).search("120116", (status, result) => {//"120116"为天津市滨海新区adcode,此参数也可以写‘滨海新区’const { lat, lng } = result.districtList[0].center;this.lat = lat;this.lng = lng;let outer = [new AMap.LngLat(-360, 90, true),new AMap.LngLat(-360, -90, true),new AMap.LngLat(360, -90, true),new AMap.LngLat(360, 90, true),];let holes = result.districtList[0].boundaries; // 行政区域边界let arr = [];holes.forEach((item) => {arr.push(item.length);});let indexMax = 0;arr.forEach((item, index) => {if (item === Math.max(...arr)) {indexMax = index;}});let pathArray = [outer];pathArray.push.apply(pathArray, [holes[indexMax]]);// innerPolygon 为行政区域边界多边形let innerPolygon = new AMap.Polygon({path: pathArray,// 线条颜色,使用16进制颜色代码赋值。默认值为#006600strokeColor: "#1892FC",strokeWeight: 1,// 多边形填充颜色,使用16进制颜色代码赋值,如:#FFAA00fillColor: "#0f1c2d",// 多边形填充透明度,取值范围[0,1],0表示完全透明,1表示不透明。默认为0.9fillOpacity: 0.8,});// outerPolygon 只为setFitView, 未在地图展示let outerPolygon = new AMap.Polygon({path: holes[indexMax],});innerPolygon.setPath(pathArray);_this.map.add(innerPolygon);_this.map.setFitView(outerPolygon);// _this.map.setZoom(_this.getZoom() + 0.5) // 设置放大倍数});},// 添加标记addMarker() {let marker = new AMap.Marker({icon:"//a.amap.com/jsapi_demos/static/demo-center/icons/poi-marker-default.png",position: [104.065695, 30.657522],offset: new window.AMap.Pixel(-13, -30),});marker.setMap(this.map);},// 绘制多边形draw() {let vm = this;let mouseTool = new AMap.MouseTool(this.map);mouseTool.polygon({strokeColor: "#FF33FF",strokeOpacity: 1,strokeWeight: 6,strokeOpacity: 0.2,fillColor: "#1791fc",fillOpacity: 0.4,// 线样式还支持 'dashed'strokeStyle: "solid",// strokeStyle是dashed时有效// strokeDasharray: [30,10],});mouseTool.on("draw", function(event) {// event.obj 为绘制出来的覆盖物对象vm.poly = event.obj;console.log(event);mouseTool.close();});},// 编辑多边形edit() {var polyEditor = new AMap.PolyEditor(this.map, this.poly);this.polyEditor = polyEditor;polyEditor.on("addnode", function(event) {console.log("触发事件:addnode");});polyEditor.on("adjust", function(event) {console.log("触发事件:adjust");});polyEditor.on("removenode", function(event) {console.log("触发事件:removenode");});polyEditor.on("end", function(event) {console.log("触发事件: end");// event.target 即为编辑后的多边形对象console.log(event.target.getPath());});polyEditor.open();},// 换主题changeTheme(name) {const styleName = `amap://styles/${name}`;this.map.setMapStyle(styleName);},// 切换全屏toggleFullScreen() {if (this.startInitPatrolSet) {Object.keys(this.layer).forEach((key) => {if (["userOnline", "markers", "passedPolylines", "polyline"].includes(key)) {this.layer[key] && this.map.remove(this.layer[key]);}});this.startInitPatrolSet = false;this.isPlay = false;if (document.exitFullscreen) {this.map.setZoom(this.map.getZoom() - 0.5);this.closeFullScreen = false;document.exitFullscreen();}} else {this.startInitPatrolSet = true;if (!document.fullscreenElement) {const map = document.querySelector("#map-container");map.requestFullscreen();this.map.setZoom(this.map.getZoom() + 0.5);}}},// 测距drawRule() {if (!this.ruleState) {const ruler = new AMap.RangingTool(this.map, {startMarkerOptions: {//可缺省icon: new AMap.Icon({size: new AMap.Size(19, 31), //图标大小imageSize: new AMap.Size(19, 31),image: "https://webapi.amap.com/theme/v1.3/markers/b/start.png",}),},endMarkerOptions: {//可缺省icon: new AMap.Icon({size: new AMap.Size(19, 31), //图标大小imageSize: new AMap.Size(19, 31),image: "https://webapi.amap.com/theme/v1.3/markers/b/end.png",}),offset: new AMap.Pixel(-9, -31),},midMarkerOptions: {//可缺省icon: new AMap.Icon({size: new AMap.Size(19, 31), //图标大小imageSize: new AMap.Size(19, 31),image: "https://webapi.amap.com/theme/v1.3/markers/b/mid.png",}),offset: new AMap.Pixel(-9, -31),},lineOptions: {//可缺省strokeStyle: "solid",strokeColor: "#FF33FF",strokeOpacity: 1,strokeWeight: 2,},//同 RangingTool 的 自定义 设置,缺省为默认样式});this.ruler = ruler;this.ruleState = true;ruler.turnOn();} else {this.ruleState = false;this.ruler.turnOff();}},updateElement() {this.$EventBus.$on("updateElement",({ mapType, dataName, updateConfigs }) => {updateConfigs.forEach(({ id, config }) => {if (mapType === "Polyline") {const data = this.layer[dataName].find((el) => el.id === id);data.setOptions(config);}});});},// 在地图上添加addElement() {this.$EventBus.$on("addElement", (obj) => {const cloneDeepObj = cloneDeep(obj);const { mapType, dataName, config = {} } = obj;if (obj.mapType) {for (let i = 0; i < obj.elementLocaton.length; i++) {let data = null;if (mapType === "Polygon") {data = new AMap.Polygon({path: obj.elementLocaton[i],// 线条颜色,使用16进制颜色代码赋值。默认值为#006600strokeColor: obj.elementPathColor,// 轮廓线宽度strokeWeight: 1,// 多边形填充颜色,使用16进制颜色代码赋值,如:#FFAA00,根据设备或区域自行设置fillColor: obj.elementPathColor,// 多边形填充透明度,取值范围[0,1],0表示完全透明,1表示不透明。默认为0.9fillOpacity: 0.5,// 轮廓线透明度,取值范围 [0,1] ,0表示完全透明,1表示不透明。默认为0.9strokeOpacity: 0.5,...config,});} else if (mapType === "Polyline") {data = new window.AMap.Polyline({path: obj.elementLocaton[i],// 线条颜色,使用16进制颜色代码赋值。默认值为#006600strokeColor: obj.elementPathColor,// 轮廓线宽度strokeWeight: 1,// 多边形填充颜色,使用16进制颜色代码赋值,如:#FFAA00,根据设备或区域自行设置fillColor: obj.elementPathColor,// 多边形填充透明度,取值范围[0,1],0表示完全透明,1表示不透明。默认为0.9fillOpacity: 0.5,// 轮廓线透明度,取值范围 [0,1] ,0表示完全透明,1表示不透明。默认为0.9strokeOpacity: 0.5,...config,});data.id = obj.id;data.on("click", () => {obj.onClick && obj.onClick();});} else if (mapType === "Marker") {// console.log('map obj.elementLocaton', obj.elementLocaton[i])data = new AMap.Marker({// 点标记位置position: obj.elementLocaton[i],// 点标记图片icon: new AMap.Icon({// 图标尺寸imageOffset: new AMap.Pixel(6, 16),// 图标的取图地址,可用本地图片,可用网络图片image: obj.image,// 图标所用图片大小imageSize: new AMap.Size(20, 20),}),...config,});} else if (mapType === "Text") {data = new AMap.Text({// 点标记位置offset: new AMap.Pixel(0, 0),position:typeof cloneDeepObj.elementLocaton[0][0] === "number"? cloneDeepObj.elementLocaton[0]: cloneDeepObj.elementLocaton[0][0],zIndex: 16,...config,});}if (this.$refs[obj.refName]) {AMap.event.addListener(data, "click", async () => {console.log("--> data", data);if (obj.onClick) {this.infoWindow = new AMap.InfoWindow({content: this.$refs[obj.refName].$el,isCustome: true,offset: new AMap.Pixel(-4, -36),});const res = await obj.onClick(obj.id);this.dialogData = res;this.infoWindow.open(this.map,mapType === "Marker"? data.getPosition(): obj.elementLocaton[0][0]);}});}if (!this.layer[dataName]) {this.layer[dataName] = [];}if (data) {this.layer[dataName].push(data);this.layer[dataName] && this.map.add(this.layer[dataName]);}// 添加点}}});},// 从地图上删除deleteElement() {this.$EventBus.$on("deleteElement", (dataName) => {this.infoWindow && this.infoWindow.close(this.map);if (this.layer[dataName] && this.layer[dataName].length) {this.map.remove(this.layer[dataName]);this.layer[dataName].splice(0);}});},initPatrolSet() {this.$EventBus.$on("initPatrolSet", async ({ paths, users }) => {this.toggleFullScreen();// this.allFullScreenthis.initPathCallback = () => {return new Promise((resolve, reject) => {this.moveIdx = 0;if (!this.layer.markers) {this.layer.markers = [];}if (!this.layer.passedPolylines) {this.layer.passedPolylines = [];}if (!this.layer.polyline) {this.layer.polyline = [];}this.map.remove(this.layer.markers);this.map.remove(this.layer.passedPolylines);this.map.remove(this.layer.polyline);this.layer.markers.splice(0);this.layer.passedPolylines.splice(0);this.layer.polyline.splice(0);this.isPlay = false;this.resumeMove();this.$nextTick(() => {this.initMapPath(paths, users);resolve();});});};await this.initPathCallback();});},initMapPath(paths, users) {paths.forEach(({ id, path, timestamps }) => {const initPath = cloneDeep(path);const marker = new AMap.Marker({map: this.map,position: path[0],offset: new AMap.Pixel(-10, -13),icon: new AMap.Icon({size: new AMap.Size(25, 25), //图标大小imageSize: new AMap.Size(25, 25),image: require("@/assets/img/map-icons/user-online.png"),}),autoRotation: false,label: {content: users.find((item) => item.id === id).name,direction: "top",},});// 绘制轨迹const polyline = new AMap.Polyline({map: this.map,path,showDir: true,strokeColor: "#28F", //线颜色// strokeOpacity: 1,     //线透明度strokeWeight: 10, //线宽// strokeStyle: "solid"  //线样式});marker.on("moveend", (e) => {});marker.on("moving", (e) => {// 脏数据太多了passedPolyline.setPath(e.passedPath);});const passedPolyline = new AMap.Polyline({map: this.map,// path: lineArr,strokeColor: "#AF5", //线颜色// strokeOpacity: 1,     //线透明度strokeWeight: 6, //线宽// strokeStyle: "solid"  //线样式});this.moveConfig.push({// 开始动画start: () => {marker.moveAlong(path, 100 * this.times);},// 继续动画resume: () => {marker.resumeMove();},// 暂停动画pause: () => {marker.pauseMove();},});this.layer.polyline.push(polyline);this.layer.passedPolylines.push(passedPolyline);this.layer.markers.push(marker);if (!this.layer.markers) {}});},startMove() {this.moveConfig.forEach(({ start }) => {start();});},resumeMove() {this.moveConfig.forEach(({ resume }) => {resume();});},stopMove() {this.moveConfig.forEach(({ pause }) => {pause();});},// 开始、暂停、继续等操作navgControl(action) {if (action === "start") {if (this.timesChanged) {this.startMove();this.startMove.end = true;this.timesChanged = false;}if (!this.startMove.end) {this.startMove();this.startMove.end = true;} else {this.timesChanged = false;this.resumeMove();}} else {this.stopMove();}},openSlider() {this.isOnSlider = true;},closeSlider() {this.isOnSlider = false;},// 修改倍速changeSpeed(times) {this.isTimesChoose = false;this.times = times;this.timesChanged = true;this.startMove.end = false;this.isPlay = false;this.stopMove();},sliderChange(val) {let newVal = typeof newVal === "number" ? val : this.sliderVal;let num = parseInt((newVal / 1000) * this.pathList.length);let decimal =String((newVal / 100) * this.pathList.length).split(".")[1] || 0;this.navgtr.moveToPoint(num, Number("0." + decimal));this.pathSimplifierIns.renderLater();},clearMap() {Object.keys(this.layer).forEach((key) => {this.map.remove(this.layer[key]);Array.isArray(this.layer[key]) && this.layer[key].splice(0);});this.infoWindow && this.infoWindow.close(this.map);},/*** use GaoDe api to get current city mail code* @param AMap  the GaoDe api AMap class* @returns {Promise<result.adcode>} the mail code of the current city*/getCity(AMap) {return new Promise(function(resolve, reject) {AMap.plugin("AMap.CitySearch", function() {const citySearch = new AMap.CitySearch();citySearch.getLocalCity(function(status, result) {if (status === "complete" && result.info === "OK") {// 查询成功,result即为当前所在城市信息resolve(result.adcode);} else {reject(status);}});});});},/*** get the current weather information* @param AMap the GaoDe api AMap class* @param mailCode the mail code location to search the weather* @returns {Promise<data>} the weather data of the given mail code location*/getWeather(AMap, mailCode) {return new Promise(function(resolve, reject) {//加载天气查询插件AMap.plugin("AMap.Weather", function() {//创建天气查询实例const weather = new AMap.Weather();//执行实时天气信息查询weather.getForecast(mailCode, function(err, data) {if (!err) {resolve(data);} else {console.log(err);reject(err);}});});});},async initWeather(AMap) {//get city main code for get weatherconst cityMailCode = await this.getCity(AMap);//get weather data base on the mail codeconst weatherData = await this.getWeather(AMap, cityMailCode);this.$store.commit("setWeatherData", weatherData);},},watch: {sliderVal(newVal) {if (!this.isOnSlider) {return false;}this.sliderChange(newVal);},mode() {this.clearMap();},$route() {this.clearMap();this.configSubPipeline = {};},},beforeDestroy() {this.$EventBus.$off("addElement");this.$EventBus.$off("updateElement");this.$EventBus.$off("deleteElement");this.$EventBus.$off("initPatrolSet");this.$EventBus.$off("clear-map");this.map && this.map.destroy();this.navgtr = null;},
};
</script><style scoped>
#map-container {position: relative;color: #2c3e50;width: 100%;height: 100%;
}
.menu {position: absolute;z-index: 5;
}
.menu button {-webkit-appearance: none;outline: none;border: none;font-size: 12px;cursor: pointer;line-height: 1;padding: 6px 10px;/* border-radius: 3px; */margin-left: 6px;-webkit-appearance: none;background: linear-gradient(0deg, #07368f, #002a78, #07368f);border: 1px solid rgba(45, 122, 238, 0.45);color: #1ed2ff;box-shadow: 0 0 2px 1px #1d55c5 inset;
}
.br {right: 0;bottom: 0;
}
.tr {right: 0;top: 0;
}
.el-slider__button-wrapper {transition: all 0.2s linear;top: -5px;
}
.el-slider__runway {background-color: rgba(255, 255, 255, 0.5);
}
.color-tag li {display: inline-block;border-radius: 4px;width: 100px;height: 36px;line-height: 36px;text-align: center;background-color: #fff;cursor: pointer;margin-right: 2px;
}
.color-tag li.color-org {background-color: #ff8533;color: #fff;
}
.color-tag li.color-green {background-color: #46c51a;color: #fff;
}
.map-control {position: absolute;bottom: 0;width: 65%;left: 0;z-index: 200;height: 50px;line-height: 50px;border-radius: 2px;color: #1ed2ff;background-image: linear-gradient(to top, rgba(1, 63, 116, 0.7), transparent);padding: 0 10px;
}
.map-slider {display: inline-block;width: 45%;margin-left: 15px;position: relative;top: 14px;
}
.passed-time {position: relative;top: 2px;/*display: inline-block;*/margin-left: 15px;font-size: 12px;
}
.map-times {display: inline-block;margin-left: 15px;
}
.map-times .times-show {padding: 0 4px;line-height: 18px;font-size: 12px;border: 1px solid #1ed2ff;border-radius: 4px;cursor: pointer;
}
.map-times .choose-box {position: absolute;top: -60px;height: 162px;transition: all 0.5s linear;
}
.map-times ul {background: rgba(0, 0, 0, 0.7);padding: 4px 0;width: 70px;text-align: center;border-radius: 3px;
}
.map-times li {height: 18px;line-height: 18px;cursor: pointer;font-size: 12px;
}
.map-times li.active {color: #1c99fd;
}
.map-times li:hover {font-size: 14px;
}
/*>>> .amap-info-content {*/
/*  padding: 0 18px 0 10px;*/
/*}*/
>>> .el-slider__runway {background-color: #909090;
}
>>> .el-slider__button {width: 10px;height: 10px;border: 2px solid #07368f;background-color: #1c99fd;
}
</style>

查看全文
如若内容造成侵权/违法违规/事实不符,请联系编程学习网邮箱:809451989@qq.com进行投诉反馈,一经查实,立即删除!

相关文章

  1. Java、对三个城市排序

    编写一个程序&#xff0c;提示用户输入三个城市名称&#xff0c;然后以升序进行显示。 package pack2;import java.util.Scanner; import java.util.TreeSet;public class ThreeCity {public static void main(String[] args) {try(Scanner input new Scanner(System.in);) {T…...

    2024/4/14 12:45:13
  2. Java项目-SSM实现完整的BBS论坛

    项目编号&#xff1a;BS-PT-002 这个论坛功能开发的比较完整&#xff0c;论坛的版块管理&#xff0c;贴子管理&#xff0c;发贴&#xff0c;回复&#xff0c;置顶&#xff0c;个人积分等功能都具备。系统采用SSM框架技术开发&#xff0c;数据库采用MYSQL&#xff0c;开发工具…...

    2024/4/20 1:05:16
  3. powerDesigner不能用该如何进行UML建模呢?国产CHINER建模工具解你燃眉之急

    由于众所周知的原因&#xff0c;某些软件我们可能不能用。这时候就需要使用国产替代方案了。本文将主要介绍powerDesigner的国产替代软件CHINER。CHINER是一款支持多种数据库&#xff0c;独立于具体数据库之外的数据库关系模型设计工具&#xff0c;相比powerDesigner更加轻量。…...

    2024/4/14 12:44:58
  4. 【蓝桥杯刷题冲刺辅导】掌握递归·DFS解题套路,这一文足以?

    大家好&#xff0c;我是安然无虞。 目录 一、刷题前和铁汁们唠一唠 1.刷题前须知 2.刷题时套路 <1>套路 <2>背下列常用数 ​ <3>投机取巧&#xff1a;根据数据范围确定算法 ​ <4>珍惜每分每秒 直接复制粘贴 <5>输入输出函数的使用 …...

    2024/4/19 5:26:38
  5. 微服务架构 | 12.1 使用 Apache Dubbo 实现远程通信

    12.1 使用 Apache Dubbo 实现远程通信前言1. Dubbo 基础知识1.1 Dubbo 是什么1.2 Dubbo 的架构图1.3 Spring Cloud 与 Dubbo 的区别1.4 Dubbo 的特点1.5 Dubbo 的 6 种容错模式1.6 Dubbo 的 4 种负载均衡策略1.7 主机绑定规则2. 构建 Dubbo 服务提供方2.1 构建服务接口模块2.2 …...

    2024/4/14 12:47:05
  6. springboot 如何使用优秀的jar包,在maven仓库没有jar包的前提下

    https://www.cnblogs.com/netcorner/p/10962981.html...

    2024/4/13 23:05:37
  7. 五子棋(c++)

    //wuziqi.h #ifndef _WUZIQI_H_ #define _WUZIQI_H_ #include <iostream> using namespace std;class chessboard; class chessboard { public:int judge();void build();//建立棋盘void changeblack(int goalx, int goaly, int& goal);//改变棋盘数组元素即更新棋子…...

    2024/4/14 12:46:14
  8. 软件测试速成入门篇———后续持续更新进阶篇

    学习目录软件测试是做什么的想要进入软件测试行业从何开始学起测试用例设计方法理论知识必须要知道哪些关于简历小编是干啥的软件测试是做什么的 软件分类 web端&#xff1a;在浏览器运行的程序&#xff08;举例&#xff1a;腾讯视频网页版&#xff0c;网易云音乐网页版等等……...

    2024/4/14 12:47:10
  9. golang 获取文件修改时间

    实例如下&#xff1a; package mainimport ("log""os""time" )func main() {log.Println(GetFileModTime("./xiaochuan.txt")) } //获取文件修改时间 返回unix时间戳 func GetFileModTime(path string) int64 {f, err : os.Open(path…...

    2024/4/12 8:39:45
  10. PowerBI 中使用DMV获取数据

    20 很多人你不提&#xff0c;也许就会忘记 最近手上有件工作着实挺无聊的&#xff0c;在Excel统计用户及相关报表权限信息,因为历史遗留原因&#xff0c;在好多地方都有统计&#xff0c;然后统计的还都不全&#xff0c;这维护起来就挺难受&#xff0c;虽然不难&#xff0c;但…...

    2024/4/7 5:16:40
  11. pytorch构建神经网络基本流程(easy contact)

    导入相关的包 import torch import torch.nn as nn import torch.nn.functional as F构建自己的网络 class Mynet(nn.Module):def __init__(self):super(Mynet,self).__init__()self.conv1nn.Conv2d(1,6,3) #卷积层self.fc1nn.Conv2d(1350,10) #线性层def forward(self,x):…...

    2024/4/11 1:04:39
  12. enumerate函数

    对一个可迭代的列表 enumerate能够遍历列表的索引和其所对应的元素 例如&#xff1a; list[我,要,吃,草,莓] for index , word in enumerate(list):print(index, word) 0 我 1 要 2 吃 3 草 4 莓 对于神经网络训练次数的记录十分便利...

    2024/4/20 5:43:20
  13. 软件测试62 道经典面试题(附网盘链接)

    01、您所熟悉的测试用例设计方法都有哪些&#xff1f;请分别以具体的例子来说明这些方法在测试用例设计工作中的应用。 02、您认为做好测试用例设计工作的关键是什么&#xff1f; 03、您在从事性能测试工作时&#xff0c;是否使用过一些测试工具&#xff1f;如果有&#xff0…...

    2024/4/5 4:55:17
  14. 1096 大美数 (15 分)

    若正整数 N 可以整除它的 4 个不同正因数之和&#xff0c;则称这样的正整数为“大美数”。本题就要求你判断任一给定的正整数是否是“大美数”。 输入格式&#xff1a; 输入在第一行中给出正整数 K&#xff08;≤10&#xff09;&#xff0c;随后一行给出 K 个待检测的、不超过…...

    2024/4/18 5:13:19
  15. 基本数据类型

    今天也要好好学java&#xff01;&#xff01; 1、整形 package com.study.wyh;public class TextInt {public static void main(String[] args) {int a 100;//十进制int b 015;//八进制int c 0xff;//十六进制int d 0b10010010;//二进制System.out.println(a);System.out.pr…...

    2024/4/20 0:17:30
  16. 2022-2028年中国特种工程塑料行业市场深度分析及前瞻研究报告

    【报告类型】产业研究 【出版时间】即时更新&#xff08;交付时间约3个工作日&#xff09; 【发布机构】智研瞻产业研究院 【报告格式】PDF版 本报告介绍了特种工程塑料行业相关概述、中国特种工程塑料行业运行环境、分析了中国特种工程塑料行业的现状、中国特种工程塑料行…...

    2024/4/14 12:45:44
  17. Docker13_3:Docker自定义网络

    Docker13_3&#xff1a;Docker自定义网络查看所有的docker网络docker网络模式介绍启动容器默认追加--net bridge命令创建自定义网络查看自定义网络通过自定义网络启动两个容器测试自定义网络的好处查看所有的docker网络 docker network lsdocker网络网络模式初始只有3种&#…...

    2024/4/13 19:54:25
  18. LeetCode 剑指 Offer II 前缀树(下) 专题总结

    &#x1f4da; 博客主页&#xff1a;⭐️这是一只小逸白的博客鸭~⭐️&#x1f449; 欢迎 关注❤️点赞&#x1f44d;收藏⭐️评论&#x1f4dd;&#x1f61c; 小逸白正在备战实习&#xff0c;经常更新面试题和LeetCode题解&#xff0c;欢迎志同道合的朋友互相交流~ &#x1f4…...

    2024/4/15 11:04:43
  19. ctfshow 网络迷踪-山外有山

    10 山外有山 这题很简单直接百度识图 珠穆朗玛峰 ctfshow{珠穆朗玛峰}...

    2024/4/14 12:46:09
  20. HarmonyOS 十分钟快速入门教程|和车神哥一起学

    &#x1f496;作者简介&#xff1a;大家好&#xff0c;我是车神哥&#xff0c;府学路18号的车神&#x1f947; ⚡About—>车神&#xff1a;从寝室到实验室最快3分钟&#xff0c;最慢3分半&#xff08;那半分钟其实是等红绿灯&#xff09; &#x1f4dd;个人主页&#xff1a;…...

    2024/4/20 15:47:38

最新文章

  1. 杰理695的UI模式LED灯控制

    UI模式LED灯修改每个模式对应的LED灯闪烁修改在ui_normal_status_deal(u8 *status, u8 *power_status, u8 ui_mg_para)...

    2024/4/24 12:54:56
  2. 梯度消失和梯度爆炸的一些处理方法

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

    2024/3/20 10:50:27
  3. 前端开发攻略---Vue通过自定义指令实现元素平滑上升的动画效果(可以自定义动画时间、动画效果、动画速度等等)。

    1、演示 2、介绍 这个指令不是原生自带的&#xff0c;需要手动去书写&#xff0c;但是这辈子只需要编写这一次就好了&#xff0c;后边可以反复利用。 3、关键API IntersectionObserver IntersectionObserver 是一个用于监测元素是否进入或离开视口&#xff08;viewport&#x…...

    2024/4/24 11:39:38
  4. 【Redis】安装Redis后报ERR Client sent AUTH, but no password is set

    一、问题描述 安装Redis后使用auth验证是否安装成功&#xff08;或者其它应用访问redis时报错&#xff09;&#xff0c;报ERR Client sent AUTH, but no password is set 127.0.0.1:6379> auth 123456 (error) ERR Client sent AUTH, but no password is set二、问题解决 …...

    2024/4/21 15:48:41
  5. 图解深度神经网络的架构

    图解深度神经网络的架构 基线模型 AlexNet 是突破性的架构&#xff0c;它使卷积网络&#xff08;CNN&#xff09;成为处理大型图像分类任务的主要机器学习算法。介绍 AlexNet 的论文呈现了一张很好的图&#xff0c;但是好像还缺点什么…… AlexNet 架构图示&#xff08;图源&…...

    2024/4/18 22:01:39
  6. 【外汇早评】美通胀数据走低,美元调整

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

    2024/4/23 20:58:27
  7. 【原油贵金属周评】原油多头拥挤,价格调整

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

    2024/4/23 13:30:22
  8. 【外汇周评】靓丽非农不及疲软通胀影响

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

    2024/4/23 13:28:06
  9. 【原油贵金属早评】库存继续增加,油价收跌

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

    2024/4/20 23:26:47
  10. 【外汇早评】日本央行会议纪要不改日元强势

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

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

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

    2024/4/19 11:57:53
  12. 【外汇早评】美欲与伊朗重谈协议

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

    2024/4/23 13:29:53
  13. 【原油贵金属早评】波动率飙升,市场情绪动荡

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

    2024/4/23 13:27:22
  14. 【原油贵金属周评】伊朗局势升温,黄金多头跃跃欲试

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

    2024/4/23 13:28:42
  15. 【原油贵金属早评】市场情绪继续恶化,黄金上破

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

    2024/4/23 22:01:21
  16. 【外汇早评】美伊僵持,风险情绪继续升温

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

    2024/4/23 13:29:23
  17. 【原油贵金属早评】贸易冲突导致需求低迷,油价弱势

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

    2024/4/23 13:27:46
  18. 氧生福地 玩美北湖(上)——为时光守候两千年

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

    2024/4/23 13:47:22
  19. 氧生福地 玩美北湖(中)——永春梯田里的美与鲜

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

    2024/4/19 11:59:23
  20. 氧生福地 玩美北湖(下)——奔跑吧骚年!

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

    2024/4/19 11:59:44
  21. 扒开伪装医用面膜,翻六倍价格宰客,小姐姐注意了!

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

    2024/4/23 13:28:08
  22. 「发现」铁皮石斛仙草之神奇功效用于医用面膜

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

    2024/4/23 13:29:47
  23. 丽彦妆\医用面膜\冷敷贴轻奢医学护肤引导者

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

    2024/4/23 13:28:14
  24. 广州械字号面膜生产厂家OEM/ODM4项须知!

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

    2024/4/23 13:27:51
  25. 械字号医用眼膜缓解用眼过度到底有无作用?

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

    2024/4/23 13:27:19
  26. 配置失败还原请勿关闭计算机,电脑开机屏幕上面显示,配置失败还原更改 请勿关闭计算机 开不了机 这个问题怎么办...

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

    2022/11/19 21:17:18
  27. 错误使用 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
  28. 配置 已完成 请勿关闭计算机,win7系统关机提示“配置Windows Update已完成30%请勿关闭计算机...

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

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

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

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

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

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

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

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

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

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

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

    2022/11/19 21:17:10
  34. 电脑桌面一直是清理请关闭计算机,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
  35. 计算机配置更新不起,电脑提示“配置Windows Update请勿关闭计算机”怎么办?

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    2022/11/19 21:16:58
  45. 如何在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