Compare commits

...

2 Commits

Author SHA1 Message Date
wangxiaoshuang fe18b885f1 国际化
continuous-integration/drone/push Build is passing Details
2024-11-04 13:45:55 +08:00
wangxiaoshuang 25a3a0e371 概述与支付信息保存添加成功提示 2024-11-04 13:43:49 +08:00
3 changed files with 4 additions and 2 deletions

View File

@ -291,14 +291,14 @@
size="small"
:disabled="$route.query.ReviewStatus === '1'"
@click="handlePostgraduateEdit(scope.row)"
>Edit</el-button
>{{ $t('common:button:edit') }}</el-button
>
<el-button
type="text"
size="small"
:disabled="$route.query.ReviewStatus === '1'"
@click="handlePostgraduateDelete(scope.row)"
>Delete</el-button
>{{ $t('common:button:delete') }}</el-button
>
</template>
</el-table-column>

View File

@ -107,6 +107,7 @@ export default {
let res = await updatePaymentMode(this.form)
this.loading = false
if (res.IsSuccess) {
this.$message.success(this.$t('common:message:savedSuccessfully'))
}
} catch (err) {
this.loading = false

View File

@ -96,6 +96,7 @@ export default {
let res = await updateGneralSituation(this.form)
this.loading = false
if (res.IsSuccess) {
this.$message.success(this.$t('common:message:savedSuccessfully'))
}
} catch (err) {
this.loading = false