├── .editorconfig
├── .eslintrc.js
├── .gitignore
├── .vscode
├── launch.json
└── settings.json
├── README.md
├── babel.config.js
├── iconfount.log
├── package-lock.json
├── package.json
├── public
├── index.html
└── static
│ └── UEditor
│ ├── config.json
│ ├── dialogs
│ ├── anchor
│ │ └── anchor.html
│ ├── attachment
│ │ ├── attachment.css
│ │ ├── attachment.html
│ │ ├── attachment.js
│ │ ├── fileTypeImages
│ │ │ ├── icon_chm.gif
│ │ │ ├── icon_default.png
│ │ │ ├── icon_doc.gif
│ │ │ ├── icon_exe.gif
│ │ │ ├── icon_jpg.gif
│ │ │ ├── icon_mp3.gif
│ │ │ ├── icon_mv.gif
│ │ │ ├── icon_pdf.gif
│ │ │ ├── icon_ppt.gif
│ │ │ ├── icon_psd.gif
│ │ │ ├── icon_rar.gif
│ │ │ ├── icon_txt.gif
│ │ │ └── icon_xls.gif
│ │ └── images
│ │ │ ├── alignicon.gif
│ │ │ ├── alignicon.png
│ │ │ ├── bg.png
│ │ │ ├── file-icons.gif
│ │ │ ├── file-icons.png
│ │ │ ├── icons.gif
│ │ │ ├── icons.png
│ │ │ ├── image.png
│ │ │ ├── progress.png
│ │ │ ├── success.gif
│ │ │ └── success.png
│ ├── background
│ │ ├── background.css
│ │ ├── background.html
│ │ ├── background.js
│ │ └── images
│ │ │ ├── bg.png
│ │ │ └── success.png
│ ├── charts
│ │ ├── chart.config.js
│ │ ├── charts.css
│ │ ├── charts.html
│ │ ├── charts.js
│ │ └── images
│ │ │ ├── charts0.png
│ │ │ ├── charts1.png
│ │ │ ├── charts2.png
│ │ │ ├── charts3.png
│ │ │ ├── charts4.png
│ │ │ └── charts5.png
│ ├── emotion
│ │ ├── emotion.css
│ │ ├── emotion.html
│ │ ├── emotion.js
│ │ └── images
│ │ │ ├── 0.gif
│ │ │ ├── bface.gif
│ │ │ ├── cface.gif
│ │ │ ├── fface.gif
│ │ │ ├── jxface2.gif
│ │ │ ├── neweditor-tab-bg.png
│ │ │ ├── tface.gif
│ │ │ ├── wface.gif
│ │ │ └── yface.gif
│ ├── gmap
│ │ └── gmap.html
│ ├── help
│ │ ├── help.css
│ │ ├── help.html
│ │ └── help.js
│ ├── image
│ │ ├── image.css
│ │ ├── image.html
│ │ ├── image.js
│ │ └── images
│ │ │ ├── alignicon.jpg
│ │ │ ├── bg.png
│ │ │ ├── icons.gif
│ │ │ ├── icons.png
│ │ │ ├── image.png
│ │ │ ├── progress.png
│ │ │ ├── success.gif
│ │ │ └── success.png
│ ├── insertframe
│ │ └── insertframe.html
│ ├── internal.js
│ ├── link
│ │ └── link.html
│ ├── map
│ │ ├── map.html
│ │ └── show.html
│ ├── music
│ │ ├── music.css
│ │ ├── music.html
│ │ └── music.js
│ ├── preview
│ │ └── preview.html
│ ├── scrawl
│ │ ├── images
│ │ │ ├── addimg.png
│ │ │ ├── brush.png
│ │ │ ├── delimg.png
│ │ │ ├── delimgH.png
│ │ │ ├── empty.png
│ │ │ ├── emptyH.png
│ │ │ ├── eraser.png
│ │ │ ├── redo.png
│ │ │ ├── redoH.png
│ │ │ ├── scale.png
│ │ │ ├── scaleH.png
│ │ │ ├── size.png
│ │ │ ├── undo.png
│ │ │ └── undoH.png
│ │ ├── scrawl.css
│ │ ├── scrawl.html
│ │ └── scrawl.js
│ ├── searchreplace
│ │ ├── searchreplace.html
│ │ └── searchreplace.js
│ ├── snapscreen
│ │ └── snapscreen.html
│ ├── spechars
│ │ ├── spechars.html
│ │ └── spechars.js
│ ├── table
│ │ ├── dragicon.png
│ │ ├── edittable.css
│ │ ├── edittable.html
│ │ ├── edittable.js
│ │ ├── edittd.html
│ │ └── edittip.html
│ ├── template
│ │ ├── config.js
│ │ ├── images
│ │ │ ├── bg.gif
│ │ │ ├── pre0.png
│ │ │ ├── pre1.png
│ │ │ ├── pre2.png
│ │ │ ├── pre3.png
│ │ │ └── pre4.png
│ │ ├── template.css
│ │ ├── template.html
│ │ └── template.js
│ ├── video
│ │ ├── images
│ │ │ ├── bg.png
│ │ │ ├── center_focus.jpg
│ │ │ ├── file-icons.gif
│ │ │ ├── file-icons.png
│ │ │ ├── icons.gif
│ │ │ ├── icons.png
│ │ │ ├── image.png
│ │ │ ├── left_focus.jpg
│ │ │ ├── none_focus.jpg
│ │ │ ├── progress.png
│ │ │ ├── right_focus.jpg
│ │ │ ├── success.gif
│ │ │ └── success.png
│ │ ├── video.css
│ │ ├── video.html
│ │ └── video.js
│ ├── webapp
│ │ └── webapp.html
│ └── wordimage
│ │ ├── tangram.js
│ │ ├── wordimage.html
│ │ └── wordimage.js
│ ├── index.html
│ ├── jsp
│ ├── config.json
│ ├── controller.jsp
│ └── lib
│ │ ├── commons-codec-1.9.jar
│ │ ├── commons-fileupload-1.3.1.jar
│ │ ├── commons-io-2.4.jar
│ │ ├── json.jar
│ │ └── ueditor-1.1.2.jar
│ ├── lang
│ ├── en
│ │ ├── en.js
│ │ └── images
│ │ │ ├── addimage.png
│ │ │ ├── alldeletebtnhoverskin.png
│ │ │ ├── alldeletebtnupskin.png
│ │ │ ├── background.png
│ │ │ ├── button.png
│ │ │ ├── copy.png
│ │ │ ├── deletedisable.png
│ │ │ ├── deleteenable.png
│ │ │ ├── listbackground.png
│ │ │ ├── localimage.png
│ │ │ ├── music.png
│ │ │ ├── rotateleftdisable.png
│ │ │ ├── rotateleftenable.png
│ │ │ ├── rotaterightdisable.png
│ │ │ ├── rotaterightenable.png
│ │ │ └── upload.png
│ └── zh-cn
│ │ ├── images
│ │ ├── copy.png
│ │ ├── localimage.png
│ │ ├── music.png
│ │ └── upload.png
│ │ └── zh-cn.js
│ ├── themes
│ ├── default
│ │ ├── css
│ │ │ ├── ueditor.css
│ │ │ └── ueditor.min.css
│ │ ├── dialogbase.css
│ │ └── images
│ │ │ ├── anchor.gif
│ │ │ ├── arrow.png
│ │ │ ├── arrow_down.png
│ │ │ ├── arrow_up.png
│ │ │ ├── button-bg.gif
│ │ │ ├── cancelbutton.gif
│ │ │ ├── charts.png
│ │ │ ├── cursor_h.gif
│ │ │ ├── cursor_h.png
│ │ │ ├── cursor_v.gif
│ │ │ ├── cursor_v.png
│ │ │ ├── dialog-title-bg.png
│ │ │ ├── filescan.png
│ │ │ ├── highlighted.gif
│ │ │ ├── icons-all.gif
│ │ │ ├── icons.gif
│ │ │ ├── icons.png
│ │ │ ├── loaderror.png
│ │ │ ├── loading.gif
│ │ │ ├── lock.gif
│ │ │ ├── neweditor-tab-bg.png
│ │ │ ├── pagebreak.gif
│ │ │ ├── scale.png
│ │ │ ├── sortable.png
│ │ │ ├── spacer.gif
│ │ │ ├── sparator_v.png
│ │ │ ├── table-cell-align.png
│ │ │ ├── tangram-colorpicker.png
│ │ │ ├── toolbar_bg.png
│ │ │ ├── unhighlighted.gif
│ │ │ ├── upload.png
│ │ │ ├── videologo.gif
│ │ │ ├── word.gif
│ │ │ └── wordpaste.png
│ └── iframe.css
│ ├── third-party
│ ├── SyntaxHighlighter
│ │ ├── shCore.js
│ │ └── shCoreDefault.css
│ ├── codemirror
│ │ ├── codemirror.css
│ │ └── codemirror.js
│ ├── highcharts
│ │ ├── adapters
│ │ │ ├── mootools-adapter.js
│ │ │ ├── mootools-adapter.src.js
│ │ │ ├── prototype-adapter.js
│ │ │ ├── prototype-adapter.src.js
│ │ │ ├── standalone-framework.js
│ │ │ └── standalone-framework.src.js
│ │ ├── highcharts-more.js
│ │ ├── highcharts-more.src.js
│ │ ├── highcharts.js
│ │ ├── highcharts.src.js
│ │ ├── modules
│ │ │ ├── annotations.js
│ │ │ ├── annotations.src.js
│ │ │ ├── canvas-tools.js
│ │ │ ├── canvas-tools.src.js
│ │ │ ├── data.js
│ │ │ ├── data.src.js
│ │ │ ├── drilldown.js
│ │ │ ├── drilldown.src.js
│ │ │ ├── exporting.js
│ │ │ ├── exporting.src.js
│ │ │ ├── funnel.js
│ │ │ ├── funnel.src.js
│ │ │ ├── heatmap.js
│ │ │ ├── heatmap.src.js
│ │ │ ├── map.js
│ │ │ ├── map.src.js
│ │ │ ├── no-data-to-display.js
│ │ │ └── no-data-to-display.src.js
│ │ └── themes
│ │ │ ├── dark-blue.js
│ │ │ ├── dark-green.js
│ │ │ ├── gray.js
│ │ │ ├── grid.js
│ │ │ └── skies.js
│ ├── jquery-1.10.2.js
│ ├── jquery-1.10.2.min.js
│ ├── jquery-1.10.2.min.map
│ ├── snapscreen
│ │ └── UEditorSnapscreen.exe
│ ├── video-js
│ │ ├── font
│ │ │ ├── vjs.eot
│ │ │ ├── vjs.svg
│ │ │ ├── vjs.ttf
│ │ │ └── vjs.woff
│ │ ├── video-js.css
│ │ ├── video-js.min.css
│ │ ├── video.dev.js
│ │ └── video.js
│ ├── webuploader
│ │ ├── webuploader.css
│ │ ├── webuploader.custom.js
│ │ ├── webuploader.custom.min.js
│ │ ├── webuploader.flashonly.js
│ │ ├── webuploader.flashonly.min.js
│ │ ├── webuploader.html5only.js
│ │ ├── webuploader.html5only.min.js
│ │ ├── webuploader.js
│ │ ├── webuploader.min.js
│ │ ├── webuploader.withoutimage.js
│ │ └── webuploader.withoutimage.min.js
│ ├── xss.min.js
│ └── zeroclipboard
│ │ ├── ZeroClipboard.js
│ │ └── ZeroClipboard.min.js
│ ├── ueditor.all.js
│ ├── ueditor.all.min.js
│ ├── ueditor.config.js
│ ├── ueditor.parse.js
│ └── ueditor.parse.min.js
├── src
├── App.vue
├── admins
│ ├── activity
│ │ └── admin-activity-set
│ │ │ ├── edit.vue
│ │ │ ├── index.vue
│ │ │ ├── json
│ │ │ └── activity.json
│ │ │ ├── service.js
│ │ │ └── styles
│ │ │ ├── edit.scss
│ │ │ └── product.scss
│ ├── admin
│ │ ├── admin-app-publish
│ │ │ ├── index.vue
│ │ │ ├── item
│ │ │ │ ├── alipay-edit.vue
│ │ │ │ ├── apple-edit.vue
│ │ │ │ ├── beat-edit.vue
│ │ │ │ ├── brainpower-edit.vue
│ │ │ │ └── style.scss
│ │ │ └── var.scss
│ │ ├── admin-app
│ │ │ ├── index.vue
│ │ │ ├── styles
│ │ │ │ ├── a.scss
│ │ │ │ ├── b.scss
│ │ │ │ ├── c.scss
│ │ │ │ ├── d.scss
│ │ │ │ └── index.js
│ │ │ └── var.scss
│ │ ├── admin-layout
│ │ │ ├── admin.js
│ │ │ ├── diy.js
│ │ │ ├── index.vue
│ │ │ ├── item
│ │ │ │ ├── admin-nav
│ │ │ │ │ ├── index.scss
│ │ │ │ │ ├── index.vue
│ │ │ │ │ ├── left.scss
│ │ │ │ │ ├── left.vue
│ │ │ │ │ ├── server-left.js
│ │ │ │ │ ├── top.scss
│ │ │ │ │ └── top.vue
│ │ │ │ ├── fold-nav
│ │ │ │ │ └── index.vue
│ │ │ │ └── user-nav
│ │ │ │ │ └── index.vue
│ │ │ └── var.scss
│ │ ├── admin-message
│ │ │ ├── index.vue
│ │ │ └── style.scss
│ │ ├── admin-smart-hand
│ │ │ ├── index.vue
│ │ │ └── var.scss
│ │ ├── admin-user-tree
│ │ │ ├── index.vue
│ │ │ ├── styles
│ │ │ │ ├── a.scss
│ │ │ │ ├── b.scss
│ │ │ │ ├── c.scss
│ │ │ │ ├── d.scss
│ │ │ │ └── index.js
│ │ │ └── var.scss
│ │ └── admin-vdata
│ │ │ ├── index.vue
│ │ │ └── var.scss
│ ├── auto
│ │ ├── admin-auto-article
│ │ │ └── index.vue
│ │ ├── admin-auto-faq
│ │ │ └── index.vue
│ │ ├── admin-auto-form
│ │ │ └── index.vue
│ │ ├── admin-auto-preview
│ │ │ ├── index.vue
│ │ │ └── widgets
│ │ │ │ ├── edit.json
│ │ │ │ ├── left.vue
│ │ │ │ ├── list.vue
│ │ │ │ ├── right.vue
│ │ │ │ ├── style.scss
│ │ │ │ └── usersubpage
│ │ │ │ ├── basic.vue
│ │ │ │ ├── detailed.vue
│ │ │ │ ├── modify.vue
│ │ │ │ └── styles
│ │ │ │ ├── basic.scss
│ │ │ │ ├── detailed.scss
│ │ │ │ └── modify.scss
│ │ ├── admin-auto-table
│ │ │ ├── index.scss
│ │ │ └── index.vue
│ │ ├── admin-auto-task
│ │ │ ├── index.vue
│ │ │ └── style.scss
│ │ ├── admin-auto-video
│ │ │ └── index.vue
│ │ ├── admin-autoconfig-form
│ │ │ ├── index.vue
│ │ │ ├── styles
│ │ │ │ ├── a.scss
│ │ │ │ ├── b.scss
│ │ │ │ ├── c.scss
│ │ │ │ ├── d.scss
│ │ │ │ └── index.js
│ │ │ └── var.scss
│ │ ├── admin-autoconfig-list
│ │ │ ├── index.vue
│ │ │ ├── styles
│ │ │ │ ├── a.scss
│ │ │ │ ├── b.scss
│ │ │ │ ├── c.scss
│ │ │ │ ├── d.scss
│ │ │ │ └── index.js
│ │ │ └── var.scss
│ │ ├── admin-lightapp-form
│ │ │ ├── data.json
│ │ │ ├── index.vue
│ │ │ ├── styles
│ │ │ │ ├── a.scss
│ │ │ │ ├── b.scss
│ │ │ │ ├── c.scss
│ │ │ │ ├── d.scss
│ │ │ │ └── index.js
│ │ │ └── var.scss
│ │ ├── admin-lightapp-table
│ │ │ ├── data.js
│ │ │ ├── data.json
│ │ │ ├── index.vue
│ │ │ ├── styles
│ │ │ │ ├── a.scss
│ │ │ │ ├── b.scss
│ │ │ │ ├── c.scss
│ │ │ │ ├── d.scss
│ │ │ │ └── index.js
│ │ │ └── var.scss
│ │ └── auto-autoconfig-list
│ │ │ ├── index.vue
│ │ │ ├── styles
│ │ │ ├── a.scss
│ │ │ ├── b.scss
│ │ │ ├── c.scss
│ │ │ ├── d.scss
│ │ │ └── index.js
│ │ │ └── var.scss
│ ├── cms
│ │ ├── admin-cms-form
│ │ │ ├── index.vue
│ │ │ └── var.scss
│ │ └── admin-cms-list
│ │ │ ├── index.vue
│ │ │ └── var.scss
│ ├── common
│ │ ├── admin-login
│ │ │ ├── index.vue
│ │ │ └── style.scss
│ │ ├── admin-relation-class
│ │ │ ├── class-dialog.vue
│ │ │ ├── index.vue
│ │ │ └── var.scss
│ │ ├── admin-relation-tag
│ │ │ └── index.vue
│ │ └── admin-task-action
│ │ │ └── index.vue
│ ├── coupon
│ │ ├── admin-coupon-edit
│ │ │ ├── index.vue
│ │ │ └── var.scss
│ │ └── admin-coupon-send
│ │ │ ├── index.vue
│ │ │ ├── styles
│ │ │ ├── a.scss
│ │ │ ├── b.scss
│ │ │ ├── c.scss
│ │ │ ├── d.scss
│ │ │ └── index.js
│ │ │ └── var.scss
│ ├── diy
│ │ ├── admin-api
│ │ │ └── index.vue
│ │ ├── admin-diy-theme
│ │ │ ├── index.vue
│ │ │ ├── style
│ │ │ │ ├── delete.vue
│ │ │ │ ├── item.vue
│ │ │ │ ├── make.vue
│ │ │ │ ├── service.js
│ │ │ │ ├── set.vue
│ │ │ │ └── var.scss
│ │ │ └── var.scss
│ │ └── admin-publish-wechatlite
│ │ │ ├── index.vue
│ │ │ └── var.scss
│ ├── finance
│ │ ├── admin-account-edit
│ │ │ ├── index.vue
│ │ │ └── styles
│ │ │ │ └── style.scss
│ │ ├── admin-account-recharge
│ │ │ ├── index.vue
│ │ │ └── var.scss
│ │ ├── admin-account-wallet
│ │ │ ├── index.vue
│ │ │ └── style.scss
│ │ ├── admin-stored-edit
│ │ │ ├── index.vue
│ │ │ └── style.scss
│ │ └── admin-stored-value
│ │ │ ├── index.vue
│ │ │ └── style.scss
│ ├── hudong
│ │ └── admin-hudong-edit
│ │ │ ├── admin-hudong-edit.scss
│ │ │ └── index.vue
│ ├── merchant
│ │ ├── admin-merchant-orderedit
│ │ │ ├── action.js
│ │ │ ├── from-item.vue
│ │ │ ├── index.vue
│ │ │ ├── js
│ │ │ │ └── right.js
│ │ │ ├── list.vue
│ │ │ ├── order-list.vue
│ │ │ ├── styles
│ │ │ │ ├── from-item.scss
│ │ │ │ ├── list.scss
│ │ │ │ ├── merchandise.scss
│ │ │ │ ├── operating-record.scss
│ │ │ │ └── style.scss
│ │ │ └── widgets
│ │ │ │ ├── amount-list.vue
│ │ │ │ ├── detail.vue
│ │ │ │ ├── edit.json
│ │ │ │ ├── leave-message.vue
│ │ │ │ ├── left.vue
│ │ │ │ ├── merchandise.vue
│ │ │ │ ├── operating-record.vue
│ │ │ │ ├── operation-list.vue
│ │ │ │ ├── right.vue
│ │ │ │ └── upload.vue
│ │ ├── admin-merchant-orderlist
│ │ │ ├── index.vue
│ │ │ └── var.scss
│ │ └── admin-merchant-product
│ │ │ ├── detail.vue
│ │ │ ├── edit.vue
│ │ │ ├── index.vue
│ │ │ ├── styles
│ │ │ ├── order.scss
│ │ │ └── style.scss
│ │ │ └── widgets
│ │ │ ├── amount-list.vue
│ │ │ ├── essential.vue
│ │ │ ├── index.vue
│ │ │ ├── left.vue
│ │ │ ├── merchandise.vue
│ │ │ ├── operating-record.vue
│ │ │ ├── operation-list.vue
│ │ │ ├── right.vue
│ │ │ ├── sell.vue
│ │ │ ├── styles
│ │ │ ├── essential.scss
│ │ │ ├── index.scss
│ │ │ ├── merchandise.scss
│ │ │ ├── operating-record.scss
│ │ │ ├── pic.scss
│ │ │ └── sell.scss
│ │ │ ├── upload.vue
│ │ │ └── userList.vue
│ ├── share
│ │ ├── admin-reward-add
│ │ │ ├── index.vue
│ │ │ └── var.scss
│ │ ├── admin-reward-edit
│ │ │ ├── index.vue
│ │ │ ├── style.scss
│ │ │ ├── styles
│ │ │ │ ├── asset-allocation.scss
│ │ │ │ ├── edit-base.scss
│ │ │ │ └── left.scss
│ │ │ └── widget
│ │ │ │ ├── assets-rule.vue
│ │ │ │ ├── edit-base.vue
│ │ │ │ ├── edit-module.vue
│ │ │ │ ├── edit-range-user-form.vue
│ │ │ │ ├── edit-range-user.vue
│ │ │ │ └── edit-range.vue
│ │ ├── admin-reward-modules
│ │ │ ├── icon.json
│ │ │ ├── index.vue
│ │ │ └── var.scss
│ │ ├── admin-reward-rule
│ │ │ ├── index.vue
│ │ │ ├── styles
│ │ │ │ ├── a.scss
│ │ │ │ ├── b.scss
│ │ │ │ ├── c.scss
│ │ │ │ ├── d.scss
│ │ │ │ └── index.js
│ │ │ └── var.scss
│ │ └── admin-reward-sidebar
│ │ │ ├── index.vue
│ │ │ ├── sidebar.json
│ │ │ └── var.scss
│ ├── shop
│ │ ├── admin-category-edit
│ │ │ ├── index.vue
│ │ │ ├── service.js
│ │ │ └── widgets
│ │ │ │ ├── commodity_edit.vue
│ │ │ │ ├── display_edit.vue
│ │ │ │ ├── js
│ │ │ │ ├── commodity.js
│ │ │ │ └── sale.js
│ │ │ │ ├── sale_edit.vue
│ │ │ │ └── style.scss
│ │ ├── admin-delivery-edit
│ │ │ ├── index.scss
│ │ │ ├── index.vue
│ │ │ ├── nonDelivery.vue
│ │ │ ├── template_region.vue
│ │ │ ├── template_regionbtn.vue
│ │ │ ├── template_regionfee.vue
│ │ │ └── template_regionlist.vue
│ │ ├── admin-mall-order
│ │ │ ├── action.js
│ │ │ ├── from-item.vue
│ │ │ ├── index.vue
│ │ │ ├── styles
│ │ │ │ ├── from-item.scss
│ │ │ │ ├── list.scss
│ │ │ │ ├── merchandise.scss
│ │ │ │ ├── operating-record.scss
│ │ │ │ └── style.scss
│ │ │ ├── var.scss
│ │ │ └── widgets
│ │ │ │ ├── amount-list.vue
│ │ │ │ ├── detail.vue
│ │ │ │ ├── edit.json
│ │ │ │ ├── leave-message.vue
│ │ │ │ ├── left.vue
│ │ │ │ ├── merchandise.vue
│ │ │ │ ├── operating-record.vue
│ │ │ │ ├── operation-list.vue
│ │ │ │ └── right.vue
│ │ ├── admin-order-edit
│ │ │ ├── action.js
│ │ │ ├── from-item.vue
│ │ │ ├── index.vue
│ │ │ ├── js
│ │ │ │ └── right.js
│ │ │ ├── list.vue
│ │ │ ├── order-list.vue
│ │ │ ├── styles
│ │ │ │ ├── from-item.scss
│ │ │ │ ├── list.scss
│ │ │ │ ├── merchandise.scss
│ │ │ │ ├── operating-record.scss
│ │ │ │ └── style.scss
│ │ │ └── widgets
│ │ │ │ ├── amount-list.vue
│ │ │ │ ├── detail.vue
│ │ │ │ ├── edit.json
│ │ │ │ ├── leave-message.vue
│ │ │ │ ├── left.vue
│ │ │ │ ├── merchandise.vue
│ │ │ │ ├── operating-record.vue
│ │ │ │ ├── operation-list.vue
│ │ │ │ ├── right.vue
│ │ │ │ └── upload.vue
│ │ ├── admin-order-list
│ │ │ ├── action.js
│ │ │ ├── from-item.vue
│ │ │ ├── index.vue
│ │ │ ├── styles
│ │ │ │ ├── from-item.scss
│ │ │ │ ├── list.scss
│ │ │ │ ├── merchandise.scss
│ │ │ │ ├── operating-record.scss
│ │ │ │ └── style.scss
│ │ │ ├── var.scss
│ │ │ └── widgets
│ │ │ │ ├── amount-list.vue
│ │ │ │ ├── detail.vue
│ │ │ │ ├── edit.json
│ │ │ │ ├── leave-message.vue
│ │ │ │ ├── left.vue
│ │ │ │ ├── merchandise.vue
│ │ │ │ ├── operating-record.vue
│ │ │ │ ├── operation-list.vue
│ │ │ │ └── right.vue
│ │ ├── admin-product-edit
│ │ │ ├── add.vue
│ │ │ ├── index.vue
│ │ │ ├── service.js
│ │ │ └── widgets
│ │ │ │ ├── basic.vue
│ │ │ │ ├── classtag.vue
│ │ │ │ ├── content.vue
│ │ │ │ ├── dialog.vue
│ │ │ │ ├── display.vue
│ │ │ │ ├── image.vue
│ │ │ │ ├── js
│ │ │ │ ├── base.js
│ │ │ │ ├── judge.js
│ │ │ │ ├── sale.js
│ │ │ │ ├── sku.js
│ │ │ │ ├── sku_ui.js
│ │ │ │ └── store.js
│ │ │ │ ├── json
│ │ │ │ └── sku.json
│ │ │ │ ├── sale.vue
│ │ │ │ └── style
│ │ │ │ ├── _index.scss
│ │ │ │ ├── add.scss
│ │ │ │ ├── basic.scss
│ │ │ │ ├── classtag.scss
│ │ │ │ ├── content.scss
│ │ │ │ ├── delivery.scss
│ │ │ │ ├── dialog.scss
│ │ │ │ ├── display.scss
│ │ │ │ ├── edit.scss
│ │ │ │ ├── image.scss
│ │ │ │ ├── sale.scss
│ │ │ │ └── sku.scss
│ │ ├── admin-product-line
│ │ │ ├── index.vue
│ │ │ ├── styles
│ │ │ │ └── style.scss
│ │ │ ├── table
│ │ │ │ └── index.vue
│ │ │ └── widgets
│ │ │ │ └── select-goods.vue
│ │ └── admin-product-list
│ │ │ ├── index.vue
│ │ │ └── style.scss
│ ├── sms
│ │ ├── admin-sms-recharge
│ │ │ ├── admin-sms-recharge.scss
│ │ │ └── index.vue
│ │ ├── admin-sms-send
│ │ │ ├── admin-sms-send.scss
│ │ │ └── index.vue
│ │ └── admin-sms-sendgroup
│ │ │ └── index.vue
│ ├── store
│ │ ├── admin-supplier-edit
│ │ │ ├── action.js
│ │ │ ├── from-item.vue
│ │ │ ├── index.vue
│ │ │ ├── js
│ │ │ │ └── right.js
│ │ │ ├── list.vue
│ │ │ ├── order-list.vue
│ │ │ ├── styles
│ │ │ │ ├── from-item.scss
│ │ │ │ ├── list.scss
│ │ │ │ ├── merchandise.scss
│ │ │ │ ├── operating-record.scss
│ │ │ │ └── style.scss
│ │ │ └── widgets
│ │ │ │ ├── amount-list.vue
│ │ │ │ ├── detail.vue
│ │ │ │ ├── edit.json
│ │ │ │ ├── leave-message.vue
│ │ │ │ ├── left.vue
│ │ │ │ ├── merchandise.vue
│ │ │ │ ├── operating-record.vue
│ │ │ │ ├── operation-list.vue
│ │ │ │ ├── right.vue
│ │ │ │ ├── upload.vue
│ │ │ │ └── voucher.vue
│ │ ├── admin-supplier-eidt
│ │ │ ├── action.js
│ │ │ ├── from-item.vue
│ │ │ ├── index.vue
│ │ │ ├── js
│ │ │ │ └── right.js
│ │ │ ├── list.vue
│ │ │ ├── order-list.vue
│ │ │ ├── styles
│ │ │ │ ├── from-item.scss
│ │ │ │ ├── list.scss
│ │ │ │ ├── merchandise.scss
│ │ │ │ ├── operating-record.scss
│ │ │ │ └── style.scss
│ │ │ └── widgets
│ │ │ │ ├── amount-list.vue
│ │ │ │ ├── detail.vue
│ │ │ │ ├── edit.json
│ │ │ │ ├── leave-message.vue
│ │ │ │ ├── left.vue
│ │ │ │ ├── merchandise.vue
│ │ │ │ ├── operating-record.vue
│ │ │ │ ├── operation-list.vue
│ │ │ │ ├── right.vue
│ │ │ │ └── upload.vue
│ │ └── admin-supplier-order
│ │ │ ├── action.js
│ │ │ ├── from-item.vue
│ │ │ ├── index.vue
│ │ │ ├── styles
│ │ │ ├── from-item.scss
│ │ │ ├── list.scss
│ │ │ ├── merchandise.scss
│ │ │ ├── operating-record.scss
│ │ │ └── style.scss
│ │ │ ├── var.scss
│ │ │ └── widgets
│ │ │ ├── amount-list.vue
│ │ │ ├── detail.vue
│ │ │ ├── edit.json
│ │ │ ├── leave-message.vue
│ │ │ ├── left.vue
│ │ │ ├── merchandise.vue
│ │ │ ├── operating-record.vue
│ │ │ ├── operation-list.vue
│ │ │ └── right.vue
│ └── user
│ │ ├── admin-role-edit
│ │ ├── index.vue
│ │ ├── open.vue
│ │ └── styles
│ │ │ ├── open.scss
│ │ │ └── style.scss
│ │ ├── admin-role-open
│ │ └── index.vue
│ │ └── admin-user-edit
│ │ ├── actives.js
│ │ ├── index.vue
│ │ └── widgets
│ │ ├── edit.json
│ │ ├── left.vue
│ │ ├── list.vue
│ │ ├── right.vue
│ │ ├── style.scss
│ │ └── usersubpage
│ │ ├── basic.vue
│ │ ├── detailed.vue
│ │ └── modify.vue
├── assets
│ ├── border
│ │ ├── index.scss
│ │ ├── none
│ │ │ └── style.scss
│ │ ├── protlet
│ │ │ └── style.scss
│ │ └── style.scss
│ └── style
│ │ ├── css
│ │ ├── _index.scss
│ │ └── normalize.scss
│ │ ├── element-variables.scss
│ │ ├── flaticon
│ │ ├── css
│ │ │ └── flaticon.css
│ │ ├── flaticon.html
│ │ └── fonts
│ │ │ ├── Flaticon.eot
│ │ │ ├── Flaticon.svg
│ │ │ ├── Flaticon.ttf
│ │ │ └── Flaticon.woff
│ │ ├── iconall
│ │ ├── LICENSE.txt
│ │ ├── README.txt
│ │ ├── codes.json
│ │ ├── config.json
│ │ ├── css
│ │ │ ├── animation.css
│ │ │ ├── iconfount-codes.css
│ │ │ ├── iconfount-embedded.css
│ │ │ ├── iconfount-ie7-codes.css
│ │ │ ├── iconfount-ie7.css
│ │ │ └── iconfount.css
│ │ ├── demo.html
│ │ └── font
│ │ │ ├── iconfount-403bce150a.eot
│ │ │ ├── iconfount-403bce150a.svg
│ │ │ ├── iconfount-403bce150a.ttf
│ │ │ ├── iconfount-403bce150a.woff
│ │ │ └── iconfount-403bce150a.woff2
│ │ ├── index.scss
│ │ ├── mixins.scss
│ │ ├── sass
│ │ ├── _hover.scss
│ │ ├── _index.scss
│ │ ├── base.scss
│ │ └── colors.scss
│ │ ├── theme-src
│ │ ├── alert.scss
│ │ ├── aside.scss
│ │ ├── autocomplete.scss
│ │ ├── badge.scss
│ │ ├── base.scss
│ │ ├── breadcrumb-item.scss
│ │ ├── breadcrumb.scss
│ │ ├── button-group.scss
│ │ ├── button.scss
│ │ ├── card.scss
│ │ ├── carousel-item.scss
│ │ ├── carousel.scss
│ │ ├── cascader.scss
│ │ ├── checkbox-button.scss
│ │ ├── checkbox-group.scss
│ │ ├── checkbox.scss
│ │ ├── col.scss
│ │ ├── collapse-item.scss
│ │ ├── collapse.scss
│ │ ├── color-picker.scss
│ │ ├── common
│ │ │ ├── popup.scss
│ │ │ ├── transition.scss
│ │ │ └── var.scss
│ │ ├── container.scss
│ │ ├── date-picker.scss
│ │ ├── date-picker
│ │ │ ├── date-picker.scss
│ │ │ ├── date-range-picker.scss
│ │ │ ├── date-table.scss
│ │ │ ├── month-table.scss
│ │ │ ├── picker-panel.scss
│ │ │ ├── picker.scss
│ │ │ ├── time-picker.scss
│ │ │ ├── time-range-picker.scss
│ │ │ ├── time-spinner.scss
│ │ │ └── year-table.scss
│ │ ├── dialog.scss
│ │ ├── display.scss
│ │ ├── dropdown-item.scss
│ │ ├── dropdown-menu.scss
│ │ ├── dropdown.scss
│ │ ├── fonts
│ │ │ ├── element-icons.ttf
│ │ │ └── element-icons.woff
│ │ ├── footer.scss
│ │ ├── form-item.scss
│ │ ├── form.scss
│ │ ├── header.scss
│ │ ├── icon.scss
│ │ ├── index.scss
│ │ ├── input-number.scss
│ │ ├── input.scss
│ │ ├── loading.scss
│ │ ├── main.scss
│ │ ├── menu-item-group.scss
│ │ ├── menu-item.scss
│ │ ├── menu.scss
│ │ ├── message-box.scss
│ │ ├── message.scss
│ │ ├── mixins
│ │ │ ├── _button.scss
│ │ │ ├── config.scss
│ │ │ ├── function.scss
│ │ │ ├── mixins.scss
│ │ │ └── utils.scss
│ │ ├── notification.scss
│ │ ├── option-group.scss
│ │ ├── option.scss
│ │ ├── pagination.scss
│ │ ├── popover.scss
│ │ ├── popper.scss
│ │ ├── progress.scss
│ │ ├── radio-button.scss
│ │ ├── radio-group.scss
│ │ ├── radio.scss
│ │ ├── rate.scss
│ │ ├── reset.scss
│ │ ├── row.scss
│ │ ├── scrollbar.scss
│ │ ├── select-dropdown.scss
│ │ ├── select.scss
│ │ ├── slider.scss
│ │ ├── spinner.scss
│ │ ├── step.scss
│ │ ├── steps.scss
│ │ ├── submenu.scss
│ │ ├── switch.scss
│ │ ├── tab-pane.scss
│ │ ├── table-column.scss
│ │ ├── table.scss
│ │ ├── tabs.scss
│ │ ├── tag.scss
│ │ ├── time-picker.scss
│ │ ├── time-select.scss
│ │ ├── tooltip.scss
│ │ ├── transfer.scss
│ │ ├── tree.scss
│ │ └── upload.scss
│ │ └── theme.scss
├── components
│ ├── activitys
│ │ └── zk-groupbuy
│ │ │ ├── index.vue
│ │ │ ├── styles
│ │ │ ├── a.scss
│ │ │ ├── b.scss
│ │ │ ├── c.scss
│ │ │ ├── d.scss
│ │ │ └── index.js
│ │ │ └── var.scss
│ ├── articles
│ │ ├── zk-aritcle-detail
│ │ │ ├── index.vue
│ │ │ ├── styles
│ │ │ │ ├── a.scss
│ │ │ │ ├── b.scss
│ │ │ │ ├── c.scss
│ │ │ │ ├── d.scss
│ │ │ │ └── index.js
│ │ │ └── var.scss
│ │ ├── zk-article
│ │ │ ├── index.vue
│ │ │ ├── styles
│ │ │ │ ├── a.scss
│ │ │ │ ├── b.scss
│ │ │ │ ├── c.scss
│ │ │ │ ├── d.scss
│ │ │ │ └── index.js
│ │ │ └── var.scss
│ │ └── zk-help
│ │ │ ├── index.vue
│ │ │ ├── styles
│ │ │ ├── a.scss
│ │ │ ├── b.scss
│ │ │ ├── c.scss
│ │ │ ├── d.scss
│ │ │ └── index.js
│ │ │ └── var.scss
│ ├── common
│ │ ├── zk-backtop
│ │ │ ├── index.vue
│ │ │ ├── styles
│ │ │ │ ├── a.scss
│ │ │ │ ├── b.scss
│ │ │ │ ├── c.scss
│ │ │ │ ├── d.scss
│ │ │ │ └── index.js
│ │ │ └── var.scss
│ │ ├── zk-logo
│ │ │ ├── index.vue
│ │ │ ├── styles
│ │ │ │ ├── a.scss
│ │ │ │ ├── b.scss
│ │ │ │ ├── c.scss
│ │ │ │ ├── d.scss
│ │ │ │ └── index.js
│ │ │ └── var.scss
│ │ ├── zk-nav
│ │ │ ├── index.vue
│ │ │ ├── styles
│ │ │ │ ├── a.scss
│ │ │ │ ├── b.scss
│ │ │ │ ├── c.scss
│ │ │ │ ├── d.scss
│ │ │ │ └── index.js
│ │ │ └── var.scss
│ │ ├── zk-pay
│ │ │ ├── index.scss
│ │ │ └── index.vue
│ │ ├── zk-progress
│ │ │ ├── index.vue
│ │ │ └── var.scss
│ │ └── zk-top-nav
│ │ │ ├── index.vue
│ │ │ ├── styles
│ │ │ ├── a.scss
│ │ │ ├── b.scss
│ │ │ ├── c.scss
│ │ │ ├── d.scss
│ │ │ └── index.js
│ │ │ └── var.scss
│ ├── finance
│ │ └── zk-amount
│ │ │ ├── index.vue
│ │ │ ├── styles
│ │ │ ├── a.scss
│ │ │ ├── b.scss
│ │ │ ├── c.scss
│ │ │ ├── d.scss
│ │ │ └── index.js
│ │ │ └── var.scss
│ ├── order
│ │ ├── zk-buy
│ │ │ ├── index.scss
│ │ │ ├── index.vue
│ │ │ └── styles
│ │ │ │ └── a.scss
│ │ ├── zk-cart
│ │ │ ├── index.vue
│ │ │ ├── styles
│ │ │ │ ├── a.scss
│ │ │ │ ├── b.scss
│ │ │ │ ├── c.scss
│ │ │ │ ├── d.scss
│ │ │ │ └── index.js
│ │ │ └── var.scss
│ │ ├── zk-order-list
│ │ │ ├── index.vue
│ │ │ ├── styles
│ │ │ │ ├── a.scss
│ │ │ │ ├── b.scss
│ │ │ │ ├── c.scss
│ │ │ │ ├── d.scss
│ │ │ │ └── index.js
│ │ │ └── var.scss
│ │ ├── zk-order-rate
│ │ │ ├── index.vue
│ │ │ ├── styles
│ │ │ │ ├── a.scss
│ │ │ │ ├── b.scss
│ │ │ │ ├── c.scss
│ │ │ │ ├── d.scss
│ │ │ │ └── index.js
│ │ │ └── var.scss
│ │ └── zk-order-show
│ │ │ ├── index.vue
│ │ │ ├── styles
│ │ │ ├── a.scss
│ │ │ ├── b.scss
│ │ │ ├── c.scss
│ │ │ ├── d.scss
│ │ │ └── index.js
│ │ │ └── var.scss
│ ├── product
│ │ ├── zk-product-class
│ │ │ ├── index.vue
│ │ │ ├── styles
│ │ │ │ ├── a.scss
│ │ │ │ ├── b.scss
│ │ │ │ ├── c.scss
│ │ │ │ ├── d.scss
│ │ │ │ └── index.js
│ │ │ └── var.scss
│ │ └── zk-product-list
│ │ │ ├── index.vue
│ │ │ ├── styles
│ │ │ ├── a.scss
│ │ │ ├── b.scss
│ │ │ ├── c.scss
│ │ │ ├── d.scss
│ │ │ └── index.js
│ │ │ └── var.scss
│ ├── reports
│ │ ├── zk-report-table
│ │ │ ├── actions.js
│ │ │ ├── index.json
│ │ │ ├── index.md
│ │ │ ├── index.vue
│ │ │ ├── styles
│ │ │ │ ├── actions.js
│ │ │ │ ├── count-report.vue
│ │ │ │ ├── sum-report.vue
│ │ │ │ └── total-count-report.vue
│ │ │ ├── timer.js
│ │ │ └── var.scss
│ │ └── zk-single-report
│ │ │ ├── index.vue
│ │ │ └── items
│ │ │ ├── 01-number-item.vue
│ │ │ ├── 02-tabs-item.vue
│ │ │ ├── 03-omit-item.vue
│ │ │ ├── 04-mount-item.vue
│ │ │ ├── amount-item.vue
│ │ │ ├── general-item.vue
│ │ │ ├── growing-item.vue
│ │ │ ├── introduce-item.vue
│ │ │ ├── member-item.vue
│ │ │ ├── ratio-item.vue
│ │ │ ├── states-item.vue
│ │ │ ├── style.scss
│ │ │ └── total-item.vue
│ ├── themes
│ │ ├── zk-address
│ │ │ ├── index.vue
│ │ │ ├── styles
│ │ │ │ ├── a.scss
│ │ │ │ ├── b.scss
│ │ │ │ ├── c.scss
│ │ │ │ ├── d.scss
│ │ │ │ └── index.js
│ │ │ └── var.scss
│ │ ├── zk-audio
│ │ │ ├── index.vue
│ │ │ ├── styles
│ │ │ │ ├── a.scss
│ │ │ │ ├── b.scss
│ │ │ │ ├── c.scss
│ │ │ │ ├── d.scss
│ │ │ │ └── index.js
│ │ │ └── var.scss
│ │ ├── zk-auto-dialog
│ │ │ └── index.vue
│ │ ├── zk-auto-form
│ │ │ ├── autoform.scss
│ │ │ ├── convert.js
│ │ │ ├── form-item.back.vue
│ │ │ ├── form-item.vue
│ │ │ ├── index.back.vue
│ │ │ ├── index.vue
│ │ │ ├── property.js
│ │ │ ├── reg-map.js
│ │ │ ├── service.js
│ │ │ └── style.scss
│ │ ├── zk-avatar
│ │ │ ├── index.vue
│ │ │ ├── styles
│ │ │ │ ├── a.scss
│ │ │ │ ├── b.scss
│ │ │ │ ├── c.scss
│ │ │ │ ├── d.scss
│ │ │ │ └── index.js
│ │ │ └── var.scss
│ │ ├── zk-countdown
│ │ │ ├── index.vue
│ │ │ ├── styles
│ │ │ │ ├── a.scss
│ │ │ │ ├── b.scss
│ │ │ │ ├── c.scss
│ │ │ │ ├── d.scss
│ │ │ │ └── index.js
│ │ │ └── var.scss
│ │ ├── zk-dialog
│ │ │ ├── dialog.vue
│ │ │ ├── index.vue
│ │ │ ├── styles
│ │ │ │ ├── a.scss
│ │ │ │ ├── b.scss
│ │ │ │ ├── c.scss
│ │ │ │ ├── d.scss
│ │ │ │ └── index.js
│ │ │ └── var.scss
│ │ ├── zk-file-manage
│ │ │ ├── index.vue
│ │ │ ├── service.js
│ │ │ ├── style.scss
│ │ │ └── upload.js
│ │ ├── zk-foot
│ │ │ ├── index.vue
│ │ │ ├── styles
│ │ │ │ ├── a.scss
│ │ │ │ ├── b.scss
│ │ │ │ ├── c.scss
│ │ │ │ ├── d.scss
│ │ │ │ └── index.js
│ │ │ └── var.scss
│ │ ├── zk-grid
│ │ │ ├── index.vue
│ │ │ ├── styles
│ │ │ │ ├── a.scss
│ │ │ │ ├── b.scss
│ │ │ │ ├── c.scss
│ │ │ │ ├── d.scss
│ │ │ │ └── index.js
│ │ │ └── var.scss
│ │ ├── zk-head
│ │ │ ├── index.vue
│ │ │ ├── styles
│ │ │ │ ├── a.scss
│ │ │ │ ├── b.scss
│ │ │ │ ├── c.scss
│ │ │ │ ├── d.scss
│ │ │ │ └── index.js
│ │ │ └── var.scss
│ │ ├── zk-html
│ │ │ ├── index.vue
│ │ │ ├── styles
│ │ │ │ ├── a.scss
│ │ │ │ ├── b.scss
│ │ │ │ ├── c.scss
│ │ │ │ ├── d.scss
│ │ │ │ └── index.js
│ │ │ └── var.scss
│ │ ├── zk-image-list
│ │ │ ├── index.vue
│ │ │ ├── styles
│ │ │ │ ├── a.scss
│ │ │ │ ├── b.scss
│ │ │ │ ├── c.scss
│ │ │ │ ├── d.scss
│ │ │ │ └── index.js
│ │ │ └── var.scss
│ │ ├── zk-image
│ │ │ ├── index.vue
│ │ │ ├── styles
│ │ │ │ ├── a.scss
│ │ │ │ ├── b.scss
│ │ │ │ ├── c.scss
│ │ │ │ ├── d.scss
│ │ │ │ └── index.js
│ │ │ └── var.scss
│ │ ├── zk-keyword
│ │ │ ├── index.vue
│ │ │ ├── styles
│ │ │ │ ├── a.scss
│ │ │ │ ├── b.scss
│ │ │ │ ├── c.scss
│ │ │ │ ├── d.scss
│ │ │ │ └── index.js
│ │ │ └── var.scss
│ │ ├── zk-list
│ │ │ ├── index.vue
│ │ │ ├── styles
│ │ │ │ ├── a.scss
│ │ │ │ ├── b.scss
│ │ │ │ ├── c.scss
│ │ │ │ ├── d.scss
│ │ │ │ └── index.js
│ │ │ └── var.scss
│ │ ├── zk-popup
│ │ │ ├── index.vue
│ │ │ ├── styles
│ │ │ │ ├── a.scss
│ │ │ │ ├── b.scss
│ │ │ │ ├── c.scss
│ │ │ │ ├── d.scss
│ │ │ │ └── index.js
│ │ │ └── var.scss
│ │ ├── zk-quick-action
│ │ │ ├── index.vue
│ │ │ ├── items
│ │ │ │ ├── 01-tab-item.vue
│ │ │ │ ├── 02-common-item.vue
│ │ │ │ ├── 03-recommend-item.vue
│ │ │ │ ├── 04-more-item.vue
│ │ │ │ ├── adcolumn-item.vue
│ │ │ │ ├── exchange-item.vue
│ │ │ │ ├── guide-item.vue
│ │ │ │ ├── rank-item.vue
│ │ │ │ └── styles.scss
│ │ │ └── var.scss
│ │ ├── zk-search
│ │ │ ├── index.vue
│ │ │ ├── styles
│ │ │ │ ├── a.scss
│ │ │ │ ├── b.scss
│ │ │ │ ├── c.scss
│ │ │ │ ├── d.scss
│ │ │ │ └── index.js
│ │ │ └── var.scss
│ │ ├── zk-swiper-nav
│ │ │ ├── index.vue
│ │ │ ├── styles
│ │ │ │ ├── a.scss
│ │ │ │ ├── b.scss
│ │ │ │ ├── c.scss
│ │ │ │ ├── d.scss
│ │ │ │ └── index.js
│ │ │ └── var.scss
│ │ ├── zk-swiper
│ │ │ ├── index.vue
│ │ │ ├── styles
│ │ │ │ ├── a.scss
│ │ │ │ ├── b.scss
│ │ │ │ ├── c.scss
│ │ │ │ ├── d.scss
│ │ │ │ └── index.js
│ │ │ └── var.scss
│ │ ├── zk-table
│ │ │ ├── index.vue
│ │ │ ├── styles
│ │ │ │ ├── a.scss
│ │ │ │ ├── b.scss
│ │ │ │ ├── c.scss
│ │ │ │ ├── d.scss
│ │ │ │ └── index.js
│ │ │ └── var.scss
│ │ ├── zk-text
│ │ │ ├── index.vue
│ │ │ ├── styles
│ │ │ │ ├── a.scss
│ │ │ │ ├── b.scss
│ │ │ │ ├── c.scss
│ │ │ │ ├── d.scss
│ │ │ │ └── index.js
│ │ │ └── var.scss
│ │ ├── zk-title
│ │ │ ├── index.vue
│ │ │ ├── styles
│ │ │ │ ├── a.scss
│ │ │ │ ├── b.scss
│ │ │ │ ├── c.scss
│ │ │ │ ├── d.scss
│ │ │ │ └── index.js
│ │ │ └── var.scss
│ │ ├── zk-top
│ │ │ ├── index.vue
│ │ │ └── var.scss
│ │ ├── zk-treetable
│ │ │ ├── eval.js
│ │ │ ├── index.vue
│ │ │ └── var.scss
│ │ └── zk-video
│ │ │ ├── index.vue
│ │ │ ├── styles
│ │ │ ├── a.scss
│ │ │ ├── b.scss
│ │ │ ├── c.scss
│ │ │ ├── d.scss
│ │ │ └── index.js
│ │ │ └── var.scss
│ └── user
│ │ ├── zk-address-edit
│ │ ├── index.vue
│ │ ├── styles
│ │ │ ├── a.scss
│ │ │ ├── b.scss
│ │ │ ├── c.scss
│ │ │ ├── d.scss
│ │ │ └── index.js
│ │ └── var.scss
│ │ ├── zk-head-user
│ │ ├── index.vue
│ │ ├── styles
│ │ │ ├── a.scss
│ │ │ ├── b.scss
│ │ │ ├── c.scss
│ │ │ ├── d.scss
│ │ │ └── index.js
│ │ └── var.scss
│ │ ├── zk-qrcode
│ │ ├── index.vue
│ │ ├── styles
│ │ │ ├── a.scss
│ │ │ ├── b.scss
│ │ │ ├── c.scss
│ │ │ ├── d.scss
│ │ │ └── index.js
│ │ └── var.scss
│ │ └── zk-user-address
│ │ ├── index.vue
│ │ ├── styles
│ │ ├── a.scss
│ │ ├── b.scss
│ │ ├── c.scss
│ │ ├── d.scss
│ │ └── index.js
│ │ └── var.scss
├── elements
│ ├── x-autoconfig
│ │ └── index.vue
│ ├── x-badge
│ │ └── index.vue
│ ├── x-border
│ │ ├── actions.js
│ │ ├── index.vue
│ │ └── style.scss
│ ├── x-checkbox
│ │ └── index.vue
│ ├── x-city-picker
│ │ └── index.vue
│ ├── x-class
│ │ └── index.vue
│ ├── x-code
│ │ └── index.vue
│ ├── x-col
│ │ └── index.vue
│ ├── x-count-up
│ │ └── index.vue
│ ├── x-data-select
│ │ ├── index.vue
│ │ ├── product.json
│ │ ├── user.json
│ │ └── widget.json
│ ├── x-editor
│ │ ├── index.vue
│ │ ├── styles
│ │ │ ├── a.scss
│ │ │ ├── b.scss
│ │ │ ├── c.scss
│ │ │ ├── d.scss
│ │ │ └── index.js
│ │ └── var.scss
│ ├── x-enum
│ │ └── index.vue
│ ├── x-grade
│ │ ├── index.vue
│ │ └── var.scss
│ ├── x-icon
│ │ └── index.vue
│ ├── x-image
│ │ └── index.vue
│ ├── x-json
│ │ ├── convert.js
│ │ └── index.vue
│ ├── x-label
│ │ └── index.vue
│ ├── x-line
│ │ ├── index.vue
│ │ └── style.scss
│ ├── x-markdown
│ │ └── index.vue
│ ├── x-qrcode
│ │ └── index.vue
│ ├── x-radio
│ │ └── index.vue
│ ├── x-select-image
│ │ ├── index.vue
│ │ └── var.scss
│ ├── x-select
│ │ └── index.vue
│ ├── x-table-button
│ │ └── index.vue
│ ├── x-table
│ │ ├── action.js
│ │ ├── columnItem
│ │ │ ├── image.vue
│ │ │ └── link.vue
│ │ ├── convert.js
│ │ ├── data.js
│ │ ├── dialog.js
│ │ ├── excel.js
│ │ ├── format.js
│ │ ├── index.vue
│ │ ├── props.js
│ │ ├── search
│ │ │ ├── index.vue
│ │ │ └── style.scss
│ │ └── style.scss
│ ├── x-tabs
│ │ └── index.vue
│ ├── x-tags
│ │ └── index.vue
│ ├── x-ueditor
│ │ └── index.vue
│ ├── x-upload
│ │ └── index.vue
│ └── x-widget
│ │ ├── index.vue
│ │ ├── service.js
│ │ └── widget.json
├── main.js
├── main.tpl.js
├── pages
│ ├── admin
│ │ ├── city
│ │ │ └── index.vue
│ │ ├── index.vue
│ │ ├── login
│ │ │ └── index.vue
│ │ ├── market
│ │ │ ├── index.vue
│ │ │ └── login.vue
│ │ └── store
│ │ │ └── index.vue
│ ├── diy
│ │ ├── admin-diy.vue
│ │ ├── default.vue
│ │ ├── index.vue
│ │ ├── layout-item.vue
│ │ └── style.scss
│ ├── index.vue
│ └── test.vue
└── service
│ ├── api
│ ├── diy.api.js
│ └── type.api.js
│ ├── config.js
│ ├── core
│ ├── diy.http.js
│ ├── http.js
│ ├── theme.js
│ └── token.js
│ ├── directives
│ └── el-dragDialog
│ │ ├── drag.js
│ │ └── index.js
│ ├── prototypes
│ ├── admin.js
│ ├── api.js
│ ├── base.js
│ ├── crud.js
│ ├── prototype.js
│ ├── random.js
│ └── user.js
│ ├── router
│ └── index.js
│ ├── store
│ └── index.js
│ └── utils
│ ├── crypto.js
│ ├── format.js
│ ├── helper.js
│ └── local.js
├── static
└── img
│ ├── logo.png
│ └── pohot_8.png
└── vue.config.js
/.editorconfig:
--------------------------------------------------------------------------------
1 | root = true
2 |
3 | [*]
4 | charset = utf-8
5 | indent_style = space
6 | indent_size = 2
7 | end_of_line = lf
8 | insert_final_newline = true
9 | trim_trailing_whitespace = true
10 |
--------------------------------------------------------------------------------
/.eslintrc.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | root: true,
3 | env: {
4 | node: true
5 | },
6 | 'extends': [
7 | 'plugin:vue/essential',
8 | '@vue/standard'
9 | ],
10 | rules: {
11 | 'arrow-parens': 0,
12 | 'no-multiple-empty-lines': 0,
13 | 'no-trailing-spaces': 0,
14 | 'no-mixed-spaces-and-tabs': 0,
15 | 'no-duplicates': 0,
16 | 'no-tabs': 0,
17 | 'no-eval': 0,
18 | 'indent': 0,
19 | semi: 2,
20 | eqeqeq: 2,
21 | 'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
22 | 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
23 | },
24 | parserOptions: {
25 | parser: 'babel-eslint'
26 | },
27 | globals: {
28 | App: true,
29 | Page: true,
30 | wx: true,
31 | uni: true,
32 | getApp: true,
33 | getPage: true,
34 | getCurrentPages: true,
35 | requirePlugin: true
36 | }
37 | }
38 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | node_modules
3 | /dist
4 |
5 | # local env files
6 | .env.local
7 | .env.*.local
8 |
9 | # Log files
10 | npm-debug.log*
11 | yarn-debug.log*
12 | yarn-error.log*
13 |
14 | # Editor directories and files
15 | .idea
16 | *.suo
17 | *.ntvs*
18 | *.njsproj
19 | *.sln
20 | *.sw*
21 |
22 | /src/service/config.js
23 | src/service/config.js
24 | src/service/config.js
25 |
--------------------------------------------------------------------------------
/.vscode/launch.json:
--------------------------------------------------------------------------------
1 | {
2 | // 使用 IntelliSense 了解相关属性。
3 | // 悬停以查看现有属性的描述。
4 | // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
5 | "version": "0.2.0",
6 | "configurations": [{
7 | "type": "chrome",
8 | "request": "launch",
9 | "name": "启动 Chrome 并打开 localhost",
10 | "url": "http://localhost:8080",
11 | "webRoot": "${workspaceFolder}"
12 | }]
13 | }
14 |
--------------------------------------------------------------------------------
/babel.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | presets: [
3 | '@vue/app'
4 | ]
5 | }
6 |
--------------------------------------------------------------------------------
/public/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | 阿拉博数
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/attachment/fileTypeImages/icon_chm.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/attachment/fileTypeImages/icon_chm.gif
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/attachment/fileTypeImages/icon_default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/attachment/fileTypeImages/icon_default.png
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/attachment/fileTypeImages/icon_doc.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/attachment/fileTypeImages/icon_doc.gif
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/attachment/fileTypeImages/icon_exe.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/attachment/fileTypeImages/icon_exe.gif
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/attachment/fileTypeImages/icon_jpg.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/attachment/fileTypeImages/icon_jpg.gif
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/attachment/fileTypeImages/icon_mp3.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/attachment/fileTypeImages/icon_mp3.gif
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/attachment/fileTypeImages/icon_mv.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/attachment/fileTypeImages/icon_mv.gif
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/attachment/fileTypeImages/icon_pdf.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/attachment/fileTypeImages/icon_pdf.gif
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/attachment/fileTypeImages/icon_ppt.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/attachment/fileTypeImages/icon_ppt.gif
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/attachment/fileTypeImages/icon_psd.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/attachment/fileTypeImages/icon_psd.gif
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/attachment/fileTypeImages/icon_rar.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/attachment/fileTypeImages/icon_rar.gif
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/attachment/fileTypeImages/icon_txt.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/attachment/fileTypeImages/icon_txt.gif
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/attachment/fileTypeImages/icon_xls.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/attachment/fileTypeImages/icon_xls.gif
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/attachment/images/alignicon.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/attachment/images/alignicon.gif
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/attachment/images/alignicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/attachment/images/alignicon.png
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/attachment/images/bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/attachment/images/bg.png
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/attachment/images/file-icons.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/attachment/images/file-icons.gif
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/attachment/images/file-icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/attachment/images/file-icons.png
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/attachment/images/icons.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/attachment/images/icons.gif
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/attachment/images/icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/attachment/images/icons.png
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/attachment/images/image.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/attachment/images/image.png
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/attachment/images/progress.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/attachment/images/progress.png
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/attachment/images/success.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/attachment/images/success.gif
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/attachment/images/success.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/attachment/images/success.png
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/background/images/bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/background/images/bg.png
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/background/images/success.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/background/images/success.png
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/charts/images/charts0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/charts/images/charts0.png
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/charts/images/charts1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/charts/images/charts1.png
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/charts/images/charts2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/charts/images/charts2.png
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/charts/images/charts3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/charts/images/charts3.png
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/charts/images/charts4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/charts/images/charts4.png
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/charts/images/charts5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/charts/images/charts5.png
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/emotion/images/0.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/emotion/images/0.gif
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/emotion/images/bface.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/emotion/images/bface.gif
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/emotion/images/cface.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/emotion/images/cface.gif
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/emotion/images/fface.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/emotion/images/fface.gif
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/emotion/images/jxface2.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/emotion/images/jxface2.gif
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/emotion/images/neweditor-tab-bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/emotion/images/neweditor-tab-bg.png
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/emotion/images/tface.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/emotion/images/tface.gif
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/emotion/images/wface.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/emotion/images/wface.gif
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/emotion/images/yface.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/emotion/images/yface.gif
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/help/help.css:
--------------------------------------------------------------------------------
1 | .wrapper{width: 370px;margin: 10px auto;zoom: 1;}
2 | .tabbody{height: 360px;}
3 | .tabbody .panel{width:100%;height: 360px;position: absolute;background: #fff;}
4 | .tabbody .panel h1{font-size:26px;margin: 5px 0 0 5px;}
5 | .tabbody .panel p{font-size:12px;margin: 5px 0 0 5px;}
6 | .tabbody table{width:90%;line-height: 20px;margin: 5px 0 0 5px;;}
7 | .tabbody table thead{font-weight: bold;line-height: 25px;}
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/image/images/alignicon.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/image/images/alignicon.jpg
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/image/images/bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/image/images/bg.png
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/image/images/icons.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/image/images/icons.gif
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/image/images/icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/image/images/icons.png
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/image/images/image.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/image/images/image.png
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/image/images/progress.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/image/images/progress.png
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/image/images/success.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/image/images/success.gif
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/image/images/success.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/image/images/success.png
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/scrawl/images/addimg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/scrawl/images/addimg.png
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/scrawl/images/brush.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/scrawl/images/brush.png
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/scrawl/images/delimg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/scrawl/images/delimg.png
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/scrawl/images/delimgH.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/scrawl/images/delimgH.png
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/scrawl/images/empty.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/scrawl/images/empty.png
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/scrawl/images/emptyH.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/scrawl/images/emptyH.png
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/scrawl/images/eraser.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/scrawl/images/eraser.png
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/scrawl/images/redo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/scrawl/images/redo.png
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/scrawl/images/redoH.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/scrawl/images/redoH.png
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/scrawl/images/scale.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/scrawl/images/scale.png
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/scrawl/images/scaleH.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/scrawl/images/scaleH.png
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/scrawl/images/size.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/scrawl/images/size.png
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/scrawl/images/undo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/scrawl/images/undo.png
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/scrawl/images/undoH.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/scrawl/images/undoH.png
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/spechars/spechars.html:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
6 |
7 |
8 |
14 |
15 |
16 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/table/dragicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/table/dragicon.png
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/template/images/bg.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/template/images/bg.gif
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/template/images/pre0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/template/images/pre0.png
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/template/images/pre1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/template/images/pre1.png
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/template/images/pre2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/template/images/pre2.png
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/template/images/pre3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/template/images/pre3.png
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/template/images/pre4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/template/images/pre4.png
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/video/images/bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/video/images/bg.png
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/video/images/center_focus.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/video/images/center_focus.jpg
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/video/images/file-icons.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/video/images/file-icons.gif
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/video/images/file-icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/video/images/file-icons.png
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/video/images/icons.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/video/images/icons.gif
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/video/images/icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/video/images/icons.png
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/video/images/image.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/video/images/image.png
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/video/images/left_focus.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/video/images/left_focus.jpg
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/video/images/none_focus.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/video/images/none_focus.jpg
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/video/images/progress.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/video/images/progress.png
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/video/images/right_focus.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/video/images/right_focus.jpg
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/video/images/success.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/video/images/success.gif
--------------------------------------------------------------------------------
/public/static/UEditor/dialogs/video/images/success.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/dialogs/video/images/success.png
--------------------------------------------------------------------------------
/public/static/UEditor/jsp/controller.jsp:
--------------------------------------------------------------------------------
1 | <%@ page language="java" contentType="text/html; charset=UTF-8"
2 | import="com.baidu.ueditor.ActionEnter"
3 | pageEncoding="UTF-8"%>
4 | <%@ page trimDirectiveWhitespaces="true" %>
5 | <%
6 |
7 | request.setCharacterEncoding( "utf-8" );
8 | response.setHeader("Content-Type" , "text/html");
9 |
10 | String rootPath = application.getRealPath( "/" );
11 |
12 | out.write( new ActionEnter( request, rootPath ).exec() );
13 |
14 | %>
--------------------------------------------------------------------------------
/public/static/UEditor/jsp/lib/commons-codec-1.9.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/jsp/lib/commons-codec-1.9.jar
--------------------------------------------------------------------------------
/public/static/UEditor/jsp/lib/commons-fileupload-1.3.1.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/jsp/lib/commons-fileupload-1.3.1.jar
--------------------------------------------------------------------------------
/public/static/UEditor/jsp/lib/commons-io-2.4.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/jsp/lib/commons-io-2.4.jar
--------------------------------------------------------------------------------
/public/static/UEditor/jsp/lib/json.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/jsp/lib/json.jar
--------------------------------------------------------------------------------
/public/static/UEditor/jsp/lib/ueditor-1.1.2.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/jsp/lib/ueditor-1.1.2.jar
--------------------------------------------------------------------------------
/public/static/UEditor/lang/en/images/addimage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/lang/en/images/addimage.png
--------------------------------------------------------------------------------
/public/static/UEditor/lang/en/images/alldeletebtnhoverskin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/lang/en/images/alldeletebtnhoverskin.png
--------------------------------------------------------------------------------
/public/static/UEditor/lang/en/images/alldeletebtnupskin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/lang/en/images/alldeletebtnupskin.png
--------------------------------------------------------------------------------
/public/static/UEditor/lang/en/images/background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/lang/en/images/background.png
--------------------------------------------------------------------------------
/public/static/UEditor/lang/en/images/button.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/lang/en/images/button.png
--------------------------------------------------------------------------------
/public/static/UEditor/lang/en/images/copy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/lang/en/images/copy.png
--------------------------------------------------------------------------------
/public/static/UEditor/lang/en/images/deletedisable.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/lang/en/images/deletedisable.png
--------------------------------------------------------------------------------
/public/static/UEditor/lang/en/images/deleteenable.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/lang/en/images/deleteenable.png
--------------------------------------------------------------------------------
/public/static/UEditor/lang/en/images/listbackground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/lang/en/images/listbackground.png
--------------------------------------------------------------------------------
/public/static/UEditor/lang/en/images/localimage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/lang/en/images/localimage.png
--------------------------------------------------------------------------------
/public/static/UEditor/lang/en/images/music.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/lang/en/images/music.png
--------------------------------------------------------------------------------
/public/static/UEditor/lang/en/images/rotateleftdisable.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/lang/en/images/rotateleftdisable.png
--------------------------------------------------------------------------------
/public/static/UEditor/lang/en/images/rotateleftenable.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/lang/en/images/rotateleftenable.png
--------------------------------------------------------------------------------
/public/static/UEditor/lang/en/images/rotaterightdisable.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/lang/en/images/rotaterightdisable.png
--------------------------------------------------------------------------------
/public/static/UEditor/lang/en/images/rotaterightenable.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/lang/en/images/rotaterightenable.png
--------------------------------------------------------------------------------
/public/static/UEditor/lang/en/images/upload.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/lang/en/images/upload.png
--------------------------------------------------------------------------------
/public/static/UEditor/lang/zh-cn/images/copy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/lang/zh-cn/images/copy.png
--------------------------------------------------------------------------------
/public/static/UEditor/lang/zh-cn/images/localimage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/lang/zh-cn/images/localimage.png
--------------------------------------------------------------------------------
/public/static/UEditor/lang/zh-cn/images/music.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/lang/zh-cn/images/music.png
--------------------------------------------------------------------------------
/public/static/UEditor/lang/zh-cn/images/upload.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/lang/zh-cn/images/upload.png
--------------------------------------------------------------------------------
/public/static/UEditor/themes/default/images/anchor.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/themes/default/images/anchor.gif
--------------------------------------------------------------------------------
/public/static/UEditor/themes/default/images/arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/themes/default/images/arrow.png
--------------------------------------------------------------------------------
/public/static/UEditor/themes/default/images/arrow_down.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/themes/default/images/arrow_down.png
--------------------------------------------------------------------------------
/public/static/UEditor/themes/default/images/arrow_up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/themes/default/images/arrow_up.png
--------------------------------------------------------------------------------
/public/static/UEditor/themes/default/images/button-bg.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/themes/default/images/button-bg.gif
--------------------------------------------------------------------------------
/public/static/UEditor/themes/default/images/cancelbutton.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/themes/default/images/cancelbutton.gif
--------------------------------------------------------------------------------
/public/static/UEditor/themes/default/images/charts.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/themes/default/images/charts.png
--------------------------------------------------------------------------------
/public/static/UEditor/themes/default/images/cursor_h.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/themes/default/images/cursor_h.gif
--------------------------------------------------------------------------------
/public/static/UEditor/themes/default/images/cursor_h.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/themes/default/images/cursor_h.png
--------------------------------------------------------------------------------
/public/static/UEditor/themes/default/images/cursor_v.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/themes/default/images/cursor_v.gif
--------------------------------------------------------------------------------
/public/static/UEditor/themes/default/images/cursor_v.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/themes/default/images/cursor_v.png
--------------------------------------------------------------------------------
/public/static/UEditor/themes/default/images/dialog-title-bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/themes/default/images/dialog-title-bg.png
--------------------------------------------------------------------------------
/public/static/UEditor/themes/default/images/filescan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/themes/default/images/filescan.png
--------------------------------------------------------------------------------
/public/static/UEditor/themes/default/images/highlighted.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/themes/default/images/highlighted.gif
--------------------------------------------------------------------------------
/public/static/UEditor/themes/default/images/icons-all.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/themes/default/images/icons-all.gif
--------------------------------------------------------------------------------
/public/static/UEditor/themes/default/images/icons.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/themes/default/images/icons.gif
--------------------------------------------------------------------------------
/public/static/UEditor/themes/default/images/icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/themes/default/images/icons.png
--------------------------------------------------------------------------------
/public/static/UEditor/themes/default/images/loaderror.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/themes/default/images/loaderror.png
--------------------------------------------------------------------------------
/public/static/UEditor/themes/default/images/loading.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/themes/default/images/loading.gif
--------------------------------------------------------------------------------
/public/static/UEditor/themes/default/images/lock.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/themes/default/images/lock.gif
--------------------------------------------------------------------------------
/public/static/UEditor/themes/default/images/neweditor-tab-bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/themes/default/images/neweditor-tab-bg.png
--------------------------------------------------------------------------------
/public/static/UEditor/themes/default/images/pagebreak.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/themes/default/images/pagebreak.gif
--------------------------------------------------------------------------------
/public/static/UEditor/themes/default/images/scale.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/themes/default/images/scale.png
--------------------------------------------------------------------------------
/public/static/UEditor/themes/default/images/sortable.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/themes/default/images/sortable.png
--------------------------------------------------------------------------------
/public/static/UEditor/themes/default/images/spacer.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/themes/default/images/spacer.gif
--------------------------------------------------------------------------------
/public/static/UEditor/themes/default/images/sparator_v.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/themes/default/images/sparator_v.png
--------------------------------------------------------------------------------
/public/static/UEditor/themes/default/images/table-cell-align.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/themes/default/images/table-cell-align.png
--------------------------------------------------------------------------------
/public/static/UEditor/themes/default/images/tangram-colorpicker.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/themes/default/images/tangram-colorpicker.png
--------------------------------------------------------------------------------
/public/static/UEditor/themes/default/images/toolbar_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/themes/default/images/toolbar_bg.png
--------------------------------------------------------------------------------
/public/static/UEditor/themes/default/images/unhighlighted.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/themes/default/images/unhighlighted.gif
--------------------------------------------------------------------------------
/public/static/UEditor/themes/default/images/upload.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/themes/default/images/upload.png
--------------------------------------------------------------------------------
/public/static/UEditor/themes/default/images/videologo.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/themes/default/images/videologo.gif
--------------------------------------------------------------------------------
/public/static/UEditor/themes/default/images/word.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/themes/default/images/word.gif
--------------------------------------------------------------------------------
/public/static/UEditor/themes/default/images/wordpaste.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/public/static/UEditor/themes/default/images/wordpaste.png
--------------------------------------------------------------------------------
/public/static/UEditor/themes/iframe.css:
--------------------------------------------------------------------------------
1 | /*可以在这里添加你自己的css*/
2 |
--------------------------------------------------------------------------------
/public/static/UEditor/third-party/highcharts/modules/heatmap.js:
--------------------------------------------------------------------------------
1 | (function(b){var k=b.seriesTypes,l=b.each;k.heatmap=b.extendClass(k.map,{colorKey:"z",useMapGeometry:!1,pointArrayMap:["y","z"],translate:function(){var c=this,b=c.options,i=Number.MAX_VALUE,j=Number.MIN_VALUE;c.generatePoints();l(c.data,function(a){var e=a.x,f=a.y,d=a.z,g=(b.colsize||1)/2,h=(b.rowsize||1)/2;a.path=["M",e-g,f-h,"L",e+g,f-h,"L",e+g,f+h,"L",e-g,f+h,"Z"];a.shapeType="path";a.shapeArgs={d:c.translatePath(a.path)};typeof d==="number"&&(d>j?j=d:d
2 |
3 |
4 |
5 |
6 |
7 |
8 |
13 |
14 |
25 |
--------------------------------------------------------------------------------
/src/admins/activity/admin-activity-set/json/activity.json:
--------------------------------------------------------------------------------
1 | [{
2 | "name": "购买权限",
3 | "key": "BuyPermisionActivity",
4 | "num": "first",
5 | "icon": "flaticon-app"
6 | },
7 | {
8 | "name": "会员折扣",
9 | "key": "MemberDiscountActivity",
10 | "num": "fourth",
11 | "icon": "flaticon-menu-button"
12 | },
13 | {
14 | "name": "预售",
15 | "key": "PreSellsActivity",
16 | "num": "second",
17 | "icon": "flaticon-bag"
18 | },
19 | {
20 | "name": "限时抢购",
21 | "key": "TimeLimitBuyActivity",
22 | "num": "third",
23 | "icon": "flaticon-squares"
24 | },
25 | {
26 | "name": "拼团",
27 | "key": "GroupBuyActivity",
28 | "num": "six",
29 | "icon": "flaticon-user"
30 | }
31 | ]
32 |
--------------------------------------------------------------------------------
/src/admins/activity/admin-activity-set/service.js:
--------------------------------------------------------------------------------
1 | export default {
2 | // 单独处理会员等级价
3 | memberDiscountActivity (model) {
4 | var newdiscountList = []
5 | model.discountList.forEach((list, listIndex) => {
6 | var newList = {
7 | gradeItems: []
8 | }
9 | for (var i in list) {
10 | if (i.length > 30) {
11 | var obj = {
12 | id: i,
13 | price: list[i]
14 | }
15 | newList.gradeItems.push(obj)
16 | }
17 | if (i.length < 30) {
18 | newList[i] = list[i]
19 | }
20 | }
21 | newdiscountList.push(newList)
22 | })
23 | model.discountList = newdiscountList
24 | return model
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/src/admins/activity/admin-activity-set/styles/product.scss:
--------------------------------------------------------------------------------
1 | .product-activity {
2 | padding-top: 20px;
3 | width: 100%;
4 | box-sizing: border-box;
5 |
6 | .el-tabs--left .el-tabs__nav-wrap.is-left {
7 | width: 180px !important;
8 | }
9 |
10 | .el-tabs--left .el-tabs__item.is-left {
11 | text-align: left;
12 |
13 | i,
14 | span {
15 | font-size: 14px;
16 | }
17 |
18 | i {
19 | margin-right: 7px;
20 | }
21 | }
22 | }
23 |
--------------------------------------------------------------------------------
/src/admins/admin/admin-app-publish/var.scss:
--------------------------------------------------------------------------------
1 | .admin-app-publish {
2 | .el-tabs--top {
3 | margin: 0px;
4 | .el-tabs__item {
5 | border-right: 1px solid #DCDFE6;
6 | .border-card_span {
7 | i {
8 | margin-left: 4px;
9 | }
10 | }
11 | }
12 | .el-tabs__content {
13 | padding: 0px;
14 | }
15 | }
16 | }
--------------------------------------------------------------------------------
/src/admins/admin/admin-app/styles/a.scss:
--------------------------------------------------------------------------------
1 | #a {
2 | .admin-app {}
3 | }
--------------------------------------------------------------------------------
/src/admins/admin/admin-app/styles/b.scss:
--------------------------------------------------------------------------------
1 | #b {
2 | .admin-app {}
3 | }
--------------------------------------------------------------------------------
/src/admins/admin/admin-app/styles/c.scss:
--------------------------------------------------------------------------------
1 | #c {
2 | .admin-app {}
3 | }
--------------------------------------------------------------------------------
/src/admins/admin/admin-app/styles/d.scss:
--------------------------------------------------------------------------------
1 | #d {
2 | .admin-app {}
3 | }
--------------------------------------------------------------------------------
/src/admins/admin/admin-app/styles/index.js:
--------------------------------------------------------------------------------
1 | import './a.scss'
2 | import './b.scss'
3 | import './c.scss'
4 | import './d.scss'
5 |
--------------------------------------------------------------------------------
/src/admins/admin/admin-layout/diy.js:
--------------------------------------------------------------------------------
1 |
2 | import Vue from 'vue'
3 | export default {
4 | // 编辑菜单
5 | async editMenu (jsThis) {
6 | var widget = {
7 | name: 'admin-layout',
8 | widgetId: '5d1c19f7fd4f920e70f884c4',
9 | type: 'treeTable'
10 | }
11 | jsThis.$emit('editWidget', widget)
12 | },
13 | // Diy 编辑时候,菜单处理
14 | diyMenus (diyMenus) {
15 | console.info('diyMenus diy.js', diyMenus)
16 | if (diyMenus) {
17 | var roleOutput = Vue.prototype.$admin.convertToMenus(diyMenus)
18 | return roleOutput
19 | }
20 | }
21 | }
22 |
23 |
--------------------------------------------------------------------------------
/src/admins/admin/admin-layout/item/admin-nav/index.scss:
--------------------------------------------------------------------------------
1 | .layout-container {
2 | width: 100vw;
3 | background-color: #f2f2f2;
4 | height: 100vw;
5 | display: flex;
6 |
7 | .el-main {
8 | padding: 12px;
9 |
10 | .view-container {
11 | // background-color: #f2f2f2;
12 | }
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/src/admins/admin/admin-layout/item/admin-nav/server-left.js:
--------------------------------------------------------------------------------
1 | export default {
2 | // 获取可以显示的列表
3 | getShowModel (jsThis, data) {
4 | var showData = []
5 | if (data) {
6 | data.forEach(element => {
7 | if (element.isEnable) {
8 | showData.push(element)
9 | }
10 | })
11 | }
12 | return showData
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/src/admins/admin/admin-layout/item/fold-nav/index.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/src/admins/admin/admin-layout/item/user-nav/index.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/src/admins/admin/admin-layout/var.scss:
--------------------------------------------------------------------------------
1 | .edit-set {
2 | width: 90px;
3 | height: 40px;
4 | line-height: 40px;
5 | text-align: center;
6 | position: fixed;
7 | bottom: 0px;
8 | cursor: pointer;
9 | background-color: #716aca;
10 | color: #ffffff;
11 | font-size: 13px;
12 | z-index: 99;
13 | }
14 |
--------------------------------------------------------------------------------
/src/admins/admin/admin-user-tree/styles/a.scss:
--------------------------------------------------------------------------------
1 | #a {
2 | .admin-user-tree {}
3 | }
--------------------------------------------------------------------------------
/src/admins/admin/admin-user-tree/styles/b.scss:
--------------------------------------------------------------------------------
1 | #b {
2 | .admin-user-tree {}
3 | }
--------------------------------------------------------------------------------
/src/admins/admin/admin-user-tree/styles/c.scss:
--------------------------------------------------------------------------------
1 | #c {
2 | .admin-user-tree {}
3 | }
--------------------------------------------------------------------------------
/src/admins/admin/admin-user-tree/styles/d.scss:
--------------------------------------------------------------------------------
1 | #d {
2 | .admin-user-tree {}
3 | }
--------------------------------------------------------------------------------
/src/admins/admin/admin-user-tree/styles/index.js:
--------------------------------------------------------------------------------
1 | import './a.scss'
2 | import './b.scss'
3 | import './c.scss'
4 | import './d.scss'
5 |
--------------------------------------------------------------------------------
/src/admins/admin/admin-user-tree/var.scss:
--------------------------------------------------------------------------------
1 | .admin-user-tree {
2 | width: 100%;
3 |
4 |
5 | .admin-user-tree_container {
6 | padding: 20px 0px;
7 | line-height: 2rem;
8 | margin-top: 20px;
9 | min-height: 700px;
10 | margin-left: 15px;
11 | margin-bottom: 50px;
12 |
13 |
14 | .el-tree-node__content {
15 | height: 34px;
16 | }
17 | }
18 | }
19 |
--------------------------------------------------------------------------------
/src/admins/auto/admin-auto-preview/widgets/usersubpage/styles/basic.scss:
--------------------------------------------------------------------------------
1 | .user-basic {
2 | padding: 0px 20px;
3 | .basic-list {
4 | margin-top: 10px;
5 |
6 | li {
7 | color: #8a8a8a;
8 | display: flex;
9 | min-height: 42px;
10 | margin-bottom: 20px;
11 |
12 | span {
13 | color: red;
14 | }
15 |
16 | .basic-text {
17 | width: 250px;
18 | height: 42px;
19 | line-height: 42px;
20 | text-align: right;
21 | padding-right: 30px;
22 | }
23 |
24 | .basic-input {
25 | flex: 1;
26 | }
27 |
28 | .basic-radio {
29 | min-height: 20px;
30 | margin-top: 10px;
31 | }
32 |
33 | .basic-input {
34 | width: 100%;
35 | }
36 |
37 | &.basic-buttom {
38 | border-top: 1px solid #e5e5e5;
39 | padding-top: 15px;
40 | }
41 | }
42 | }
43 | }
44 |
--------------------------------------------------------------------------------
/src/admins/auto/admin-auto-table/index.scss:
--------------------------------------------------------------------------------
1 | .derived-box {
2 | .el-dropdown {
3 | border: none;
4 | }
5 | .derived-box_btn {
6 | width: 40px;
7 | height: 40px;
8 | text-align: center;
9 | line-height: 40px;
10 | border-radius: 40px;
11 | background-color: #ffffff;
12 | cursor: pointer;
13 | box-shadow: 0px 3px 20px 0px rgba(113, 106, 202, 0.17);
14 | i {
15 | font-size: 14px;
16 | }
17 | &:hover {
18 | background-color: #36a3f7;
19 | i {
20 | color: #ffffff;
21 | }
22 | }
23 | }
24 | }
25 | .el-popover {
26 | min-width: 120px !important;
27 | }
28 | .derived_popover {
29 | ul {
30 | li {
31 | padding: 12px 0px;
32 | text-align: center;
33 | cursor: pointer;
34 | &:hover {
35 | background: #f7f8fa;
36 | color: #716aca;
37 | }
38 | }
39 | }
40 | }
41 |
--------------------------------------------------------------------------------
/src/admins/auto/admin-autoconfig-form/styles/a.scss:
--------------------------------------------------------------------------------
1 | #a {
2 | .admin-autoconfig-form {}
3 | }
--------------------------------------------------------------------------------
/src/admins/auto/admin-autoconfig-form/styles/b.scss:
--------------------------------------------------------------------------------
1 | #b {
2 | .admin-autoconfig-form {}
3 | }
--------------------------------------------------------------------------------
/src/admins/auto/admin-autoconfig-form/styles/c.scss:
--------------------------------------------------------------------------------
1 | #c {
2 | .admin-autoconfig-form {}
3 | }
--------------------------------------------------------------------------------
/src/admins/auto/admin-autoconfig-form/styles/d.scss:
--------------------------------------------------------------------------------
1 | #d {
2 | .admin-autoconfig-form {}
3 | }
--------------------------------------------------------------------------------
/src/admins/auto/admin-autoconfig-form/styles/index.js:
--------------------------------------------------------------------------------
1 | import './a.scss'
2 | import './b.scss'
3 | import './c.scss'
4 | import './d.scss'
5 |
--------------------------------------------------------------------------------
/src/admins/auto/admin-autoconfig-form/var.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/admins/auto/admin-autoconfig-form/var.scss
--------------------------------------------------------------------------------
/src/admins/auto/admin-autoconfig-list/styles/a.scss:
--------------------------------------------------------------------------------
1 | #a {
2 | .admin-autoconfig-list {}
3 | }
--------------------------------------------------------------------------------
/src/admins/auto/admin-autoconfig-list/styles/b.scss:
--------------------------------------------------------------------------------
1 | #b {
2 | .admin-autoconfig-list {}
3 | }
--------------------------------------------------------------------------------
/src/admins/auto/admin-autoconfig-list/styles/c.scss:
--------------------------------------------------------------------------------
1 | #c {
2 | .admin-autoconfig-list {}
3 | }
--------------------------------------------------------------------------------
/src/admins/auto/admin-autoconfig-list/styles/d.scss:
--------------------------------------------------------------------------------
1 | #d {
2 | .admin-autoconfig-list {}
3 | }
--------------------------------------------------------------------------------
/src/admins/auto/admin-autoconfig-list/styles/index.js:
--------------------------------------------------------------------------------
1 | import './a.scss'
2 | import './b.scss'
3 | import './c.scss'
4 | import './d.scss'
5 |
--------------------------------------------------------------------------------
/src/admins/auto/admin-autoconfig-list/var.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/admins/auto/admin-autoconfig-list/var.scss
--------------------------------------------------------------------------------
/src/admins/auto/admin-lightapp-form/styles/a.scss:
--------------------------------------------------------------------------------
1 | #a {
2 | .admin-lightapp-form {}
3 | }
--------------------------------------------------------------------------------
/src/admins/auto/admin-lightapp-form/styles/b.scss:
--------------------------------------------------------------------------------
1 | #b {
2 | .admin-lightapp-form {}
3 | }
--------------------------------------------------------------------------------
/src/admins/auto/admin-lightapp-form/styles/c.scss:
--------------------------------------------------------------------------------
1 | #c {
2 | .admin-lightapp-form {}
3 | }
--------------------------------------------------------------------------------
/src/admins/auto/admin-lightapp-form/styles/d.scss:
--------------------------------------------------------------------------------
1 | #d {
2 | .admin-lightapp-form {}
3 | }
--------------------------------------------------------------------------------
/src/admins/auto/admin-lightapp-form/styles/index.js:
--------------------------------------------------------------------------------
1 | import './a.scss'
2 | import './b.scss'
3 | import './c.scss'
4 | import './d.scss'
5 |
--------------------------------------------------------------------------------
/src/admins/auto/admin-lightapp-form/var.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/admins/auto/admin-lightapp-form/var.scss
--------------------------------------------------------------------------------
/src/admins/auto/admin-lightapp-table/styles/a.scss:
--------------------------------------------------------------------------------
1 | #a {
2 | .admin-lightapp-table {}
3 | }
--------------------------------------------------------------------------------
/src/admins/auto/admin-lightapp-table/styles/b.scss:
--------------------------------------------------------------------------------
1 | #b {
2 | .admin-lightapp-table {}
3 | }
--------------------------------------------------------------------------------
/src/admins/auto/admin-lightapp-table/styles/c.scss:
--------------------------------------------------------------------------------
1 | #c {
2 | .admin-lightapp-table {}
3 | }
--------------------------------------------------------------------------------
/src/admins/auto/admin-lightapp-table/styles/d.scss:
--------------------------------------------------------------------------------
1 | #d {
2 | .admin-lightapp-table {}
3 | }
--------------------------------------------------------------------------------
/src/admins/auto/admin-lightapp-table/styles/index.js:
--------------------------------------------------------------------------------
1 | import './a.scss'
2 | import './b.scss'
3 | import './c.scss'
4 | import './d.scss'
5 |
--------------------------------------------------------------------------------
/src/admins/auto/admin-lightapp-table/var.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/admins/auto/admin-lightapp-table/var.scss
--------------------------------------------------------------------------------
/src/admins/auto/auto-autoconfig-list/index.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
35 |
--------------------------------------------------------------------------------
/src/admins/auto/auto-autoconfig-list/styles/a.scss:
--------------------------------------------------------------------------------
1 | #a {
2 | .auto-autoconfig-list {}
3 | }
--------------------------------------------------------------------------------
/src/admins/auto/auto-autoconfig-list/styles/b.scss:
--------------------------------------------------------------------------------
1 | #b {
2 | .auto-autoconfig-list {}
3 | }
--------------------------------------------------------------------------------
/src/admins/auto/auto-autoconfig-list/styles/c.scss:
--------------------------------------------------------------------------------
1 | #c {
2 | .auto-autoconfig-list {}
3 | }
--------------------------------------------------------------------------------
/src/admins/auto/auto-autoconfig-list/styles/d.scss:
--------------------------------------------------------------------------------
1 | #d {
2 | .auto-autoconfig-list {}
3 | }
--------------------------------------------------------------------------------
/src/admins/auto/auto-autoconfig-list/styles/index.js:
--------------------------------------------------------------------------------
1 | import './a.scss'
2 | import './b.scss'
3 | import './c.scss'
4 | import './d.scss'
5 |
--------------------------------------------------------------------------------
/src/admins/auto/auto-autoconfig-list/var.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/admins/auto/auto-autoconfig-list/var.scss
--------------------------------------------------------------------------------
/src/admins/cms/admin-cms-form/var.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/admins/cms/admin-cms-form/var.scss
--------------------------------------------------------------------------------
/src/admins/cms/admin-cms-list/var.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/admins/cms/admin-cms-list/var.scss
--------------------------------------------------------------------------------
/src/admins/common/admin-relation-class/var.scss:
--------------------------------------------------------------------------------
1 | .formData {
2 | width: 96%;
3 | margin: 0 auto;
4 |
5 | li {
6 | color: #8a8a8a;
7 | min-height: 40px;
8 | width: 100%;
9 | display: flex;
10 | margin: 20px 0;
11 |
12 | span {
13 | color: red;
14 | }
15 |
16 | .formData-text {
17 | width: 100px;
18 | height: 42px;
19 | line-height: 42px;
20 | }
21 |
22 | .formData-input {
23 | width: 100%;
24 | }
25 |
26 | .basic-radio {
27 | width: 100%;
28 | height: 20px;
29 | margin-top: 10px;
30 | display: flex;
31 | align-items: center;
32 | }
33 |
34 | .formData-img {
35 | width: 110px;
36 | height: 110px;
37 | }
38 | }
39 |
40 | .formData-list {
41 | border-top: 1px solid #e5e5e5;
42 | }
43 | }
44 |
--------------------------------------------------------------------------------
/src/admins/common/admin-task-action/index.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
15 |
--------------------------------------------------------------------------------
/src/admins/coupon/admin-coupon-send/styles/a.scss:
--------------------------------------------------------------------------------
1 | #a {
2 | .admin-coupon-send {}
3 | }
--------------------------------------------------------------------------------
/src/admins/coupon/admin-coupon-send/styles/b.scss:
--------------------------------------------------------------------------------
1 | #b {
2 | .admin-coupon-send {}
3 | }
--------------------------------------------------------------------------------
/src/admins/coupon/admin-coupon-send/styles/c.scss:
--------------------------------------------------------------------------------
1 | #c {
2 | .admin-coupon-send {}
3 | }
--------------------------------------------------------------------------------
/src/admins/coupon/admin-coupon-send/styles/d.scss:
--------------------------------------------------------------------------------
1 | #d {
2 | .admin-coupon-send {}
3 | }
--------------------------------------------------------------------------------
/src/admins/coupon/admin-coupon-send/styles/index.js:
--------------------------------------------------------------------------------
1 | import './a.scss'
2 | import './b.scss'
3 | import './c.scss'
4 | import './d.scss'
5 |
--------------------------------------------------------------------------------
/src/admins/diy/admin-api/index.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/src/admins/diy/admin-diy-theme/style/service.js:
--------------------------------------------------------------------------------
1 | import diyHttp from '@/service/core/diy.http'
2 |
3 | export default {
4 | async diy (jsThis, theme) {
5 | var para = {
6 | themeId: theme.id
7 | }
8 | jsThis.$api.progressOpen('正在登录中,预计时间1分钟,请勿离开或刷新页面...')
9 | var response = await diyHttp.get('/api/DiyClient/GetLoginUrl', para)
10 | jsThis.$api.progressClose()
11 | if (response.status === 1) {
12 | window.open(response.message, '_blank')
13 | }
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/src/admins/diy/admin-diy-theme/var.scss:
--------------------------------------------------------------------------------
1 | .admin-pages-list {
2 | display: flex;
3 | flex-wrap: wrap;
4 | margin: 8px;
5 | min-height: 650px;
6 | }
--------------------------------------------------------------------------------
/src/admins/diy/admin-publish-wechatlite/index.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
27 |
--------------------------------------------------------------------------------
/src/admins/diy/admin-publish-wechatlite/var.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/admins/diy/admin-publish-wechatlite/var.scss
--------------------------------------------------------------------------------
/src/admins/merchant/admin-merchant-product/widgets/styles/index.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/admins/merchant/admin-merchant-product/widgets/styles/index.scss
--------------------------------------------------------------------------------
/src/admins/merchant/admin-merchant-product/widgets/styles/pic.scss:
--------------------------------------------------------------------------------
1 | .pic_all {
2 | position: relative;
3 | .pic_detele {
4 | position: absolute;
5 | background: rgba($color: #000, $alpha: 0.5);
6 | width: 100%;
7 | height: 100%;
8 | top: 0;
9 | .el-icon-delete {
10 | color: #fff;
11 | font-size: 16px;
12 | line-height: 100px;
13 | margin: 0 auto;
14 | }
15 | }
16 | }
--------------------------------------------------------------------------------
/src/admins/share/admin-reward-add/var.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/admins/share/admin-reward-add/var.scss
--------------------------------------------------------------------------------
/src/admins/share/admin-reward-edit/widget/edit-module.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
26 |
--------------------------------------------------------------------------------
/src/admins/share/admin-reward-rule/styles/a.scss:
--------------------------------------------------------------------------------
1 | #a {
2 | .admin-reward-rule {}
3 | }
--------------------------------------------------------------------------------
/src/admins/share/admin-reward-rule/styles/b.scss:
--------------------------------------------------------------------------------
1 | #b {
2 | .admin-reward-rule {}
3 | }
--------------------------------------------------------------------------------
/src/admins/share/admin-reward-rule/styles/c.scss:
--------------------------------------------------------------------------------
1 | #c {
2 | .admin-reward-rule {}
3 | }
--------------------------------------------------------------------------------
/src/admins/share/admin-reward-rule/styles/d.scss:
--------------------------------------------------------------------------------
1 | #d {
2 | .admin-reward-rule {}
3 | }
--------------------------------------------------------------------------------
/src/admins/share/admin-reward-rule/styles/index.js:
--------------------------------------------------------------------------------
1 | import './a.scss'
2 | import './b.scss'
3 | import './c.scss'
4 | import './d.scss'
5 |
--------------------------------------------------------------------------------
/src/admins/share/admin-reward-rule/var.scss:
--------------------------------------------------------------------------------
1 | .admin-reward-rule {
2 | display: flex;
3 | .admin-reward-left {
4 | width: 0;
5 | box-sizing: border-box;
6 | background-color: rgb(17, 12, 12);
7 | }
8 | .admin-reward-right {
9 | margin-left: 110px;
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/src/admins/share/admin-reward-sidebar/sidebar.json:
--------------------------------------------------------------------------------
1 | {
2 | "icon": "icon-zk-funnels",
3 | "title": "模式超市",
4 | "links": [
5 | {
6 | "icon": "icon-zk-tornado",
7 | "name": "维度添加",
8 | "url": "/Admin/RewardRule/Edit?moduleId=bd717f8d-ad00-44c9-9aa5-597e0ae55011"
9 | },
10 | {
11 | "icon": "icon-zk-jpy",
12 | "name": "维度管理",
13 | "url": "/Admin/RewardRule/Item?moduleId=bd717f8d-ad00-44c9-9aa5-597e0ae55011"
14 | },
15 | {
16 | "icon": "icon-zk-jpy",
17 | "name": "所有配置",
18 | "url": "/Admin/RewardRule/List"
19 | },
20 | {
21 | "icon": "icon-zk-order",
22 | "name": "模式超市",
23 | "url": "/Admin/Reward/Modules"
24 | }
25 | ]
26 | }
27 |
--------------------------------------------------------------------------------
/src/admins/shop/admin-delivery-edit/template_regionlist.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | {{region.name + (hasChildren(region)?'>':'')}}
8 |
9 |
10 |
11 |
12 |
13 |
14 |
27 |
--------------------------------------------------------------------------------
/src/admins/shop/admin-mall-order/widgets/operating-record.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
{{viewModel.createTime}}
5 |
10 |
会员{{viewModel.buyUser.userName}}({{viewModel.buyUser.name}})创建订单,订单金额为{{viewModel.totalAmount}}
11 |
12 |
13 |
14 |
23 |
26 |
27 |
--------------------------------------------------------------------------------
/src/admins/shop/admin-order-list/widgets/operating-record.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
{{viewModel.createTime}}
5 |
10 |
会员{{viewModel.buyUser.userName}}({{viewModel.buyUser.name}})创建订单,订单金额为{{viewModel.totalAmount}}
11 |
12 |
13 |
14 |
23 |
26 |
27 |
--------------------------------------------------------------------------------
/src/admins/shop/admin-product-edit/widgets/js/base.js:
--------------------------------------------------------------------------------
1 | export default {
2 | // 判断输入框只能输入整数
3 | stockInput (jsThis, ev) {
4 | if (ev.target.value !== ev.target.value.replace(/\D/g, '')) {
5 | jsThis.$alert('只能输入整数')
6 | ev.target.value = ev.target.value.replace(/\D/g, '')
7 | }
8 | },
9 | // 判断输入框只能输入数字类型
10 | currencyInput (jsThis, ev) {
11 | if (isNaN(ev.target.value)) {
12 | jsThis.$alert('只能输入数字类型')
13 | ev.target.value = ''
14 | }
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/src/admins/shop/admin-product-edit/widgets/json/sku.json:
--------------------------------------------------------------------------------
1 | {
2 | "id": 0,
3 | "bn": "",
4 | "price": "",
5 | "costPrice": "",
6 | "marketPrice": "",
7 | "fenRunPrice": "",
8 | "weight": "",
9 | "stock": 100,
10 | "productStatus": 2,
11 | "propertyValueDesc": "",
12 | "specSn": ""
13 | }
14 |
--------------------------------------------------------------------------------
/src/admins/shop/admin-product-edit/widgets/style/_index.scss:
--------------------------------------------------------------------------------
1 | @import './basic.scss';
2 | @import './classtag.scss';
3 | @import './content.scss';
4 | @import './delivery.scss';
5 | @import './display.scss';
6 | @import './edit.scss';
7 | @import './image.scss';
8 | @import './sale.scss';
9 | @import './sku.scss';
10 |
11 |
--------------------------------------------------------------------------------
/src/admins/shop/admin-product-edit/widgets/style/classtag.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/admins/shop/admin-product-edit/widgets/style/classtag.scss
--------------------------------------------------------------------------------
/src/admins/shop/admin-product-edit/widgets/style/content.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/admins/shop/admin-product-edit/widgets/style/content.scss
--------------------------------------------------------------------------------
/src/admins/shop/admin-product-edit/widgets/style/delivery.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/admins/shop/admin-product-edit/widgets/style/delivery.scss
--------------------------------------------------------------------------------
/src/admins/shop/admin-product-edit/widgets/style/dialog.scss:
--------------------------------------------------------------------------------
1 | .dialog {
2 | .dialog-cont {
3 | padding: 20px;
4 | width: 100%;
5 |
6 | .el-radio-group {
7 | margin-left: 100px;
8 | }
9 |
10 | .el-form-item__content {
11 | margin-left: 10px !important;
12 | }
13 |
14 | .tips {
15 | height: 20px;
16 | line-height: 20px;
17 | }
18 | }
19 |
20 | .el-textarea__inner {
21 | height: 50px;
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/src/admins/shop/admin-product-edit/widgets/style/image.scss:
--------------------------------------------------------------------------------
1 | .uplaader-box {
2 | position: relative;
3 |
4 | .up-remove {
5 | background-color: red;
6 | color: #ffffff;
7 | font-size: 10px;
8 | position: absolute;
9 | top: 0px;
10 | right: 0px;
11 | padding: 3px 6px;
12 | display: none;
13 | }
14 |
15 | &:hover {
16 | .up-remove {
17 | display: block;
18 | }
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/src/admins/shop/admin-product-list/style.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/admins/shop/admin-product-list/style.scss
--------------------------------------------------------------------------------
/src/admins/sms/admin-sms-sendgroup/index.vue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/admins/sms/admin-sms-sendgroup/index.vue
--------------------------------------------------------------------------------
/src/admins/store/admin-supplier-order/widgets/operating-record.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
{{viewModel.createTime}}
5 |
10 |
会员{{viewModel.buyUser.userName}}({{viewModel.buyUser.name}})创建订单,订单金额为{{viewModel.totalAmount}}
11 |
12 |
13 |
14 |
23 |
26 |
27 |
--------------------------------------------------------------------------------
/src/admins/user/admin-role-open/index.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/src/admins/user/admin-user-edit/actives.js:
--------------------------------------------------------------------------------
1 | export default {
2 | getEmun (style, keys) {
3 | return '你好呀'
4 | }
5 | }
6 |
--------------------------------------------------------------------------------
/src/assets/border/index.scss:
--------------------------------------------------------------------------------
1 | @import './style.scss';
2 | @import './protlet/style.scss';
3 | @import './none/style.scss';
4 |
--------------------------------------------------------------------------------
/src/assets/border/none/style.scss:
--------------------------------------------------------------------------------
1 | .none-border {
2 | .border-header {
3 | display: none;
4 | }
5 | }
6 |
7 | @mixin widget_border($name, $color, $text-color) {
8 | .floating-border__#{$name} {
9 | .border-header {}
10 | }
11 | }
12 |
13 | @each $name,
14 | $colors in $component-colors {
15 | @include widget_border($name, map-get($colors, base), map-get($colors, font));
16 | }
17 |
18 | @each $name,
19 | $colors in $theme-colors {
20 | @include widget_border($name, map-get($colors, base), map-get($colors, font));
21 | }
--------------------------------------------------------------------------------
/src/assets/border/style.scss:
--------------------------------------------------------------------------------
1 | .widget_border {
2 | padding: 0;
3 | width: 100%;
4 | flex-direction: column;
5 | .border-header {
6 | height: 32px;
7 | line-height: 32px;
8 | vertical-align: middle;
9 | text-align: left;
10 | flex-wrap: nowrap;
11 | display: flex;
12 | align-items: center;
13 | padding: 0px 10px;
14 | .border-header-icon {
15 | vertical-align: middle;
16 | padding: 0 5px 0 0px;
17 | color: $gl-sizeColor;
18 | }
19 | .border-header-title {
20 | font-size: 12px;
21 | letter-spacing: 2px;
22 | color: $gl-text0;
23 | margin-right: 5px;
24 | }
25 | .border-header-desc {
26 | font-size: 14px;
27 | color: $gl-text5;
28 | }
29 | .border-header-tools {
30 | font-size: 14px;
31 | }
32 | }
33 | }
--------------------------------------------------------------------------------
/src/assets/style/css/_index.scss:
--------------------------------------------------------------------------------
1 | @import './normalize.scss';
2 |
--------------------------------------------------------------------------------
/src/assets/style/element-variables.scss:
--------------------------------------------------------------------------------
1 | @import './theme.scss';
2 | $--color-primary:$gl-themeColor;
3 |
4 | /* 改变 icon 字体路径变量,必需 */
5 | $--font-path: '~element-ui/lib/theme-chalk/fonts';
6 |
7 | @import "~element-ui/packages/theme-chalk/src/index";
8 |
--------------------------------------------------------------------------------
/src/assets/style/flaticon/fonts/Flaticon.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/assets/style/flaticon/fonts/Flaticon.eot
--------------------------------------------------------------------------------
/src/assets/style/flaticon/fonts/Flaticon.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/assets/style/flaticon/fonts/Flaticon.ttf
--------------------------------------------------------------------------------
/src/assets/style/flaticon/fonts/Flaticon.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/assets/style/flaticon/fonts/Flaticon.woff
--------------------------------------------------------------------------------
/src/assets/style/iconall/LICENSE.txt:
--------------------------------------------------------------------------------
1 | Font license info
2 |
3 |
4 | ## iconfount
5 |
6 | Copyright (C) 2019 by original authors
7 |
8 | Author: 5ug
9 | License: MIT (https://opensource.org/licenses/MIT)
10 | Homepage: http://www.5ug.com
11 |
12 |
13 |
--------------------------------------------------------------------------------
/src/assets/style/iconall/font/iconfount-403bce150a.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/assets/style/iconall/font/iconfount-403bce150a.eot
--------------------------------------------------------------------------------
/src/assets/style/iconall/font/iconfount-403bce150a.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/assets/style/iconall/font/iconfount-403bce150a.ttf
--------------------------------------------------------------------------------
/src/assets/style/iconall/font/iconfount-403bce150a.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/assets/style/iconall/font/iconfount-403bce150a.woff
--------------------------------------------------------------------------------
/src/assets/style/iconall/font/iconfount-403bce150a.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/assets/style/iconall/font/iconfount-403bce150a.woff2
--------------------------------------------------------------------------------
/src/assets/style/sass/_hover.scss:
--------------------------------------------------------------------------------
1 | @mixin hover($find: 1, $time:1s) {
2 | &:hover {
3 | transform: scale($find);
4 | transition: $time;
5 | }
6 | }
7 |
8 | @mixin hoverOp($find: 1, $time:1s) {
9 | &:hover {
10 | transform: scale($find);
11 | transition: $time;
12 | opacity: 0.8;
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/src/assets/style/sass/_index.scss:
--------------------------------------------------------------------------------
1 | @import './base.scss';
2 |
3 |
4 | @import './colors.scss';
5 |
6 |
7 | @import './_hover.scss';
8 |
--------------------------------------------------------------------------------
/src/assets/style/sass/base.scss:
--------------------------------------------------------------------------------
1 | *,
2 | *:before,
3 | *:after {
4 | box-sizing: border-box;
5 | list-style: none;
6 | }
7 |
--------------------------------------------------------------------------------
/src/assets/style/sass/colors.scss:
--------------------------------------------------------------------------------
1 | @import "@/assets/style/theme.scss";
2 | $theme-colors: ('brand': (base: $gl-brand, font: $gl-text1), 'primary': (base: $gl-brand, font: $gl-text1), 'metal': (base: $gl-metal, font: $gl-text1), 'success': (base: $gl-success, font: $gl-text1), 'warning': (base: $gl-warning, font: $gl-text1), 'info': (base: $gl-info, font: $gl-text1), 'focus': (base: $gl-focus, font: $gl-text1), 'accent': (base: $gl-accent, font: $gl-text1), 'light': (base: $gl-light, font: $gl-text2), 'danger': (base: $gl-danger, font: $gl-text1));
3 | $component-colors: ('white': (base: #ffffff, font: #666));
4 |
--------------------------------------------------------------------------------
/src/assets/style/theme-src/aside.scss:
--------------------------------------------------------------------------------
1 | @import "mixins/mixins";
2 |
3 | @include b(aside) {
4 | overflow: auto;
5 | box-sizing: border-box;
6 | flex-shrink: 0;
7 | }
8 |
--------------------------------------------------------------------------------
/src/assets/style/theme-src/base.scss:
--------------------------------------------------------------------------------
1 | @import "common/transition.scss";
2 | @import "icon.scss";
3 |
--------------------------------------------------------------------------------
/src/assets/style/theme-src/breadcrumb-item.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/assets/style/theme-src/breadcrumb-item.scss
--------------------------------------------------------------------------------
/src/assets/style/theme-src/button-group.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/assets/style/theme-src/button-group.scss
--------------------------------------------------------------------------------
/src/assets/style/theme-src/card.scss:
--------------------------------------------------------------------------------
1 | @import "mixins/mixins";
2 | @import "common/var";
3 |
4 | @include b(card) {
5 | border-radius: $--card-border-radius;
6 | border: 1px solid $--card-border-color;
7 | background-color: $--color-white;
8 | overflow: hidden;
9 | color: $--color-text-primary;
10 | transition: 0.3s;
11 |
12 | @include when(always-shadow) {
13 | box-shadow: $--box-shadow-light;
14 | }
15 |
16 | @include when(hover-shadow) {
17 | &:hover,
18 | &:focus {
19 | box-shadow: $--box-shadow-light;
20 | }
21 | }
22 |
23 | @include e(header) {
24 | padding: #{$--card-padding - 2 $--card-padding};
25 | border-bottom: 1px solid $--card-border-color;
26 | box-sizing: border-box;
27 | }
28 |
29 | @include e(body) {
30 | padding: $--card-padding;
31 | }
32 | }
33 |
--------------------------------------------------------------------------------
/src/assets/style/theme-src/checkbox-button.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/assets/style/theme-src/checkbox-button.scss
--------------------------------------------------------------------------------
/src/assets/style/theme-src/checkbox-group.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/assets/style/theme-src/checkbox-group.scss
--------------------------------------------------------------------------------
/src/assets/style/theme-src/collapse-item.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/assets/style/theme-src/collapse-item.scss
--------------------------------------------------------------------------------
/src/assets/style/theme-src/common/popup.scss:
--------------------------------------------------------------------------------
1 | @import "../mixins/mixins";
2 |
3 | .v-modal-enter {
4 | animation: v-modal-in .2s ease;
5 | }
6 |
7 | .v-modal-leave {
8 | animation: v-modal-out .2s ease forwards;
9 | }
10 |
11 | @keyframes v-modal-in {
12 | 0% {
13 | opacity: 0;
14 | }
15 | 100% {
16 | }
17 | }
18 |
19 | @keyframes v-modal-out {
20 | 0% {
21 | }
22 | 100% {
23 | opacity: 0;
24 | }
25 | }
26 |
27 | .v-modal {
28 | position: fixed;
29 | left: 0;
30 | top: 0;
31 | width: 100%;
32 | height: 100%;
33 | opacity: 0.5;
34 | background: #000;
35 | }
36 |
37 | @include b(popup-parent) {
38 | @include m(hidden) {
39 | overflow: hidden;
40 | }
41 | }
42 |
--------------------------------------------------------------------------------
/src/assets/style/theme-src/container.scss:
--------------------------------------------------------------------------------
1 | @import "mixins/mixins";
2 |
3 | @include b(container) {
4 | display: flex;
5 | flex-direction: row;
6 | flex: 1;
7 | flex-basis: auto;
8 | box-sizing: border-box;
9 | min-width: 0;
10 |
11 | @include when(vertical) {
12 | flex-direction: column;
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/src/assets/style/theme-src/date-picker.scss:
--------------------------------------------------------------------------------
1 | @import "./date-picker/date-table.scss";
2 | @import "./date-picker/month-table.scss";
3 | @import "./date-picker/year-table.scss";
4 | @import "./date-picker/time-spinner.scss";
5 | @import "./date-picker/picker.scss";
6 | @import "./date-picker/date-picker.scss";
7 | @import "./date-picker/date-range-picker.scss";
8 | @import "./date-picker/time-range-picker.scss";
9 | @import "./date-picker/time-picker.scss";
10 | @import "./input.scss";
11 | @import "./scrollbar.scss";
12 | @import "./popper";
--------------------------------------------------------------------------------
/src/assets/style/theme-src/date-picker/month-table.scss:
--------------------------------------------------------------------------------
1 | @import "../common/var";
2 |
3 | @include b(month-table) {
4 | font-size: 12px;
5 | margin: -1px;
6 | border-collapse: collapse;
7 |
8 | td {
9 | text-align: center;
10 | padding: 20px 3px;
11 | cursor: pointer;
12 |
13 | &.disabled .cell {
14 | background-color: $--background-color-base;
15 | cursor: not-allowed;
16 | color: $--color-text-placeholder;
17 |
18 | &:hover {
19 | color: $--color-text-placeholder;
20 | }
21 | }
22 |
23 | .cell {
24 | width: 48px;
25 | height: 32px;
26 | display: block;
27 | line-height: 32px;
28 | color: $--datepicker-color;
29 | margin: 0 auto;
30 |
31 | &:hover {
32 | color: $--datepicker-text-hover-color;
33 | }
34 | }
35 |
36 | &.current:not(.disabled) .cell {
37 | color: $--datepicker-active-color;
38 | }
39 | }
40 | }
41 |
--------------------------------------------------------------------------------
/src/assets/style/theme-src/date-picker/time-range-picker.scss:
--------------------------------------------------------------------------------
1 | @import "../common/var";
2 |
3 | @include b(time-range-picker) {
4 | width: 354px;
5 | overflow: visible;
6 |
7 | @include e(content) {
8 | position: relative;
9 | text-align: center;
10 | padding: 10px;
11 | }
12 |
13 | @include e(cell) {
14 | box-sizing: border-box;
15 | margin: 0;
16 | padding: 4px 7px 7px;
17 | width: 50%;
18 | display: inline-block;
19 | }
20 |
21 | @include e(header) {
22 | margin-bottom: 5px;
23 | text-align: center;
24 | font-size: 14px;
25 | }
26 |
27 | @include e(body) {
28 | border-radius:2px;
29 | border: 1px solid $--datepicker-border-color;
30 | }
31 | }
32 |
--------------------------------------------------------------------------------
/src/assets/style/theme-src/display.scss:
--------------------------------------------------------------------------------
1 | @import "common/var";
2 | @import "mixins/mixins";
3 |
4 | .hidden {
5 | @each $break-point-name, $value in $--breakpoints-spec {
6 | &-#{$break-point-name} {
7 | @include res($break-point-name, $--breakpoints-spec) {
8 | display: none !important;
9 | }
10 | }
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/src/assets/style/theme-src/dropdown-item.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/assets/style/theme-src/dropdown-item.scss
--------------------------------------------------------------------------------
/src/assets/style/theme-src/dropdown-menu.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/assets/style/theme-src/dropdown-menu.scss
--------------------------------------------------------------------------------
/src/assets/style/theme-src/fonts/element-icons.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/assets/style/theme-src/fonts/element-icons.ttf
--------------------------------------------------------------------------------
/src/assets/style/theme-src/fonts/element-icons.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/assets/style/theme-src/fonts/element-icons.woff
--------------------------------------------------------------------------------
/src/assets/style/theme-src/footer.scss:
--------------------------------------------------------------------------------
1 | @import "mixins/mixins";
2 | @import "common/var";
3 |
4 | @include b(footer) {
5 | padding: $--footer-padding;
6 | box-sizing: border-box;
7 | flex-shrink: 0;
8 | }
9 |
--------------------------------------------------------------------------------
/src/assets/style/theme-src/form-item.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/assets/style/theme-src/form-item.scss
--------------------------------------------------------------------------------
/src/assets/style/theme-src/header.scss:
--------------------------------------------------------------------------------
1 | @import "mixins/mixins";
2 | @import "common/var";
3 |
4 | @include b(header) {
5 | padding: $--header-padding;
6 | box-sizing: border-box;
7 | flex-shrink: 0;
8 | }
9 |
--------------------------------------------------------------------------------
/src/assets/style/theme-src/main.scss:
--------------------------------------------------------------------------------
1 | @import "mixins/mixins";
2 | @import "common/var";
3 |
4 | @include b(main) {
5 | flex: 1;
6 | flex-basis: auto;
7 | overflow: auto;
8 | box-sizing: border-box;
9 | padding: $--main-padding;
10 | }
11 |
--------------------------------------------------------------------------------
/src/assets/style/theme-src/menu-item-group.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/assets/style/theme-src/menu-item-group.scss
--------------------------------------------------------------------------------
/src/assets/style/theme-src/menu-item.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/assets/style/theme-src/menu-item.scss
--------------------------------------------------------------------------------
/src/assets/style/theme-src/mixins/config.scss:
--------------------------------------------------------------------------------
1 | $namespace: 'el';
2 | $element-separator: '__';
3 | $modifier-separator: '--';
4 | $state-prefix: 'is-';
5 |
--------------------------------------------------------------------------------
/src/assets/style/theme-src/mixins/utils.scss:
--------------------------------------------------------------------------------
1 | @mixin utils-user-select($value) {
2 | -moz-user-select: $value;
3 | -webkit-user-select: $value;
4 | -ms-user-select: $value;
5 | }
6 |
7 | @mixin utils-clearfix {
8 | $selector: &;
9 |
10 | @at-root {
11 | #{$selector}::before,
12 | #{$selector}::after {
13 | display: table;
14 | content: "";
15 | }
16 | #{$selector}::after {
17 | clear: both
18 | }
19 | }
20 | }
21 |
22 | @mixin utils-vertical-center {
23 | $selector: &;
24 |
25 | @at-root {
26 | #{$selector}::after {
27 | display: inline-block;
28 | content: "";
29 | height: 100%;
30 | vertical-align: middle
31 | }
32 | }
33 | }
34 |
35 | @mixin utils-ellipsis {
36 | overflow: hidden;
37 | text-overflow: ellipsis;
38 | white-space: nowrap;
39 | }
--------------------------------------------------------------------------------
/src/assets/style/theme-src/option-group.scss:
--------------------------------------------------------------------------------
1 | @import "mixins/mixins";
2 | @import "common/var";
3 |
4 | @include b(select-group) {
5 | $gap: 20px;
6 |
7 | margin: 0;
8 | padding: 0;
9 |
10 | @include e(wrap) {
11 | position: relative;
12 | list-style: none;
13 | margin: 0;
14 | padding: 0;
15 |
16 | &:not(:last-of-type) {
17 | padding-bottom: 24px;
18 |
19 | &::after {
20 | content: '';
21 | position: absolute;
22 | display: block;
23 | left: $gap;
24 | right: $gap;
25 | bottom: 12px;
26 | height: 1px;
27 | background: $--border-color-light;
28 | }
29 | }
30 | }
31 |
32 | @include e(title) {
33 | padding-left: $gap;
34 | font-size: $--select-group-font-size;
35 | color: $--select-group-color;
36 | line-height: $--select-group-height;
37 | }
38 |
39 | & .el-select-dropdown__item {
40 | padding-left: $gap;
41 | }
42 | }
43 |
--------------------------------------------------------------------------------
/src/assets/style/theme-src/radio-group.scss:
--------------------------------------------------------------------------------
1 | @import "mixins/mixins";
2 | @import "common/var";
3 |
4 | @include b(radio-group) {
5 | display: inline-block;
6 | line-height: 1;
7 | vertical-align: middle;
8 | font-size: 0;
9 | }
10 |
--------------------------------------------------------------------------------
/src/assets/style/theme-src/row.scss:
--------------------------------------------------------------------------------
1 | @import "common/var";
2 | @import "mixins/mixins";
3 | @import "mixins/utils";
4 |
5 | @include b(row) {
6 | position: relative;
7 | box-sizing: border-box;
8 | @include utils-clearfix;
9 |
10 | @include m(flex) {
11 | display: flex;
12 | &:before,
13 | &:after {
14 | display: none;
15 | }
16 |
17 | @include when(justify-center) {
18 | justify-content: center;
19 | }
20 | @include when(justify-end) {
21 | justify-content: flex-end;
22 | }
23 | @include when(justify-space-between) {
24 | justify-content: space-between;
25 | }
26 | @include when(justify-space-around) {
27 | justify-content: space-around;
28 | }
29 |
30 | @include when(align-middle) {
31 | align-items: center;
32 | }
33 | @include when(align-bottom) {
34 | align-items: flex-end;
35 | }
36 | }
37 |
38 | }
39 |
40 |
--------------------------------------------------------------------------------
/src/assets/style/theme-src/spinner.scss:
--------------------------------------------------------------------------------
1 | @import "mixins/mixins";
2 |
3 | @include b(time-spinner) {
4 | width: 100%;
5 | white-space: nowrap;
6 | }
7 |
8 | @include b(spinner) {
9 | display: inline-block;
10 | vertical-align: middle;
11 | }
12 | @include b(spinner-inner) {
13 | animation: rotate 2s linear infinite;
14 | width: 50px;
15 | height: 50px;
16 |
17 | & .path {
18 | stroke: #ececec;
19 | stroke-linecap: round;
20 | animation: dash 1.5s ease-in-out infinite;
21 | }
22 |
23 | }
24 |
25 | @keyframes rotate {
26 | 100% {
27 | transform: rotate(360deg);
28 | }
29 | }
30 |
31 | @keyframes dash {
32 | 0% {
33 | stroke-dasharray: 1, 150;
34 | stroke-dashoffset: 0;
35 | }
36 | 50% {
37 | stroke-dasharray: 90, 150;
38 | stroke-dashoffset: -35;
39 | }
40 | 100% {
41 | stroke-dasharray: 90, 150;
42 | stroke-dashoffset: -124;
43 | }
44 | }
45 |
--------------------------------------------------------------------------------
/src/assets/style/theme-src/steps.scss:
--------------------------------------------------------------------------------
1 | @import "mixins/mixins";
2 |
3 | @include b(steps) {
4 | display: flex;
5 |
6 | @include m(simple) {
7 | padding: 13px 8%;
8 | border-radius: 4px;
9 | background: $--background-color-base;
10 | }
11 |
12 | @include m(horizontal) {
13 | white-space: nowrap;
14 | }
15 |
16 | @include m(vertical) {
17 | height: 100%;
18 | flex-flow: column;
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/src/assets/style/theme-src/submenu.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/assets/style/theme-src/submenu.scss
--------------------------------------------------------------------------------
/src/assets/style/theme-src/tab-pane.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/assets/style/theme-src/tab-pane.scss
--------------------------------------------------------------------------------
/src/assets/style/theme-src/time-picker.scss:
--------------------------------------------------------------------------------
1 | @import "./date-picker/picker.scss";
2 | @import "./date-picker/picker-panel.scss";
3 | @import "./date-picker/time-spinner.scss";
4 | @import "./date-picker/time-picker.scss";
5 | @import "./date-picker/time-range-picker.scss";
6 | @import "./input.scss";
7 | @import "./scrollbar.scss";
8 | @import "./popper";
9 |
--------------------------------------------------------------------------------
/src/assets/style/theme-src/time-select.scss:
--------------------------------------------------------------------------------
1 | @import "common/var";
2 | @import "./date-picker/picker.scss";
3 | @import "./date-picker/date-picker.scss";
4 | @import "./scrollbar.scss";
5 | @import "./popper";
6 |
7 | .time-select {
8 | margin: 5px 0;
9 | min-width: 0;
10 | }
11 |
12 | .time-select .el-picker-panel__content {
13 | max-height: 200px;
14 | margin: 0;
15 | }
16 |
17 | .time-select-item {
18 | padding: 8px 10px;
19 | font-size: 14px;
20 | line-height: 20px;
21 | }
22 |
23 | .time-select-item.selected:not(.disabled) {
24 | color: $--color-primary;
25 | font-weight: bold;
26 | }
27 |
28 | .time-select-item.disabled {
29 | color: $--datepicker-border-color;
30 | cursor: not-allowed;
31 | }
32 |
33 | .time-select-item:hover {
34 | background-color: $--background-color-base;
35 | font-weight: bold;
36 | cursor: pointer;
37 | }
38 |
--------------------------------------------------------------------------------
/src/components/activitys/zk-groupbuy/index.vue:
--------------------------------------------------------------------------------
1 |
2 | zk-groupbuyzk-groupbuyzk-groupbuy5ug
3 |
4 |
5 |
31 |
--------------------------------------------------------------------------------
/src/components/activitys/zk-groupbuy/styles/a.scss:
--------------------------------------------------------------------------------
1 | #a {
2 | .zk-groupbuy {
3 | }
4 | }
5 |
--------------------------------------------------------------------------------
/src/components/activitys/zk-groupbuy/styles/b.scss:
--------------------------------------------------------------------------------
1 | #b {
2 | .zk-groupbuy {
3 | }
4 | }
5 |
--------------------------------------------------------------------------------
/src/components/activitys/zk-groupbuy/styles/c.scss:
--------------------------------------------------------------------------------
1 | #c {
2 | .zk-groupbuy {
3 | }
4 | }
5 |
--------------------------------------------------------------------------------
/src/components/activitys/zk-groupbuy/styles/d.scss:
--------------------------------------------------------------------------------
1 | #d {
2 | .zk-groupbuy {
3 | }
4 | }
5 |
--------------------------------------------------------------------------------
/src/components/activitys/zk-groupbuy/styles/index.js:
--------------------------------------------------------------------------------
1 | import './a.scss'
2 | import './b.scss'
3 | import './c.scss'
4 | import './d.scss'
5 |
--------------------------------------------------------------------------------
/src/components/activitys/zk-groupbuy/var.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/components/activitys/zk-groupbuy/var.scss
--------------------------------------------------------------------------------
/src/components/articles/zk-aritcle-detail/styles/b.scss:
--------------------------------------------------------------------------------
1 | #b {
2 | .zk-aritcle-detail {}
3 | }
--------------------------------------------------------------------------------
/src/components/articles/zk-aritcle-detail/styles/c.scss:
--------------------------------------------------------------------------------
1 | #c {
2 | .zk-aritcle-detail {}
3 | }
--------------------------------------------------------------------------------
/src/components/articles/zk-aritcle-detail/styles/d.scss:
--------------------------------------------------------------------------------
1 | #d {
2 | .zk-aritcle-detail {}
3 | }
--------------------------------------------------------------------------------
/src/components/articles/zk-aritcle-detail/styles/index.js:
--------------------------------------------------------------------------------
1 | import './a.scss'
2 | import './b.scss'
3 | import './c.scss'
4 | import './d.scss'
5 |
--------------------------------------------------------------------------------
/src/components/articles/zk-aritcle-detail/var.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/components/articles/zk-aritcle-detail/var.scss
--------------------------------------------------------------------------------
/src/components/articles/zk-article/index.vue:
--------------------------------------------------------------------------------
1 |
2 | {{widgetModel}}
3 |
4 |
5 |
31 |
--------------------------------------------------------------------------------
/src/components/articles/zk-article/styles/a.scss:
--------------------------------------------------------------------------------
1 | #a {
2 | .zk-article {}
3 | }
--------------------------------------------------------------------------------
/src/components/articles/zk-article/styles/b.scss:
--------------------------------------------------------------------------------
1 | #b {
2 | .zk-article {}
3 | }
--------------------------------------------------------------------------------
/src/components/articles/zk-article/styles/c.scss:
--------------------------------------------------------------------------------
1 | #c {
2 | .zk-article {}
3 | }
--------------------------------------------------------------------------------
/src/components/articles/zk-article/styles/d.scss:
--------------------------------------------------------------------------------
1 | #d {
2 | .zk-article {}
3 | }
--------------------------------------------------------------------------------
/src/components/articles/zk-article/styles/index.js:
--------------------------------------------------------------------------------
1 | import './a.scss'
2 | import './b.scss'
3 | import './c.scss'
4 | import './d.scss'
5 |
--------------------------------------------------------------------------------
/src/components/articles/zk-article/var.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/components/articles/zk-article/var.scss
--------------------------------------------------------------------------------
/src/components/articles/zk-help/styles/a.scss:
--------------------------------------------------------------------------------
1 | #a {
2 | .zk-help {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/articles/zk-help/styles/b.scss:
--------------------------------------------------------------------------------
1 | #b {
2 | .zk-help {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/articles/zk-help/styles/c.scss:
--------------------------------------------------------------------------------
1 | #c {
2 | .zk-help {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/articles/zk-help/styles/d.scss:
--------------------------------------------------------------------------------
1 | #d {
2 | .zk-help {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/articles/zk-help/styles/index.js:
--------------------------------------------------------------------------------
1 | import './a.scss'
2 | import './b.scss'
3 | import './c.scss'
4 | import './d.scss'
5 |
--------------------------------------------------------------------------------
/src/components/common/zk-backtop/styles/a.scss:
--------------------------------------------------------------------------------
1 | #a {
2 | .zk-backtop {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/common/zk-backtop/styles/b.scss:
--------------------------------------------------------------------------------
1 | #b {
2 | .zk-backtop {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/common/zk-backtop/styles/c.scss:
--------------------------------------------------------------------------------
1 | #c {
2 | .zk-backtop {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/common/zk-backtop/styles/d.scss:
--------------------------------------------------------------------------------
1 | #d {
2 | .zk-backtop {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/common/zk-backtop/styles/index.js:
--------------------------------------------------------------------------------
1 | import './a.scss'
2 | import './b.scss'
3 | import './c.scss'
4 | import './d.scss'
5 |
--------------------------------------------------------------------------------
/src/components/common/zk-backtop/var.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/components/common/zk-backtop/var.scss
--------------------------------------------------------------------------------
/src/components/common/zk-logo/index.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
33 |
--------------------------------------------------------------------------------
/src/components/common/zk-logo/styles/a.scss:
--------------------------------------------------------------------------------
1 | #a {
2 | .zk-logo {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/common/zk-logo/styles/b.scss:
--------------------------------------------------------------------------------
1 | #b {
2 | .zk-logo {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/common/zk-logo/styles/c.scss:
--------------------------------------------------------------------------------
1 | #c {
2 | .zk-logo {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/common/zk-logo/styles/d.scss:
--------------------------------------------------------------------------------
1 | #d {
2 | .zk-logo {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/common/zk-logo/styles/index.js:
--------------------------------------------------------------------------------
1 | import './a.scss'
2 | import './b.scss'
3 | import './c.scss'
4 | import './d.scss'
5 |
--------------------------------------------------------------------------------
/src/components/common/zk-logo/var.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/components/common/zk-logo/var.scss
--------------------------------------------------------------------------------
/src/components/common/zk-nav/styles/a.scss:
--------------------------------------------------------------------------------
1 | #a {
2 | .zk-nav {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/common/zk-nav/styles/b.scss:
--------------------------------------------------------------------------------
1 | #b {
2 | .zk-nav {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/common/zk-nav/styles/c.scss:
--------------------------------------------------------------------------------
1 | #c {
2 | .zk-nav {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/common/zk-nav/styles/d.scss:
--------------------------------------------------------------------------------
1 | #d {
2 | .zk-nav {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/common/zk-nav/styles/index.js:
--------------------------------------------------------------------------------
1 | import './a.scss'
2 | import './b.scss'
3 | import './c.scss'
4 | import './d.scss'
5 |
--------------------------------------------------------------------------------
/src/components/common/zk-nav/var.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/components/common/zk-nav/var.scss
--------------------------------------------------------------------------------
/src/components/common/zk-top-nav/styles/a.scss:
--------------------------------------------------------------------------------
1 | #a {
2 | .zk-top-nav {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/common/zk-top-nav/styles/b.scss:
--------------------------------------------------------------------------------
1 | #b {
2 | .zk-top-nav {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/common/zk-top-nav/styles/c.scss:
--------------------------------------------------------------------------------
1 | #c {
2 | .zk-top-nav {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/common/zk-top-nav/styles/d.scss:
--------------------------------------------------------------------------------
1 | #d {
2 | .zk-top-nav {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/common/zk-top-nav/styles/index.js:
--------------------------------------------------------------------------------
1 | import './a.scss'
2 | import './b.scss'
3 | import './c.scss'
4 | import './d.scss'
5 |
--------------------------------------------------------------------------------
/src/components/common/zk-top-nav/var.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/components/common/zk-top-nav/var.scss
--------------------------------------------------------------------------------
/src/components/finance/zk-amount/index.vue:
--------------------------------------------------------------------------------
1 |
2 | {{widgetModel}}
3 |
4 |
5 |
31 |
--------------------------------------------------------------------------------
/src/components/finance/zk-amount/styles/a.scss:
--------------------------------------------------------------------------------
1 | #a {
2 | .zk-amount {
3 | }
4 | }
5 |
--------------------------------------------------------------------------------
/src/components/finance/zk-amount/styles/b.scss:
--------------------------------------------------------------------------------
1 | #b {
2 | .zk-amount {
3 | }
4 | }
5 |
--------------------------------------------------------------------------------
/src/components/finance/zk-amount/styles/c.scss:
--------------------------------------------------------------------------------
1 | #c {
2 | .zk-amount {
3 | }
4 | }
5 |
--------------------------------------------------------------------------------
/src/components/finance/zk-amount/styles/d.scss:
--------------------------------------------------------------------------------
1 | #d {
2 | .zk-amount {
3 | }
4 | }
5 |
--------------------------------------------------------------------------------
/src/components/finance/zk-amount/styles/index.js:
--------------------------------------------------------------------------------
1 | import './a.scss'
2 | import './b.scss'
3 | import './c.scss'
4 | import './d.scss'
5 |
--------------------------------------------------------------------------------
/src/components/finance/zk-amount/var.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/components/finance/zk-amount/var.scss
--------------------------------------------------------------------------------
/src/components/order/zk-buy/styles/a.scss:
--------------------------------------------------------------------------------
1 | .zk-buy{
2 | font-size: 12px;
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/order/zk-cart/styles/a.scss:
--------------------------------------------------------------------------------
1 | #a {
2 | .zk-cart {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/order/zk-cart/styles/b.scss:
--------------------------------------------------------------------------------
1 | #b {
2 | .zk-cart {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/order/zk-cart/styles/c.scss:
--------------------------------------------------------------------------------
1 | #c {
2 | .zk-cart {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/order/zk-cart/styles/d.scss:
--------------------------------------------------------------------------------
1 | #d {
2 | .zk-cart {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/order/zk-cart/styles/index.js:
--------------------------------------------------------------------------------
1 | import './a.scss'
2 | import './b.scss'
3 | import './c.scss'
4 | import './d.scss'
5 |
--------------------------------------------------------------------------------
/src/components/order/zk-cart/var.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/components/order/zk-cart/var.scss
--------------------------------------------------------------------------------
/src/components/order/zk-order-list/styles/a.scss:
--------------------------------------------------------------------------------
1 | #a {
2 | .zk-order-list {}
3 | }
--------------------------------------------------------------------------------
/src/components/order/zk-order-list/styles/b.scss:
--------------------------------------------------------------------------------
1 | #b {
2 | .zk-order-list {}
3 | }
--------------------------------------------------------------------------------
/src/components/order/zk-order-list/styles/c.scss:
--------------------------------------------------------------------------------
1 | #c {
2 | .zk-order-list {}
3 | }
--------------------------------------------------------------------------------
/src/components/order/zk-order-list/styles/d.scss:
--------------------------------------------------------------------------------
1 | #d {
2 | .zk-order-list {}
3 | }
--------------------------------------------------------------------------------
/src/components/order/zk-order-list/styles/index.js:
--------------------------------------------------------------------------------
1 | import './a.scss'
2 | import './b.scss'
3 | import './c.scss'
4 | import './d.scss'
5 |
--------------------------------------------------------------------------------
/src/components/order/zk-order-list/var.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/components/order/zk-order-list/var.scss
--------------------------------------------------------------------------------
/src/components/order/zk-order-rate/index.vue:
--------------------------------------------------------------------------------
1 |
2 | {{widgetModel}}
3 |
4 |
5 |
31 |
--------------------------------------------------------------------------------
/src/components/order/zk-order-rate/styles/a.scss:
--------------------------------------------------------------------------------
1 | #a {
2 | .zk-order-rate {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/order/zk-order-rate/styles/b.scss:
--------------------------------------------------------------------------------
1 | #b {
2 | .zk-order-rate {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/order/zk-order-rate/styles/c.scss:
--------------------------------------------------------------------------------
1 | #c {
2 | .zk-order-rate {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/order/zk-order-rate/styles/d.scss:
--------------------------------------------------------------------------------
1 | #d {
2 | .zk-order-rate {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/order/zk-order-rate/styles/index.js:
--------------------------------------------------------------------------------
1 | import './a.scss'
2 | import './b.scss'
3 | import './c.scss'
4 | import './d.scss'
5 |
--------------------------------------------------------------------------------
/src/components/order/zk-order-rate/var.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/components/order/zk-order-rate/var.scss
--------------------------------------------------------------------------------
/src/components/order/zk-order-show/styles/a.scss:
--------------------------------------------------------------------------------
1 | #a {
2 | .zk-order-show {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/order/zk-order-show/styles/b.scss:
--------------------------------------------------------------------------------
1 | #b {
2 | .zk-order-show {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/order/zk-order-show/styles/c.scss:
--------------------------------------------------------------------------------
1 | #c {
2 | .zk-order-show {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/order/zk-order-show/styles/d.scss:
--------------------------------------------------------------------------------
1 | #d {
2 | .zk-order-show {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/order/zk-order-show/styles/index.js:
--------------------------------------------------------------------------------
1 | import './a.scss'
2 | import './b.scss'
3 | import './c.scss'
4 | import './d.scss'
5 |
--------------------------------------------------------------------------------
/src/components/order/zk-order-show/var.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/components/order/zk-order-show/var.scss
--------------------------------------------------------------------------------
/src/components/product/zk-product-class/styles/a.scss:
--------------------------------------------------------------------------------
1 | #a {
2 | .zk-product-class {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/product/zk-product-class/styles/b.scss:
--------------------------------------------------------------------------------
1 | #b {
2 | .zk-product-class {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/product/zk-product-class/styles/c.scss:
--------------------------------------------------------------------------------
1 | #c {
2 | .zk-product-class {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/product/zk-product-class/styles/d.scss:
--------------------------------------------------------------------------------
1 | #d {
2 | .zk-product-class {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/product/zk-product-class/styles/index.js:
--------------------------------------------------------------------------------
1 | import './a.scss'
2 | import './b.scss'
3 | import './c.scss'
4 | import './d.scss'
5 |
--------------------------------------------------------------------------------
/src/components/product/zk-product-class/var.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/components/product/zk-product-class/var.scss
--------------------------------------------------------------------------------
/src/components/product/zk-product-list/styles/a.scss:
--------------------------------------------------------------------------------
1 | #a {
2 | .zk-product-list {}
3 | }
--------------------------------------------------------------------------------
/src/components/product/zk-product-list/styles/b.scss:
--------------------------------------------------------------------------------
1 | #b {
2 | .zk-product-list {}
3 | }
--------------------------------------------------------------------------------
/src/components/product/zk-product-list/styles/c.scss:
--------------------------------------------------------------------------------
1 | #c {
2 | .zk-product-list {}
3 | }
--------------------------------------------------------------------------------
/src/components/product/zk-product-list/styles/d.scss:
--------------------------------------------------------------------------------
1 | #d {
2 | .zk-product-list {}
3 | }
--------------------------------------------------------------------------------
/src/components/product/zk-product-list/styles/index.js:
--------------------------------------------------------------------------------
1 | import './a.scss'
2 | import './b.scss'
3 | import './c.scss'
4 | import './d.scss'
5 |
--------------------------------------------------------------------------------
/src/components/product/zk-product-list/var.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/components/product/zk-product-list/var.scss
--------------------------------------------------------------------------------
/src/components/reports/zk-report-table/index.json:
--------------------------------------------------------------------------------
1 | [{
2 | "name": "所有",
3 | "key": "noLimit",
4 | "show": true
5 | }, {
6 | "name": "今天",
7 | "key": "day"
8 | },
9 | {
10 | "name": "昨天",
11 | "key": "yesterDay"
12 | },
13 | {
14 | "name": "本周",
15 | "key": "week",
16 | "show": true
17 | },
18 | {
19 | "name": "本月",
20 | "key": "month",
21 | "show": true
22 | },
23 | {
24 | "name": "本季度",
25 | "key": "quarter",
26 | "show": true
27 | },
28 | {
29 | "name": "半年",
30 | "key": "halfYear",
31 | "show": true
32 | },
33 | {
34 | "name": "本年",
35 | "key": "year",
36 | "show": true
37 | },
38 | {
39 | "name": "一小时",
40 | "key": "hours"
41 | },
42 | {
43 | "name": "指定时间",
44 | "key": "customer",
45 | "show": true
46 | }
47 | ]
48 |
--------------------------------------------------------------------------------
/src/components/reports/zk-report-table/index.md:
--------------------------------------------------------------------------------
1 | # zk-report-table
2 | - style:数据显示类型
3 | · 1:仅显示报表
4 | · 2:仅显示表格
5 | · 3:报表和表格同时显示
6 |
7 | - reportType:报表类型
8 | · 0: 折线图
9 | · 1: 柱状图
10 | · 2:条形图
11 | · 3:饼图
12 | · 4:环图
13 | · 11:散点图
14 | · 12:candle
--------------------------------------------------------------------------------
/src/components/reports/zk-report-table/timer.js:
--------------------------------------------------------------------------------
1 | export default {
2 | // 格式化时间
3 | timeFormat (date) {
4 | if (!date || typeof (date) === 'string') {
5 | return
6 | }
7 | var y = date.getFullYear()
8 | var m = date.getMonth() + 1
9 | var d = date.getDate()
10 | return y + '-' + m + '-' + d
11 | },
12 | getTime (date, type) {
13 | // 获取本周的周一
14 | if (type === 'week') {
15 | var weekday = date.getDay() || 7
16 | date.setDate(date.getDate() - weekday + 1)
17 | }
18 | // 获取本月的第一天
19 | if (type === 'mounth') {
20 | date.setDate(1)
21 | }
22 | // 获取本年的第一天
23 | if (type === 'year') {
24 | date.setDate(1)
25 | date.setMonth(0)
26 | }
27 | return this.timeFormat(date)
28 | }
29 | }
30 |
--------------------------------------------------------------------------------
/src/components/reports/zk-report-table/var.scss:
--------------------------------------------------------------------------------
1 | .zk-report-table {
2 | .el-tabs--top {
3 | margin: 0;
4 | height: 60px;
5 | }
6 |
7 | .el-tabs__header {
8 | margin: 0;
9 | }
10 |
11 | .el-tabs__item {
12 | height: 60px;
13 | line-height: 60px;
14 | // color: #fff;
15 | }
16 |
17 | .el-tabs__item.is-active {
18 | color: #e95a40;
19 | }
20 |
21 | .el-tabs__item {
22 | padding: 0 5px;
23 | }
24 |
25 | .el-date-editor {
26 | .el-range-separator {
27 | width: 34px;
28 | }
29 | }
30 | }
31 |
--------------------------------------------------------------------------------
/src/components/reports/zk-single-report/items/introduce-item.vue:
--------------------------------------------------------------------------------
1 |
2 |
12 |
13 |
25 |
28 |
--------------------------------------------------------------------------------
/src/components/themes/zk-address/index.vue:
--------------------------------------------------------------------------------
1 |
2 | {{widgetModel}}
3 |
4 |
5 |
31 |
--------------------------------------------------------------------------------
/src/components/themes/zk-address/styles/a.scss:
--------------------------------------------------------------------------------
1 | #a {
2 | .zk-address {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/themes/zk-address/styles/b.scss:
--------------------------------------------------------------------------------
1 | #b {
2 | .zk-address {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/themes/zk-address/styles/c.scss:
--------------------------------------------------------------------------------
1 | #c {
2 | .zk-address {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/themes/zk-address/styles/d.scss:
--------------------------------------------------------------------------------
1 | #d {
2 | .zk-address {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/themes/zk-address/styles/index.js:
--------------------------------------------------------------------------------
1 | import './a.scss'
2 | import './b.scss'
3 | import './c.scss'
4 | import './d.scss'
5 |
--------------------------------------------------------------------------------
/src/components/themes/zk-address/var.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/components/themes/zk-address/var.scss
--------------------------------------------------------------------------------
/src/components/themes/zk-audio/index.vue:
--------------------------------------------------------------------------------
1 |
2 | {{widgetModel}}
3 |
4 |
5 |
31 |
--------------------------------------------------------------------------------
/src/components/themes/zk-audio/styles/a.scss:
--------------------------------------------------------------------------------
1 | #a {
2 | .zk-audio {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/themes/zk-audio/styles/b.scss:
--------------------------------------------------------------------------------
1 | #b {
2 | .zk-audio {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/themes/zk-audio/styles/c.scss:
--------------------------------------------------------------------------------
1 | #c {
2 | .zk-audio {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/themes/zk-audio/styles/d.scss:
--------------------------------------------------------------------------------
1 | #d {
2 | .zk-audio {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/themes/zk-audio/styles/index.js:
--------------------------------------------------------------------------------
1 | import './a.scss'
2 | import './b.scss'
3 | import './c.scss'
4 | import './d.scss'
5 |
--------------------------------------------------------------------------------
/src/components/themes/zk-audio/var.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/components/themes/zk-audio/var.scss
--------------------------------------------------------------------------------
/src/components/themes/zk-auto-form/property.js:
--------------------------------------------------------------------------------
1 | export const editSetting = {
2 | 'Name': 'zk-auto-form',
3 | 'Path': 'core/zk-auto-form',
4 | 'Key': 'zk-auto-form',
5 | 'Editors': [
6 | {
7 | 'GroupName': '基本设置',
8 | 'Items': [
9 | {
10 | 'Field': 'font_color',
11 | 'Name': '字体颜色',
12 | 'Type': 51,
13 | 'Value': '#000000',
14 | 'Data': null
15 | }
16 | ]
17 | }
18 | ],
19 | 'Events': [
20 | {
21 | 'Type': 3,
22 | 'Name': '初始化'
23 | }
24 | ],
25 | 'Type': 0,
26 | 'EventName': null,
27 | 'Id': 'ce7f2445c5e8ed74351be91b',
28 | 'CreateTime': '2018-07-17 19:12:14'
29 | }
30 |
--------------------------------------------------------------------------------
/src/components/themes/zk-auto-form/reg-map.js:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 | const regMap = {
3 | 1: /^[a-zA-Z0-9]+([._\\-]*[a-zA-Z0-9])*@([a-zA-Z0-9]+[-a-zA-Z0-9]*[a-zA-Z0-9]+.){1,63}[a-zA-Z0-9]+$/, // 邮箱
4 | 2: /^(13[0-9]|14[579]|15[0-3,5-9]|16[6]|17[0135678]|18[0-9]|19[89])\d{8}$/, // 手机号
5 | 3: /^[1-9]\d{5}(18|19|([23]\d))\d{2}((0[1-9])|(10|11|12))(([0-2][1-9])|10|20|30|31)\d{3}[0-9Xx]$/, // 身份证号
6 | 4: /^-?\d+$/, // 整数
7 | 5: /^-?\d*\.?\d+$/, // 整数或小数
8 | 6: /^((https?|ftp|file):\/\/)?([\da-z\.-]+)\.([a-z\.]{2,6})([\/\w \.-]*)*\/?$/, // url
9 | 7: /^(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$/ // ipv4
10 | }
11 |
12 | export default regMap
13 |
--------------------------------------------------------------------------------
/src/components/themes/zk-avatar/index.vue:
--------------------------------------------------------------------------------
1 |
2 | {{widgetModel}}
3 |
4 |
5 |
31 |
--------------------------------------------------------------------------------
/src/components/themes/zk-avatar/styles/a.scss:
--------------------------------------------------------------------------------
1 | #a {
2 | .zk-avatar {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/themes/zk-avatar/styles/b.scss:
--------------------------------------------------------------------------------
1 | #b {
2 | .zk-avatar {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/themes/zk-avatar/styles/c.scss:
--------------------------------------------------------------------------------
1 | #c {
2 | .zk-avatar {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/themes/zk-avatar/styles/d.scss:
--------------------------------------------------------------------------------
1 | #d {
2 | .zk-avatar {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/themes/zk-avatar/styles/index.js:
--------------------------------------------------------------------------------
1 | import './a.scss'
2 | import './b.scss'
3 | import './c.scss'
4 | import './d.scss'
5 |
--------------------------------------------------------------------------------
/src/components/themes/zk-avatar/var.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/components/themes/zk-avatar/var.scss
--------------------------------------------------------------------------------
/src/components/themes/zk-countdown/index.vue:
--------------------------------------------------------------------------------
1 |
2 | {{widgetModel}}
3 |
4 |
5 |
31 |
--------------------------------------------------------------------------------
/src/components/themes/zk-countdown/styles/a.scss:
--------------------------------------------------------------------------------
1 | #a {
2 | .zk-countdown {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/themes/zk-countdown/styles/b.scss:
--------------------------------------------------------------------------------
1 | #b {
2 | .zk-countdown {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/themes/zk-countdown/styles/c.scss:
--------------------------------------------------------------------------------
1 | #c {
2 | .zk-countdown {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/themes/zk-countdown/styles/d.scss:
--------------------------------------------------------------------------------
1 | #d {
2 | .zk-countdown {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/themes/zk-countdown/styles/index.js:
--------------------------------------------------------------------------------
1 | import './a.scss'
2 | import './b.scss'
3 | import './c.scss'
4 | import './d.scss'
5 |
--------------------------------------------------------------------------------
/src/components/themes/zk-countdown/var.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/components/themes/zk-countdown/var.scss
--------------------------------------------------------------------------------
/src/components/themes/zk-dialog/dialog.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/src/components/themes/zk-dialog/styles/a.scss:
--------------------------------------------------------------------------------
1 | #a {
2 | .zk-dialog {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/themes/zk-dialog/styles/b.scss:
--------------------------------------------------------------------------------
1 | #b {
2 | .zk-dialog {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/themes/zk-dialog/styles/c.scss:
--------------------------------------------------------------------------------
1 | #c {
2 | .zk-dialog {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/themes/zk-dialog/styles/d.scss:
--------------------------------------------------------------------------------
1 | #d {
2 | .zk-dialog {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/themes/zk-dialog/styles/index.js:
--------------------------------------------------------------------------------
1 | import './a.scss'
2 | import './b.scss'
3 | import './c.scss'
4 | import './d.scss'
5 |
--------------------------------------------------------------------------------
/src/components/themes/zk-dialog/var.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/components/themes/zk-dialog/var.scss
--------------------------------------------------------------------------------
/src/components/themes/zk-foot/styles/a.scss:
--------------------------------------------------------------------------------
1 | #a {
2 | .zk-foot {}
3 | }
--------------------------------------------------------------------------------
/src/components/themes/zk-foot/styles/b.scss:
--------------------------------------------------------------------------------
1 | #b {
2 | .zk-foot {}
3 | }
--------------------------------------------------------------------------------
/src/components/themes/zk-foot/styles/c.scss:
--------------------------------------------------------------------------------
1 | #c {
2 | .zk-foot {}
3 | }
--------------------------------------------------------------------------------
/src/components/themes/zk-foot/styles/d.scss:
--------------------------------------------------------------------------------
1 | #d {
2 | .zk-foot {}
3 | }
--------------------------------------------------------------------------------
/src/components/themes/zk-foot/styles/index.js:
--------------------------------------------------------------------------------
1 | import './a.scss'
2 | import './b.scss'
3 | import './c.scss'
4 | import './d.scss'
5 |
--------------------------------------------------------------------------------
/src/components/themes/zk-grid/styles/a.scss:
--------------------------------------------------------------------------------
1 | #a {
2 | .zk-grid {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/themes/zk-grid/styles/b.scss:
--------------------------------------------------------------------------------
1 | #b {
2 | .zk-grid {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/themes/zk-grid/styles/c.scss:
--------------------------------------------------------------------------------
1 | #c {
2 | .zk-grid {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/themes/zk-grid/styles/d.scss:
--------------------------------------------------------------------------------
1 | #d {
2 | .zk-grid {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/themes/zk-grid/styles/index.js:
--------------------------------------------------------------------------------
1 | import './a.scss'
2 | import './b.scss'
3 | import './c.scss'
4 | import './d.scss'
5 |
--------------------------------------------------------------------------------
/src/components/themes/zk-grid/var.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/components/themes/zk-grid/var.scss
--------------------------------------------------------------------------------
/src/components/themes/zk-head/styles/a.scss:
--------------------------------------------------------------------------------
1 | #a {
2 | .zk-head {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/themes/zk-head/styles/b.scss:
--------------------------------------------------------------------------------
1 | #b {
2 | .zk-head {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/themes/zk-head/styles/c.scss:
--------------------------------------------------------------------------------
1 | #c {
2 | .zk-head {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/themes/zk-head/styles/d.scss:
--------------------------------------------------------------------------------
1 | #d {
2 | .zk-head {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/themes/zk-head/styles/index.js:
--------------------------------------------------------------------------------
1 | import './a.scss'
2 | import './b.scss'
3 | import './c.scss'
4 | import './d.scss'
5 |
--------------------------------------------------------------------------------
/src/components/themes/zk-head/var.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/components/themes/zk-head/var.scss
--------------------------------------------------------------------------------
/src/components/themes/zk-html/index.vue:
--------------------------------------------------------------------------------
1 |
2 | {{widgetModel}}
3 |
4 |
5 |
31 |
--------------------------------------------------------------------------------
/src/components/themes/zk-html/styles/a.scss:
--------------------------------------------------------------------------------
1 | #a {
2 | .zk-html {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/themes/zk-html/styles/b.scss:
--------------------------------------------------------------------------------
1 | #b {
2 | .zk-html {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/themes/zk-html/styles/c.scss:
--------------------------------------------------------------------------------
1 | #c {
2 | .zk-html {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/themes/zk-html/styles/d.scss:
--------------------------------------------------------------------------------
1 | #d {
2 | .zk-html {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/themes/zk-html/styles/index.js:
--------------------------------------------------------------------------------
1 | import './a.scss'
2 | import './b.scss'
3 | import './c.scss'
4 | import './d.scss'
5 |
--------------------------------------------------------------------------------
/src/components/themes/zk-html/var.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/components/themes/zk-html/var.scss
--------------------------------------------------------------------------------
/src/components/themes/zk-image-list/index.vue:
--------------------------------------------------------------------------------
1 |
2 | {{widgetModel}}
3 |
4 |
5 |
31 |
--------------------------------------------------------------------------------
/src/components/themes/zk-image-list/styles/a.scss:
--------------------------------------------------------------------------------
1 | #a {
2 | .zk-image-list {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/themes/zk-image-list/styles/b.scss:
--------------------------------------------------------------------------------
1 | #b {
2 | .zk-image-list {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/themes/zk-image-list/styles/c.scss:
--------------------------------------------------------------------------------
1 | #c {
2 | .zk-image-list {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/themes/zk-image-list/styles/d.scss:
--------------------------------------------------------------------------------
1 | #d {
2 | .zk-image-list {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/themes/zk-image-list/styles/index.js:
--------------------------------------------------------------------------------
1 | import './a.scss'
2 | import './b.scss'
3 | import './c.scss'
4 | import './d.scss'
5 |
--------------------------------------------------------------------------------
/src/components/themes/zk-image-list/var.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/components/themes/zk-image-list/var.scss
--------------------------------------------------------------------------------
/src/components/themes/zk-image/index.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
33 |
--------------------------------------------------------------------------------
/src/components/themes/zk-image/styles/a.scss:
--------------------------------------------------------------------------------
1 | #a {
2 | .zk-image {}
3 | }
--------------------------------------------------------------------------------
/src/components/themes/zk-image/styles/b.scss:
--------------------------------------------------------------------------------
1 | #b {
2 | .zk-image {}
3 | }
--------------------------------------------------------------------------------
/src/components/themes/zk-image/styles/c.scss:
--------------------------------------------------------------------------------
1 | #c {
2 | .zk-image {}
3 | }
--------------------------------------------------------------------------------
/src/components/themes/zk-image/styles/d.scss:
--------------------------------------------------------------------------------
1 | #d {
2 | .zk-image {}
3 | }
--------------------------------------------------------------------------------
/src/components/themes/zk-image/styles/index.js:
--------------------------------------------------------------------------------
1 | import './a.scss'
2 | import './b.scss'
3 | import './c.scss'
4 | import './d.scss'
5 |
--------------------------------------------------------------------------------
/src/components/themes/zk-image/var.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/components/themes/zk-image/var.scss
--------------------------------------------------------------------------------
/src/components/themes/zk-keyword/index.vue:
--------------------------------------------------------------------------------
1 |
2 | {{widgetModel}}
3 |
4 |
5 |
31 |
--------------------------------------------------------------------------------
/src/components/themes/zk-keyword/styles/a.scss:
--------------------------------------------------------------------------------
1 | #a {
2 | .zk-keyword {}
3 | }
--------------------------------------------------------------------------------
/src/components/themes/zk-keyword/styles/b.scss:
--------------------------------------------------------------------------------
1 | #b {
2 | .zk-keyword {}
3 | }
--------------------------------------------------------------------------------
/src/components/themes/zk-keyword/styles/c.scss:
--------------------------------------------------------------------------------
1 | #c {
2 | .zk-keyword {}
3 | }
--------------------------------------------------------------------------------
/src/components/themes/zk-keyword/styles/d.scss:
--------------------------------------------------------------------------------
1 | #d {
2 | .zk-keyword {}
3 | }
--------------------------------------------------------------------------------
/src/components/themes/zk-keyword/styles/index.js:
--------------------------------------------------------------------------------
1 | import './a.scss'
2 | import './b.scss'
3 | import './c.scss'
4 | import './d.scss'
5 |
--------------------------------------------------------------------------------
/src/components/themes/zk-keyword/var.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/components/themes/zk-keyword/var.scss
--------------------------------------------------------------------------------
/src/components/themes/zk-list/styles/a.scss:
--------------------------------------------------------------------------------
1 | #a {
2 | .zk-list {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/themes/zk-list/styles/b.scss:
--------------------------------------------------------------------------------
1 | #b {
2 | .zk-list {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/themes/zk-list/styles/c.scss:
--------------------------------------------------------------------------------
1 | #c {
2 | .zk-list {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/themes/zk-list/styles/d.scss:
--------------------------------------------------------------------------------
1 | #d {
2 | .zk-list {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/themes/zk-list/styles/index.js:
--------------------------------------------------------------------------------
1 | import './a.scss'
2 | import './b.scss'
3 | import './c.scss'
4 | import './d.scss'
5 |
--------------------------------------------------------------------------------
/src/components/themes/zk-list/var.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/components/themes/zk-list/var.scss
--------------------------------------------------------------------------------
/src/components/themes/zk-popup/index.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
31 |
--------------------------------------------------------------------------------
/src/components/themes/zk-popup/styles/a.scss:
--------------------------------------------------------------------------------
1 | #a {
2 | .zk-popup {}
3 | }
--------------------------------------------------------------------------------
/src/components/themes/zk-popup/styles/b.scss:
--------------------------------------------------------------------------------
1 | #b {
2 | .zk-popup {}
3 | }
--------------------------------------------------------------------------------
/src/components/themes/zk-popup/styles/c.scss:
--------------------------------------------------------------------------------
1 | #c {
2 | .zk-popup {}
3 | }
--------------------------------------------------------------------------------
/src/components/themes/zk-popup/styles/d.scss:
--------------------------------------------------------------------------------
1 | #d {
2 | .zk-popup {}
3 | }
--------------------------------------------------------------------------------
/src/components/themes/zk-popup/styles/index.js:
--------------------------------------------------------------------------------
1 | import './a.scss'
2 | import './b.scss'
3 | import './c.scss'
4 | import './d.scss'
5 |
--------------------------------------------------------------------------------
/src/components/themes/zk-popup/var.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/components/themes/zk-popup/var.scss
--------------------------------------------------------------------------------
/src/components/themes/zk-quick-action/items/guide-item.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
{{item.name}}
8 |
{{item.intro}}
9 |
去看看
10 |
11 |
12 |
13 |
27 |
28 |
31 |
--------------------------------------------------------------------------------
/src/components/themes/zk-quick-action/var.scss:
--------------------------------------------------------------------------------
1 | .zk-quick-action {
2 | .zk-quick-action-cont {
3 | padding: 15px;
4 |
5 | ul {
6 | display: flex;
7 | flex-wrap: wrap;
8 |
9 | .zk-quick-action-list {
10 | width: 70px;
11 | height: 70px;
12 | background: #5E738B;
13 | display: flex;
14 | flex-direction: column;
15 | justify-content: flex-end;
16 | margin: 5px;
17 |
18 | .zk-quick-action-icon {
19 | height: 35px;
20 | line-height: 40px;
21 | text-align: center;
22 | }
23 |
24 | .zk-quick-action-text {
25 | height: 30px;
26 | line-height: 30px;
27 | text-align: center;
28 | color: #fff;
29 | }
30 | }
31 | }
32 | }
33 | }
34 |
--------------------------------------------------------------------------------
/src/components/themes/zk-search/styles/a.scss:
--------------------------------------------------------------------------------
1 | #a {
2 | .zk-search {}
3 | }
--------------------------------------------------------------------------------
/src/components/themes/zk-search/styles/b.scss:
--------------------------------------------------------------------------------
1 | #b {
2 | .zk-search {}
3 | }
--------------------------------------------------------------------------------
/src/components/themes/zk-search/styles/c.scss:
--------------------------------------------------------------------------------
1 | #c {
2 | .zk-search {}
3 | }
--------------------------------------------------------------------------------
/src/components/themes/zk-search/styles/d.scss:
--------------------------------------------------------------------------------
1 | #d {
2 | .zk-search {}
3 | }
--------------------------------------------------------------------------------
/src/components/themes/zk-search/styles/index.js:
--------------------------------------------------------------------------------
1 | import './a.scss'
2 | import './b.scss'
3 | import './c.scss'
4 | import './d.scss'
5 |
--------------------------------------------------------------------------------
/src/components/themes/zk-search/var.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/components/themes/zk-search/var.scss
--------------------------------------------------------------------------------
/src/components/themes/zk-swiper-nav/styles/b.scss:
--------------------------------------------------------------------------------
1 | #b {
2 | .zk-swiper-nav {}
3 | }
--------------------------------------------------------------------------------
/src/components/themes/zk-swiper-nav/styles/c.scss:
--------------------------------------------------------------------------------
1 | #c {
2 | .zk-swiper-nav {}
3 | }
--------------------------------------------------------------------------------
/src/components/themes/zk-swiper-nav/styles/d.scss:
--------------------------------------------------------------------------------
1 | #d {
2 | .zk-swiper-nav {}
3 | }
--------------------------------------------------------------------------------
/src/components/themes/zk-swiper-nav/styles/index.js:
--------------------------------------------------------------------------------
1 | import './a.scss'
2 | import './b.scss'
3 | import './c.scss'
4 | import './d.scss'
5 |
--------------------------------------------------------------------------------
/src/components/themes/zk-swiper-nav/var.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/components/themes/zk-swiper-nav/var.scss
--------------------------------------------------------------------------------
/src/components/themes/zk-swiper/styles/a.scss:
--------------------------------------------------------------------------------
1 | #a {
2 | .zk-swiper {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/themes/zk-swiper/styles/b.scss:
--------------------------------------------------------------------------------
1 | #b {
2 | .zk-swiper {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/themes/zk-swiper/styles/c.scss:
--------------------------------------------------------------------------------
1 | #c {
2 | .zk-swiper {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/themes/zk-swiper/styles/d.scss:
--------------------------------------------------------------------------------
1 | #d {
2 | .zk-swiper {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/themes/zk-swiper/styles/index.js:
--------------------------------------------------------------------------------
1 | import './a.scss'
2 | import './b.scss'
3 | import './c.scss'
4 | import './d.scss'
5 |
--------------------------------------------------------------------------------
/src/components/themes/zk-swiper/var.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/components/themes/zk-swiper/var.scss
--------------------------------------------------------------------------------
/src/components/themes/zk-table/index.vue:
--------------------------------------------------------------------------------
1 |
2 | {{widgetModel}}
3 |
4 |
5 |
31 |
--------------------------------------------------------------------------------
/src/components/themes/zk-table/styles/a.scss:
--------------------------------------------------------------------------------
1 | #a {
2 | .zk-table {}
3 | }
--------------------------------------------------------------------------------
/src/components/themes/zk-table/styles/b.scss:
--------------------------------------------------------------------------------
1 | #b {
2 | .zk-table {}
3 | }
--------------------------------------------------------------------------------
/src/components/themes/zk-table/styles/c.scss:
--------------------------------------------------------------------------------
1 | #c {
2 | .zk-table {}
3 | }
--------------------------------------------------------------------------------
/src/components/themes/zk-table/styles/d.scss:
--------------------------------------------------------------------------------
1 | #d {
2 | .zk-table {}
3 | }
--------------------------------------------------------------------------------
/src/components/themes/zk-table/styles/index.js:
--------------------------------------------------------------------------------
1 | import './a.scss'
2 | import './b.scss'
3 | import './c.scss'
4 | import './d.scss'
5 |
--------------------------------------------------------------------------------
/src/components/themes/zk-table/var.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/components/themes/zk-table/var.scss
--------------------------------------------------------------------------------
/src/components/themes/zk-text/index.vue:
--------------------------------------------------------------------------------
1 |
2 | {{widgetModel}}
3 |
4 |
5 |
31 |
--------------------------------------------------------------------------------
/src/components/themes/zk-text/styles/a.scss:
--------------------------------------------------------------------------------
1 | #a {
2 | .zk-text {}
3 | }
--------------------------------------------------------------------------------
/src/components/themes/zk-text/styles/b.scss:
--------------------------------------------------------------------------------
1 | #b {
2 | .zk-text {}
3 | }
--------------------------------------------------------------------------------
/src/components/themes/zk-text/styles/c.scss:
--------------------------------------------------------------------------------
1 | #c {
2 | .zk-text {}
3 | }
--------------------------------------------------------------------------------
/src/components/themes/zk-text/styles/d.scss:
--------------------------------------------------------------------------------
1 | #d {
2 | .zk-text {}
3 | }
--------------------------------------------------------------------------------
/src/components/themes/zk-text/styles/index.js:
--------------------------------------------------------------------------------
1 | import './a.scss'
2 | import './b.scss'
3 | import './c.scss'
4 | import './d.scss'
5 |
--------------------------------------------------------------------------------
/src/components/themes/zk-text/var.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/components/themes/zk-text/var.scss
--------------------------------------------------------------------------------
/src/components/themes/zk-title/index.vue:
--------------------------------------------------------------------------------
1 |
2 | {{widgetModel}}
3 |
4 |
5 |
31 |
--------------------------------------------------------------------------------
/src/components/themes/zk-title/styles/a.scss:
--------------------------------------------------------------------------------
1 | #a {
2 | .zk-title {}
3 | }
--------------------------------------------------------------------------------
/src/components/themes/zk-title/styles/b.scss:
--------------------------------------------------------------------------------
1 | #b {
2 | .zk-title {}
3 | }
--------------------------------------------------------------------------------
/src/components/themes/zk-title/styles/c.scss:
--------------------------------------------------------------------------------
1 | #c {
2 | .zk-title {}
3 | }
--------------------------------------------------------------------------------
/src/components/themes/zk-title/styles/d.scss:
--------------------------------------------------------------------------------
1 | #d {
2 | .zk-title {}
3 | }
--------------------------------------------------------------------------------
/src/components/themes/zk-title/styles/index.js:
--------------------------------------------------------------------------------
1 | import './a.scss'
2 | import './b.scss'
3 | import './c.scss'
4 | import './d.scss'
5 |
--------------------------------------------------------------------------------
/src/components/themes/zk-title/var.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/components/themes/zk-title/var.scss
--------------------------------------------------------------------------------
/src/components/themes/zk-top/index.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 | {{title}}
4 |
5 |
6 |
7 |
16 |
17 |
18 |
19 |
22 |
23 |
--------------------------------------------------------------------------------
/src/components/themes/zk-top/var.scss:
--------------------------------------------------------------------------------
1 | .zk-top{
2 | width: 1000px;
3 | height: 46px;
4 | line-height: 46px;
5 | padding-left: 10px;
6 | border: 1px solid #DDDDDD;
7 | border-top: 4px solid #000000;
8 | background: #F2F2F2;
9 | color: #323232;
10 | font-size: 18px;
11 | font-weight: 600;
12 | }
--------------------------------------------------------------------------------
/src/components/themes/zk-treetable/eval.js:
--------------------------------------------------------------------------------
1 | /**
2 | * @Author: jianglei
3 | * @Date: 2017-10-12 12:06:49
4 | */
5 | 'use strict'
6 | import Vue from 'vue'
7 | export default function treeToArray (data, expandAll, parent = null, level = null) {
8 | let tmp = []
9 | Array.from(data).forEach(function (record) {
10 | if (record._expanded === undefined) {
11 | Vue.set(record, '_expanded', expandAll)
12 | }
13 | let _level = 1
14 | if (level !== undefined && level !== null) {
15 | _level = level + 1
16 | }
17 | Vue.set(record, '_level', _level)
18 | // 如果有父元素
19 | if (parent) {
20 | Vue.set(record, 'parent', parent)
21 | }
22 | tmp.push(record)
23 | if (record.childClass && record.childClass.length > 0) {
24 | const children = treeToArray(record.childClass, expandAll, record, _level)
25 | tmp = tmp.concat(children)
26 | }
27 | })
28 | return tmp
29 | }
30 |
--------------------------------------------------------------------------------
/src/components/themes/zk-treetable/var.scss:
--------------------------------------------------------------------------------
1 | .zk-treetable {
2 | .img {
3 | width: 50px;
4 | height: 50px;
5 | }
6 | $color-blue: #2196f3;
7 | $space-width: 18px;
8 | .ms-tree-space {
9 | position: relative;
10 | top: 1px;
11 | display: inline-block;
12 | font-style: normal;
13 | font-weight: 400;
14 | line-height: 1;
15 | width: $space-width;
16 | height: 14px;
17 | &::before {
18 | content: "";
19 | }
20 | }
21 | .processContainer {
22 | width: 100%;
23 | height: 100%;
24 | }
25 | table td {
26 | line-height: 26px;
27 | }
28 | .tree-ctrl {
29 | position: relative;
30 | cursor: pointer;
31 | color: $color-blue;
32 | margin-left: -$space-width;
33 | }
34 | }
--------------------------------------------------------------------------------
/src/components/themes/zk-video/index.vue:
--------------------------------------------------------------------------------
1 |
2 | {{widgetModel}}
3 |
4 |
5 |
31 |
--------------------------------------------------------------------------------
/src/components/themes/zk-video/styles/a.scss:
--------------------------------------------------------------------------------
1 | #a {
2 | .zk-video {}
3 | }
--------------------------------------------------------------------------------
/src/components/themes/zk-video/styles/b.scss:
--------------------------------------------------------------------------------
1 | #b {
2 | .zk-video {}
3 | }
--------------------------------------------------------------------------------
/src/components/themes/zk-video/styles/c.scss:
--------------------------------------------------------------------------------
1 | #c {
2 | .zk-video {}
3 | }
--------------------------------------------------------------------------------
/src/components/themes/zk-video/styles/d.scss:
--------------------------------------------------------------------------------
1 | #d {
2 | .zk-video {}
3 | }
--------------------------------------------------------------------------------
/src/components/themes/zk-video/styles/index.js:
--------------------------------------------------------------------------------
1 | import './a.scss'
2 | import './b.scss'
3 | import './c.scss'
4 | import './d.scss'
5 |
--------------------------------------------------------------------------------
/src/components/themes/zk-video/var.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/components/themes/zk-video/var.scss
--------------------------------------------------------------------------------
/src/components/user/zk-address-edit/styles/a.scss:
--------------------------------------------------------------------------------
1 | #a {
2 | .zk-address-edit {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/user/zk-address-edit/styles/b.scss:
--------------------------------------------------------------------------------
1 | #b {
2 | .zk-address-edit {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/user/zk-address-edit/styles/c.scss:
--------------------------------------------------------------------------------
1 | #c {
2 | .zk-address-edit {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/user/zk-address-edit/styles/d.scss:
--------------------------------------------------------------------------------
1 | #d {
2 | .zk-address-edit {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/user/zk-address-edit/styles/index.js:
--------------------------------------------------------------------------------
1 | import './a.scss'
2 | import './b.scss'
3 | import './c.scss'
4 | import './d.scss'
5 |
--------------------------------------------------------------------------------
/src/components/user/zk-head-user/styles/a.scss:
--------------------------------------------------------------------------------
1 | #a {
2 | .zk-head-user {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/user/zk-head-user/styles/b.scss:
--------------------------------------------------------------------------------
1 | #b {
2 | .zk-head-user {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/user/zk-head-user/styles/c.scss:
--------------------------------------------------------------------------------
1 | #c {
2 | .zk-head-user {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/user/zk-head-user/styles/d.scss:
--------------------------------------------------------------------------------
1 | #d {
2 | .zk-head-user {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/user/zk-head-user/styles/index.js:
--------------------------------------------------------------------------------
1 | import './a.scss'
2 | import './b.scss'
3 | import './c.scss'
4 | import './d.scss'
5 |
--------------------------------------------------------------------------------
/src/components/user/zk-head-user/var.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/components/user/zk-head-user/var.scss
--------------------------------------------------------------------------------
/src/components/user/zk-qrcode/index.vue:
--------------------------------------------------------------------------------
1 |
2 | {{widgetModel}}
3 |
4 |
5 |
31 |
--------------------------------------------------------------------------------
/src/components/user/zk-qrcode/styles/a.scss:
--------------------------------------------------------------------------------
1 | #a {
2 | .zk-qrcode {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/user/zk-qrcode/styles/b.scss:
--------------------------------------------------------------------------------
1 | #b {
2 | .zk-qrcode {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/user/zk-qrcode/styles/c.scss:
--------------------------------------------------------------------------------
1 | #c {
2 | .zk-qrcode {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/user/zk-qrcode/styles/d.scss:
--------------------------------------------------------------------------------
1 | #d {
2 | .zk-qrcode {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/user/zk-qrcode/styles/index.js:
--------------------------------------------------------------------------------
1 | import './a.scss'
2 | import './b.scss'
3 | import './c.scss'
4 | import './d.scss'
5 |
--------------------------------------------------------------------------------
/src/components/user/zk-qrcode/var.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/components/user/zk-qrcode/var.scss
--------------------------------------------------------------------------------
/src/components/user/zk-user-address/index.vue:
--------------------------------------------------------------------------------
1 |
2 | {{widgetModel}}
3 |
4 |
5 |
31 |
--------------------------------------------------------------------------------
/src/components/user/zk-user-address/styles/a.scss:
--------------------------------------------------------------------------------
1 | #a {
2 | .zk-user-address {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/user/zk-user-address/styles/b.scss:
--------------------------------------------------------------------------------
1 | #b {
2 | .zk-user-address {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/user/zk-user-address/styles/c.scss:
--------------------------------------------------------------------------------
1 | #c {
2 | .zk-user-address {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/user/zk-user-address/styles/d.scss:
--------------------------------------------------------------------------------
1 | #d {
2 | .zk-user-address {}
3 | }
4 |
--------------------------------------------------------------------------------
/src/components/user/zk-user-address/styles/index.js:
--------------------------------------------------------------------------------
1 | import './a.scss'
2 | import './b.scss'
3 | import './c.scss'
4 | import './d.scss'
5 |
--------------------------------------------------------------------------------
/src/components/user/zk-user-address/var.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/components/user/zk-user-address/var.scss
--------------------------------------------------------------------------------
/src/elements/x-autoconfig/index.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 | {{viewModel.value}}
4 |
5 |
6 |
7 |
38 |
--------------------------------------------------------------------------------
/src/elements/x-code/index.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
16 |
--------------------------------------------------------------------------------
/src/elements/x-col/index.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
32 |
38 |
39 |
--------------------------------------------------------------------------------
/src/elements/x-data-select/product.json:
--------------------------------------------------------------------------------
1 | {
2 | "apiUrl": "api/product/querylist",
3 | "columns": [{
4 | "prop": "mane",
5 | "label": "名称",
6 | "width": 250
7 | }, {
8 | "prop": "bn",
9 | "label": "货号",
10 | "width": 300
11 | },
12 | {
13 | "prop": "price",
14 | "label": "价格",
15 | "width": 300
16 | },
17 | {
18 | "prop": "stock",
19 | "label": "库存",
20 | "width": 300
21 | },
22 | {
23 | "prop": "modifiedTime",
24 | "label": "时间",
25 | "width": 300
26 | }
27 | ],
28 | "searchOptions": {
29 | "inline": true,
30 | "forms": [{
31 | "prop": "description",
32 | "label": "商品名称",
33 | "modelValue": "description"
34 | }]
35 | }
36 | }
37 |
--------------------------------------------------------------------------------
/src/elements/x-data-select/user.json:
--------------------------------------------------------------------------------
1 | {
2 | "apiUrl": "/api/product/QueryPageList",
3 | "columns": [{
4 | "prop": "thumbnailUrl",
5 | "label": "图片",
6 | "width": 90
7 | },
8 | {
9 | "prop": "bn",
10 | "label": "货号",
11 | "width": 90
12 | },
13 | {
14 | "prop": "price",
15 | "label": "价格",
16 | "width": 90
17 | },
18 | {
19 | "prop": "modifiedTime",
20 | "label": "时间",
21 | "width": 200
22 | },
23 | {
24 | "prop": "name",
25 | "label": "名称",
26 | "width": 330
27 | }
28 | ],
29 | "searchOptions": {
30 | "inline": true,
31 | "forms": [{
32 | "prop": "description",
33 | "label": "商品名称",
34 | "modelValue": "description"
35 | }]
36 | }
37 | }
38 |
--------------------------------------------------------------------------------
/src/elements/x-data-select/widget.json:
--------------------------------------------------------------------------------
1 | {
2 | "apiUrl": "/api/Component/GetComponentPageList",
3 | "columns": [{
4 | "prop": "name",
5 | "label": "组件名称",
6 | "width": 240
7 | },
8 | {
9 | "prop": "path",
10 | "label": "组件路径",
11 | "width": 240
12 | },
13 | {
14 | "prop": "createTime",
15 | "label": "创建时间",
16 | "width": 240
17 | }
18 | ]
19 | }
20 |
--------------------------------------------------------------------------------
/src/elements/x-editor/styles/a.scss:
--------------------------------------------------------------------------------
1 | #a {
2 | .zk-editor {}
3 | }
--------------------------------------------------------------------------------
/src/elements/x-editor/styles/b.scss:
--------------------------------------------------------------------------------
1 | #b {
2 | .zk-editor {}
3 | }
--------------------------------------------------------------------------------
/src/elements/x-editor/styles/c.scss:
--------------------------------------------------------------------------------
1 | #c {
2 | .zk-editor {}
3 | }
--------------------------------------------------------------------------------
/src/elements/x-editor/styles/d.scss:
--------------------------------------------------------------------------------
1 | #d {
2 | .zk-editor {}
3 | }
--------------------------------------------------------------------------------
/src/elements/x-editor/styles/index.js:
--------------------------------------------------------------------------------
1 | import './a.scss'
2 | import './b.scss'
3 | import './c.scss'
4 | import './d.scss'
5 |
--------------------------------------------------------------------------------
/src/elements/x-editor/var.scss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/src/elements/x-editor/var.scss
--------------------------------------------------------------------------------
/src/elements/x-enum/index.vue:
--------------------------------------------------------------------------------
1 |
2 | {{text}}
3 |
4 |
35 |
--------------------------------------------------------------------------------
/src/elements/x-grade/var.scss:
--------------------------------------------------------------------------------
1 | .x-grade {
2 | display: inline-block;
3 |
4 | .x-grade-list {
5 | display: flex;
6 | align-items: center;
7 | justify-content: center;
8 | background: #eaeaea;
9 | border-radius: 3px;
10 | padding: 0 5px;
11 | }
12 |
13 | .grade-image {
14 | width: 20px;
15 | height: 20px;
16 | }
17 |
18 | .grade-name {
19 | height: 20px;
20 | line-height: 20px;
21 | margin-left: 5px;
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/src/elements/x-line/style.scss:
--------------------------------------------------------------------------------
1 | .x-line {
2 | width: 100% !important;
3 | display: flex;
4 | align-items: center;
5 | border-bottom: 1px solid #ebedf2;
6 |
7 | .line-header-title {
8 | flex: 1;
9 | font-size: 14px;
10 | padding-left: 20px;
11 | }
12 | .iconfont {
13 | vertical-align: -1px;
14 | margin-right: 5px;
15 | }
16 | .line-header-intro {
17 | font-size: 10px;
18 | color: #909399 !important;
19 | margin-left: 5px;
20 | font-weight: 300;
21 | }
22 | }
23 |
--------------------------------------------------------------------------------
/src/elements/x-qrcode/index.vue:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
7 |
8 |
26 |
27 |
28 |
39 |
40 |
--------------------------------------------------------------------------------
/src/elements/x-table/props.js:
--------------------------------------------------------------------------------
1 | // x-table的结构以及所实现的功能已比较复杂,具有超高难度
2 | // 为了减低维护成本,在没有认真了解属性之前 请勿轻易新增属性,
3 | // 请勿轻易新增属性,以下属性基本上能够满足绝大部分需求了,有其他的需求可以在外部控制
4 | let props = {
5 | type: {
6 | type: String,
7 | required: true
8 | }, // 类型必须填写,通过Type和后台Api/Auto/Table来获取数据
9 | apiUrl: {
10 | type: String,
11 | default: 'Api/Auto/Table'
12 | }, // 类型必须填写,通过Type和后台Api/Auto/Table来获取数据
13 | columns: {
14 | type: Array,
15 | default: null
16 | }, // 自定义列,可以通过diy体系来控制
17 | isTemplate: {
18 | type: Boolean,
19 | default: false
20 | }, // 是否模板显示,
21 | isShowPage: {
22 | type: Boolean,
23 | default: true
24 | }, // 是否显示分页,
25 | widgetData: Object // 数据类型Type、过滤方式filter、标题等信息
26 | }
27 |
28 | export default props
29 |
--------------------------------------------------------------------------------
/src/elements/x-ueditor/index.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
21 |
--------------------------------------------------------------------------------
/src/elements/x-widget/widget.json:
--------------------------------------------------------------------------------
1 | {
2 | "isLayoutPage": false,
3 | "name": null,
4 | "url": null,
5 | "path": null,
6 | "layouts": [],
7 | "widgets": [
8 | {
9 | "name": "admin-auto-table",
10 | "columns": null,
11 | "isApiRequest": false,
12 | "masterPageIndex": 0,
13 | "componentPath": "/auto/admin-auto-table",
14 | "apiUrl": "Api/Theme/GetValue",
15 | "value": {
16 | "table": {
17 | "type": "ZKCloud.App.Core.User.ViewModels.ViewAdminUser"
18 | }
19 | },
20 | "layout": null,
21 | "title": null,
22 | "style": null,
23 | "border": null
24 | }
25 | ],
26 | "setting": {
27 | "tabBarSetting": null,
28 | "isLogin": false,
29 | "isRead": false,
30 | "title": null,
31 | "keywords": null,
32 | "description": null,
33 | "showHead": true,
34 | "showFoot": true,
35 | "background": null,
36 | "popImage": null
37 | }
38 | }
39 |
--------------------------------------------------------------------------------
/src/pages/admin/city/index.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
19 |
--------------------------------------------------------------------------------
/src/pages/admin/index.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
21 |
--------------------------------------------------------------------------------
/src/pages/admin/login/index.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/src/pages/admin/market/index.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
17 |
--------------------------------------------------------------------------------
/src/pages/admin/market/login.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
16 |
--------------------------------------------------------------------------------
/src/pages/admin/store/index.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
17 |
--------------------------------------------------------------------------------
/src/pages/diy/default.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
16 |
--------------------------------------------------------------------------------
/src/pages/index.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
9 |
--------------------------------------------------------------------------------
/src/pages/test.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
6 |
7 |
8 |
9 |
16 |
--------------------------------------------------------------------------------
/src/service/api/diy.api.js:
--------------------------------------------------------------------------------
1 | import api from '@/service/prototypes/api'
2 | import Vue from 'vue'
3 | export default {
4 | // 跳转到diy页面
5 | async redirectTo (themeId, pageId) {
6 | api.progressOpen(
7 | '正在授权登录中,请稍后...'
8 | )
9 | var para = {
10 | themeId: themeId,
11 | pageId: pageId
12 | }
13 | var res = await api.httpGet('Api/Theme/GetLoginUrl', para)
14 | setTimeout(() => {
15 | api.progressClose()
16 | if (res.status === 1) {
17 | Vue.prototype.$message({
18 | message: '恭喜您,数据初始成功',
19 | type: 'success'
20 | })
21 | }
22 | }, 500)
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/src/service/api/type.api.js:
--------------------------------------------------------------------------------
1 | import api from '@/service/prototypes/api.js'
2 |
3 | export default {
4 | // 获取类型的keyvalues对象 // 优先从Url中获取数据
5 | async getKeyValues (type, apiUrl) {
6 | if (apiUrl) {
7 | var respone = await api.httpGet(apiUrl)
8 | if (respone.status === 1) {
9 | return respone.result
10 | }
11 | } else {
12 | var para = {
13 | type: type
14 | }
15 | respone = await api.httpGet('/Api/Type/GetKeyValue', para)
16 | if (respone.status === 1) {
17 | return respone.result
18 | }
19 | }
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/src/service/config.js:
--------------------------------------------------------------------------------
1 | // const apiBaseUrl = 'http://api.zhongsheng319.com/'
2 | // const apiBaseUrl = 'http://retail_v13.api.5ug.com/'
3 | const apiBaseUrl = 'http://localhost:6800/'
4 |
5 | const key =
6 | 'LUPGHODKYFWYO0YARAWNTKMA9WKWIO4ABXPYZAAFLKVIMWHKL2RAYBVAIPGKDGMJKV71L9BQA0LTZEYMOKVP6DMABP0K3PBF7M8QZQ8L1BA7ZMLEAE53V6NQS7ZWJ1WU'
7 |
8 | const projectId = 'C94E355F-79DC-44E8-8EF1-CBF886129EDA'
9 | const privateKey = ''
10 | const isTenant = false
11 |
12 | export default {
13 | apiBaseUrl,
14 | projectId,
15 | key,
16 | isTenant,
17 | privateKey
18 | }
19 |
--------------------------------------------------------------------------------
/src/service/directives/el-dragDialog/index.js:
--------------------------------------------------------------------------------
1 |
2 | import drag from './drag'
3 |
4 | const install = function (Vue) {
5 | Vue.directive('el-drag-dialog', drag)
6 | }
7 |
8 | if (window.Vue) {
9 | window['el-drag-dialog'] = drag
10 | Vue.use(install); // eslint-disable-line
11 | }
12 |
13 | drag.install = install
14 | export default drag
15 |
--------------------------------------------------------------------------------
/src/service/prototypes/prototype.js:
--------------------------------------------------------------------------------
1 | import api from '@/service/prototypes/api.js'
2 | import user from '@/service/prototypes/user.js'
3 | import base from '@/service/prototypes/base.js'
4 | import crud from '@/service/prototypes/crud.js'
5 | import random from '@/service/prototypes/random.js'
6 | import admin from '@/service/prototypes/admin.js'
7 | import config from '@/service/config'
8 |
9 | window.apiBaseUrl = config.apiBaseUrl // 百度编辑器
10 |
11 | export default {
12 | install (Vue, options) {
13 | Vue.prototype.$api = api
14 | Vue.prototype.$admin = admin
15 | Vue.prototype.$user = user
16 | Vue.prototype.$crud = crud
17 | Vue.prototype.$random = random
18 | Vue.prototype.$bus = new Vue()
19 | Vue.prototype.$base = base
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/src/service/store/index.js:
--------------------------------------------------------------------------------
1 | import Vue from 'vue'
2 | import Vuex from 'vuex'
3 | Vue.use(Vuex)
4 | const store = new Vuex.Store({
5 | state: {
6 | filter: 1
7 | }
8 | })
9 | export default store
10 |
--------------------------------------------------------------------------------
/static/img/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/static/img/logo.png
--------------------------------------------------------------------------------
/static/img/pohot_8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/alaboshu/alapc/473c1e2956fb2b7a7d025b4845314e2b9b8cd463/static/img/pohot_8.png
--------------------------------------------------------------------------------
/vue.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | pluginOptions: {
3 | 'style-resources-loader': {
4 | preProcessor: 'scss',
5 | patterns: [
6 | 'src/assets/style/theme.scss'
7 | ]
8 | }
9 | },
10 | productionSourceMap: false,
11 | runtimeCompiler: true,
12 | configureWebpack: {
13 | resolve: {
14 | alias: {
15 | _style: `@/assets/style`
16 | }
17 | },
18 | devServer: {
19 | host: '0.0.0.0',
20 | port: '2008',
21 | disableHostCheck: true
22 | }
23 | },
24 | chainWebpack(config) {
25 |
26 | }
27 | }
28 |
--------------------------------------------------------------------------------