后台接口对接

This commit is contained in:
donqi 2022-06-21 21:42:54 +08:00
parent d6e9967d1c
commit 9b4574f9a2
2 changed files with 6 additions and 3 deletions

View File

@ -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) {

View File

@ -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) => {