Commit be76d6b1 by 任建

rj

parent 0c4a3d96
import axios from "axios"; import axios from "axios";
let baseUrl = "/api/web/auth/accessAuth/getAppTokenByHosts"; let baseUrl = "/web/auth/accessAuth/getAppTokenByHosts";
//获取token //获取token
export function getTokens() { export function getTokens() {
return axios.post(baseUrl, { return axios.post(baseUrl, {
actionType: "getAppTokenByHosts", //固定写法就行 actionType: "getAppTokenByHosts", //固定写法就行
actionBody: {} actionBody: {}
}); });
} }
\ No newline at end of file
import http from "@/http/http.js"; import http from "@/http/http.js";
let baseUrl = "/api/web/action/tmOrder/springBoard"; let baseUrl = "/web/action/tmOrder/springBoard";
// 获取jdtrademark商标注册申请类型:自主/专家辅助/担保 卡片信息 // 获取jdtrademark商标注册申请类型:自主/专家辅助/担保 卡片信息
// 产品列表-根据产品大类获取-应用中心 // 产品列表-根据产品大类获取-应用中心
export function getProductListCards() { export function getProductListCards() {
return http.post(baseUrl, { return http.post(baseUrl, {
actionBody: { actionBody: {
typeOneCode: "sbfu" typeOneCode: "sbfu"
}, },
actionType: "getCAProductListByTypeOneCode", actionType: "getCAProductListByTypeOneCode",
actionProcess: "jd" actionProcess: "jd"
}); });
} }
// 产品详情:点击首页的 专家辅助申请 和 担保申请-进入相应的专家辅助申请 和 担保申请产品详情页面 // 产品详情:点击首页的 专家辅助申请 和 担保申请-进入相应的专家辅助申请 和 担保申请产品详情页面
// 产品详情-应用中心 // 产品详情-应用中心
export function getProductDetail() { export function getProductDetail() {
return http.post(baseUrl, { return http.post(baseUrl, {
actionBody: { actionBody: {
// 自助: FW_GOODS-581976-1 // 自助: FW_GOODS-581976-1
// 辅助:FW_GOODS-580010-1 // 辅助:FW_GOODS-580010-1
// 担保:FW_GOODS-581978-1 // 担保:FW_GOODS-581978-1
channelItemCode: "FW_GOODS-581978-1" channelItemCode: "FW_GOODS-581978-1"
}, },
actionType: "getCAProductDetail", actionType: "getCAProductDetail",
actionProcess: "bw" actionProcess: "bw"
}); });
} }
\ No newline at end of file
import http from "@/http/http.js"; import http from "@/http/http.js";
let baseUrl = "/api/web/action/tmQuery/springBoard"; let baseUrl = "/web/action/tmQuery/springBoard";
// 商标详情查询接口 // 商标详情查询接口
export function tradeMarkDetail(params) { export function tradeMarkDetail(params) {
......
import http from "@/http/http.js"; import http from "@/http/http.js";
import axios from "axios"; import axios from "axios";
let baseUrl = "/api/web/action/tmTools/springBoard"; let baseUrl = "/web/action/tmTools/springBoard";
// 获取selftmreg的尼斯查询 一级查询得到二级树 二级查询得到三级树 // 获取selftmreg的尼斯查询 一级查询得到二级树 二级查询得到三级树
export function getNiceQueryCategory(nclcodeSCode) { export function getNiceQueryCategory(nclcodeSCode) {
......
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