工作台待办任务换行
parent
451fa0078d
commit
81bc7f281d
|
@ -403,7 +403,7 @@ export default {
|
||||||
data.isReading = true
|
data.isReading = true
|
||||||
}
|
}
|
||||||
var message = this.$t('trials:audit:message:changeSeriesStatus').replace('xxx', statusStr)
|
var message = this.$t('trials:audit:message:changeSeriesStatus').replace('xxx', statusStr)
|
||||||
message = this.$t('trials:audit:message:changeSeriesStatus').replace('yyy', this.$fd('YesOrNo', data.isReading))
|
message = message.replace('yyy', this.$fd('YesOrNo', !data.isReading))
|
||||||
this.$confirm(message, {
|
this.$confirm(message, {
|
||||||
distinguishCancelAndClose: true,
|
distinguishCancelAndClose: true,
|
||||||
type: 'warning'
|
type: 'warning'
|
||||||
|
@ -431,7 +431,7 @@ export default {
|
||||||
data.isDeleted = true
|
data.isDeleted = true
|
||||||
}
|
}
|
||||||
var message = this.$t('trials:audit:message:changeSeriesStatus').replace('xxx', statusStr)
|
var message = this.$t('trials:audit:message:changeSeriesStatus').replace('xxx', statusStr)
|
||||||
message = this.$t('trials:audit:message:changeSeriesStatus').replace('yyy', this.$fd('YesOrNo', data.isDeleted))
|
message = message.replace('yyy', this.$fd('YesOrNo', !data.isDeleted))
|
||||||
this.$confirm(message, {
|
this.$confirm(message, {
|
||||||
distinguishCancelAndClose: true,
|
distinguishCancelAndClose: true,
|
||||||
type: 'warning'
|
type: 'warning'
|
||||||
|
|
|
@ -353,6 +353,7 @@ export default {
|
||||||
data.isReading = true
|
data.isReading = true
|
||||||
}
|
}
|
||||||
var message = this.$t('trials:audit:message:changeSeriesStatus').replace('xxx', statusStr)
|
var message = this.$t('trials:audit:message:changeSeriesStatus').replace('xxx', statusStr)
|
||||||
|
message = message.replace('yyy', this.$fd('YesOrNo', !data.isReading))
|
||||||
this.$confirm(message, {
|
this.$confirm(message, {
|
||||||
distinguishCancelAndClose: true,
|
distinguishCancelAndClose: true,
|
||||||
type: 'warning'
|
type: 'warning'
|
||||||
|
@ -380,6 +381,7 @@ export default {
|
||||||
data.isDeleted = true
|
data.isDeleted = true
|
||||||
}
|
}
|
||||||
var message = this.$t('trials:audit:message:changeSeriesStatus').replace('xxx', statusStr)
|
var message = this.$t('trials:audit:message:changeSeriesStatus').replace('xxx', statusStr)
|
||||||
|
message = message.replace('yyy', this.$fd('YesOrNo', !data.isDeleted))
|
||||||
this.$confirm(message, {
|
this.$confirm(message, {
|
||||||
distinguishCancelAndClose: true,
|
distinguishCancelAndClose: true,
|
||||||
type: 'warning'
|
type: 'warning'
|
||||||
|
|
|
@ -1262,6 +1262,7 @@ export default {
|
||||||
row.IsReading = true
|
row.IsReading = true
|
||||||
}
|
}
|
||||||
var message = this.$t('trials:audit:message:changeSeriesStatus').replace('xxx', statusStr)
|
var message = this.$t('trials:audit:message:changeSeriesStatus').replace('xxx', statusStr)
|
||||||
|
message = message.replace('yyy', this.$fd('YesOrNo', !row.IsReading))
|
||||||
this.$confirm(message, {
|
this.$confirm(message, {
|
||||||
distinguishCancelAndClose: true,
|
distinguishCancelAndClose: true,
|
||||||
type: 'warning'
|
type: 'warning'
|
||||||
|
@ -1287,6 +1288,7 @@ export default {
|
||||||
row.IsDeleted = true
|
row.IsDeleted = true
|
||||||
}
|
}
|
||||||
var message = this.$t('trials:audit:message:changeSeriesStatus').replace('xxx', statusStr)
|
var message = this.$t('trials:audit:message:changeSeriesStatus').replace('xxx', statusStr)
|
||||||
|
message = message.replace('yyy', this.$fd('YesOrNo', !row.IsDeleted))
|
||||||
this.$confirm(message, {
|
this.$confirm(message, {
|
||||||
distinguishCancelAndClose: true,
|
distinguishCancelAndClose: true,
|
||||||
type: 'warning'
|
type: 'warning'
|
||||||
|
|
Loading…
Reference in New Issue