From e5384d3995165e38d0f4b0d4a84883110e9d4fad Mon Sep 17 00:00:00 2001
From: sx <2427911852@qq.com>
Date: Tue, 4 Mar 2025 09:03:08 +0800
Subject: [PATCH] =?UTF-8?q?2025.03.01~2025.03.03=20=E5=B7=A5=E4=BD=9C?=
=?UTF-8?q?=E4=BB=A3=E7=A0=81=E6=8F=90=E4=BA=A4=20=E8=A7=A3=E5=86=B3?=
=?UTF-8?q?=E5=AF=8C=E6=96=87=E6=9C=AC=E5=9C=A8app=E7=AB=AF=E5=BC=82?=
=?UTF-8?q?=E5=B8=B8=E7=9A=84=E9=97=AE=E9=A2=98=20=E6=B7=BB=E5=8A=A0?=
=?UTF-8?q?=E6=B6=88=E6=81=AF=E8=81=8A=E5=A4=A9=E9=A1=B5=E5=8E=BB=E4=B8=BE?=
=?UTF-8?q?=E6=8A=A5=E7=9A=84=E5=8A=9F=E8=83=BD=20=E8=B4=A6=E5=8D=95?=
=?UTF-8?q?=E8=B0=83=E6=95=B4=20=E7=A7=8D=E5=AD=90=E6=98=8E=E7=BB=86?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
jiuyi2/api/mine.js | 4 +-
jiuyi2/common/js/config.js | 2 +-
jiuyi2/common/js/parseHtml.js | 352 ++++++
jiuyi2/common/js/util.js | 15 +-
jiuyi2/components/public/editor/editor.vue | 38 +-
.../components/public/parse/libs/html2json.js | 271 ++++
.../public/parse/libs/htmlparser.js | 156 +++
.../components/public/parse/libs/wxDiscode.js | 195 +++
jiuyi2/components/public/parse/parse.vue | 118 ++
.../components/public/parse/parseTemplate.vue | 225 ++++
jiuyi2/components/public/parse/style.scss | 221 ++++
.../components/public/parse/wxParseAudio.vue | 27 +
jiuyi2/components/public/parse/wxParseImg.vue | 105 ++
.../components/public/parse/wxParseVideo.vue | 15 +
jiuyi2/components/shop/detail/detail.vue | 24 +-
jiuyi2/manifest.json | 4 +-
jiuyi2/pages.json | 10 +-
jiuyi2/pages/index/durian.vue | 13 +-
jiuyi2/pages/index/durianLog.vue | 3 +-
jiuyi2/pages/index/report.vue | 20 +-
jiuyi2/pages/index/seedLog.vue | 121 ++
jiuyi2/pages/index/trade.vue | 10 +-
jiuyi2/pages/index/wallet/bill.vue | 13 +-
jiuyi2/pages/news/chat/chat.vue | 1126 +++++++++--------
jiuyi2/pages/release/commodity.vue | 1 +
jiuyi2/pages/shop/commodity/index.vue | 5 -
jiuyi2/readme.md | 10 -
27 files changed, 2477 insertions(+), 627 deletions(-)
create mode 100644 jiuyi2/common/js/parseHtml.js
create mode 100644 jiuyi2/components/public/parse/libs/html2json.js
create mode 100644 jiuyi2/components/public/parse/libs/htmlparser.js
create mode 100644 jiuyi2/components/public/parse/libs/wxDiscode.js
create mode 100644 jiuyi2/components/public/parse/parse.vue
create mode 100644 jiuyi2/components/public/parse/parseTemplate.vue
create mode 100644 jiuyi2/components/public/parse/style.scss
create mode 100644 jiuyi2/components/public/parse/wxParseAudio.vue
create mode 100644 jiuyi2/components/public/parse/wxParseImg.vue
create mode 100644 jiuyi2/components/public/parse/wxParseVideo.vue
create mode 100644 jiuyi2/pages/index/seedLog.vue
diff --git a/jiuyi2/api/mine.js b/jiuyi2/api/mine.js
index aa487d3f..e0b9c5af 100644
--- a/jiuyi2/api/mine.js
+++ b/jiuyi2/api/mine.js
@@ -299,12 +299,12 @@ const mine = {
},
/**
- * 账号解冻
+ * 我的账单列表
* @param {Object} param
*/
getWalletBillList(param) {
return util.request({
- url: '/user/walletTransaction/list',
+ url: '/user/walletTransaction/app/list',
data: param.data,
query: param.query,
method: 'GET',
diff --git a/jiuyi2/common/js/config.js b/jiuyi2/common/js/config.js
index 8443338c..d9448b2f 100644
--- a/jiuyi2/common/js/config.js
+++ b/jiuyi2/common/js/config.js
@@ -6,7 +6,7 @@ const config = {
// host: 'h5api',
// #endif
// #ifndef H5
- host: 'http://91f.xyz:8080',
+ host: 'http://91f.xyz:8080',
// #endif
// 支付方式配置
payType: {
diff --git a/jiuyi2/common/js/parseHtml.js b/jiuyi2/common/js/parseHtml.js
new file mode 100644
index 00000000..0d28a40c
--- /dev/null
+++ b/jiuyi2/common/js/parseHtml.js
@@ -0,0 +1,352 @@
+/*
+ * HTML5 Parser By Sam Blowes
+ *
+ * Designed for HTML5 documents
+ *
+ * Original code by John Resig (ejohn.org)
+ * http://ejohn.org/blog/pure-javascript-html-parser/
+ * Original code by Erik Arvidsson, Mozilla Public License
+ * http://erik.eae.net/simplehtmlparser/simplehtmlparser.js
+ *
+ * ----------------------------------------------------------------------------
+ * License
+ * ----------------------------------------------------------------------------
+ *
+ * This code is triple licensed using Apache Software License 2.0,
+ * Mozilla Public License or GNU Public License
+ *
+ * ////////////////////////////////////////////////////////////////////////////
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
+ * use this file except in compliance with the License. You may obtain a copy
+ * of the License at http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * ////////////////////////////////////////////////////////////////////////////
+ *
+ * The contents of this file are subject to the Mozilla Public License
+ * Version 1.1 (the "License"); you may not use this file except in
+ * compliance with the License. You may obtain a copy of the License at
+ * http://www.mozilla.org/MPL/
+ *
+ * Software distributed under the License is distributed on an "AS IS"
+ * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
+ * License for the specific language governing rights and limitations
+ * under the License.
+ *
+ * The Original Code is Simple HTML Parser.
+ *
+ * The Initial Developer of the Original Code is Erik Arvidsson.
+ * Portions created by Erik Arvidssson are Copyright (C) 2004. All Rights
+ * Reserved.
+ *
+ * ////////////////////////////////////////////////////////////////////////////
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ *
+ * ----------------------------------------------------------------------------
+ * Usage
+ * ----------------------------------------------------------------------------
+ *
+ * // Use like so:
+ * HTMLParser(htmlString, {
+ * start: function(tag, attrs, unary) {},
+ * end: function(tag) {},
+ * chars: function(text) {},
+ * comment: function(text) {}
+ * });
+ *
+ * // or to get an XML string:
+ * HTMLtoXML(htmlString);
+ *
+ * // or to get an XML DOM Document
+ * HTMLtoDOM(htmlString);
+ *
+ * // or to inject into an existing document/DOM node
+ * HTMLtoDOM(htmlString, document);
+ * HTMLtoDOM(htmlString, document.body);
+ *
+ */
+// Regular Expressions for parsing tags and attributes
+var startTag = /^<([-A-Za-z0-9_]+)((?:\s+[a-zA-Z_:][-a-zA-Z0-9_:.]*(?:\s*=\s*(?:(?:"[^"]*")|(?:'[^']*')|[^>\s]+))?)*)\s*(\/?)>/;
+var endTag = /^<\/([-A-Za-z0-9_]+)[^>]*>/;
+var attr = /([a-zA-Z_:][-a-zA-Z0-9_:.]*)(?:\s*=\s*(?:(?:"((?:\\.|[^"])*)")|(?:'((?:\\.|[^'])*)')|([^>\s]+)))?/g; // Empty Elements - HTML 5
+
+var empty = makeMap('area,base,basefont,br,col,frame,hr,img,input,link,meta,param,embed,command,keygen,source,track,wbr'); // Block Elements - HTML 5
+// fixed by xxx 将 ins 标签从块级名单中移除
+
+var block = makeMap('a,address,article,applet,aside,audio,blockquote,button,canvas,center,dd,del,dir,div,dl,dt,fieldset,figcaption,figure,footer,form,frameset,h1,h2,h3,h4,h5,h6,header,hgroup,hr,iframe,isindex,li,map,menu,noframes,noscript,object,ol,output,p,pre,section,script,table,tbody,td,tfoot,th,thead,tr,ul,video'); // Inline Elements - HTML 5
+
+var inline = makeMap('abbr,acronym,applet,b,basefont,bdo,big,br,button,cite,code,del,dfn,em,font,i,iframe,img,input,ins,kbd,label,map,object,q,s,samp,script,select,small,span,strike,strong,sub,sup,textarea,tt,u,var'); // Elements that you can, intentionally, leave open
+// (and which close themselves)
+
+var closeSelf = makeMap('colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr'); // Attributes that have their values filled in disabled="disabled"
+
+var fillAttrs = makeMap('checked,compact,declare,defer,disabled,ismap,multiple,nohref,noresize,noshade,nowrap,readonly,selected'); // Special Elements (can contain anything)
+
+var special = makeMap('script,style');
+function HTMLParser(html, handler) {
+ var index;
+ var chars;
+ var match;
+ var stack = [];
+ var last = html;
+
+ stack.last = function () {
+ return this[this.length - 1];
+ };
+
+ while (html) {
+ chars = true; // Make sure we're not in a script or style element
+
+ if (!stack.last() || !special[stack.last()]) {
+ // Comment
+ if (html.indexOf('');
+
+ if (index >= 0) {
+ if (handler.comment) {
+ handler.comment(html.substring(4, index));
+ }
+
+ html = html.substring(index + 3);
+ chars = false;
+ } // end tag
+
+ } else if (html.indexOf('') == 0) {
+ match = html.match(endTag);
+
+ if (match) {
+ html = html.substring(match[0].length);
+ match[0].replace(endTag, parseEndTag);
+ chars = false;
+ } // start tag
+
+ } else if (html.indexOf('<') == 0) {
+ match = html.match(startTag);
+
+ if (match) {
+ html = html.substring(match[0].length);
+ match[0].replace(startTag, parseStartTag);
+ chars = false;
+ }
+ }
+
+ if (chars) {
+ index = html.indexOf('<');
+ var text = index < 0 ? html : html.substring(0, index);
+ html = index < 0 ? '' : html.substring(index);
+
+ if (handler.chars) {
+ handler.chars(text);
+ }
+ }
+ } else {
+ html = html.replace(new RegExp('([\\s\\S]*?)<\/' + stack.last() + '[^>]*>'), function (all, text) {
+ text = text.replace(/|/g, '$1$2');
+
+ if (handler.chars) {
+ handler.chars(text);
+ }
+
+ return '';
+ });
+ parseEndTag('', stack.last());
+ }
+
+ if (html == last) {
+ throw 'Parse Error: ' + html;
+ }
+
+ last = html;
+ } // Clean up any remaining tags
+
+
+ parseEndTag();
+
+ function parseStartTag(tag, tagName, rest, unary) {
+ tagName = tagName.toLowerCase();
+
+ if (block[tagName]) {
+ while (stack.last() && inline[stack.last()]) {
+ parseEndTag('', stack.last());
+ }
+ }
+
+ if (closeSelf[tagName] && stack.last() == tagName) {
+ parseEndTag('', tagName);
+ }
+
+ unary = empty[tagName] || !!unary;
+
+ if (!unary) {
+ stack.push(tagName);
+ }
+
+ if (handler.start) {
+ var attrs = [];
+ rest.replace(attr, function (match, name) {
+ var value = arguments[2] ? arguments[2] : arguments[3] ? arguments[3] : arguments[4] ? arguments[4] : fillAttrs[name] ? name : '';
+ attrs.push({
+ name: name,
+ value: value,
+ escaped: value.replace(/(^|[^\\])"/g, '$1\\\"') // "
+
+ });
+ });
+
+ if (handler.start) {
+ handler.start(tagName, attrs, unary);
+ }
+ }
+ }
+
+ function parseEndTag(tag, tagName) {
+ // If no tag name is provided, clean shop
+ if (!tagName) {
+ var pos = 0;
+ } // Find the closest opened tag of the same type
+ else {
+ for (var pos = stack.length - 1; pos >= 0; pos--) {
+ if (stack[pos] == tagName) {
+ break;
+ }
+ }
+ }
+
+ if (pos >= 0) {
+ // Close all the open elements, up the stack
+ for (var i = stack.length - 1; i >= pos; i--) {
+ if (handler.end) {
+ handler.end(stack[i]);
+ }
+ } // Remove the open elements from the stack
+
+
+ stack.length = pos;
+ }
+ }
+}
+
+function makeMap(str) {
+ var obj = {};
+ var items = str.split(',');
+
+ for (var i = 0; i < items.length; i++) {
+ obj[items[i]] = true;
+ }
+
+ return obj;
+}
+
+function removeDOCTYPE(html) {
+ return html.replace(/<\?xml.*\?>\n/, '').replace(/\n/, '').replace(/\n/, '');
+}
+
+function parseAttrs(attrs) {
+ return attrs.reduce(function (pre, attr) {
+ var value = attr.value;
+ var name = attr.name;
+
+ if (pre[name]) {
+ pre[name] = pre[name] + " " + value;
+ } else {
+ pre[name] = value;
+ }
+
+ return pre;
+ }, {});
+}
+
+function parseHtml(html) {
+ html = removeDOCTYPE(html);
+ var stacks = [];
+ var results = {
+ node: 'root',
+ children: []
+ };
+ HTMLParser(html, {
+ start: function start(tag, attrs, unary) {
+ var node = {
+ name: tag
+ };
+
+ if (attrs.length !== 0) {
+ node.attrs = parseAttrs(attrs);
+ }
+
+ if (unary) {
+ var parent = stacks[0] || results;
+
+ if (!parent.children) {
+ parent.children = [];
+ }
+
+ parent.children.push(node);
+ } else {
+ stacks.unshift(node);
+ }
+ },
+ end: function end(tag) {
+ var node = stacks.shift();
+ if (node.name !== tag) console.error('invalid state: mismatch end tag');
+
+ if (stacks.length === 0) {
+ results.children.push(node);
+ } else {
+ var parent = stacks[0];
+
+ if (!parent.children) {
+ parent.children = [];
+ }
+
+ parent.children.push(node);
+ }
+ },
+ chars: function chars(text) {
+ var node = {
+ type: 'text',
+ text: text
+ };
+
+ if (stacks.length === 0) {
+ results.children.push(node);
+ } else {
+ var parent = stacks[0];
+
+ if (!parent.children) {
+ parent.children = [];
+ }
+
+ parent.children.push(node);
+ }
+ },
+ comment: function comment(text) {
+ var node = {
+ node: 'comment',
+ text: text
+ };
+ var parent = stacks[0];
+
+ if (!parent.children) {
+ parent.children = [];
+ }
+
+ parent.children.push(node);
+ }
+ });
+ return results.children;
+}
+
+export default parseHtml;
\ No newline at end of file
diff --git a/jiuyi2/common/js/util.js b/jiuyi2/common/js/util.js
index fe31a50b..36f0c9ca 100644
--- a/jiuyi2/common/js/util.js
+++ b/jiuyi2/common/js/util.js
@@ -616,10 +616,17 @@ const util = {
mode: 'img',
success(res) {
if (res.code === 200) {
- const result = res.data.url;
- obj.success && obj.success({
- value: result,
- });
+ uni.getImageInfo({
+ src: item.path,
+ success: imageInfo => {
+ const result = res.data.url;
+ obj.success && obj.success({
+ value: result,
+ width: imageInfo.width,
+ height: imageInfo.height,
+ });
+ },
+ })
return;
}
util.alert(rs.msg);
diff --git a/jiuyi2/components/public/editor/editor.vue b/jiuyi2/components/public/editor/editor.vue
index 47a9317f..fbaca452 100644
--- a/jiuyi2/components/public/editor/editor.vue
+++ b/jiuyi2/components/public/editor/editor.vue
@@ -35,10 +35,14 @@
})
// 颜色板键值
const colorKey = ref('forecolor')
+ // 富文本编辑器宽度
+ const editorWidth = ref(0)
onMounted(() => {
// 创建编辑器上下文对象
onEditorReady()
+ // 获取编辑器节点信息
+ getEditorInfo()
})
// 创建编辑器上下文对象
@@ -48,6 +52,14 @@
}).exec()
}
+ // 获取编辑器节点信息 用来处理图片
+ function getEditorInfo() {
+ const query = uni.createSelectorQuery().in(proxy);
+ query.select("#editor").boundingClientRect((data) => {
+ editorWidth.value = data.width
+ }).exec();
+ }
+
// 初始化编辑器上下文对象
function init(html) {
editorCtx.value.setContents({
@@ -55,15 +67,6 @@
})
}
- // 获取内容
- function getEditorContents() {
- editorCtx.value.getContents({
- success: rs => {
- return rs
- }
- })
- }
-
// 撤销
function undo() {
editorCtx.value.undo()
@@ -85,7 +88,7 @@
} = event.target.dataset
if (!name) return
editorCtx.value.format(name, value)
- }
+ }
/**
* 编辑器状态被变化
@@ -118,6 +121,8 @@
editorCtx.value.insertImage({
src: rs.value,
alt: '图像',
+ width: Math.min(rs.width, editorWidth.value),
+ extClass: 'editorImg',
})
}
})
@@ -186,7 +191,6 @@
defineExpose({
init,
- getEditorContents,
})
@@ -196,7 +200,7 @@