1.优化角色模板 2.增加新版私域引流页面
This commit is contained in:
@@ -18,7 +18,5 @@ VITE_APP_BASE_API=/dev-api
|
|||||||
VITE_APP_WS_ENDPOINT=ws://192.168.1.42:2348 # 本地
|
VITE_APP_WS_ENDPOINT=ws://192.168.1.42:2348 # 本地
|
||||||
# VITE_APP_API_PHP_URL=https://newblockwlx.sxczgkj.cn #php抖音美团正式环境
|
# VITE_APP_API_PHP_URL=https://newblockwlx.sxczgkj.cn #php抖音美团正式环境
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# 启用 Mock 服务
|
# 启用 Mock 服务
|
||||||
VITE_MOCK_DEV_SERVER=false
|
VITE_MOCK_DEV_SERVER=false
|
||||||
|
|||||||
@@ -52,13 +52,16 @@ async function roleTemplateListAjax() {
|
|||||||
el.cehcked = false
|
el.cehcked = false
|
||||||
});
|
});
|
||||||
list.value = res
|
list.value = res
|
||||||
|
|
||||||
|
if (list.value.length > 0) {
|
||||||
|
visible.value = true
|
||||||
|
}
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.log(error);
|
console.log(error);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function show() {
|
function show() {
|
||||||
visible.value = true
|
|
||||||
roleTemplateListAjax()
|
roleTemplateListAjax()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -247,7 +247,7 @@ function handleQuery() {
|
|||||||
total.value = data.totalRow;
|
total.value = data.totalRow;
|
||||||
|
|
||||||
if (data.records.length == 0) {
|
if (data.records.length == 0) {
|
||||||
roleTemplateDialogRef?.value.show()
|
roleTemplateDialogRef.value.show()
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.finally(() => {
|
.finally(() => {
|
||||||
|
|||||||
@@ -650,6 +650,13 @@ export default {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
|
let shopInfo = JSON.parse(localStorage.getItem('userInfo'))
|
||||||
|
if (shopInfo.isHeadShop) {
|
||||||
|
this.shopId = shopInfo.id
|
||||||
|
} else {
|
||||||
|
this.shopId = localStorage.getItem('shopId')
|
||||||
|
}
|
||||||
|
|
||||||
// 增加首页提示是否账号30天过期
|
// 增加首页提示是否账号30天过期
|
||||||
let date = dayjs(localStorage.getItem("expireDate")).diff(dayjs().format("YYYY-MM-DD"), "day");
|
let date = dayjs(localStorage.getItem("expireDate")).diff(dayjs().format("YYYY-MM-DD"), "day");
|
||||||
if (date <= 30 && date >= 0) {
|
if (date <= 30 && date >= 0) {
|
||||||
@@ -702,9 +709,12 @@ export default {
|
|||||||
*/
|
*/
|
||||||
async geiShopList() {
|
async geiShopList() {
|
||||||
try {
|
try {
|
||||||
let res = await ShopApi.getBranchList()
|
let shopInfo = JSON.parse(localStorage.getItem('userInfo'))
|
||||||
this.branchList = res;
|
if (shopInfo.isHeadShop) {
|
||||||
this.shopId = res[0].shopId
|
let res = await ShopApi.getBranchList()
|
||||||
|
this.branchList = res;
|
||||||
|
this.shopId = res[0].shopId
|
||||||
|
}
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.log('获取分店列表===', error);
|
console.log('获取分店列表===', error);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -238,6 +238,13 @@ export default {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
|
let shopInfo = JSON.parse(localStorage.getItem('userInfo'))
|
||||||
|
if (shopInfo.isHeadShop) {
|
||||||
|
this.shopId = shopInfo.id
|
||||||
|
} else {
|
||||||
|
this.shopId = localStorage.getItem('shopId')
|
||||||
|
}
|
||||||
|
|
||||||
this.resetQuery = { ...this.query };
|
this.resetQuery = { ...this.query };
|
||||||
this.getTableData();
|
this.getTableData();
|
||||||
this.getCategory();
|
this.getCategory();
|
||||||
@@ -248,9 +255,16 @@ export default {
|
|||||||
* 获取分店列表
|
* 获取分店列表
|
||||||
*/
|
*/
|
||||||
async geiShopList() {
|
async geiShopList() {
|
||||||
let res = await ShopApi.getBranchList()
|
try {
|
||||||
this.branchList = res;
|
let shopInfo = JSON.parse(localStorage.getItem('userInfo'))
|
||||||
this.shopId = res[0].shopId
|
if (shopInfo.isHeadShop) {
|
||||||
|
let res = await ShopApi.getBranchList()
|
||||||
|
this.branchList = res;
|
||||||
|
this.shopId = res[0].shopId
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
console.log('获取分店列表===', error);
|
||||||
|
}
|
||||||
},
|
},
|
||||||
totalfilter(item, d) {
|
totalfilter(item, d) {
|
||||||
let num = item + d;
|
let num = item + d;
|
||||||
|
|||||||
@@ -142,6 +142,13 @@ export default {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
|
let shopInfo = JSON.parse(localStorage.getItem('userInfo'))
|
||||||
|
if (shopInfo.isHeadShop) {
|
||||||
|
this.shopId = shopInfo.id
|
||||||
|
} else {
|
||||||
|
this.shopId = localStorage.getItem('shopId')
|
||||||
|
}
|
||||||
|
|
||||||
this.resetQuery = { ...this.query };
|
this.resetQuery = { ...this.query };
|
||||||
this.getTableData();
|
this.getTableData();
|
||||||
this.geiShopList();
|
this.geiShopList();
|
||||||
@@ -151,9 +158,16 @@ export default {
|
|||||||
* 获取分店列表
|
* 获取分店列表
|
||||||
*/
|
*/
|
||||||
async geiShopList() {
|
async geiShopList() {
|
||||||
let res = await ShopApi.getBranchList()
|
try {
|
||||||
this.branchList = res;
|
let shopInfo = JSON.parse(localStorage.getItem('userInfo'))
|
||||||
this.shopId = res[0].shopId
|
if (shopInfo.isHeadShop) {
|
||||||
|
let res = await ShopApi.getBranchList()
|
||||||
|
this.branchList = res;
|
||||||
|
this.shopId = res[0].shopId
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
console.log('获取分店列表===', error);
|
||||||
|
}
|
||||||
},
|
},
|
||||||
//携带table id跳转到订单列表页面
|
//携带table id跳转到订单列表页面
|
||||||
toTableOrderList(data) {
|
toTableOrderList(data) {
|
||||||
|
|||||||
@@ -2,10 +2,10 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="gyq_container">
|
<div class="gyq_container">
|
||||||
<div class="gyq_content">
|
<div class="gyq_content">
|
||||||
<headerCard icon="syyl" name="私域引流" intro="可设置用户下单成功后的群二维码" showSwitch v-model:isOpen="form.isEnable" />
|
<headerCard icon="syyl" name="私域引流" intro="可设置用户下单成功后的群二维码" />
|
||||||
<div class="form_content">
|
<div class="form_content">
|
||||||
<div class="left">
|
<div class="left">
|
||||||
<div class="preview">
|
<!-- <div class="preview">
|
||||||
<div class="info">
|
<div class="info">
|
||||||
<div class="top">
|
<div class="top">
|
||||||
<div class="title">{{ form.title || defaultTitle }}</div>
|
<div class="title">{{ form.title || defaultTitle }}</div>
|
||||||
@@ -16,34 +16,71 @@
|
|||||||
<div class="img_wrap">
|
<div class="img_wrap">
|
||||||
<el-image :src="form.qrCode" style="width: 100%;height: 100%;"></el-image>
|
<el-image :src="form.qrCode" style="width: 100%;height: 100%;"></el-image>
|
||||||
</div>
|
</div>
|
||||||
|
</div> -->
|
||||||
|
<div class="new_preview">
|
||||||
|
<div class="header">{{ shopInfo.shopName }}</div>
|
||||||
|
<div class="content">
|
||||||
|
<div class="title">{{ form.title }}</div>
|
||||||
|
<div class="img_wrap">
|
||||||
|
<div class="img">
|
||||||
|
<el-image :src="form.qrCode" style="width: 100%;height: 100%;border-radius: 4px;"></el-image>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="intro">
|
||||||
|
{{ form.content }}
|
||||||
|
</div>
|
||||||
|
<div class="foot">
|
||||||
|
{{ form.note }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="form">
|
<div class="form">
|
||||||
<el-form ref="formRef" :model="form" :rules="rules" label-position="right" label-width="120px">
|
<el-form ref="formRef" :model="form" :rules="rules" label-position="right" label-width="120px">
|
||||||
<el-form-item label="可使用类型" prop="useType">
|
|
||||||
<el-checkbox-group v-model="form.useType">
|
|
||||||
<el-checkbox value="dine-in" label="堂食" />
|
|
||||||
<el-checkbox value="take-out" label="外带" />
|
|
||||||
<el-checkbox value="take-away" label="外卖" />
|
|
||||||
<el-checkbox value="post" label="配送" />
|
|
||||||
</el-checkbox-group>
|
|
||||||
</el-form-item>
|
|
||||||
<el-form-item label="群二维码" prop="qrCode">
|
<el-form-item label="群二维码" prop="qrCode">
|
||||||
<single-image-upload style="width: 120px; height: 120px" v-model="form.qrCode"></single-image-upload>
|
<single-image-upload style="width: 120px; height: 120px" v-model="form.qrCode"></single-image-upload>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="模块标题" prop="title">
|
<el-form-item label="模块标题" prop="title">
|
||||||
<el-input :placeholder="defaultTitle" :maxlength="20" v-model.trim="form.title"></el-input>
|
<el-input :placeholder="defaultTitle" :maxlength="20" v-model.trim="form.title"
|
||||||
|
style="width: 300px;"></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="模块内容">
|
<el-form-item label="模块内容">
|
||||||
<div class="textarea">
|
<div class="textarea">
|
||||||
<el-input type="textarea" :rows="4" :maxlength="50" placeholder="请输入内容"
|
<el-input type="textarea" :rows="4" :maxlength="50" placeholder="请输入内容"
|
||||||
v-model.trim="form.content"></el-input>
|
v-model.trim="form.content"></el-input>
|
||||||
<span class="num">{{ form.content.length }}/50</span>
|
<span class="num">{{ form.content.length }}/20</span>
|
||||||
</div>
|
</div>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="模块提示语">
|
<el-form-item label="模块提示语">
|
||||||
<el-input :placeholder="defaultNote" :maxlength="20" v-model.trim="form.note"></el-input>
|
<div class="tips">{{ defaultNote }}</div>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
<el-form-item label="支付完成弹窗">
|
||||||
|
<el-switch v-model="form.orderEnable" :active-value="1" :inactive-value="0"></el-switch>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="可使用类型" prop="orderType">
|
||||||
|
<el-checkbox-group v-model="form.orderType">
|
||||||
|
<el-checkbox value="dine-in" label="堂食" :disabled="!form.orderEnable" />
|
||||||
|
<el-checkbox value="take-out" label="外带" :disabled="!form.orderEnable" />
|
||||||
|
<el-checkbox value="take-away" label="外卖" :disabled="!form.orderEnable" />
|
||||||
|
<el-checkbox value="post" label="配送" :disabled="!form.orderEnable" />
|
||||||
|
</el-checkbox-group>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="首页弹窗">
|
||||||
|
<div class="center">
|
||||||
|
<el-switch v-model="form.homeEnable" :active-value="1" :inactive-value="0"></el-switch>
|
||||||
|
<div class="tips">开启后至少勾选1个显示时机</div>
|
||||||
|
</div>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="显示时机" prop="homeType">
|
||||||
|
<el-checkbox-group v-model="form.homeType">
|
||||||
|
<el-checkbox value="only" label="仅显示1次" :disabled="!form.homeEnable" />
|
||||||
|
<el-checkbox value="day" label="每天显示1次" :disabled="!form.homeEnable" />
|
||||||
|
<el-checkbox value="every" label="每次达成触发条件都显示" :disabled="!form.homeEnable" />
|
||||||
|
</el-checkbox-group>
|
||||||
|
</el-form-item>
|
||||||
|
<!-- <el-form-item label="模块提示语">
|
||||||
|
<el-input :placeholder="defaultNote" :maxlength="20" v-model.trim="form.note"></el-input>
|
||||||
|
</el-form-item> -->
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
<el-button type="primary" :loading="loading" @click="submitHandle">保存</el-button>
|
<el-button type="primary" :loading="loading" @click="submitHandle">保存</el-button>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
@@ -60,26 +97,31 @@ import { ElNotification } from 'element-plus'
|
|||||||
import { drainageConfigGet, drainageConfigPost } from '@/api/coupon/index'
|
import { drainageConfigGet, drainageConfigPost } from '@/api/coupon/index'
|
||||||
|
|
||||||
const defaultTitle = ref('扫码进群,优惠多多')
|
const defaultTitle = ref('扫码进群,优惠多多')
|
||||||
const defaultNote = ref('长按识别,微信内扫一扫加好友')
|
const defaultNote = ref('如果长按不能识别,可截图或保存二维码图片至相册,通过微信扫码入群')
|
||||||
|
const defaultContent = ref('长按识别上方企微好友码,添加【福利官】')
|
||||||
|
const shopInfo = ref('')
|
||||||
|
|
||||||
const form = ref({
|
const form = ref({
|
||||||
id: '',
|
id: '',
|
||||||
useType: ['dine-in'],
|
orderType: ['dine-in'],
|
||||||
qrCode: '',
|
qrCode: '',
|
||||||
title: defaultTitle.value,
|
title: defaultTitle.value,
|
||||||
content: '',
|
content: defaultContent.value,
|
||||||
note: '长按识别,微信内扫一扫加好友',
|
note: defaultNote.value,
|
||||||
|
orderEnable: 1,
|
||||||
|
homeEnable: 1,
|
||||||
|
homeType: [],
|
||||||
isEnable: '',
|
isEnable: '',
|
||||||
mainShopId: '',
|
mainShopId: '',
|
||||||
shopId: ''
|
shopId: ''
|
||||||
})
|
})
|
||||||
|
|
||||||
const rules = reactive({
|
const rules = reactive({
|
||||||
useType: [
|
orderType: [
|
||||||
{
|
{
|
||||||
required: true,
|
required: true,
|
||||||
validator: (rule, value, callback) => {
|
validator: (rule, value, callback) => {
|
||||||
if (form.value.useType.length <= 0) {
|
if (form.value.orderType.length <= 0) {
|
||||||
callback(new Error('请选择可使用类型'))
|
callback(new Error('请选择可使用类型'))
|
||||||
} else {
|
} else {
|
||||||
callback()
|
callback()
|
||||||
@@ -116,6 +158,18 @@ const rules = reactive({
|
|||||||
triiger: 'change'
|
triiger: 'change'
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
homeType: [
|
||||||
|
{
|
||||||
|
validator: (rule, value, callback) => {
|
||||||
|
if (form.value.homeEnable == 1 && form.value.homeType.length <= 0) {
|
||||||
|
callback(new Error('请选择显示时机'))
|
||||||
|
} else {
|
||||||
|
callback()
|
||||||
|
}
|
||||||
|
},
|
||||||
|
triiger: 'change'
|
||||||
|
}
|
||||||
|
]
|
||||||
})
|
})
|
||||||
|
|
||||||
// 开始提交
|
// 开始提交
|
||||||
@@ -156,11 +210,15 @@ function submitHandle() {
|
|||||||
async function drainageConfigGetAjax() {
|
async function drainageConfigGetAjax() {
|
||||||
try {
|
try {
|
||||||
const res = await drainageConfigGet()
|
const res = await drainageConfigGet()
|
||||||
if (res.useType == null) {
|
if (res.orderType == null) {
|
||||||
res.useType = []
|
res.orderType = []
|
||||||
}
|
}
|
||||||
form.value = res
|
form.value = res
|
||||||
|
|
||||||
|
if (form.value.homeType == null) {
|
||||||
|
form.value.homeType = []
|
||||||
|
}
|
||||||
|
|
||||||
if (form.value.title == '') {
|
if (form.value.title == '') {
|
||||||
form.value.title = defaultTitle.value
|
form.value.title = defaultTitle.value
|
||||||
}
|
}
|
||||||
@@ -173,6 +231,7 @@ async function drainageConfigGetAjax() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
|
shopInfo.value = JSON.parse(localStorage.getItem('userInfo'))
|
||||||
drainageConfigGetAjax()
|
drainageConfigGetAjax()
|
||||||
})
|
})
|
||||||
</script>
|
</script>
|
||||||
@@ -287,6 +346,74 @@ onMounted(() => {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.new_preview {
|
||||||
|
--bg: #3F3B37;
|
||||||
|
--color: #F6DFC4;
|
||||||
|
--borderColor: #f6dfc45b;
|
||||||
|
width: 90%;
|
||||||
|
background-color: var(--bg);
|
||||||
|
border-radius: 4px;
|
||||||
|
position: absolute;
|
||||||
|
top: 50%;
|
||||||
|
left: 50%;
|
||||||
|
transform: translate(-50%, -50%);
|
||||||
|
|
||||||
|
.header {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
font-size: 16px;
|
||||||
|
color: var(--color);
|
||||||
|
height: 50px;
|
||||||
|
border-bottom: 1px dashed var(--borderColor);
|
||||||
|
}
|
||||||
|
|
||||||
|
.content {
|
||||||
|
padding-bottom: 14px;
|
||||||
|
|
||||||
|
.title {
|
||||||
|
font-size: 14px;
|
||||||
|
color: var(--color);
|
||||||
|
height: 50px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.img_wrap {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
|
||||||
|
.img {
|
||||||
|
--size: 220px;
|
||||||
|
width: var(--size);
|
||||||
|
height: var(--size);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.intro {
|
||||||
|
height: 40px;
|
||||||
|
font-size: 14px;
|
||||||
|
color: var(--color);
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
padding: 0 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.foot {
|
||||||
|
height: 40px;
|
||||||
|
color: var(--borderColor);
|
||||||
|
font-size: 14px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
padding: 0 14px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -8,10 +8,18 @@
|
|||||||
<div class="menus_wrap">
|
<div class="menus_wrap">
|
||||||
<div class="item" v-for="(item, index) in newMenus" :key="index" @click="showChildrenHandle(index)">
|
<div class="item" v-for="(item, index) in newMenus" :key="index" @click="showChildrenHandle(index)">
|
||||||
<el-image :src="getIconPathNew(`${index + 1}`)" :style="iconSize"></el-image>
|
<el-image :src="getIconPathNew(`${index + 1}`)" :style="iconSize"></el-image>
|
||||||
<div class="info">
|
<template v-if="item.childrenList.length == 1">
|
||||||
<div class="name">{{ item.name }}</div>
|
<div class="info">
|
||||||
<div class="intro">{{ item.intro }}</div>
|
<div class="name">{{ item.childrenList[0].name }}</div>
|
||||||
</div>
|
<div class="intro">{{ item.childrenList[0].intro }}</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<template v-else>
|
||||||
|
<div class="info">
|
||||||
|
<div class="name">{{ item.name }}</div>
|
||||||
|
<div class="intro">{{ item.intro }}</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -56,12 +64,19 @@ const iconSize = ref({
|
|||||||
function showChildrenHandle(index) {
|
function showChildrenHandle(index) {
|
||||||
// menusActive.value = index
|
// menusActive.value = index
|
||||||
// childrenShow.value = true
|
// childrenShow.value = true
|
||||||
router.push({
|
if (newMenus[index].childrenList.length == 1) {
|
||||||
name: 'marketing_children_page',
|
let item = newMenus[index].childrenList[0]
|
||||||
query: {
|
router.push({
|
||||||
index: index
|
name: item.pathName,
|
||||||
}
|
})
|
||||||
})
|
} else {
|
||||||
|
router.push({
|
||||||
|
name: 'marketing_children_page',
|
||||||
|
query: {
|
||||||
|
index: index
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
|
|||||||
Reference in New Issue
Block a user