提交 7e83fb22 编写于 作者: huangwensu's avatar huangwensu

去掉inscope限制

上级 29114405
...@@ -134,14 +134,10 @@ export default { ...@@ -134,14 +134,10 @@ export default {
methods: { methods: {
// 立即申请 // 立即申请
applyFor() { applyFor() {
if(this.inScope) {
this.$sendBuriedData({ this.$sendBuriedData({
component_tag: `211#211001#${this.projectId}` component_tag: `211#211001#${this.projectId}`
}); });
this.$emit("applicationCredit"); this.$emit("applicationCredit");
}else {
this.$toast({message: '您不在可申请范围内', duration: 3000 });
}
}, },
// 关闭提示 // 关闭提示
closeTip() { closeTip() {
...@@ -149,7 +145,6 @@ export default { ...@@ -149,7 +145,6 @@ export default {
}, },
// 审核 // 审核
verifyResult() { verifyResult() {
if(this.inScope) {
if(this.currentProgress == 3) { if(this.currentProgress == 3) {
this.$sendBuriedData({ this.$sendBuriedData({
component_tag: `211#211003#${this.projectId}` component_tag: `211#211003#${this.projectId}`
...@@ -160,13 +155,9 @@ export default { ...@@ -160,13 +155,9 @@ export default {
}); });
} }
gotoPage(this,`cme/#/credit-detail?creditId=${this.creditId}&projectId=${this.projectId}`); gotoPage(this,`cme/#/credit-detail?creditId=${this.creditId}&projectId=${this.projectId}`);
}else {
this.$toast({message: '您不在可申请范围内', duration: 3000 });
}
}, },
// 获得学分--下载证书 // 获得学分--下载证书
getScore() { getScore() {
if(this.inScope) {
let paramList = [ let paramList = [
{ {
key: "className", key: "className",
...@@ -213,9 +204,6 @@ export default { ...@@ -213,9 +204,6 @@ export default {
this.$sendBuriedData({ this.$sendBuriedData({
component_tag: `211#211004#${this.projectId}` component_tag: `211#211004#${this.projectId}`
}); });
}else {
this.$toast({message: '您不在可申请范围内', duration: 3000 });
}
} }
} }
}; };
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册