修改文案提示

This commit is contained in:
wulin 2020-08-24 15:25:13 +08:00
parent ca448e8d16
commit cb57a49e4c
3 changed files with 13 additions and 4 deletions

View File

@ -9,6 +9,8 @@ import Router from 'vue-router'
import { apiGetMenuNav } from '@/api/api_menu'
import { isURL } from '@/utils/validate'
import { clearLoginInfo } from '@/utils'
import VConsole from 'vconsole'
let vConsole = new VConsole()// eslint-disable-line no-unused-vars
Vue.use(Router)
// 开发环境不使用懒加载, 因为懒加载页面太多的话会造成webpack热更新太慢, 所以只有生产环境使用懒加载

View File

@ -42,6 +42,8 @@ export default {
console.log('走钉钉免登流程')
this.dingtalkLogin()
this.checkDingTalkLogin()
} else {
this.verify = '请使用手机钉钉扫码打开'
}
},
methods: {
@ -87,7 +89,7 @@ export default {
if (res && res.code === 0) {
console.log('获取token')
this.dataForm.verify='已经登记,祝你好运下午1点44分员工新天地现场开奖'
this.dataForm.verify='已经登记,祝您好运七夕下午5点20分员工新天地现场开奖'
console.log('跳转')
} else {

View File

@ -97,7 +97,7 @@ export default {
apiUpdateLuck(this.luckdata).then(res => {
console.log(res)
if (res && res.code === 0) {
console.log(res.luck.isFinish)
console.log(res.luck)
this.requst = res.luck
if(res.luck.isFinish === 1){
this.dataForm.verify=res.luck.name + '——活动结束'
@ -135,12 +135,17 @@ export default {
this.dataForm.uuid = this.requst.luckGoodsReqs[this.time].name
setTimeout(() =>{
this.randData(this.requst.luckGoodsReqs[this.time].counts)
}, 100)
}, 10)
}
},
randData (count) {
if (this.timer === true) {
var obj = []
if(count > this.requst.luckRecordReqs.length){//
console.log('奖品数大于报名人数')
count = this.requst.luckRecordReqs.length
console.log(count)
}
for(var i = 0; i < count; i++){
if(this.rand >= this.requst.luckRecordReqs.length){
@ -152,7 +157,7 @@ export default {
this.data = obj
setTimeout(() =>{
this.randData(count)
}, 100)
}, 10)
}
}
}