|
|
|
|
@ -3,7 +3,7 @@
|
|
|
|
|
<div style="height: 10px;"></div>
|
|
|
|
|
|
|
|
|
|
<div class="div_dom">
|
|
|
|
|
<view class="th-title">
|
|
|
|
|
<view class="th-title" style="font-weight: bold;">
|
|
|
|
|
{{ jobDetail.store.aliasName }}
|
|
|
|
|
</view>
|
|
|
|
|
<view class="td-content" v-html="storeInfoHtml"></view>
|
|
|
|
|
@ -47,7 +47,11 @@
|
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
jobDetail: {},
|
|
|
|
|
jobDetail: {
|
|
|
|
|
store: {
|
|
|
|
|
aliasName:''
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
swiperArray: [],
|
|
|
|
|
muted: true,
|
|
|
|
|
isFullscreen: false,
|
|
|
|
|
@ -102,7 +106,7 @@ export default {
|
|
|
|
|
html = html.replace(/\[([^\]]+)\]\(([^)]+)\)/g, '<a href="$2">$1</a>');
|
|
|
|
|
html = html.replace(/^---+$/gm, '<hr/>');
|
|
|
|
|
html = html.replace(/^\>\s+(.+)$/gm, '<blockquote>$1</blockquote>');
|
|
|
|
|
html = html.replace(/\n{2,}/g, '</p><p>');
|
|
|
|
|
html = html.replace(/\n{2,}/g, '</p><p style="margin-top:1em;">');
|
|
|
|
|
html = html.replace(/\n/g, '<br/>');
|
|
|
|
|
html = '<p>' + html + '</p>';
|
|
|
|
|
html = html.replace(/<p>\s*<\/p>/g, '');
|
|
|
|
|
|