曹睿
3 天以前 aca7aa9ce32acc4c8795342f945b027d3bc9f62a
src/pages/production/wire/report/wireForm.vue
@@ -51,9 +51,9 @@
        clearable
        placeholder="请输入杆包号"
      >
          <template #label>
            <span style="color: #F56C6C">杆包号</span>
          </template>
        <template #label>
          <span style="color: #f56c6c">杆包号</span>
        </template>
      </wd-input>
      <wd-input
        v-model="model.dishModel"
@@ -62,9 +62,9 @@
        clearable
        placeholder="请输入盘型号"
      >
          <template #label>
            <span style="color: #F56C6C">盘型号</span>
          </template>
        <template #label>
          <span style="color: #f56c6c">盘型号</span>
        </template>
      </wd-input>
      <wd-input
        v-model="model.actuallyLength"
@@ -73,9 +73,9 @@
        clearable
        placeholder="请输入实际长度"
      >
          <template #label>
            <span style="color: #F56C6C">实际长度(m)</span>
          </template>
        <template #label>
          <span style="color: #f56c6c">实际长度(m)</span>
        </template>
      </wd-input>
      <wd-input
        v-model="model.actuallyWeight"
@@ -84,9 +84,9 @@
        clearable
        placeholder="请输入实际重量"
      >
          <template #label>
            <span style="color: #F56C6C">实际重量(kg)</span>
          </template>
        <template #label>
          <span style="color: #f56c6c">实际重量(kg)</span>
        </template>
      </wd-input>
    </wd-cell-group>
    <wd-toast />
@@ -123,7 +123,7 @@
  });
  if (code == 200) {
    toast.success("提交成功");
    resetForm()
    resetForm();
    return true;
  } else {
    toast.error("提交失败");
@@ -142,7 +142,7 @@
  const arr = code.code.split(",");
  model.poleNumber = arr[3]; //  领用杆号
  model.poleWeight = arr[4]; //  杆重
  model.poleModel = 'Φ' + arr[1].slice(2); //  杆型号
  model.poleModel = arr[2]; //  杆型号
};
onLoad((options: any) => {