Blame view

code/finance_web/src/components/manage.vue 9.63 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 25 26
      <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>
      <el-button class="add_button" type="text" @click="login_user_dialog_show = true">添加登录用户</el-button>
s  
谢明辉 committed
27
    </el-row>
a  
谢明辉 committed
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49

    <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>
s  
谢明辉 committed
50
  </el-card>
a  
谢明辉 committed
51

a  
谢明辉 committed
52
</template>
s  
谢明辉 committed
53 54 55 56 57 58

<script>
export default {
  name: "manage",
  data() {
    return {
a  
谢明辉 committed
59
      login_user_dialog_show: false,
s  
谢明辉 committed
60 61
      code_base_url: disparch_data.code_base_url,
      contract_base_url: disparch_data.contract_base_url,
a  
谢明辉 committed
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
      auth_base_url: disparch_data.auth_base_url,
      contract_unid: null,
      customer_name: null,
      salesperson: null,
      project_name: null,

      roles: [],
      login_user_form: {
        role_unid: "",
        username: "",
        name: "",
        password: "0000",
        norm_type: "login"
      },

      login_user_form_rules: {
        username: {
          required: true,
谢明辉 committed
80
          pattern: /^[a-zA-Z]{2,8}$/,
a  
谢明辉 committed
81 82 83 84 85 86 87 88 89 90 91 92 93 94
          message: "请输入2至8位英文",
          trigger: "blur"
        },
        name: {
          required: true,
          message: "请输入用户姓名",
          trigger: "blur"
        },
        role_unid: {
          required: true,
          message: "请选择用户类型",
          trigger: "blur"
        }
      }
s  
谢明辉 committed
95 96 97 98
    };
  },
  methods: {
    contract_unid_add() {
a  
谢明辉 committed
99 100 101 102 103 104
      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
105 106 107 108 109 110 111 112 113 114 115 116 117
        })
          .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);
a  
谢明辉 committed
118
            this.show_message("添加失败", "error");
谢明辉 committed
119
          });
a  
谢明辉 committed
120 121 122 123 124 125 126 127 128 129 130
      } 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
131 132 133 134 135 136 137 138 139 140 141 142 143
        })
          .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);
a  
谢明辉 committed
144
            this.show_message("添加失败", "error");
谢明辉 committed
145
          });
a  
谢明辉 committed
146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
      } 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" }
谢明辉 committed
162 163 164 165 166 167 168 169 170 171 172
        })
          .then(response => {
            if (response.data.ecode) {
              this.salesperson = null;
              this.show_message("添加成功", "success");
            }
          })
          .catch(err => {
            this.show_message("添加失败", "error");
            console.log(err.message);
          });
a  
谢明辉 committed
173 174 175
      } else {
        this.show_message("请填写信息", "info");
      }
s  
谢明辉 committed
176
    },
a  
谢明辉 committed
177 178 179 180 181 182 183
    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" }
谢明辉 committed
184 185 186 187 188 189 190 191 192 193 194 195 196
        })
          .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);
a  
谢明辉 committed
197
            this.show_message("添加失败", "error");
谢明辉 committed
198
          });
a  
谢明辉 committed
199 200 201 202 203
      } else {
        this.show_message("请填写信息", "info");
      }
    },
    show_message(message, type) {
s  
谢明辉 committed
204
      this.$message({
a  
谢明辉 committed
205 206 207 208 209 210 211 212 213 214 215
        message: message,
        type: type,
        center: true,
        showClose: true,
        duration: 1500
      });
    },
    get_roles() {
      this.$Axios({
        method: "get",
        url: this.auth_base_url + "roles"
s  
谢明辉 committed
216
      })
a  
谢明辉 committed
217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237
        .then(response => {
          if (response.data.list_data) {
            this.roles = response.data.list_data;
          }
        })
        .catch(err => {
          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
谢明辉 committed
238 239 240 241 242 243 244 245 246 247 248 249 250 251
          })
            .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
                  }
a  
谢明辉 committed
252
                })
谢明辉 committed
253 254 255 256 257 258 259 260 261 262 263 264 265 266 267
                  .then(res => {
                    this.show_message("添加成功", "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);
a  
谢明辉 committed
268
              this.show_message("添加失败", "error");
谢明辉 committed
269
            });
a  
谢明辉 committed
270 271
        }
      });
s  
谢明辉 committed
272
    }
a  
谢明辉 committed
273 274 275
  },
  created() {
    this.get_roles();
s  
谢明辉 committed
276 277 278 279 280 281 282 283
  }
};
</script>

<style scoped>
.input {
  width: 200px;
}
a  
谢明辉 committed
284 285 286
.add_button {
  font-size: 20px;
  padding-top: 18px;
a  
谢明辉 committed
287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304
  color: black;
}
#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;
a  
谢明辉 committed
305
}
s  
谢明辉 committed
306 307
</style>