@@ -129,7 +129,7 @@ const newPurchaseListTwo = computed(() => {
const pickingList = ref([
{
title: '检验预期',
- url: '',
+ url: '/pages/expectations/index',
iconSrc: '../../static/workbench/backCreate.png',
},
])
@@ -195,7 +195,7 @@ page {
min-height: 100vh;
background-color: #f7f8fa;
-
+
// 功能区块样式
.new-purchase {
background-color: #fff;
@@ -221,7 +221,7 @@ page {
// font-size: 14px;
font-weight: bold;
letter-spacing: 1px;
- width: 100%;
+ width: 100%;
}
.title-text div:first-child {
diff --git a/src/services/expectations/expectations.js b/src/services/expectations/expectations.js
new file mode 100644
index 0000000..94cb9a7
--- /dev/null
+++ b/src/services/expectations/expectations.js
@@ -0,0 +1,29 @@
+import {
+ http
+} from '@/utils/http'
+
+// 退料任务列表接口
+export const getList = (data) => {
+ return http({
+ method: 'GET',
+ url: '/material/expectations/list',
+ data: data,
+ })
+}
+
+// 退料任务列表接口
+export const getCountExpectations = (data) => {
+ return http({
+ method: 'post',
+ url: '/material/expectations/getCountExpectations',
+ data: data,
+ })
+}
+
+export const getListDetails = (data) => {
+ return http({
+ method: 'GET',
+ url: '/material/expectations/listDetails',
+ data: data,
+ })
+}
\ No newline at end of file