| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- const Constants = require('@/utils/Constants.js')
- const mixins = require('@/mixins/index.js')
- Page({
- mixins: [mixins],
- /**
- * 页面的初始数据
- */
- data: {
- // 路由
- routeObjName: 'common',
- // 列表区(内容)
- contentList: [
- { name: 'dataCode', title: '数据编码' },
- { name: 'dictCode', title: '字典项目' },
- ],
- },
- /**
- * @desc : 点击事件-返回数据
- * @author : 姜永辉
- * @date : 2022/5/23 15:16
- */
- toDetail(e) {
- let item = e.detail.item
- const eventChannel = this.getOpenerEventChannel();
- eventChannel.emit('bindData', {
- data: {
- id: item.dataId,
- name: item.dataValue,
- dictCode: item.dictCode,
- dataCode: item.dataCode,
- flgDefault: item.flgDefault,
- }
- })
- wx.navigateBack({
- delta: 1
- })
- },
- /**
- * @desc : 查询 入库单
- * @date : 2024年3月8日
- * @author : 姜永辉
- */
- getData(params) {
- // 从上一个页面的urlkeypara传入
- params.dictCode = this.data.item.urlKeyParam
- return this.excute(this.data.service, this.data.service.getDictionaryData, params);
- },
-
- /**
- * @desc : 加载数据
- * @date : 2024/2/1 15:49
- * @author : 姜永辉
- */
- loadInit() {
- // 销售出库
- if (this.data.item.outType == Constants.outType.sale) {
- wx.setNavigationBarTitle({
- title: mixins.$t('saleOutBound'),
- })
-
- } else if (this.data.item.outType == Constants.outType.other) {
- // 其他出库
- wx.setNavigationBarTitle({
- title: mixins.$t('otherOutWh'),
- })
-
- } else {
-
- wx.setNavigationBarTitle({
- title: mixins.$t('purReturnOutBound'),
- })
- }
- },
- })
|