mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-14 06:36:44 +08:00
Merge branch 'feature/GFRS-717【0402】人力发展-活动量管理' into release/0407
This commit is contained in:
@@ -15,7 +15,7 @@
|
|||||||
<van-cell title="直辖部人力" :value="teamInfo.jurisdictionDepartNum" />
|
<van-cell title="直辖部人力" :value="teamInfo.jurisdictionDepartNum" />
|
||||||
<van-cell title="直辖部主管数" :value="teamInfo.jurisdictionGroupManagerNum" />
|
<van-cell title="直辖部主管数" :value="teamInfo.jurisdictionGroupManagerNum" />
|
||||||
<van-cell title="大直辖人力" :value="teamInfo.majorJurisdictionNum" />
|
<van-cell title="大直辖人力" :value="teamInfo.majorJurisdictionNum" />
|
||||||
<van-cell title="直接增援人数" :value="teamInfo.directReinforceNum" />
|
<van-cell title="直接增员人数" :value="teamInfo.directReinforceNum" />
|
||||||
<van-cell title="直接育成主管数量" :value="teamInfo.directBredManagerNum" />
|
<van-cell title="直接育成主管数量" :value="teamInfo.directBredManagerNum" />
|
||||||
<van-cell title="直接育成部门数量" :value="teamInfo.directBredDepartNum" />
|
<van-cell title="直接育成部门数量" :value="teamInfo.directBredDepartNum" />
|
||||||
<van-cell title="全辖团队人力" :value="teamInfo.allTeamNum" />
|
<van-cell title="全辖团队人力" :value="teamInfo.allTeamNum" />
|
||||||
|
|||||||
@@ -19,7 +19,7 @@
|
|||||||
type="digit"
|
type="digit"
|
||||||
label="年龄"
|
label="年龄"
|
||||||
placeholder="请输入年龄"
|
placeholder="请输入年龄"
|
||||||
v-validate="'required|onlyNumber|maxAge'"
|
v-validate="'required|onlyNumber|onlyInteger|maxAge'"
|
||||||
data-vv-name="年龄"
|
data-vv-name="年龄"
|
||||||
/>
|
/>
|
||||||
<select-radio :disabled="isDisable" :radios="typeArr" label="类型" name="类型" :value.sync="recordInfo.type" :required="true"></select-radio>
|
<select-radio :disabled="isDisable" :radios="typeArr" label="类型" name="类型" :value.sync="recordInfo.type" :required="true"></select-radio>
|
||||||
@@ -30,7 +30,7 @@
|
|||||||
type="digit"
|
type="digit"
|
||||||
label="面谈次数"
|
label="面谈次数"
|
||||||
placeholder="请输入面谈次数"
|
placeholder="请输入面谈次数"
|
||||||
v-validate="'required|onlyNumber'"
|
v-validate="'required|onlyNumber|onlyInteger'"
|
||||||
data-vv-name="面谈次数"
|
data-vv-name="面谈次数"
|
||||||
/>
|
/>
|
||||||
<van-field
|
<van-field
|
||||||
|
|||||||
@@ -73,8 +73,12 @@ export default {
|
|||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.redisKey = this.$route.query.redisKey
|
this.redisKey = this.$route.query.redisKey
|
||||||
if (this.redisKey) this.saveShareRecord('1')
|
if (this.redisKey) {
|
||||||
else this.getShareKey()
|
this.saveShareRecord('1')
|
||||||
|
localStorage.setItem('token', this.$route.query.token)
|
||||||
|
} else {
|
||||||
|
this.getShareKey()
|
||||||
|
}
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
// 右上角的显示
|
// 右上角的显示
|
||||||
this.$jump({
|
this.$jump({
|
||||||
@@ -94,13 +98,14 @@ export default {
|
|||||||
appCallBack(data) {
|
appCallBack(data) {
|
||||||
if (data.trigger == 'right_button_click') {
|
if (data.trigger == 'right_button_click') {
|
||||||
this.saveShareRecord('0')
|
this.saveShareRecord('0')
|
||||||
|
let token = window.localStorage.getItem('token')
|
||||||
// eslint-disable-next-line no-undef
|
// eslint-disable-next-line no-undef
|
||||||
EWebBridge.webCallAppInJs('bridge', {
|
EWebBridge.webCallAppInJs('bridge', {
|
||||||
flag: 'share',
|
flag: 'share',
|
||||||
extra: {
|
extra: {
|
||||||
title: '国富人寿保险股份有限公司',
|
title: '国富人寿保险股份有限公司',
|
||||||
content: '公司介绍',
|
content: '公司介绍',
|
||||||
url: `${location.origin}/#/manpower/increaseStaffTools/CompanyIntroduction?redisKey=${this.redisKey}`,
|
url: `${location.origin}/#/manpower/increaseStaffTools/CompanyIntroduction?redisKey=${this.redisKey}&token=${token}`,
|
||||||
img: this.$assetsUrl + 'images/logo.png'
|
img: this.$assetsUrl + 'images/logo.png'
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -36,8 +36,12 @@ export default {
|
|||||||
mounted() {
|
mounted() {
|
||||||
this.init()
|
this.init()
|
||||||
this.redisKey = this.$route.query.redisKey
|
this.redisKey = this.$route.query.redisKey
|
||||||
if (this.redisKey) this.saveShareRecord('1')
|
if (this.redisKey) {
|
||||||
else this.getShareKey()
|
this.saveShareRecord('1')
|
||||||
|
localStorage.setItem('token', this.$route.query.token)
|
||||||
|
} else {
|
||||||
|
this.getShareKey()
|
||||||
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
init() {
|
init() {
|
||||||
@@ -60,13 +64,14 @@ export default {
|
|||||||
if (data.trigger == 'right_button_click') {
|
if (data.trigger == 'right_button_click') {
|
||||||
this.saveShareRecord('0')
|
this.saveShareRecord('0')
|
||||||
let pdf = this.$route.query.pdf
|
let pdf = this.$route.query.pdf
|
||||||
|
let token = window.localStorage.getItem('token')
|
||||||
// eslint-disable-next-line no-undef
|
// eslint-disable-next-line no-undef
|
||||||
EWebBridge.webCallAppInJs('bridge', {
|
EWebBridge.webCallAppInJs('bridge', {
|
||||||
flag: 'share',
|
flag: 'share',
|
||||||
extra: {
|
extra: {
|
||||||
title: '国富人寿欢迎您!',
|
title: '国富人寿欢迎您!',
|
||||||
content: this.shareContent,
|
content: this.shareContent,
|
||||||
url: `${location.origin}/#/manpower/increaseStaffTools/PdfShare?pdf=${pdf}&redisKey=${this.redisKey}`,
|
url: `${location.origin}/#/manpower/increaseStaffTools/PdfShare?pdf=${pdf}&redisKey=${this.redisKey}&token=${token}`,
|
||||||
img: this.$assetsUrl + 'images/logo.png'
|
img: this.$assetsUrl + 'images/logo.png'
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|||||||
Reference in New Issue
Block a user