| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801 |
- /*******************************************************************************
- * Copyright(c) 2022 dongke All rights reserved. / Confidential
- * 类的信息:
- * 1.程序名称:活动(用于续费、注册)
- * 编辑履历:
- * 作者 日期 版本 修改内容
- * 周兴 2024-5-15 1.00 新建
- *******************************************************************************/
- const Constants = require('@/utils/Constants.js');
- const util = require('@/utils/util.js')
- const mixins = require('@/mixins/index.js');
- const config = require('@/config/config.js');
- const app = getApp()
- Page({
- mixins: [mixins],
- /**
- * 页面的初始数据
- */
- data: {
- imageUrl: config.image_url + '/static/img/',
- // 是否加载完毕
- loadFlag: false,
- // 是否显示vip
- showVip: false,
- // 升级标识
- upgradeFlag: false,
- gradeCode: null,
- freeFlag: false,
- // 企业名称
- companyName: null,
- cpManager: null,
- cpPhone: null,
- webMaxNum: null,
- wxMaxNum: null,
- cpEndDate: null,
- activityTable: null,
- vipTable: [],
- readFlag: false,
- staffCount: {
- maxNum: 1,
- webMaxNum: 0,
- wxMaxNum: 0
- },
- curentAdItem: null,
- // 选择的vip报表
- chooseVipFlag: false,
- summaryInfo: {},
- routeObjName: 'company',
- pageFlag: false,
- // 当前用户授权数
- currentUserCount: null,
- //按钮
- buttonSaveList: [
- { code: 'save', title: mixins.$t('save'), width: '120rpx' }
- ],
- noticeInfo: Constants.noticeInfo,
- funcMenu: [
- {
- title: '订单开单',
- icon: 'btn-account-receivable.png',
- },
- {
- title: '销售出库',
- icon: 'btn-shipped.png',
- },
- {
- title: '销售退货',
- icon: 'btn-stored.png',
- },
- {
- title: '销售跟踪',
- icon: 'btn-shipped-out.png',
- },
- {
- title: '采购订单',
- icon: 'btn-account-receivable.png',
- },
- {
- title: '采购入库',
- icon: 'btn-shipped.png',
- },
- {
- title: '采购退货',
- icon: 'btn-stored.png',
- },
- {
- title: '以销定采',
- icon: 'btn-shipped-out.png',
- },
- ],
- funcMenuFlg: false,
- userEndDate: null,
- },
- /**
- * @desc : 选择活动明细
- * @author : 周兴
- * @date : 2024/4/1
- */
- chooseAdItem(e) {
- let item = e.currentTarget.dataset.item;
- let summaryInfo = this.data.summaryInfo
- // 计算截止日期
- let months = item.validLong + item.extraLong
- let endDate = app.globalData.company.endDate
- // 升级需要从当天开始算
- if (this.data.upgradeFlag) {
- endDate = new Date()
- }
- endDate = new Date(endDate).addMonths(months).addDays(-1)
- summaryInfo.endDate = endDate.toDateStr();
- this.setData({
- curentAdItem: item,
- summaryInfo: summaryInfo
- })
- // 计算金额
- this.countSummaryAmount(item);
- },
- /**
- * @desc : 选择VIP报表明细
- * @author : 周兴
- * @date : 2024/4/1
- */
- chooseVipItem(e) {
- let item = e.currentTarget.dataset.item
- let index = e.currentTarget.dataset.index
- let vipTable = this.data.vipTable
- item.chooseVipFlag = !item.chooseVipFlag
- vipTable[index] = item
- this.setData({
- chooseVipFlag: !this.data.chooseVipFlag,
- vipTable,
- })
- // 计算金额
- this.countSummaryAmountSTD();
- },
- /**
- * @desc : 勾选已阅读表示
- * @author : 周兴
- * @date : 2024/5/17
- */
- handleChangeCheckbox(e) {
- this.setData({
- readFlag: e.detail
- })
- },
- /**
- * @desc : 计算金额
- * @author : 周兴
- * @date : 2024/4/1
- */
- countSummaryAmount() {
- let item = this.data.curentAdItem;
- if (!item) return;
- let staffCount = this.data.staffCount;
- let summaryInfo = this.data.summaryInfo
- let amount = 0;
- // 先清空
- summaryInfo.amountInfo = '';
- // 共通用户
- if (staffCount.maxNum) {
- summaryInfo.amountInfo = item.stdPrice + '(打包价格)*' + staffCount.maxNum
- amount += item.stdPrice * staffCount.maxNum
- }
- // 手机端用户
- if (staffCount.wxMaxNum) {
- if (summaryInfo.amountInfo) {
- summaryInfo.amountInfo += ' + '
- }
- summaryInfo.amountInfo += item.wxPrice + '(手机端价格)*' + staffCount.wxMaxNum
- amount += item.wxPrice * staffCount.wxMaxNum
- }
- // 电脑端用户
- if (staffCount.webMaxNum) {
- if (summaryInfo.amountInfo) {
- summaryInfo.amountInfo += ' + '
- }
- summaryInfo.amountInfo += item.webPrice + '(电脑端价格)*' + staffCount.webMaxNum
- amount += item.webPrice * staffCount.webMaxNum
- }
- if (summaryInfo.amountInfo) {
- summaryInfo.amountInfo += ' = ' + amount + '(元)'
- summaryInfo.amount = amount;
- }
- this.setData({
- summaryInfo: summaryInfo
- })
- // 统计两端用户数
- this.countStaffInfo();
- },
- /**
- * @desc : 获取标准版的价格显示
- * @author : 周兴
- * @date : 2024/4/1
- */
- countSummaryAmountSTD() {
- let item = this.data.curentAdItem;
- let vipTable = this.data.vipTable
- let summaryInfo = this.data.summaryInfo
- let amount = 0;
- // 先清空
- summaryInfo.amountInfo = '';
- let extendDays = null;
- // 服务器的时间
- let nowDate = new Date(this.data.currentDate.toDateStr());
- extendDays = new Date(summaryInfo.userEndDate).dayDiff(nowDate) + 1;
- if (summaryInfo.wxMaxNum >= 0) {
- // 购买授权
- if (this.data.buyUser) {
- summaryInfo.amountInfo += item.wxPrice + '(元) '
- } else {
- summaryInfo.amountInfo += item.wxPrice + '(元) ' +
- ' * 1(年) * ' + summaryInfo.wxMaxNum + '(个)'
- }
- amount += item.wxPrice * summaryInfo.wxMaxNum
- }
- // vip报表
- if (vipTable && vipTable.length > 0) {
- vipTable.forEach(vipItem => {
- if (vipItem.chooseVipFlag) {
- summaryInfo.amountInfo += ' + ' + vipItem.wxPrice + '(元/' + vipItem.activityItemDescribe + ') ';
- summaryInfo.amountInfo = '( ' + summaryInfo.amountInfo + ' ) ';
- amount += vipItem.wxPrice;
- }
- })
- }
- // 购买授权
- if (this.data.buyUser) {
- summaryInfo.amountInfo += ' / 365(天) * ' + extendDays + '(天) * ' + summaryInfo.wxMaxNum + '(个)'
- if (summaryInfo.amountInfo) {
- amount = (amount / 365 * extendDays).toFixed(2);
- summaryInfo.amountInfo += ' = ' + amount + '(元)'
- summaryInfo.amount = amount;
- }
- this.setData({
- userEndDate: summaryInfo.userEndDate
- })
- } else {
- // 续费
- if (summaryInfo.amountInfo) {
- amount = (amount).toFixed(2);
- summaryInfo.amountInfo += ' = ' + amount + '(元)'
- summaryInfo.amount = amount;
- }
- let userEndDate = new Date(summaryInfo.userEndDate).addMonths(12).addDays(-1)
- this.setData({
- userEndDate: userEndDate.toDateStr()
- })
- }
- // 计算一授权一天的单价
- if (summaryInfo.userEndDate) {
- let price = (summaryInfo.amount / summaryInfo.wxMaxNum / extendDays).toFixed(2);
- summaryInfo.priceInfo = price
- summaryInfo.extendDays = extendDays
- }
- this.setData({
- summaryInfo: summaryInfo
- })
- },
- /**
- * @desc : 统计电脑端和手机端的用户数
- * @author : 周兴
- * @date : 2024/4/1
- */
- countStaffInfo() {
- let summaryInfo = this.data.summaryInfo;
- let staffCount = this.data.staffCount;
- if (!staffCount) {
- return;
- }
- let webNum = staffCount.webMaxNum + staffCount.maxNum
- let wxNum = staffCount.wxMaxNum + staffCount.maxNum
- summaryInfo.staffInfo = '可配置手机端授权' + wxNum + '个;电脑端授权' + webNum + '个(包含当前用户)'
- summaryInfo.webMaxNum = webNum
- summaryInfo.wxMaxNum = wxNum
- // 升级从当天算
- if (this.data.upgradeFlag) {
- summaryInfo.buyBeginDate = new Date().addDays(1).toDateStr();
- summaryInfo.extendDays = new Date(summaryInfo.endDate).dayDiff(new Date().addDays(1));
- } else {
- summaryInfo.buyBeginDate = new Date(this.data.cpEndDate).addDays(1).toDateStr();
- summaryInfo.extendDays = new Date(summaryInfo.endDate).dayDiff(new Date(this.data.cpEndDate).addDays(1));
- }
- // 计算一授权一天的单价
- let price = (summaryInfo.amount / (webNum + wxNum) / summaryInfo.extendDays).toFixed(2);
- summaryInfo.priceInfo = price
- this.setData({
- summaryInfo: summaryInfo
- })
- },
- /**
- * @desc : 修改用户数
- * @author : 周兴
- * @date : 2024/4/1
- */
- changeStaffCount(e) {
- let staffCount = this.data.staffCount
- let ds = e.currentTarget.dataset
- if (ds.type == 'wx') {
- staffCount.wxMaxNum = e.detail
- } else if (ds.type == 'web') {
- staffCount.webMaxNum = e.detail
- } else {
- staffCount.maxNum = e.detail
- }
- this.setData({
- staffCount: staffCount
- })
- // 计算金额
- this.countSummaryAmount();
- },
- /**
- * @desc : 保存
- * @author : 周兴
- * @date : 2024/4/1
- */
- handleSave() {
- let summaryInfo = this.data.summaryInfo;
- let currentUserCount = this.data.currentUserCount
- if (!currentUserCount) {
- return;
- }
- if (this.data.gradeCode == Constants.gradeCode.STD) {
- // 必须要选择一个授权
- if (Number(summaryInfo.wxMaxNum) <= 0 && this.data.buyUser) {
- util.showToast('请选择一个授权');
- return false
- }
- // 功能包
- let chooseVipFlag = false
- this.data.vipTable.forEach(it => {
- if (it.chooseVipFlag) {
- chooseVipFlag = true
- return
- }
- })
- if (Number(summaryInfo.wxMaxNum) <= 0 && !this.data.buyUser && !chooseVipFlag) {
- util.showToast('请选择一个授权或功能包');
- return false
- }
- // 判断数量是否超出续约授权
- console.log(currentUserCount.wxNum - summaryInfo.wxMaxNum);
- if (currentUserCount.wxNum > summaryInfo.wxMaxNum && summaryInfo.reCountFlag
- && currentUserCount.wxNum > 1 && currentUserCount.wxNum - summaryInfo.wxMaxNum > 1) {
- let staffInfo = [{ wxMaxNum: Number(this.data.wxMaxNum) + 1, title: '当前授权', wxTitle: '手机授权', code: 'current', userTitle: '当前用户' }, { wxMaxNum: summaryInfo.wxMaxNum, title: '续费授权', wxTitle: '手机授权', code: 'renew' }]
- this.save({ saveFlag: false, url: '/package-basic-data/pages/activity/detail/detail?staffInfo=' + JSON.stringify(staffInfo) });
- } else {
- this.save({});
- }
- } else {
- // 判断数量是否超出续约授权
- if (currentUserCount.wxNum > summaryInfo.wxMaxNum || currentUserCount.webNum > summaryInfo.webMaxNum) {
- let staffInfo = [{ wxMaxNum: this.data.wxMaxNum, webMaxNum: this.data.webMaxNum, title: '当前授权', wxTitle: '手机授权', webTitle: (app.globalData.company.gradeCode == Constants.gradeCode.STD) ? '' : '电脑授权', code: 'current', userTitle: '当前用户' }, { wxMaxNum: summaryInfo.wxMaxNum, webMaxNum: summaryInfo.webMaxNum, title: '续费授权', wxTitle: '手机授权', webTitle: '电脑授权', code: 'renew' }]
- this.save({ saveFlag: false, url: '/package-basic-data/pages/activity/detail/detail?staffInfo=' + JSON.stringify(staffInfo) });
- } else {
- this.save({});
- }
- }
- },
- /**
- * @desc : 改变用户授权数
- * @author : 周兴
- * @date : 2024/4/1
- */
- changeUserSTD(e) {
- let summaryInfo = this.data.summaryInfo
- summaryInfo.wxMaxNum = e.detail
- this.setData({
- summaryInfo: summaryInfo
- })
- wx.nextTick(() => {
- // 计算金额
- this.countSummaryAmountSTD();
- });
- },
- /**
- * @desc : 校验
- * @author : 周兴
- * @date : 2024/4/1
- */
- validData() {
- // 专业版校验
- if (this.data.gradeCode == Constants.gradeCode.PRO) {
- // if (!this.data.readFlag) {
- // util.showToast('请勾选阅读须知');
- // return false;
- // }
- let curentAdItem = this.data.curentAdItem;
- if (!curentAdItem) {
- util.showToast('请选择活动');
- return false
- }
- // 必须要选择一个授权
- let staffCount = this.data.staffCount
- if (!staffCount.maxNum && !staffCount.webMaxNum && !staffCount.wxMaxNum) {
- util.showToast('请选择一个授权');
- return false
- }
- } else {
- let curentAdItem = this.data.curentAdItem;
- if (!curentAdItem) {
- util.showToast('请选择活动');
- return false
- }
- }
- return true;
- },
- /**
- * @desc : 设置保存参数
- * @author : 周兴
- * @date : 2024/4/1
- */
- setParams(params) {
- let summaryInfo = this.data.summaryInfo
- let curentAdItem = this.data.curentAdItem
- let cpEndDate = this.data.cpEndDate
- if (!summaryInfo || !cpEndDate) return;
- params.endDate = summaryInfo.endDate
- params.userEndDate = summaryInfo.userEndDate
- params.gradeCode = this.data.gradeCode
- params.cpId = app.globalData.company.cpId
- params.tradeNo = this.generateRandomNo();
- params.wxUserId = app.globalData.user.userId
- params.tradeAmount = summaryInfo.amount
- params.buyBeginDate = summaryInfo.buyBeginDate;
- params.buyEndDate = summaryInfo.endDate
- params.extendDays = summaryInfo.extendDays;
- if (this.data.gradeCode == Constants.gradeCode.STD) {
- params.buyEndDate = summaryInfo.userEndDate
- params.endDate = app.globalData.company.endDate
- params.wxMaxNum = summaryInfo.wxMaxNum
- if (!summaryInfo.reCountFlag && summaryInfo.wxMaxNumSocial) {
- params.wxMaxNum = summaryInfo.wxMaxNum + summaryInfo.wxMaxNumSocial
- }
- let funPackage = app.globalData.company.funPackage ? [...app.globalData.company.funPackage] : []
- params.funPackage = funPackage
- // 续费的时候需要传
- // 购买授权
- if (this.data.buyUser) {
- params.reNew = app.globalData.company.reNew
- } else {
- let renew = {
- "user_end_date": this.data.userEndDate,
- "wx_max_num": summaryInfo.wxMaxNum,
- }
- params.reNew = renew
- // 续费时候保持原来的 微信人数
- params.wxMaxNum = summaryInfo.wxMaxNumSocial
- }
- params.webMaxNum = 0
- params.remarks = summaryInfo.amountInfo
- // 选中的功能包的数据
- let activityIds = []
- let itemIds = []
- this.data.vipTable.forEach(it=>{
- if (it.chooseVipFlag) {
- activityIds.push(it.activityId)
- itemIds.push(it.itemId)
- }
- })
- if (activityIds.length > 0){
- params.activityIds = activityIds
- params.activityItemIds = itemIds
- }
- // 交易类型-续费
- params.tradeType = '交易类型-续费'
- } else {
- params.webMaxNum = summaryInfo.webMaxNum
- params.wxMaxNum = summaryInfo.wxMaxNum
- }
- params.buyLong = curentAdItem.activityItemName
- return params;
- },
- /**
- * @desc : 保存数据
- * @author : 周兴
- * @date : 2024/5/17
- */
- saveData(params) {
- return this.excute(this.data.service, this.data.service.reNewCompany, this.data.params).then(res => {
- if (res.data.code == Constants.SUCESS_CODE) {
- // 成功后跳转支付
- this.toPay(res.data.data);
- }
- })
- },
- /**
- * @desc : 查询当前用户授权数
- * @author : 周兴
- * @date : 2024/4/1
- */
- getStaffCount() {
- let service = app.globalData['commonService']
- this.excute(service, service.selectUserCount, {}).then(res => {
- if (res.data.code == Constants.SUCESS_CODE) {
- if (res.data && res.data.data) {
- let currentUserCount = res.data.data;
- this.setData({
- currentUserCount: currentUserCount,
- //服务器的时间
- currentDate: new Date(currentUserCount.currentDate)
- })
- }
- }
- // 获取活动
- this.getActivity()
- this.setData({
- loadFlag: true
- })
- });
- },
- /**
- * @desc : 查询活动
- * @author : 周兴
- * @date : 2024/4/1
- */
- getActivity() {
- let params = {
- appCode: Constants.APP_CODE,
- activityStatus: Constants.kindCode.activityStatus,
- cpId: app.globalData.company.cpId,
- gradeCode: this.data.gradeCode
- }
- // 标准版
- if (this.data.gradeCode == Constants.gradeCode.STD) {
- if (this.data.buyUser) {
- params.activityTypeList = [Constants.kindCode.activityGrade];
- } else {
- params.activityTypeList = [Constants.kindCode.activityGrade, Constants.kindCode.activityFunc];
- }
- } else {
- params.activityTypeList = [Constants.kindCode.activityGrade, Constants.kindCode.activityVip];
- }
- let service = app.globalData['activityService']
- this.excute(service, service.selectActivityItems, params).then(res => {
- if (res.data.code == Constants.SUCESS_CODE) {
- if (res.data && res.data.data) {
- let activityTable = res.data.data;
- // 如果是标准版,需要进行截止日期的处理
- if (this.data.gradeCode == Constants.gradeCode.STD) {
- this.setData({
- activityTable: activityTable.filter(it => it.activityType == Constants.kindCode.activityGrade),
- vipTable: activityTable.filter(it => it.activityType == Constants.kindCode.activityFunc),
- })
- this.handleDataStd(activityTable);
- } else {
- this.setData({
- activityTable: activityTable
- })
- }
- }
- }
- });
- },
- /**
- * @desc : 标准版处理数据
- * @author : 周兴
- * @date : 2024/4/1
- */
- handleDataStd(activityTable) {
- if (activityTable && activityTable.length > 0) {
- let item = activityTable[0]
- this.setData({
- curentAdItem: item
- })
- let summaryInfo = this.data.summaryInfo
- let months = item.validLong + item.extraLong
- //服务器的时间
- let endDate = this.data.currentDate.addMonths(months).addDays(-1)
- let dayDiffs = null;
- if (summaryInfo.userEndDate) {
- dayDiffs = new Date(summaryInfo.userEndDate).dayDiff(this.data.currentDate)
- }
- // 如果截止日期是空,就取活动中的截止日期
- if (!summaryInfo.userEndDate || !dayDiffs || dayDiffs < 0) {
- summaryInfo.userEndDate = endDate.toDateStr();
- // 重新统计,到期续费或者第一次购买用户
- summaryInfo.reCountFlag = true;
- summaryInfo.wxMaxNum = summaryInfo.wxMaxNumSocial
- this.setData({
- showVip: true
- })
- } else {
- // 如果没有购买,需要显示
- if (!app.globalData.company.vip) {
- this.setData({
- showVip: true
- })
- }
- }
- summaryInfo.buyBeginDate = this.data.currentDate.toDateStr();
- this.setData({
- summaryInfo: summaryInfo
- })
- wx.nextTick(() => {
- // 计算金额
- this.countSummaryAmountSTD();
- });
- }
- },
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad(options) {
- console.log(options, "onLoad");
- // 升级
- if (options && options.upgrade) {
- wx.setNavigationBarTitle({
- title: mixins.$t('updateSpecialized'),
- })
- this.setData({
- gradeCode: Constants.gradeCode.PRO,
- upgradeFlag: true
- })
- } else {
- // 购买授权 和续费
- if (options.buyUser) {
- wx.setNavigationBarTitle({
- title: mixins.$t('buyUser'),
- })
- } else {
- wx.setNavigationBarTitle({
- title: mixins.$t('reNew'),
- })
- }
- this.setData({
- gradeCode: app.globalData.company.gradeCode,
- buyUser: options.buyUser
- })
- }
- this.setData({
- companyName: app.globalData.company.cpName,
- cpManager: app.globalData.company.cpManager,
- cpPhone: app.globalData.company.cpPhone,
- cpEndDate: app.globalData.company.endDate,
- webMaxNum: app.globalData.company.webMaxNum,
- wxMaxNum: app.globalData.company.wxMaxNum,
- })
- // 如果是标准版,需要获取用户授权数(手机)
- let summaryInfo = {}
- if (app.globalData.company.gradeCode == Constants.gradeCode.STD && !options.buyUser) {
- summaryInfo.wxMaxNum = app.globalData.company.wxMaxNum
- summaryInfo.reCountFlag = true
- } else {
- summaryInfo.wxMaxNum = 1
- }
- summaryInfo.wxMaxNumSocial = this.data.wxMaxNum
- // 续费用户到期日期
- summaryInfo.userEndDate = app.globalData.company.userEndDate
- this.setData({
- summaryInfo: summaryInfo,
- })
- // 获取活动
- // this.getActivity();
- // 获取当前用户授权数
- this.getStaffCount();
- },
- /**
- * 六大功能的切换
- */
- funcClick(e) {
- let funcMenuFlg = !this.data.funcMenuFlg
- if (funcMenuFlg) {
- this.setData({
- funcMenu: [
- {
- title: '订单开单',
- icon: 'btn-account-receivable.png',
- },
- {
- title: '销售出库',
- icon: 'btn-shipped.png',
- },
- {
- title: '销售退货',
- icon: 'btn-stored.png',
- },
- {
- title: '销售跟踪',
- icon: 'btn-shipped-out.png',
- },
- {
- title: '采购订单',
- icon: 'btn-account-receivable.png',
- },
- {
- title: '采购入库',
- icon: 'btn-shipped.png',
- },
- {
- title: '采购退货',
- icon: 'btn-stored.png',
- },
- {
- title: '以销定采',
- icon: 'btn-shipped-out.png',
- },
- {
- title: '库存查询',
- icon: 'btn-account-receivable.png',
- },
- {
- title: '入库办理',
- icon: 'btn-shipped.png',
- },
- {
- title: '出库办理',
- icon: 'btn-stored.png',
- },
- {
- title: '库存盘点',
- icon: 'btn-shipped-out.png',
- },
- {
- title: '资金账户',
- icon: 'btn-account-receivable.png',
- },
- {
- title: '资金转账',
- icon: 'btn-shipped.png',
- },
- {
- title: '收款单',
- icon: 'btn-stored.png',
- },
- {
- title: '付款单',
- icon: 'btn-shipped-out.png',
- },
- {
- title: '日结对账',
- icon: 'btn-account-receivable.png',
- },
- {
- title: '资金日记账',
- icon: 'btn-shipped.png',
- },
- {
- title: '供应商往来',
- icon: 'btn-stored.png',
- },
- ],
- })
- } else {
- this.setData({
- funcMenu: [
- {
- title: '订单开单',
- icon: 'btn-account-receivable.png',
- },
- {
- title: '销售出库',
- icon: 'btn-shipped.png',
- },
- {
- title: '销售退货',
- icon: 'btn-stored.png',
- },
- {
- title: '销售跟踪',
- icon: 'btn-shipped-out.png',
- },
- {
- title: '采购订单',
- icon: 'btn-account-receivable.png',
- },
- {
- title: '采购入库',
- icon: 'btn-shipped.png',
- },
- {
- title: '采购退货',
- icon: 'btn-stored.png',
- },
- {
- title: '以销定采',
- icon: 'btn-shipped-out.png',
- },
- ],
- })
- }
- this.setData({
- funcMenuFlg
- })
- },
- })
|