update 打印手机号取项目负责人的手机号

This commit is contained in:
zhaoxiao
2022-02-12 10:59:42 +08:00
parent 31f3b0bbd9
commit d6df401bda
+3 -3
View File
@@ -3,7 +3,7 @@
<div id="needPrint"> <div id="needPrint">
<div class="sheet-box"> <div class="sheet-box">
<div class="sendName">{{ mailDetail.principalName }}</div> <div class="sendName">{{ mailDetail.principalName }}</div>
<div class="sendPhone">{{ userInfo.phone }}</div> <div class="sendPhone">{{ mailDetail.principalPhone }}</div>
<div class="sendCompanyName">{{ sendCompanyName }}</div> <div class="sendCompanyName">{{ sendCompanyName }}</div>
<div class="sendCode"></div> <div class="sendCode"></div>
@@ -50,7 +50,7 @@ export default {
// 邮寄项目信息 // 邮寄项目信息
mailDetail: {}, mailDetail: {},
// 用户信息 // 用户信息
userInfo: {}, // userInfo: {},
// 当前时间 8 寄件人签署 处需要 // 当前时间 8 寄件人签署 处需要
currentTime: `${new Date().getFullYear()} ${new Date().getMonth() + 1} ${new Date().getDate()}`, currentTime: `${new Date().getFullYear()} ${new Date().getMonth() + 1} ${new Date().getDate()}`,
sendCompanyName: '', sendCompanyName: '',
@@ -64,7 +64,7 @@ export default {
this.sendCompanyName = window._CONFIG['sendCompanyName'] this.sendCompanyName = window._CONFIG['sendCompanyName']
this.sendAddress = window._CONFIG['sendAddress'] this.sendAddress = window._CONFIG['sendAddress']
this.sendPostCode = window._CONFIG['sendPostCode'] this.sendPostCode = window._CONFIG['sendPostCode']
this.userInfo = Vue.ls.get(USER_INFO) // this.userInfo = Vue.ls.get(USER_INFO)
// 从路由参数获取项目信息 // 从路由参数获取项目信息
this.mailDetail = JSON.parse(this.$route.query.record) this.mailDetail = JSON.parse(this.$route.query.record)
// 数据中没有邮编或地址信息,调用接口 // 数据中没有邮编或地址信息,调用接口