bug修改

featFunction
anthonywj 3 years ago
parent 02c70ab039
commit 1e262dc046

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

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

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

@ -80,56 +80,6 @@
> >
</el-pagination> </el-pagination>
</el-card> </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 <el-dialog
title="编辑" title="编辑"
:visible.sync="errorDistributionVisible" :visible.sync="errorDistributionVisible"

Loading…
Cancel
Save