Commit e6c10e7c authored by zhangjianguo's avatar zhangjianguo
parents 2f013f91 e4366a21
...@@ -12,6 +12,7 @@ export default { ...@@ -12,6 +12,7 @@ export default {
<style> <style>
@import "//at.alicdn.com/t/font_1769104_qg9btfnng5.css"; @import "//at.alicdn.com/t/font_1769104_qg9btfnng5.css";
@import "./assets/css/common.css";
html, html,
body { body {
margin: 0; margin: 0;
...@@ -21,6 +22,7 @@ body { ...@@ -21,6 +22,7 @@ body {
*{ *{
margin:0; margin:0;
padding:0; padding:0;
box-sizing: border-box;
} }
#app { #app {
height: 100%; height: 100%;
......
...@@ -32,5 +32,11 @@ ...@@ -32,5 +32,11 @@
background: #fff; background: #fff;
} }
.w100{ .w100{
width:100px; width:100px!important;
}
.el-icon-search{
cursor: pointer;
}
.el-table img{
cursor: pointer;
} }
...@@ -10,11 +10,11 @@ ...@@ -10,11 +10,11 @@
<div class="searchInput"> <div class="searchInput">
<el-input style="display:inline-block;width:225px;height:30px" <el-input style="display:inline-block;width:225px;height:30px"
placeholder="请输入会员名称搜索" placeholder="请输入会员名称搜索"
v-model="value" v-model="msg.Name"
size="small" size="small"
clearable> clearable>
</el-input> </el-input>
<span class="el-icon-search" style="color:#979dad;font-size:14px;position:relative;top:1px"></span> <span @click="getList" class="el-icon-search" style="color:#979dad;font-size:14px;position:relative;top:1px"></span>
</div> </div>
</div> </div>
<el-table <el-table
...@@ -22,51 +22,41 @@ ...@@ -22,51 +22,41 @@
border border
style="width: 100%;margin:20px 0"> style="width: 100%;margin:20px 0">
<el-table-column <el-table-column
prop="ID" prop="Id"
label="ID"> label="ID">
</el-table-column> </el-table-column>
<el-table-column <el-table-column
prop="address" prop="Name"
width="280"
label="会员等级"> label="会员等级">
<template slot-scope="scope">
<div class="app-image" style="background-image: url('https://wx.qlogo.cn/mmopen/vi_32/HO8Q9ibH7UtSFzHs67f0MH6VWjftiboELYLBya5OxpZkHDlicLMq39gxRHS4NhOG1AUepQ13JdUyrT7eM52u6hAsg/132');
background-size: cover; background-position: center center; width: 50px; height: 50px; border-radius: 0%; float: left; margin-right: 8px;"></div>
<div flex="dir:left cross:center">易飞易&港中旅小李15351281772</div>
<img style="width:24px;height:24px" src="../../assets/img/userman/wx.png" alt="" class="platform-img">
<button type="button" class="el-button el-button--success" style="float: right; padding: 5px !important;">
<span>显示OpenId</span>
</button>
<div>ow_7I5dE_g9Fe1BuBPKdk8RNtEj0</div>
</template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
prop="name" prop="name"
label="会员名称"> label="会员名称">
</el-table-column> </el-table-column>
<el-table-column <el-table-column
prop="name" prop="Discount"
label="折扣"> label="折扣">
</el-table-column> </el-table-column>
<el-table-column <el-table-column
prop="name" prop="name"
label="购买价格(元)"> label="购买价格(元)">
<template slot-scope="scope"> <template slot-scope="scope">
<span class="blue">0</span> <span class="blue">{{scope.row.MemberBuyMoney}}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
prop="name" prop="name"
label="累计金额升级条件(元)"> label="累计金额升级条件(元)">
<template slot-scope="scope"> <template slot-scope="scope">
<span class="blue">0</span> <span class="blue">{{scope.row.UpGradeMoney}}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
prop="name" prop="name"
label="启用状态"> label="启用状态">
<template slot-scope="scope"> <template slot-scope="scope">
<span class="blue">0</span> <span v-if="scope.row.Enabled==1"></span>
<span v-if="scope.row.Enabled==2"></span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
...@@ -75,8 +65,8 @@ ...@@ -75,8 +65,8 @@
label="操作"> label="操作">
<template slot-scope="scope"> <template slot-scope="scope">
<img style="width:32px;height:32px" src="../../assets/img/userman/edit.png" alt=""> <img style="width:32px;height:32px" src="../../assets/img/userman/edit.png" alt="">
<img style="width:32px;height:32px;margin:0 10px" src="../../assets/img/userman/integral.png" alt=""> <img style="width:32px;height:32px;margin:0 10px" src="../../assets/img/userman/del.png" alt="">
<img style="width:32px;height:32px" src="../../assets/img/userman/balance.png" alt=""> <!-- <img style="width:32px;height:32px" src="../../assets/img/userman/balance.png" alt=""> -->
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
...@@ -98,12 +88,13 @@ ...@@ -98,12 +88,13 @@
dialogVisible:false, dialogVisible:false,
value:'', value:'',
options:[], options:[],
tableData:[ tableData:[],
{ID:'111'}
],
msg:{ msg:{
pageIndex:1, pageIndex:1,
pageSize:15, pageSize:15,
Grade:0,
Name:'',
Enabled:0,
}, },
total:0, total:0,
rules: { rules: {
...@@ -116,9 +107,21 @@ ...@@ -116,9 +107,21 @@
}; };
}, },
created() { created() {
this.getList();
}, },
methods: { methods: {
getList(){
this.loading=true;
this.apipost("/api/user/GetMemberGradePageList", this.msg, res => {
this.loading=false;
if(res.data.resultCode==1){
this.total=res.data.data.count;
let pageData=res.data.data.pageData;
this.tableData=pageData;
}
})
},
goUrl(){ goUrl(){
this.$router.push({ this.$router.push({
name: 'setMember', name: 'setMember',
...@@ -131,9 +134,6 @@ ...@@ -131,9 +134,6 @@
this.msg.pageIndex = val; this.msg.pageIndex = val;
this.getList(); this.getList();
}, },
getList(){
},
}, },
mounted() { mounted() {
......
...@@ -32,11 +32,11 @@ ...@@ -32,11 +32,11 @@
</el-switch> </el-switch>
</el-form-item> </el-form-item>
<el-form-item label="会员图标" prop="name"> <el-form-item label="会员图标" prop="name">
<el-button size="small">选择文件</el-button> <el-button @click="openChangeDig" size="small">选择文件</el-button>
<div><img style="width:80px;height:80px" src="../../assets/img/default.png" alt=""></div> <div><img style="width:80px;height:80px" src="../../assets/img/default.png" alt=""></div>
</el-form-item> </el-form-item>
<el-form-item label="会员背景色" prop="name"> <el-form-item label="会员背景色" prop="name">
<el-button size="small">选择文件</el-button> <el-button @click="openChangeDig" size="small">选择文件</el-button>
<div><img style="width:80px;height:80px" src="../../assets/img/default.png" alt=""></div> <div><img style="width:80px;height:80px" src="../../assets/img/default.png" alt=""></div>
</el-form-item> </el-form-item>
<el-form-item label="累计金额自动升级"> <el-form-item label="累计金额自动升级">
...@@ -85,7 +85,7 @@ ...@@ -85,7 +85,7 @@
width="180px" width="180px"
label="权益图标"> label="权益图标">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button size="small">选择图片</el-button> <el-button @click="openChangeDig" size="small">选择图片</el-button>
<img style="margin-left: 10px;width:50px;height:50px" src="../../assets/img/default.png" alt=""> <img style="margin-left: 10px;width:50px;height:50px" src="../../assets/img/default.png" alt="">
</template> </template>
</el-table-column> </el-table-column>
...@@ -129,12 +129,81 @@ ...@@ -129,12 +129,81 @@
<div style="margin-top:20px"> <div style="margin-top:20px">
<el-button size="small" type="primary" @click="dialogVisible = false">保存</el-button> <el-button size="small" type="primary" @click="dialogVisible = false">保存</el-button>
</div> </div>
<!-- 选择文件 -->
<el-dialog title="选择文件" :visible.sync="changeState" width="1240px">
<el-row style="border: 1px solid rgb(227, 227, 227);">
<el-col :span="6" style="border-right: 1px solid rgb(227, 227, 227);">
<el-button style="margin-top: 12px;margin-left: 5%;" type="primary" size="small">添加分组</el-button>
<div style="margin:20px 0">
<el-input v-model="val" style="width:90%;margin:0 5%" placeholder="请输入分类名称搜索" size="small"></el-input>
</div>
<div class="el-scrollbar" style="height: 450px; width: 100%;">
<div class="el-scrollbar__wrap" style="margin-bottom: -8px; margin-right: -8px;">
<div class="el-scrollbar__view">
<li class="el-menu-item" style="padding-left: 10px;padding-right: 10px;">
<i class="el-icon-tickets"></i>
<span>全部</span>
</li>
<li v-for="item in 9" class="el-menu-item" style="padding-left: 10px;padding-right: 10px;">
<div flex="dir:left box:last">
<el-col :span="18" style="overflow: hidden; text-overflow: ellipsis;">
<i class="el-icon-tickets"></i>
<span>羊肚菌</span>
</el-col>
<el-col class="blue" :span="6">
<span>编辑</span> | <span>删除</span>
</el-col>
</div>
</li>
</div>
</div>
</div>
</el-col>
<el-col :span="18">
<div style="margin-top: 10px;margin-left: 20px;" class="appendInput">
<el-input size="small" style="width:250px" placeholder="请输入内容" v-model="val">
<el-button slot="append" icon="el-icon-search"></el-button>
</el-input>
</div>
<div class="basefix app-attachment-list">
<div class="app-attachment-item app-attachment-upload">
<div class="app-upload" flex="main:center cross:center" style="width: 100px; height: 100px;">
<i class="el-icon-upload"></i>
<input type="file" accept="image/*" multiple="multiple" style="display: none;">
</div>
</div>
<el-tooltip class="item" effect="dark" content="Top Left 提示文字" placement="top-start">
<div class="el-tooltip item app-attachment-item" >
<img src="https://cdnimg.iotweixin.com/uploads/mall1285/20200422/58aac71950e2d86e6d7138484a3f7f7e.jpg" class="app-attachment-img" style="width: 100px; height: 100px;">
<div class="app-attachment-name">微信图片_20200422125658.jpg</div>
</div>
</el-tooltip>
</div>
<div>
<el-pagination style="text-align:right"
background
:current-page="currentPage4"
@current-change="handleCurrentChange"
:page-size="msg.pageSize"
layout="prev, pager, next,jumper"
:total="total">
</el-pagination>
</div>
</el-col>
</el-row>
<span slot="footer" class="dialog-footer">
<el-button size="small" type="primary" @click="changeState = false">选定</el-button>
</span>
</el-dialog>
</div> </div>
</template> </template>
<script> <script>
export default { export default {
data() { data() {
return { return {
currentPage4:3,
changeState:false,
val:'', val:'',
addMsg:{}, addMsg:{},
dialogVisible:false, dialogVisible:false,
...@@ -161,6 +230,9 @@ ...@@ -161,6 +230,9 @@
}, },
methods: { methods: {
openChangeDig(){
this.changeState=true;
},
goUrl(){ goUrl(){
this.$router.push({ this.$router.push({
name: 'MembershipGrade', name: 'MembershipGrade',
...@@ -185,6 +257,55 @@ ...@@ -185,6 +257,55 @@
</script> </script>
<style> <style>
.setMember .app-attachment-name {
color: #666666;
margin-top: 5px;
font-size: 13px;
word-break: break-all;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 1;
overflow: hidden;
}
.setMember .app-attachment-item .app-attachment-img {
display: block;
}
.setMember .app-attachment-upload i {
font-size: 30px;
color: #909399;
}
.setMember .app-attachment-item {
display: inline-block;
cursor: pointer;
position: relative;
float: left;
width: 120px;
height: 140px;
margin: 7.5px;
text-align: center;
padding: 10px 10px 0;
}
.setMember .app-attachment-upload {
box-shadow: none;
border: 1px dashed #b2b6bd;
height: 100px;
width: 100px;
margin: 17.5px;
padding: 0;
}
.setMember .app-attachment-list{
padding: 5px;
}
.setMember .appendInput .el-input__inner{
border-right: none;
}
.setMember .appendInput .el-input-group__append{
background-color: #fff!important;
border-left: none;
padding: 0 15px;
}
.setMember .setTable .el-table__body .cell{ .setMember .setTable .el-table__body .cell{
display: flex; display: flex;
align-items: center; align-items: center;
......
...@@ -7,16 +7,16 @@ ...@@ -7,16 +7,16 @@
</div> </div>
<div class="content"> <div class="content">
<div> <div>
<el-select class="w100" style="margin-right: 10px;" v-model="msg.MemberGrade" size="small" placeholder="请选择"> <el-select class="w100" @change="getList" style="margin-right: 10px;" v-model="msg.MemberGrade" size="small" placeholder="请选择">
<el-option label="全部会员" :value="0"></el-option> <el-option label="全部会员" :value="0"></el-option>
<el-option <el-option
v-for="item in options" v-for="item in memberGradeList"
:key="item.value" :key="item.Id"
:label="item.label" :label="item.Name"
:value="item.value"> :value="item.Id">
</el-option> </el-option>
</el-select> </el-select>
<el-select class="w100" style="margin-right: 10px;" v-model="msg.Source" size="small" placeholder="请选择"> <el-select class="w100" @change="getList" style="margin-right: 10px;" v-model="msg.Source" size="small" placeholder="请选择">
<el-option label="全部平台" :value="0"></el-option> <el-option label="全部平台" :value="0"></el-option>
<el-option <el-option
v-for="item in platList" v-for="item in platList"
...@@ -192,6 +192,7 @@ ...@@ -192,6 +192,7 @@
}, },
total:0, total:0,
platList:[], platList:[],
memberGradeList:[],
}; };
}, },
...@@ -199,6 +200,7 @@ ...@@ -199,6 +200,7 @@
this.getList(); this.getList();
this.getplat(); this.getplat();
this.getDown(); this.getDown();
this.GetMemberGradeList();
}, },
methods: { methods: {
Export(){ Export(){
...@@ -240,6 +242,16 @@ ...@@ -240,6 +242,16 @@
}) })
}, },
GetMemberGradeList(){
let msg={
Grade:0,
Name:'',
Enabled:0,
};
this.apipost("/api/user/GetMemberGradeList",{msg}, res => {
this.memberGradeList=res.data.data;
})
},
getplat(){ getplat(){
this.apipost("/api/user/GetMemberUserSourceEnumList",{}, res => { this.apipost("/api/user/GetMemberUserSourceEnumList",{}, res => {
this.platList=res.data.data; this.platList=res.data.data;
......
...@@ -137,7 +137,11 @@ export default { ...@@ -137,7 +137,11 @@ export default {
var index = filename.lastIndexOf("."); var index = filename.lastIndexOf(".");
var suffix = filename.substr(index); var suffix = filename.substr(index);
var timestamp1 = Date.parse(new Date()); var timestamp1 = Date.parse(new Date());
var newFileName = '/Upload/' + path +"/"+ timestamp1 + "" + suffix; let str = '';
if (this.isOnline()) {
str = "/Test"
}
var newFileName = str + '/Upload/' + path + "/" + timestamp1 + "" + suffix;
var uploadMsg = { var uploadMsg = {
Bucket: "viitto-1301420277", Bucket: "viitto-1301420277",
Region: "ap-chengdu", Region: "ap-chengdu",
...@@ -160,9 +164,9 @@ export default { ...@@ -160,9 +164,9 @@ export default {
}, function (err, data) { }, function (err, data) {
if (data && data.statusCode == 200) { if (data && data.statusCode == 200) {
var uploadResult = { var uploadResult = {
resultCode:1, resultCode: 1,
FileName: fileObj.name, FileName: fileObj.name,
FileUrl: "http://"+data.Location FileUrl: "http://" + data.Location
} }
if (callback) { if (callback) {
callback(uploadResult); callback(uploadResult);
...@@ -174,115 +178,121 @@ export default { ...@@ -174,115 +178,121 @@ export default {
}); });
}, },
//公用跳转 //公用跳转
Vue.prototype.CommonJump = function(path,obj){ Vue.prototype.CommonJump = function (path, obj) {
this.$router.push({ this.$router.push({
name: path, name: path,
query: obj query: obj
}); });
} }
//HTTP提交数据 //HTTP提交数据
Vue.prototype.apipost = function (cmd, msg, successCall, faildCall, isOnline) { Vue.prototype.apipost = function (cmd, msg, successCall, faildCall, isOnline) {
if (msg == null || msg == "") { if (msg == null || msg == "") {
msg = {} msg = {}
}
var apiurl = this.domainManager().DomainUrl + cmd;
var timestamp = (new Date()).valueOf();
this.apiurl = apiurl;
if (!localStorage.mall_userInfo && localStorage.mall_userInfo != "" && this.$route.path.toLowerCase() != "/login") {
this.$router.push({
path: '/login'
})
}
var token = "";
var key = "";
if (this.getLocalStorage() != null) {
token = this.getLocalStorage().Token;
key = this.getLocalStorage().SecretKey;
}
var encodeMsg = encodeURIComponent(JSON.stringify(msg)).toLowerCase();
var md5Str = md5(`cmd=${cmd}&msg=${encodeMsg}&timestamp=${timestamp}&token=${token}&key=${key}`);
let tempLanguage = 0;
if (localStorage.language && localStorage.language != '') {
if (localStorage.language == "zh-TW") {
tempLanguage = 1;
} else if (localStorage.language == "Japanese") {
tempLanguage = 2;
}
}
var postData = {
"msg": msg,
"timestamp": timestamp,
"token": token,
"sign": md5Str,
"languageId": tempLanguage,
"cmd": cmd,
}
this.$http.post(apiurl, postData, {
headers: {
'Content-Type': 'application/json',
'Referer-Viitto': this.$route.path
}
})
.then(res => {
if (res.data.resultCode == 10000 || res.data.resultCode == 10001) {
this.$router.push({
path: '/login'
});
} else if (res.resultCode == 10005) {
this.$router.go(-1);
} else {
successCall(res);
}
}, faildCall)
} }
Vue.prototype.JavaGetLocalFile = function(cmd, msg, fileName, successCall) { var apiurl = this.domainManager().DomainUrl + cmd;
var apiurl = this.domainManager().JavaLocalFileStreamDownLoadUrl + cmd; var timestamp = (new Date()).valueOf();
var timestamp = (new Date()).valueOf(); this.apiurl = apiurl;
if (!localStorage.mall_userInfo && localStorage.mall_userInfo != "" && this.$route.path.toLowerCase() != "/login") { if (!localStorage.mall_userInfo && localStorage.mall_userInfo != "" && this.$route.path.toLowerCase() != "/login") {
this.$router.push({ this.$router.push({
path: '/login' path: '/login'
}) })
} }
var token = ""; var token = "";
var key = ""; var key = "";
if (this.getLocalStorage() != null) { var MallBaseId = "0"; //小程序ID
token = this.getLocalStorage().Token; var TenantId = "0"; //商户Id
key = this.getLocalStorage().SecretKey; if (this.getLocalStorage() != null) {
} token = this.getLocalStorage().Token;
let mall_userInfo = localStorage.mall_userInfo ? JSON.parse(localStorage.mall_userInfo) : ''; key = this.getLocalStorage().SecretKey;
var encodeMsg = encodeURIComponent(JSON.stringify(msg)).toLowerCase(); MallBaseId = this.getLocalStorage().MallBaseId;
var md5Str = md5(`cmd=${cmd}&msg=${encodeMsg}&timestamp=${timestamp}&token=${token}&key=${key}`); TenantId = this.getLocalStorage().TenantId;
let tempLanguage = 0; }
if (localStorage.language && localStorage.language != '') { var encodeMsg = encodeURIComponent(JSON.stringify(msg)).toLowerCase();
if (localStorage.language == "zh-TW") { var md5Str = md5(`cmd=${cmd}&msg=${encodeMsg}&timestamp=${timestamp}&token=${token}&key=${key}`);
let tempLanguage = 0;
if (localStorage.language && localStorage.language != '') {
if (localStorage.language == "zh-TW") {
tempLanguage = 1; tempLanguage = 1;
} else if (localStorage.language == "Japanese") { } else if (localStorage.language == "Japanese") {
tempLanguage = 2; tempLanguage = 2;
}
}
var postData = {
"msg": msg,
"timestamp": timestamp,
"token": token,
"sign": md5Str,
"languageId": tempLanguage,
"cmd": cmd,
"MallBaseId": MallBaseId,
"TenantId": TenantId
}
this.$http.post(apiurl, postData, {
headers: {
'Content-Type': 'application/json',
'Referer-Viitto': this.$route.path
} }
})
.then(res => {
if (res.data.resultCode == 10000 || res.data.resultCode == 10001) {
this.$router.push({
path: '/login'
});
} else if (res.resultCode == 10005) {
this.$router.go(-1);
} else {
successCall(res);
} }
var postData = { }, faildCall)
"msg": msg, }
"timestamp": timestamp, Vue.prototype.JavaGetLocalFile = function (cmd, msg, fileName, successCall) {
"token": token, var apiurl = this.domainManager().JavaLocalFileStreamDownLoadUrl + cmd;
"sign": md5Str, var timestamp = (new Date()).valueOf();
"languageId": tempLanguage, if (!localStorage.mall_userInfo && localStorage.mall_userInfo != "" && this.$route.path.toLowerCase() != "/login") {
"cmd": cmd, this.$router.push({
} path: '/login'
this.$http.post(apiurl, postData, { })
responseType: 'arraybuffer' }
}).then((res) => { var token = "";
let blob = new Blob([res.data], { var key = "";
type: "application/vnd.ms-excel" if (this.getLocalStorage() != null) {
}) token = this.getLocalStorage().Token;
let url = URL.createObjectURL(blob); key = this.getLocalStorage().SecretKey;
let link = document.createElement('a'); }
link.href = url; let mall_userInfo = localStorage.mall_userInfo ? JSON.parse(localStorage.mall_userInfo) : '';
link.setAttribute("download", fileName); var encodeMsg = encodeURIComponent(JSON.stringify(msg)).toLowerCase();
document.body.appendChild(link); var md5Str = md5(`cmd=${cmd}&msg=${encodeMsg}&timestamp=${timestamp}&token=${token}&key=${key}`);
link.click(); let tempLanguage = 0;
successCall(res); if (localStorage.language && localStorage.language != '') {
}).catch(function(res) {}); if (localStorage.language == "zh-TW") {
tempLanguage = 1;
} else if (localStorage.language == "Japanese") {
tempLanguage = 2;
}
} }
var postData = {
"msg": msg,
"timestamp": timestamp,
"token": token,
"sign": md5Str,
"languageId": tempLanguage,
"cmd": cmd,
}
this.$http.post(apiurl, postData, {
responseType: 'arraybuffer'
}).then((res) => {
let blob = new Blob([res.data], {
type: "application/vnd.ms-excel"
})
let url = URL.createObjectURL(blob);
let link = document.createElement('a');
link.href = url;
link.setAttribute("download", fileName);
document.body.appendChild(link);
link.click();
successCall(res);
}).catch(function (res) {});
}
} }
} }
...@@ -36,9 +36,9 @@ export default new Router({ ...@@ -36,9 +36,9 @@ export default new Router({
component: resolve => require(['@/components/setUp/basicSetUp'], resolve), component: resolve => require(['@/components/setUp/basicSetUp'], resolve),
}, },
{ {
path: '/main', path: '/mall',
name: 'main', name: 'mall',
component: resolve => require(['@/components/main'], resolve), component: resolve => require(['@/components/mall'], resolve),
children:[ children:[
{ {
path: '/zanIndex', path: '/zanIndex',
......
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