Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<el-dialog | |
:title="title" | |
:visible.sync="dialogVisible" | |
width="26%" | |
@closed="handleExportDialogClose" | |
> | |
<div | |
class="dialog-content" | |
style="text-align: center" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { | |
BadRequestException, | |
ExceptionFilter, | |
Catch, | |
ArgumentsHost, | |
} from '@nestjs/common'; | |
import { jsonMsg } from '../common/utils/jsonMsg'; | |
import { ApiCode } from '../common/enums/api-code.enum'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Libs; | |
use Illuminate\Support\Facades\Auth; | |
use Illuminate\Support\Facades\Request; | |
use Illuminate\Support\Facades\Schema; | |
use Illuminate\Support\Carbon; | |
use App\Jobs\RecordSystemLog; | |
use App\Models\System\Log; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var mapName = 'china' | |
var data = [ | |
{name: '北京',value: Math.round(Math.random()*1000)}, | |
{name: '天津',value: Math.round(Math.random()*1000)}, | |
{name: '上海',value: Math.round(Math.random()*1000)}, | |
{name: '重庆',value: Math.round(Math.random()*1000)}, | |
{name: '河北',value: Math.round(Math.random()*1000)}, | |
{name: '河南',value: Math.round(Math.random()*1000)}, | |
{name: '云南',value: Math.round(Math.random()*1000)}, | |
{name: '辽宁',value: Math.round(Math.random()*1000)}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let data = [ | |
{ "lnglat": [116.366794, 39.915309], "name": "西城区", "style": 2 }, | |
{ "lnglat": [116.486409, 39.921489], "name": "朝阳区", "style": 2 }, | |
{ "lnglat": [116.286968, 39.863642], "name": "丰台区", "style": 2 }, | |
// ...更多数据 | |
] | |
const areaObject = new window.AMap.DistrictLayer.Country({ | |
zIndex: 10, | |
SOC: 'CHN', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<section class="container"> | |
<input | |
id="file" | |
ref="input" | |
class="file" | |
type="file" | |
style="display:none" | |
@change="picUpload" | |
> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
from datetime import datetime | |
import time | |
import urllib | |
import re | |
import os | |
import sys | |
from bs4 import BeautifulSoup | |
from openpyxl import Workbook |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div class="container"> | |
<div class="wrap"> | |
<div class="d1" @mousedown="eleDown" :style="style"> | |
</div> | |
</div> | |
<!--drr--> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<svg width="800px" height="800px" version="1.1" | |
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 800"> | |
<g class="port_output" style="pointer-events: all;"> | |
<rect fill="#ddd" stroke-width="1.5" | |
:x="listData['001'].x" :y="listData['001'].y" | |
:width="listData['001'].width" :height="listData['001'].height" | |
:transform="listData['001'].transform" | |
style="vector-effect: non-scaling-stroke" | |
class="port" @click="elementClick($event,'001')" stroke-dasharray="none" stroke="#000"></rect> |
NewerOlder