manage.vue 13.8 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 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 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 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 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413
<template>
  <el-card class="box-card" id="manage">
    <div slot="header" class="clearfix">
      <span style="font-size:24px;color:#eff0dc">后台管理</span>
    </div>
    <!-- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
    <el-row type="flex" justify="start" style="text-align :left;border-bottom:1px solid #ebeef5;padding-bottom:18px">
      <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>
      <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>
    <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="add_login_user">添加登录用户</el-button>
      </el-col>
    </el-row>
    <el-row>
      <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>
      </el-col>
    </el-row>
    <el-dialog id="login_user_dialog" title="添加登录户" :visible.sync="login_user_dialog_show" width="30%" :show-close="false">
      <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>
      <div slot="footer" class="dialog-footer">
        <el-button @click="login_user_dialog_cancel()">取 消</el-button>
        <el-button type="primary" @click="login_user_dialog_confirm()">确 定</el-button>
      </div>
    </el-dialog>

    <el-dialog :visible.sync="add_dialog_show" width="30%" :show-close="false" style="max-height:800px">
      <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>
      <el-table :data="add_data.data" highlight-current-row border>
        <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>
        <el-table-column label="操作" min-width="20%" align="center" fixed="right">
          <template slot-scope="scope">
            <el-button type="text" @click="delete_code(scope.row)">
              删除
            </el-button>
          </template>
        </el-table-column>
      </el-table>
    </el-dialog>
  </el-card>

</template>

<script>
  export default {
    name: "manage",
    data() {
      return {
        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,

        add_data: {
          text: null,
          data: [],
          url: null
        },
        roles: [],
        login_user_form: {
          role_unid: "",
          username: "",
          name: "",
          password: "0000",
          norm_type: "login"
        },

        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"
          }
        }
      };
    },
    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) {
        this.$Axios({
          method:'delete',
          url:this.add_data.url + '/' + data.unid
        }).then(res=>{
          this.show_message('删除成功','success')
          this.get_data(this.add_data.url)
        })
        
      },
      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() {
        var code = 0;
        this.add_data.data.forEach(e => {
          if (e.code > code) {
            code = e.code;
          }
        });
        code++;
        this.$Axios({
          method: "post",
          url: this.add_data.url,
          data: {
            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);
          }
        });
      },
      // -----------------------
      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" }
          })
            .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);
              this.show_message("添加失败", "error");
            });
        } 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" }
          })
            .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) {
          this.$Axios({
            method: "post",
            url: this.auth_base_url + "users",
            data: {
              norm_type: type,
              username: this.salesperson,
              name: this.salesperson,
              password: "0000"
            },
            headers: { "Content-Type": "application/json" }
          })
            .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");
              } else {
                this.show_message("添加失败", "error");
              }
            })
            .catch(err => {
              console.log(err);
              this.show_message("添加失败", "error");
            });
        } else {
          this.show_message("请填写信息", "info");
        }
      },
      show_message(message, type) {
        this.$message({
          message: message,
          type: type,
          center: true,
          showClose: true,
          duration: 3000
        });
      },
      add_login_user() {
        this.$Axios({
          method: "get",
          url: this.auth_base_url + "roles"
        })
          .then(response => {
            if (response.data.list_data) {
              this.roles = response.data.list_data;
              this.login_user_dialog_show = true;
            } else {
              this.show_message("失败", "error");
            }
          })
          .catch(err => {
            this.show_message("失败", "error");
            console.log(err.message);
          });
      },
      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");
              });
          }
        });
      }
    },
    created() {}
  };
</script>

<style scoped>
.el-col {
  text-align: center;
}
.input {
  width: 200px;
}
.add_button {
  display: inline-block;
  font-size: 18px;
  width: 75%;
  min-width: 200px;
  margin-top: 20px;
}

#manage >>> .el-button--primary {
  border-color: #34352c;
  background-color: #34352c;
}
#manage >>> label {
  color: black;
}
#manage >>> .el-card__body {
  background: lightgray;
}
#manage >>> input {
  border-color: black;
  color: black;
}
#manage >>> .el-card__header {
  background-color: #34352c;
}
</style>