Z vor 1 Jahr
Ursprung
Commit
3c5469008b
4 geänderte Dateien mit 48 neuen und 43 gelöschten Zeilen
  1. 22 0
      api/saleManage/saleorder/index.js
  2. 16 41
      pages.json
  3. 1 0
      pages/doc/index.vue
  4. 9 2
      pages/index/index.vue

+ 22 - 0
api/saleManage/saleorder/index.js

@@ -97,3 +97,25 @@ export async function projectsPageAPI(data) {
     }
     return Promise.reject(new Error(res.message));
 }
+/**
+ * 查询收货单列表
+ * @data data
+ */
+export async function saleordersendrecord(data) {
+    const res = await get(Vue.prototype.apiUrl+'/eom/saleordersendrecord/page', data);
+    if (res.code == 0) {
+        return res.data;
+    }
+    return Promise.reject(new Error(res.message));
+}
+/**
+ * 查询收货单列表
+ * @data data
+ */
+export async function saleordersendrecordInfo(id) {
+    const res = await get(Vue.prototype.apiUrl+`/eom/saleordersendrecord/getById/${id}`, {});
+    if (res.code == 0) {
+        return res.data;
+    }
+    return Promise.reject(new Error(res.message));
+}

+ 16 - 41
pages.json

@@ -1839,6 +1839,22 @@
 				"navigationBarTextStyle": "white"
 			}
 		},
+		{
+			"path": "pages/invoiceConfirm/index",
+			"style": {
+				"navigationBarTitleText": "发货确认单",
+				"navigationStyle": "custom",
+				"navigationBarTextStyle": "white"
+			}
+		},
+		{
+			"path": "pages/invoiceConfirm/invoice",
+			"style": {
+				"navigationBarTitleText": "发货单",
+				"navigationStyle": "custom",
+				"navigationBarTextStyle": "white"
+			}
+		},
 		{
 			"path": "pages/dispatchManage/taskWork/index",
 			"style": {
@@ -1935,22 +1951,6 @@
 				"navigationBarTextStyle": "white"
 			}
 		},
-		{
-			"path": "pages/saleManage/businessOpportunity/followList",
-			"style": {
-				"navigationBarTitleText": "商机跟进记录",
-				"navigationStyle": "custom",
-				"navigationBarTextStyle": "white"
-			}
-		},
-		{
-			"path": "pages/saleManage/contact/followList",
-			"style": {
-				"navigationBarTitleText": "客户跟进记录",
-				"navigationStyle": "custom",
-				"navigationBarTextStyle": "white"
-			}
-		},
 		{
 			"path": "pages/saleManage/components/selectContact",
 			"style": {
@@ -2028,32 +2028,7 @@
 				"navigationStyle": "custom",
 				"navigationBarTextStyle": "white"
 			}
-		},
-		{
-			"path": "pages/saleManage/components/selectProject",
-			"style": {
-				"navigationBarTitleText": "选择项目",
-				"navigationStyle": "custom",
-				"navigationBarTextStyle": "white"
-			}
-		},
-		{
-			"path": "pages/doc/selectDoc",
-			"style": {
-				"navigationBarTitleText": "关联文档库",
-				"navigationStyle": "custom",
-				"navigationBarTextStyle": "white"
-			}
-		},
-		{
-			"path": "pages/doc/docList",
-			"style": {
-				"navigationBarTitleText": "文档管理",
-				"navigationStyle": "custom",
-				"navigationBarTextStyle": "white"
-			}
 		}
-		
 	],
 	"tabBar": {
 		"color": "#908f8f",

+ 1 - 0
pages/doc/index.vue

@@ -58,6 +58,7 @@
 		},
 		methods: {
 			handleUpload() {
+				console.log('1111111')
 				uni.navigateTo({
 					url: '/pages/doc/docList?fileId=' + JSON.stringify(this.selectVal)
 				})

+ 9 - 2
pages/index/index.vue

@@ -90,7 +90,7 @@
 				</view>
 			</view>
 		</view>
-		
+
 		<!--    <view>
       <CellTip title="生产类"></CellTip>
 
@@ -380,6 +380,13 @@
 						icon: 'icon-gongdanguanli',
 						badge: 0
 						//"num": 34
+					},
+					{
+						name: '发货确认单',
+						url: `/pages/invoiceConfirm/index`,
+						icon: 'icon-gongdanguanli',
+						badge: 0
+						//"num": 34
 					}
 				],
 				internalManagementList: [
@@ -448,7 +455,7 @@
 								item.name=item.name.replace('管理员','')
 							})
 						}
-						
+
 					})
 				}
 			},