Commit 29ce855a authored by YIyiyi's avatar YIyiyi
parents 4d3b3f45 d1fe79e0
package com.mortals.xhx.module.app.web; package com.mortals.xhx.module.app.web;
import com.mortals.framework.exception.AppException;
import com.mortals.framework.model.OrderCol;
import com.mortals.framework.web.BaseCRUDJsonBodyMappingController; import com.mortals.framework.web.BaseCRUDJsonBodyMappingController;
import com.mortals.xhx.base.system.param.service.ParamService; import com.mortals.xhx.base.system.param.service.ParamService;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
...@@ -46,4 +48,17 @@ public class AppCategoryController extends BaseCRUDJsonBodyMappingController<App ...@@ -46,4 +48,17 @@ public class AppCategoryController extends BaseCRUDJsonBodyMappingController<App
} }
/**
* @param query
* @param model
* @param context
* @throws AppException
*/
@Override
protected void doListBefore(AppCategoryEntity query, Map<String, Object> model, Context context) throws AppException {
super.doListBefore(query, model, context);
query.setOrderColList(Arrays.asList(new OrderCol("sort")));
}
} }
\ No newline at end of file
...@@ -233,10 +233,10 @@ export default { ...@@ -233,10 +233,10 @@ export default {
"pjxt", "pjxt",
"pj_name", "pj_name",
], ],
datingList:[], datingList: [],
bumenList:[], bumenList: [],
hallid:'', hallid: '',
sectionid:'' sectionid: ''
}; };
}, },
components: { components: {
...@@ -343,8 +343,8 @@ export default { ...@@ -343,8 +343,8 @@ export default {
pjxt, pjxt,
time: this.BegindAndEndTime, time: this.BegindAndEndTime,
info: this.searchName, info: this.searchName,
hallid:this.hallid, hallid: this.hallid,
sectionid:this.sectionid, sectionid: this.sectionid,
...search, ...search,
}); });
if (res.code == 1) { if (res.code == 1) {
...@@ -363,7 +363,7 @@ export default { ...@@ -363,7 +363,7 @@ export default {
openHandlingDetails(record) { openHandlingDetails(record) {
console.log(record) console.log(record)
// 判断为窗口屏或者其他状况,调用不同接口 // 判断为窗口屏或者其他状况,调用不同接口
if (record.pjxt == 1) { if (record.pjxt == 1 && record.queueid) {
this.$refs.HandlingDetails.modalInfo.title = "办理明细"; this.$refs.HandlingDetails.modalInfo.title = "办理明细";
this.$refs.HandlingDetails.modalInfo.show = 1; this.$refs.HandlingDetails.modalInfo.show = 1;
this.togetQueEvaData(record); this.togetQueEvaData(record);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment