Commit aa3fdec3 authored by youjie's avatar youjie

no message

parent 0ef09c33
......@@ -301,7 +301,7 @@
}
},
getList() { //获取列表数据
this.loading = true
this.apipost("admin_get_GetEmpBankAccountPageList", this.msg, res => {
if(res.data.resultCode==1){
this.list = res.data.data.pageData;
......@@ -386,22 +386,25 @@
// this.addMsg.Status = this.dataList[index].Status.toString();
},
deleteData(id){
this.$confirm(this.$t('ground.querenqiyong'), '提示', {
confirmButtonText: this.$t('pub.sureBtn'),
cancelButtonText: this.$t('pub.cancelBtn'),
let that = this
this.$confirm(that.$t('ground.querenqiyong'), '提示', {
confirmButtonText: that.$t('pub.sureBtn'),
cancelButtonText: that.$t('pub.cancelBtn'),
type: 'warning'
}).then(() => {
this.apipost('admin_post_DelEmpBankAccount', {
BAId:id
}, res => {
if(res.data.resultCode == 1) {
this.$message.success(this.$t('pub.saveYes'))
this.getList();
}
that.$message.success('操作成功')
that.getList();
}else{
that.$message.info('操作失败')
}
}, err => {})
}).catch(() => {
this.$message.info(this.$t('ground.yiquxiao'))
that.$message.info('操作失败')
});
},
handleCurrentChange(val) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment