| | |
| | | subDisabled: false, //编辑页面保存按钮是否禁用(true禁用,false可用) |
| | | OperationType: null, //保存类型(新增1修改3) |
| | | HInterID: null, |
| | | baseURL: "http://47.96.97.237/API", |
| | | baseURL: process.env.VUE_APP_BASE_API || "http://47.96.97.237/API/", |
| | | user: "admin", |
| | | currentRow: [], |
| | | lastSelectedRowIndex: null, // 用于记录上次点击的行索引 |
| | |
| | | let sWhere = ""; |
| | | this.loading = true; |
| | | axios |
| | | .get(process.env.VUE_APP_BASE_URL + "/Gy_Employee/list", { |
| | | .get(this.$baseUrl + "/Gy_Employee/list", { |
| | | params: { sWhere: sWhere, user: this.user, Organization: "浙江智云迈思" }, |
| | | }) |
| | | .then((response) => { |