前端
This commit is contained in:
parent
4841110320
commit
908df37286
BIN
fuintAdmin/src/assets/images/wx.png
Normal file
BIN
fuintAdmin/src/assets/images/wx.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 453 B |
BIN
fuintAdmin/src/assets/images/xz.png
Normal file
BIN
fuintAdmin/src/assets/images/xz.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 467 B |
@ -249,10 +249,8 @@
|
||||
<!-- <detail :dataForm = "recordData"></detail>-->
|
||||
<HandoverOnly :recordData = "recordData"></HandoverOnly>
|
||||
</el-dialog>
|
||||
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {getHandoverListApi,printLocallyApi} from "@/api/handover/handover";
|
||||
|
||||
|
@ -271,14 +271,22 @@
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="会员性别" prop="paymentType">
|
||||
<el-select v-model="form.paymentType" placeholder="请选择会员标签(多选)" style="width: 100%">
|
||||
<el-option label="现金" value="CASH"></el-option>
|
||||
</el-select>
|
||||
<!-- <el-select v-model="form.paymentType" placeholder="请选择会员标签(多选)" style="width: 100%">-->
|
||||
<!-- <el-option label="现金" value="CASH"></el-option>-->
|
||||
<!-- </el-select>-->
|
||||
<div class="d-s">
|
||||
<div class="icon-type" v-for="(item,index) in paymentTypelist" :key="index" :class="{ 'acvtive' : index === tindex }" @click="Typeindex(index)" >
|
||||
<img src="../../assets/images/wx.png" style="width: 20px;height: 20px" v-if="index != tindex" >
|
||||
<img src="../../assets/images/xz.png" style="width: 20px;height: 20px" v-if="index == tindex" >
|
||||
{{item}}</div>
|
||||
</div>
|
||||
</el-form-item>
|
||||
<el-form-item label="会员年龄" prop="paymentType">
|
||||
<el-input placeholder="请输入内容" v-model="form.age">
|
||||
<template slot="append">.com</template>
|
||||
</el-input>
|
||||
<div class="d-s">
|
||||
<el-input placeholder="请输入年龄" v-model="input" style="width: 190px"></el-input>
|
||||
<div style="margin: 0 15px">至</div>
|
||||
<el-input placeholder="请输入年龄" v-model="input" style="width: 190px"></el-input>
|
||||
</div>
|
||||
</el-form-item>
|
||||
<el-form-item label="会员余额" prop="paymentType">
|
||||
<el-input placeholder="请输入内容" v-model="form.age">
|
||||
@ -358,6 +366,10 @@ export default {
|
||||
data() {
|
||||
return {
|
||||
tabindex: 0,
|
||||
tindex: 0,
|
||||
paymentTypelist:[
|
||||
"全部", "男", "女","不详",
|
||||
],
|
||||
tableData: [{
|
||||
status: 0,
|
||||
date: '2016-05-02',
|
||||
@ -461,6 +473,9 @@ export default {
|
||||
}
|
||||
});
|
||||
},
|
||||
Typeindex(index){
|
||||
this.tindex = index
|
||||
},
|
||||
getList() {
|
||||
let dateRange = []
|
||||
if (this.beginTime && this.endTime) {
|
||||
@ -614,4 +629,16 @@ export default {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
.icon-type{
|
||||
display: flex;
|
||||
align-items: center;
|
||||
font-weight: 400;
|
||||
font-size: 14px;
|
||||
color: #999999;
|
||||
margin-right: 20px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.acvtive{
|
||||
color: #FF770F !important;
|
||||
}
|
||||
</style>
|
||||
|
@ -11,10 +11,7 @@ VUE_APP_BASE_API = '/dev-api'
|
||||
VUE_APP_PUBLIC_PATH = '/'
|
||||
|
||||
# 后端接口地址
|
||||
|
||||
|
||||
|
||||
VUE_APP_SERVER_URL = 'http://192.168.31.178:8081/'
|
||||
VUE_APP_SERVER_URL = 'http://192.168.31.72:8081/'
|
||||
|
||||
|
||||
# cp端地址
|
||||
|
Loading…
Reference in New Issue
Block a user