Commit 06255044 by liyuhang19990520

没有内容

parent 8388b47f
<!--
* @Author: your name
* @Date: 2021-11-25 10:15:01
* @LastEditTime: 2021-11-25 10:18:56
* @LastEditors: Please set LastEditors
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
* @FilePath: \founder_vue\src\components\SelectCode.vue
-->
<template>
<el-select
v-model="value"
multiple
filterable
allow-create
default-first-option
loading
placeholder="请选择文章标签"
>
<el-option
v-for="item in options"
:key="item.value"
:label="item.label"
:value="item.value"
>
</el-option>
</el-select>
</template>
<script>
export default {
data() {
return {
options: [
{
value: "HTML",
label: "HTML",
},
{
value: "CSS",
label: "CSS",
},
{
value: "JavaScript",
label: "JavaScript",
},
],
value: [],
};
},
mounted(){
console.log(11111111111)
},
};
</script>
\ No newline at end of file
......@@ -294,11 +294,12 @@
<Cascader :form="addFormParams" id="unitCode"></Cascader>
</el-form-item>
<el-form-item class="info-item" label="用户警号:" prop="policeNumber">
<el-input
<SelectCode></SelectCode>
<!-- <el-input
placeholder="请输入用户警号"
class="input-info"
v-model="addFormParams.policeNumber"
></el-input>
></el-input> -->
</el-form-item>
<el-form-item class="info-item" label="密码:" prop="password">
<el-input
......@@ -449,12 +450,13 @@ import "@/icons/ic_add.svg";
import qs from "qs";
import Cascader from "@/components/Cascader.vue";
import Confirmation from "@/components/Confirmation.vue";
import SelectCode from "@/components/SelectCode.vue";
export default {
name: "UserManage",
components: {
Confirmation,
Cascader,
SelectCode,
},
created() {
let w1 = 1920;
......
/*
* @Author: your name
* @Date: 2021-09-07 09:57:48
* @LastEditTime: 2021-11-24 18:33:09
* @LastEditTime: 2021-11-25 10:23:03
* @LastEditors: Please set LastEditors
* @Description: In User Settings Edit
* @FilePath: \指纹系统\founder_vue\vue.config.js
......@@ -94,7 +94,7 @@ module.exports = {
// target: "http://192.168.128.166:8099", // 湖南-张
// target: "http://192.168.128.114:8099", // 湖南-马
// target: "http://192.168.128.116:8099", // 湖南-王
// target: "http://192.168.128.111:8099", // 湖南-张呈光
target: "http://192.168.128.118:8099", // 湖南-张呈光
// target: "http://172.18.116.73:8099/", //统一的请求头部每次修改都要重启才会生效 http://39.99.224.27:8006/ ma
// target: "http://127.0.0.1:8099",
// target: "http://47.92.225.109:5602",
......@@ -115,13 +115,13 @@ module.exports = {
"^/login": ""
}
},
"/system": {
target: "http://192.168.128.106:8765/security", // 湖南-王
// target: "http://www.meetfood.cn:2390/system", // 湖南-王
"/security": {
// target: "http://192.168.128.106:8765/security", // 湖南-王
target: "http://www.meetfood.cn:2390/security", // 湖南-王
ws: true,
changeOrigin: true,
pathRewrite: {
"^/system": ""
"^/security": ""
}
}
// 阿里
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment