界面调整

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

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

Loading…
Cancel
Save