|
@@ -127,13 +127,13 @@
|
|
|
|
|
|
<div class="VueDragResize-box" v-if="is_VueDragResize">
|
|
|
<!-- 弹窗 -->
|
|
|
- <VueDragResize :style="`z-index:${zInfex_0};`"
|
|
|
- dragHandle=".VueDragResize-title-box"
|
|
|
- :isActive="true" :isDraggable="true"
|
|
|
+ <VueDragResize :style="`z-index:${zInfex_0};`"
|
|
|
+ dragHandle=".VueDragResize-title-box"
|
|
|
+ :isActive="true" :isDraggable="true"
|
|
|
:parentW="parentW" :parentH="parentH" :parentLimitation="true" :preventActiveBehavior="true"
|
|
|
- :w="width" :h="height"
|
|
|
- :minw="minw" :minh="minh"
|
|
|
- :x='left' :y='top' @dragstop="onDragstop"
|
|
|
+ :w="width" :h="height"
|
|
|
+ :minw="minw" :minh="minh"
|
|
|
+ :x='left' :y='top' @dragstop="onDragstop"
|
|
|
@resizing="resize" @dragging="resize" @deactivated="onDeactivated"
|
|
|
>
|
|
|
<div class="VueDragResize-centent-box">
|
|
@@ -167,12 +167,12 @@
|
|
|
<div class="items-content" v-html="items.content" :style="`color: ${items.status == 1?'#000':'#ff0000'};`"></div>
|
|
|
</div>
|
|
|
</div>
|
|
|
-
|
|
|
+
|
|
|
</div>
|
|
|
-
|
|
|
+
|
|
|
|
|
|
</div>
|
|
|
-
|
|
|
+
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -242,6 +242,7 @@ export default {
|
|
|
longAdvice: {},
|
|
|
happensAdvice: {},
|
|
|
valData: '',
|
|
|
+ ruleId: '',
|
|
|
ifFile: false,
|
|
|
treeList: [],
|
|
|
is_active: 0,
|
|
@@ -359,6 +360,7 @@ export default {
|
|
|
},
|
|
|
mounted() {
|
|
|
this.valData = this.storageGet('getData');
|
|
|
+ this.ruleId = this.storageGet('getDataRule');
|
|
|
let xqItemError = this.storageGet('xqItemError');
|
|
|
if(xqItemError){
|
|
|
this.xqItemError = JSON.parse(xqItemError);
|
|
@@ -403,11 +405,11 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
onDeactivated(e){
|
|
|
-
|
|
|
+
|
|
|
},
|
|
|
onDragstop(newRect) {
|
|
|
-
|
|
|
-
|
|
|
+
|
|
|
+
|
|
|
},
|
|
|
|
|
|
|
|
@@ -430,6 +432,7 @@ export default {
|
|
|
getCaseQualityResults() {
|
|
|
const params = {
|
|
|
id: Number(this.valData),
|
|
|
+ ruleId: Number(this.ruleId)
|
|
|
};
|
|
|
if (this.type_v == 'v2') {
|
|
|
// (事中)
|
|
@@ -948,9 +951,9 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
}
|
|
|
}
|
|
|
}
|