diff --git a/api/newFun.js b/api/newFun.js
index da18d97..cf461ba 100644
--- a/api/newFun.js
+++ b/api/newFun.js
@@ -163,3 +163,15 @@ export const wuliuList = (param) => {
export const updatePrice = (param) => {
return request.post('storeKeeper/updatePrice', param)
}
+//地址智能识别
+export const analysis = (param) => {
+ return request.get('address/analysis', param)
+}
+//物流查询
+export const expressSearch = (param) => {
+ return request.get('order/expressSearch', param)
+}
+// 发货记录---店长
+export const deliveryList = (param) => {
+ return request.get('order/deliveryList', param)
+}
\ No newline at end of file
diff --git a/pages.json b/pages.json
index 95e4d22..f702626 100644
--- a/pages.json
+++ b/pages.json
@@ -1124,6 +1124,15 @@
"navigationBarTitleText": "物流查询"
}
},
+ {
+ "path": "LogisticsDetails",
+ "style": {
+ // "enablePullDownRefresh": true,
+ "navigationStyle": "custom",
+ "navigationBarTextStyle": "black",
+ "navigationBarTitleText": "物流信息"
+ }
+ },
{
"path": "vipPrice",
"style": {
diff --git a/pages/invoice/index.vue b/pages/invoice/index.vue
index 19fe761..2654252 100644
--- a/pages/invoice/index.vue
+++ b/pages/invoice/index.vue
@@ -29,11 +29,12 @@
+添加发票抬头
-
+ 暂无相关信息
+
+
diff --git a/pages/news3/LogisticsInquiry.vue b/pages/news3/LogisticsInquiry.vue
index 9bba494..0861f8b 100644
--- a/pages/news3/LogisticsInquiry.vue
+++ b/pages/news3/LogisticsInquiry.vue
@@ -1,32 +1,30 @@
-
-
- 物流查询
-
-
+
+
+
+ 物流查询
+
+
-
+
-
+
扫码识别
-
+
粘贴单号
-
@@ -36,18 +34,47 @@
export default {
data() {
return {
- form:{
- logisticsNum:'',
- }
+ logisticsNum: '',
};
},
- methods:{
+ methods: {
+ getClipboardData(value) {
+ uni.getClipboardData({
+ success: (res) => { // 获取成功回调
+ this.logisticsNum = res.data
+ }
+ });
+ },
+
+ scanCode() {
+ uni.scanCode({
+ success: (res) => {
+ this.logisticsNum = res.result
+ console.log(res);
+ },
+ fail: (res) => {
+ console.log(res)
+ uni.showToast({
+ title: '扫描失败',
+ icon: 'none'
+ })
+ }
+ })
+ },
+ onBack() {
+ uni.navigateBack({
+ delta: 1 // 表示返回到上一页(默认为1)
+ });
+ },
/**
- * 售后点击
+ * 查快递
*/
- onApplyAftersales(){
+ onCheck() {
+ if (!this.logisticsNum) {
+ return this.$toast('请输入物流单号')
+ }
uni.navigateTo({
- url: '/pages/AfterSaleType/AfterSaleType',
+ url: "/pages/news3/LogisticsDetails?logisticsNum=" + this.logisticsNum
})
}
}
@@ -55,85 +82,93 @@
diff --git a/pages/news3/ManualEntry.vue b/pages/news3/ManualEntry.vue
index 03db571..ba41018 100644
--- a/pages/news3/ManualEntry.vue
+++ b/pages/news3/ManualEntry.vue
@@ -1,357 +1,440 @@
-
-
-
-
-
-
-
-
-
-
-
- 识别
-
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
- 详细地址
+
+
+
+
+
+ 识别
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 转账记录最多上传5张
+
+
+
+
+
+
+
+ {{form.city}}
+
+
+ 详细地址
+
+
-
-
-
- 聊天记录最多上传5张
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 转账记录最多上传5张
+
+
+
+
+
+ 上传图片
+
+
+
+
+
+
+ 聊天记录最多上传5张
+
+
+
+
+
+ 上传图片
+
+
+
-
+
+
+
-
-
-
-
\ No newline at end of file
+
diff --git a/pages/news3/seasoningCondimentsRecord.vue b/pages/news3/seasoningCondimentsRecord.vue
index 671dba3..c3c1ebe 100644
--- a/pages/news3/seasoningCondimentsRecord.vue
+++ b/pages/news3/seasoningCondimentsRecord.vue
@@ -1,16 +1,6 @@
-
-
+
查看物流
@@ -88,6 +78,7 @@
diff --git a/pages/news3/setOutRecords.vue b/pages/news3/setOutRecords.vue
index d0d87d0..4ae6880 100644
--- a/pages/news3/setOutRecords.vue
+++ b/pages/news3/setOutRecords.vue
@@ -1,242 +1,340 @@
-
-
-
-
-
-
-
-
-
-
-
-
- 只属于非商城订单
+
+
+
+
+
+
+
+
-
-
-
- 订单号:7868867676878676876
+
+
+
+ 只属于非商城订单
+
-
-
-
-
- 联想小新笔记本电脑2023年新款
-
-
- 16GB,128GB
-
-
-
- x1
+
+
+ 订单号:{{item.express_no}}
+
+
+
+
+
+ {{item1.goods.goods_name}}
-
- ¥
- 288
+
+
+
+ x{{item1.goods.total_num}}
+
+
+ ¥
+ {{item1.goods.goods_price}}
+
+
-
-
-
- 含运费¥5
- 共计:
- ¥2500
-
-
-
-
-
+
\ No newline at end of file
+
diff --git a/pages/sureOrder/index.vue b/pages/sureOrder/index.vue
index 1d5b572..8da3beb 100644
--- a/pages/sureOrder/index.vue
+++ b/pages/sureOrder/index.vue
@@ -387,7 +387,7 @@
that.payBanlance()
return
}
- cashier.orderPay(that.orderID).then(res => {
+ cashier.orderPay(that.orderId).then(res => {
if (res.status == 200) {
let paymentData = res.data.payment