Commit d75ccac1 authored by yaya's avatar yaya

feat:bugfix

parent 5b661ece
...@@ -227,7 +227,7 @@ export default { ...@@ -227,7 +227,7 @@ export default {
components: { CheckLargeImageDialog, SelectImageDialog, VuePictureCut, VuePictureCutMask, VuePictureCutMenu }, components: { CheckLargeImageDialog, SelectImageDialog, VuePictureCut, VuePictureCutMask, VuePictureCutMenu },
filters: { filters: {
trimHtml(html_str) { trimHtml(html_str) {
var text = html_str.replace(/<[^<>]+>/g, '') var text = html_str && html_str.replace(/<[^<>]+>/g, '') || ''
// console.log(text); // console.log(text);
return text return text
} }
...@@ -605,11 +605,9 @@ export default { ...@@ -605,11 +605,9 @@ export default {
.op-container { .op-container {
text-align: right; text-align: right;
background: white;
} }
.fixed { .fixed {
position: fixed; position: fixed;
background: white;
top: 20px; top: 20px;
left: 0; left: 0;
right: 20px; right: 20px;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment