修改
This commit is contained in:
parent
86868b3957
commit
86f776c449
@ -9,6 +9,11 @@
|
||||
// +----------------------------------------------------------------------
|
||||
import request from "@/utils/request.js";
|
||||
|
||||
/**
|
||||
* 获取商品详情
|
||||
*/
|
||||
export const getProductDetailsAPI = (data) => request.get('micro/product_details', data)
|
||||
|
||||
/**
|
||||
* 获取商户基本信息 http://127.0.0.1:8324/api/store/merchant/info?id=4
|
||||
*/
|
||||
|
@ -905,6 +905,13 @@
|
||||
"navigationBarTitleText": "商户基本设置",
|
||||
"enablePullDownRefresh": false
|
||||
}
|
||||
}, {
|
||||
"path": "addGoods/addMyStore",
|
||||
"style": {
|
||||
"navigationBarTitleText": "",
|
||||
"enablePullDownRefresh": false
|
||||
}
|
||||
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -9,7 +9,7 @@
|
||||
</block>
|
||||
</view>
|
||||
|
||||
<view class="goods-wrapper wrapper">
|
||||
<view class="goods-wrapper wrapper" v-if="goods.length">
|
||||
<block v-for="(item,index) in goods" :key="index">
|
||||
<view class="item">
|
||||
<view class="l_cont">
|
||||
@ -17,6 +17,7 @@
|
||||
</view>
|
||||
<view class="r_cont">
|
||||
<text>{{item.store_name}}</text>
|
||||
<view class="addBtn" @click="addGoods(item)">加入仓库</view>
|
||||
</view>
|
||||
</view>
|
||||
</block>
|
||||
@ -61,6 +62,7 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { productCreate } from '@/api/product.js'
|
||||
import { microSeachBarCode, microEadtProduct } from '@/api/store.js'
|
||||
import { seachBarCodeAPI } from '@/api/api.js'
|
||||
import { Toast } from '@/libs/uniApi'
|
||||
@ -84,27 +86,30 @@
|
||||
editGoodsPrice: '',
|
||||
editGoodsStore: '',
|
||||
editGoodsShow: false, // 扫码修改商品信息
|
||||
mer_id: '',
|
||||
searchGoodsShow: true,
|
||||
searchGoodsName: '',
|
||||
mer_id: 318,
|
||||
searchGoodsShow: false,
|
||||
searchGoodsName: '摩托',
|
||||
goods: []
|
||||
}
|
||||
},
|
||||
onLoad(e) {
|
||||
this.mer_id = e.mer_id
|
||||
this.searchGoodsClose()
|
||||
},
|
||||
onShow() {},
|
||||
methods: {
|
||||
openSearch() {
|
||||
|
||||
addGoods(item) {
|
||||
uni.navigateTo({
|
||||
url: `/pages/product/addGoods/addMyStore?mer_id=${this.mer_id}&product_id=${item.product_id}`
|
||||
})
|
||||
},
|
||||
openSearch() {},
|
||||
async searchGoodsClose() {
|
||||
const rq = {
|
||||
mer_id: this.mer_id,
|
||||
name: this.searchGoodsName
|
||||
}
|
||||
const { data } = await seachBarCodeAPI(rq).catch(err => Toast(err))
|
||||
console.log('data', data);
|
||||
this.goods = data.list
|
||||
this.searchGoodsShow = false
|
||||
},
|
||||
@ -122,12 +127,9 @@
|
||||
Toast("更新失败")
|
||||
this.editGoodsShow = false
|
||||
}
|
||||
|
||||
},
|
||||
navigato(type) {
|
||||
type === 1 ? uni.navigateTo({
|
||||
url: `/pages/product/addGoods/index?mer_id=${this.mer_id}`
|
||||
}) : this.scanCode();
|
||||
type === 1 ? this.searchGoodsShow = true : this.scanCode();
|
||||
},
|
||||
scanCode() {
|
||||
const self = this
|
||||
|
@ -382,14 +382,14 @@
|
||||
};
|
||||
},
|
||||
onLoad(opt) {
|
||||
this.merId = opt.mer_id;
|
||||
this.merId = Number(opt.mer_id);
|
||||
this.product_id = opt.product_id;
|
||||
if (opt.code) {
|
||||
this.code = opt.code;
|
||||
this.bar_code_dis = true
|
||||
}
|
||||
this.getDeliveryType();
|
||||
this.initData();
|
||||
this.getDeliveryType();
|
||||
if (this.product_id) {
|
||||
this.initDataEditData();
|
||||
}
|
||||
@ -499,7 +499,6 @@
|
||||
temp_id: '', // 运费模板ID
|
||||
tempName: '' // 运费模板名称
|
||||
};
|
||||
|
||||
if (getStorage('editGoodsDetils')) {
|
||||
removeStorage('editGoodsDetils');
|
||||
}
|
||||
|
@ -37,7 +37,7 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { serialize, Toast } from '../../../libs/uniApi.js';
|
||||
import { serialize, Toast } from '@/libs/uniApi.js';
|
||||
export default {
|
||||
props: {
|
||||
allReadySelect: {
|
||||
@ -77,7 +77,6 @@
|
||||
},
|
||||
created() {
|
||||
this.areaList = serialize(this.classifiedData);
|
||||
console.log(this.areaList);
|
||||
},
|
||||
methods: {
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user