Commit 4726cb76 by 林家欣

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

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