Compare commits
2 Commits
e947c99f71
...
fe18b885f1
Author | SHA1 | Date |
---|---|---|
|
fe18b885f1 | |
|
25a3a0e371 |
|
@ -291,14 +291,14 @@
|
||||||
size="small"
|
size="small"
|
||||||
:disabled="$route.query.ReviewStatus === '1'"
|
:disabled="$route.query.ReviewStatus === '1'"
|
||||||
@click="handlePostgraduateEdit(scope.row)"
|
@click="handlePostgraduateEdit(scope.row)"
|
||||||
>Edit</el-button
|
>{{ $t('common:button:edit') }}</el-button
|
||||||
>
|
>
|
||||||
<el-button
|
<el-button
|
||||||
type="text"
|
type="text"
|
||||||
size="small"
|
size="small"
|
||||||
:disabled="$route.query.ReviewStatus === '1'"
|
:disabled="$route.query.ReviewStatus === '1'"
|
||||||
@click="handlePostgraduateDelete(scope.row)"
|
@click="handlePostgraduateDelete(scope.row)"
|
||||||
>Delete</el-button
|
>{{ $t('common:button:delete') }}</el-button
|
||||||
>
|
>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
|
|
@ -107,6 +107,7 @@ export default {
|
||||||
let res = await updatePaymentMode(this.form)
|
let res = await updatePaymentMode(this.form)
|
||||||
this.loading = false
|
this.loading = false
|
||||||
if (res.IsSuccess) {
|
if (res.IsSuccess) {
|
||||||
|
this.$message.success(this.$t('common:message:savedSuccessfully'))
|
||||||
}
|
}
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
this.loading = false
|
this.loading = false
|
||||||
|
|
|
@ -96,6 +96,7 @@ export default {
|
||||||
let res = await updateGneralSituation(this.form)
|
let res = await updateGneralSituation(this.form)
|
||||||
this.loading = false
|
this.loading = false
|
||||||
if (res.IsSuccess) {
|
if (res.IsSuccess) {
|
||||||
|
this.$message.success(this.$t('common:message:savedSuccessfully'))
|
||||||
}
|
}
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
this.loading = false
|
this.loading = false
|
||||||
|
|
Loading…
Reference in New Issue