27146
This commit is contained in:
@@ -180,7 +180,7 @@ export default {
|
|||||||
},
|
},
|
||||||
copy() {
|
copy() {
|
||||||
let oInput = document.createElement('input')
|
let oInput = document.createElement('input')
|
||||||
oInput.value = this.params.linkUrl
|
oInput.value = location.origin + `/apps/AppBackUserList/add?corpId=${this.user.corpId}&arriveGirdId=${this.girdId}&arriveGirdName=${this.girdName}`
|
||||||
document.body.appendChild(oInput)
|
document.body.appendChild(oInput)
|
||||||
oInput.select()
|
oInput.select()
|
||||||
document.execCommand('Copy')
|
document.execCommand('Copy')
|
||||||
@@ -190,20 +190,20 @@ export default {
|
|||||||
share() {
|
share() {
|
||||||
this.injectJWeixin(['shareAppMessage', 'shareWechatMessage']).then(() => {
|
this.injectJWeixin(['shareAppMessage', 'shareWechatMessage']).then(() => {
|
||||||
this.wxInvoke(['shareAppMessage', {
|
this.wxInvoke(['shareAppMessage', {
|
||||||
title: this.params.title,
|
// title: this.params.title,
|
||||||
desc: this.params.tableExplain,
|
// desc: this.params.tableExplain,
|
||||||
link: this.params.linkUrl,
|
// imgUrl: this.params.headPicture,
|
||||||
imgUrl: this.params.headPicture
|
link: location.origin + `/apps/AppBackUserList/add?corpId=${this.user.corpId}&arriveGirdId=${this.girdId}&arriveGirdName=${this.girdName}`,
|
||||||
}])
|
}])
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
shareWechat() {
|
shareWechat() {
|
||||||
this.injectJWeixin(['shareAppMessage', 'shareWechatMessage']).then(() => {
|
this.injectJWeixin(['shareAppMessage', 'shareWechatMessage']).then(() => {
|
||||||
this.wxInvoke(['shareWechatMessage', {
|
this.wxInvoke(['shareWechatMessage', {
|
||||||
title: this.params.title,
|
// title: this.params.title,
|
||||||
desc: this.params.tableExplain,
|
// desc: this.params.tableExplain,
|
||||||
link: this.params.linkUrl,
|
// imgUrl: this.params.headPicture,
|
||||||
imgUrl: this.params.headPicture
|
link: location.origin + `/apps/AppBackUserList/add?corpId=${this.user.corpId}&arriveGirdId=${this.girdId}&arriveGirdName=${this.girdName}`,
|
||||||
}])
|
}])
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -15,7 +15,7 @@
|
|||||||
<div class="item" v-for="(item, index) in list" :key="index">
|
<div class="item" v-for="(item, index) in list" :key="index">
|
||||||
<p>{{item.content}}</p>
|
<p>{{item.content}}</p>
|
||||||
<div>{{item.createTime}}
|
<div>{{item.createTime}}
|
||||||
<span><AiOpenData v-if="item.createUserName" type="userName" :openid="item.createUserName" /></span>
|
<span>网格员:<AiOpenData v-if="item.createUserName" type="userName" :openid="item.createUserName" style="display:inline-block;" />11</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -30,7 +30,7 @@
|
|||||||
<div class="right">
|
<div class="right">
|
||||||
<div class="rightTop">
|
<div class="rightTop">
|
||||||
<span class="name">{{ item.name }}</span>
|
<span class="name">{{ item.name }}</span>
|
||||||
<span class="btn">
|
<span class="btn" v-if="item.doRight == 1">
|
||||||
<img src="./components/img/edit-icon.png" alt="" @click.stop="edit(item.id)">
|
<img src="./components/img/edit-icon.png" alt="" @click.stop="edit(item.id)">
|
||||||
<img src="./components/img/del-icon.png" alt="" @click.stop="del(item.id)">
|
<img src="./components/img/del-icon.png" alt="" @click.stop="del(item.id)">
|
||||||
</span>
|
</span>
|
||||||
|
|||||||
Reference in New Issue
Block a user