|
|
|
@ -11,6 +11,15 @@ |
|
|
|
<view class="lf-font-24 lf-color-555">{{ order.canteen.address }}</view> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<view class="lf-row-between lf-color-gray list"> |
|
|
|
<view>食堂联系电话 <text style="color:#1833F2" @click="call(order.canteen.ctl_phone)" class="lf-m-l-10">{{ order.canteen.ctl_phone }}</text></view> |
|
|
|
</view> |
|
|
|
<view class="lf-row-between lf-color-gray list"> |
|
|
|
<view>采购人 {{ order.contact_name }}</view> |
|
|
|
</view> |
|
|
|
<view class="lf-row-between lf-color-gray list"> |
|
|
|
<view>采购人联系电话 <text style="color:#1833F2" @click="call(order.contact_phone)" class="lf-m-l-10">{{ order.contact_phone }}</text></view> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<self-line></self-line> |
|
|
|
<view class="lf-border-box lf-bg-white"> |
|
|
|
@ -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 |
|
|
|
|