spring
2025-09-23 ab27e3ac8c7e90fd267bd6c3f0c0e06f25469697
src/pages/production/wire/report/wire.vue
@@ -22,6 +22,9 @@
        </template>
        <ProductionCard :data="cardAttr" :value="item" />
        <template #footer>
          <wd-button size="small" plain @click="toAttachment(item.id)" style="margin-right: 10px">
            附件
          </wd-button>
          <wd-button size="small" plain @click="toCheck(item.id)">自检</wd-button>
        </template>
      </wd-card>
@@ -120,6 +123,12 @@
  dialog.visible = false;
};
const toAttachment = (id: number) => {
  uni.navigateTo({
    url: `/pages/production/wire/attachment/index?reportId=${id}`,
  });
};
const toCheck = (id: number) => {
  uni.navigateTo({
    url: `/pages/production/wire/selfInspect/index?id=${id}`,