付延余
2022-12-19 d698c77ac8f21ef383a1557be3dfdabbc2d76d61
pages/new-application/new-application.vue
@@ -23,7 +23,7 @@
               </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">
@@ -86,14 +86,17 @@
   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);
            }
         });