|
@@ -791,7 +791,23 @@ export default {
|
|
|
this.studentVisible = false;
|
|
|
},
|
|
|
payRemind(){
|
|
|
- console.log(this.activeChiose)
|
|
|
+ console.log(this.activeChiose)
|
|
|
+ this.$confirm('以下, 是否继续?', '提示', {
|
|
|
+ confirmButtonText: '确定',
|
|
|
+ cancelButtonText: '取消',
|
|
|
+ type: 'warning'
|
|
|
+ }).then(() => {
|
|
|
+ this.$message({
|
|
|
+ type: 'success',
|
|
|
+ message: '删除成功!'
|
|
|
+ });
|
|
|
+ }).catch(() => {
|
|
|
+ this.$message({
|
|
|
+ type: 'info',
|
|
|
+ message: '已取消删除'
|
|
|
+ });
|
|
|
+ });
|
|
|
+
|
|
|
}
|
|
|
},
|
|
|
watch: {
|