diff --git a/api/equipCancel/equipCancel.js b/api/equipCancel/equipCancel.js
new file mode 100644
index 0000000..4a61f8f
--- /dev/null
+++ b/api/equipCancel/equipCancel.js
@@ -0,0 +1,16 @@
+import request from "@/utils/request";
+
+export function listEquipCancel(query) {
+ return request({
+ url: "/scrap/record/list",
+ method: "get",
+ params: query,
+ });
+}
+
+export function getEquipCancelById(id) {
+ return request({
+ url: "/scrap/record/" + id,
+ method: "get",
+ });
+}
\ No newline at end of file
diff --git a/pages/work/equipCancel/detailsEquipCancel.vue b/pages/work/equipCancel/detailsEquipCancel.vue
index 8183fd0..4423266 100644
--- a/pages/work/equipCancel/detailsEquipCancel.vue
+++ b/pages/work/equipCancel/detailsEquipCancel.vue
@@ -1,22 +1,170 @@
-
-
+
+
+
+
+
+ {{equipCanceInfo.scrappingRecordNum}}
+
+
+ {{equipCanceInfo.equipName}}
+
+
+ {{equipCanceInfo.scrappingTime}}
+
+
+ {{equipCanceInfo.creatorName}}
+
+
+ {{equipCanceInfo.handlerName}}
+
+
+ {{equipCanceInfo.scrappingReason}}
+
+
+ {{equipCanceInfo.scrappingTreatment}}
+
+
+ {{equipCanceInfo.remark}}
+
+
+
+
+
+
+
diff --git a/pages/work/equipCancel/listEquipCancel.vue b/pages/work/equipCancel/listEquipCancel.vue
index 8183fd0..fa8629e 100644
--- a/pages/work/equipCancel/listEquipCancel.vue
+++ b/pages/work/equipCancel/listEquipCancel.vue
@@ -1,22 +1,232 @@
-
-
+
+
+
+
+ {{equipName}}
+
+
+
+
+
+
+
+
+
+ 报废单号: {{item.scrappingRecordNum}}
+
+
+
+ 报废时间: {{item.scrappingTime}}
+
+
+
+ 报废原因: {{item.scrappingReason}}
+
+
+
+ 报废处理方式: {{item.scrappingTreatment}}
+
+
+
+ 报废记录人: {{item.creatorName}}
+
+
+
+ 报废处理人: {{item.handlerName}}
+
+
+
+ 备注: {{item.remark}}
+
+
+
+
+ .card-group .card-title {
+ left: 20px !important;
+ color: #333;
+ font-weight: 600;
+ display: flex;
+ justify-content: space-between;
+ width: calc(100% - 20px) !important;
+ }
+
+ .card-group .card-title .label-btn {
+ margin: 0;
+ border-top-right-radius: 0;
+ border-bottom-right-radius: 0;
+ border-top-left-radius: 16px;
+ border-bottom-left-radius: 16px;
+ letter-spacing: 1px;
+ }
+
+ .card-group .cu-list.menu-avatar>.cu-item {
+ height: 50px;
+ }
+
+ .card-group .cu-list.menu-avatar>.cu-item:after {
+ border-bottom: none !important;
+ }
+
+ .card-group .content-container {
+ padding-left: 20px;
+ color: #909399;
+ margin-bottom: 6px;
+ }
+
+ .card-group .content-container .text-content .iconfont {
+ font-size: 16px;
+ margin-right: 4px;
+ }
+
+ .card-group .content-container .text-content .text-description {
+ font-size: 14px;
+ }
+
+ .card-group .text-bottom {
+ margin: 0 20px;
+ border-top: 1px dotted #aaa;
+ padding: 6px 0;
+ }
+
+ /* 卡片的样式 end */
+
+ /* 下拉加载提示字的样式 end */
+ .loading-tip {
+ font-size: 12px;
+ color: #666;
+ padding-bottom: 12px;
+ text-align: center;
+ }
+
\ No newline at end of file