123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391 |
- var app = getApp();
- Page({
- data: {
- placeholdeImg: app.globalData.placeholdeImg,
- navList: [{
- name: "出售中",
- status: "1"
- }, {
- name: "库存预警",
- status: "8"
- }, {
- name: "已下架",
- status: "0"
- }, {
- name: "待审核",
- status: "4"
- }
- ],
- currentTab: 1,
- list: [],
- loadText: "加载中...",
- noData: 0,
- loadMore: true,
- showActionsheet: false,
- groups: [
- { text: '删除', type: 'warn', value: 1 },
- { text: '下架', value: 2 },
- { text: '修改库存', value: 5 }
- // { text: '编辑', value: 3 }
- ],
- buttons: [{text: '取消'}, {text: '确定'}],
- editSkuNum: 0
- },
- page: 1,
- keywords: '',
- goodsId: '', //当前操作的商品id
- onLoad: function (options) {
- let currentTab = options.status || 1;
- this.setData({
- currentTab
- }, ()=>{
- this.initFn();
- })
- },
- initFn: function(keywords=''){
- this.page = 1;
- this.keywords = keywords;
- this.setData({
- list: [],
- loadText: "加载中...",
- noData: 0,
- loadMore: true,
- },()=>{
- this.getData();
- })
- },
- /**
- * 切换导航
- */
- switchNav: function (e) {
- let that = this;
- let curIdx = e.target.dataset.current*1;
- if (this.data.currentTab === curIdx) return false;
- let groups = [
- { text: '删除', type: 'warn', value: 1 },
- { text: '下架', value: 2 },
- { text: '修改库存', value: 5 }
- // { text: '编辑', value: 3 }
- ]
- if(curIdx==0) {
- groups = [
- { text: '删除', type: 'warn', value: 1 },
- { text: '上架', value: 4 },
- { text: '修改库存', value: 5 }
- // { text: '编辑', value: 3 }
- ]
- } else if(curIdx==4){
- groups = [
- { text: '删除', type: 'warn', value: 1 },
- { text: '修改库存', value: 5 }
- // { text: '编辑', value: 3 }
- ]
- } else if(curIdx==8){
- groups = [
- { text: '删除', type: 'warn', value: 1 },
- { text: '下架', value: 2 },
- { text: '修改库存', value: 5 }
- ]
- }
- this.setData({
- currentTab: 1 * e.target.dataset.current,
- groups
- }, ()=>{
- that.initFn();
- });
- },
- goResult: function(e) {
- let keyword = e.detail.value.replace(/\s+/g, '');
- // if (!keyword) {
- // wx.showToast({
- // title: '请输入关键词',
- // icon: 'none'
- // })
- // return;
- // }
- this.initFn(keyword);
- },
- getData: function () {
- let that = this;
- let token = wx.getStorageSync('token');
- let grounding = this.data.currentTab;
- let keywords = this.keywords;
- wx.showLoading();
- app.util.request({
- url: 'entry/wxapp/index',
- data: {
- controller: 'supplymobile.get_supply_goodslist',
- token,
- grounding,
- page: this.page,
- keywords
- },
- dataType: 'json',
- success: function (res) {
- if (res.data.code == 0) {
- let h = {};
- let list = res.data.data;
- if (list.length == 0) {
- if(that.page==1) {
- h.noData = 1;
- } else {
- h.loadMore = false;
- h.noMore = false;
- h.loadText = "没有更多记录了~"
- }
- }
- if (list.length < 10) h.noMore = true;
- let oldList = that.data.list;
- list = oldList.concat(list);
- that.page++;
- that.setData({ list, ...h })
- } else {
- app.util.message(res.data.msg, 'switchTo:/lionfish_comshop/pages/user/me', 'error');
- }
- wx.hideLoading();
- }
- })
- },
- handleActionsheet: function (e) {
- let idx = (e && e.currentTarget.dataset.index) || 0;
- let id = (e && e.currentTarget.dataset.id) || 0;
- let list = this.data.list;
- let goodsItem = list[idx];
- let h = {};
- if(id) { h.goodsItem = goodsItem }
- this.setData({
- showActionsheet: !this.data.showActionsheet,
- ...h
- })
- },
- handleBtn(e) {
- let goodsItem = this.data.goodsItem;
- let goodsId = goodsItem.id;
- let hasoption = goodsItem.hasoption;
- let type = e.detail.value; // 1删除 2下架 3编辑 4上下架 5修改库存
- this.handleActionsheet();
- switch(type) {
- case 1:
- this.actionConfirm('是否删除该商品').then(()=>{
- this.delGoods(goodsId)
- });
- break;
- case 2:
- this.actionConfirm('是否下架该商品').then(()=>{
- this.undercarriage(goodsId)
- });
- break;
- case 3:
- console.log('3编辑')
- break;
- case 4:
- this.actionConfirm('是否上架该商品').then(()=>{
- this.upcarriage(goodsId)
- });
- break;
- case 5:
- // 修改库存
- if(hasoption==1) {
- wx.navigateTo({ url: `/lionfish_comshop/moduleB/supply/editSku?id=${goodsId}` })
- } else {
- // 显示弹窗
- this.setData({ editSkuVisible: true, editSkuNum: goodsItem.total || 0 })
- }
- break;
- default:
- console.log('默认操作')
- }
- },
- /**
- * 下架
- * @param {*} goods_id
- */
- undercarriage: function (goods_id) {
- let that = this;
- let token = wx.getStorageSync('token');
- wx.showLoading();
- app.util.request({
- url: 'entry/wxapp/index',
- data: {
- controller: 'supplymobile.down_supply_goods',
- token,
- goods_id
- },
- dataType: 'json',
- success: function (res) {
- wx.hideLoading();
- if (res.data.code == 0) {
- let list = that.data.list || [];
- list = list.filter(item=>item.id!=goods_id);
- let h = {};
- if(list.length==0) h.noData = 1;
- h.list = list;
- that.setData(h);
- wx.showToast({
- title: '下架成功',
- icon: 'none'
- })
- } else {
- app.util.message(res.data.msg, '', 'error');
- }
- }
- })
- },
- /**
- * 上架
- * @param {*} goods_id
- */
- upcarriage: function (goods_id) {
- let that = this;
- let token = wx.getStorageSync('token');
- wx.showLoading();
- app.util.request({
- url: 'entry/wxapp/index',
- data: {
- controller: 'supplymobile.up_supply_goods',
- token,
- goods_id
- },
- dataType: 'json',
- success: function (res) {
- wx.hideLoading();
- if (res.data.code == 0) {
- let list = that.data.list || [];
- list = list.filter(item=>item.id!=goods_id);
- let h = {};
- if(list.length==0) h.noData = 1;
- h.list = list;
- that.setData(h);
- wx.showToast({
- title: '上架成功',
- icon: 'none'
- })
- } else {
- that.initFn();
- app.util.message(res.data.msg, '', 'error');
- }
- }
- })
- },
- delGoods: function (goods_id) {
- let that = this;
- let token = wx.getStorageSync('token');
- wx.showLoading();
- app.util.request({
- url: 'entry/wxapp/index',
- data: {
- controller: 'supplymobile.delete_supply_goods',
- token,
- goods_id
- },
- dataType: 'json',
- success: function (res) {
- wx.hideLoading();
- if (res.data.code == 0) {
- let list = that.data.list || [];
- list = list.filter(item=>item.id!=goods_id);
- let h = {};
- if(list.length==0) h.noData = 1;
- h.list = list;
- that.setData(h);
- wx.showToast({
- title: '删除成功',
- icon: 'none'
- })
- } else {
- app.util.message(res.data.msg, '', 'error');
- }
- }
- })
- },
- actionConfirm: function(content) {
- return new Promise((resolve, reject)=>{
- wx.showModal({
- title: '提示',
- content,
- showCancel: true,
- success: (result) => {
- if (result.confirm) {
- resolve();
- } else if (result.cancel) {
- console.log('用户点击取消')
- }
- }
- })
- })
- },
- /**
- * 修改库存
- */
- editSku: function(e){
- if(e.detail.index==0) {
- this.setData({ editSkuVisible: false })
- } else {
- let editSkuNum = this.data.editSkuNum;
- if(editSkuNum==='') {
- return wx.showToast({
- title: '请输入正确的数量',
- icon: 'none'
- })
- }
- this.subSku();
- }
- },
- subSku: function(){
- let goodsItem = this.data.goodsItem;
- let goodsId = goodsItem.id;
- console.log(goodsId);
- let editSkuNum = this.data.editSkuNum;
- let token = wx.getStorageSync('token');
- let params = {
- token,
- goods_id: goodsId,
- is_has_option: 0,
- quantity: editSkuNum
- };
- app.util.ProReq('supplymobile.modify_supply_goods_quantity', params).then(res=>{
- let list = this.data.list || [];
- list.map(item=>{ if(item.id == goodsId) item.total = editSkuNum; })
- this.setData({ list, editSkuVisible: false, editSkuNum: 0, goodsItem: '' })
- }).catch(err=>{
- app.util.message(err.msg || '请求出错', 'switchTo:/lionfish_comshop/pages/user/me', 'error');
- })
- },
- bindSkuIpt: function(e) {
- let val = e.detail.value || 0;
- this.setData({ editSkuNum: parseInt(val) });
- return parseInt(val)
- },
- /**
- * 页面相关事件处理函数--监听用户下拉动作
- */
- onPullDownRefresh: function () {
-
- },
- /**
- * 页面上拉触底事件的处理函数
- */
- onReachBottom: function () {
- if (!this.data.loadMore) return false;
- this.getData();
- }
- })
|