feat: ✨ 新增多标签Tab页内嵌模式
parent
3c83179579
commit
6b697f9ecd
|
@ -516,7 +516,6 @@ export default {
|
||||||
this.refundTotal = res.result.total;
|
this.refundTotal = res.result.total;
|
||||||
|
|
||||||
this.$set(this, "refund", res.result.records);
|
this.$set(this, "refund", res.result.records);
|
||||||
console.log();
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
this.refundTotal = this.refund.length;
|
this.refundTotal = this.refund.length;
|
||||||
|
|
|
@ -22,7 +22,6 @@ export function getBaseSite() {
|
||||||
|
|
||||||
// 上传文件
|
// 上传文件
|
||||||
export const upLoadFileMethods = (bold) => {
|
export const upLoadFileMethods = (bold) => {
|
||||||
console.log(bold)
|
|
||||||
return uploadFileRequest(uploadFile, bold);
|
return uploadFileRequest(uploadFile, bold);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
title: "lilishop", //配置显示在浏览器标签的title
|
title: "lilishop", //配置显示在浏览器标签的title
|
||||||
/**
|
/**
|
||||||
|
@ -11,10 +12,12 @@ module.exports = {
|
||||||
website: "https://www.pickmall.cn", //官网地址
|
website: "https://www.pickmall.cn", //官网地址
|
||||||
enableCDN: true, //生产环境 是否启用cdn加载 vue等js
|
enableCDN: true, //生产环境 是否启用cdn加载 vue等js
|
||||||
port: 10002, //端口
|
port: 10002, //端口
|
||||||
inputMaxLength:'140', //全局输入框默认最大输入长度字
|
inputMaxLength: "140", //全局输入框默认最大输入长度字
|
||||||
/**
|
/**
|
||||||
* 如需更换主题请修改此处以及theme.less中修改
|
* 如需更换主题请修改此处以及theme.less中修改
|
||||||
*/
|
*/
|
||||||
mainColor:"#ff5c58", //主题色
|
mainColor: "#ff5c58", //主题色
|
||||||
|
setting: {
|
||||||
|
isUseTabsRouter: true, //多标签Tab页模式
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"setting": {
|
||||||
|
"isUseTabsRouter": true,
|
||||||
|
"showFooter": false
|
||||||
|
}
|
||||||
|
}
|
|
@ -94,6 +94,13 @@ Array.prototype.remove = function (from, to) {
|
||||||
Object.keys(filters).forEach(key => {
|
Object.keys(filters).forEach(key => {
|
||||||
Vue.filter(key, filters[key]);
|
Vue.filter(key, filters[key]);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* eslint-disable no-new */
|
/* eslint-disable no-new */
|
||||||
new Vue({
|
new Vue({
|
||||||
el: "#app",
|
el: "#app",
|
||||||
|
|
|
@ -2,6 +2,7 @@ import Vue from 'vue';
|
||||||
import Vuex from 'vuex';
|
import Vuex from 'vuex';
|
||||||
|
|
||||||
import app from './modules/app';
|
import app from './modules/app';
|
||||||
|
import setting from './modules/setting';
|
||||||
import user from './modules/user';
|
import user from './modules/user';
|
||||||
import dict from './modules/dict';
|
import dict from './modules/dict';
|
||||||
|
|
||||||
|
@ -21,6 +22,7 @@ const store = new Vuex.Store({
|
||||||
modules: {
|
modules: {
|
||||||
app,
|
app,
|
||||||
user,
|
user,
|
||||||
|
setting,
|
||||||
dict
|
dict
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
|
@ -0,0 +1,15 @@
|
||||||
|
const { setting } = require("@/config");
|
||||||
|
|
||||||
|
const localSetting = window.localStorage.getItem('setting')
|
||||||
|
const settingData = {
|
||||||
|
state: {
|
||||||
|
setting:localSetting ? JSON.parse(localSetting) : setting,
|
||||||
|
},
|
||||||
|
mutations: {
|
||||||
|
updateSetting(state, data) {
|
||||||
|
state.setting = data;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
export default settingData;
|
|
@ -32,6 +32,21 @@ export function enCode(v1) {
|
||||||
return v1;
|
return v1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
import {router} from "@/router/index";
|
||||||
|
/**
|
||||||
|
* 自定义跳转
|
||||||
|
*/
|
||||||
|
export function customRouterPush(push){
|
||||||
|
const setting = window.localStorage.getItem('setting');
|
||||||
|
if(setting.isUseTabsRouter){
|
||||||
|
router.push(push)
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
let url = router.resolve(push);
|
||||||
|
window.open(url.href, '_blank');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 订单来源
|
* 订单来源
|
||||||
|
|
|
@ -186,7 +186,6 @@ export default {
|
||||||
|
|
||||||
apiLogin.forgetAndModify(params).then(res => {
|
apiLogin.forgetAndModify(params).then(res => {
|
||||||
this.loading1 = false;
|
this.loading1 = false;
|
||||||
console.log(res);
|
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.$Message.success('修改密码成功');
|
this.$Message.success('修改密码成功');
|
||||||
this.$router.push('login');
|
this.$router.push('login');
|
||||||
|
|
|
@ -6,20 +6,20 @@
|
||||||
<div class="main">
|
<div class="main">
|
||||||
<div class="sidebar-menu-con menu-bar">
|
<div class="sidebar-menu-con menu-bar">
|
||||||
<div class="logo-con">
|
<div class="logo-con">
|
||||||
<!-- <img src="../assets/logo.png" key="max-logo" /> -->
|
|
||||||
<img :src="storeSideLogo" key="max-logo" />
|
<img :src="storeSideLogo" key="max-logo" />
|
||||||
</div>
|
</div>
|
||||||
<shrinkable-menu></shrinkable-menu>
|
<shrinkable-menu></shrinkable-menu>
|
||||||
</div>
|
</div>
|
||||||
<!-- 顶部标题栏主体 -->
|
<!-- 顶部标题栏主体 -->
|
||||||
<div class="main-header-con">
|
<div class="main-header-con" :style="{ height: setting.isUseTabsRouter ? '100px' : '60px' }">
|
||||||
<div class="main-header">
|
<div class="main-header">
|
||||||
<div
|
<div
|
||||||
:class="{
|
class="header-avator-con"
|
||||||
'header-avator-con': navType != 4,
|
|
||||||
'header-avator-con nav4': navType == 4,
|
|
||||||
}"
|
|
||||||
>
|
>
|
||||||
|
<!-- 左侧栏 -->
|
||||||
|
<div>
|
||||||
|
|
||||||
|
</div>
|
||||||
<!-- 用户头像 -->
|
<!-- 用户头像 -->
|
||||||
<div class="user-dropdown-menu-con">
|
<div class="user-dropdown-menu-con">
|
||||||
<Row
|
<Row
|
||||||
|
@ -28,15 +28,22 @@
|
||||||
align="middle"
|
align="middle"
|
||||||
class="user-dropdown-innercon"
|
class="user-dropdown-innercon"
|
||||||
>
|
>
|
||||||
|
<ul class="nav-list">
|
||||||
|
<li class="nav-item " @click="handleClickSetting">
|
||||||
|
<Tooltip content="设置">
|
||||||
|
<Icon size="16" type="md-settings" />
|
||||||
|
</Tooltip>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
<Dropdown
|
<Dropdown
|
||||||
transfer
|
transfer
|
||||||
trigger="hover"
|
trigger="hover"
|
||||||
@on-click="handleClickUserDropdown"
|
@on-click="handleClickUserDropdown"
|
||||||
>
|
>
|
||||||
<div class="dropList">
|
<div class="dropList">
|
||||||
<span class="main-user-name">{{ userInfo.storeName }}</span>
|
|
||||||
<Icon type="md-arrow-dropdown" />
|
|
||||||
<Avatar
|
<Avatar
|
||||||
|
icon="ios-person"
|
||||||
:src="userInfo.storeLogo"
|
:src="userInfo.storeLogo"
|
||||||
style="background: #fff; margin-left: 10px"
|
style="background: #fff; margin-left: 10px"
|
||||||
></Avatar>
|
></Avatar>
|
||||||
|
@ -51,11 +58,11 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- 已打开的页面标签 -->
|
<!-- 已打开的页面标签 -->
|
||||||
<div class="tags-con">
|
<div class="tags-con" v-if="setting.isUseTabsRouter">
|
||||||
<tags-page-opened :pageTagsList="pageTagsList"></tags-page-opened>
|
<tags-page-opened :pageTagsList="pageTagsList"></tags-page-opened>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="single-page-con">
|
<div class="single-page-con" :style="{ 'top': setting.isUseTabsRouter ? '100px' : '60px', height: setting.isUseTabsRouter ? 'calc(100% - 110px)' : 'calc(100% - 70px)' }">
|
||||||
<div class="single-page">
|
<div class="single-page">
|
||||||
<!-- <keep-alive :include="cachePage"> -->
|
<!-- <keep-alive :include="cachePage"> -->
|
||||||
<!-- </keep-alive> -->
|
<!-- </keep-alive> -->
|
||||||
|
@ -67,6 +74,8 @@
|
||||||
</div>
|
</div>
|
||||||
<!-- 全局加载动画 -->
|
<!-- 全局加载动画 -->
|
||||||
<circleLoading class="loading-position" v-show="loading" />
|
<circleLoading class="loading-position" v-show="loading" />
|
||||||
|
<!-- 右侧抽屉配置 -->
|
||||||
|
<configDrawer ref="config"/>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
@ -74,25 +83,34 @@
|
||||||
import shrinkableMenu from "./main-components/shrinkable-menu/shrinkable-menu.vue";
|
import shrinkableMenu from "./main-components/shrinkable-menu/shrinkable-menu.vue";
|
||||||
import tagsPageOpened from "./main-components/tags-page-opened.vue";
|
import tagsPageOpened from "./main-components/tags-page-opened.vue";
|
||||||
import circleLoading from "@/views/my-components/lili/circle-loading.vue";
|
import circleLoading from "@/views/my-components/lili/circle-loading.vue";
|
||||||
|
import configDrawer from "@/views/main-components/config-drawer.vue";
|
||||||
|
|
||||||
import Cookies from "js-cookie";
|
import Cookies from "js-cookie";
|
||||||
import util from "@/libs/util.js";
|
import util from "@/libs/util.js";
|
||||||
import { logout } from "@/api/index";
|
import { logout } from "@/api/index";
|
||||||
|
const config = require("@/config/index.js");
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
shrinkableMenu,
|
shrinkableMenu,
|
||||||
tagsPageOpened,
|
tagsPageOpened,
|
||||||
circleLoading
|
circleLoading,
|
||||||
|
configDrawer
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
config,
|
||||||
sliceNum: 5, // 展示nav数量
|
sliceNum: 5, // 展示nav数量
|
||||||
userInfo: {}, // 用户信息
|
userInfo: {}, // 用户信息
|
||||||
navType: 1, // nav类型
|
|
||||||
storeSideLogo: "", //logo图片
|
storeSideLogo: "", //logo图片
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
|
setting(){
|
||||||
|
let data = this.$store.state.setting
|
||||||
|
|
||||||
|
return data.setting
|
||||||
|
},
|
||||||
loading() {
|
loading() {
|
||||||
return this.$store.state.app.loading;
|
return this.$store.state.app.loading;
|
||||||
},
|
},
|
||||||
|
@ -110,6 +128,9 @@ export default {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
handleClickSetting() {
|
||||||
|
this.$refs.config.open();
|
||||||
|
},
|
||||||
// 初始化方法
|
// 初始化方法
|
||||||
init() {
|
init() {
|
||||||
// 菜单
|
// 菜单
|
||||||
|
@ -119,14 +140,14 @@ export default {
|
||||||
}
|
}
|
||||||
this.storeSideLogo = localStorage.getItem("sellerlogoImg");
|
this.storeSideLogo = localStorage.getItem("sellerlogoImg");
|
||||||
window.document.title = localStorage.getItem("sellersiteName");
|
window.document.title = localStorage.getItem("sellersiteName");
|
||||||
//动态获取icon
|
//动态获取icon
|
||||||
let link =
|
let link =
|
||||||
document.querySelector("link[rel*='icon']") ||
|
document.querySelector("link[rel*='icon']") ||
|
||||||
document.createElement("link");
|
document.createElement("link");
|
||||||
link.type = "image/x-icon";
|
link.type = "image/x-icon";
|
||||||
link.href = localStorage.getItem("sellerIconImg");
|
link.href = localStorage.getItem("sellerIconImg");
|
||||||
link.rel = "shortcut icon";
|
link.rel = "shortcut icon";
|
||||||
document.getElementsByTagName("head")[0].appendChild(link);
|
document.getElementsByTagName("head")[0].appendChild(link);
|
||||||
|
|
||||||
let userInfo = JSON.parse(Cookies.get("userInfoSeller"));
|
let userInfo = JSON.parse(Cookies.get("userInfoSeller"));
|
||||||
this.userInfo = userInfo;
|
this.userInfo = userInfo;
|
||||||
|
|
|
@ -144,7 +144,6 @@ export default {
|
||||||
endTime / 1000
|
endTime / 1000
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
console.log(this.searchForm);
|
|
||||||
// 带多条件搜索参数获取表单数据 请自行修改接口
|
// 带多条件搜索参数获取表单数据 请自行修改接口
|
||||||
getDistributionOrder(this.searchForm).then((res) => {
|
getDistributionOrder(this.searchForm).then((res) => {
|
||||||
this.loading = false;
|
this.loading = false;
|
||||||
|
|
|
@ -563,7 +563,6 @@ export default {
|
||||||
async exportGoods(){
|
async exportGoods(){
|
||||||
downLoadGoods()
|
downLoadGoods()
|
||||||
.then((res) => {
|
.then((res) => {
|
||||||
console.log(res)
|
|
||||||
const blob = new Blob([res], {
|
const blob = new Blob([res], {
|
||||||
type: "application/vnd.ms-excel;charset=utf-8",
|
type: "application/vnd.ms-excel;charset=utf-8",
|
||||||
});
|
});
|
||||||
|
|
|
@ -41,7 +41,6 @@ export default {
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
console.log( this.$refs["lili-component"])
|
|
||||||
this.$refs["lili-component"][0].type = "single"; //商品页面设置成为单选
|
this.$refs["lili-component"][0].type = "single"; //商品页面设置成为单选
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -144,7 +144,6 @@ export default {
|
||||||
// location.reload();
|
// location.reload();
|
||||||
// this.$router.go(0);
|
// this.$router.go(0);
|
||||||
|
|
||||||
console.log("Huoqu ");
|
|
||||||
this.setStore("saveLogin", this.saveLogin);
|
this.setStore("saveLogin", this.saveLogin);
|
||||||
if (this.saveLogin) {
|
if (this.saveLogin) {
|
||||||
// 保存7天
|
// 保存7天
|
||||||
|
@ -296,6 +295,6 @@ export default {
|
||||||
opacity: 0.9;
|
opacity: 0.9;
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -0,0 +1,78 @@
|
||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<Drawer width="300px" title="页面配置" v-model="drawer">
|
||||||
|
<!-- 内容 -->
|
||||||
|
<h3>
|
||||||
|
内容设置
|
||||||
|
</h3>
|
||||||
|
<div class="config-item flex flex-a-c flex-j-sb">
|
||||||
|
<div>
|
||||||
|
<Tooltip theme="light" placement="bottom-end" max-width="100" content="关闭之后部分页面点击'查看''详情'等按钮将跳到新页面展示" >
|
||||||
|
<div>
|
||||||
|
多标签Tab页内嵌模式
|
||||||
|
</div>
|
||||||
|
</Tooltip>
|
||||||
|
</div>
|
||||||
|
<i-switch v-model="setting.isUseTabsRouter"></i-switch>
|
||||||
|
</div>
|
||||||
|
</Drawer>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { mapState } from 'vuex'
|
||||||
|
export default {
|
||||||
|
name: "configDrawer",
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
drawer: false,
|
||||||
|
|
||||||
|
};
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
...mapState({
|
||||||
|
setting: state => {
|
||||||
|
return state.setting.setting
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
|
watch: {
|
||||||
|
setting: {
|
||||||
|
handler(val) {
|
||||||
|
this.setStore('setting', val)
|
||||||
|
this.$store.commit('updateSetting', val);
|
||||||
|
},
|
||||||
|
deep: true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
open() {
|
||||||
|
this.drawer = true
|
||||||
|
},
|
||||||
|
close() {
|
||||||
|
this.drawer = false
|
||||||
|
},
|
||||||
|
toggle() {
|
||||||
|
this.drawer != this.drawer
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
* {
|
||||||
|
color: #333 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
h3 {
|
||||||
|
margin: 10px 0 20px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.config-item {
|
||||||
|
cursor: pointer;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
</style>
|
|
@ -145,9 +145,9 @@
|
||||||
.header-avator-con {
|
.header-avator-con {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
position: absolute;
|
|
||||||
right: 0;
|
padding: 0 30px;
|
||||||
top: 0;
|
justify-content: space-between;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
|
||||||
|
|
||||||
|
@ -188,32 +188,6 @@
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.user-dropdown {
|
|
||||||
&-menu-con {
|
|
||||||
|
|
||||||
.main-user-name {
|
|
||||||
font-size: 14px;
|
|
||||||
display: inline-block;
|
|
||||||
cursor: pointer;
|
|
||||||
margin-right: 5px;
|
|
||||||
width: 200px;
|
|
||||||
overflow: hidden;
|
|
||||||
word-wrap: normal;
|
|
||||||
white-space: nowrap;
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
|
|
||||||
vertical-align: middle;
|
|
||||||
overflow: hidden;
|
|
||||||
|
|
||||||
text-align: right;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
&-innercon {
|
|
||||||
height: 100%;
|
|
||||||
padding-right: 14px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.full-screen-btn-con {
|
.full-screen-btn-con {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
|
@ -317,3 +291,23 @@
|
||||||
z-index: 100;
|
z-index: 100;
|
||||||
top: 1px;
|
top: 1px;
|
||||||
}
|
}
|
||||||
|
.nav-item {
|
||||||
|
cursor: pointer;
|
||||||
|
width: 30px;
|
||||||
|
height: 30px;
|
||||||
|
border-radius: 50%;
|
||||||
|
border: 1px solid #ededed;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
margin: 0 10px;
|
||||||
|
}
|
||||||
|
.footer-page-on{
|
||||||
|
|
||||||
|
width: 100%;
|
||||||
|
height: 30px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
z-index: 999;
|
||||||
|
}
|
||||||
|
|
|
@ -237,10 +237,10 @@
|
||||||
//投诉详情
|
//投诉详情
|
||||||
detail(v) {
|
detail(v) {
|
||||||
let id = v.id;
|
let id = v.id;
|
||||||
this.$router.push({
|
this.$options.filters.customRouterPush({
|
||||||
name: "order-complaint-detail",
|
name: "order-complaint-detail",
|
||||||
query: { id: id },
|
query: { id: id },
|
||||||
});
|
})
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
|
|
|
@ -270,10 +270,10 @@
|
||||||
// 退货订单详情
|
// 退货订单详情
|
||||||
detail(v) {
|
detail(v) {
|
||||||
let sn = v.sn;
|
let sn = v.sn;
|
||||||
this.$router.push({
|
this.$options.filters.customRouterPush({
|
||||||
name: "return-goods-order-detail",
|
name: "return-goods-order-detail",
|
||||||
query: { sn: sn },
|
query: { sn: sn },
|
||||||
});
|
})
|
||||||
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
@ -264,10 +264,10 @@
|
||||||
// 退款订单详情
|
// 退款订单详情
|
||||||
detail(v) {
|
detail(v) {
|
||||||
let sn = v.sn;
|
let sn = v.sn;
|
||||||
this.$router.push({
|
this.$options.filters.customRouterPush({
|
||||||
name: "return-goods-order-detail",
|
name: "return-goods-order-detail",
|
||||||
query: { sn: sn },
|
query: { sn: sn },
|
||||||
});
|
})
|
||||||
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
@ -81,7 +81,6 @@ export default {
|
||||||
// 点击选择步骤
|
// 点击选择步骤
|
||||||
handleCheckStep(val) {
|
handleCheckStep(val) {
|
||||||
if (val.title.search("3") == -1) {
|
if (val.title.search("3") == -1) {
|
||||||
console.warn(val);
|
|
||||||
this.stepList.map((item) => {
|
this.stepList.map((item) => {
|
||||||
item.checked = false;
|
item.checked = false;
|
||||||
});
|
});
|
||||||
|
|
|
@ -228,7 +228,7 @@
|
||||||
<span class="label">修改金额:</span>
|
<span class="label">修改金额:</span>
|
||||||
<span class="txt theme_color">¥{{ orderInfo.order.priceDetailDTO.updatePrice | unitPrice }}</span>
|
<span class="txt theme_color">¥{{ orderInfo.order.priceDetailDTO.updatePrice | unitPrice }}</span>
|
||||||
</li>
|
</li>
|
||||||
<!-- <li v-if="showPrices" v-for="(item,index) in typeList" :key="index" >
|
<!-- <li v-if="showPrices" v-for="(item,index) in typeList" :key="index" >
|
||||||
<hr style="border:1px dashed black;">
|
<hr style="border:1px dashed black;">
|
||||||
<span class="label" v-if="index == 1 && typeList.length > 1" style="font-size:10px !important;"><a @click="gotoHomes" style="display: inline-block;border-bottom: 1px dashed;color:black;width:80px;">{{item.promotionName}}:</a></span>
|
<span class="label" v-if="index == 1 && typeList.length > 1" style="font-size:10px !important;"><a @click="gotoHomes" style="display: inline-block;border-bottom: 1px dashed;color:black;width:80px;">{{item.promotionName}}:</a></span>
|
||||||
<span class="txt" style="border-bottom: 1px dashed;font-size:10px !important;" v-if="index == 1 && typeList.length > 1">¥{{ item.discountPrice | unitPrice }}</span>
|
<span class="txt" style="border-bottom: 1px dashed;font-size:10px !important;" v-if="index == 1 && typeList.length > 1">¥{{ item.discountPrice | unitPrice }}</span>
|
||||||
|
@ -744,9 +744,9 @@ export default {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
console.log(this.typeList)
|
|
||||||
if (this.typeList.length >= 3) {
|
if (this.typeList.length >= 3) {
|
||||||
console.log(123123)
|
|
||||||
this.getContentPrice()
|
this.getContentPrice()
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -849,7 +849,7 @@ export default {
|
||||||
const blob = new Blob([res], {
|
const blob = new Blob([res], {
|
||||||
type: "application/pdf;charset=utf-8",
|
type: "application/pdf;charset=utf-8",
|
||||||
});
|
});
|
||||||
console.log("出发blob");
|
|
||||||
//对于<a>标签,只有 Firefox 和 Chrome(内核) 支持 download 属性
|
//对于<a>标签,只有 Firefox 和 Chrome(内核) 支持 download 属性
|
||||||
//IE10以上支持blob但是依然不支持download
|
//IE10以上支持blob但是依然不支持download
|
||||||
if ("download" in document.createElement("a")) {
|
if ("download" in document.createElement("a")) {
|
||||||
|
|
|
@ -401,10 +401,11 @@ export default {
|
||||||
// 查看订单详情
|
// 查看订单详情
|
||||||
detail(v) {
|
detail(v) {
|
||||||
let sn = v.sn;
|
let sn = v.sn;
|
||||||
this.$router.push({
|
this.$options.filters.customRouterPush({
|
||||||
name: "order-detail",
|
name: "order-detail",
|
||||||
query: { sn: sn },
|
query: { sn: sn },
|
||||||
});
|
})
|
||||||
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
|
|
|
@ -252,10 +252,10 @@ export default {
|
||||||
// 跳转详情
|
// 跳转详情
|
||||||
detail(v) {
|
detail(v) {
|
||||||
let sn = v.sn;
|
let sn = v.sn;
|
||||||
this.$router.push({
|
this.$options.filters.customRouterPush({
|
||||||
name: "order-detail",
|
name: "order-detail",
|
||||||
query: { sn: sn },
|
query: { sn: sn },
|
||||||
});
|
})
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
|
|
|
@ -266,7 +266,7 @@ export default {
|
||||||
getCouponReceiveList(this.searchForm).then((res) => {
|
getCouponReceiveList(this.searchForm).then((res) => {
|
||||||
this.loading = false;
|
this.loading = false;
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
console.log(res);
|
|
||||||
this.data = res.result.records;
|
this.data = res.result.records;
|
||||||
this.total = res.result.total;
|
this.total = res.result.total;
|
||||||
}
|
}
|
||||||
|
|
|
@ -252,7 +252,7 @@ export default {
|
||||||
getDetail () {
|
getDetail () {
|
||||||
// 获取活动详情
|
// 获取活动详情
|
||||||
getFullDiscountById(this.id).then((res) => {
|
getFullDiscountById(this.id).then((res) => {
|
||||||
console.log(res);
|
|
||||||
let data = res.result;
|
let data = res.result;
|
||||||
if (data.scopeType === "ALL") {
|
if (data.scopeType === "ALL") {
|
||||||
data.promotionGoodsList = [];
|
data.promotionGoodsList = [];
|
||||||
|
|
|
@ -246,7 +246,8 @@ export default {
|
||||||
},
|
},
|
||||||
// 管理拼团商品
|
// 管理拼团商品
|
||||||
manage(v, status) {
|
manage(v, status) {
|
||||||
this.$router.push({ name: "pintuan-goods", query: { id: v.id, status: status } });
|
this.$options.filters.customRouterPush({name: "pintuan-goods", query: { id: v.id, status: status }} )
|
||||||
|
|
||||||
},
|
},
|
||||||
// 手动开启拼团活动
|
// 手动开启拼团活动
|
||||||
open(v) {
|
open(v) {
|
||||||
|
|
|
@ -207,11 +207,10 @@
|
||||||
// 跳转结算详情
|
// 跳转结算详情
|
||||||
detail(v) {
|
detail(v) {
|
||||||
let id = v.id;
|
let id = v.id;
|
||||||
this.$router.push({
|
this.$options.filters.customRouterPush({
|
||||||
name: "bill-detail",
|
name: "bill-detail",
|
||||||
query: { id: id },
|
query: { id: id },
|
||||||
});
|
})
|
||||||
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
mounted () {
|
mounted () {
|
||||||
|
|
|
@ -221,12 +221,12 @@ export default {
|
||||||
methods: {
|
methods: {
|
||||||
//获取状态
|
//获取状态
|
||||||
getfaceSheetFlag(e) {
|
getfaceSheetFlag(e) {
|
||||||
console.log(e);
|
|
||||||
if (e === true) {
|
if (e === true) {
|
||||||
console.log("打开");
|
|
||||||
this.onpenText = true;
|
this.onpenText = true;
|
||||||
} else {
|
} else {
|
||||||
console.log("关闭");
|
|
||||||
this.onpenText = false;
|
this.onpenText = false;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -261,7 +261,7 @@ export default {
|
||||||
this.form = item;
|
this.form = item;
|
||||||
|
|
||||||
let top = document.documentElement.scrollTop || document.body.scrollTop;
|
let top = document.documentElement.scrollTop || document.body.scrollTop;
|
||||||
// 实现滚动效果
|
// 实现滚动效果
|
||||||
const timeTop = setInterval(() => {
|
const timeTop = setInterval(() => {
|
||||||
document.body.scrollTop = document.documentElement.scrollTop = top -= 50;
|
document.body.scrollTop = document.documentElement.scrollTop = top -= 50;
|
||||||
if (top <= 0) {
|
if (top <= 0) {
|
||||||
|
@ -305,7 +305,6 @@ export default {
|
||||||
* 选择地址回调
|
* 选择地址回调
|
||||||
*/
|
*/
|
||||||
handleSelect(v) {
|
handleSelect(v) {
|
||||||
console.log(v);
|
|
||||||
let area = "";
|
let area = "";
|
||||||
let areaId = "";
|
let areaId = "";
|
||||||
if (v != "") {
|
if (v != "") {
|
||||||
|
|
|
@ -451,9 +451,9 @@ export default {
|
||||||
},
|
},
|
||||||
checkClerks() {
|
checkClerks() {
|
||||||
this.open = this.form.mobile.length;
|
this.open = this.form.mobile.length;
|
||||||
console.log(this.open)
|
|
||||||
if(this.open == 11 ){
|
if(this.open == 11 ){
|
||||||
this.checkClerk();
|
this.checkClerk();
|
||||||
}
|
}
|
||||||
if(this.open < 11){
|
if(this.open < 11){
|
||||||
this.checkAgainClerk()
|
this.checkAgainClerk()
|
||||||
|
@ -576,7 +576,7 @@ export default {
|
||||||
ids += e.id + ",";
|
ids += e.id + ",";
|
||||||
});
|
});
|
||||||
ids = ids.substring(0, ids.length - 1);
|
ids = ids.substring(0, ids.length - 1);
|
||||||
console.warn(ids)
|
|
||||||
resetPassword(ids).then(res => {
|
resetPassword(ids).then(res => {
|
||||||
this.$Modal.remove();
|
this.$Modal.remove();
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
|
@ -590,7 +590,7 @@ export default {
|
||||||
},
|
},
|
||||||
updateSubmit(){
|
updateSubmit(){
|
||||||
this.submitLoading = true;
|
this.submitLoading = true;
|
||||||
console.warn(this.editForm)
|
|
||||||
editOtherUser(this.editForm.id,this.editForm).then(res => {
|
editOtherUser(this.editForm.id,this.editForm).then(res => {
|
||||||
this.submitLoading = false;
|
this.submitLoading = false;
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
|
@ -606,7 +606,6 @@ export default {
|
||||||
if (valid) {
|
if (valid) {
|
||||||
// 添加用户 避免编辑后传入id
|
// 添加用户 避免编辑后传入id
|
||||||
const params = JSON.parse(JSON.stringify(this.form))
|
const params = JSON.parse(JSON.stringify(this.form))
|
||||||
console.warn(params)
|
|
||||||
delete params.id;
|
delete params.id;
|
||||||
delete params.status;
|
delete params.status;
|
||||||
if (this.newMember) {
|
if (this.newMember) {
|
||||||
|
@ -655,9 +654,9 @@ export default {
|
||||||
},
|
},
|
||||||
// 编辑用户
|
// 编辑用户
|
||||||
edit(v) {
|
edit(v) {
|
||||||
console.warn(v)
|
|
||||||
getClerk(v.id).then(res => {
|
getClerk(v.id).then(res => {
|
||||||
console.warn(res)
|
|
||||||
this.mobile = res.result.mobile
|
this.mobile = res.result.mobile
|
||||||
this.clerkName = res.result.clerkName
|
this.clerkName = res.result.clerkName
|
||||||
this.editForm.isSuper = 0
|
this.editForm.isSuper = 0
|
||||||
|
|
|
@ -201,7 +201,7 @@ export default {
|
||||||
loadDepartment(item.id).then((res) => {
|
loadDepartment(item.id).then((res) => {
|
||||||
this.loadingEdit = false;
|
this.loadingEdit = false;
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
console.log(res.result);
|
|
||||||
callback(res.result);
|
callback(res.result);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -303,7 +303,7 @@ export default {
|
||||||
editDepartment(this.form.id, this.form),
|
editDepartment(this.form.id, this.form),
|
||||||
updateDepartmentRole(this.form.id, roleWay)
|
updateDepartmentRole(this.form.id, roleWay)
|
||||||
]).then((res) => {
|
]).then((res) => {
|
||||||
console.warn(res)
|
|
||||||
this.submitLoading = false;
|
this.submitLoading = false;
|
||||||
if (res[0].success) {
|
if (res[0].success) {
|
||||||
this.$Message.success("编辑成功");
|
this.$Message.success("编辑成功");
|
||||||
|
@ -359,7 +359,7 @@ export default {
|
||||||
},
|
},
|
||||||
// 选中回调
|
// 选中回调
|
||||||
changeSelect(v) {
|
changeSelect(v) {
|
||||||
console.log(v);
|
|
||||||
this.selectCount = v.length;
|
this.selectCount = v.length;
|
||||||
this.selectList = v;
|
this.selectList = v;
|
||||||
},
|
},
|
||||||
|
|
|
@ -586,7 +586,7 @@ export default {
|
||||||
let selectedNodes = this.$refs.tree.getCheckedAndIndeterminateNodes();
|
let selectedNodes = this.$refs.tree.getCheckedAndIndeterminateNodes();
|
||||||
let way = [];
|
let way = [];
|
||||||
selectedNodes.forEach((e) => {
|
selectedNodes.forEach((e) => {
|
||||||
console.log(e)
|
|
||||||
let perm = {
|
let perm = {
|
||||||
title: e.title,
|
title: e.title,
|
||||||
isSuper: e.isSuper ? e.isSuper = 1 : e.isSuper = 0 || 0,
|
isSuper: e.isSuper ? e.isSuper = 1 : e.isSuper = 0 || 0,
|
||||||
|
@ -597,7 +597,7 @@ export default {
|
||||||
this.$set(this,'saveRoleWay',way)
|
this.$set(this,'saveRoleWay',way)
|
||||||
|
|
||||||
});
|
});
|
||||||
console.log(this.saveRoleWay)
|
|
||||||
},
|
},
|
||||||
|
|
||||||
/**保存权限 */
|
/**保存权限 */
|
||||||
|
|
|
@ -136,7 +136,7 @@ export default {
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.decorateData = "";
|
this.decorateData = "";
|
||||||
|
|
||||||
console.log(this.contentData.list.length);
|
|
||||||
// 如果当前楼层不为一
|
// 如果当前楼层不为一
|
||||||
if (this.contentData.list.length > 1) {
|
if (this.contentData.list.length > 1) {
|
||||||
// 如果当前最底层 给下一层赋值
|
// 如果当前最底层 给下一层赋值
|
||||||
|
@ -156,13 +156,13 @@ export default {
|
||||||
|
|
||||||
// 点击楼层装修
|
// 点击楼层装修
|
||||||
handleComponent(val, index) {
|
handleComponent(val, index) {
|
||||||
console.warn(val)
|
|
||||||
this.selected = index;
|
this.selected = index;
|
||||||
this.$set(this, "decorateData", val);
|
this.$set(this, "decorateData", val);
|
||||||
},
|
},
|
||||||
// 右侧栏回调
|
// 右侧栏回调
|
||||||
handleDrawer(val) {
|
handleDrawer(val) {
|
||||||
|
|
||||||
let newIndex = this.selected;
|
let newIndex = this.selected;
|
||||||
|
|
||||||
this.decorateData = "";
|
this.decorateData = "";
|
||||||
|
|
|
@ -145,7 +145,6 @@ export default {
|
||||||
this.saveDialog = false;
|
this.saveDialog = false;
|
||||||
this.$Message.error("修改失败,请稍后重试");
|
this.$Message.error("修改失败,请稍后重试");
|
||||||
}
|
}
|
||||||
console.log(res);
|
|
||||||
})
|
})
|
||||||
.catch((error) => {});
|
.catch((error) => {});
|
||||||
},
|
},
|
||||||
|
@ -176,7 +175,6 @@ export default {
|
||||||
this.saveDialog = false;
|
this.saveDialog = false;
|
||||||
this.$Message.error("保存失败,请稍后重试");
|
this.$Message.error("保存失败,请稍后重试");
|
||||||
}
|
}
|
||||||
console.log(res);
|
|
||||||
})
|
})
|
||||||
.catch((error) => {});
|
.catch((error) => {});
|
||||||
},
|
},
|
||||||
|
|
|
@ -118,7 +118,6 @@ export default {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
this.list = res.result.records;
|
this.list = res.result.records;
|
||||||
console.log(this.list);
|
|
||||||
this.total = res.result.total;
|
this.total = res.result.total;
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<Affix :offset-top="100">
|
|
||||||
<Card class="card fixed-bottom">
|
<Card class="card fixed-bottom">
|
||||||
<affixTime :closeShop="true" @selected="clickBreadcrumb"/>
|
<affixTime :closeShop="true" @selected="clickBreadcrumb"/>
|
||||||
</Card>
|
</Card>
|
||||||
</Affix>
|
|
||||||
<Card class="card">
|
<Card class="card">
|
||||||
|
|
||||||
<Tabs @on-click="handleClickType">
|
<Tabs @on-click="handleClickType">
|
||||||
|
@ -23,10 +23,12 @@
|
||||||
import affixTime from "@/views/lili-components/affix-time";
|
import affixTime from "@/views/lili-components/affix-time";
|
||||||
import * as API_Goods from "@/api/goods";
|
import * as API_Goods from "@/api/goods";
|
||||||
import Cookies from "js-cookie";
|
import Cookies from "js-cookie";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: { affixTime },
|
components: { affixTime },
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
setting:"",
|
||||||
params: { // 请求参数
|
params: { // 请求参数
|
||||||
searchType: "LAST_SEVEN",
|
searchType: "LAST_SEVEN",
|
||||||
year: "",
|
year: "",
|
||||||
|
@ -53,6 +55,9 @@ export default {
|
||||||
],
|
],
|
||||||
data: [], // 表格数据
|
data: [], // 表格数据
|
||||||
};
|
};
|
||||||
|
},
|
||||||
|
computed:{
|
||||||
|
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
// tab切换
|
// tab切换
|
||||||
|
@ -83,29 +88,11 @@ export default {
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
<style scoped lang="scss">
|
<style scoped lang="scss">
|
||||||
.page-col {
|
.fixed-bottom{
|
||||||
text-align: right;
|
position:sticky;
|
||||||
margin: 10px 0;
|
z-index: 999;
|
||||||
|
top: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.order-col {
|
|
||||||
display: flex;
|
|
||||||
|
|
||||||
> div {
|
|
||||||
margin-right: 8px;
|
|
||||||
padding: 16px;
|
|
||||||
font-size: 15px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.order-list {
|
|
||||||
display: flex;
|
|
||||||
}
|
|
||||||
|
|
||||||
.tips {
|
|
||||||
margin: 0 8px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.card {
|
.card {
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,13 +1,9 @@
|
||||||
<template>
|
<template>
|
||||||
|
|
||||||
<div class="wrapper">
|
<div class="wrapper">
|
||||||
<Affix :offset-top="100">
|
|
||||||
<Card class="card fixed-bottom">
|
<Card class="card fixed-bottom">
|
||||||
|
|
||||||
<affixTime @selected="clickBreadcrumb" />
|
<affixTime @selected="clickBreadcrumb" />
|
||||||
|
|
||||||
</Card>
|
</Card>
|
||||||
</Affix>
|
|
||||||
|
|
||||||
<Card class="card">
|
<Card class="card">
|
||||||
<div>
|
<div>
|
||||||
|
@ -430,7 +426,6 @@ export default {
|
||||||
watch: {
|
watch: {
|
||||||
refundParams: {
|
refundParams: {
|
||||||
handler() {
|
handler() {
|
||||||
console.log(this.refundIndex);
|
|
||||||
if (this.refundIndex == 1) {
|
if (this.refundIndex == 1) {
|
||||||
this.getOrderRefundList();
|
this.getOrderRefundList();
|
||||||
} else {
|
} else {
|
||||||
|
@ -570,6 +565,11 @@ export default {
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
<style scoped lang="scss">
|
<style scoped lang="scss">
|
||||||
|
.fixed-bottom{
|
||||||
|
position:sticky;
|
||||||
|
z-index: 999;
|
||||||
|
top: 0;
|
||||||
|
}
|
||||||
.active {
|
.active {
|
||||||
color: $theme_color;
|
color: $theme_color;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
|
@ -1,10 +1,8 @@
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<Affix :offset-top="100">
|
|
||||||
<Card class="card fixed-bottom">
|
<Card class="card fixed-bottom">
|
||||||
<affixTime @selected="clickBreadcrumb" />
|
<affixTime @selected="clickBreadcrumb" />
|
||||||
</Card>
|
</Card>
|
||||||
</Affix>
|
|
||||||
<Card class="card">
|
<Card class="card">
|
||||||
<div>
|
<div>
|
||||||
<h4>流量概况</h4>
|
<h4>流量概况</h4>
|
||||||
|
@ -218,6 +216,11 @@ export default {
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
<style scoped lang="scss">
|
<style scoped lang="scss">
|
||||||
|
.fixed-bottom{
|
||||||
|
position:sticky;
|
||||||
|
z-index: 999;
|
||||||
|
top: 0;
|
||||||
|
}
|
||||||
.table {
|
.table {
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue