| | |
| | | </view> |
| | | <view class="card-left_bottom"> |
| | | <text>版本:v{{ item.version }}</text> |
| | | <text>所属分类:{{ item.categoryTitle }}</text> |
| | | <text>所属分类:{{ item.categoryTitle|| '' }}</text> |
| | | </view> |
| | | </view> |
| | | <view class="card-right"> |
| | |
| | | methods: { |
| | | init() { |
| | | this.newApplicationData = []; |
| | | uni.showLoading({ |
| | | title:'加载中...' |
| | | }) |
| | | this.$reqGet('getNewProcessDataList', this.updateData).then(res => { |
| | | uni.hideLoading(); |
| | | if (res.code === 0) { |
| | | res.data.records.forEach(item => { |
| | | if (item.id == 'WAY_BILL:4:87504') { |
| | | if (item.name == '发运通知单'||item.description == '发运通知单') { |
| | | this.newApplicationData.push(item); |
| | | } |
| | | }); |
| | | |
| | | console.log('新增', res); |
| | | } |
| | | }); |