Commit 6c849fbc authored by Mac's avatar Mac

1

parent d0ef3b49
......@@ -304,7 +304,7 @@
this.Error(res.data.message);
}
})
},
},
Time(value) {
var theTime = parseInt(value); // 秒
var middle = 0; // 分
......@@ -472,7 +472,7 @@
pagesubmitForm(formName) {
this.$refs[formName].validate((valid) => {
if (valid) {
this.apipost('/api/product/SetMaterialInfo', this.addpageMsg,
this.apipost('/api/product/SetGetMaterialInfo', this.addpageMsg,
res => {
if (res.data.resultCode === 1) {
this.GetPageList();
......@@ -551,7 +551,7 @@
if(upInfo){
this.addpageMsg.PathType=upInfo.StoreType;
}
this.apipost("/api/product/SetMaterialInfo", this.addpageMsg, res => {
this.apipost("/api/product/SetGetMaterialInfo", this.addpageMsg, res => {
if (res.data.resultCode == 1) {
this.GetPageList();
this.$forceUpdate();
......
......@@ -187,6 +187,9 @@
<li class="menu_item" :class="{'Fchecked':isChecked=='/authorization'}" @click="isChecked='/authorization',CommonJump('authorization')">
<i class="el-icon-menu"></i><span>授权页面</span>
</li>
<li class="menu_item" :class="{'Fchecked':isChecked=='/startupPage'}" @click="isChecked='/startupPage',CommonJump('startupPage')">
<i class="el-icon-menu"></i><span>启动页</span>
</li>
<li style="display:none;" class="menu_item" :class="{'Fchecked':isChecked==5}" @click="isChecked=5">
<i class="el-icon-menu"></i><span>表单提交信息</span>
</li>
......
......@@ -244,7 +244,7 @@
if(upInfo){
this.addpageMsg.PathType=upInfo.StoreType;
}
this.apipost("/api/product/SetMaterialInfo", this.addpageMsg, res => {
this.apipost("/api/product/SetGetMaterialInfo", this.addpageMsg, res => {
if (res.data.resultCode == 1) {
this.GetPageList();
}
......
......@@ -224,7 +224,7 @@
if(upInfo){
this.addpageMsg.PathType=upInfo.StoreType;
}
this.apipost("/api/product/SetMaterialInfo", this.addpageMsg, res => {
this.apipost("/api/product/SetGetMaterialInfo", this.addpageMsg, res => {
if (res.data.resultCode == 1) {
this.GetPageList();
}
......
......@@ -236,7 +236,7 @@
if(upInfo){
this.addpageMsg.PathType=upInfo.StoreType;
}
this.apipost("/api/product/SetMaterialInfo", this.addpageMsg, res => {
this.apipost("/api/product/SetGetMaterialInfo", this.addpageMsg, res => {
if (res.data.resultCode == 1) {
this.GetPageList();
}
......
<template>
<div class="startupPage">
<template>
<div class="head-title">
启动页
</div>
<div class="content">
<div style="display:flex;" flex="box:first">
<div class="Auth_outside">
<div flex="dir:left main:center cross:center" class="inside">
<img v-if="addMsg.AuthUrl!=''" class="authPic" :src="getIconLink(addMsg.AuthUrl)" alt="">
<img v-else class="authPic" :src="getIconLink(addMsg.AuthUrl)" alt="" />
</div>
</div>
<div class="Auth_right">
<el-card shadow="never">
<div slot="header">设置</div>
<el-form label-width="100px">
<el-form-item label="是否开启">
<el-switch v-model="addMsg.IsOpenAuth" :active-value="1" :inactive-value="0"></el-switch>
</el-form-item>
<el-form-item label="上传图片">
<el-tooltip class="item" effect="dark" content="推荐尺寸650*700" placement="bottom">
<el-button size="mini" @click="choicImg=true">选择文件</el-button>
</el-tooltip>
<div class="Auth_imgList" flex="main:center cross:center" v-if="addMsg.AuthUrl!=''">
<img :src="getIconLink(addMsg.AuthUrl)" alt="">
<el-button type="danger" v-if="addMsg.AuthUrl!=''" class="image-delete" size="mini"
icon="el-icon-close" @click.stop="addMsg.AuthUrl=''" circle></el-button>
</div>
</el-form-item>
<!-- <el-form-item label="热区">-->
<!-- <choiceAreaAuth ref="choiceAreaAuth" :multiple="true" :max="2" :pic-url="getIconLink(addMsg.AuthUrl)"-->
<!-- mode='auth' :hotspotArray="addMsg.AuthDataList" width="650px" height="700px"-->
<!-- @confirm="selectHotspot" >-->
<!-- <el-button size="mini">划分热区</el-button>-->
<!-- </choiceAreaAuth>-->
<!-- <div>注:需要划分两个热区:一个是登录按钮热区,一个是暂不登录按钮热区</div>-->
<!-- </el-form-item>-->
</el-form>
</el-card>
<el-button type="primary" style="margin-top:20px;padding:9px 25px" size="small" @click="saveMsg">保存
</el-button>
</div>
</div>
</div>
</template>
<!-- 选择图片文件 -->
<el-dialog title="选择文件" :visible.sync="choicImg" width="1240px">
<ChooseImg @SelectId="SelectId"></ChooseImg>
</el-dialog>
</div>
</template>
<script>
import ChooseImg from "@/components/global/ChooseImg.vue";
import choiceAreaAuth from "../common/choiceAreaAuth.vue";
export default {
data() {
return {
choicImg: false,
dataList: [],
msg: {
pageIndex: 1,
pageSize: 15,
Name: "",
},
addMsg: {
MallBaseId: 0,
IsOpenAuth: 0, //是否开启
AuthUrl: this.domainManager().ImageUrl + '/Static/auth-default.png', //图片
AuthDataList: [ ] //热区
},
};
},
created() {
},
components: {
ChooseImg,
choiceAreaAuth
},
methods: {
GetData() {
this.addMsg.MallBaseId = this.getLocalStorage().MallBaseId;
this.apipost("/api/Tenant/GetMiniPrograme", {
MallBaseId: this.addMsg.MallBaseId,
}, res => {
if (res.data.resultCode == 1) {
this.addMsg.IsOpenAuth = res.data.data.IsOpenAuth;
if (res.data.data.AuthUrl) {
this.addMsg.AuthUrl = res.data.data.AuthUrl;
}
if (res.data.data.AuthDataList && res.data.data.AuthDataList.length > 0) {
this.addMsg.AuthDataList = res.data.data.AuthDataList;
} else {
this.GetDefaultSpot();
}
} else {
this.Info(res.data.message);
}
})
},
//热区设置默认值
GetDefaultSpot() {
var objCancel = {
width: 224,
height: 80,
left: 84,
top: 566,
defaultX: 84,
defaultY: 566,
link: "",
open_type: "cancel",
IsChecked:false,
};
this.addMsg.AuthDataList.push(objCancel);
var objLogin = {
width: 224,
height: 80,
left: 340,
top: 566,
defaultX: 340,
defaultY: 566,
link: "",
open_type: "login",
IsChecked:false,
};
this.addMsg.AuthDataList.push(objLogin);
},
//保存
saveMsg() {
this.apipost("/api/Tenant/SetMiniProgramMallAuth", this.addMsg, res => {
if (res.data.resultCode == 1) {
this.GetData();
this.Success(res.data.message);
} else {
this.Info(res.data.message);
}
})
},
//选择图片
SelectId(msg) {
this.addMsg.AuthUrl = this.getIconLink(msg.url);
this.choicImg = false;
},
// 热区选择(edit)
selectHotspot(list) {
this.addMsg.AuthDataList = list;
this.$refs.choiceAreaAuth.clearAll();
},
},
mounted() {
this.GetData();
}
};
</script>
<style>
.startupPage .content {
margin-top: 12px;
box-sizing: border-box;
}
.startupPage .Auth_outside {
width: 401px;
height: 741px;
background-color: #fff;
border-radius: 30px;
padding: 37px 13px;
margin-right: 24px;
}
.startupPage .inside {
width: 375px;
height: 667px;
background-color: #eee;
}
.startupPage .authPic {
width: auto;
height: auto;
max-width: 750px;
max-height: 1334px;
transform: scale(0.5);
}
.startupPage .Auth_imgList {
height: 222px;
width: 125px;
border: 1px solid #e3e3e3;
border-radius: 2px;
margin-right: 10px;
margin-bottom: 10px;
position: relative;
}
.startupPage .Auth_imgList img {
max-width: 100%;
max-height: 100%;
}
.startupPage .image-delete {
position: absolute;
right: -8px;
top: -8px;
padding: 4px 4px;
}
</style>
......@@ -124,6 +124,10 @@ export default new Router({
path: '/templateMarketManage',
name: 'templateMarketManage',
component: resolve => require(['@/components/sallCenter/templateMarketManage'], resolve),
}, { //启动页
path: '/startupPage',
name: 'startupPage',
component: resolve => require(['@/components/sallCenter/startupPage'], resolve),
}]
},
{
......
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