diff --git a/src/views/device/faultReport/index.vue b/src/views/device/faultReport/index.vue
index e73eb46..ad5f60e 100644
--- a/src/views/device/faultReport/index.vue
+++ b/src/views/device/faultReport/index.vue
@@ -196,6 +196,16 @@
>
+
+
-
-
-
+
+
+
+
@@ -714,12 +717,14 @@
:label-style="LSP"
>
-
+
+
+
+
@@ -865,6 +870,8 @@
{{
diff --git a/src/views/device/outsourceWorkOrder/index.vue b/src/views/device/outsourceWorkOrder/index.vue
index a4f0d4a..839aedf 100644
--- a/src/views/device/outsourceWorkOrder/index.vue
+++ b/src/views/device/outsourceWorkOrder/index.vue
@@ -168,6 +168,12 @@
width="180"
fixed
/>
+
+
+ 完成
+ 未完成
+
+
-
-
- 完成
- 未完成
-
-
@@ -262,6 +264,7 @@
align="center"
class-name="small-padding fixed-width"
width="150"
+ fixed="right"
>
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
-
+
+
+
+
@@ -1251,7 +1256,7 @@
{
this.form = response.data;
+
//转成list
if (response.data.faultType != null) {
this.form.faultType = response.data.faultType.split(",");
}
+
//遍历response.data.beforeRepairFiles
if (response.data.beforeRepairFiles != null) {
var beforeNewFiles = [];
@@ -1965,8 +1974,11 @@ export default {
urlBeforeLists.push(item.url);
});
this.urlBeforeLists = urlBeforeLists;
+ }else{
+ this.urlBeforeLists = null;
}
+
//遍历response.data.afterRepairFiles
if (response.data.afterRepairFiles != null) {
var afterNewFiles = [];
@@ -1983,6 +1995,8 @@ export default {
urlAfterLists.push(item.url);
});
this.urlAfterLists = urlAfterLists;
+ }else{
+ this.urlAfterLists = null;
}
//重置
@@ -2040,7 +2054,6 @@ export default {
});
this.detailList = standards;
- console.log("111111111111", this.detailList);
}
if (this.form.workStatus == "1") {
this.queryWrite = true;
@@ -2279,6 +2292,11 @@ export default {
height: 400px;
overflow-y: auto;
}
+
+.view_picture_body {
+ height: 300px;
+ overflow-y: auto;
+}
diff --git a/src/views/device/repairOrder/selectSparePartsLedger.vue b/src/views/device/repairOrder/selectSparePartsLedger.vue
index f149e40..46589d7 100644
--- a/src/views/device/repairOrder/selectSparePartsLedger.vue
+++ b/src/views/device/repairOrder/selectSparePartsLedger.vue
@@ -331,8 +331,6 @@ export default {
/** 提交按钮 */
submitForm() {
- console.log("data:", this.sparePartsLedgerList);
- console.log("选择的数据", this.$refs.multipleTable.selection);
this.$refs.multipleTable.selection.forEach((item) => {
if (item.spareQuantity > item.amount - item.storageAmount) {
Message.warning(
diff --git a/src/views/device/repairOrderReport/index.vue b/src/views/device/repairOrderReport/index.vue
index 47948bc..35ecbbf 100644
--- a/src/views/device/repairOrderReport/index.vue
+++ b/src/views/device/repairOrderReport/index.vue
@@ -204,6 +204,19 @@
}}
+
+
+
+
+
-
- {{ parseTime(scope.row.workCostTime) }}
-
-
+ >
-
-
-
-
-
@@ -397,15 +393,17 @@
-
+
+
+
+
@@ -482,16 +480,18 @@
-
+
+
+
+
@@ -613,6 +613,18 @@ export default {
"text-align": "center",
width: "200px",
},
+ //表格样式
+ CS_IMG: {
+ "text-align": "center",
+ },
+ LS_BEFORE_IMG: {
+ "text-align": "center",
+ width: "190px",
+ },
+ LS_AFTER_IMG: {
+ "text-align": "center",
+ width: "280px",
+ },
//检查项表格数据
detailList: [],
//维修前照片
@@ -828,6 +840,8 @@ export default {
urlBeforeLists.push(item.url);
});
this.urlBeforeLists = urlBeforeLists;
+ }else{
+ this.urlBeforeLists = null;
}
//遍历response.data.afterRepairFiles
@@ -846,6 +860,8 @@ export default {
urlAfterLists.push(item.url);
});
this.urlAfterLists = urlAfterLists;
+ }else{
+ this.urlAfterList = null;
}
//重置
@@ -891,7 +907,6 @@ export default {
});
this.detailList = standards;
- console.log("111111111111", this.detailList);
}
//展示
@@ -972,5 +987,10 @@ export default {
height: 400px;
overflow-y: auto;
}
+
+.view_picture_body {
+ height: 300px;
+ overflow-y: auto;
+}