| | |
| | | > |
| | | <template slot="menuLeft"> |
| | | <el-button |
| | | type="success" |
| | | size="small" |
| | | plain |
| | | icon="el-icon-upload2" |
| | | @click="handleImport" |
| | | >批量导入 |
| | | </el-button> |
| | | <el-button |
| | | type="danger" |
| | | size="small" |
| | | plain |
| | | icon="el-icon-delete" |
| | | @click="handleDelete" |
| | | >删 除 |
| | | </el-button> |
| | | <el-button |
| | | type="success" |
| | | size="small" |
| | | plain |
| | | icon="el-icon-upload2" |
| | | @click="handleImport" |
| | | >批量导入 |
| | | </el-button> |
| | | </template> |
| | | </avue-crud> |
| | |
| | | <script> |
| | | import { data, column } from "./equipments"; |
| | | import { getdata, adddata, update, remove } from "@/api/equipments/equipments"; |
| | | |
| | | import { mapGetters } from "vuex"; |
| | | export default { |
| | | props: ["fromDeptId"], |
| | | data() { |
| | | return { |
| | | excelBox: false, |
| | |
| | | height: 583, |
| | | index: true, |
| | | menuWidth: 160, |
| | | border: true, |
| | | align: "center", |
| | | selection: true, |
| | | column: column, |
| | | labelWidth: 110, |
| | | }, |
| | | |
| | | useifid: 266, |
| | | }; |
| | | }, |
| | | computed: { |
| | | ...mapGetters(["userInfo"]), |
| | | ids() { |
| | | let ids = []; |
| | | this.selectionList.forEach((ele) => { |
| | |
| | | }); |
| | | return ids.join(","); |
| | | }, |
| | | }, |
| | | created() { |
| | | var that = this; |
| | | if ( |
| | | this.userInfo.role_name == "装备管理员" || |
| | | this.userInfo.role_name == "保安公司管理员" |
| | | ) { |
| | | this.useifid = this.userInfo.dept_id; |
| | | } |
| | | |
| | | //公安局进入 |
| | | if (this.userInfo.role_name == "公安管理员") { |
| | | that.option.column[4].dicUrl = |
| | | "/api/blade-system/dept/security_lazy-tree?parentId=1413470343230877697&jurisdiction=" + |
| | | that.userInfo.jurisdiction; |
| | | } else { |
| | | that.option.column[4].dicUrl = |
| | | "/api/blade-system/dept/security_lazy-tree?parentId=1413470343230877697"; |
| | | } |
| | | }, |
| | | methods: { |
| | | handleImport() { |
| | |
| | | // var form = this.data[0]; |
| | | // delete form.id; |
| | | // for (var k = 0; k < 13; k++) { |
| | | console.log(form, "12135"); |
| | | // console.log(form, "12135"); |
| | | // form["deptId"] = form.tenantName; |
| | | // delete form.tenantName; |
| | | // console.log(this.fromDeptId); |
| | | // console.log(form); |
| | | if (this.fromDeptId != undefined) { |
| | | form["deptId"] = this.fromDeptId; |
| | | } |
| | | if (this.useifid != 266) { |
| | | form["deptId"] = this.useifid; |
| | | } |
| | | adddata(form).then( |
| | | (res) => { |
| | | this.onLoad(this.page); |
| | |
| | | // } |
| | | }, |
| | | searchChange(params, done) { |
| | | params = JSON.parse(JSON.stringify(params)); |
| | | this.query = params; |
| | | this.page.currentPage = 1; |
| | | this.onLoad(this.page, params); |
| | |
| | | rowUpdate(row, index, done, loading) { |
| | | // row["deptId"] = row.tenantName; |
| | | // delete row.tenantName; |
| | | console.log(row.deptId); |
| | | // console.log(row.deptId); |
| | | if (this.fromDeptId != undefined) { |
| | | row["deptId"] = this.fromDeptId; |
| | | } |
| | | if (this.useifid != 266) { |
| | | row["deptId"] = this.useifid; |
| | | } |
| | | update(row).then( |
| | | () => { |
| | | this.onLoad(this.page); |
| | |
| | | refreshChange() { |
| | | this.onLoad(this.page, this.query); |
| | | }, |
| | | closeDep(name) { |
| | | for (let k in this.option.column) { |
| | | if (this.option.column[k].prop == name) { |
| | | this.option.column[k].search = false; |
| | | this.option.column[k].hide = true; |
| | | this.option.column[k].addDisplay = false; |
| | | this.option.column[k].editDisplay = false; |
| | | } |
| | | } |
| | | }, |
| | | openDep(name) { |
| | | for (let k in this.option.column) { |
| | | if (this.option.column[k].prop == name) { |
| | | this.option.column[k].search = true; |
| | | this.option.column[k].hide = false; |
| | | this.option.column[k].addDisplay = true; |
| | | this.option.column[k].editDisplay = true; |
| | | } |
| | | } |
| | | }, |
| | | onLoad(page, params = {}) { |
| | | this.loading = true; |
| | | var that = this; |
| | | // console.log(params.deptId); |
| | | if (this.fromDeptId != undefined) { |
| | | params["deptId"] = this.fromDeptId; |
| | | // this.closeDep("deptId"); |
| | | } else if (this.useifid != 266) { |
| | | console.log(123); |
| | | params["deptId"] = this.useifid; |
| | | } else { |
| | | this.openDep("deptId"); |
| | | } |
| | | //公安局进入 |
| | | if (this.userInfo.role_name == "公安管理员") { |
| | | params["jurisdiction"] = that.userInfo.jurisdiction; |
| | | } |
| | | |
| | | getdata( |
| | | page.currentPage, |
| | | page.pageSize, |