#I51E4A 修复无序列表序号显示问题
This commit is contained in:
@@ -23,6 +23,3 @@
|
|||||||
.wang-editor-body pre code {
|
.wang-editor-body pre code {
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
.wang-editor-body ul, ol {
|
|
||||||
list-style: decimal;
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -18,7 +18,11 @@
|
|||||||
import pageApi from '../../common/api/page'
|
import pageApi from '../../common/api/page'
|
||||||
import PageTree from './PageTree'
|
import PageTree from './PageTree'
|
||||||
import Vant from 'vant';
|
import Vant from 'vant';
|
||||||
import 'vant/lib/index.css';
|
import 'vant/lib/icon/index.css';
|
||||||
|
import 'vant/lib/popup/index.css';
|
||||||
|
import 'vant/lib/cell/index.css';
|
||||||
|
import 'vant/lib/nav-bar/index.css';
|
||||||
|
import 'vant/lib/collapse-item/index.css';
|
||||||
Vue.use(Vant);
|
Vue.use(Vant);
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
|
|||||||
@@ -142,6 +142,7 @@
|
|||||||
<div style="text-align: center;">
|
<div style="text-align: center;">
|
||||||
<div class="mobile-qr" ref="qrCodeDiv"></div>
|
<div class="mobile-qr" ref="qrCodeDiv"></div>
|
||||||
<div>使用微信或手机浏览器扫一扫查看</div>
|
<div>使用微信或手机浏览器扫一扫查看</div>
|
||||||
|
<div>或 <a target="_blank" :href="qrCodeUrl">直接访问</a></div>
|
||||||
</div>
|
</div>
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
<!--点赞人员弹窗-->
|
<!--点赞人员弹窗-->
|
||||||
@@ -223,6 +224,7 @@ var page = {
|
|||||||
zanUserList: [],
|
zanUserList: [],
|
||||||
parentPath: {},
|
parentPath: {},
|
||||||
// 手机扫码
|
// 手机扫码
|
||||||
|
qrCodeUrl: '',
|
||||||
mobileScanDialogVisible: false,
|
mobileScanDialogVisible: false,
|
||||||
// 评论相关
|
// 评论相关
|
||||||
commentTextInput: "",
|
commentTextInput: "",
|
||||||
@@ -305,9 +307,10 @@ var page = {
|
|||||||
this.mobileScanDialogVisible = true;
|
this.mobileScanDialogVisible = true;
|
||||||
let hostPath = window.location.href.split("#")[0];
|
let hostPath = window.location.href.split("#")[0];
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
|
this.qrCodeUrl = hostPath + routeUrl.href;
|
||||||
this.$refs.qrCodeDiv.innerHTML = "";
|
this.$refs.qrCodeDiv.innerHTML = "";
|
||||||
new QRCode(this.$refs.qrCodeDiv, {
|
new QRCode(this.$refs.qrCodeDiv, {
|
||||||
text: hostPath + routeUrl.href,
|
text: this.qrCodeUrl,
|
||||||
width: 250,
|
width: 250,
|
||||||
height: 250,
|
height: 250,
|
||||||
colorDark: "#333333", //二维码颜色
|
colorDark: "#333333", //二维码颜色
|
||||||
|
|||||||
Reference in New Issue
Block a user