bug修改

featFunction
anthonywj 3 years ago
parent 02c70ab039
commit 1e262dc046

@ -1337,7 +1337,7 @@
></selectErp>
</el-dialog>
<el-dialog
title="选入DI器械信息"
title="拆分产品"
:visible.sync="selectLocalVisible"
width="85%"
:close-on-click-modal="false"

@ -1492,13 +1492,20 @@ export default {
delWarehouseUser(id) {
let params = {id: id};
deleteWarehouseUser(params).then((res) => {
this.$message.success("已移除");
for (let i = 0; i < this.userData.length; i++) {
if (this.userData[i].id == id) {
this.userData.splice(i, 1);
return;
if (res.code == 20000) {
this.$message.success("已移除");
for (let i = 0; i < this.userData.length; i++) {
if (this.userData[i].id == id) {
this.userData.splice(i, 1);
return;
}
}
} else {
this.$message.error(res.message);
}
}).catch((error) => {
this.$message.error("移除失败");
})

@ -129,6 +129,7 @@
@current-change="handleCurrentChange"
layout="prev, pager, next"
:total="total"
:current-page="filterQuery.page"
></el-pagination>
</div>
</template>
@ -143,7 +144,7 @@ export default {
companyName: "",
checkType: "",
page: 1,
limit: 20,
limit: 10,
},
total: 0,
loading: false,
@ -193,12 +194,18 @@ export default {
this.filterQuery = {
name: "",
page: 1,
limit: 20,
limit: 10,
};
this.getList();
},
formSubmit() {
if (this.$isBlank(this.formData.name)) {
this.$message.error("部门名称不能为空!");
return;
}
if (this.formName == "add") {
addDept(this.formData)
@ -308,6 +315,12 @@ export default {
id: row.id,
};
deleteDept(tQuery).then(() => {
this.filterQuery = {
name: "",
page: 1,
limit: 10,
};
this.getList();
});
})

@ -80,56 +80,6 @@
>
</el-pagination>
</el-card>
<!-- <el-card class="el-card">-->
<!-- <el-table v-loading="detailLoading"-->
<!-- :data="detailList"-->
<!-- style="width: 100%">-->
<!-- <el-table-column type="index" label="序号" width="50"></el-table-column>-->
<!-- <el-table-column label="产品名称" prop="productName" width="200"></el-table-column>-->
<!-- <el-table-column label="包装规格" prop="spec" width="200"></el-table-column>-->
<!-- <el-table-column label="批次号" prop="batchNo" width="100"></el-table-column>-->
<!-- <el-table-column label="生产日期" prop="productDate" width="100"></el-table-column>-->
<!-- <el-table-column label="失效日期" prop="expireDate" width="100"></el-table-column>-->
<!-- <el-table-column label="配货数量" prop="count" width="100"></el-table-column>-->
<!-- <el-table-column label="实际数量" prop="reCount" width="100"></el-table-column>-->
<!-- <el-table-column label="扫码数量" prop="sweepCount" width="100"></el-table-column>-->
<!-- <el-table-column label="操作" fixed="right" width="250">-->
<!-- <template slot-scope="scope" v-if="rowStatus === '201'">-->
<!-- <el-button-->
<!-- type="text"-->
<!-- size="small"-->
<!-- @click.native="handleDetailForm(scope.$index, scope.row)"-->
<!-- >编辑-->
<!-- </el-button-->
<!-- >-->
<!-- <el-button-->
<!-- type="text"-->
<!-- size="small"-->
<!-- @click.native="copyDetail(scope.row)"-->
<!-- >复制-->
<!-- </el-button-->
<!-- >-->
<!-- <el-button-->
<!-- type="text"-->
<!-- size="small"-->
<!-- @click.native="deleteStockOrderDetail(scope.row)"-->
<!-- >删除-->
<!-- </el-button-->
<!-- >-->
<!-- </template>-->
<!-- </el-table-column>-->
<!-- </el-table>-->
<!-- <el-pagination-->
<!-- :page-size="detailQuery.limit"-->
<!-- @current-change="detailHandleCurrentChange"-->
<!-- layout="prev, pager, next"-->
<!-- :total="detailTotal"-->
<!-- >-->
<!-- </el-pagination>-->
<!-- </el-card>-->
<el-dialog
title="编辑"
:visible.sync="errorDistributionVisible"

Loading…
Cancel
Save