diff --git a/canteen/pages/purchase/detail.vue b/canteen/pages/purchase/detail.vue
index 528280c..3ee3487 100644
--- a/canteen/pages/purchase/detail.vue
+++ b/canteen/pages/purchase/detail.vue
@@ -8,6 +8,9 @@
采购单 {{ order.p_sn }}
+
+ 供应商联系电话 {{ order.supplier.ctl_phone }}
+
diff --git a/supplier/pages/gonghuo/detail.vue b/supplier/pages/gonghuo/detail.vue
index ed7e3e4..27ddce0 100644
--- a/supplier/pages/gonghuo/detail.vue
+++ b/supplier/pages/gonghuo/detail.vue
@@ -11,6 +11,15 @@
{{ order.canteen.address }}
+
+ 食堂联系电话 {{ order.canteen.ctl_phone }}
+
+
+ 采购人 {{ order.contact_name }}
+
+
+ 采购人联系电话 {{ order.contact_phone }}
+
@@ -175,6 +184,11 @@
this.getData();
},
methods: {
+ call(phone) {
+ uni.makePhoneCall({
+ phoneNumber: phone //仅为示例
+ });
+ },
getData(){
this.$http(this.API.API_SUPPLIER_PURCHASEDETAIL, {
p_sn: this.p_sn