File tree Expand file tree Collapse file tree 6 files changed +7
-11
lines changed Expand file tree Collapse file tree 6 files changed +7
-11
lines changed Original file line number Diff line number Diff line change @@ -101,10 +101,8 @@ export default {
101
101
/** 查询列表 */
102
102
getList () {
103
103
this .loading = true ;
104
- // 处理查询参数
105
- let params = {... this .queryParams };
106
104
// 执行查询
107
- getFormPage (params ).then (response => {
105
+ getFormPage (this . queryParams ).then (response => {
108
106
this .list = response .data .list ;
109
107
this .total = response .data .total ;
110
108
this .loading = false ;
Original file line number Diff line number Diff line change 121
121
<el-dialog :title =" title" :visible.sync =" open" width =" 500px" append-to-body >
122
122
<el-form ref =" form" :model =" form" :rules =" rules" label-width =" 110px" >
123
123
<el-form-item label =" 流程标识" prop =" key" >
124
- <el-input v-model =" form.key" placeholder =" 请输入流标标识" style =" width : 330px ;" :disabled =" form.id" />
124
+ <el-input v-model =" form.key" placeholder =" 请输入流标标识" style =" width : 330px ;" :disabled =" !! form.id" />
125
125
<el-tooltip v-if =" !form.id" class =" item" effect =" light" content =" 新建后,流程标识不可修改!" placement =" top" >
126
126
<i style =" padding-left : 5px ;" class =" el-icon-question" />
127
127
</el-tooltip >
130
130
</el-tooltip >
131
131
</el-form-item >
132
132
<el-form-item label =" 流程名称" prop =" name" >
133
- <el-input v-model =" form.name" placeholder =" 请输入流程名称" :disabled =" form.id" clearable />
133
+ <el-input v-model =" form.name" placeholder =" 请输入流程名称" :disabled =" !! form.id" clearable />
134
134
</el-form-item >
135
135
<el-form-item v-if =" form.id" label =" 流程分类" prop =" category" >
136
136
<el-select v-model =" form.category" placeholder =" 请选择流程分类" clearable style =" width : 100% " >
Original file line number Diff line number Diff line change @@ -131,7 +131,7 @@ export default {
131
131
getList () {
132
132
this .loading = true ;
133
133
// 执行查询
134
- getFilePage (params ).then (response => {
134
+ getFilePage (this . queryParams ).then (response => {
135
135
this .list = response .data .list ;
136
136
this .total = response .data .total ;
137
137
this .loading = false ;
Original file line number Diff line number Diff line change @@ -165,7 +165,7 @@ export default {
165
165
getList () {
166
166
this .loading = true ;
167
167
// 执行查询
168
- getBannerPage (params ).then (response => {
168
+ getBannerPage (this . queryParams ).then (response => {
169
169
this .list = response .data .list ;
170
170
this .total = response .data .total ;
171
171
this .loading = false ;
Original file line number Diff line number Diff line change 571
571
getList () {
572
572
this .loading = true ;
573
573
// 执行查询
574
- getSpuPage (params ).then (response => {
574
+ getSpuPage (this . queryParams ).then (response => {
575
575
this .list = response .data .list ;
576
576
this .total = response .data .total ;
577
577
this .loading = false ;
Original file line number Diff line number Diff line change @@ -206,10 +206,8 @@ export default {
206
206
/** 查询列表 */
207
207
getList () {
208
208
this .loading = true ;
209
- // 处理查询参数
210
- let params = {... this .queryParams };
211
209
// 执行查询
212
- getOAuth2ClientPage (params ).then (response => {
210
+ getOAuth2ClientPage (this . queryParams ).then (response => {
213
211
this .list = response .data .list ;
214
212
this .total = response .data .total ;
215
213
this .loading = false ;
You can’t perform that action at this time.
0 commit comments