后台接口对接
This commit is contained in:
parent
d6e9967d1c
commit
9b4574f9a2
|
|
@ -13,8 +13,8 @@ export default {
|
||||||
})
|
})
|
||||||
let userInfo = _this.getCurUserInfo();
|
let userInfo = _this.getCurUserInfo();
|
||||||
// request 触发前拼接 url
|
// request 触发前拼接 url
|
||||||
// args.url = 'https://www.opsoul.com' + args.url;
|
args.url = 'https://www.opsoul.com' + args.url;
|
||||||
args.url = 'http://127.0.0.1:80' + args.url;
|
// args.url = 'http://127.0.0.1:80' + args.url;
|
||||||
// args.url = 'http://192.168.2.42:80' + args.url;
|
// args.url = 'http://192.168.2.42:80' + args.url;
|
||||||
|
|
||||||
if (!args.data) {
|
if (!args.data) {
|
||||||
|
|
|
||||||
|
|
@ -416,7 +416,10 @@
|
||||||
console.log(this.formData)
|
console.log(this.formData)
|
||||||
let goodsStandardList = this.formData.specsList.filter((item) => {
|
let goodsStandardList = this.formData.specsList.filter((item) => {
|
||||||
if (item.checked) {
|
if (item.checked) {
|
||||||
return item;
|
return {
|
||||||
|
...item,
|
||||||
|
goodsNum: 99999
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
let goodsAreaList = this.formData.districtList.filter((item) => {
|
let goodsAreaList = this.formData.districtList.filter((item) => {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue