摘要:
<script setup lang="ts"> import { Modal, message } from 'ant-design-vue'; import { ref } from 'vue'; import doubleSelect from './doubleSelect.vue'; im
阅读全文
posted @ 2025-07-31 16:32
abcByme
阅读(10)
推荐(0)
摘要:
watch( () => route.query, (val) => { if (val && val.typeV !== undefined) { activeKey.value = val.typeV; } else { activeKey.value = '1' } getData(); },
阅读全文
posted @ 2025-06-05 11:34
abcByme
阅读(12)
推荐(0)
摘要:
.fontStyle { font-family: FZFYSJW; margin-top: -155px; height: 58px; background: #095DDC; border-radius: 4px; border-radius: 0; filter: blur(0); justi
阅读全文
posted @ 2025-06-04 20:49
abcByme
阅读(7)
推荐(0)
摘要:
太难看了 // 登录页记住密码样式修改 .new-input { input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill { // color: #fff !important; // // backgro
阅读全文
posted @ 2025-04-27 10:15
abcByme
阅读(35)
推荐(0)
摘要:
<script setup> import { message } from 'ant-design-vue' import Cropper from 'cropperjs' import { upload } from '@/api/workOrder/hotService' const prop
阅读全文
posted @ 2025-03-27 14:15
abcByme
阅读(22)
推荐(0)
摘要:
<script lang="ts" setup> import type { Dayjs } from 'dayjs'; import { Modal, message } from 'ant-design-vue'; import dayjs from 'dayjs'; import { colu
阅读全文
posted @ 2025-03-25 12:54
abcByme
阅读(50)
推荐(0)
摘要:
<script setup lang="ts"> import useMqttStore from '@/stores/modules/mqtt'; import imganimation1 from '@/assets/images/fly_test_01.png'; import imganim
阅读全文
posted @ 2025-02-18 08:57
abcByme
阅读(17)
推荐(0)
摘要:
function isFirstOpen(code: any) { // 检查localStorage中是否有记录打开状态的标志 const isLoggedIn = useStorage(`Firstflag${code}`, {}); // console.log('isLoggedIn', i
阅读全文
posted @ 2025-01-17 09:10
abcByme
阅读(23)
推荐(0)
摘要:
<script setup lang="ts"> import { useDraggable, useMouseInElement } from '@vueuse/core'; import type { CSSProperties } from 'vue'; interface Props { i
阅读全文
posted @ 2024-12-27 12:27
abcByme
阅读(120)
推荐(0)
摘要:
<script setup lang="ts"> import { Empty } from 'ant-design-vue'; export interface TBColumn { title: string dataIndex: string // key: string ellipsis?:
阅读全文
posted @ 2024-12-27 12:26
abcByme
阅读(87)
推荐(0)
摘要:
<script setup lang="ts"> import { Empty } from 'ant-design-vue'; const props = withDefaults(defineProps<{ modelValue: any[] // 重要: 外部在使用这个的时候,不要修改,要通过
阅读全文
posted @ 2024-12-27 12:24
abcByme
阅读(116)
推荐(0)
摘要:
<script setup lang="ts"> import { ref } from 'vue'; const list = ref([{}]); const queryParams = ref({ currentPage: 1, pageSize: 15, totalPage: 100, })
阅读全文
posted @ 2024-12-18 09:18
abcByme
阅读(15)
推荐(0)
摘要:
// 数据平均分配 function generateSequence(startValue: any, endValue: any, increment: any) { const sequence = []; for (let i = startValue; i <= endValue; i +
阅读全文
posted @ 2024-12-10 18:50
abcByme
阅读(22)
推荐(0)
摘要:
<script setup lang="ts"> import { Modal, message } from 'ant-design-vue'; import Speech from 'speak-tts'; import { useStorage } from '@vueuse/core'; i
阅读全文
posted @ 2024-11-22 16:58
abcByme
阅读(67)
推荐(0)
摘要:
/** * 获取完整的文件路径地址 */ export function getFullFileURL(url?: string): string { let _url = ''; if (url) { _url = (url?.includes('http://') || url?.include
阅读全文
posted @ 2024-11-21 11:20
abcByme
阅读(19)
推荐(0)
摘要:
<script setup lang="ts"> defineOptions({ name: 'rightTop', }); let timer: any = null; const wrapperRef = ref() const tagRef: any = ref([]) const rotat
阅读全文
posted @ 2024-11-12 14:44
abcByme
阅读(243)
推荐(0)
摘要:
<script setup lang="ts"> import { useVModel } from '@vueuse/core'; const props = defineProps({ modelValue: { type: Object, default: () => { }, }, });
阅读全文
posted @ 2024-09-12 17:21
abcByme
阅读(20)
推荐(0)
摘要:
<script setup lang="ts"> import { ref } from 'vue'; import { Modal, message } from 'ant-design-vue'; import { AIRPLANE_MISSION_MODE } from '../enum';
阅读全文
posted @ 2024-09-12 17:20
abcByme
阅读(23)
推荐(0)
摘要:
const lastDataHandle = ref(null); // 上次选择的dataHandle值 const dataHandle: any = ref([]); const dataHandleALLList = [ { label: '无', value: 0 }, { label:
阅读全文
posted @ 2024-08-23 15:56
abcByme
阅读(13)
推荐(0)
摘要:
<a-input class="input-center-met" v-model:value="form.name1"> <template #prefix> <div class="flex items-center"> <div class="number-btn auto" @click="
阅读全文
posted @ 2024-08-23 10:50
abcByme
阅读(24)
推荐(0)
摘要:
:tooltip-open="false" <a-slider ref="scrollableDiv" v-model:value="defaultValue" vertical class="new-slider" :marks="marks" :min="0" :max="10" :step="
阅读全文
posted @ 2024-08-07 11:12
abcByme
阅读(46)
推荐(0)
摘要:
<script setup lang="ts"> const props = withDefaults(defineProps<{ num?: number // 当前信号强度 max?: number // 信号柱最大数量 minHeight?: number // 信号柱最小高度,单位px wi
阅读全文
posted @ 2024-07-30 09:38
abcByme
阅读(18)
推荐(0)
摘要:
来自:https://www.cnblogs.com/keleyz/p/10118648.html 侵删 let d = []; let d2 = []; result3[1].forEach((item, index) => { d.push({ name: item, }); }); resul
阅读全文
posted @ 2024-06-27 17:20
abcByme
阅读(50)
推荐(0)
摘要:
eventTime(v) { let d = v.replace(/T/, " "); let dd = d.substring(0, d.indexOf("+")); return dd; },
阅读全文
posted @ 2024-03-28 11:04
abcByme
阅读(26)
推荐(0)
摘要:
<template> <view class="contain-box"> <u-navbar :title="title" :is-back="true" back-icon-color="#fff" :background="background" :border-bottom="false"
阅读全文
posted @ 2024-03-21 16:00
abcByme
阅读(192)
推荐(0)
摘要:
/deep/ .ivu-input::-webkit-input-placeholder { color: #87cfff; } /deep/ .ivu-input::-moz-placeholder { /* Mozilla Firefox 19+ */ color: #87cfff; } /de
阅读全文
posted @ 2024-01-25 14:57
abcByme
阅读(150)
推荐(0)
摘要:
<template> <div ref="appRef" class="app-viewport" id="appRef"> </div> </template> <script> let loading = null; // import drawMixin from '../libs/drawM
阅读全文
posted @ 2024-01-17 18:08
abcByme
阅读(61)
推荐(0)
摘要:
<FormItem prop="free" label="包期费用(元):"> <Input-number :min="0" style="width: 100%" v-model="formValidate.free" placeholder="请输入单价(元)" :formatter="valu
阅读全文
posted @ 2023-10-19 15:03
abcByme
阅读(345)
推荐(0)
摘要:
<template> <div class="p-box"> <el-transfer class="new-el-transfer" filterable filter-placeholder="请输入组织名称" v-model="value" :data="dataListzz" :titles
阅读全文
posted @ 2023-08-03 10:39
abcByme
阅读(75)
推荐(0)
摘要:
if (i == 1) { //近30天 let d30 = [...new Array(30)].map((i, idx) => this.moment().startOf("day").subtract(idx, "days").format('MM-DD')).reverse(); //随机数
阅读全文
posted @ 2023-07-31 14:56
abcByme
阅读(249)
推荐(0)
摘要:
html代码 <div id="root"> <h3>人员列表</h3> <input type="text" placeholder="请输入名字" v-model="keyWord"> <ul> <li v-for="(p,index) of filPersons" :key="index">
阅读全文
posted @ 2023-07-13 14:15
abcByme
阅读(52)
推荐(0)
摘要:
<div class="event-img"> <img :src="item" alt="" v-for="(item,index) in imgPathList" @click="viewImg(imgPathList,index)"/> </div> viewImg(item,index){
阅读全文
posted @ 2023-05-12 15:34
abcByme
阅读(271)
推荐(0)
摘要:
来自:https://blog.csdn.net/chenrui310/article/details/129365208 侵删 let cw = 1920,ch = 1080//默认 let body = document.getElementById('body') body.style.wid
阅读全文
posted @ 2023-05-10 16:31
abcByme
阅读(686)
推荐(0)
摘要:
上传了压缩后的照片 <template> <div> <!-- <el-upload :class="uploadDisabled" ref="upload" :action="action" :headers="headers" list-type="picture-card" :limit="1
阅读全文
posted @ 2023-04-07 15:23
abcByme
阅读(191)
推荐(0)
摘要:
getNowDate() { let date = new Date() let year = date.getFullYear() let month = date.getMonth() + 1 let day = date.getDate() let hour = date.getHours()
阅读全文
posted @ 2023-03-23 10:31
abcByme
阅读(94)
推荐(0)
摘要:
需要用到moment.具体参考 http://momentjs.cn/docs/#/manipulating/const start = this.$moment().startOf('month').format('MM-DD') //当前日期当月第一天 const end = this.$mom
阅读全文
posted @ 2023-03-17 14:51
abcByme
阅读(83)
推荐(0)
摘要:
<template> <div> <el-upload ref="upload" :class="disabled ? 'disabled' : ''" list-type="picture-card" :action="action" :file-list="newFileList" :disab
阅读全文
posted @ 2023-03-07 15:38
abcByme
阅读(37)
推荐(0)
摘要:
https://juejin.cn/post/7132807229048422437 侵删 <template> <div> <el-table :data="tableData" border> <el-table-column label="序号" type="index" width="50"
阅读全文
posted @ 2023-02-28 10:57
abcByme
阅读(257)
推荐(0)
摘要:
https://www.jb51.net/css/736179.html 侵删 <style> .main { outline: 1px solid; display: flex; justify-content: space-between; flex-wrap: wrap; } .main>di
阅读全文
posted @ 2023-02-15 15:18
abcByme
阅读(161)
推荐(0)
摘要:
// 判断文件格式 //将多个文件以数组方式传入format中进行判断 format(file){ let fileList = file.map( v => { let file = v.name.split('.') //将字母全部变为小写并保存格式名 let fileName = file[f
阅读全文
posted @ 2023-02-14 17:28
abcByme
阅读(186)
推荐(0)