This action will force synchronization from osmapgis/MapGIS-WebClient-JavaScript, which will overwrite any changes that you have made since you forked the repository, and can not be recovered!!!
Synchronous operation will process in the background and will refresh the page when finishing processing. Please be patient.
/*** @author 基础平台-潘卓然* @param {...any} mixins 混合的对象* @example* class DistributedEdit extends mix(Loggable, Serializable) {// ...}*/export function mix(...mixins) {class Mix {constructor() {for (let mixin of mixins) {mixin && copyProperties(this, new mixin()); // 拷贝实例属性}}}for (let mixin of mixins) {mixin && copyProperties(Mix, mixin); // 拷贝静态属性mixin && copyProperties(Mix.prototype, mixin.prototype); // 拷贝原型属性}return Mix;}/*** @description 将要拷贝的源对象属性拷贝到对应的目标对象里面* @param {*} target 目标对象* @param {*} source 源对象*/export function copyProperties(target, source) {for (let key of Reflect.ownKeys(source)) {if (key !== 'constructor' && key !== 'prototype' && key !== 'name') {let desc = Object.getOwnPropertyDescriptor(source, key);Object.defineProperty(target, key, desc);}}}export default mix;
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。