9.21
This commit is contained in:
parent
e95df63792
commit
314fdca580
@ -47,10 +47,12 @@
|
|||||||
"file-saver": "2.0.5",
|
"file-saver": "2.0.5",
|
||||||
"fuse.js": "6.4.3",
|
"fuse.js": "6.4.3",
|
||||||
"highlight.js": "9.18.5",
|
"highlight.js": "9.18.5",
|
||||||
|
"html2canvas": "^1.4.1",
|
||||||
"js-beautify": "1.13.0",
|
"js-beautify": "1.13.0",
|
||||||
"js-cookie": "3.0.1",
|
"js-cookie": "3.0.1",
|
||||||
"jsencrypt": "3.0.0-rc.1",
|
"jsencrypt": "3.0.0-rc.1",
|
||||||
"nprogress": "0.2.0",
|
"nprogress": "0.2.0",
|
||||||
|
"qrcode": "^1.5.4",
|
||||||
"quill": "1.3.7",
|
"quill": "1.3.7",
|
||||||
"screenfull": "5.0.2",
|
"screenfull": "5.0.2",
|
||||||
"sortablejs": "1.10.2",
|
"sortablejs": "1.10.2",
|
||||||
|
@ -29,9 +29,20 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="o-top" v-if="!userInfo">
|
<div class="o-top" v-if="!userInfo">
|
||||||
<div class="left_input">
|
<div class="left_input">
|
||||||
<input type="text" v-model = "userMobile" @input="getUser()" placeholder="请输入会员手机号">
|
<!-- <input type="text" v-model = "userMobile" @input="getUser()" placeholder="请输入会员手机号">-->
|
||||||
<i class="el-icon-search" @click="getUser()"></i>
|
<!-- <i class="el-icon-search" @click="getUser()"></i>-->
|
||||||
|
<el-autocomplete
|
||||||
|
style="width: 95%;margin: 15px "
|
||||||
|
|
||||||
|
v-model="state"
|
||||||
|
:fetch-suggestions="querySearchAsync"
|
||||||
|
placeholder="请输入内容"
|
||||||
|
@select="handleSelect"
|
||||||
|
>
|
||||||
|
<template slot-scope="{ item }">
|
||||||
|
<div class="name">{{ item.name }}</div>
|
||||||
|
</template>
|
||||||
|
</el-autocomplete>
|
||||||
</div>
|
</div>
|
||||||
<div class="d-s">
|
<div class="d-s">
|
||||||
<div class="an_bor" @click="addVip()">新增会员</div>
|
<div class="an_bor" @click="addVip()">新增会员</div>
|
||||||
@ -1611,7 +1622,7 @@ input {
|
|||||||
|
|
||||||
.left_input {
|
.left_input {
|
||||||
width: 70%;
|
width: 70%;
|
||||||
border: 1px solid #fff;
|
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
@ -344,7 +344,7 @@ $light_gray: #eee;
|
|||||||
.box-left{
|
.box-left{
|
||||||
width: 50%;
|
width: 50%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
background: #00aaff;
|
|
||||||
background-image: url("../../assets/images/left-img.png");
|
background-image: url("../../assets/images/left-img.png");
|
||||||
background-size: cover;
|
background-size: cover;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
Loading…
Reference in New Issue
Block a user