Преглед на файлове

Merge branch 'http_mock' into qz_daily_0.0.5

qinzhipeng_v@didiglobal.com преди 4 години
родител
ревизия
6e5061ecd6
променени са 2 файла, в които са добавени 5 реда и са изтрити 2 реда
  1. 1 1
      src/views/projectManage/bugList/details/index.vue
  2. 4 1
      src/views/reportManagement/Testing/TestingPreview.vue

+ 1 - 1
src/views/projectManage/bugList/details/index.vue

@@ -795,7 +795,7 @@ export default {
     },
     handleClick(tab) {
       if (tab.label === '变更记录') {
-        operationLogBug(this.id).then(res => {
+        operationLogBug(this.bug.id).then(res => {
           this.changeRecord = res.data
         })
       }

+ 4 - 1
src/views/reportManagement/Testing/TestingPreview.vue

@@ -91,7 +91,7 @@
         <el-table-column prop="referredClientTypeName" label="跟版客户端" min-width="90" />
       </el-table>
 
-      <div v-html="fromCreateData.content" />
+      <div ref="rich" v-html="fromCreateData.content" />
 
     </div>
   </div>
@@ -231,3 +231,6 @@ export default {
     margin-bottom: 20px;
   }
 </style>
+<style scoped>
+  .parent-style div >>> table {width: 100% !important;}
+</style>