如洲 陈
2025-09-19 46fecd0d5b011f508d4ec70456f95dba193aa782
巡检已提交显示修改
已修改2个文件
10 ■■■■ 文件已修改
pages/QC/XJ/List.vue 8 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
store/index.js 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/QC/XJ/List.vue
@@ -10,7 +10,7 @@
          <button :class="['tab-button', current === 0 ? 'active' : '']"
            @click="onClickItem({currentIndex: 0})">未提交({{uncheckedCount}})</button>
          <button :class="['tab-button', current === 1 ? 'active' : '']"
            @click="onClickItem({currentIndex: 1})">已提交({{checkedCount}})</button>
              @click="onClickItem({currentIndex: 1})">已提交{{checkedCount > 0 ? '(' + checkedCount + ')' : ''}}</button>
        </view>
      </view>
      
@@ -109,7 +109,7 @@
      tipShow: false, // 是否显示顶部提示框
      searchValue: '',
      uncheckedCount: 0,
      checkedCount: '已完成',
        checkedCount: 0,
      optionsIndex: 0,
      options: ['物料编号', '物料名称', '检验单号'],
      lineIndex: 0,
@@ -200,7 +200,7 @@
            this.data = [...this.data, ...res.data.tbBillList];
          }
        }
        this.totalCount = res.totalCount;
          this.totalCount = res.data.totalCount;
        this.totalPage = Math.ceil(this.totalCount / this.limit);
        
        this.noData = this.pageIndex >= this.totalPage;
@@ -208,7 +208,7 @@
        
        // 更新计数 - 参考SJ的实现方式
        if (this.current === 1) {
          this.checkedCount = '已完成(' + this.totalCount + ')';
            this.checkedCount = this.totalCount;
        } else {
          this.uncheckedCount = this.totalCount;
        }
store/index.js
@@ -16,7 +16,7 @@
    // },
    {
        name: '本地调试',
        url: 'http://localhost:5184/api'
        url: 'http://localhost:10054/api'
    },
    {
        name: '正式地址',