@tencentcloud/ai-desk-customer-vue 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.code.yml +17 -0
- package/.eslintignore +6 -0
- package/.stylelintrc.json +40 -0
- package/CHANGELOG.md +5 -0
- package/README.md +12 -0
- package/adapter-vue-web.ts +73 -0
- package/adapter-vue.ts +10 -0
- package/assets/audio-before-delete.svg +4 -0
- package/assets/audio-blue.png +0 -0
- package/assets/audio-bubble-blue.svg +3 -0
- package/assets/audio-bubble-red.svg +3 -0
- package/assets/audio-delete.svg +10 -0
- package/assets/audio.svg +6 -0
- package/assets/back.svg +16 -0
- package/assets/background_mobile.png +0 -0
- package/assets/camera-uni.png +0 -0
- package/assets/close-quote-icon.svg +3 -0
- package/assets/customer_avatar.png +0 -0
- package/assets/customer_avatar_mobile.png +0 -0
- package/assets/dialog-close.png +0 -0
- package/assets/double-arrow.svg +1 -0
- package/assets/download.svg +6 -0
- package/assets/emoji.png +0 -0
- package/assets/face-uni.png +0 -0
- package/assets/face.png +0 -0
- package/assets/file-h5.png +0 -0
- package/assets/files.png +0 -0
- package/assets/form-dialog-bg.png +0 -0
- package/assets/icon-arrow-left.svg +7 -0
- package/assets/icon-close.svg +6 -0
- package/assets/iconRight.svg +3 -0
- package/assets/icon_form.png +0 -0
- package/assets/icon_form_filled.png +0 -0
- package/assets/icon_question.png +0 -0
- package/assets/icon_refresh.png +0 -0
- package/assets/icon_success.png +0 -0
- package/assets/imRobotGuess.svg +4 -0
- package/assets/image-uni.png +0 -0
- package/assets/image.png +0 -0
- package/assets/keyboard_icon.png +0 -0
- package/assets/loading.png +0 -0
- package/assets/more-uni.png +0 -0
- package/assets/more_tools.png +0 -0
- package/assets/msg-audio.svg +1 -0
- package/assets/msg-copy.svg +30 -0
- package/assets/msg-del.svg +33 -0
- package/assets/msg-quote.svg +8 -0
- package/assets/msg-revoke.svg +29 -0
- package/assets/radio-check.png +0 -0
- package/assets/radio-uncheck.png +0 -0
- package/assets/radio.svg +6 -0
- package/assets/refresh.svg +4 -0
- package/assets/rotate-left.svg +7 -0
- package/assets/rotate-right.svg +7 -0
- package/assets/star.png +0 -0
- package/assets/starLine.png +0 -0
- package/assets/translate.svg +12 -0
- package/assets/video-play.png +0 -0
- package/assets/video-uni.png +0 -0
- package/assets/video.png +0 -0
- package/assets/zoom-in.svg +9 -0
- package/assets/zoom-out.svg +9 -0
- package/components/CustomerServiceChat/chat-header/index-web.vue +141 -0
- package/components/CustomerServiceChat/emoji-config/custom-emoji.ts +15 -0
- package/components/CustomerServiceChat/emoji-config/default-emoji.ts +114 -0
- package/components/CustomerServiceChat/emoji-config/index.ts +140 -0
- package/components/CustomerServiceChat/emoji-config/locales/en.ts +66 -0
- package/components/CustomerServiceChat/emoji-config/locales/zh_cn.ts +66 -0
- package/components/CustomerServiceChat/index-web.vue +250 -0
- package/components/CustomerServiceChat/message-input/index-web.vue +214 -0
- package/components/CustomerServiceChat/message-input/index.ts +2 -0
- package/components/CustomerServiceChat/message-input/message-input-button.vue +95 -0
- package/components/CustomerServiceChat/message-input/message-input-editor-web.vue +884 -0
- package/components/CustomerServiceChat/message-input/message-input-file-web.ts +38 -0
- package/components/CustomerServiceChat/message-input/message-input-quote/index.vue +204 -0
- package/components/CustomerServiceChat/message-input-toolbar/emoji-dialog-mobile/emoji-dialog-mobile.vue +145 -0
- package/components/CustomerServiceChat/message-input-toolbar/emoji-picker/emoji-picker-dialog.vue +180 -0
- package/components/CustomerServiceChat/message-input-toolbar/emoji-picker/index.ts +2 -0
- package/components/CustomerServiceChat/message-input-toolbar/emoji-picker/index.vue +90 -0
- package/components/CustomerServiceChat/message-input-toolbar/emoji-picker/style/h5.scss +26 -0
- package/components/CustomerServiceChat/message-input-toolbar/emoji-picker/style/index.scss +4 -0
- package/components/CustomerServiceChat/message-input-toolbar/emoji-picker/style/web.scss +55 -0
- package/components/CustomerServiceChat/message-input-toolbar/file-upload/index.ts +2 -0
- package/components/CustomerServiceChat/message-input-toolbar/file-upload/index.vue +77 -0
- package/components/CustomerServiceChat/message-input-toolbar/image-upload/index.ts +2 -0
- package/components/CustomerServiceChat/message-input-toolbar/image-upload/index.vue +185 -0
- package/components/CustomerServiceChat/message-input-toolbar/index-web.vue +191 -0
- package/components/CustomerServiceChat/message-input-toolbar/index.ts +2 -0
- package/components/CustomerServiceChat/message-input-toolbar/style/uni.scss +111 -0
- package/components/CustomerServiceChat/message-input-toolbar/toolbar-item-container/index.vue +149 -0
- package/components/CustomerServiceChat/message-input-toolbar/toolbar-item-container/style/color.scss +6 -0
- package/components/CustomerServiceChat/message-input-toolbar/toolbar-item-container/style/h5.scss +20 -0
- package/components/CustomerServiceChat/message-input-toolbar/toolbar-item-container/style/index.scss +5 -0
- package/components/CustomerServiceChat/message-input-toolbar/toolbar-item-container/style/uni.scss +36 -0
- package/components/CustomerServiceChat/message-input-toolbar/toolbar-item-container/style/web.scss +19 -0
- package/components/CustomerServiceChat/message-input-toolbar/video-upload/index.ts +2 -0
- package/components/CustomerServiceChat/message-input-toolbar/video-upload/index.vue +146 -0
- package/components/CustomerServiceChat/message-list/index-web.vue +712 -0
- package/components/CustomerServiceChat/message-list/link/index.ts +23 -0
- package/components/CustomerServiceChat/message-list/message-elements/message-audio-web.vue +223 -0
- package/components/CustomerServiceChat/message-list/message-elements/message-bubble-web.vue +504 -0
- package/components/CustomerServiceChat/message-list/message-elements/message-custom.vue +5 -0
- package/components/CustomerServiceChat/message-list/message-elements/message-face.vue +45 -0
- package/components/CustomerServiceChat/message-list/message-elements/message-file.vue +151 -0
- package/components/CustomerServiceChat/message-list/message-elements/message-image-web.vue +97 -0
- package/components/CustomerServiceChat/message-list/message-elements/message-location.vue +34 -0
- package/components/CustomerServiceChat/message-list/message-elements/message-quote/index-web.vue +286 -0
- package/components/CustomerServiceChat/message-list/message-elements/message-quote/interface.ts +60 -0
- package/components/CustomerServiceChat/message-list/message-elements/message-record/index.vue +139 -0
- package/components/CustomerServiceChat/message-list/message-elements/message-text.vue +94 -0
- package/components/CustomerServiceChat/message-list/message-elements/message-timestamp.vue +76 -0
- package/components/CustomerServiceChat/message-list/message-elements/message-video-web.vue +319 -0
- package/components/CustomerServiceChat/message-list/message-elements/plugins/plugin-components/index.ts +9 -0
- package/components/CustomerServiceChat/message-list/message-elements/plugins/plugin-components/message-customer/index.ts +5 -0
- package/components/CustomerServiceChat/message-list/message-elements/plugins/plugin-components/message-customer/message-customer-service.vue +22 -0
- package/components/CustomerServiceChat/message-list/message-elements/plugins/plugin-components/message-plugin-layout-web.vue +133 -0
- package/components/CustomerServiceChat/message-list/message-elements/plugins/plugin-components/message-plugin-web.vue +83 -0
- package/components/CustomerServiceChat/message-list/message-elements/read-status/index.vue +193 -0
- package/components/CustomerServiceChat/message-list/message-elements/simple-message-list/index.vue +462 -0
- package/components/CustomerServiceChat/message-list/message-elements/simple-message-list/message-container.vue +105 -0
- package/components/CustomerServiceChat/message-list/message-elements/video-play.vue +59 -0
- package/components/CustomerServiceChat/message-list/message-tool/index-web.vue +312 -0
- package/components/CustomerServiceChat/message-list/message-tool/message-revoked.vue +63 -0
- package/components/CustomerServiceChat/message-list/scroll-button/index.vue +201 -0
- package/components/CustomerServiceChat/message-list/style/color.scss +32 -0
- package/components/CustomerServiceChat/message-list/style/h5.scss +16 -0
- package/components/CustomerServiceChat/message-list/style/index.scss +11 -0
- package/components/CustomerServiceChat/message-list/style/web.scss +180 -0
- package/components/CustomerServiceChat/style/common.scss +59 -0
- package/components/CustomerServiceChat/style/h5.scss +51 -0
- package/components/CustomerServiceChat/style/index.scss +12 -0
- package/components/CustomerServiceChat/style/uni.scss +13 -0
- package/components/CustomerServiceChat/style/web.scss +46 -0
- package/components/CustomerServiceChat/style/wx.scss +5 -0
- package/components/CustomerServiceChat/utils/conversationDraft.ts +86 -0
- package/components/CustomerServiceChat/utils/sendMessage.ts +140 -0
- package/components/common/Avatar/index.vue +148 -0
- package/components/common/BottomPopup/index.ts +3 -0
- package/components/common/BottomPopup/index.vue +160 -0
- package/components/common/BottomPopup/style/h5.scss +62 -0
- package/components/common/BottomPopup/style/index.scss +3 -0
- package/components/common/BottomPopup/style/modal.scss +5 -0
- package/components/common/Dialog/index.ts +3 -0
- package/components/common/Dialog/index.vue +120 -0
- package/components/common/Dialog/style/color.scss +43 -0
- package/components/common/Dialog/style/dialog.scss +4 -0
- package/components/common/Dialog/style/h5.scss +56 -0
- package/components/common/Dialog/style/web.scss +61 -0
- package/components/common/Drawer/index.vue +164 -0
- package/components/common/Icon.vue +83 -0
- package/components/common/ImagePreviewer/image-item-web.vue +42 -0
- package/components/common/ImagePreviewer/index-web.vue +682 -0
- package/components/common/ImagePreviewer/index.ts +3 -0
- package/components/common/Overlay/index.vue +126 -0
- package/components/common/ProgressMessage/index.vue +95 -0
- package/components/common/RadioSelect/index.vue +59 -0
- package/components/common/RichText/LICENSE +21 -0
- package/components/common/RichText/README.md +244 -0
- package/components/common/RichText/dist/mp-alipay/index.acss +1 -0
- package/components/common/RichText/dist/mp-alipay/index.axml +1 -0
- package/components/common/RichText/dist/mp-alipay/index.js +8 -0
- package/components/common/RichText/dist/mp-alipay/index.json +1 -0
- package/components/common/RichText/dist/mp-alipay/node/node.acss +1 -0
- package/components/common/RichText/dist/mp-alipay/node/node.axml +1 -0
- package/components/common/RichText/dist/mp-alipay/node/node.js +1 -0
- package/components/common/RichText/dist/mp-alipay/node/node.json +1 -0
- package/components/common/RichText/dist/mp-alipay/parser.js +1 -0
- package/components/common/RichText/dist/mp-baidu/index.css +1 -0
- package/components/common/RichText/dist/mp-baidu/index.js +8 -0
- package/components/common/RichText/dist/mp-baidu/index.json +1 -0
- package/components/common/RichText/dist/mp-baidu/index.swan +1 -0
- package/components/common/RichText/dist/mp-baidu/node/node.css +1 -0
- package/components/common/RichText/dist/mp-baidu/node/node.js +1 -0
- package/components/common/RichText/dist/mp-baidu/node/node.json +1 -0
- package/components/common/RichText/dist/mp-baidu/node/node.swan +1 -0
- package/components/common/RichText/dist/mp-baidu/parser.js +1 -0
- package/components/common/RichText/dist/mp-qq/index.js +8 -0
- package/components/common/RichText/dist/mp-qq/index.json +1 -0
- package/components/common/RichText/dist/mp-qq/index.qml +1 -0
- package/components/common/RichText/dist/mp-qq/index.qss +1 -0
- package/components/common/RichText/dist/mp-qq/node/node.js +1 -0
- package/components/common/RichText/dist/mp-qq/node/node.json +1 -0
- package/components/common/RichText/dist/mp-qq/node/node.qml +1 -0
- package/components/common/RichText/dist/mp-qq/node/node.qss +1 -0
- package/components/common/RichText/dist/mp-qq/parser.js +1 -0
- package/components/common/RichText/dist/mp-toutiao/index.js +8 -0
- package/components/common/RichText/dist/mp-toutiao/index.json +1 -0
- package/components/common/RichText/dist/mp-toutiao/index.ttml +1 -0
- package/components/common/RichText/dist/mp-toutiao/index.ttss +1 -0
- package/components/common/RichText/dist/mp-toutiao/node/node.js +1 -0
- package/components/common/RichText/dist/mp-toutiao/node/node.json +1 -0
- package/components/common/RichText/dist/mp-toutiao/node/node.ttml +1 -0
- package/components/common/RichText/dist/mp-toutiao/node/node.ttss +1 -0
- package/components/common/RichText/dist/mp-toutiao/parser.js +1 -0
- package/components/common/RichText/dist/mp-weixin/index.js +8 -0
- package/components/common/RichText/dist/mp-weixin/index.json +1 -0
- package/components/common/RichText/dist/mp-weixin/index.wxml +1 -0
- package/components/common/RichText/dist/mp-weixin/index.wxss +1 -0
- package/components/common/RichText/dist/mp-weixin/node/node.js +1 -0
- package/components/common/RichText/dist/mp-weixin/node/node.json +1 -0
- package/components/common/RichText/dist/mp-weixin/node/node.wxml +1 -0
- package/components/common/RichText/dist/mp-weixin/node/node.wxss +1 -0
- package/components/common/RichText/dist/mp-weixin/parser.js +1 -0
- package/components/common/RichText/dist/uni-app/components/mp-html/mp-html.vue +498 -0
- package/components/common/RichText/dist/uni-app/components/mp-html/node/node.vue +587 -0
- package/components/common/RichText/dist/uni-app/components/mp-html/parser.js +1393 -0
- package/components/common/RichText/dist/uni-app/static/app-plus/mp-html/js/handler.js +1 -0
- package/components/common/RichText/dist/uni-app/static/app-plus/mp-html/js/uni.webview.min.js +1 -0
- package/components/common/RichText/dist/uni-app/static/app-plus/mp-html/local.html +1 -0
- package/components/common/RichText/docs/.nojekyll +0 -0
- package/components/common/RichText/docs/index.html +50 -0
- package/components/common/RichText/docs/lib/docsify.min.js +1 -0
- package/components/common/RichText/docs/lib/prism-bash.min.js +1 -0
- package/components/common/RichText/docs/lib/search.min.js +1 -0
- package/components/common/RichText/docs/lib/vue.css +858 -0
- package/components/common/RichText/gulpfile.js +113 -0
- package/components/common/RichText/lint.js +63 -0
- package/components/common/RichText/package.json +74 -0
- package/components/common/RichText/plugins/README.md +2 -0
- package/components/common/RichText/plugins/audio/README.md +25 -0
- package/components/common/RichText/plugins/audio/build.js +11 -0
- package/components/common/RichText/plugins/audio/context.js +7 -0
- package/components/common/RichText/plugins/audio/index.js +34 -0
- package/components/common/RichText/plugins/audio/miniprogram/audio.js +189 -0
- package/components/common/RichText/plugins/audio/miniprogram/audio.json +3 -0
- package/components/common/RichText/plugins/audio/miniprogram/audio.wxml +17 -0
- package/components/common/RichText/plugins/audio/miniprogram/audio.wxss +127 -0
- package/components/common/RichText/plugins/audio/miniprogram/build.js +3 -0
- package/components/common/RichText/plugins/audio/uni-app/audio.vue +269 -0
- package/components/common/RichText/plugins/audio/uni-app/build.js +3 -0
- package/components/common/RichText/plugins/card/README.md +30 -0
- package/components/common/RichText/plugins/card/build.js +14 -0
- package/components/common/RichText/plugins/card/index.js +7 -0
- package/components/common/RichText/plugins/card/miniprogram/build.js +3 -0
- package/components/common/RichText/plugins/card/miniprogram/card.js +26 -0
- package/components/common/RichText/plugins/card/miniprogram/card.json +3 -0
- package/components/common/RichText/plugins/card/miniprogram/card.wxml +9 -0
- package/components/common/RichText/plugins/card/miniprogram/card.wxss +55 -0
- package/components/common/RichText/plugins/card/uni-app/build.js +3 -0
- package/components/common/RichText/plugins/card/uni-app/card.vue +122 -0
- package/components/common/RichText/plugins/editable/README.md +137 -0
- package/components/common/RichText/plugins/editable/config.js +15 -0
- package/components/common/RichText/plugins/editable/miniprogram/build.js +813 -0
- package/components/common/RichText/plugins/editable/miniprogram/index.js +551 -0
- package/components/common/RichText/plugins/editable/uni-app/build.js +744 -0
- package/components/common/RichText/plugins/editable/uni-app/index.js +553 -0
- package/components/common/RichText/plugins/emoji/README.md +15 -0
- package/components/common/RichText/plugins/emoji/index.js +203 -0
- package/components/common/RichText/plugins/highlight/README.md +26 -0
- package/components/common/RichText/plugins/highlight/config.js +5 -0
- package/components/common/RichText/plugins/highlight/index.js +96 -0
- package/components/common/RichText/plugins/highlight/miniprogram/build.js +88 -0
- package/components/common/RichText/plugins/highlight/prism.css +125 -0
- package/components/common/RichText/plugins/highlight/prism.min.js +7 -0
- package/components/common/RichText/plugins/highlight/uni-app/build.js +88 -0
- package/components/common/RichText/plugins/img-cache/README.md +24 -0
- package/components/common/RichText/plugins/img-cache/build.js +16 -0
- package/components/common/RichText/plugins/img-cache/index.js +138 -0
- package/components/common/RichText/plugins/latex/README.md +16 -0
- package/components/common/RichText/plugins/latex/build.js +14 -0
- package/components/common/RichText/plugins/latex/index.js +77 -0
- package/components/common/RichText/plugins/latex/katex.css +1070 -0
- package/components/common/RichText/plugins/latex/katex.min.js +1 -0
- package/components/common/RichText/plugins/markdown/README.md +17 -0
- package/components/common/RichText/plugins/markdown/index.js +34 -0
- package/components/common/RichText/plugins/markdown/marked.min.js +6 -0
- package/components/common/RichText/plugins/markdown/miniprogram/build.js +70 -0
- package/components/common/RichText/plugins/markdown/uni-app/build.js +68 -0
- package/components/common/RichText/plugins/search/README.md +46 -0
- package/components/common/RichText/plugins/search/miniprogram/index.js +137 -0
- package/components/common/RichText/plugins/search/uni-app/index.js +132 -0
- package/components/common/RichText/plugins/style/README.md +30 -0
- package/components/common/RichText/plugins/style/index.js +129 -0
- package/components/common/RichText/plugins/style/parser.js +175 -0
- package/components/common/RichText/plugins/template/README.md +2 -0
- package/components/common/RichText/plugins/template/build.js +65 -0
- package/components/common/RichText/plugins/template/index.js +67 -0
- package/components/common/RichText/plugins/txv-video/README.md +18 -0
- package/components/common/RichText/plugins/txv-video/build.js +3 -0
- package/components/common/RichText/plugins/txv-video/index.js +46 -0
- package/components/common/RichText/plugins/txv-video/miniprogram/build.js +6 -0
- package/components/common/RichText/plugins/txv-video/uni-app/build.js +3 -0
- package/components/common/RichText/src/miniprogram/index.js +396 -0
- package/components/common/RichText/src/miniprogram/index.json +6 -0
- package/components/common/RichText/src/miniprogram/index.wxml +7 -0
- package/components/common/RichText/src/miniprogram/index.wxss +13 -0
- package/components/common/RichText/src/miniprogram/node/node.js +247 -0
- package/components/common/RichText/src/miniprogram/node/node.json +6 -0
- package/components/common/RichText/src/miniprogram/node/node.wxml +112 -0
- package/components/common/RichText/src/miniprogram/node/node.wxss +164 -0
- package/components/common/RichText/src/miniprogram/parser.js +1269 -0
- package/components/common/RichText/src/uni-app/components/mp-html/mp-html.vue +498 -0
- package/components/common/RichText/src/uni-app/components/mp-html/node/node.vue +585 -0
- package/components/common/RichText/src/uni-app/components/mp-html/parser.js +1393 -0
- package/components/common/RichText/src/uni-app/static/app-plus/mp-html/js/handler.js +254 -0
- package/components/common/RichText/src/uni-app/static/app-plus/mp-html/js/uni.webview.min.js +1 -0
- package/components/common/RichText/src/uni-app/static/app-plus/mp-html/local.html +33 -0
- package/components/common/RichText/tools/config.js +82 -0
- package/components/common/RichText/tools/converter.js +205 -0
- package/components/common/RichText/tools/ifdef.js +115 -0
- package/components/common/RichText/tools/minifier.js +40 -0
- package/components/common/RichText/tools/plugin.js +248 -0
- package/components/common/Toast/index-web.ts +122 -0
- package/components/common/Toast/index-web.vue +178 -0
- package/components/common/Toast/type.ts +8 -0
- package/components/common/common.scss +59 -0
- package/components/customer-icon.vue +56 -0
- package/components/message-branch.vue +120 -0
- package/components/message-customer-service.vue +114 -0
- package/components/message-form/form-branch.vue +68 -0
- package/components/message-form/form-input.vue +242 -0
- package/components/message-form/index.vue +80 -0
- package/components/message-multi-branch/branch-pc.vue +79 -0
- package/components/message-multi-branch/index.vue +60 -0
- package/components/message-multi-form/component-mobile/form-popup.vue +37 -0
- package/components/message-multi-form/component-mobile/input-mobile.vue +102 -0
- package/components/message-multi-form/component-mobile/label-mobile.vue +32 -0
- package/components/message-multi-form/component-mobile/radios-mobile.vue +161 -0
- package/components/message-multi-form/component-pc/input-pc.vue +93 -0
- package/components/message-multi-form/component-pc/label-pc.vue +33 -0
- package/components/message-multi-form/component-pc/radio-pc.vue +98 -0
- package/components/message-multi-form/form-mobile.vue +385 -0
- package/components/message-multi-form/form-pc.vue +184 -0
- package/components/message-multi-form/index.vue +61 -0
- package/components/message-product-card.vue +129 -0
- package/components/message-rating/index.vue +56 -0
- package/components/message-rating/message-rating-number.vue +247 -0
- package/components/message-rating/message-rating-star.vue +237 -0
- package/components/message-rich-text.vue +155 -0
- package/components/message-robot-welcome.vue +181 -0
- package/components/message-stream.vue +109 -0
- package/constant.ts +122 -0
- package/excluded-list.txt +6 -0
- package/index.ts +30 -0
- package/index.vue +60 -0
- package/interface.ts +176 -0
- package/logger/index.ts +12 -0
- package/logger/main.ts +120 -0
- package/package.json +62 -0
- package/script/fileCopy.js +60 -0
- package/script/syncVersion.js +35 -0
- package/server.ts +128 -0
- package/styles/common.scss +116 -0
- package/tsconfig.json +34 -0
- package/typings.d.ts +20 -0
- package/utils/chatStorage.ts +70 -0
- package/utils/copy-web.ts +141 -0
- package/utils/enableSampleTaskStatus.ts +8 -0
- package/utils/env.ts +15 -0
- package/utils/index.ts +59 -0
- package/utils/utils.ts +162 -0
|
@@ -0,0 +1,587 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<view :id="attrs.id" :class="'_block _'+name+' '+attrs.class" :style="attrs.style">
|
|
3
|
+
<block v-for="(n, i) in childs" v-bind:key="i">
|
|
4
|
+
<!-- 图片 -->
|
|
5
|
+
<!-- 占位图 -->
|
|
6
|
+
<image v-if="n.name==='img'&&!n.t&&((opts[1]&&!ctrl[i])||ctrl[i]<0)" class="_img" :style="n.attrs.style" :src="ctrl[i]<0?opts[2]:opts[1]" mode="widthFix" />
|
|
7
|
+
<!-- 显示图片 -->
|
|
8
|
+
<!-- #ifdef H5 || (APP-PLUS && VUE2) -->
|
|
9
|
+
<img v-if="n.name==='img'" :id="n.attrs.id" :class="'_img '+n.attrs.class" :style="(ctrl[i]===-1?'display:none;':'')+n.attrs.style" :src="n.attrs.src||(ctrl.load?n.attrs['data-src']:'')" :data-i="i" @load="imgLoad" @error="mediaError" @tap.stop="imgTap" @longpress="imgLongTap" />
|
|
10
|
+
<!-- #endif -->
|
|
11
|
+
<!-- #ifndef H5 || (APP-PLUS && VUE2) -->
|
|
12
|
+
<!-- 表格中的图片,使用 rich-text 防止大小不正确 -->
|
|
13
|
+
<rich-text v-if="n.name==='img'&&n.t" :style="'display:'+n.t" :nodes="[{attrs:{style:n.attrs.style||'',src:n.attrs.src},name:'img'}]" :data-i="i" @tap.stop="imgTap" />
|
|
14
|
+
<!-- #endif -->
|
|
15
|
+
<!-- #ifndef H5 || APP-PLUS || MP-KUAISHOU -->
|
|
16
|
+
<image v-else-if="n.name==='img'" :id="n.attrs.id" :class="'_img '+n.attrs.class" :style="(ctrl[i]===-1?'display:none;':'')+'width:'+(ctrl[i]||1)+'px;height:1px;'+n.attrs.style" :src="n.attrs.src" :mode="!n.h?'widthFix':(!n.w?'heightFix':(n.m||'scaleToFill'))" :lazy-load="opts[0]" :webp="n.webp" :show-menu-by-longpress="opts[3]&&!n.attrs.ignore" :image-menu-prevent="!opts[3]||n.attrs.ignore" :data-i="i" @load="imgLoad" @error="mediaError" @tap.stop="imgTap" @longpress="imgLongTap" />
|
|
17
|
+
<!-- #endif -->
|
|
18
|
+
<!-- #ifdef MP-KUAISHOU -->
|
|
19
|
+
<image v-else-if="n.name==='img'" :id="n.attrs.id" :class="'_img '+n.attrs.class" :style="(ctrl[i]===-1?'display:none;':'')+n.attrs.style" :src="n.attrs.src" :lazy-load="opts[0]" :data-i="i" @load="imgLoad" @error="mediaError" @tap.stop="imgTap"></image>
|
|
20
|
+
<!-- #endif -->
|
|
21
|
+
<!-- #ifdef APP-PLUS && VUE3 -->
|
|
22
|
+
<image v-else-if="n.name==='img'" :id="n.attrs.id" :class="'_img '+n.attrs.class" :style="(ctrl[i]===-1?'display:none;':'')+'width:'+(ctrl[i]||1)+'px;'+n.attrs.style" :src="n.attrs.src||(ctrl.load?n.attrs['data-src']:'')" :mode="!n.h?'widthFix':(!n.w?'heightFix':(n.m||''))" :data-i="i" @load="imgLoad" @error="mediaError" @tap.stop="imgTap" @longpress="imgLongTap" />
|
|
23
|
+
<!-- #endif -->
|
|
24
|
+
<!-- 文本 -->
|
|
25
|
+
<!-- #ifdef MP-WEIXIN -->
|
|
26
|
+
<text v-else-if="n.text" :user-select="opts[4]=='force'&&isiOS" decode>{{n.text}}</text>
|
|
27
|
+
<!-- #endif -->
|
|
28
|
+
<!-- #ifndef MP-WEIXIN || MP-BAIDU || MP-ALIPAY || MP-TOUTIAO -->
|
|
29
|
+
<text v-else-if="n.text" decode>{{n.text}}</text>
|
|
30
|
+
<!-- #endif -->
|
|
31
|
+
<text v-else-if="n.name==='br'">\n</text>
|
|
32
|
+
<!-- 链接 -->
|
|
33
|
+
<view v-else-if="n.name==='a'" :id="n.attrs.id" :class="(n.attrs.href?'_a ':'')+n.attrs.class" hover-class="_hover" :style="'display:inline;'+n.attrs.style" :data-i="i" @tap.stop="linkTap">
|
|
34
|
+
<node name="span" :childs="n.children" :opts="opts" style="display:inherit" />
|
|
35
|
+
</view>
|
|
36
|
+
<!-- 视频 -->
|
|
37
|
+
<!-- #ifdef APP-PLUS -->
|
|
38
|
+
<view v-else-if="n.html" :id="n.attrs.id" :class="'_video '+n.attrs.class" :style="n.attrs.style" v-html="n.html" @vplay.stop="play" />
|
|
39
|
+
<!-- #endif -->
|
|
40
|
+
<!-- #ifndef APP-PLUS -->
|
|
41
|
+
<video v-else-if="n.name==='video'" :id="n.attrs.id" :class="n.attrs.class" :style="n.attrs.style" :autoplay="n.attrs.autoplay" :controls="n.attrs.controls" :loop="n.attrs.loop" :muted="n.attrs.muted" :object-fit="n.attrs['object-fit']" :poster="n.attrs.poster" :src="n.src[ctrl[i]||0]" :data-i="i" @play="play" @error="mediaError" />
|
|
42
|
+
<!-- #endif -->
|
|
43
|
+
<!-- #ifdef H5 || APP-PLUS -->
|
|
44
|
+
<iframe v-else-if="n.name==='iframe'" :style="n.attrs.style" :allowfullscreen="n.attrs.allowfullscreen" :frameborder="n.attrs.frameborder" :src="n.attrs.src" />
|
|
45
|
+
<embed v-else-if="n.name==='embed'" :style="n.attrs.style" :src="n.attrs.src" />
|
|
46
|
+
<!-- #endif -->
|
|
47
|
+
<!-- #ifndef MP-TOUTIAO || ((H5 || APP-PLUS) && VUE3) -->
|
|
48
|
+
<!-- 音频 -->
|
|
49
|
+
<audio v-else-if="n.name==='audio'" :id="n.attrs.id" :class="n.attrs.class" :style="n.attrs.style" :author="n.attrs.author" :controls="n.attrs.controls" :loop="n.attrs.loop" :name="n.attrs.name" :poster="n.attrs.poster" :src="n.src[ctrl[i]||0]" :data-i="i" @play="play" @error="mediaError" />
|
|
50
|
+
<!-- #endif -->
|
|
51
|
+
<view v-else-if="(n.name==='table'&&n.c)||n.name==='li'" :id="n.attrs.id" :class="'_'+n.name+' '+n.attrs.class" :style="n.attrs.style">
|
|
52
|
+
<node v-if="n.name==='li'" :childs="n.children" :opts="opts" />
|
|
53
|
+
<view v-else v-for="(tbody, x) in n.children" v-bind:key="x" :class="'_'+tbody.name+' '+tbody.attrs.class" :style="tbody.attrs.style">
|
|
54
|
+
<node v-if="tbody.name==='td'||tbody.name==='th'" :childs="tbody.children" :opts="opts" />
|
|
55
|
+
<block v-else v-for="(tr, y) in tbody.children" v-bind:key="y">
|
|
56
|
+
<view v-if="tr.name==='td'||tr.name==='th'" :class="'_'+tr.name+' '+tr.attrs.class" :style="tr.attrs.style">
|
|
57
|
+
<node :childs="tr.children" :opts="opts" />
|
|
58
|
+
</view>
|
|
59
|
+
<view v-else :class="'_'+tr.name+' '+tr.attrs.class" :style="tr.attrs.style">
|
|
60
|
+
<view v-for="(td, z) in tr.children" v-bind:key="z" :class="'_'+td.name+' '+td.attrs.class" :style="td.attrs.style">
|
|
61
|
+
<node :childs="td.children" :opts="opts" />
|
|
62
|
+
</view>
|
|
63
|
+
</view>
|
|
64
|
+
</block>
|
|
65
|
+
</view>
|
|
66
|
+
</view>
|
|
67
|
+
|
|
68
|
+
<!-- 富文本 -->
|
|
69
|
+
<!-- #ifdef H5 || ((MP-WEIXIN || MP-QQ || APP-PLUS || MP-360) && VUE2) -->
|
|
70
|
+
<rich-text v-else-if="!n.c&&!handler.isInline(n.name, n.attrs.style)" :id="n.attrs.id" :style="n.f" :user-select="opts[4]" :nodes="[n]" />
|
|
71
|
+
<!-- #endif -->
|
|
72
|
+
<!-- #ifndef H5 || ((MP-WEIXIN || MP-QQ || APP-PLUS || MP-360) && VUE2) -->
|
|
73
|
+
<rich-text v-else-if="!n.c" :id="n.attrs.id" :style="'display:inline;'+n.f" :preview="false" :selectable="opts[4]" :user-select="opts[4]" :nodes="[n]" />
|
|
74
|
+
<!-- #endif -->
|
|
75
|
+
<!-- 继续递归 -->
|
|
76
|
+
<view v-else-if="n.c===2" :id="n.attrs.id" :class="'_block _'+n.name+' '+n.attrs.class" :style="n.f+';'+n.attrs.style">
|
|
77
|
+
<node v-for="(n2, j) in n.children" v-bind:key="j" :style="n2.f" :name="n2.name" :attrs="n2.attrs" :childs="n2.children" :opts="opts" />
|
|
78
|
+
</view>
|
|
79
|
+
<node v-else :style="n.f" :name="n.name" :attrs="n.attrs" :childs="n.children" :opts="opts" />
|
|
80
|
+
</block>
|
|
81
|
+
</view>
|
|
82
|
+
</template>
|
|
83
|
+
<script module="handler" lang="wxs">
|
|
84
|
+
// 行内标签列表
|
|
85
|
+
var inlineTags = {
|
|
86
|
+
abbr: true,
|
|
87
|
+
b: true,
|
|
88
|
+
big: true,
|
|
89
|
+
code: true,
|
|
90
|
+
del: true,
|
|
91
|
+
em: true,
|
|
92
|
+
i: true,
|
|
93
|
+
ins: true,
|
|
94
|
+
label: true,
|
|
95
|
+
q: true,
|
|
96
|
+
small: true,
|
|
97
|
+
span: true,
|
|
98
|
+
strong: true,
|
|
99
|
+
sub: true,
|
|
100
|
+
sup: true
|
|
101
|
+
}
|
|
102
|
+
/**
|
|
103
|
+
* @description 判断是否为行内标签
|
|
104
|
+
*/
|
|
105
|
+
module.exports = {
|
|
106
|
+
isInline: function (tagName, style) {
|
|
107
|
+
return inlineTags[tagName] || (style || '').indexOf('display:inline') !== -1
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
</script>
|
|
111
|
+
<script>
|
|
112
|
+
|
|
113
|
+
import node from './node'
|
|
114
|
+
export default {
|
|
115
|
+
name: 'node',
|
|
116
|
+
options: {
|
|
117
|
+
// #ifdef MP-WEIXIN
|
|
118
|
+
virtualHost: true,
|
|
119
|
+
// #endif
|
|
120
|
+
// #ifdef MP-TOUTIAO
|
|
121
|
+
addGlobalClass: false
|
|
122
|
+
// #endif
|
|
123
|
+
},
|
|
124
|
+
data () {
|
|
125
|
+
return {
|
|
126
|
+
ctrl: {},
|
|
127
|
+
// #ifdef MP-WEIXIN
|
|
128
|
+
isiOS: uni.getSystemInfoSync().system.includes('iOS')
|
|
129
|
+
// #endif
|
|
130
|
+
}
|
|
131
|
+
},
|
|
132
|
+
props: {
|
|
133
|
+
name: String,
|
|
134
|
+
attrs: {
|
|
135
|
+
type: Object,
|
|
136
|
+
default () {
|
|
137
|
+
return {}
|
|
138
|
+
}
|
|
139
|
+
},
|
|
140
|
+
childs: Array,
|
|
141
|
+
opts: Array
|
|
142
|
+
},
|
|
143
|
+
components: {
|
|
144
|
+
|
|
145
|
+
// #ifndef (H5 || APP-PLUS) && VUE3
|
|
146
|
+
node
|
|
147
|
+
// #endif
|
|
148
|
+
},
|
|
149
|
+
mounted () {
|
|
150
|
+
this.$nextTick(() => {
|
|
151
|
+
for (this.root = this.$parent; this.root.$options.name !== 'mp-html'; this.root = this.root.$parent);
|
|
152
|
+
})
|
|
153
|
+
// #ifdef H5 || APP-PLUS
|
|
154
|
+
if (this.opts[0]) {
|
|
155
|
+
let i
|
|
156
|
+
for (i = this.childs.length; i--;) {
|
|
157
|
+
if (this.childs[i].name === 'img') break
|
|
158
|
+
}
|
|
159
|
+
if (i !== -1) {
|
|
160
|
+
this.observer = uni.createIntersectionObserver(this).relativeToViewport({
|
|
161
|
+
top: 500,
|
|
162
|
+
bottom: 500
|
|
163
|
+
})
|
|
164
|
+
this.observer.observe('._img', res => {
|
|
165
|
+
if (res.intersectionRatio) {
|
|
166
|
+
this.$set(this.ctrl, 'load', 1)
|
|
167
|
+
this.observer.disconnect()
|
|
168
|
+
}
|
|
169
|
+
})
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
// #endif
|
|
173
|
+
},
|
|
174
|
+
beforeDestroy () {
|
|
175
|
+
// #ifdef H5 || APP-PLUS
|
|
176
|
+
if (this.observer) {
|
|
177
|
+
this.observer.disconnect()
|
|
178
|
+
}
|
|
179
|
+
// #endif
|
|
180
|
+
},
|
|
181
|
+
methods:{
|
|
182
|
+
// #ifdef MP-WEIXIN
|
|
183
|
+
toJSON () { return this },
|
|
184
|
+
// #endif
|
|
185
|
+
/**
|
|
186
|
+
* @description 播放视频事件
|
|
187
|
+
* @param {Event} e
|
|
188
|
+
*/
|
|
189
|
+
play (e) {
|
|
190
|
+
const i = e.currentTarget.dataset.i
|
|
191
|
+
const node = this.childs[i]
|
|
192
|
+
this.root.$emit('play', {
|
|
193
|
+
source: node.name,
|
|
194
|
+
attrs: {
|
|
195
|
+
...node.attrs,
|
|
196
|
+
src: node.src[this.ctrl[i] || 0]
|
|
197
|
+
}
|
|
198
|
+
})
|
|
199
|
+
// #ifndef APP-PLUS
|
|
200
|
+
if (this.root.pauseVideo) {
|
|
201
|
+
let flag = false
|
|
202
|
+
const id = e.target.id
|
|
203
|
+
for (let i = this.root._videos.length; i--;) {
|
|
204
|
+
if (this.root._videos[i].id === id) {
|
|
205
|
+
flag = true
|
|
206
|
+
} else {
|
|
207
|
+
this.root._videos[i].pause() // 自动暂停其他视频
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
// 将自己加入列表
|
|
211
|
+
if (!flag) {
|
|
212
|
+
const ctx = uni.createVideoContext(id
|
|
213
|
+
// #ifndef MP-BAIDU
|
|
214
|
+
, this
|
|
215
|
+
// #endif
|
|
216
|
+
)
|
|
217
|
+
ctx.id = id
|
|
218
|
+
if (this.root.playbackRate) {
|
|
219
|
+
ctx.playbackRate(this.root.playbackRate)
|
|
220
|
+
}
|
|
221
|
+
this.root._videos.push(ctx)
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
// #endif
|
|
225
|
+
},
|
|
226
|
+
|
|
227
|
+
/**
|
|
228
|
+
* @description 图片点击事件
|
|
229
|
+
* @param {Event} e
|
|
230
|
+
*/
|
|
231
|
+
imgTap (e) {
|
|
232
|
+
const node = this.childs[e.currentTarget.dataset.i]
|
|
233
|
+
if (node.a) {
|
|
234
|
+
this.linkTap(node.a)
|
|
235
|
+
return
|
|
236
|
+
}
|
|
237
|
+
if (node.attrs.ignore) return
|
|
238
|
+
// #ifdef H5 || APP-PLUS
|
|
239
|
+
node.attrs.src = node.attrs.src || node.attrs['data-src']
|
|
240
|
+
// #endif
|
|
241
|
+
this.root.$emit('imgtap', node.attrs)
|
|
242
|
+
// 自动预览图片
|
|
243
|
+
if (this.root.previewImg) {
|
|
244
|
+
uni.previewImage({
|
|
245
|
+
// #ifdef MP-WEIXIN
|
|
246
|
+
showmenu: this.root.showImgMenu,
|
|
247
|
+
// #endif
|
|
248
|
+
// #ifdef MP-ALIPAY
|
|
249
|
+
enablesavephoto: this.root.showImgMenu,
|
|
250
|
+
enableShowPhotoDownload: this.root.showImgMenu,
|
|
251
|
+
// #endif
|
|
252
|
+
current: parseInt(node.attrs.i),
|
|
253
|
+
urls: this.root.imgList
|
|
254
|
+
})
|
|
255
|
+
}
|
|
256
|
+
},
|
|
257
|
+
|
|
258
|
+
/**
|
|
259
|
+
* @description 图片长按
|
|
260
|
+
*/
|
|
261
|
+
imgLongTap (e) {
|
|
262
|
+
// #ifdef APP-PLUS
|
|
263
|
+
const attrs = this.childs[e.currentTarget.dataset.i].attrs
|
|
264
|
+
if (this.opts[3] && !attrs.ignore) {
|
|
265
|
+
uni.showActionSheet({
|
|
266
|
+
itemList: ['保存图片'],
|
|
267
|
+
success: () => {
|
|
268
|
+
const save = path => {
|
|
269
|
+
uni.saveImageToPhotosAlbum({
|
|
270
|
+
filePath: path,
|
|
271
|
+
success () {
|
|
272
|
+
uni.showToast({
|
|
273
|
+
title: '保存成功'
|
|
274
|
+
})
|
|
275
|
+
}
|
|
276
|
+
})
|
|
277
|
+
}
|
|
278
|
+
if (this.root.imgList[attrs.i].startsWith('http')) {
|
|
279
|
+
uni.downloadFile({
|
|
280
|
+
url: this.root.imgList[attrs.i],
|
|
281
|
+
success: res => save(res.tempFilePath)
|
|
282
|
+
})
|
|
283
|
+
} else {
|
|
284
|
+
save(this.root.imgList[attrs.i])
|
|
285
|
+
}
|
|
286
|
+
}
|
|
287
|
+
})
|
|
288
|
+
}
|
|
289
|
+
// #endif
|
|
290
|
+
},
|
|
291
|
+
|
|
292
|
+
/**
|
|
293
|
+
* @description 图片加载完成事件
|
|
294
|
+
* @param {Event} e
|
|
295
|
+
*/
|
|
296
|
+
imgLoad (e) {
|
|
297
|
+
const i = e.currentTarget.dataset.i
|
|
298
|
+
/* #ifndef H5 || (APP-PLUS && VUE2) */
|
|
299
|
+
if (!this.childs[i].w) {
|
|
300
|
+
// 设置原宽度
|
|
301
|
+
this.$set(this.ctrl, i, e.detail.width)
|
|
302
|
+
} else /* #endif */ if ((this.opts[1] && !this.ctrl[i]) || this.ctrl[i] === -1) {
|
|
303
|
+
// 加载完毕,取消加载中占位图
|
|
304
|
+
this.$set(this.ctrl, i, 1)
|
|
305
|
+
}
|
|
306
|
+
this.checkReady()
|
|
307
|
+
},
|
|
308
|
+
|
|
309
|
+
/**
|
|
310
|
+
* @description 检查是否所有图片加载完毕
|
|
311
|
+
*/
|
|
312
|
+
checkReady () {
|
|
313
|
+
if (this.root && !this.root.lazyLoad) {
|
|
314
|
+
this.root._unloadimgs -= 1
|
|
315
|
+
if (!this.root._unloadimgs) {
|
|
316
|
+
setTimeout(() => {
|
|
317
|
+
this.root.getRect().then(rect => {
|
|
318
|
+
this.root.$emit('ready', rect)
|
|
319
|
+
}).catch(() => {
|
|
320
|
+
this.root.$emit('ready', {})
|
|
321
|
+
})
|
|
322
|
+
}, 350)
|
|
323
|
+
}
|
|
324
|
+
}
|
|
325
|
+
},
|
|
326
|
+
|
|
327
|
+
/**
|
|
328
|
+
* @description 链接点击事件
|
|
329
|
+
* @param {Event} e
|
|
330
|
+
*/
|
|
331
|
+
linkTap (e) {
|
|
332
|
+
const node = e.currentTarget ? this.childs[e.currentTarget.dataset.i] : {}
|
|
333
|
+
const attrs = node.attrs || e
|
|
334
|
+
const href = attrs.href
|
|
335
|
+
this.root.$emit('linktap', Object.assign({
|
|
336
|
+
innerText: this.root.getText(node.children || []) // 链接内的文本内容
|
|
337
|
+
}, attrs))
|
|
338
|
+
if (href) {
|
|
339
|
+
if (href[0] === '#') {
|
|
340
|
+
// 跳转锚点
|
|
341
|
+
this.root.navigateTo(href.substring(1)).catch(() => { })
|
|
342
|
+
} else if (href.split('?')[0].includes('://')) {
|
|
343
|
+
// 复制外部链接
|
|
344
|
+
if (this.root.copyLink) {
|
|
345
|
+
// #ifdef H5
|
|
346
|
+
window.open(href)
|
|
347
|
+
// #endif
|
|
348
|
+
// #ifdef MP
|
|
349
|
+
uni.setClipboardData({
|
|
350
|
+
data: href,
|
|
351
|
+
success: () =>
|
|
352
|
+
uni.showToast({
|
|
353
|
+
title: '链接已复制'
|
|
354
|
+
})
|
|
355
|
+
})
|
|
356
|
+
// #endif
|
|
357
|
+
// #ifdef APP-PLUS
|
|
358
|
+
plus.runtime.openWeb(href)
|
|
359
|
+
// #endif
|
|
360
|
+
}
|
|
361
|
+
} else {
|
|
362
|
+
// 跳转页面
|
|
363
|
+
uni.navigateTo({
|
|
364
|
+
url: href,
|
|
365
|
+
fail () {
|
|
366
|
+
uni.switchTab({
|
|
367
|
+
url: href,
|
|
368
|
+
fail () { }
|
|
369
|
+
})
|
|
370
|
+
}
|
|
371
|
+
})
|
|
372
|
+
}
|
|
373
|
+
}
|
|
374
|
+
},
|
|
375
|
+
|
|
376
|
+
/**
|
|
377
|
+
* @description 错误事件
|
|
378
|
+
* @param {Event} e
|
|
379
|
+
*/
|
|
380
|
+
mediaError (e) {
|
|
381
|
+
const i = e.currentTarget.dataset.i
|
|
382
|
+
const node = this.childs[i]
|
|
383
|
+
// 加载其他源
|
|
384
|
+
if (node.name === 'video' || node.name === 'audio') {
|
|
385
|
+
let index = (this.ctrl[i] || 0) + 1
|
|
386
|
+
if (index > node.src.length) {
|
|
387
|
+
index = 0
|
|
388
|
+
}
|
|
389
|
+
if (index < node.src.length) {
|
|
390
|
+
this.$set(this.ctrl, i, index)
|
|
391
|
+
return
|
|
392
|
+
}
|
|
393
|
+
} else if (node.name === 'img') {
|
|
394
|
+
// #ifdef H5 && VUE3
|
|
395
|
+
if (this.opts[0] && !this.ctrl.load) return
|
|
396
|
+
// #endif
|
|
397
|
+
// 显示错误占位图
|
|
398
|
+
if (this.opts[2]) {
|
|
399
|
+
this.$set(this.ctrl, i, -1)
|
|
400
|
+
}
|
|
401
|
+
this.checkReady()
|
|
402
|
+
}
|
|
403
|
+
if (this.root) {
|
|
404
|
+
this.root.$emit('error', {
|
|
405
|
+
source: node.name,
|
|
406
|
+
attrs: node.attrs,
|
|
407
|
+
// #ifndef H5 && VUE3
|
|
408
|
+
errMsg: e.detail.errMsg
|
|
409
|
+
// #endif
|
|
410
|
+
})
|
|
411
|
+
}
|
|
412
|
+
}
|
|
413
|
+
}
|
|
414
|
+
}
|
|
415
|
+
</script>
|
|
416
|
+
<style>
|
|
417
|
+
/* a 标签默认效果 */
|
|
418
|
+
._a {
|
|
419
|
+
padding: 1.5px 0 1.5px 0;
|
|
420
|
+
color: #366092;
|
|
421
|
+
word-break: break-all;
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
/* a 标签点击态效果 */
|
|
425
|
+
._hover {
|
|
426
|
+
text-decoration: underline;
|
|
427
|
+
opacity: 0.7;
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
/* 图片默认效果 */
|
|
431
|
+
._img {
|
|
432
|
+
max-width: 100%;
|
|
433
|
+
-webkit-touch-callout: none;
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
/* 内部样式 */
|
|
437
|
+
|
|
438
|
+
._block {
|
|
439
|
+
display: block;
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
._b,
|
|
443
|
+
._strong {
|
|
444
|
+
font-weight: bold;
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
._code {
|
|
448
|
+
font-family: monospace;
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
._del {
|
|
452
|
+
text-decoration: line-through;
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
._em,
|
|
456
|
+
._i {
|
|
457
|
+
font-style: italic;
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
._h1 {
|
|
461
|
+
font-size: 2em;
|
|
462
|
+
}
|
|
463
|
+
|
|
464
|
+
._h2 {
|
|
465
|
+
font-size: 1.5em;
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
._h3 {
|
|
469
|
+
font-size: 1.17em;
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
._h5 {
|
|
473
|
+
font-size: 0.83em;
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
._h6 {
|
|
477
|
+
font-size: 0.67em;
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
._h1,
|
|
481
|
+
._h2,
|
|
482
|
+
._h3,
|
|
483
|
+
._h4,
|
|
484
|
+
._h5,
|
|
485
|
+
._h6 {
|
|
486
|
+
display: block;
|
|
487
|
+
font-weight: bold;
|
|
488
|
+
}
|
|
489
|
+
|
|
490
|
+
._image {
|
|
491
|
+
height: 1px;
|
|
492
|
+
}
|
|
493
|
+
|
|
494
|
+
._ins {
|
|
495
|
+
text-decoration: underline;
|
|
496
|
+
}
|
|
497
|
+
|
|
498
|
+
._li {
|
|
499
|
+
display: list-item;
|
|
500
|
+
}
|
|
501
|
+
|
|
502
|
+
._ol {
|
|
503
|
+
list-style-type: decimal;
|
|
504
|
+
}
|
|
505
|
+
|
|
506
|
+
._ol,
|
|
507
|
+
._ul {
|
|
508
|
+
display: block;
|
|
509
|
+
padding-left: 40px;
|
|
510
|
+
margin: 1em 0;
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
._q::before {
|
|
514
|
+
content: '"';
|
|
515
|
+
}
|
|
516
|
+
|
|
517
|
+
._q::after {
|
|
518
|
+
content: '"';
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
._sub {
|
|
522
|
+
font-size: smaller;
|
|
523
|
+
vertical-align: sub;
|
|
524
|
+
}
|
|
525
|
+
|
|
526
|
+
._sup {
|
|
527
|
+
font-size: smaller;
|
|
528
|
+
vertical-align: super;
|
|
529
|
+
}
|
|
530
|
+
|
|
531
|
+
._thead,
|
|
532
|
+
._tbody,
|
|
533
|
+
._tfoot {
|
|
534
|
+
display: table-row-group;
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
._tr {
|
|
538
|
+
display: table-row;
|
|
539
|
+
}
|
|
540
|
+
|
|
541
|
+
._td,
|
|
542
|
+
._th {
|
|
543
|
+
display: table-cell;
|
|
544
|
+
vertical-align: middle;
|
|
545
|
+
}
|
|
546
|
+
|
|
547
|
+
._th {
|
|
548
|
+
font-weight: bold;
|
|
549
|
+
text-align: center;
|
|
550
|
+
}
|
|
551
|
+
|
|
552
|
+
._ul {
|
|
553
|
+
list-style-type: disc;
|
|
554
|
+
}
|
|
555
|
+
|
|
556
|
+
._ul ._ul {
|
|
557
|
+
margin: 0;
|
|
558
|
+
list-style-type: circle;
|
|
559
|
+
}
|
|
560
|
+
|
|
561
|
+
._ul ._ul ._ul {
|
|
562
|
+
list-style-type: square;
|
|
563
|
+
}
|
|
564
|
+
|
|
565
|
+
._abbr,
|
|
566
|
+
._b,
|
|
567
|
+
._code,
|
|
568
|
+
._del,
|
|
569
|
+
._em,
|
|
570
|
+
._i,
|
|
571
|
+
._ins,
|
|
572
|
+
._label,
|
|
573
|
+
._q,
|
|
574
|
+
._span,
|
|
575
|
+
._strong,
|
|
576
|
+
._sub,
|
|
577
|
+
._sup {
|
|
578
|
+
display: inline;
|
|
579
|
+
}
|
|
580
|
+
|
|
581
|
+
/* #ifdef APP-PLUS */
|
|
582
|
+
._video {
|
|
583
|
+
width: 300px;
|
|
584
|
+
height: 225px;
|
|
585
|
+
}
|
|
586
|
+
/* #endif */
|
|
587
|
+
</style>
|