Blame view

code/finance_web/src/components/manage.vue 19.3 KB
a  
谢明辉 committed
1
<template>
a  
谢明辉 committed
2
  <el-card class="box-card" id="manage">
s  
谢明辉 committed
3
    <div slot="header" class="clearfix">
a  
谢明辉 committed
4
      <span style="font-size:24px;color:#eff0dc">后台管理</span>
s  
谢明辉 committed
5 6
    </div>
    <!-- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
a  
谢明辉 committed
7
    <el-row type="flex" justify="start" style="text-align :left;border-bottom:1px solid #ebeef5;padding-bottom:18px">
s  
谢明辉 committed
8 9 10 11
      <el-col :span="6">
        <el-input class="input" v-model="contract_unid" placeholder="合同编号"></el-input>
        <el-button type="primary" @click="contract_unid_add">添加</el-button>
      </el-col>
a  
谢明辉 committed
12 13 14 15 16 17 18 19 20 21 22 23 24
      <el-col :span="6">
        <el-input class="input" v-model="customer_name" placeholder="客户名称"></el-input>
        <el-button type="primary" @click="customer_name_add">添加</el-button>
      </el-col>
      <el-col :span="6">
        <el-input class="input" v-model="salesperson" placeholder="销售员"></el-input>
        <el-button type="primary" @click="salesperson_add('employee')">添加</el-button>
      </el-col>
      <el-col :span="6">
        <el-input class="input" v-model="project_name" placeholder="项目名称"></el-input>
        <el-button type="primary" @click="project_name_add">添加</el-button>
      </el-col>
    </el-row>
a  
谢明辉 committed
25 26 27 28 29 30 31 32 33 34 35 36
    <el-row style="border-bottom:1px solid rgb(235, 238, 245);padding-bottom:18px">
      <el-col :span="6">
        <el-button class="add_button" type="primary" @click="product_line_type">产品线类型</el-button>
      </el-col>
      <el-col :span="6">
        <el-button class="add_button" type="primary" @click="contract_statu">合同状态</el-button>
      </el-col>
      <el-col :span="6">
        <el-button class="add_button" type="primary" @click="contract_type">合同性质</el-button>
      </el-col>
      <el-col :span="6">
        <el-button class="add_button" type="primary" @click="amount_statu">账款状态</el-button>
a  
谢明辉 committed
37
      </el-col>
s  
谢明辉 committed
38
    </el-row>
a  
谢明辉 committed
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
    <el-row>
      <el-col :span="6">
        <el-button class="add_button" type="primary" @click="login_user_dialog_show = !login_user_dialog_show">用户管理</el-button>
      </el-col>
      <transition name="el-fade-in-linear">
        <el-tabs type="border-card" v-show="login_user_dialog_show" style="width:30%;margin:auto">
          <el-tab-pane label="新建用户">
            <el-form :model="login_user_form" label-width="100px" label-position="left" :rules="login_user_form_rules" ref="login_user_form">
              <el-form-item label="用户类型" prop="role_unid">
                <el-select v-model="login_user_form.role_unid" clearable placeholder="用户类型" style="width:100%">
                  <el-option v-for="item in roles" :key="item.role_unid" :label="item.name" :value="item.role_unid">
                  </el-option>
                </el-select>
              </el-form-item>
              <el-form-item label="用户名" prop="username">
                <el-input v-model="login_user_form.username" placeholder="用户名" style="width:100%"></el-input>
              </el-form-item>
              <el-form-item label="姓名" prop="name">
                <el-input v-model="login_user_form.name" placeholder="姓名" style="width:100%"></el-input>
              </el-form-item>
            </el-form>
            <el-button-group>
              <el-button type="primary" @click="login_user_dialog_confirm()">确 定</el-button>
              <el-button type="primary" @click="login_user_dialog_cancel()">取 消</el-button>
            </el-button-group>
          </el-tab-pane>
          <el-tab-pane label="权限管理">
            <el-form :model="selected_user_data" label-width="60px" label-position="left" ref="selected_user_data">
              <el-form-item label="姓名">
                <el-input v-model="selected_user_data.user_name" :disabled="true"></el-input>
              </el-form-item>
              <el-form-item label="权限">
                <el-select v-model="selected_user_data.user_role_unid" style="width:100%">
                  <el-option v-for="item in roles" :key="item.role_unid" :label="item.name" :value="item.role_unid">
                  </el-option>
                </el-select>
              </el-form-item>
              <el-button-group>
                <el-button type="primary" @click="user_role_modify">确定</el-button>
                <el-button type="primary" @click="reset_role">重置</el-button>
              </el-button-group>
            </el-form>
            <br>
            <el-table :data="users_data" border style="max-height:350px;overflow-y:auto">
              <el-table-column label="姓名" prop="name" min-width="20%" align="center">
              </el-table-column>
              <el-table-column label="权限" prop="roles[0].name" min-width="20%" align="center">
              </el-table-column>
              <el-table-column label="操作" min-width="20%" align="center">
                <template slot-scope="scope">
                  <el-button type="text" @click="select_user_to_modify(scope.row)">
                    修改
                  </el-button>
                </template>
              </el-table-column>
            </el-table>
          </el-tab-pane>
        </el-tabs>
      </transition>
    </el-row>
    <el-dialog lock-scroll :visible.sync="add_dialog_show" width="30%" :show-close="false" style="">
a  
谢明辉 committed
100 101
      <el-input v-model="add_data.text"></el-input>
      <el-button type="primary" style="width:100%;margin-bottom:20px;margin-top:5px" @click="add_to_database">添加</el-button>
a  
谢明辉 committed
102
      <el-table :data="add_data.data" border style="max-height:350px;overflow-y:auto">
a  
谢明辉 committed
103 104 105 106
        <el-table-column label="名称" prop="name" min-width="30%" align="center">
        </el-table-column>
        <el-table-column label="码" prop="code" min-width="30%" align="center">
        </el-table-column>
a  
谢明辉 committed
107
        <el-table-column label="操作" min-width="20%" align="center">
a  
谢明辉 committed
108 109 110 111 112 113 114 115
          <template slot-scope="scope">
            <el-button type="text" @click="delete_code(scope.row)">
              删除
            </el-button>
          </template>
        </el-table-column>
      </el-table>
    </el-dialog>
s  
谢明辉 committed
116
  </el-card>
a  
谢明辉 committed
117

a  
谢明辉 committed
118
</template>
s  
谢明辉 committed
119 120

<script>
a  
谢明辉 committed
121 122 123 124
  export default {
    name: "manage",
    data() {
      return {
a  
谢明辉 committed
125
        users_data: [],
a  
谢明辉 committed
126 127 128 129 130 131 132 133 134
        add_dialog_show: false,
        login_user_dialog_show: false,
        code_base_url: this.$disparch_data.code_base_url,
        contract_base_url: this.$disparch_data.contract_base_url,
        auth_base_url: this.$disparch_data.auth_base_url,
        contract_unid: null,
        customer_name: null,
        salesperson: null,
        project_name: null,
a  
谢明辉 committed
135

a  
谢明辉 committed
136 137 138 139 140 141 142
        selected_user_data: {
          user_unid: "",
          user_name: "",
          user_role_unid: ""
        },
        selected_user_role_unid_before_modify: "",

a  
谢明辉 committed
143 144 145 146
        add_data: {
          text: null,
          data: [],
          url: null
a  
谢明辉 committed
147
        },
a  
谢明辉 committed
148 149 150 151 152 153 154
        roles: [],
        login_user_form: {
          role_unid: "",
          username: "",
          name: "",
          password: "0000",
          norm_type: "login"
a  
谢明辉 committed
155
        },
a  
谢明辉 committed
156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173

        login_user_form_rules: {
          username: {
            required: true,
            pattern: /^[a-zA-Z]{2,8}$/,
            message: "请输入2至8位英文",
            trigger: "blur"
          },
          name: {
            required: true,
            message: "请输入用户姓名",
            trigger: "blur"
          },
          role_unid: {
            required: true,
            message: "请选择用户类型",
            trigger: "blur"
          }
a  
谢明辉 committed
174
        }
a  
谢明辉 committed
175
      };
a  
谢明辉 committed
176
    },
a  
谢明辉 committed
177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195
    methods: {
      // -----------------------
      product_line_type() {
        this.add_data.url = this.code_base_url + "custom/cates/4FC51AD3C9/codes";
        this.get_data(this.add_data.url);
      },
      contract_statu() {
        this.add_data.url = this.code_base_url + "custom/cates/13BEFACBCF/codes";
        this.get_data(this.add_data.url);
      },
      contract_type() {
        this.add_data.url = this.code_base_url + "custom/cates/8EC31D08A0/codes";
        this.get_data(this.add_data.url);
      },
      amount_statu() {
        this.add_data.url = this.code_base_url + "custom/cates/42407C5EF2/codes";
        this.get_data(this.add_data.url);
      },
      delete_code(data) {
a  
谢明辉 committed
196 197 198 199 200 201 202 203 204 205 206 207 208 209
        this.$confirm("确认删除数据?", "确认信息", {
          confirmButtonText: "确认",
          cancelButtonText: "取消"
        })
          .then(() => {
            this.$Axios({
              method: "delete",
              url: this.add_data.url + "/" + data.unid
            }).then(res => {
              this.show_message("删除成功", "success");
              this.get_data(this.add_data.url);
            });
          })
          .catch(() => {});
a  
谢明辉 committed
210 211 212 213 214 215 216 217 218 219
      },
      get_data(url) {
        this.$Axios.get(url).then(res => {
          if (res.data.list_data) {
            this.add_data.data = res.data.list_data;
            this.add_dialog_show = true;
          }
        });
      },
      add_to_database() {
a  
谢明辉 committed
220 221 222 223
        if (this.add_data.text == null) {
          this.$message.error("不能为空");
          return;
        }
a  
谢明辉 committed
224 225 226 227 228 229 230
        var code = 0;
        this.add_data.data.forEach(e => {
          if (e.code > code) {
            code = e.code;
          }
        });
        code++;
a  
谢明辉 committed
231 232
        this.$Axios({
          method: "post",
a  
谢明辉 committed
233
          url: this.add_data.url,
a  
谢明辉 committed
234
          data: {
a  
谢明辉 committed
235 236 237 238 239 240 241 242 243 244 245 246
            name: this.add_data.text,
            note: this.add_data.text,
            code: code
          }
        }).then(res => {
          if (res.data.code == code) {
            this.show_message("添加成功", "success");
            this.add_data.text = null;
            this.get_data(this.add_data.url);
          }
        });
      },
a  
谢明辉 committed
247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263

      get_users() {
        this.$Axios({
          method: "get",
          url: this.auth_base_url + "users",
          params: {
            norm_type: "login"
          }
        })
          .then(res => {
            this.$set(this, "users_data", res.data.list_data);
            // this.users_data = res.data.list_data;
          })
          .catch(err => {
            console.log(err.message);
          });
      },
a  
谢明辉 committed
264 265 266 267 268 269 270 271
      // -----------------------
      contract_unid_add() {
        if (this.contract_unid) {
          this.$Axios({
            method: "post",
            data: { contract_unid: this.contract_unid },
            url: this.contract_base_url,
            headers: { "Content-Type": "application/json" }
谢明辉 committed
272
          })
a  
谢明辉 committed
273 274 275 276 277 278 279 280 281 282 283 284
            .then(response => {
              if (response.data.ecode == "200") {
                this.contract_unid = null;
                this.show_message("添加成功", "success");
              } else if (response.data.ecode == "600") {
                this.show_message("重复的合同编号", "error");
              } else {
                this.show_message("添加失败", "error");
              }
            })
            .catch(err => {
              console.log(err);
谢明辉 committed
285
              this.show_message("添加失败", "error");
a  
谢明辉 committed
286 287 288 289 290 291 292 293 294 295 296 297
            });
        } else {
          this.show_message("请填写信息", "info");
        }
      },
      customer_name_add() {
        if (this.customer_name) {
          this.$Axios({
            method: "post",
            url: this.contract_base_url + "customers",
            data: { customer_name: this.customer_name },
            headers: { "Content-Type": "application/json" }
谢明辉 committed
298
          })
a  
谢明辉 committed
299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318
            .then(response => {
              if (response.data.ecode == "200") {
                this.customer_name = null;
                this.show_message("添加成功", "success");
              } else if (response.data.ecode == "600") {
                this.show_message("重复的客户名称", "error");
              } else {
                this.show_message("添加失败", "error");
              }
            })
            .catch(err => {
              console.log(err);
              this.show_message("添加失败", "error");
            });
        } else {
          this.show_message("请填写信息", "info");
        }
      },
      salesperson_add(type) {
        if (this.salesperson) {
a  
谢明辉 committed
319 320 321
          this.$Axios({
            method: "post",
            url: this.auth_base_url + "users",
a  
谢明辉 committed
322 323 324 325 326 327 328
            data: {
              norm_type: type,
              username: this.salesperson,
              name: this.salesperson,
              password: "0000"
            },
            headers: { "Content-Type": "application/json" }
谢明辉 committed
329
          })
a  
谢明辉 committed
330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357
            .then(response => {
              if (response.data.name) {
                this.salesperson = null;
                this.show_message("添加成功", "success");
              }
            })
            .catch(err => {
              this.show_message("添加失败", "error");
              console.log(err.message);
            });
        } else {
          this.show_message("请填写信息", "info");
        }
      },
      project_name_add() {
        if (this.project_name) {
          this.$Axios({
            method: "post",
            url: this.contract_base_url + "projects",
            data: { project_name: this.project_name },
            headers: { "Content-Type": "application/json" }
          })
            .then(response => {
              this.project_name = null;
              if (response.data.ecode == "200") {
                this.show_message("添加成功", "success");
              } else if (response.data.ecode == "600") {
                this.show_message("重复的项目名称", "error");
谢明辉 committed
358 359 360 361 362 363
              } else {
                this.show_message("添加失败", "error");
              }
            })
            .catch(err => {
              console.log(err);
a  
谢明辉 committed
364
              this.show_message("添加失败", "error");
谢明辉 committed
365
            });
a  
谢明辉 committed
366 367
        } else {
          this.show_message("请填写信息", "info");
a  
谢明辉 committed
368
        }
a  
谢明辉 committed
369 370 371 372 373 374 375 376 377 378
      },
      show_message(message, type) {
        this.$message({
          message: message,
          type: type,
          center: true,
          showClose: true,
          duration: 3000
        });
      },
a  
谢明辉 committed
379
      get_roles() {
a  
谢明辉 committed
380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395
        this.$Axios({
          method: "get",
          url: this.auth_base_url + "roles"
        })
          .then(response => {
            if (response.data.list_data) {
              this.roles = response.data.list_data;
            } else {
              this.show_message("失败", "error");
            }
          })
          .catch(err => {
            this.show_message("失败", "error");
            console.log(err.message);
          });
      },
a  
谢明辉 committed
396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445
      select_user_to_modify(row) {
        if (!row.roles) {
          return;
        }
        this.selected_user_data.user_name = row.name;
        this.selected_user_data.user_unid = row.user_unid;

        this.selected_user_data.user_role_unid = row.roles[0].role_unid;
        this.selected_user_role_unid_before_modify = row.roles[0].role_unid;
      },
      reset_role() {
        this.selected_user_data = {
          user_unid: "",
          user_name: "",
          user_role_unid: ""
        };
        this.selected_user_role_unid_before_modify = "";
      },
      user_role_modify() {
        if (
          !this.selected_user_data.user_unid ||
          !this.selected_user_data.user_role_unid ||
          !this.selected_user_role_unid_before_modify
        ) {
          this.show_message("?????", "warning");
          return;
        }
        var user_unid = this.selected_user_data.user_unid;
        var role_unid = this.selected_user_data.user_role_unid;
        var before_role = this.selected_user_role_unid_before_modify;
        this.$Axios({
          method: "delete",
          url:
            this.auth_base_url + "/users/" + user_unid + "/roles/" + before_role
        })
          .then(res => {
            this.$Axios({
              method: "post",
              url: this.auth_base_url + "/users/" + user_unid + "/roles",
              data: { role_unid: role_unid }
            })
              .then(res => {
                this.show_message("修改成功", "success");
                this.get_users();
              })
              .catch(err => {});
          })
          .catch(err => {});
        this.reset_role();
      },
a  
谢明辉 committed
446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491
      login_user_dialog_cancel() {
        this.$refs["login_user_form"].resetFields();
        this.login_user_dialog_show = false;
      },
      login_user_dialog_confirm() {
        this.$refs["login_user_form"].validate(valid => {
          if (valid) {
            this.$Axios({
              method: "post",
              url: this.auth_base_url + "users",
              headers: { "Content-Type": "application/json" },
              data: this.login_user_form
            })
              .then(res => {
                if (res.data.user_unid) {
                  this.$Axios({
                    method: "post",
                    url:
                      this.auth_base_url +
                      "users/" +
                      res.data.user_unid +
                      "/roles",
                    headers: { "Content-Type": "application/json" },
                    data: {
                      role_unid: this.login_user_form.role_unid
                    }
                  })
                    .then(res => {
                      this.show_message("添加成功,默认密码: 0000", "success");
                      this.$refs["login_user_form"].resetFields();
                      this.login_user_dialog_show = false;
                    })
                    .catch(err => {
                      this.login_user_dialog_show = false;
                      this.show_message("添加失败", "error");
                    });
                } else {
                  this.show_message("添加失败", "error");
                }
              })
              .catch(err => {
                console.log(err);
                this.show_message("添加失败", "error");
              });
          }
        });
a  
谢明辉 committed
492 493 494 495 496 497 498 499 500 501 502
      },
      change_dialog() {
        if (localStorage.getItem("style")) {
          var style = JSON.parse(localStorage.getItem("style"));
          var dialogs = document.getElementsByClassName("el-dialog");
          for (let i = 0; i < dialogs.length; i++) {
            const e = dialogs[i];
            e.style.backgroundColor = style.color;
            e.style.backgroundImage = style.image;
          }
        }
a  
谢明辉 committed
503 504
      }
    },
a  
谢明辉 committed
505 506 507 508 509 510 511
    created() {
      this.get_roles();
      this.get_users();
    },
    mounted(){
      this.change_dialog();
    }
a  
谢明辉 committed
512
  };
s  
谢明辉 committed
513 514 515
</script>

<style scoped>
a  
谢明辉 committed
516 517 518 519 520 521
#manage {
  background-color: rgba(0, 0, 0, 0);
}
#manage .el-card__body {
  background-color: rgba(0, 0, 0, 0);
}
a  
谢明辉 committed
522 523 524
.el-col {
  text-align: center;
}
s  
谢明辉 committed
525 526 527
.input {
  width: 200px;
}
a  
谢明辉 committed
528
.add_button {
a  
谢明辉 committed
529 530
  display: inline-block;
  font-size: 18px;
a  
谢明辉 committed
531 532
  width: 75%;
  min-width: 200px;
a  
谢明辉 committed
533
  margin-top: 20px;
a  
谢明辉 committed
534
}
a  
谢明辉 committed
535

a  
谢明辉 committed
536 537
#manage >>> .el-button--primary {
  border-color: #34352c;
a  
谢明辉 committed
538
  background-color: rgba(0, 0, 0, 0.3);
a  
谢明辉 committed
539 540 541 542
}
#manage >>> label {
  color: black;
}
a  
谢明辉 committed
543 544 545
#manage >>> .el-dialog {
  border-radius: 20px;
  background-color: lightblue;
a  
谢明辉 committed
546 547 548
}
#manage >>> input {
  border-color: black;
a  
谢明辉 committed
549
  color: black;
a  
谢明辉 committed
550
  background-color: rgba(0, 0, 0, 0.3);
a  
谢明辉 committed
551 552 553
}
#manage >>> .el-card__header {
  background-color: #34352c;
a  
谢明辉 committed
554
}
a  
谢明辉 committed
555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574

#manage >>> tr,
#manage >>> .el-table {
  background-color: rgba(0, 0, 0, 0);
}
#manage >>> th {
  background-color: rgba(0, 0, 0, 0.2);
  color: black;
}
#manage .el-table {
  color: black;
}
#manage .el-tabs,
#manage >>> .el-tabs__header {
  background-color: rgba(0, 0, 0, 0);
}
#manage >>> .is-active {
  background-color: rgba(0, 0, 0, 0.2);
  color: black;
}
s  
谢明辉 committed
575 576
</style>