Compare commits
2 Commits
e947c99f71
...
fe18b885f1
Author | SHA1 | Date |
---|---|---|
|
fe18b885f1 | |
|
25a3a0e371 |
|
@ -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>
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue