You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

320 lines
12 KiB

5 years ago
<template>
<div class="write-container">
<h1 id="inActiveTime" style="display: none;" />
5 years ago
<div v-if="writeStatus==0" class="title-icon-view">
<div class="icon-view">
<i class="el-icon-check success-icon" />
5 years ago
</div>
<p v-if="writeNotStartPrompt" style="text-align: center;">
5 years ago
<span v-if="writeNotStartPrompt">{{ writeNotStartPrompt }}</span>
</p>
</div>
<div v-if="writeStatus==1">
5 years ago
<project-form
v-if="projectConfig.projectKey"
:project-config="projectConfig"
5 years ago
@submit="submitForm"
/>
5 years ago
</div>
5 years ago
<div v-if="writeStatus==2" class="title-icon-view">
<div class="icon-view">
<i class="el-icon-check success-icon" />
5 years ago
</div>
<p style="text-align: center;">
5 years ago
<span v-if="userProjectSetting.submitPromptText">{{ userProjectSetting.submitPromptText }}</span>
5 years ago
<span v-else>{{ globalDefaultValue.projectSubmitPromptText }}</span>
5 years ago
</p>
<div>
<el-image
v-if="userProjectSetting.submitPromptImg"
:src="userProjectSetting.submitPromptImg"
fit="cover"
/>
</div>
<el-button v-if="userProjectSetting.publicResult" type="primary" @click="openPublicResultHandle">
查看数据
</el-button>
5 years ago
</div>
</div>
</template>
<script>
4 years ago
import ProjectForm from '../preview/ProjectForm'
5 years ago
import loadWXJs from '@/utils/loadWxSdk'
import defaultValue from '@/utils/defaultValue'
import {getQueryString} from '@/utils'
import constants from '@/utils/constants'
5 years ago
const uaParser = require('ua-parser-js')
const ua = uaParser(navigator.userAgent)
5 years ago
require('@/utils/ut')
5 years ago
export default {
name: 'WriteView',
components: {
ProjectForm
},
5 years ago
props: {},
data() {
return {
5 years ago
inActiveTime: 0,
5 years ago
projectConfig: {
projectKey: '',
preview: false,
showBtns: true
},
writeStatus: 1,
5 years ago
writeNotStartPrompt: '',
userProjectSetting: {
submitPromptText: ''
},
5 years ago
globalDefaultValue: defaultValue,
// 微信授权地址
5 years ago
wxAuthorizationUrl: '',
wxAuthorizationCode: '',
wxUserInfo: {},
wxSignature: {}
5 years ago
}
},
metaInfo: {
meta: [
{
name: 'viewport',
content: 'width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no'
}
]
5 years ago
},
created() {
4 years ago
let key = this.$route.query.key || this.$route.params.key
5 years ago
this.projectConfig.projectKey = key
5 years ago
let wxCode = getQueryString('code')
if (wxCode) {
this.wxAuthorizationCode = wxCode
this.getWxAuthorizationUserInfo()
}
this.getWxAuthorizationUrl()
this.queryProjectSettingStatus()
5 years ago
this.queryProjectSetting()
if (constants.enableWx) {
// 加载微信相关 获取签名
this.$api.get('/wx/jsapi/signature', {params: {url: window.location.href}}).then(res => {
this.wxSignature = res.data
this.setWxConfig()
})
}
5 years ago
},
mounted() {
5 years ago
this.viewProjectHandle()
5 years ago
}, methods: {
5 years ago
viewProjectHandle() {
// 是否能进入填写
4 years ago
this.$api.post(`/user/project/result/view/${this.projectConfig.projectKey}`, {params: {projectKey: this.projectConfig.projectKey}}).then(() => {
5 years ago
})
},
5 years ago
queryProjectSettingStatus() {
// 是否能进入填写
this.$api.get('/user/project/setting-status', {params: {projectKey: this.projectConfig.projectKey}}).then(res => {
5 years ago
if (res.msg) {
this.writeNotStartPrompt = res.msg
this.writeStatus = 0
}
})
},
getWxAuthorizationUserInfo() {
let wxAuthorizationCode = this.wxAuthorizationCode
// 根据code 获取用户授权信息
this.$api.get('/authorization/user/info', {
5 years ago
params: {
code: wxAuthorizationCode
}
}).then(res => {
if (res.data) {
this.wxUserInfo = res.data
alert(res.data)
}
})
},
getWxAuthorizationUrl() {
// 获取微信授权url地址
this.$api.get('/wx/jsapi/authorization/url', {params: {url: window.location.href}}).then(res => {
5 years ago
if (res.data) {
this.wxAuthorizationUrl = res.data
}
})
},
setWxConfig() {
let that = this
5 years ago
let signature = this.wxSignature
loadWXJs(wx => {
5 years ago
wx.config({
debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
appId: signature.appId, // 必填,公众号的唯一标识
timestamp: signature.timestamp, // 必填,生成签名的时间戳
nonceStr: signature.nonceStr, // 必填,生成签名的随机串
signature: signature.signature, // 必填,签名
5 years ago
jsApiList: [
'updateAppMessageShareData',
'updateTimelineShareData',
'onMenuShareAppMessage',
'onMenuShareTimeline',
5 years ago
'showMenuItems',
'hideMenuItems',
'chooseWXPay'
] // 必填,需要使用的JS接口列表
})
// sdk准备完成之后调用
wx.ready(function() {
// 需在用户可能点击分享按钮前就先调用
console.log('ready')
that.setWxProjectShare(wx)
})
5 years ago
})
},
/**
* 微信分享
*/
setWxProjectShare(wx) {
5 years ago
let {shareImg, shareTitle, shareDesc} = this.userProjectSetting
wx.updateAppMessageShareData({
title: shareTitle || defaultValue.projectShareTitle, // 分享标题
desc: shareDesc || defaultValue.projectShareDesc, // 分享描述
link: window.location.href, // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致
imgUrl: shareImg || defaultValue.projectShareImg, // 分享图标
success: function() {
// 设置成功
console.log('succcess')
},
fail: function() {
console.log('fail')
}
})
wx.updateTimelineShareData({
title: shareTitle || defaultValue.projectShareTitle, // 分享标题
desc: shareDesc || defaultValue.projectShareDesc, // 分享描述
link: window.location.href, // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致
imgUrl: shareImg || defaultValue.projectShareImg, // 分享图标
success: function() {
// 设置成功
console.log('succcess')
},
fail: function() {
console.log('fail')
}
})
wx.onMenuShareTimeline({
title: shareTitle || defaultValue.projectShareTitle, // 分享标题
desc: shareDesc || defaultValue.projectShareDesc, // 分享描述
link: window.location.href, // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致
imgUrl: shareImg || defaultValue.projectShareImg, // 分享图标
success: function() {
// 设置成功
console.log('succcess')
}
})
wx.onMenuShareAppMessage({
title: shareTitle || defaultValue.projectShareTitle, // 分享标题
desc: shareDesc || defaultValue.projectShareDesc, // 分享描述
link: window.location.href, // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致
imgUrl: shareImg || defaultValue.projectShareImg, // 分享图标
success: function() {
// 设置成功
console.log('succcess')
}
5 years ago
})
},
5 years ago
queryProjectSetting() {
5 years ago
this.$api.get(`/user/project/setting/${this.projectConfig.projectKey}`).then(res => {
5 years ago
if (res.data) {
this.userProjectSetting = res.data
// 仅在微信环境打开
5 years ago
if (res.data && res.data.wxWrite) {
// 记录微信用户信息
5 years ago
if (res.data.recordWxUser && !this.wxAuthorizationCode) {
console.log(this.wxAuthorizationUrl)
5 years ago
location.href = this.wxAuthorizationUrl
} else {
this.onlyWxOpenHandle()
}
5 years ago
}
}
})
},
/**
* 仅在微信打开
*/
5 years ago
onlyWxOpenHandle() {
let wxUa = navigator.userAgent.toLowerCase()
let isWeixin = wxUa.indexOf('micromessenger') != -1
5 years ago
if (!isWeixin) {
document.head.innerHTML = '<title>抱歉,出错了</title><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=0"><link rel="stylesheet" type="text/css" href="https://res.wx.qq.com/open/libs/weui/0.4.1/weui.css">'
document.body.innerHTML = '<div class="weui_msg"><div class="weui_icon_area"><i class="weui_icon_info weui_icon_msg"></i></div><div class="weui_text_area"><h4 class="weui_msg_title">请在微信客户端打开链接</h4></div></div>'
}
},
openPublicResultHandle() {
let projectKey = this.projectConfig.projectKey
this.$router.replace({path: '/project/public/result', query: {projectKey}})
},
5 years ago
submitForm(data) {
// 完成时间
5 years ago
let inActiveTime = document.getElementById('inActiveTime').innerText
5 years ago
this.$api.post('/user/project/result/create', {
5 years ago
'completeTime': inActiveTime,
5 years ago
'projectKey': this.projectConfig.projectKey,
5 years ago
'submitOs': ua.os.name,
'submitBrowser': ua.browser.name,
'submitUa': ua,
5 years ago
'originalData': data.formModel,
'processData': data.labelFormModel
4 years ago
}).then(() => {
5 years ago
this.writeStatus = 2
if (this.userProjectSetting.submitJumpUrl) {
setTimeout(() => {
window.location.replace(this.userProjectSetting.submitJumpUrl)
}, 1000)
}
5 years ago
})
}
}
}
</script>
5 years ago
<style lang="scss" scoped>
5 years ago
.write-container {
margin: 0;
padding: 0;
height: 100%;
width: 100%;
5 years ago
}
5 years ago
.title-icon-view {
display: flex;
align-items: center;
align-content: center;
justify-content: center;
flex-direction: column;
height: 100%;
width: 100%;
5 years ago
}
5 years ago
.icon-view {
width: 59px;
height: 59px;
border-radius: 100px;
background-color: #0076ff;
display: flex;
align-content: center;
align-items: center;
justify-content: center;
5 years ago
}
5 years ago
.success-icon {
text-align: center;
color: white;
font-size: 30px;
5 years ago
}
5 years ago
</style>