{{ $mk.getDateString(row.complete_time) }}
@@ -59,11 +72,15 @@
:params="{ data: options_user_type }" formatter='formatEnum'> -->
-
-
-
+
+
+
-
+
@@ -697,6 +714,18 @@ export default {
return false
},
+ imgDel({ row }) {
+
+ row.component_img = "";
+ this.$mk.post({
+ url: `${BASE_URL.BASE_URL}/MoldProductionOrder/v1/mold/production/order/upload`,
+ data: { id: row.id, image: "" },
+ useBigInt: true
+ }).then(a => {
+ console.log(a);
+ });
+ },
+
uploadClick({ row }) {
@@ -751,4 +780,13 @@ export default {
.oplinks2 i {
margin-left: 5px;
}
+
+.imgicons {
+ display: none;
+ ;
+}
+
+.imgbox:hover .imgicons {
+ display: block;
+}