Commit 4726cb76 by 林家欣

fix: 修改禅道bug和常见问题线上请求地址

parent f19f357f
...@@ -2,4 +2,5 @@ VUE_APP_CURRENTMODE = "production" ...@@ -2,4 +2,5 @@ VUE_APP_CURRENTMODE = "production"
VUE_APP_HOST_URL = "http://192.168.0.77:9091" VUE_APP_HOST_URL = "http://192.168.0.77:9091"
VUE_APP_API_URL = "http://192.168.0.77:9091" VUE_APP_API_URL = "http://192.168.0.77:9091"
VUE_APP_GDS_URL = "http://data-studio.gds.org.cn" VUE_APP_GDS_URL = "http://data-studio.gds.org.cn"
VUE_APP_CHINATM_URL = "http://member.gds.org.cn:8080/chinatm"
VUE_APP_LOG = false VUE_APP_LOG = false
import { import {
GET,
POST POST
} from "../fetch.js" } from "../fetch.js"
const Prefix = process.env.NODE_ENV === 'development' ? '/gs1' : ''; const Prefix = process.env.NODE_ENV === 'development' ? '/gs1' : '';
const Prefix2 = process.env.NODE_ENV === 'development' ? '/chinatm' : '';
// 查询SSCC AI标识符列表 // 查询SSCC AI标识符列表
const querySSCCAIList = (params = {}) => { const querySSCCAIList = (params = {}) => {
......
...@@ -5,7 +5,7 @@ import { ...@@ -5,7 +5,7 @@ import {
const Prefix = process.env.NODE_ENV === 'development' ? '/gs1' : ''; const Prefix = process.env.NODE_ENV === 'development' ? '/gs1' : '';
const Prefix2 = process.env.NODE_ENV === 'development' ? '/chinatm' : ''; const Prefix2 = process.env.NODE_ENV === 'development' ? '/chinatm' : process.env.VUE_APP_CHINATM_URL;
// 右侧表格下载功能 // 右侧表格下载功能
const businessDownLoad = (params = {}) => { const businessDownLoad = (params = {}) => {
......
import { import {
POST, POSTFORM, UPLOAD POST, POSTFORM,
} from "../fetch.js" } from "../fetch.js"
......
import { import {
POST, POSTFORM, UPLOAD, GET POST, UPLOAD, GET
} from "../fetch.js" } from "../fetch.js"
......
export const link = { export const link = {
pxspkc: 'http://v3.gds.org.cn/LoginService.aspx', pxspkc: 'http://v3.gds.org.cn/LoginService.aspx',
wyxz: 'http://wsdt.gs1cn.org/anccoh/login.jsp',
} }
\ No newline at end of file
...@@ -436,8 +436,12 @@ export default { ...@@ -436,8 +436,12 @@ export default {
children: [ children: [
{ {
name: "收费公示", name: "收费公示",
path: "", path: "/Business/Corppay",
active: "Corppaynew", active: "Corppaynew",
query: {
id: "1",
},
noneChild: true,
}, },
{ {
name: "收费目录清单", name: "收费目录清单",
......
...@@ -554,6 +554,7 @@ import notice from "./comps/notice.vue"; ...@@ -554,6 +554,7 @@ import notice from "./comps/notice.vue";
import modal from "../comps/modal.vue"; import modal from "../comps/modal.vue";
import message from "../comps/message.vue"; import message from "../comps/message.vue";
import { mapState } from "vuex"; import { mapState } from "vuex";
import { link } from "@/utils/links";
export default { export default {
components: { components: {
...@@ -675,7 +676,8 @@ export default { ...@@ -675,7 +676,8 @@ export default {
{ {
ico: require("../../assets/image/home/wsxtcy-ico2.png"), ico: require("../../assets/image/home/wsxtcy-ico2.png"),
name: "我要续展", name: "我要续展",
url: "/Business/Renewal", type: 'link',
url: link.wyxz,
}, },
{ {
ico: require("../../assets/image/home/wsxtcy-ico3.png"), ico: require("../../assets/image/home/wsxtcy-ico3.png"),
...@@ -1166,11 +1168,15 @@ export default { ...@@ -1166,11 +1168,15 @@ export default {
// 我是系统成员点击事件 // 我是系统成员点击事件
wsxtcyHandelClick(i) { wsxtcyHandelClick(i) {
console.log(i, "我是系统成员点击事件"); console.log(i, "我是系统成员点击事件");
let routeData = this.$router.resolve({ if (this.wsxtcy[i].type === 'link') {
path: this.wsxtcy[i].url, window.open(this.wsxtcy[i].url, "_blank");
query: this.wsxtcy[i].query, } else {
}); let routeData = this.$router.resolve({
window.open(routeData.href, "_blank"); path: this.wsxtcy[i].url,
query: this.wsxtcy[i].query,
});
window.open(routeData.href, "_blank");
}
// this.$router.push({ // this.$router.push({
// path: this.wsxtcy[i].url, // path: this.wsxtcy[i].url,
// query: this.wsxtcy[i].query, // query: this.wsxtcy[i].query,
......
...@@ -35,6 +35,7 @@ ...@@ -35,6 +35,7 @@
:index="String(i + 1)" :index="String(i + 1)"
:key="i" :key="i"
:class="{ active: tmpA.active === currentName }" :class="{ active: tmpA.active === currentName }"
@click="jump(tmpA)"
>{{ tmpA.name }}</el-menu-item >{{ tmpA.name }}</el-menu-item
> >
</template> </template>
......
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