测试问题修改

master
zhangdi 11 months ago
parent a086b2993a
commit 215a44a14d
  1. 4
      src/views/goodsManagement/goodsList.vue
  2. 2
      src/views/operation/hand.vue
  3. 16
      src/views/system/user.vue

@ -615,7 +615,9 @@ export default {
} }
getDetailLog(query).then(res => { getDetailLog(query).then(res => {
if (res.data.code == 200) { if (res.data.code == 200) {
this.logData = res.data.data this.logData = res.data.data.records
console.log(111111,res.data.data.records)
this.logPage.total = res.data.data.total
} }
}) })
}, },

@ -53,7 +53,7 @@
</div> </div>
</template> </template>
<template slot-scope="scope" slot="menuLeft"> <template slot-scope="scope" slot="menuLeft">
<el-button type="primary" size="small" @click="addOperation">需求提报</el-button> <el-button type="primary" size="small" @click="addOperation" v-show="permission.handAdd">需求提报</el-button>
<el-button type="primary" size="small" @click="allExportReport">批量导出报告</el-button> <el-button type="primary" size="small" @click="allExportReport">批量导出报告</el-button>
<!-- <el-button size="small" @click="clickInvoice">开具发票</el-button> <!-- <el-button size="small" @click="clickInvoice">开具发票</el-button>
<el-button size="small" @click="clickPrint">打印</el-button> --> <el-button size="small" @click="clickPrint">打印</el-button> -->

@ -753,14 +753,14 @@ export default {
row.deptId = func.join(row.deptId); row.deptId = func.join(row.deptId);
row.roleId = func.join(row.roleId); row.roleId = func.join(row.roleId);
row.postId = func.join(row.postId); row.postId = func.join(row.postId);
// if (row.deptId.split(',').length > 1) { if (row.deptId.split(',').length > 1) {
// this.$message({ this.$message({
// type: "error", type: "error",
// message: "" message: "所属部门只能选择一个!"
// }); });
// loading(); loading();
// return false return false
// } }
update(row).then(() => { update(row).then(() => {
this.initFlag = false; this.initFlag = false;
this.onLoad(this.page); this.onLoad(this.page);

Loading…
Cancel
Save