界面调整

master
zhaoxiaolin 7 months ago
parent 21769234be
commit 62b642aab5

@ -883,7 +883,7 @@ export default {
if(this.queryParams.createTimeArray !=null && this.queryParams.createTimeArray.length>0){
this.queryParams.createTimeStart = moment(this.queryParams.createTimeArray[0]).format('YYYY-MM-DD HH:mm:ss');
this.queryParams.createTimeEnd = moment(this.queryParams.createTimeArray[1]).format('YYYY-MM-DD HH:mm:ss');
}**/
}
if (
this.queryParams.feedbackTimeArray != null &&
@ -895,7 +895,7 @@ export default {
this.queryParams.feedbackTimeEnd = moment(
this.queryParams.feedbackTimeArray[1]
).format("YYYY-MM-DD");
}
}**/
this.loading = true;
listReportWork(this.queryParams).then((response) => {
this.reportWorkList = response.rows;
@ -922,6 +922,7 @@ export default {
this.openConsume = false;
this.loading = false;
this.reset();
this.getList();
},
getSummaries(param) {
const { columns, data } = param;

@ -39,7 +39,7 @@
<el-form label-width="100px">
<el-form-item style="text-align: center;margin-left:-120px;margin-top:30px;">
<el-button type="primary" @click="submitForm()"></el-button>
<el-button @click="close()"></el-button>
<!--<el-button @click="close()"></el-button>-->
</el-form-item>
</el-form>
</div>
@ -104,13 +104,13 @@ export default {
const roleIds = this.roleIds.join(",");
updateAuthRole({ userId: userId, roleIds: roleIds }).then((response) => {
this.$modal.msgSuccess("授权成功");
this.close();
//this.close();
});
},
/** 关闭按钮 */
close() {
const obj = { path: "/system/user" };
this.$tab.closeOpenPage(obj);
//const obj = { path: "/system/user" };
//this.$tab.closeOpenPage(obj);
},
},
};

Loading…
Cancel
Save