曹睿
6 天以前 aca7aa9ce32acc4c8795342f945b027d3bc9f62a
src/pages/production/wire/report/wire.vue
@@ -1,6 +1,6 @@
<template>
  <view class="page pt-2">
    <z-paging ref="pagingRef" v-model="wireReportList" class="list" @query="getWireReportList">
  <view class="list">
    <z-paging ref="pagingRef" v-model="wireReportList" :fixed="false" @query="getWireReportList">
      <template #top>
        <CardTitle title="报工信息" :hideAction="true" :full="false" @action="addReport" />
      </template>
@@ -17,7 +17,7 @@
              <text class="text-[#0D867F] ml-2 font-medium">生产人</text>
              <text class="text-[#333333] ml-2">{{ item.productUser }}</text>
            </view>
            <view class="text-[#A8A8A8]" @click="toEdit">编辑</view>
            <!-- <view class="text-[#A8A8A8]" @click="toEdit">编辑</view> -->
          </view>
        </template>
        <ProductionCard :data="cardAttr" :value="item" />
@@ -26,7 +26,6 @@
        </template>
      </wd-card>
    </z-paging>
    <wd-popup v-model="dialog.visible" position="bottom" custom-class="yl-popup">
      <view class="action px-3">
        <wd-button type="text" @click="cancel">取消</wd-button>
@@ -45,7 +44,6 @@
import zPaging from "@/components/z-paging/z-paging.vue";
import { onLoad } from "@dcloudio/uni-app";
import ManageApi from "@/api/product/manage";
import WireApi from "@/api/product/wire";
const pagingRef = ref();
const wireFormRef = ref();
@@ -59,26 +57,40 @@
  {
    label: "领用杆号",
    prop: "poleNumber",
    span: 24,
  },
  {
    label: "单丝盘号",
    prop: "monofilamentNumber",
    span: 24,
  },
  {
    label: "杆型号",
    prop: "poleModel",
  },
  {
    label: "杆包号",
    prop: "polePackageNumber",
  },
  {
    label: "杆重(kg)",
    prop: "poleWeight",
  },
  {
    label: "单丝盘号",
    prop: "monofilamentNumber",
  },
  {
    label: "规格型号",
    prop: "model",
  },
  {
    label: "盘长(m)",
    prop: "ontLength",
    label: "盘型号",
    prop: "dishModel",
  },
  {
    label: "理论重量(kg)",
    prop: "theoryWeight",
    label: "盘长(m)",
    prop: "oneLength",
  },
  {
    label: "实际长度",
    prop: "actuallyLength",
  },
  {
    label: "实际重量(kg)",
@@ -88,23 +100,19 @@
const wireReportList = ref<any[]>([]);
const toEdit = () => {
  uni.navigateTo({
    url: "/pages/production/wire/report/wireEdit",
  });
};
// const toEdit = () => {
//   uni.navigateTo({
//     url: "/pages/production/wire/report/wireEdit",
//   });
// };
const addReport = () => {
  dialog.visible = true;
};
const submit = async () => {
  toast.show("提交");
  await WireApi.addWireOutput({
    wireId: paramsId.value,
    type: "拉丝",
    ...wireFormRef.value.model,
  });
const submit = () => {
  dialog.visible = !wireFormRef.value.submit();
  pagingRef.value.reload();
};
const cancel = () => {
@@ -133,17 +141,14 @@
</script>
<style lang="scss" scoped>
.page {
.list {
  height: calc(100vh - 30px);
  padding: 12px;
  background: #f3f9f8;
  .list {
    margin: 12px;
    background: #f3f9f8;
    :deep() {
      .round {
        border-radius: 4px;
      }
  :deep() {
    .round {
      border-radius: 4px;
    }
  }
}