diff --git a/src/components/AllTypeFile/update.vue b/src/components/AllTypeFile/update.vue index ac21a14..73b84ca 100644 --- a/src/components/AllTypeFile/update.vue +++ b/src/components/AllTypeFile/update.vue @@ -155,7 +155,7 @@ export default { }, // 上传失败 handleUploadError(err) { - this.$modal.msgError("上传文件失败,请重试"); + this.$modal.msgError("文件上传失败,请重试"); this.$modal.closeLoading(); }, uploadSuccess(row) { @@ -169,7 +169,7 @@ export default { fileId:response.data.fileId, fileCode:response.data.fileCode, }); - this.$modal.msgSuccess("上传文件成功"); + this.$modal.msgSuccess("文件上传成功"); } }; }, diff --git a/src/views/contributionAward/aduit/index.vue b/src/views/contributionAward/aduit/index.vue index 365a2bc..8784921 100644 --- a/src/views/contributionAward/aduit/index.vue +++ b/src/views/contributionAward/aduit/index.vue @@ -239,7 +239,7 @@ export default { /**查看按钮 */ handleView(row) { this.editOpen = true; - this.title = "查看奖项"; + this.title = "查看申请"; const applyId = row.applyId || this.ids this.isShowButton = false getDetail(applyId).then(response => { @@ -281,7 +281,7 @@ export default { getDetail(applyId).then(response => { this.form.isReward = response.data.isReward; this.editOpen = true; - this.title = "修改奖项"; + this.title = "修改申请"; this.fileData.forEach((item) => { item.childrenList = [] }) @@ -341,7 +341,7 @@ export default { /** 删除按钮操作 */ handleDelete(row) { const applyId = row.applyId || this.ids - this.$modal.confirm('是否确认删除奖项?').then(function () { + this.$modal.confirm('是否确认删除申请?').then(function () { return delApply(applyId); }).then(() => { this.getList(); diff --git a/src/views/contributionAward/apply/index.vue b/src/views/contributionAward/apply/index.vue index 8e2b0ad..8cf1582 100644 --- a/src/views/contributionAward/apply/index.vue +++ b/src/views/contributionAward/apply/index.vue @@ -309,7 +309,7 @@ export default { /**查看按钮 */ handleView(row){ this.editOpen = true; - this.title = "查看奖项"; + this.title = "查看申请"; const applyId = row.applyId || this.ids this.isShowUploadButton = false this.isShowButton = false @@ -348,7 +348,7 @@ export default { this.isReadOnly = false this.isShowButton = true this.isShowUploadButton = true - this.title = "添加奖项"; + this.title = "添加申请"; // if(this.noticeList.length === 0){ getApplyId(this.applyParam).then(response => { if (response.code === 200){ @@ -373,7 +373,7 @@ export default { getDetail(applyId).then(response => { this.form.isReward = response.data.isReward; this.editOpen = true; - this.title = "修改奖项"; + this.title = "修改申请"; this.fileData.forEach((item)=>{ item.childrenList = [] }) @@ -420,7 +420,7 @@ export default { /** 删除按钮操作 */ handleDelete(row) { const applyId = row.applyId || this.ids - this.$modal.confirm('是否确认删除奖项?').then(function() { + this.$modal.confirm('是否确认删除申请?').then(function() { return delApply(applyId); }).then(() => { this.getList(); diff --git a/src/views/contributionAward/score/index.vue b/src/views/contributionAward/score/index.vue index 19ddd40..7f5fb51 100644 --- a/src/views/contributionAward/score/index.vue +++ b/src/views/contributionAward/score/index.vue @@ -292,7 +292,7 @@ export default { /**查看按钮 */ handleView(row) { this.editOpen = true; - this.title = "查看奖项"; + this.title = "查看申请"; const applyId = row.applyId || this.ids this.isShowButton = false this.isReadOnly = true @@ -343,7 +343,7 @@ export default { getDetail(applyId).then(response => { this.form.isReward = response.data.isReward; this.editOpen = true; - this.title = "修改奖项"; + this.title = "修改申请"; this.fileData.forEach((item) => { item.childrenList = [] }) @@ -412,7 +412,7 @@ export default { /** 删除按钮操作 */ handleDelete(row) { const applyId = row.applyId || this.ids - this.$modal.confirm('是否确认删除奖项?').then(function () { + this.$modal.confirm('是否确认删除申请?').then(function () { return delApply(applyId); }).then(() => { this.getList(); diff --git a/src/views/principalAward/aduit/index.vue b/src/views/principalAward/aduit/index.vue index 487bdab..c797f49 100644 --- a/src/views/principalAward/aduit/index.vue +++ b/src/views/principalAward/aduit/index.vue @@ -239,7 +239,7 @@ export default { /**查看按钮 */ handleView(row) { this.editOpen = true; - this.title = "查看奖项"; + this.title = "查看申请"; const applyId = row.applyId || this.ids this.isShowButton = false getDetail(applyId).then(response => { @@ -280,7 +280,7 @@ export default { getDetail(applyId).then(response => { this.form.isReward = response.data.isReward; this.editOpen = true; - this.title = "修改奖项"; + this.title = "修改申请"; this.fileData.forEach((item) => { item.childrenList = [] }) @@ -340,7 +340,7 @@ export default { /** 删除按钮操作 */ handleDelete(row) { const applyId = row.applyId || this.ids - this.$modal.confirm('是否确认删除奖项?').then(function () { + this.$modal.confirm('是否确认删除申请?').then(function () { return delApply(applyId); }).then(() => { this.getList(); diff --git a/src/views/principalAward/apply/index.vue b/src/views/principalAward/apply/index.vue index d9e170e..bd05e25 100644 --- a/src/views/principalAward/apply/index.vue +++ b/src/views/principalAward/apply/index.vue @@ -309,7 +309,7 @@ export default { /**查看按钮 */ handleView(row){ this.editOpen = true; - this.title = "查看奖项"; + this.title = "查看申请"; const applyId = row.applyId || this.ids this.isShowUploadButton = false this.isShowButton = false @@ -348,7 +348,7 @@ export default { this.isReadOnly = false this.isShowButton = true this.isShowUploadButton = true - this.title = "添加奖项"; + this.title = "添加申请"; // if(this.noticeList.length === 0){ getApplyId(this.applyParam).then(response => { if (response.code === 200){ @@ -373,7 +373,7 @@ export default { getDetail(applyId).then(response => { this.form.isReward = response.data.isReward; this.editOpen = true; - this.title = "修改奖项"; + this.title = "修改申请"; this.fileData.forEach((item)=>{ item.childrenList = [] }) @@ -420,7 +420,7 @@ export default { /** 删除按钮操作 */ handleDelete(row) { const applyId = row.applyId || this.ids - this.$modal.confirm('是否确认删除奖项?').then(function() { + this.$modal.confirm('是否确认删除申请?').then(function() { return delApply(applyId); }).then(() => { this.getList(); diff --git a/src/views/principalAward/score/index.vue b/src/views/principalAward/score/index.vue index 2be8869..20bd944 100644 --- a/src/views/principalAward/score/index.vue +++ b/src/views/principalAward/score/index.vue @@ -292,7 +292,7 @@ export default { /**查看按钮 */ handleView(row) { this.editOpen = true; - this.title = "查看奖项"; + this.title = "查看申请"; const applyId = row.applyId || this.ids this.isShowButton = false this.isReadOnly = true @@ -343,7 +343,7 @@ export default { getDetail(applyId).then(response => { this.form.isReward = response.data.isReward; this.editOpen = true; - this.title = "修改奖项"; + this.title = "修改申请"; this.fileData.forEach((item) => { item.childrenList = [] }) @@ -412,7 +412,7 @@ export default { /** 删除按钮操作 */ handleDelete(row) { const applyId = row.applyId || this.ids - this.$modal.confirm('是否确认删除奖项?').then(function () { + this.$modal.confirm('是否确认删除申请?').then(function () { return delApply(applyId); }).then(() => { this.getList(); diff --git a/src/views/reward/aduit/index.vue b/src/views/reward/aduit/index.vue index 8a588ac..917eecb 100644 --- a/src/views/reward/aduit/index.vue +++ b/src/views/reward/aduit/index.vue @@ -234,7 +234,7 @@ export default { /**查看按钮 */ handleView(row) { this.editOpen = true; - this.title = "查看奖项"; + this.title = "查看申请"; const applyId = row.applyId || this.ids this.isShowButton = false getDetail(applyId).then(response => { @@ -276,7 +276,7 @@ export default { getDetail(applyId).then(response => { this.form.isReward = response.data.isReward; this.editOpen = true; - this.title = "修改奖项"; + this.title = "修改申请"; this.fileData.forEach((item) => { item.childrenList = [] }) @@ -336,7 +336,7 @@ export default { /** 删除按钮操作 */ handleDelete(row) { const applyId = row.applyId || this.ids - this.$modal.confirm('是否确认删除奖项?').then(function () { + this.$modal.confirm('是否确认删除申请?').then(function () { return delApply(applyId); }).then(() => { this.getList(); diff --git a/src/views/reward/apply/index.vue b/src/views/reward/apply/index.vue index 2a4c863..615df1e 100644 --- a/src/views/reward/apply/index.vue +++ b/src/views/reward/apply/index.vue @@ -303,7 +303,7 @@ export default { /**查看按钮 */ handleView(row){ this.editOpen = true; - this.title = "查看奖项"; + this.title = "查看申请"; const applyId = row.applyId || this.ids this.isShowUploadButton = false this.isShowButton = false @@ -341,7 +341,7 @@ export default { this.isReadOnly = false this.isShowButton = true this.isShowUploadButton = true - this.title = "添加奖项"; + this.title = "添加申请"; // if(this.noticeList.length === 0){ getApplyId(this.applyParam).then(response => { if (response.code === 200){ @@ -366,7 +366,7 @@ export default { getDetail(applyId).then(response => { this.form.isReward = response.data.isReward; this.editOpen = true; - this.title = "修改奖项"; + this.title = "修改申请"; this.fileData.forEach((item)=>{ item.childrenList = [] }) @@ -413,7 +413,7 @@ export default { /** 删除按钮操作 */ handleDelete(row) { const applyId = row.applyId || this.ids - this.$modal.confirm('是否确认删除奖项?').then(function() { + this.$modal.confirm('是否确认删除申请?').then(function() { return delApply(applyId); }).then(() => { this.getList(); diff --git a/src/views/reward/score/index.vue b/src/views/reward/score/index.vue index 15e0af1..d0f5520 100644 --- a/src/views/reward/score/index.vue +++ b/src/views/reward/score/index.vue @@ -289,7 +289,7 @@ export default { /**查看按钮 */ handleView(row) { this.editOpen = true; - this.title = "查看奖项"; + this.title = "查看申请"; const applyId = row.applyId || this.ids this.isShowButton = false this.isReadOnly = true @@ -340,7 +340,7 @@ export default { getDetail(applyId).then(response => { this.form.isReward = response.data.isReward; this.editOpen = true; - this.title = "修改奖项"; + this.title = "修改申请"; this.fileData.forEach((item) => { item.childrenList = [] }) @@ -409,7 +409,7 @@ export default { /** 删除按钮操作 */ handleDelete(row) { const applyId = row.applyId || this.ids - this.$modal.confirm('是否确认删除奖项?').then(function () { + this.$modal.confirm('是否确认删除申请?').then(function () { return delApply(applyId); }).then(() => { this.getList(); diff --git a/src/views/teacherAward/aduit/index.vue b/src/views/teacherAward/aduit/index.vue index 6eb9858..5154417 100644 --- a/src/views/teacherAward/aduit/index.vue +++ b/src/views/teacherAward/aduit/index.vue @@ -239,7 +239,7 @@ export default { /**查看按钮 */ handleView(row) { this.editOpen = true; - this.title = "查看奖项"; + this.title = "查看申请"; const applyId = row.applyId || this.ids this.isShowButton = false getDetail(applyId).then(response => { @@ -281,7 +281,7 @@ export default { getDetail(applyId).then(response => { this.form.isReward = response.data.isReward; this.editOpen = true; - this.title = "修改奖项"; + this.title = "修改申请"; this.fileData.forEach((item) => { item.childrenList = [] }) @@ -341,7 +341,7 @@ export default { /** 删除按钮操作 */ handleDelete(row) { const applyId = row.applyId || this.ids - this.$modal.confirm('是否确认删除奖项?').then(function () { + this.$modal.confirm('是否确认删除申请?').then(function () { return delApply(applyId); }).then(() => { this.getList(); diff --git a/src/views/teacherAward/apply/index.vue b/src/views/teacherAward/apply/index.vue index c043cb1..b0e9d2a 100644 --- a/src/views/teacherAward/apply/index.vue +++ b/src/views/teacherAward/apply/index.vue @@ -309,7 +309,7 @@ export default { /**查看按钮 */ handleView(row){ this.editOpen = true; - this.title = "查看奖项"; + this.title = "查看申请"; const applyId = row.applyId || this.ids this.isShowUploadButton = false this.isShowButton = false @@ -348,7 +348,7 @@ export default { this.isReadOnly = false this.isShowButton = true this.isShowUploadButton = true - this.title = "添加奖项"; + this.title = "添加申请"; // if(this.noticeList.length === 0){ getApplyId(this.applyParam).then(response => { if (response.code === 200){ @@ -373,7 +373,7 @@ export default { getDetail(applyId).then(response => { this.form.isReward = response.data.isReward; this.editOpen = true; - this.title = "修改奖项"; + this.title = "修改申请"; this.fileData.forEach((item)=>{ item.childrenList = [] }) @@ -420,7 +420,7 @@ export default { /** 删除按钮操作 */ handleDelete(row) { const applyId = row.applyId || this.ids - this.$modal.confirm('是否确认删除奖项?').then(function() { + this.$modal.confirm('是否确认删除申请?').then(function() { return delApply(applyId); }).then(() => { this.getList(); diff --git a/src/views/teacherAward/score/index.vue b/src/views/teacherAward/score/index.vue index 3047ce4..31c3549 100644 --- a/src/views/teacherAward/score/index.vue +++ b/src/views/teacherAward/score/index.vue @@ -292,7 +292,7 @@ export default { /**查看按钮 */ handleView(row) { this.editOpen = true; - this.title = "查看奖项"; + this.title = "查看申请"; const applyId = row.applyId || this.ids this.isShowButton = false this.isReadOnly = true @@ -343,7 +343,7 @@ export default { getDetail(applyId).then(response => { this.form.isReward = response.data.isReward; this.editOpen = true; - this.title = "修改奖项"; + this.title = "修改申请"; this.fileData.forEach((item) => { item.childrenList = [] }) @@ -412,7 +412,7 @@ export default { /** 删除按钮操作 */ handleDelete(row) { const applyId = row.applyId || this.ids - this.$modal.confirm('是否确认删除奖项?').then(function () { + this.$modal.confirm('是否确认删除申请?').then(function () { return delApply(applyId); }).then(() => { this.getList(); diff --git a/src/views/trainAward/aduit/index.vue b/src/views/trainAward/aduit/index.vue index dd99b6d..66bd50a 100644 --- a/src/views/trainAward/aduit/index.vue +++ b/src/views/trainAward/aduit/index.vue @@ -239,7 +239,7 @@ export default { /**查看按钮 */ handleView(row) { this.editOpen = true; - this.title = "查看奖项"; + this.title = "查看申请"; const applyId = row.applyId || this.ids this.isShowButton = false getDetail(applyId).then(response => { @@ -281,7 +281,7 @@ export default { getDetail(applyId).then(response => { this.form.isReward = response.data.isReward; this.editOpen = true; - this.title = "修改奖项"; + this.title = "修改申请"; this.fileData.forEach((item) => { item.childrenList = [] }) @@ -341,7 +341,7 @@ export default { /** 删除按钮操作 */ handleDelete(row) { const applyId = row.applyId || this.ids - this.$modal.confirm('是否确认删除奖项?').then(function () { + this.$modal.confirm('是否确认删除申请?').then(function () { return delApply(applyId); }).then(() => { this.getList(); diff --git a/src/views/trainAward/apply/index.vue b/src/views/trainAward/apply/index.vue index 8154c78..662f635 100644 --- a/src/views/trainAward/apply/index.vue +++ b/src/views/trainAward/apply/index.vue @@ -309,7 +309,7 @@ export default { /**查看按钮 */ handleView(row){ this.editOpen = true; - this.title = "查看奖项"; + this.title = "查看申请"; const applyId = row.applyId || this.ids this.isShowUploadButton = false this.isShowButton = false @@ -348,7 +348,7 @@ export default { this.isReadOnly = false this.isShowButton = true this.isShowUploadButton = true - this.title = "添加奖项"; + this.title = "添加申请"; // if(this.noticeList.length === 0){ getApplyId(this.applyParam).then(response => { if (response.code === 200){ @@ -373,7 +373,7 @@ export default { getDetail(applyId).then(response => { this.form.isReward = response.data.isReward; this.editOpen = true; - this.title = "修改奖项"; + this.title = "修改申请"; this.fileData.forEach((item)=>{ item.childrenList = [] }) @@ -420,7 +420,7 @@ export default { /** 删除按钮操作 */ handleDelete(row) { const applyId = row.applyId || this.ids - this.$modal.confirm('是否确认删除奖项?').then(function() { + this.$modal.confirm('是否确认删除申请?').then(function() { return delApply(applyId); }).then(() => { this.getList(); diff --git a/src/views/trainAward/score/index.vue b/src/views/trainAward/score/index.vue index 6b95de8..3c58b2b 100644 --- a/src/views/trainAward/score/index.vue +++ b/src/views/trainAward/score/index.vue @@ -292,7 +292,7 @@ export default { /**查看按钮 */ handleView(row) { this.editOpen = true; - this.title = "查看奖项"; + this.title = "查看申请"; const applyId = row.applyId || this.ids this.isShowButton = false this.isReadOnly = true @@ -343,7 +343,7 @@ export default { getDetail(applyId).then(response => { this.form.isReward = response.data.isReward; this.editOpen = true; - this.title = "修改奖项"; + this.title = "修改申请"; this.fileData.forEach((item) => { item.childrenList = [] }) @@ -412,7 +412,7 @@ export default { /** 删除按钮操作 */ handleDelete(row) { const applyId = row.applyId || this.ids - this.$modal.confirm('是否确认删除奖项?').then(function () { + this.$modal.confirm('是否确认删除申请?').then(function () { return delApply(applyId); }).then(() => { this.getList();