提交 e2b9f087 authored 作者: lidongxu's avatar lidongxu

fix(inspectiontask): 修复:勤策移动端_售点稽查_支持拍摄视频上传功能

上级 f18eb389
/* eslint-disable */
/* prettier-ignore */
// @ts-nocheck
// noinspection JSUnusedGlobalSymbols
// Generated by unplugin-auto-import
export {}
declare global {
const showConfirmDialog: typeof import('vant/es')['showConfirmDialog']
const showDialog: typeof import('vant/es')['showDialog']
const showNotify: typeof import('vant/es')['showNotify']
}
/* eslint-disable */
// @ts-nocheck
// Generated by unplugin-vue-components
// Read more: https://github.com/vuejs/core/pull/3399
// biome-ignore lint: disable
export {}
/* prettier-ignore */
declare module 'vue' {
export interface GlobalComponents {
Breadcrumb: typeof import('./src/components/Breadcrumb/index.vue')['default']
CategoryTree: typeof import('./src/components/CategoryTree/index.vue')['default']
CommonMenu: typeof import('./src/components/CommonMenu/index.vue')['default']
Crontab: typeof import('./src/components/Crontab/index.vue')['default']
Day: typeof import('./src/components/Crontab/day.vue')['default']
DictTag: typeof import('./src/components/DictTag/index.vue')['default']
Doc: typeof import('./src/components/RuoYi/Doc/index.vue')['default']
Editor: typeof import('./src/components/Editor/index.vue')['default']
FileUpload: typeof import('./src/components/FileUpload/index.vue')['default']
Git: typeof import('./src/components/RuoYi/Git/index.vue')['default']
GroupLegend: typeof import('./src/components/ECharts/GroupLegend/index.vue')['default']
Hamburger: typeof import('./src/components/Hamburger/index.vue')['default']
HeaderSearch: typeof import('./src/components/HeaderSearch/index.vue')['default']
Hour: typeof import('./src/components/Crontab/hour.vue')['default']
IconSelect: typeof import('./src/components/IconSelect/index.vue')['default']
IFrame: typeof import('./src/components/iFrame/index.vue')['default']
ImagePreview: typeof import('./src/components/ImagePreview/index.vue')['default']
ImageUpload: typeof import('./src/components/ImageUpload/index.vue')['default']
LevitatedSphere: typeof import('./src/components/LevitatedSphere/index.vue')['default']
Min: typeof import('./src/components/Crontab/min.vue')['default']
Month: typeof import('./src/components/Crontab/month.vue')['default']
NoData: typeof import('./src/components/NoData/index.vue')['default']
OpenDialog: typeof import('./src/components/OpenDialog/index.vue')['default']
Pagination: typeof import('./src/components/Pagination/index.vue')['default']
ParentView: typeof import('./src/components/ParentView/index.vue')['default']
Result: typeof import('./src/components/Crontab/result.vue')['default']
RightToolbar: typeof import('./src/components/RightToolbar/index.vue')['default']
RouterLink: typeof import('vue-router')['RouterLink']
RouterView: typeof import('vue-router')['RouterView']
Screenfull: typeof import('./src/components/Screenfull/index.vue')['default']
Second: typeof import('./src/components/Crontab/second.vue')['default']
SizeSelect: typeof import('./src/components/SizeSelect/index.vue')['default']
SvgIcon: typeof import('./src/components/SvgIcon/index.vue')['default']
TopNav: typeof import('./src/components/TopNav/index.vue')['default']
VanActionSheet: typeof import('vant/es')['ActionSheet']
VanButton: typeof import('vant/es')['Button']
VanCalendar: typeof import('vant/es')['Calendar']
VanCell: typeof import('vant/es')['Cell']
VanCellGroup: typeof import('vant/es')['CellGroup']
VanCheckbox: typeof import('vant/es')['Checkbox']
VanCheckboxGroup: typeof import('vant/es')['CheckboxGroup']
VanEmpty: typeof import('vant/es')['Empty']
VanField: typeof import('vant/es')['Field']
VanFloatingBubble: typeof import('vant/es')['FloatingBubble']
VanIcon: typeof import('vant/es')['Icon']
VanImage: typeof import('vant/es')['Image']
VanList: typeof import('vant/es')['List']
VanLoading: typeof import('vant/es')['Loading']
VanNavBar: typeof import('vant/es')['NavBar']
VanOverlay: typeof import('vant/es')['Overlay']
VanPicker: typeof import('vant/es')['Picker']
VanPopup: typeof import('vant/es')['Popup']
VanPullRefresh: typeof import('vant/es')['PullRefresh']
VanSearch: typeof import('vant/es')['Search']
VanTab: typeof import('vant/es')['Tab']
VanTabs: typeof import('vant/es')['Tabs']
VanTag: typeof import('vant/es')['Tag']
VanUploader: typeof import('vant/es')['Uploader']
VersionNotice: typeof import('./src/components/VersionNotice/index.vue')['default']
Week: typeof import('./src/components/Crontab/week.vue')['default']
XLSelect: typeof import('./src/components/XLSelect/index.vue')['default']
XLToolTip: typeof import('./src/components/XLToolTip/index.vue')['default']
Year: typeof import('./src/components/Crontab/year.vue')['default']
}
}
...@@ -68,8 +68,10 @@ import VersionNotice from '@/components/VersionNotice' ...@@ -68,8 +68,10 @@ import VersionNotice from '@/components/VersionNotice'
import VConsole from 'vconsole' import VConsole from 'vconsole'
// 创建vConsole实例 // 创建vConsole实例
new VConsole() // 生产环境不加载
if (process.env.NODE_ENV !== 'production') {
new VConsole()
}
const app = createApp(App) const app = createApp(App)
......
...@@ -125,7 +125,6 @@ ...@@ -125,7 +125,6 @@
<van-uploader :max-count="1" <van-uploader :max-count="1"
:accept="selectedMediaType === 'image' ? 'image/*' : 'video/*'" :accept="selectedMediaType === 'image' ? 'image/*' : 'video/*'"
ref="uploaderRef" ref="uploaderRef"
capture="camera"
:model-value="form.commitStorePicture" :model-value="form.commitStorePicture"
:after-read="commitStorePhotosRead" :after-read="commitStorePhotosRead"
preview-size="2.13333rem" preview-size="2.13333rem"
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论