@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,129 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @fileoverview style 插件
|
|
3
|
+
*/
|
|
4
|
+
// #ifndef APP-PLUS-NVUE
|
|
5
|
+
const Parser = require('./parser')
|
|
6
|
+
// #endif
|
|
7
|
+
|
|
8
|
+
function Style () {
|
|
9
|
+
this.styles = []
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
// #ifndef APP-PLUS-NVUE
|
|
13
|
+
Style.prototype.onParse = function (node, vm) {
|
|
14
|
+
// 获取样式
|
|
15
|
+
if (node.name === 'style' && node.children.length && node.children[0].type === 'text') {
|
|
16
|
+
this.styles = this.styles.concat(new Parser().parse(node.children[0].text))
|
|
17
|
+
} else if (node.name) {
|
|
18
|
+
// 匹配样式(对非文本标签)
|
|
19
|
+
// 存储不同优先级的样式 name < class < id < 后代
|
|
20
|
+
let matched = ['', '', '', '']
|
|
21
|
+
for (let i = 0, len = this.styles.length; i < len; i++) {
|
|
22
|
+
const item = this.styles[i]
|
|
23
|
+
let res = match(node, item.key || item.list[item.list.length - 1])
|
|
24
|
+
let j
|
|
25
|
+
if (res) {
|
|
26
|
+
// 后代选择器
|
|
27
|
+
if (!item.key) {
|
|
28
|
+
j = item.list.length - 2
|
|
29
|
+
for (let k = vm.stack.length; j >= 0 && k--;) {
|
|
30
|
+
// 子选择器
|
|
31
|
+
if (item.list[j] === '>') {
|
|
32
|
+
// 错误情况
|
|
33
|
+
if (j < 1 || j > item.list.length - 2) break
|
|
34
|
+
if (match(vm.stack[k], item.list[j - 1])) {
|
|
35
|
+
j -= 2
|
|
36
|
+
} else {
|
|
37
|
+
j++
|
|
38
|
+
}
|
|
39
|
+
} else if (match(vm.stack[k], item.list[j])) {
|
|
40
|
+
j--
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
res = 4
|
|
44
|
+
}
|
|
45
|
+
if (item.key || j < 0) {
|
|
46
|
+
// 添加伪类
|
|
47
|
+
if (item.pseudo && node.children) {
|
|
48
|
+
let text
|
|
49
|
+
item.style = item.style.replace(/content:([^;]+)/, (_, $1) => {
|
|
50
|
+
text = $1.replace(/['"]/g, '')
|
|
51
|
+
// 处理 attr 函数
|
|
52
|
+
.replace(/attr\((.+?)\)/, (_, $1) => node.attrs[$1.trim()] || '')
|
|
53
|
+
// 编码 \xxx
|
|
54
|
+
.replace(/\\(\w{4})/, (_, $1) => String.fromCharCode(parseInt($1, 16)))
|
|
55
|
+
return ''
|
|
56
|
+
})
|
|
57
|
+
const pseudo = {
|
|
58
|
+
name: 'span',
|
|
59
|
+
attrs: {
|
|
60
|
+
style: item.style
|
|
61
|
+
},
|
|
62
|
+
children: [{
|
|
63
|
+
type: 'text',
|
|
64
|
+
text
|
|
65
|
+
}]
|
|
66
|
+
}
|
|
67
|
+
if (item.pseudo === 'before') {
|
|
68
|
+
node.children.unshift(pseudo)
|
|
69
|
+
} else {
|
|
70
|
+
node.children.push(pseudo)
|
|
71
|
+
}
|
|
72
|
+
} else {
|
|
73
|
+
matched[res - 1] += item.style + (item.style[item.style.length - 1] === ';' ? '' : ';')
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
matched = matched.join('')
|
|
79
|
+
if (matched.length > 2) {
|
|
80
|
+
node.attrs.style = matched + (node.attrs.style || '')
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
/**
|
|
86
|
+
* @description 匹配样式
|
|
87
|
+
* @param {object} node 要匹配的标签
|
|
88
|
+
* @param {string|string[]} keys 选择器
|
|
89
|
+
* @returns {number} 0:不匹配;1:name 匹配;2:class 匹配;3:id 匹配
|
|
90
|
+
*/
|
|
91
|
+
function match (node, keys) {
|
|
92
|
+
function matchItem (key) {
|
|
93
|
+
if (key[0] === '#') {
|
|
94
|
+
// 匹配 id
|
|
95
|
+
if (node.attrs.id && node.attrs.id.trim() === key.substr(1)) return 3
|
|
96
|
+
} else if (key[0] === '.') {
|
|
97
|
+
// 匹配 class
|
|
98
|
+
key = key.substr(1)
|
|
99
|
+
const selectors = (node.attrs.class || '').split(' ')
|
|
100
|
+
for (let i = 0; i < selectors.length; i++) {
|
|
101
|
+
if (selectors[i].trim() === key) return 2
|
|
102
|
+
}
|
|
103
|
+
} else if (node.name === key) {
|
|
104
|
+
// 匹配 name
|
|
105
|
+
return 1
|
|
106
|
+
}
|
|
107
|
+
return 0
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
// 多选择器交集
|
|
111
|
+
if (keys instanceof Array) {
|
|
112
|
+
let res = 0
|
|
113
|
+
for (let j = 0; j < keys.length; j++) {
|
|
114
|
+
const tmp = matchItem(keys[j])
|
|
115
|
+
// 任意一个不匹配就失败
|
|
116
|
+
if (!tmp) return 0
|
|
117
|
+
// 优先级最大的一个作为最终优先级
|
|
118
|
+
if (tmp > res) {
|
|
119
|
+
res = tmp
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
return res
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
return matchItem(keys)
|
|
126
|
+
}
|
|
127
|
+
// #endif
|
|
128
|
+
|
|
129
|
+
module.exports = Style
|
|
@@ -0,0 +1,175 @@
|
|
|
1
|
+
const blank = {
|
|
2
|
+
' ': true,
|
|
3
|
+
'\n': true,
|
|
4
|
+
'\t': true,
|
|
5
|
+
'\r': true,
|
|
6
|
+
'\f': true
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
function Parser () {
|
|
10
|
+
this.styles = []
|
|
11
|
+
this.selectors = []
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* @description 解析 css 字符串
|
|
16
|
+
* @param {string} content css 内容
|
|
17
|
+
*/
|
|
18
|
+
Parser.prototype.parse = function (content) {
|
|
19
|
+
new Lexer(this).parse(content)
|
|
20
|
+
return this.styles
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* @description 解析到一个选择器
|
|
25
|
+
* @param {string} name 名称
|
|
26
|
+
*/
|
|
27
|
+
Parser.prototype.onSelector = function (name) {
|
|
28
|
+
// 不支持的选择器
|
|
29
|
+
if (name.includes('[') || name.includes('*') || name.includes('@')) return
|
|
30
|
+
const selector = {}
|
|
31
|
+
// 伪类
|
|
32
|
+
if (name.includes(':')) {
|
|
33
|
+
const info = name.split(':')
|
|
34
|
+
const pseudo = info.pop()
|
|
35
|
+
if (pseudo === 'before' || pseudo === 'after') {
|
|
36
|
+
selector.pseudo = pseudo
|
|
37
|
+
name = info[0]
|
|
38
|
+
} else return
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
// 分割交集选择器
|
|
42
|
+
function splitItem (str) {
|
|
43
|
+
const arr = []
|
|
44
|
+
let i, start
|
|
45
|
+
for (i = 1, start = 0; i < str.length; i++) {
|
|
46
|
+
if (str[i] === '.' || str[i] === '#') {
|
|
47
|
+
arr.push(str.substring(start, i))
|
|
48
|
+
start = i
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
if (!arr.length) {
|
|
52
|
+
return str
|
|
53
|
+
} else {
|
|
54
|
+
arr.push(str.substring(start, i))
|
|
55
|
+
return arr
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
// 后代选择器
|
|
60
|
+
if (name.includes(' ')) {
|
|
61
|
+
selector.list = []
|
|
62
|
+
const list = name.split(' ')
|
|
63
|
+
for (let i = 0; i < list.length; i++) {
|
|
64
|
+
if (list[i].length) {
|
|
65
|
+
// 拆分子选择器
|
|
66
|
+
const arr = list[i].split('>')
|
|
67
|
+
for (let j = 0; j < arr.length; j++) {
|
|
68
|
+
selector.list.push(splitItem(arr[j]))
|
|
69
|
+
if (j < arr.length - 1) {
|
|
70
|
+
selector.list.push('>')
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
} else {
|
|
76
|
+
selector.key = splitItem(name)
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
this.selectors.push(selector)
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
/**
|
|
83
|
+
* @description 解析到选择器内容
|
|
84
|
+
* @param {string} content 内容
|
|
85
|
+
*/
|
|
86
|
+
Parser.prototype.onContent = function (content) {
|
|
87
|
+
// 并集选择器
|
|
88
|
+
for (let i = 0; i < this.selectors.length; i++) {
|
|
89
|
+
this.selectors[i].style = content
|
|
90
|
+
}
|
|
91
|
+
this.styles = this.styles.concat(this.selectors)
|
|
92
|
+
this.selectors = []
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
/**
|
|
96
|
+
* @description css 词法分析器
|
|
97
|
+
* @param {object} handler 高层处理器
|
|
98
|
+
*/
|
|
99
|
+
function Lexer (handler) {
|
|
100
|
+
this.selector = ''
|
|
101
|
+
this.style = ''
|
|
102
|
+
this.handler = handler
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
Lexer.prototype.parse = function (content) {
|
|
106
|
+
this.i = 0
|
|
107
|
+
this.content = content
|
|
108
|
+
this.state = this.blank
|
|
109
|
+
for (let len = content.length; this.i < len; this.i++) {
|
|
110
|
+
this.state(content[this.i])
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
Lexer.prototype.comment = function () {
|
|
115
|
+
this.i = this.content.indexOf('*/', this.i) + 1
|
|
116
|
+
if (!this.i) {
|
|
117
|
+
this.i = this.content.length
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
Lexer.prototype.blank = function (c) {
|
|
122
|
+
if (!blank[c]) {
|
|
123
|
+
if (c === '/' && this.content[this.i + 1] === '*') {
|
|
124
|
+
this.comment()
|
|
125
|
+
return
|
|
126
|
+
}
|
|
127
|
+
this.selector += c
|
|
128
|
+
this.state = this.name
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
Lexer.prototype.name = function (c) {
|
|
133
|
+
if (c === '/' && this.content[this.i + 1] === '*') {
|
|
134
|
+
this.comment()
|
|
135
|
+
return
|
|
136
|
+
}
|
|
137
|
+
if (c === '{' || c === ',' || c === ';') {
|
|
138
|
+
this.handler.onSelector(this.selector.trimEnd())
|
|
139
|
+
this.selector = ''
|
|
140
|
+
if (c !== '{') {
|
|
141
|
+
while (blank[this.content[++this.i]]);
|
|
142
|
+
}
|
|
143
|
+
if (this.content[this.i] === '{') {
|
|
144
|
+
this.floor = 1
|
|
145
|
+
this.state = this.val
|
|
146
|
+
} else {
|
|
147
|
+
this.selector += this.content[this.i]
|
|
148
|
+
}
|
|
149
|
+
} else if (blank[c]) {
|
|
150
|
+
this.selector += ' '
|
|
151
|
+
} else {
|
|
152
|
+
this.selector += c
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
Lexer.prototype.val = function (c) {
|
|
157
|
+
if (c === '/' && this.content[this.i + 1] === '*') {
|
|
158
|
+
this.comment()
|
|
159
|
+
return
|
|
160
|
+
}
|
|
161
|
+
if (c === '{') {
|
|
162
|
+
this.floor++
|
|
163
|
+
} else if (c === '}') {
|
|
164
|
+
this.floor--
|
|
165
|
+
if (!this.floor) {
|
|
166
|
+
this.handler.onContent(this.style)
|
|
167
|
+
this.style = ''
|
|
168
|
+
this.state = this.blank
|
|
169
|
+
return
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
this.style += c
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
module.exports = Parser
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @description 插件构建文件模板
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
module.exports = {
|
|
6
|
+
/**
|
|
7
|
+
* @description 入口文件
|
|
8
|
+
* @type {String}
|
|
9
|
+
* @default 'index.js'
|
|
10
|
+
*/
|
|
11
|
+
main: 'index.js',
|
|
12
|
+
/**
|
|
13
|
+
* @description 支持的平台
|
|
14
|
+
* @type {String[]}
|
|
15
|
+
* @default ['mp-weixin','mp-qq','mp-baidu','mp-alipay','mp-toutiao','uni-app']
|
|
16
|
+
*/
|
|
17
|
+
platform: ['mp-weixin', 'mp-qq', 'mp-baidu', 'mp-alipay', 'mp-toutiao', 'uni-app'],
|
|
18
|
+
/**
|
|
19
|
+
* @description 要被添加到模板文件中的标签(将被添加到 src/node/node.wxml)
|
|
20
|
+
* 必须要有 wx:if 表明什么情况下使用该标签
|
|
21
|
+
* n 表示标签结构体,<node> 标签用于递归显示子节点(可参考源文件中的写法)
|
|
22
|
+
* @type {String}
|
|
23
|
+
*/
|
|
24
|
+
template: '',
|
|
25
|
+
/**
|
|
26
|
+
* @description 用于处理模板中事件的方法(将被添加到 src/node/node.js)
|
|
27
|
+
* 需要触发顶层组件的事件请使用 this.root.triggerEvent
|
|
28
|
+
* @type {Object}
|
|
29
|
+
*/
|
|
30
|
+
methods: {
|
|
31
|
+
|
|
32
|
+
},
|
|
33
|
+
/**
|
|
34
|
+
* @description 用于模板文件的 css 样式(将被添加到 src/node/node.wxss)
|
|
35
|
+
* @type {String}
|
|
36
|
+
*/
|
|
37
|
+
style: '',
|
|
38
|
+
/**
|
|
39
|
+
* @description 要被引入到模板文件的 css 文件路径(将被添加到 src/node/node.wxss)
|
|
40
|
+
* @type {String|String[]}
|
|
41
|
+
*/
|
|
42
|
+
import: [],
|
|
43
|
+
/**
|
|
44
|
+
* @description 在模板中需要使用的组件或插件列表(将被添加到 src/node/node.json)
|
|
45
|
+
* @type {Object}
|
|
46
|
+
*/
|
|
47
|
+
usingComponents: {
|
|
48
|
+
|
|
49
|
+
},
|
|
50
|
+
/**
|
|
51
|
+
* @description 自定义文件处理器
|
|
52
|
+
* 如果上述处理还无法满足要求,可以在此方法中进行处理
|
|
53
|
+
* 所有 src 目录下的文件和本插件目录下的文件都会经过此方法的处理
|
|
54
|
+
* @param {Vinyl} file 关于该文件对象的格式可参考 https://github.com/gulpjs/vinyl#instance-methods
|
|
55
|
+
* @param {String} platform 平台
|
|
56
|
+
*/
|
|
57
|
+
handler (file, platform) {
|
|
58
|
+
let content = file.contents.toString()
|
|
59
|
+
// 进行处理
|
|
60
|
+
if (platform === 'xxx') {
|
|
61
|
+
content = content.replace('aaa', 'bbb')
|
|
62
|
+
}
|
|
63
|
+
file.contents = Buffer.from(content)
|
|
64
|
+
}
|
|
65
|
+
}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @fileoverview 插件入口文件模板
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
const data = {} // 全局数据
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* @description 组件被创建时将实例化插件
|
|
9
|
+
* @param {Component} vm 组件实例
|
|
10
|
+
*/
|
|
11
|
+
function Plugin (vm) {
|
|
12
|
+
this.vm = vm // 保存实例在其他周期使用
|
|
13
|
+
this.compData = {} // 仅在单个组件中使用的数据
|
|
14
|
+
data.xxx = 'xxx' // 记录全局数据
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* @description html 数据更新时触发
|
|
19
|
+
* @param {string} content 要更新的 html 字符串
|
|
20
|
+
* @param {object} config 解析配置
|
|
21
|
+
* @returns {string|void} 如果要对 html 字符串进行一些预处理,则返回处理后的字符串
|
|
22
|
+
*/
|
|
23
|
+
Plugin.prototype.onUpdate = function (content, config) {
|
|
24
|
+
config.ignoreTags.xxx = true // 移除 xxx 标签
|
|
25
|
+
// 对 html 内容进行预处理并返回修改,没有修改则不需要返回
|
|
26
|
+
return content
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* @description 解析到一个标签时触发
|
|
31
|
+
* @param {object} node 标签
|
|
32
|
+
* @param {object} parser 解析器实例
|
|
33
|
+
* @returns {boolean|void} 如果返回 false 将移除该标签
|
|
34
|
+
*/
|
|
35
|
+
Plugin.prototype.onParse = function (node, parser) {
|
|
36
|
+
// 处理文本标签
|
|
37
|
+
if (node.type === 'text') {
|
|
38
|
+
// node.text 文本内容
|
|
39
|
+
} else {
|
|
40
|
+
// 处理元素标签
|
|
41
|
+
// node.name 标签名
|
|
42
|
+
// node.attrs 属性列表
|
|
43
|
+
// node.children 子节点(非自闭合标签有)
|
|
44
|
+
|
|
45
|
+
if (node.name === 'xxx') {
|
|
46
|
+
parser.expose() // 如果该标签不能被 rich-text 包含,需要调用此方法暴露出来
|
|
47
|
+
// parser.options 组件传入的一些解析属性
|
|
48
|
+
// parser.stack 可以从栈中获取祖先节点
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
/**
|
|
54
|
+
* @description dom 树加载完毕时触发(load 事件)
|
|
55
|
+
*/
|
|
56
|
+
Plugin.prototype.onLoad = function () {
|
|
57
|
+
// 可以获取媒体 context 对象等
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
/**
|
|
61
|
+
* @description 组件被移除时触发
|
|
62
|
+
*/
|
|
63
|
+
Plugin.prototype.onDetached = function () {
|
|
64
|
+
// 可以释放一些必要的资源(计时器等)
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
module.exports = Plugin
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# txv-video
|
|
2
|
+
功能:使用腾讯视频
|
|
3
|
+
大小:*≈1KB*
|
|
4
|
+
支持平台:
|
|
5
|
+
|
|
6
|
+
| 微信小程序 | QQ 小程序 | 百度小程序 | 支付宝小程序 | 头条小程序 | uni-app |
|
|
7
|
+
|:---:|:---:|:---:|:---:|:---:|:---:|
|
|
8
|
+
| √ | √ | | | | √ (h5 和 app 直接支持) |
|
|
9
|
+
|
|
10
|
+
说明:
|
|
11
|
+
引入本插件后,*html* 中符合下方格式的 *iframe* 标签(*src* 中含有 *vid*)将被转为通过腾讯视频播放:
|
|
12
|
+
```html
|
|
13
|
+
<iframe src="https://v.qq.com/txp/iframe/player.html?vid=xxxxxx" allowFullScreen="true"></iframe>
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
同时,其可以被 *pause-video* 属性控制
|
|
17
|
+
|
|
18
|
+
!> 本插件仅用于将官方 [腾讯视频插件](https://github.com/tvfe/txv-miniprogram-plugin) 应用于本组件,仅在微信和 *qq* 平台有效,使用前请确认已经成功申请使用该插件并按要求在小程序 *app.json* 中配置完成,否则可能报错 **This application has not registered any plugins yet** 且无法生效
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @fileoverview txv-video 插件
|
|
3
|
+
* Include txv-video (https://github.com/tvfe/txv-miniprogram-plugin)
|
|
4
|
+
*/
|
|
5
|
+
const TxvVideo = function (vm) {
|
|
6
|
+
this.vm = vm
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
// #ifdef MP-WEIXIN || MP-QQ
|
|
10
|
+
try {
|
|
11
|
+
const TxvContext = requirePlugin('tencentvideo')
|
|
12
|
+
|
|
13
|
+
TxvVideo.prototype.onLoad = function () {
|
|
14
|
+
setTimeout(() => {
|
|
15
|
+
for (let i = 0; i < this.videos.length; i++) {
|
|
16
|
+
const ctx = TxvContext.getTxvContext(this.videos[i])
|
|
17
|
+
ctx.id = this.videos[i]
|
|
18
|
+
this.vm._videos.push(ctx)
|
|
19
|
+
}
|
|
20
|
+
}, 50)
|
|
21
|
+
}
|
|
22
|
+
} catch (e) {
|
|
23
|
+
console.error('使用txv-video扩展需注册腾讯视频插件')
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
TxvVideo.prototype.onUpdate = function (_, config) {
|
|
27
|
+
config.trustTags['txv-video'] = true
|
|
28
|
+
this.videos = []
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
TxvVideo.prototype.onParse = function (node, parser) {
|
|
32
|
+
if (node.name === 'iframe' && (node.attrs.src || '').includes('vid')) {
|
|
33
|
+
const vid = node.attrs.src.match(/vid=([^&\s]+)/)
|
|
34
|
+
if (vid) {
|
|
35
|
+
node.name = 'txv-video'
|
|
36
|
+
node.attrs.vid = vid[1]
|
|
37
|
+
this.videos.push(vid[1])
|
|
38
|
+
node.attrs.src = undefined
|
|
39
|
+
parser.expose()
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
// #endif
|
|
45
|
+
|
|
46
|
+
module.exports = TxvVideo
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
module.exports = {
|
|
2
|
+
template: '<txv-video wx:if="{{n.name==\'txv-video\'}}" vid="{{n.attrs.vid}}" playerid="{{n.attrs.vid}}" id="{{n.attrs.vid}}" class="{{n.attrs.class}}" style="{{n.attrs.style}}" controls data-i="{{i}}" bindplay="play" binderror="mediaError" />',
|
|
3
|
+
usingComponents: {
|
|
4
|
+
'txv-video': 'plugin://tencentvideo/video'
|
|
5
|
+
}
|
|
6
|
+
}
|