Commit 1537f1c0 authored by youjie's avatar youjie

no message

parent 566571e9
...@@ -93,6 +93,22 @@ ...@@ -93,6 +93,22 @@
<q-item-label class="font-pfb">企业云盘</q-item-label> <q-item-label class="font-pfb">企业云盘</q-item-label>
</q-item-section> </q-item-section>
</q-item> </q-item>
<!-- 跳转进阶未来 -->
<q-item v-if="userinfo.Id==2602" class="q-my-sm" clickable v-ripple @click="goUrlZC(4)">
<q-item-section avatar>
<q-avatar
style="background-color: #F3F6F9;"
rounded
size="40px"
text-color="primary"
>
<i class="iconfont icon-fabu"></i>
</q-avatar>
</q-item-section>
<q-item-section>
<q-item-label class="font-pfb">进阶未来</q-item-label>
</q-item-section>
</q-item>
<!-- 跳转资产 --> <!-- 跳转资产 -->
<q-item class="q-my-sm" clickable v-ripple @click="goUrlZC(1)"> <q-item class="q-my-sm" clickable v-ripple @click="goUrlZC(1)">
<q-item-section avatar> <q-item-section avatar>
...@@ -125,7 +141,7 @@ ...@@ -125,7 +141,7 @@
<q-item-label class="font-pfb">请购审核</q-item-label> <q-item-label class="font-pfb">请购审核</q-item-label>
</q-item-section> </q-item-section>
</q-item> </q-item>
<!-- 跳转资产 --> <!-- 请购审核 -->
<q-item class="q-my-sm" clickable v-ripple @click="goUrlZC(3)"> <q-item class="q-my-sm" clickable v-ripple @click="goUrlZC(3)">
<q-item-section avatar> <q-item-section avatar>
<q-avatar <q-avatar
...@@ -267,7 +283,7 @@ ...@@ -267,7 +283,7 @@
<script> <script>
import Lockr from "lockr"; import Lockr from "lockr";
import { url_jump_zc } from "../../utils/url"; import { url_jump_zc,url_jump_jjwl } from "../../utils/url";
export default { export default {
props: { props: {
showObj: { showObj: {
...@@ -296,9 +312,13 @@ export default { ...@@ -296,9 +312,13 @@ export default {
backgroundColor: "#027be3", backgroundColor: "#027be3",
width: "9px", width: "9px",
opacity: 0.2 opacity: 0.2
} },
userinfo:{}
}; };
}, },
mounted() {
this.userinfo = this.getLocalStorage();
},
methods: { methods: {
autoSubmitHandler() { autoSubmitHandler() {
let userinfo = this.getLocalStorage(); let userinfo = this.getLocalStorage();
...@@ -377,6 +397,11 @@ export default { ...@@ -377,6 +397,11 @@ export default {
userinfo.UploadConfig.SecretKey + userinfo.UploadConfig.SecretKey +
"&ComeFrom=3"; "&ComeFrom=3";
window.open(url); window.open(url);
} else if (type == 4) {
let url =
url_jump_jjwl +
"/#/login?userId=" + this.userinfo.Id;
window.open(url);
} }
} }
} }
......
...@@ -4,3 +4,5 @@ export let url_jump_zc = "http://zcedu.oytour.com/" ...@@ -4,3 +4,5 @@ export let url_jump_zc = "http://zcedu.oytour.com/"
export let UploadUrl = "http://uploadfile.oytour.com" export let UploadUrl = "http://uploadfile.oytour.com"
export let ViittoFileUrl = "http://staticfile.oytour.com" export let ViittoFileUrl = "http://staticfile.oytour.com"
export let url_jump_jjwl = process.env.NODE_ENV == "development"?"http://localhost:8182":"http://jjwl.oytour.com"
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment