UI.Confirm('切换医疗单位,是否继续?', '三佳提示', {})
.then(() => {
// 清空右上表格数据
this.$refs['dynamicValidateForm'].resetFields();
})
.catch(() => {});
this.$confirm('是否确认删除?', '三佳提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(async () => {
this.initSetDeptOfficeWindowsForm = [];
this.initSetDeptOfficeWindowsFormAggrid();
}).catch(() => {
this.$message({
type: 'info',
message: '已取消删除'
});
});