liuchengxin
2022-01-24 1908a80cd8224860bb704486fa78a18cc9a06bf7
src/views/device/batch/index.vue
@@ -86,7 +86,7 @@
          <span>{{ parseTime(scope.row.arrivalDate, '{y}-{m}-{d}') }}</span>
        </template>
      </el-table-column>
      <el-table-column label="批次说明" align="center" prop="illustrate" />
      <el-table-column label="批次说明" align="center" prop="illustrate" show-overflow-tooltip />
      <el-table-column label="操作" fixed="right" width="120" align="center" class-name="small-padding fixed-width">
        <template slot-scope="scope">
          <el-button
@@ -302,7 +302,7 @@
    /** 删除按钮操作 */
    handleDelete(row) {
      const ids = row.id || this.ids;
      this.$modal.confirm('是否确认删除?').then(() => {
      this.$modal.confirm(`是否确认删除生产批次为"${row.batch}"的生产批次?`).then(() => {
        this.loading = true;
        return delBatch(ids);
      }).then(() => {