liyongli 2 년 전
부모
커밋
2240b5a746
5개의 변경된 파일16개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 0
      src/components/editor.vue
  2. 5 0
      src/view/allMedia/H5Mall.vue
  3. 6 1
      src/view/allMedia/proofread.vue
  4. 1 1
      src/view/allMedia/reporting.vue
  5. 1 1
      src/view/onlineText.vue

+ 3 - 0
src/components/editor.vue

@@ -22,6 +22,9 @@ export default {
 </script>
 
 <style scoped>
+.selectSpan {
+  border-bottom: 3px solid #fff;
+}
 .text {
   height: calc(100vh - 186px);
   overflow-y: auto;

+ 5 - 0
src/view/allMedia/H5Mall.vue

@@ -15,6 +15,11 @@
     <el-dialog v-model="show" title="已创建页面">
       <el-table :data="localList.list">
         <el-table-column property="title" label="页面名称" />
+        <el-table-column label="封面图" width="100px">
+          <template #default="scope">
+            <img :src="scope.row.url" alt="">
+          </template>
+        </el-table-column>
         <el-table-column label="状态" width="100px">
           <template #default="scope">
             {{ h5Status[scope.row.h5Status] }}

+ 6 - 1
src/view/allMedia/proofread.vue

@@ -150,10 +150,11 @@ function getServer() {
   }).then(res => {
     const list = res.checklist || [];
     let rawTextF = res.rawText || '';
+    console.log(list);
     for (let i = 0; i < list.length; i++) {
       const v = list[i];
       const r = new RegExp(`data-umpos="${v.colorPosition}"`, 'g');
-      let rText = `data-umpos="${v.colorPosition}" style="border-color: rgb(${
+      let rText = `data-umpos="${v.colorPosition}" style="border-bottom: 3px solid rgb(${
         errType[v.um_error_level]
       });`;
       if (i == 0) {
@@ -361,4 +362,8 @@ function getEle(colorPosition) {
   color: #fff;
   border-color: #2974ff !important;
 }
+
+.el-poper .selectSpan {
+  border-bottom: 3px solid #fff;
+}
 </style>

+ 1 - 1
src/view/allMedia/reporting.vue

@@ -48,7 +48,7 @@ import analysisList from './components/reporting_list.vue';
 
 const analysisListEle = ref();
 const searchText = ref('');
-const date = ref([]);
+const date = ref([dayjs().format('YYYY-MM-DD HH:mm:ss'), dayjs().format('YYYY-MM-DD HH:mm:ss')]);
 
 const pageSize = 10;
 let page = 1;

+ 1 - 1
src/view/onlineText.vue

@@ -598,7 +598,7 @@ function getServer() {
           const ele = document.querySelector(
             "[data-umpos='" + item.colorPosition + "']"
           );
-          ele.style.borderColor = 'rgb(' + errType[item.um_error_level] + ')';
+          ele.style.borderBottom = '3px solid rgb(' + errType[item.um_error_level] + ')';
           if (!tabs[item.um_error_level])
             tabs[item.um_error_level] = {
               num: 0,