Compare commits
3 Commits
ae808679a0
...
0634df6e33
Author | SHA1 | Date |
---|---|---|
|
0634df6e33 | |
|
108d01f81c | |
|
12e4128b7b |
|
@ -188,8 +188,8 @@
|
||||||
sortable="custom" show-overflow-tooltip>
|
sortable="custom" show-overflow-tooltip>
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-input-number v-model="scope.row.RandomOrder"
|
<el-input-number v-model="scope.row.RandomOrder"
|
||||||
@change="(value, old) => handleChange(scope.row, value, old)" :min="1"
|
@change="(value, old) => handleChange(scope.row, value, old)" :min="1" style="width: 150px;"
|
||||||
style="width: 150px;"></el-input-number>
|
:disabled="scope.row.ReadingTaskState === 1"></el-input-number>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
|
@ -215,7 +215,7 @@ const searchDataDefault = () => {
|
||||||
PageIndex: 1,
|
PageIndex: 1,
|
||||||
PageSize: 20,
|
PageSize: 20,
|
||||||
Asc: true,
|
Asc: true,
|
||||||
SortField: '',
|
SortField: 'RandomOrder',
|
||||||
TrialId: null,
|
TrialId: null,
|
||||||
TrialSiteId: null,
|
TrialSiteId: null,
|
||||||
SubjectId: null,
|
SubjectId: null,
|
||||||
|
|
|
@ -914,14 +914,17 @@ export default {
|
||||||
}
|
}
|
||||||
if (v.DataType === 'Router') {
|
if (v.DataType === 'Router') {
|
||||||
item = {
|
item = {
|
||||||
oldValue: v.UrlConfig.IsHaveParameters ? v.UrlConfig.RoutePath + '?' +
|
// oldValue: v.UrlConfig.IsHaveParameters ? v.UrlConfig.RoutePath + '?' +
|
||||||
v.UrlConfig.ParameterList.map((v) => {
|
// v.UrlConfig.ParameterList.map((v) => {
|
||||||
let a = obj[v.UrlParameterValueName] ? obj[v.UrlParameterValueName] : parentRow[v.UrlParameterValueName]
|
// let a = obj[v.UrlParameterValueName] ? obj[v.UrlParameterValueName] : parentRow[v.UrlParameterValueName]
|
||||||
if (v.UrlParameterValueName === 'token') {
|
// if (v.UrlParameterValueName === 'token') {
|
||||||
a = getToken()
|
// a = getToken()
|
||||||
}
|
// }
|
||||||
return v.UrlParameterName + '=' + a + '&'
|
// return v.UrlParameterName + '=' + a + '&'
|
||||||
}).toString().replaceAll(',', '') + '&' + 'lang=' + this.$i18n.locale + '&' + 'zh=' + this.$i18n.locale : v.UrlConfig.RoutePath,
|
// }).toString().replaceAll(',', '')+'&'+'lang='+this.$i18n.locale +'&'+ 'zh='+this.$i18n.locale : v.UrlConfig.RoutePath,
|
||||||
|
|
||||||
|
// 后端已确定旧数据不会有跳转 25/06/13
|
||||||
|
oldValue: '--',
|
||||||
newValue: v.UrlConfig.IsHaveParameters ? v.UrlConfig.RoutePath + '?' +
|
newValue: v.UrlConfig.IsHaveParameters ? v.UrlConfig.RoutePath + '?' +
|
||||||
v.UrlConfig.ParameterList.map((v) => {
|
v.UrlConfig.ParameterList.map((v) => {
|
||||||
let a = obj[v.UrlParameterValueName] ? obj[v.UrlParameterValueName] : parentRow[v.UrlParameterValueName]
|
let a = obj[v.UrlParameterValueName] ? obj[v.UrlParameterValueName] : parentRow[v.UrlParameterValueName]
|
||||||
|
|
Loading…
Reference in New Issue