diff --git a/components.d.json b/components.d.json
index a49cf09..a38eedd 100644
--- a/components.d.json
+++ b/components.d.json
@@ -112,6 +112,21 @@
"size": { "type": "String" }
}
},
+ "t-cell": {
+ "description": "图标",
+ "attributes": {
+ "custom-style": { "type": "String" },
+ "description": { "type": "String" },
+ "image": { "type": "String" },
+ "left-icon": { "type": "String" },
+ "note": { "type": "String" },
+ "right-icon": { "type": "String" },
+ "title": { "type": "String" },
+ "arrow": { "type": "Boolean" },
+ "bordered": { "type": "Boolean" },
+ "hover": { "type": "Boolean" }
+ }
+ },
"search-input": {
"description": "搜索input",
"attributes": {
diff --git a/miniprogram/app.json b/miniprogram/app.json
index 65cdde3..73e844e 100644
--- a/miniprogram/app.json
+++ b/miniprogram/app.json
@@ -16,11 +16,13 @@
"pages/purchase/buyOrder/buyOrder",
"pages/purchase/buyOrderDetail/buyOrderDetail",
"pages/purchase/buyInOrder/buyInOrder",
+ "pages/purchase/buyInOrderDetail/buyInOrderDetail",
+ "pages/purchase/backOrder/backOrder",
+ "pages/purchase/backOrderDetail/backOrderDetail",
"pages/finance/outcome/outcome",
"pages/finance/income/income",
"pages/finance/giro/giro",
"pages/finance/flow/flow",
- "pages/purchase/backOrder/backOrder",
"pages/base/supplier/supplier",
"pages/base/customer/customer",
"pages/base/account/account",
@@ -31,13 +33,15 @@
"pages/logs/loginLog/loginLog",
"pages/logs/operateLog/operateLog",
"pages/manage/staff/staff",
- "pages/other/transfer/transfer",
"pages/other/goods/goods",
"pages/other/goodsDetail/goodsDetail",
"pages/other/batch/batch",
"pages/other/batchDetail/batchDetail",
"pages/base/viewAttachment/viewAttachment",
- "pages/other/outbound/outbound"
+ "pages/other/outbound/outbound",
+ "pages/other/outboundDetail/outboundDetail",
+ "pages/other/transfer/transfer",
+ "pages/other/transferDetail/transferDetail"
],
"window": {
"navigationBarTextStyle": "black",
diff --git a/miniprogram/pages/orders/ordersList/orderDetail/orderDetail.wxml b/miniprogram/pages/orders/ordersList/orderDetail/orderDetail.wxml
index 6029352..3cd7134 100644
--- a/miniprogram/pages/orders/ordersList/orderDetail/orderDetail.wxml
+++ b/miniprogram/pages/orders/ordersList/orderDetail/orderDetail.wxml
@@ -20,7 +20,9 @@
bind:tap="onPreview2" />
+ custom-style="padding-left:0;padding-right:0;position: sticky;top: 0;z-index:1"
+ bordered="{{false}}" />
+
+ custom-style="padding-left:0;padding-right:0;position: sticky;top: 0;z-index:1"
+ bordered="{{false}}" />
{{ item.goods_name }}
diff --git a/miniprogram/pages/other/batchDetail/batchDetail.wxml b/miniprogram/pages/other/batchDetail/batchDetail.wxml
index e0fb5b2..9e6303c 100644
--- a/miniprogram/pages/other/batchDetail/batchDetail.wxml
+++ b/miniprogram/pages/other/batchDetail/batchDetail.wxml
@@ -1,7 +1,7 @@
+ bind:reset="searchReset" value="{{params.rel_bill_no}}" data-key="rel_bill_no" hideMore="1">
diff --git a/miniprogram/pages/other/outbound/outbound.ts b/miniprogram/pages/other/outbound/outbound.ts
index dd13757..fb3f53a 100644
--- a/miniprogram/pages/other/outbound/outbound.ts
+++ b/miniprogram/pages/other/outbound/outbound.ts
@@ -91,7 +91,14 @@ Page({
});
});
},
-
+ onOrderDetail(e: any) {
+ const data = getDataSet(e);
+ const index = data.index;
+ const item = this.data.list[index];
+ wx.navigateTo({
+ url: `/pages/other/outboundDetail/outboundDetail?head_id=${item.head_id}`,
+ });
+ },
onOrderDel(e: any) {
const data = getDataSet(e);
const index = data.index;
diff --git a/miniprogram/pages/other/outbound/outbound.wxml b/miniprogram/pages/other/outbound/outbound.wxml
index 6c5eb6d..7303077 100644
--- a/miniprogram/pages/other/outbound/outbound.wxml
+++ b/miniprogram/pages/other/outbound/outbound.wxml
@@ -42,6 +42,8 @@