Merge branch 'dev/1.0' into custom/common

This commit is contained in:
2026-01-06 18:21:14 +08:00
180 changed files with 8977 additions and 10035 deletions

43
.local.config.js Normal file
View File

@@ -0,0 +1,43 @@
// 本地调试配置示例文件
// 复制此文件并重命名为 local.config.js 以使用自定义本地配置
const localDevConfig = ({
'460': { // 制氧设备平台
uniacid: 460,
domain: 'https://xcx30.5g-quickapp.com/',
},
'576-xcx30.5g': { // 活性石灰装备
uniacid: 576,
domain: 'https://xcx30.5g-quickapp.com/',
},
'2285': { // 数码喷墨墨水
uniacid: 2285,
domain: 'https://xcx.aigc-quickapp.com/',
},
'2811': { // POCT检测分析平台
uniacid: 2811,
domain: 'https://xcx6.aigc-quickapp.com/',
},
'2724': { // 生物菌肥
uniacid: 2724,
domain: 'https://xcx.aigc-quickapp.com/',
},
'2505': { // 煤矿钻机
uniacid: 2505,
domain: 'https://xcx.aigc-quickapp.com/',
},
'2777': { // 养老服务
uniacid: 2777,
domain: 'https://xcx.aigc-quickapp.com/',
},
'1': { // 开发平台
uniacid: 1,
domain: 'https://dev.aigc-quickapp.com',
},
'1-test': { // 测试平台
uniacid: 1,
domain: 'https://test.aigc-quickapp.com',
},
})['2811']; // 选择要使用的环境配置
export default localDevConfig;

View File

@@ -6,14 +6,26 @@ const localDevConfig = ({
uniacid: 460, uniacid: 460,
domain: 'https://xcx30.5g-quickapp.com/', domain: 'https://xcx30.5g-quickapp.com/',
}, },
'576-xcx30.5g': { // 活性石灰装备
uniacid: 576,
domain: 'https://xcx30.5g-quickapp.com/',
},
'2285': { // 数码喷墨墨水 '2285': { // 数码喷墨墨水
uniacid: 2285, uniacid: 2285,
domain: 'https://xcx.aigc-quickapp.com/', domain: 'https://xcx.aigc-quickapp.com/',
}, },
'2724': { // 德龙生物肥料 '2811': { // POCT检测分析平台
uniacid: 2811,
domain: 'https://xcx6.aigc-quickapp.com/',
},
'2724': { // 生物菌肥
uniacid: 2724, uniacid: 2724,
domain: 'https://xcx.aigc-quickapp.com/', domain: 'https://xcx.aigc-quickapp.com/',
}, },
'2505': { // 煤矿钻机
uniacid: 2505,
domain: 'https://xcx.aigc-quickapp.com/',
},
'2777': { // 养老服务 '2777': { // 养老服务
uniacid: 2777, uniacid: 2777,
domain: 'https://xcx.aigc-quickapp.com/', domain: 'https://xcx.aigc-quickapp.com/',
@@ -26,6 +38,6 @@ const localDevConfig = ({
uniacid: 1, uniacid: 1,
domain: 'https://test.aigc-quickapp.com', domain: 'https://test.aigc-quickapp.com',
}, },
})['2724']; // 选择要使用的环境配置 })['2811']; // 选择要使用的环境配置
export default localDevConfig; export default localDevConfig;

View File

@@ -8,7 +8,7 @@
export default { export default {
mixins: [auth], mixins: [auth],
onLaunch: function(options) { onLaunch: async function(options) {
// 方式支持快应用从url中query部分获取uniacid或useragent中获取uniacid // 方式支持快应用从url中query部分获取uniacid或useragent中获取uniacid
if(options.query.uniacid){ if(options.query.uniacid){
uni.setStorageSync('uniacid', options.query.uniacid); uni.setStorageSync('uniacid', options.query.uniacid);
@@ -40,7 +40,7 @@
// #endif // #endif
// #ifdef H5 // #ifdef H5
if (uni.getSystemInfoSync().platform == 'ios') { if (this.$util.getDeviceInfo().platform == 'ios') {
uni.setStorageSync('initUrl', location.href); uni.setStorageSync('initUrl', location.href);
} }
// #endif // #endif
@@ -61,7 +61,8 @@
// 主题风格 // 主题风格
if (uni.getStorageSync('themeStyle')) { if (uni.getStorageSync('themeStyle')) {
this.$store.commit('setThemeStyle', configExternal.loadThemeSync(uni.getStorageSync('themeStyle'))); const themeData = await configExternal.loadTheme(uni.getStorageSync('themeStyle'));
this.$store.commit('setThemeStyle', themeData);
this.$store.dispatch('themeColorSet'); this.$store.dispatch('themeColorSet');
} }

View File

@@ -14,7 +14,7 @@ export const langConfig = {
// 主题配置 // 主题配置
export const themeConfig = { export const themeConfig = {
// 主题列表 // 主题列表
themeList: ['default', 'red', 'green', 'blue'], themeList: ['default', 'red', 'green', 'blue', 'pink', 'gold', 'purple', 'yellow', 'black'],
// 默认主题 // 默认主题
defaultTheme: 'default' defaultTheme: 'default'
}; };
@@ -98,28 +98,6 @@ class ConfigExternal {
return this.loadPromises[key]; return this.loadPromises[key];
} }
/**
* 加载主题配置(同步方式)
* @param {string} theme - 主题名称
* @returns {object} - 主题配置
*/
loadThemeSync(theme = themeConfig.defaultTheme) {
if (this.loadedConfigs[`theme_${theme}`]) {
return this.loadedConfigs[`theme_${theme}`];
}
try {
// 动态加载主题配置
const themeData = require(`@/common/js/style_color.js`)['default'][theme];
console.log('sync themeData => ', themeData);
this.loadedConfigs[`theme_${theme}`] = themeData;
return themeData;
} catch (error) {
console.error(`加载主题 ${theme} 失败:`, error);
return {};
}
}
/** /**
* 加载主题配置(异步方式) * 加载主题配置(异步方式)
* @param {string} theme - 主题名称 * @param {string} theme - 主题名称

View File

@@ -43,6 +43,7 @@ let localDevConfig = { uniacid: 0, domain: defaultDomain };
// #ifndef PRODUCTION // #ifndef PRODUCTION
// 尝试动态加载本地配置文件 // 尝试动态加载本地配置文件
if (process?.env?.NODE_ENV === 'development') {
try { try {
// 尝试从项目根目录加载本地配置文件 // 尝试从项目根目录加载本地配置文件
// 使用相对路径的方式,确保在不同平台下都能正确解析 // 使用相对路径的方式,确保在不同平台下都能正确解析
@@ -57,6 +58,7 @@ try {
console.log('本地配置文件 .local.config.js 不存在,使用默认配置'); console.log('本地配置文件 .local.config.js 不存在,使用默认配置');
// #endif // #endif
} }
}
// #endif // #endif
const { uniacid = 0, domain = defaultDomain } = localDevConfig ?? { uniacid: 0, domain: defaultDomain } const { uniacid = 0, domain = defaultDomain } = localDevConfig ?? { uniacid: 0, domain: defaultDomain }

View File

@@ -1,7 +1,9 @@
import WxMap from 'common/js/map-wx-jssdk.js'; import WxMap from 'common/js/map-wx-jssdk.js';
import Config from '@/common/js/config.js'; import Config from '@/common/js/config.js';
import util from '@/common/js/util.js';
let systemInfo = util.getDeviceInfo();
let systemInfo = uni.getSystemInfoSync();
export default { export default {
data() { data() {
return { return {

View File

@@ -1,8 +1,8 @@
import { langConfig } from './config-external.js'; import { langConfig } from './config-external.js';
var locale = uni.getStorageSync('lang') || "zh-cn"; //设置语言
// 缓存已加载的语言包 // 缓存已加载的语言包
var loadedLangPacks = {}; const loadedLangPacks = {};
// 处理页面目录映射 // 处理页面目录映射
function processRoutePath(route) { function processRoutePath(route) {
@@ -64,6 +64,8 @@ export default {
let _this = getCurrentPages()[getCurrentPages().length - 1]; let _this = getCurrentPages()[getCurrentPages().length - 1];
if (!_this) return; if (!_this) return;
const locale = uni.getStorageSync('lang') || "zh-cn"; //设置语言
var value = ''; var value = '';
try { try {
//公共语言包(同步加载) //公共语言包(同步加载)
@@ -72,7 +74,7 @@ export default {
//当前页面语言包(同步加载) //当前页面语言包(同步加载)
let route = _this.route; let route = _this.route;
let langPath = processRoutePath(route); let langPath = processRoutePath(route);
// console.log(`当前页面语言包路径: ${langPath}`); console.log(`当前语言: ${locale}, 当前页面语言包路径: ${langPath}`);
// 加载当前页面语言包 // 加载当前页面语言包
let currentPageLang = loadLangPackSync(locale, langPath); let currentPageLang = loadLangPackSync(locale, langPath);
@@ -113,7 +115,7 @@ export default {
if (value == undefined || (value == 'title' && field == 'title')) value = ''; // field if (value == undefined || (value == 'title' && field == 'title')) value = ''; // field
// 多语言调试,注释后可以关闭控制台输出 // 多语言调试,注释后可以关闭控制台输出
// console.log(`字段: ${field}, 值: ${value}`) console.log(`字段: ${field}, 值: ${value}`)
return value; return value;
}, },
/** /**
@@ -126,10 +128,14 @@ export default {
if (!_this) return; if (!_this) return;
uni.setStorageSync("lang", value); uni.setStorageSync("lang", value);
locale = uni.getStorageSync('lang') || "zh-cn"; //设置语言 const locale = uni.getStorageSync('lang') || "zh-cn"; //设置语言
// 清空已加载的语言包缓存 // 清空已加载的语言包缓存
loadedLangPacks = {}; for (let key in loadedLangPacks) {
if (!key.startsWith(locale)) {
delete loadedLangPacks[key];
}
}
this.refresh(); this.refresh();
@@ -141,7 +147,7 @@ export default {
refresh() { refresh() {
let _this = getCurrentPages()[getCurrentPages().length - 1]; let _this = getCurrentPages()[getCurrentPages().length - 1];
if (!_this) return; if (!_this) return;
locale = uni.getStorageSync('lang') || "zh-cn"; //设置语言 const locale = uni.getStorageSync('lang') || "zh-cn"; //设置语言
this.title(this.lang("title")); this.title(this.lang("title"));

View File

@@ -1,3 +1,4 @@
import util from '@/common/js/util.js'
import TransformCoordinate from './transformCoordinate.js' import TransformCoordinate from './transformCoordinate.js'
function openMapByDefault(latitude, longitude, name) { function openMapByDefault(latitude, longitude, name) {
@@ -85,7 +86,8 @@ export default {
openMap(latitude, longitude, name, coord_type = 'gcj02') { openMap(latitude, longitude, name, coord_type = 'gcj02') {
let arr = getCoordByType(longitude, latitude, coord_type) let arr = getCoordByType(longitude, latitude, coord_type)
// #ifdef APP-PLUS // #ifdef APP-PLUS
switch (uni.getSystemInfoSync().platform) { let platform = util.getDeviceInfo().platform;
switch (platform) {
case 'android': case 'android':
console.log('运行Android上') console.log('运行Android上')
openMapByAndroid(arr[1], arr[0], name) openMapByAndroid(arr[1], arr[0], name)

View File

@@ -1,4 +1,5 @@
import { EventSafety } from './event-safety' import { EventSafety } from '@/common/js/event-safety.js'
import util from '@/common/js/util.js'
export class NavigationHelper { export class NavigationHelper {
constructor() { constructor() {
@@ -59,7 +60,7 @@ export class NavigationHelper {
// 微信小程序精确计算 // 微信小程序精确计算
try { try {
const menuButtonInfo = wx.getMenuButtonBoundingClientRect() const menuButtonInfo = wx.getMenuButtonBoundingClientRect()
const systemInfo = uni.getSystemInfoSync() let systemInfo = util.getDeviceInfo();
const height = menuButtonInfo.bottom + const height = menuButtonInfo.bottom +
(menuButtonInfo.top - systemInfo.statusBarHeight) (menuButtonInfo.top - systemInfo.statusBarHeight)
@@ -119,7 +120,7 @@ export class NavigationHelper {
// 获取状态栏高度 // 获取状态栏高度
getStatusBarHeight() { getStatusBarHeight() {
// #ifdef MP-WEIXIN // #ifdef MP-WEIXIN
const systemInfo = uni.getSystemInfoSync() let systemInfo = util.getDeviceInfo();
return systemInfo.statusBarHeight || 20 return systemInfo.statusBarHeight || 20
// #endif // #endif
// #ifdef H5 // #ifdef H5
@@ -138,7 +139,7 @@ export class NavigationHelper {
// 获取安全区域 // 获取安全区域
getSafeAreaInsets() { getSafeAreaInsets() {
try { try {
const systemInfo = uni.getSystemInfoSync() let systemInfo = util.getDeviceInfo();
return systemInfo.safeArea || { return systemInfo.safeArea || {
top: 0, top: 0,
bottom: 0, bottom: 0,

View File

@@ -20,7 +20,7 @@ export default {
main_color_shallow: '#FFF4F4',//淡背景 main_color_shallow: '#FFF4F4',//淡背景
price_color: 'rgb(252,82,39)',//价格颜色 price_color: 'rgb(252,82,39)',//价格颜色
btn_text_color: '#FFFFFF',//按钮文字颜色 btn_text_color: '#FFFFFF',//按钮文字颜色
goods_detail: { ...{
goods_price: 'rgb(252,82,39,1)',//价格 goods_price: 'rgb(252,82,39,1)',//价格
promotion_tag: '#FF4646', promotion_tag: '#FF4646',
goods_card_bg: '#201A18',//会员卡背景 goods_card_bg: '#201A18',//会员卡背景
@@ -31,38 +31,38 @@ export default {
goods_btn_color: '#FF4646',//按钮颜色 goods_btn_color: '#FF4646',//按钮颜色
goods_btn_color_shallow: '#F7B500',//副按钮颜色 goods_btn_color_shallow: '#F7B500',//副按钮颜色
}, },
pintuan: { ...{
pintuan_label_bg: '#F7B500', pintuan_label_bg: '#F7B500',
pintuan_label_color: '#FFFFFF', pintuan_label_color: '#FFFFFF',
pintuan_color: '#FA6400', pintuan_color: '#FA6400',
pintuan_promotion_color: '#FA3A1D',//活动背景 pintuan_promotion_color: '#FA3A1D',//活动背景
pintuan_promotion_aux_color: '#FD9A01',//活动背景辅色 pintuan_promotion_aux_color: '#FD9A01',//活动背景辅色
}, },
super_member: { ...{
super_member_start_bg: '#7c7878', super_member_start_bg: '#7c7878',
super_member_end_bg: '#201a18', super_member_end_bg: '#201a18',
super_member_start_text_color: '#FFDBA6', super_member_start_text_color: '#FFDBA6',
super_member_end_text_color: '#FFEBCA', super_member_end_text_color: '#FFEBCA',
}, },
bargain: { ...{
bargain_promotion_color: '#F0353E',//活动背景 bargain_promotion_color: '#F0353E',//活动背景
bargain_promotion_aux_color: '#FD9A01',//活动辅色 bargain_promotion_aux_color: '#FD9A01',//活动辅色
}, },
seckill: { ...{
seckill_promotion_color: '#F83530',//活动背景 seckill_promotion_color: '#F83530',//活动背景
seckill_promotion_aux_color: '#FD9A01',//活动辅色 seckill_promotion_aux_color: '#FD9A01',//活动辅色
}, },
giftcard: { ...{
giftcard_promotion_color: '#FF3369',//活动背景 giftcard_promotion_color: '#FF3369',//活动背景
giftcard_promotion_aux_color: '#F7B500',//活动辅色 giftcard_promotion_aux_color: '#F7B500',//活动辅色
}, },
groupby: { ...{
groupby_promotion_color: '#E64136',//活动背景 groupby_promotion_color: '#E64136',//活动背景
groupby_promotion_aux_color: '#F7B500',//活动辅色 groupby_promotion_aux_color: '#F7B500',//活动辅色
}, },
hoverNav: { ...{
hovenav_bg_color: '#F4391c',//背景色 hover_nav_bg_color: '#FFFC', //背景色: 红色 '#c6251b', 白色: '#FFFC'
hovenav_text_color: '#FFFFFF' hover_nav_text_color: '#000' // 文字颜色: 白色 '#FFFFFF', 黑色: '#000'
}, },
}, },
'green': { 'green': {
@@ -76,7 +76,7 @@ export default {
main_color_shallow: '#F0FFF5',//淡背景 main_color_shallow: '#F0FFF5',//淡背景
price_color: 'rgba(252,82,39,1)',//价格颜色 price_color: 'rgba(252,82,39,1)',//价格颜色
btn_text_color: '#FFFFFF',//按钮文字颜色 btn_text_color: '#FFFFFF',//按钮文字颜色
goods_detail: { ...{
goods_price: 'rgba(252,82,39,1)',//价格 goods_price: 'rgba(252,82,39,1)',//价格
promotion_tag: '#19C650', promotion_tag: '#19C650',
goods_card_bg: '#201A18',//会员卡背景 goods_card_bg: '#201A18',//会员卡背景
@@ -87,38 +87,38 @@ export default {
goods_btn_color: '#19C650',//按钮颜色 goods_btn_color: '#19C650',//按钮颜色
goods_btn_color_shallow: '#FA6400',//副按钮颜色 goods_btn_color_shallow: '#FA6400',//副按钮颜色
}, },
pintuan: { ...{
pintuan_label_bg: '#F7B500', pintuan_label_bg: '#F7B500',
pintuan_label_color: '#FFFFFF', pintuan_label_color: '#FFFFFF',
pintuan_color: '#FA6400', pintuan_color: '#FA6400',
pintuan_promotion_color: '#FA3A1D',//活动背景 pintuan_promotion_color: '#FA3A1D',//活动背景
pintuan_promotion_aux_color: '#FD9A01',//活动背景辅色 pintuan_promotion_aux_color: '#FD9A01',//活动背景辅色
}, },
super_member: { ...{
super_member_start_bg: '#7c7878', super_member_start_bg: '#7c7878',
super_member_end_bg: '#201a18', super_member_end_bg: '#201a18',
super_member_start_text_color: '#FFDBA6', super_member_start_text_color: '#FFDBA6',
super_member_end_text_color: '#FFEBCA', super_member_end_text_color: '#FFEBCA',
}, },
bargain: { ...{
bargain_promotion_color: '#F0353E',//活动背景 bargain_promotion_color: '#F0353E',//活动背景
bargain_promotion_aux_color: '#FD9A01',//活动辅色 bargain_promotion_aux_color: '#FD9A01',//活动辅色
}, },
seckill: { ...{
seckill_promotion_color: '#F83530',//活动背景 seckill_promotion_color: '#F83530',//活动背景
seckill_promotion_aux_color: '#FD9A01',//活动辅色 seckill_promotion_aux_color: '#FD9A01',//活动辅色
}, },
giftcard: { ...{
giftcard_promotion_color: '#FF3369',//活动背景 giftcard_promotion_color: '#FF3369',//活动背景
giftcard_promotion_aux_color: '#F7B500',//活动辅色 giftcard_promotion_aux_color: '#F7B500',//活动辅色
}, },
groupby: { ...{
groupby_promotion_color: '#E64136',//活动背景 groupby_promotion_color: '#E64136',//活动背景
groupby_promotion_aux_color: '#F7B500',//活动辅色 groupby_promotion_aux_color: '#F7B500',//活动辅色
}, },
hoverNav: { ...{
hovenav_bg_color: '#19C650',//背景色 hover_nav_bg_color: '#19C650',//背景色
hovenav_text_color: '#FFFFFF' hover_nav_text_color: '#FFFFFF'
}, },
}, },
'blue': { 'blue': {
@@ -132,7 +132,7 @@ export default {
main_color_shallow: '#E2F3FF', main_color_shallow: '#E2F3FF',
price_color: 'rgba(252,82,39,1)',//价格颜色 price_color: 'rgba(252,82,39,1)',//价格颜色
btn_text_color: '#FFFFFF',//按钮文字颜色 btn_text_color: '#FFFFFF',//按钮文字颜色
goods_detail: { ...{
goods_price: 'rgba(252,82,39,1)',//价格 goods_price: 'rgba(252,82,39,1)',//价格
promotion_tag: '#36ABFF', promotion_tag: '#36ABFF',
goods_card_bg: '#201A18',//会员卡背景 goods_card_bg: '#201A18',//会员卡背景
@@ -143,38 +143,38 @@ export default {
goods_btn_color: '#36ABFF',//按钮颜色 goods_btn_color: '#36ABFF',//按钮颜色
goods_btn_color_shallow: '#FA6400',//副按钮颜色 goods_btn_color_shallow: '#FA6400',//副按钮颜色
}, },
pintuan: { ...{
pintuan_label_bg: '#F7B500', pintuan_label_bg: '#F7B500',
pintuan_label_color: '#FFFFFF', pintuan_label_color: '#FFFFFF',
pintuan_color: '#FA6400', pintuan_color: '#FA6400',
pintuan_promotion_color: '#FA3A1D',//活动背景 pintuan_promotion_color: '#FA3A1D',//活动背景
pintuan_promotion_aux_color: '#FD9A01',//活动背景辅色 pintuan_promotion_aux_color: '#FD9A01',//活动背景辅色
}, },
super_member: { ...{
super_member_start_bg: '#7c7878', super_member_start_bg: '#7c7878',
super_member_end_bg: '#201a18', super_member_end_bg: '#201a18',
super_member_start_text_color: '#FFDBA6', super_member_start_text_color: '#FFDBA6',
super_member_end_text_color: '#FFEBCA', super_member_end_text_color: '#FFEBCA',
}, },
bargain: { ...{
bargain_promotion_color: '#F0353E',//活动背景 bargain_promotion_color: '#F0353E',//活动背景
bargain_promotion_aux_color: '#FD9A01',//活动辅色 bargain_promotion_aux_color: '#FD9A01',//活动辅色
}, },
seckill: { ...{
seckill_promotion_color: '#F83530',//活动背景 seckill_promotion_color: '#F83530',//活动背景
seckill_promotion_aux_color: '#FD9A01',//活动辅色 seckill_promotion_aux_color: '#FD9A01',//活动辅色
}, },
giftcard: { ...{
giftcard_promotion_color: '#FF3369',//活动背景 giftcard_promotion_color: '#FF3369',//活动背景
giftcard_promotion_aux_color: '#F7B500',//活动辅色 giftcard_promotion_aux_color: '#F7B500',//活动辅色
}, },
groupby: { ...{
groupby_promotion_color: '#E64136',//活动背景 groupby_promotion_color: '#E64136',//活动背景
groupby_promotion_aux_color: '#F7B500',//活动辅色 groupby_promotion_aux_color: '#F7B500',//活动辅色
}, },
hoverNav: { ...{
hovenav_bg_color: '#36ABFF',//背景色 hover_nav_bg_color: '#36ABFF',//背景色
hovenav_text_color: '#FFFFFF' hover_nav_text_color: '#FFFFFF'
}, },
}, },
'pink': { 'pink': {
@@ -188,7 +188,7 @@ export default {
main_color_shallow: '#FFF5F8',//淡背景 main_color_shallow: '#FFF5F8',//淡背景
price_color: 'rgba(252,82,39,1)',//价格颜色 price_color: 'rgba(252,82,39,1)',//价格颜色
btn_text_color: '#FFFFFF',//按钮文字颜色 btn_text_color: '#FFFFFF',//按钮文字颜色
goods_detail: { ...{
goods_price: 'rgba(252,82,39,1)',//价格 goods_price: 'rgba(252,82,39,1)',//价格
promotion_tag: '#FF407E', promotion_tag: '#FF407E',
goods_card_bg: '#201A18',//会员卡背景 goods_card_bg: '#201A18',//会员卡背景
@@ -199,38 +199,38 @@ export default {
goods_btn_color: '#FF407E',//按钮颜色 goods_btn_color: '#FF407E',//按钮颜色
goods_btn_color_shallow: '#F7B500',//副按钮颜色 goods_btn_color_shallow: '#F7B500',//副按钮颜色
}, },
pintuan: { ...{
pintuan_label_bg: '#F7B500', pintuan_label_bg: '#F7B500',
pintuan_label_color: '#FFFFFF', pintuan_label_color: '#FFFFFF',
pintuan_color: '#FA6400', pintuan_color: '#FA6400',
pintuan_promotion_color: '#FA3A1D',//活动背景 pintuan_promotion_color: '#FA3A1D',//活动背景
pintuan_promotion_aux_color: '#FD9A01',//活动背景辅色 pintuan_promotion_aux_color: '#FD9A01',//活动背景辅色
}, },
super_member: { ...{
super_member_start_bg: '#7c7878', super_member_start_bg: '#7c7878',
super_member_end_bg: '#201a18', super_member_end_bg: '#201a18',
super_member_start_text_color: '#FFDBA6', super_member_start_text_color: '#FFDBA6',
super_member_end_text_color: '#FFEBCA', super_member_end_text_color: '#FFEBCA',
}, },
bargain: { ...{
bargain_promotion_color: '#F0353E',//活动背景 bargain_promotion_color: '#F0353E',//活动背景
bargain_promotion_aux_color: '#FD9A01',//活动辅色 bargain_promotion_aux_color: '#FD9A01',//活动辅色
}, },
seckill: { ...{
seckill_promotion_color: '#F83530',//活动背景 seckill_promotion_color: '#F83530',//活动背景
seckill_promotion_aux_color: '#FD9A01',//活动辅色 seckill_promotion_aux_color: '#FD9A01',//活动辅色
}, },
giftcard: { ...{
giftcard_promotion_color: '#FF3369',//活动背景 giftcard_promotion_color: '#FF3369',//活动背景
giftcard_promotion_aux_color: '#F7B500',//活动辅色 giftcard_promotion_aux_color: '#F7B500',//活动辅色
}, },
groupby: { ...{
groupby_promotion_color: '#E64136',//活动背景 groupby_promotion_color: '#E64136',//活动背景
groupby_promotion_aux_color: '#F7B500',//活动辅色 groupby_promotion_aux_color: '#F7B500',//活动辅色
}, },
hoverNav: { ...{
hovenav_bg_color: '#FF407E',//背景色 hover_nav_bg_color: '#FF407E',//背景色
hovenav_text_color: '#FFFFFF' hover_nav_text_color: '#FFFFFF'
}, },
}, },
'gold': { 'gold': {
@@ -244,7 +244,7 @@ export default {
main_color_shallow: '#FFFAF1',//淡背景 main_color_shallow: '#FFFAF1',//淡背景
price_color: 'rgba(252,82,39,1)',//价格颜色 price_color: 'rgba(252,82,39,1)',//价格颜色
btn_text_color: '#FFFFFF',//按钮文字颜色 btn_text_color: '#FFFFFF',//按钮文字颜色
goods_detail: { ...{
goods_price: 'rgba(252,82,39,1)',//价格 goods_price: 'rgba(252,82,39,1)',//价格
promotion_tag: '#CFAF70', promotion_tag: '#CFAF70',
goods_card_bg: '#201A18',//会员卡背景 goods_card_bg: '#201A18',//会员卡背景
@@ -255,38 +255,38 @@ export default {
goods_btn_color: '#CFAF70',//按钮颜色 goods_btn_color: '#CFAF70',//按钮颜色
goods_btn_color_shallow: '#444444',//副按钮颜色 goods_btn_color_shallow: '#444444',//副按钮颜色
}, },
pintuan: { ...{
pintuan_label_bg: '#F7B500', pintuan_label_bg: '#F7B500',
pintuan_label_color: '#FFFFFF', pintuan_label_color: '#FFFFFF',
pintuan_color: '#FA6400', pintuan_color: '#FA6400',
pintuan_promotion_color: '#FA3A1D',//活动背景 pintuan_promotion_color: '#FA3A1D',//活动背景
pintuan_promotion_aux_color: '#FD9A01',//活动背景辅色 pintuan_promotion_aux_color: '#FD9A01',//活动背景辅色
}, },
super_member: { ...{
super_member_start_bg: '#7c7878', super_member_start_bg: '#7c7878',
super_member_end_bg: '#201a18', super_member_end_bg: '#201a18',
super_member_start_text_color: '#FFDBA6', super_member_start_text_color: '#FFDBA6',
super_member_end_text_color: '#FFEBCA', super_member_end_text_color: '#FFEBCA',
}, },
bargain: { ...{
bargain_promotion_color: '#F0353E',//活动背景 bargain_promotion_color: '#F0353E',//活动背景
bargain_promotion_aux_color: '#FD9A01',//活动辅色 bargain_promotion_aux_color: '#FD9A01',//活动辅色
}, },
seckill: { ...{
seckill_promotion_color: '#F83530',//活动背景 seckill_promotion_color: '#F83530',//活动背景
seckill_promotion_aux_color: '#FD9A01',//活动辅色 seckill_promotion_aux_color: '#FD9A01',//活动辅色
}, },
giftcard: { ...{
giftcard_promotion_color: '#FF3369',//活动背景 giftcard_promotion_color: '#FF3369',//活动背景
giftcard_promotion_aux_color: '#F7B500',//活动辅色 giftcard_promotion_aux_color: '#F7B500',//活动辅色
}, },
groupby: { ...{
groupby_promotion_color: '#E64136',//活动背景 groupby_promotion_color: '#E64136',//活动背景
groupby_promotion_aux_color: '#F7B500',//活动辅色 groupby_promotion_aux_color: '#F7B500',//活动辅色
}, },
hoverNav: { ...{
hovenav_bg_color: '#CFAF70',//背景色 hover_nav_bg_color: '#CFAF70',//背景色
hovenav_text_color: '#FFFFFF' hover_nav_text_color: '#FFFFFF'
}, },
}, },
'purple': { 'purple': {
@@ -300,7 +300,7 @@ export default {
main_color_shallow: '#F8F3FF',//淡背景 main_color_shallow: '#F8F3FF',//淡背景
price_color: 'rgba(252,82,39,1)',//价格颜色 price_color: 'rgba(252,82,39,1)',//价格颜色
btn_text_color: '#FFFFFF',//按钮文字颜色 btn_text_color: '#FFFFFF',//按钮文字颜色
goods_detail: { ...{
goods_price: 'rgba(252,82,39,1)',//价格 goods_price: 'rgba(252,82,39,1)',//价格
promotion_tag: '#A253FF', promotion_tag: '#A253FF',
goods_card_bg: '#201A18',//会员卡背景 goods_card_bg: '#201A18',//会员卡背景
@@ -311,38 +311,38 @@ export default {
goods_btn_color: '#A253FF',//按钮颜色 goods_btn_color: '#A253FF',//按钮颜色
goods_btn_color_shallow: '#222222',//副按钮颜色 goods_btn_color_shallow: '#222222',//副按钮颜色
}, },
pintuan: { ...{
pintuan_label_bg: '#F7B500', pintuan_label_bg: '#F7B500',
pintuan_label_color: '#FFFFFF', pintuan_label_color: '#FFFFFF',
pintuan_color: '#FA6400', pintuan_color: '#FA6400',
pintuan_promotion_color: '#FA3A1D',//活动背景 pintuan_promotion_color: '#FA3A1D',//活动背景
pintuan_promotion_aux_color: '#FD9A01',//活动背景辅色 pintuan_promotion_aux_color: '#FD9A01',//活动背景辅色
}, },
super_member: { ...{
super_member_start_bg: '#7c7878', super_member_start_bg: '#7c7878',
super_member_end_bg: '#201a18', super_member_end_bg: '#201a18',
super_member_start_text_color: '#FFDBA6', super_member_start_text_color: '#FFDBA6',
super_member_end_text_color: '#FFEBCA', super_member_end_text_color: '#FFEBCA',
}, },
bargain: { ...{
bargain_promotion_color: '#F0353E',//活动背景 bargain_promotion_color: '#F0353E',//活动背景
bargain_promotion_aux_color: '#FD9A01',//活动辅色 bargain_promotion_aux_color: '#FD9A01',//活动辅色
}, },
seckill: { ...{
seckill_promotion_color: '#F83530',//活动背景 seckill_promotion_color: '#F83530',//活动背景
seckill_promotion_aux_color: '#FD9A01',//活动辅色 seckill_promotion_aux_color: '#FD9A01',//活动辅色
}, },
giftcard: { ...{
giftcard_promotion_color: '#FF3369',//活动背景 giftcard_promotion_color: '#FF3369',//活动背景
giftcard_promotion_aux_color: '#F7B500',//活动辅色 giftcard_promotion_aux_color: '#F7B500',//活动辅色
}, },
groupby: { ...{
groupby_promotion_color: '#E64136',//活动背景 groupby_promotion_color: '#E64136',//活动背景
groupby_promotion_aux_color: '#F7B500',//活动辅色 groupby_promotion_aux_color: '#F7B500',//活动辅色
}, },
hoverNav: { ...{
hovenav_bg_color: '#A253FF',//背景色 hover_nav_bg_color: '#A253FF',//背景色
hovenav_text_color: '#FFFFFF' hover_nav_text_color: '#FFFFFF'
}, },
}, },
'yellow': { 'yellow': {
@@ -356,7 +356,7 @@ export default {
main_color_shallow: '#FFFBEF',//淡背景 main_color_shallow: '#FFFBEF',//淡背景
price_color: 'rgba(252,82,39,1)',//价格颜色 price_color: 'rgba(252,82,39,1)',//价格颜色
btn_text_color: '#303133',//按钮文字颜色 btn_text_color: '#303133',//按钮文字颜色
goods_detail: { ...{
goods_price: 'rgba(252,82,39,1)',//价格 goods_price: 'rgba(252,82,39,1)',//价格
promotion_tag: '#FFD009', promotion_tag: '#FFD009',
goods_card_bg: '#201A18',//会员卡背景 goods_card_bg: '#201A18',//会员卡背景
@@ -367,38 +367,38 @@ export default {
goods_btn_color: '#FFD009',//按钮颜色 goods_btn_color: '#FFD009',//按钮颜色
goods_btn_color_shallow: '#1D262E',//副按钮颜色 goods_btn_color_shallow: '#1D262E',//副按钮颜色
}, },
pintuan: { ...{
pintuan_label_bg: '#F7B500', pintuan_label_bg: '#F7B500',
pintuan_label_color: '#FFFFFF', pintuan_label_color: '#FFFFFF',
pintuan_color: '#FA6400', pintuan_color: '#FA6400',
pintuan_promotion_color: '#FA3A1D',//活动背景 pintuan_promotion_color: '#FA3A1D',//活动背景
pintuan_promotion_aux_color: '#FD9A01',//活动背景辅色 pintuan_promotion_aux_color: '#FD9A01',//活动背景辅色
}, },
super_member: { ...{
super_member_start_bg: '#7c7878', super_member_start_bg: '#7c7878',
super_member_end_bg: '#201a18', super_member_end_bg: '#201a18',
super_member_start_text_color: '#FFDBA6', super_member_start_text_color: '#FFDBA6',
super_member_end_text_color: '#FFEBCA', super_member_end_text_color: '#FFEBCA',
}, },
bargain: { ...{
bargain_promotion_color: '#F0353E',//活动背景 bargain_promotion_color: '#F0353E',//活动背景
bargain_promotion_aux_color: '#FD9A01',//活动辅色 bargain_promotion_aux_color: '#FD9A01',//活动辅色
}, },
seckill: { ...{
seckill_promotion_color: '#F83530',//活动背景 seckill_promotion_color: '#F83530',//活动背景
seckill_promotion_aux_color: '#FD9A01',//活动辅色 seckill_promotion_aux_color: '#FD9A01',//活动辅色
}, },
giftcard: { ...{
giftcard_promotion_color: '#FF3369',//活动背景 giftcard_promotion_color: '#FF3369',//活动背景
giftcard_promotion_aux_color: '#F7B500',//活动辅色 giftcard_promotion_aux_color: '#F7B500',//活动辅色
}, },
groupby: { ...{
groupby_promotion_color: '#E64136',//活动背景 groupby_promotion_color: '#E64136',//活动背景
groupby_promotion_aux_color: '#F7B500',//活动辅色 groupby_promotion_aux_color: '#F7B500',//活动辅色
}, },
hoverNav: { ...{
hovenav_bg_color: '#FFD009',//背景色 hover_nav_bg_color: '#FFD009',//背景色
hovenav_text_color: '#303133' hover_nav_text_color: '#303133'
}, },
}, },
'black': { 'black': {
@@ -412,7 +412,7 @@ export default {
main_color_shallow: '#efefef',//淡背景 main_color_shallow: '#efefef',//淡背景
price_color: 'rgba(255,0,0,1)',//价格颜色 price_color: 'rgba(255,0,0,1)',//价格颜色
btn_text_color: '#FFFFFF',//按钮文字颜色 btn_text_color: '#FFFFFF',//按钮文字颜色
goods_detail: { ...{
goods_price: 'rgba(255,0,0,1)',//价格 goods_price: 'rgba(255,0,0,1)',//价格
promotion_tag: '#222222', promotion_tag: '#222222',
goods_card_bg: '#201A18',//会员卡背景 goods_card_bg: '#201A18',//会员卡背景
@@ -423,38 +423,38 @@ export default {
goods_btn_color: '#222222',//按钮颜色 goods_btn_color: '#222222',//按钮颜色
goods_btn_color_shallow: '#FA8B00',//副按钮颜色 goods_btn_color_shallow: '#FA8B00',//副按钮颜色
}, },
pintuan: { ...{
pintuan_label_bg: '#F7B500', pintuan_label_bg: '#F7B500',
pintuan_label_color: '#FFFFFF', pintuan_label_color: '#FFFFFF',
pintuan_color: '#FA6400', pintuan_color: '#FA6400',
pintuan_promotion_color: '#FA3A1D',//活动背景 pintuan_promotion_color: '#FA3A1D',//活动背景
pintuan_promotion_aux_color: '#FD9A01',//活动背景辅色 pintuan_promotion_aux_color: '#FD9A01',//活动背景辅色
}, },
super_member: { ...{
super_member_start_bg: '#fadcb5', super_member_start_bg: '#fadcb5',
super_member_end_bg: '#f6bd74', super_member_end_bg: '#f6bd74',
super_member_start_text_color: '#ab6126', super_member_start_text_color: '#ab6126',
super_member_end_text_color: '#d19336', super_member_end_text_color: '#d19336',
}, },
bargain: { ...{
bargain_promotion_color: '#F0353E',//活动背景 bargain_promotion_color: '#F0353E',//活动背景
bargain_promotion_aux_color: '#FD9A01',//活动辅色 bargain_promotion_aux_color: '#FD9A01',//活动辅色
}, },
seckill: { ...{
seckill_promotion_color: '#F83530',//活动背景 seckill_promotion_color: '#F83530',//活动背景
seckill_promotion_aux_color: '#FD9A01',//活动辅色 seckill_promotion_aux_color: '#FD9A01',//活动辅色
}, },
giftcard: { ...{
giftcard_promotion_color: '#FF3369',//活动背景 giftcard_promotion_color: '#FF3369',//活动背景
giftcard_promotion_aux_color: '#F7B500',//活动辅色 giftcard_promotion_aux_color: '#F7B500',//活动辅色
}, },
groupby: { ...{
groupby_promotion_color: '#E64136',//活动背景 groupby_promotion_color: '#E64136',//活动背景
groupby_promotion_aux_color: '#F7B500',//活动辅色 groupby_promotion_aux_color: '#F7B500',//活动辅色
}, },
hoverNav: { ...{
hovenav_bg_color: '#222222',//背景色 hover_nav_bg_color: '#222222',//背景色
hovenav_text_color: '#FFFFFF' hover_nav_text_color: '#FFFFFF'
}, },
} }
} }

View File

@@ -32,10 +32,28 @@ export const adaptSubpackageUrl = (url) => {
*/ */
// 定义前缀映射表 // 定义前缀映射表
const urlPrefixMap = { const urlPrefixMap = {
'/pages/promotion/': '/pages_promotion/',
'/pages/order/': '/pages_order/',
'/pages/goods/': '/pages_goods/', '/pages/goods/': '/pages_goods/',
'/pages/contact/': '/pages_tool/contact/', '/pages/contact/': '/pages_tool/contact/',
'/pages/member/': '/pages_tool/member/', '/pages/member/': '/pages_tool/member/',
'/pages/vr': '/pages_tool/vr/' '/pages/login/': '/pages_tool/login/',
'/pages/agreement/': '/pages_tool/agreement/',
'/pages/article/': '/pages_tool/article/',
'/pages/cases/': '/pages_tool/cases/',
'/pages/contact/': '/pages_tool/contact/',
'/pages/files/': '/pages_tool/files/',
'/pages/form/': '/pages_tool/form/',
'/pages/help/': '/pages_tool/help/',
'/pages/notice/': '/pages_tool/notice/',
'/pages/pay/': '/pages_tool/pay/',
'/pages/recharge/': '/pages_tool/recharge/',
'/pages/seal/': '/pages_tool/seal/',
'/pages/storeclose/': '/pages_tool/storeclose/',
'/pages/vr/': '/pages_tool/vr/',
'/pages/weapp/': '/pages_tool/weapp/',
'/pages/webview/': '/pages_tool/webview/',
}; };
// 构建正则表达式 // 构建正则表达式
@@ -518,7 +536,7 @@ export default {
* 检测苹果X以上的手机 * 检测苹果X以上的手机
*/ */
isIPhoneX() { isIPhoneX() {
let res = uni.getSystemInfoSync(); let res = this.getDeviceInfo();
if (res.model.search('iPhone X') != -1) { if (res.model.search('iPhone X') != -1) {
return true; return true;
} }
@@ -526,13 +544,33 @@ export default {
}, },
//判断安卓还是iOS //判断安卓还是iOS
isAndroid() { isAndroid() {
let platform = uni.getSystemInfoSync().platform let platform = this.getDeviceInfo().platform;
if (platform == 'ios') { if (platform == 'ios') {
return false; return false;
} else if (platform == 'android') { } else if (platform == 'android') {
return true; return true;
} }
}, },
/**
* 获取设备信息(包含降级处理)
*/
getDeviceInfo() {
try {
return uni.getDeviceInfo();
} catch (e) {
return uni.getSystemInfoSync();
}
},
/**
* 获取窗口信息(包含降级处理)
*/
getWindowInfo() {
try {
return uni.getWindowInfo();
} catch (e) {
return uni.getSystemInfoSync();
}
},
/** /**
* 深度拷贝对象 * 深度拷贝对象
* @param {Object} obj * @param {Object} obj
@@ -677,7 +715,7 @@ export default {
*/ */
uniappIsIPhoneX() { uniappIsIPhoneX() {
let isIphoneX = false; let isIphoneX = false;
let systemInfo = uni.getSystemInfoSync(); let systemInfo = this.getDeviceInfo();
// #ifdef MP // #ifdef MP
if (systemInfo.model.search('iPhone X') != -1 || systemInfo.model.search('iPhone 11') != -1 || systemInfo.model.search('iPhone 12') != -1 || systemInfo.model.search('iPhone 13') != -1) { if (systemInfo.model.search('iPhone X') != -1 || systemInfo.model.search('iPhone 11') != -1 || systemInfo.model.search('iPhone 12') != -1 || systemInfo.model.search('iPhone 13') != -1) {
isIphoneX = true; isIphoneX = true;
@@ -704,7 +742,7 @@ export default {
*/ */
uniappIsIPhone11() { uniappIsIPhone11() {
let isIphone11 = false; let isIphone11 = false;
let systemInfo = uni.getSystemInfoSync(); let systemInfo = this.getDeviceInfo();
// #ifdef MP // #ifdef MP
if (systemInfo.model.search('iPhone 11') != -1) { if (systemInfo.model.search('iPhone 11') != -1) {
isIphone11 = true; isIphone11 = true;
@@ -715,7 +753,7 @@ export default {
// #ifdef H5 // #ifdef H5
//判断该浏览器是否为safaria浏览器 //判断该浏览器是否为safaria浏览器
isSafari() { isSafari() {
let res = uni.getSystemInfoSync(); let res = this.getDeviceInfo();
var ua = navigator.userAgent.toLowerCase(); var ua = navigator.userAgent.toLowerCase();
if (ua.indexOf('applewebkit') > -1 && ua.indexOf('mobile') > -1 && ua.indexOf('safari') > -1 && if (ua.indexOf('applewebkit') > -1 && ua.indexOf('mobile') > -1 && ua.indexOf('safari') > -1 &&
ua.indexOf('linux') === -1 && ua.indexOf('android') === -1 && ua.indexOf('chrome') === -1 && ua.indexOf('linux') === -1 && ua.indexOf('android') === -1 && ua.indexOf('chrome') === -1 &&

View File

@@ -161,15 +161,11 @@ let menuButtonInfo = {};
menuButtonInfo = uni.getMenuButtonBoundingClientRect(); menuButtonInfo = uni.getMenuButtonBoundingClientRect();
// #endif // #endif
import nsGoodsSkuCategory from '@/components/ns-goods-sku/ns-goods-sku-category.vue';
import DiyMinx from './minx.js' import DiyMinx from './minx.js'
var contentWrapHeight, query, cartPosition; var contentWrapHeight, query, cartPosition;
// 商品分类 // 商品分类
export default { export default {
components: {
nsGoodsSkuCategory
},
name: 'diy-category', name: 'diy-category',
props: { props: {
value: { value: {

View File

@@ -38,16 +38,10 @@
</template> </template>
<script> <script>
import uvCountTo from '@/components/uv-count-to/uv-count-to.vue'
import nsLogin from '@/components/ns-login/ns-login.vue'
import DiyMinx from './minx.js' import DiyMinx from './minx.js'
// 自定义数字展示 // 自定义数字展示
export default { export default {
name: 'diy-digit', name: 'diy-digit',
components: {
uvCountTo,
nsLogin
},
props: { props: {
value: { value: {
type: Object, type: Object,

View File

@@ -19,8 +19,6 @@
<script> <script>
// 商品品牌 // 商品品牌
import uniGrid from '@/components/uni-grid/uni-grid.vue';
import uniGridItem from '@/components/uni-grid-item/uni-grid-item.vue';
import DiyMinx from './minx.js' import DiyMinx from './minx.js'
// 自定义商品品牌展示 // 自定义商品品牌展示
@@ -31,10 +29,6 @@ export default {
type: Object type: Object
} }
}, },
components: {
uniGrid,
uniGridItem
},
data() { data() {
return { return {
list: [], list: [],

View File

@@ -253,15 +253,12 @@
</template> </template>
<script> <script>
import nsGoodsSkuIndex from '@/components/ns-goods-sku/ns-goods-sku-index.vue';
import DiyMinx from './minx.js' import DiyMinx from './minx.js'
import util from '@/common/js/util.js'
// 自定义商品列表展示 // 自定义商品列表展示
export default { export default {
name: 'diy-goods-list', name: 'diy-goods-list',
components: {
nsGoodsSkuIndex
},
props: { props: {
value: { value: {
type: Object, type: Object,
@@ -331,7 +328,7 @@ export default {
if (this.goodsValue.ornament.type == 'stroke') { if (this.goodsValue.ornament.type == 'stroke') {
obj += 'border:' + '2rpx solid ' + this.goodsValue.ornament.color + ';'; obj += 'border:' + '2rpx solid ' + this.goodsValue.ornament.color + ';';
} }
const screenWidth = uni.getSystemInfoSync().windowWidth; let screenWidth = util.getWindowInfo().windowWidth;
if (this.value.template == 'horizontal-slide') { if (this.value.template == 'horizontal-slide') {
var width = ''; var width = '';
if (this.value.slideMode == 'scroll' && this.value.goodsMarginType == 'diy') width = this.rpxUpPx( if (this.value.slideMode == 'scroll' && this.value.goodsMarginType == 'diy') width = this.rpxUpPx(
@@ -411,7 +408,7 @@ export default {
} }
}, },
rpxUpPx(res) { rpxUpPx(res) {
const screenWidth = uni.getSystemInfoSync().windowWidth; const screenWidth = util.getWindowInfo().windowWidth;
var data = (screenWidth * parseInt(res)) / 750; var data = (screenWidth * parseInt(res)) / 750;
return Math.floor(data); return Math.floor(data);
}, },

View File

@@ -38,14 +38,11 @@
</template> </template>
<script> <script>
import nsLogin from '@/components/ns-login/ns-login.vue'
import DiyMinx from './minx.js' import DiyMinx from './minx.js'
export default { export default {
name: 'diy-image-nav', name: 'diy-image-nav',
components: {
nsLogin
},
props: { props: {
value: { value: {
type: Object, type: Object,

View File

@@ -169,8 +169,6 @@
</template> </template>
<script> <script>
import nsLoading from '@/components/ns-loading/ns-loading.vue';
import MescrollUni from "@/components/mescroll/my-list-mescroll.vue";
import DiyMinx from './minx.js' import DiyMinx from './minx.js'
export default { export default {
name: 'diy-index-page', name: 'diy-index-page',
@@ -190,10 +188,6 @@ export default {
} }
}, },
mixins: [DiyMinx], mixins: [DiyMinx],
components: {
nsLoading,
MescrollUni
},
data() { data() {
return { return {
pageIndex: 0, //当前选中分类id pageIndex: 0, //当前选中分类id

View File

@@ -243,7 +243,7 @@ let menuButtonInfo = {};
menuButtonInfo = uni.getMenuButtonBoundingClientRect(); menuButtonInfo = uni.getMenuButtonBoundingClientRect();
// #endif // #endif
// 自定义会员中心——会员信息展示 // 自定义会员中心——会员信息展示
import nsContact from '@/components/ns-contact/ns-contact.vue';
import DiyMinx from './minx.js' import DiyMinx from './minx.js'
export default { export default {
name: 'diy-member-info', name: 'diy-member-info',
@@ -259,9 +259,6 @@ export default {
} }
}, },
mixins: [DiyMinx], mixins: [DiyMinx],
components: {
nsContact
},
data() { data() {
return { return {
info: null, info: null,

View File

@@ -62,13 +62,10 @@
</template> </template>
<script> <script>
import uniPopup from '@/components/uni-popup/uni-popup.vue'
import DiyMinx from './minx.js' import DiyMinx from './minx.js'
export default { export default {
name: 'diy-video-list', name: 'diy-video-list',
components: {
uniPopup
},
props: { props: {
value: { value: {
type: Object, type: Object,

View File

@@ -357,14 +357,10 @@
</view> </view>
</template> </template>
<script> <script>
import nsLoading from '@/components/ns-loading/ns-loading.vue'
import aiService from '@/common/js/ai-service.js' import aiService from '@/common/js/ai-service.js'
export default { export default {
name: 'ai-chat-message', name: 'ai-chat-message',
components: {
nsLoading
},
props: { props: {
// 初始消息列表 // 初始消息列表
initialMessages: { initialMessages: {

View File

@@ -71,11 +71,7 @@
</template> </template>
<script> <script>
import nsChatGoods from '@/pages_tool/components/ns-chat/ns-chat-goods.vue';
import nsChatOrder from '@/pages_tool/components/ns-chat/ns-chat-order.vue';
import nsChatReceiveGoods from '@/pages_tool/components/ns-chat/ns-chat-receiveGoods.vue';
import htmlParser from '@/common/js/html-parser'; import htmlParser from '@/common/js/html-parser';
import uniPopup from '@/components/uni-popup/uni-popup.vue';
import emjoy from '@/common/js/emjoy.js'; import emjoy from '@/common/js/emjoy.js';
export default { export default {
@@ -98,12 +94,6 @@
currImg: '' currImg: ''
}; };
}, },
components: {
nsChatGoods,
nsChatOrder,
uniPopup,
nsChatReceiveGoods
},
mounted() { mounted() {
this.avatar = this.$util.img(this.siteInfo.logo_square); this.avatar = this.$util.img(this.siteInfo.logo_square);
this.myHeadImg = this.$util.img(this.memberInfo.headimg); this.myHeadImg = this.$util.img(this.memberInfo.headimg);

View File

@@ -636,30 +636,13 @@
<script> <script>
import payment from './payment.js'; import payment from './payment.js';
import nsSelectTime from '@/components/ns-select-time/ns-select-time.vue';
import MescrollUni from "@/components/mescroll/my-list-mescroll.vue";
import nsLogin from '@/components/ns-login/ns-login.vue';
import loadingCover from '@/components/loading-cover/loading-cover.vue';
import nsEmpty from '@/components/ns-empty/ns-empty.vue';
// #ifdef MP-WEIXIN
import privacyPopup from '@/components/wx-privacy-popup/privacy-popup.vue';
// #endif
export default { export default {
name: 'common-payment', name: 'common-payment',
data() { data() {
return {}; return {};
}, },
components: {
nsSelectTime,
nsLogin,
MescrollUni,
loadingCover,
nsEmpty,
// #ifdef MP-WEIXIN
privacyPopup
// #endif
},
props: { props: {
api: Object, api: Object,
createDataKey: String createDataKey: String

View File

@@ -420,12 +420,7 @@
<script> <script>
// 商品详情视图 // 商品详情视图
import uniPopup from '@/components/uni-popup/uni-popup.vue';
import nsGoodsRecommend from '@/components/ns-goods-recommend/ns-goods-recommend.vue';
import pengpaiFadeinOut from '@/components/pengpai-fadein-out/pengpai-fadein-out.vue';
import xiaoStarComponent from '@/components/xiao-star-component/xiao-star-component.vue';
import scroll from '@/common/js/scroll-view.js'; import scroll from '@/common/js/scroll-view.js';
import toTop from '@/components/toTop/toTop.vue';
import detail from './detail.js'; import detail from './detail.js';
export default { export default {
@@ -438,13 +433,6 @@
} }
} }
}, },
components: {
uniPopup,
nsGoodsRecommend,
pengpaiFadeinOut,
toTop,
xiaoStarComponent
},
mixins: [scroll, detail] mixins: [scroll, detail]
}; };
</script> </script>

View File

@@ -181,8 +181,6 @@ export default {
bottom: 320rpx; bottom: 320rpx;
// #endif // #endif
z-index: 10; z-index: 10;
// background: #fff;
// box-shadow: 2rpx 2rpx 22rpx rgba(0, 0, 0, 0.3);
border-radius: 120rpx; border-radius: 120rpx;
padding: 20rpx 0; padding: 20rpx 0;
display: flex; display: flex;
@@ -201,9 +199,8 @@ export default {
line-height: 1; line-height: 1;
margin: 14rpx 0; margin: 14rpx 0;
transition: 0.1s; transition: 0.1s;
background: #c6251b; background: var(--hover-nav-bg-color);
// background: var(--hover-nav-bg-color); color: var(--hover-nav-text-color);
color: #fff;
border-radius: 40rpx; border-radius: 40rpx;
width: 80rpx; width: 80rpx;
height: 80rpx; height: 80rpx;

View File

@@ -62,8 +62,6 @@
// 引入回到顶部组件 // 引入回到顶部组件
import MescrollTop from './components/mescroll-top.vue'; import MescrollTop from './components/mescroll-top.vue';
import nsLoading from '@/components/ns-loading/ns-loading.vue';
export default { export default {
name: 'mescroll-uni', name: 'mescroll-uni',
components: { components: {

View File

@@ -80,14 +80,10 @@
</template> </template>
<script> <script>
import uniPopup from '../uni-popup/uni-popup.vue';
// 注册奖励弹出层 // 注册奖励弹出层
export default { export default {
name: 'ns-birthday-gift', name: 'ns-birthday-gift',
components: {
uniPopup
},
data() { data() {
return { return {
birthday: { birthday: {

View File

@@ -200,12 +200,8 @@
</template> </template>
<script> <script>
import pickRegions from '@/components/pick-regions/pick-regions.vue';
export default { export default {
name: 'ns-form', name: 'ns-form',
components: {
pickRegions
},
props: { props: {
data: { data: {
type: Array, type: Array,

View File

@@ -20,7 +20,6 @@
</template> </template>
<script> <script>
import nsContact from '@/components/ns-contact/ns-contact.vue';
export default { export default {
name: 'ns-goods-action-icon', name: 'ns-goods-action-icon',
props: { props: {
@@ -72,9 +71,6 @@ export default {
} }
} }
}, },
components:{
nsContact
},
methods: { methods: {
clickEvent() { clickEvent() {
this.$emit('click'); this.$emit('click');

View File

@@ -3,16 +3,9 @@
</template> </template>
<script> <script>
import nsLoading from '@/components/ns-loading/ns-loading.vue';
import nsGoodsSkuIndex from '@/components/ns-goods-sku/ns-goods-sku-index.vue';
// 商品推荐 // 商品推荐
export default { export default {
name: 'ns-goods-recommend', name: 'ns-goods-recommend',
components: {
nsLoading,
nsGoodsSkuIndex
},
data() { data() {
return { return {
list: [], list: [],

View File

@@ -1,6 +1,6 @@
<template> <template>
<view class="goods-sku" @touchmove.prevent.stop> <view class="goods-sku" @touchmove.prevent.stop>
<uni-popup ref="skuPopup" :type="popupType"> <uni-popup-sku-category ref="skuPopup" :type="popupType">
<view class="sku-layer"> <view class="sku-layer">
<view class="sku-content"> <view class="sku-content">
<view class="sku-info" :style="{ height: systemInfo.windowHeight * 2 + 'rpx' }"> <view class="sku-info" :style="{ height: systemInfo.windowHeight * 2 + 'rpx' }">
@@ -9,7 +9,8 @@
<image :src="$util.img(goodsDetail.sku_image, { size: 'mid' })" @error="imageError()" /> <image :src="$util.img(goodsDetail.sku_image, { size: 'mid' })" @error="imageError()" />
</view> </view>
<view class="main"> <view class="main">
<view class="goodname">{{ goodsDetail.sku_name ? goodsDetail.sku_name : (isEnEnv ? goodsDetail.en_goods_name : goodsDetail.goods_name) }}</view> <view class="goodname">{{ goodsDetail.sku_name ? goodsDetail.sku_name : (isEnEnv ?
goodsDetail.en_goods_name : goodsDetail.goods_name) }}</view>
<view class="other-info"> <view class="other-info">
<view class="stock color-tip" v-if="goodsDetail.stock_show"> <view class="stock color-tip" v-if="goodsDetail.stock_show">
库存{{ goodsDetail.stock }}{{ goodsDetail.unit }}</view> 库存{{ goodsDetail.stock }}{{ goodsDetail.unit }}</view>
@@ -21,7 +22,8 @@
</view> </view>
<view class="body-item"> <view class="body-item">
<scroll-view scroll-y class="wrap"> <scroll-view scroll-y class="wrap">
<view class="sku-list-wrap" v-for="(item, index) in goodsDetail.goods_spec_format" :key="index"> <view class="sku-list-wrap" v-for="(item, index) in goodsDetail.goods_spec_format"
:key="index">
<text class="title font-size-tag">{{ item.spec_name }}</text> <text class="title font-size-tag">{{ item.spec_name }}</text>
<view class="sku-list_item"> <view class="sku-list_item">
<view v-for="(item_value, index_value) in item.value" :key="index_value" :class="{ <view v-for="(item_value, index_value) in item.value" :key="index_value" :class="{
@@ -29,7 +31,9 @@
disabled: item_value['disabled'] || (!item_value['selected'] && disabled) disabled: item_value['disabled'] || (!item_value['selected'] && disabled)
}" class="items color-line-border font-size-tag" }" class="items color-line-border font-size-tag"
@click="change(item_value.sku_id, item_value.spec_id)"> @click="change(item_value.sku_id, item_value.spec_id)">
<image v-if="item_value.image" :src="$util.img(item_value.image, { size: 'small' })" @error="valueImageError(index, index_value)" /> <image v-if="item_value.image"
:src="$util.img(item_value.image, { size: 'small' })"
@error="valueImageError(index, index_value)" />
<text>{{ item_value.spec_value_name }}</text> <text>{{ item_value.spec_value_name }}</text>
</view> </view>
</view> </view>
@@ -40,7 +44,8 @@
<view class="sku-name font-size-goods-tag"> <view class="sku-name font-size-goods-tag">
<template v-if="goodsDetail.sku_spec_format" class="color-tip"> <template v-if="goodsDetail.sku_spec_format" class="color-tip">
已选择 已选择
<text class="color-tip" v-for="(item, index) in goodsDetail.sku_spec_format" :key="index">{{ item.spec_value_name }}</text> <text class="color-tip" v-for="(item, index) in goodsDetail.sku_spec_format"
:key="index">{{ item.spec_value_name }}</text>
</template> </template>
</view> </view>
<view class="footer-bottom"> <view class="footer-bottom">
@@ -55,15 +60,19 @@
<text class="desc iconfont icon-jianshao color-base-text"></text> <text class="desc iconfont icon-jianshao color-base-text"></text>
<view class="click-event"></view> <view class="click-event"></view>
</view> </view>
<input type="number" class="uni-input" @blur="blur" v-model="number" placeholder="0" @input="keyInput(false)" /> <input type="number" class="uni-input" @blur="blur" v-model="number"
<view class="num-action" :id="'select-sku-num-' + goodsDetail.goods_id" @click="changeNum('+', $event)"> placeholder="0" @input="keyInput(false)" />
<text class="add iconfont icon-add-fill color-base-text change_hover"></text> <view class="num-action" :id="'select-sku-num-' + goodsDetail.goods_id"
@click="changeNum('+', $event)">
<text
class="add iconfont icon-add-fill color-base-text change_hover"></text>
<view class="click-event"></view> <view class="click-event"></view>
</view> </view>
</view> </view>
<view v-else-if="number == 0 && isLoad"> <view v-else-if="number == 0 && isLoad">
<view class="num-action"> <view class="num-action">
<button type="primary" v-if="goodsDetail.stock && goodsDetail.stock != 0" @click="confirm($event)">加入购物车</button> <button type="primary" v-if="goodsDetail.stock && goodsDetail.stock != 0"
@click="confirm($event)">加入购物车</button>
<button type="primary" disabled="true" v-else>确定</button> <button type="primary" disabled="true" v-else>确定</button>
<view class="click-event"></view> <view class="click-event"></view>
</view> </view>
@@ -75,20 +84,16 @@
</view> </view>
</view> </view>
<view class="sku-close iconfont icon-close-guanbi" @click="closeSkuPopup()"></view> <view class="sku-close iconfont icon-close-guanbi" @click="closeSkuPopup()"></view>
</uni-popup> </uni-popup-sku-category>
<ns-login ref="login"></ns-login> <ns-login ref="login"></ns-login>
</view> </view>
</template> </template>
<script> <script>
import uniPopup from '@/components/uni-popup/uni-popup-sku-new.vue';
// 商品SKU // 商品SKU
export default { export default {
name: 'ns-goods-sku-category', name: 'ns-goods-sku-category',
components: {
uniPopup
},
props: { props: {
disabled: { disabled: {
type: Boolean, type: Boolean,
@@ -119,7 +124,7 @@
}; };
}, },
created() { created() {
this.systemInfo = uni.getSystemInfoSync(); this.systemInfo = this.$util.getDeviceInfo();
}, },
watch: { watch: {
pointLimit(newNum, oldNum) { pointLimit(newNum, oldNum) {

View File

@@ -2,18 +2,16 @@
<view class="goods-sku"> <view class="goods-sku">
<ns-login ref="login"></ns-login> <ns-login ref="login"></ns-login>
<!-- sku选择 --> <!-- sku选择 -->
<ns-goods-sku v-if="goodsDetail.goods_id" ref="goodsSku" :goods-id="goodsDetail.goods_id" :goods-detail="goodsDetail" :max-buy="goodsDetail.max_buy" :min-buy="goodsDetail.min_buy" @refresh="refreshGoodsSkuDetail"></ns-goods-sku> <ns-goods-sku v-if="goodsDetail.goods_id" ref="goodsSku" :goods-id="goodsDetail.goods_id"
:goods-detail="goodsDetail" :max-buy="goodsDetail.max_buy" :min-buy="goodsDetail.min_buy"
@refresh="refreshGoodsSkuDetail"></ns-goods-sku>
</view> </view>
</template> </template>
<script> <script>
import nsGoodsSku from '@/components/ns-goods-sku/ns-goods-sku.vue';
// 商品SKU // 商品SKU
export default { export default {
name: 'ns-goods-sku-index', name: 'ns-goods-sku-index',
components: {
nsGoodsSku
},
data() { data() {
return { return {
timeout: {}, timeout: {},

View File

@@ -1,6 +1,6 @@
<template> <template>
<view class="goods-sku" @touchmove.prevent.stop> <view class="goods-sku" @touchmove.prevent.stop>
<uni-popup ref="skuPopup" type="bottom" class="sku-layer" @change="popclose"> <uni-popup-sku ref="skuPopup" type="bottom" class="sku-layer" @change="popclose">
<view class="sku-info" :style="{ height: skuHeight }"> <view class="sku-info" :style="{ height: skuHeight }">
<view class="header"> <view class="header">
<block v-if="type == 'point' && goodsDetail.type && goodsDetail.type != 1"> <block v-if="type == 'point' && goodsDetail.type && goodsDetail.type != 1">
@@ -208,19 +208,15 @@
<button type="primary" v-else disabled="true">该商品已下架</button> <button type="primary" v-else disabled="true">该商品已下架</button>
</view> </view>
</view> </view>
</uni-popup> </uni-popup-sku>
<ns-login ref="login"></ns-login> <ns-login ref="login"></ns-login>
</view> </view>
</template> </template>
<script> <script>
import uniPopup from '@/components/uni-popup/uni-popup-sku.vue';
// 商品SKU // 商品SKU
export default { export default {
name: 'ns-goods-sku', name: 'ns-goods-sku',
components: {
uniPopup
},
props: { props: {
goodsId: { goodsId: {
type: [Number, String], type: [Number, String],
@@ -270,7 +266,7 @@
}, },
created() { created() {
this.isIphoneX = this.$util.uniappIsIPhoneX(); this.isIphoneX = this.$util.uniappIsIPhoneX();
this.systemInfo = uni.getSystemInfoSync(); this.systemInfo = this.$util.getDeviceInfo();
this.isLoad = true; this.isLoad = true;
if (this.goodsId && this.goodsDetail.goods_spec_format) { if (this.goodsId && this.goodsDetail.goods_spec_format) {
this.skuId = this.goodsDetail.sku_id; this.skuId = this.goodsDetail.sku_id;

View File

@@ -2,7 +2,7 @@
<view> <view>
<!-- 完善会员资料 --> <!-- 完善会员资料 -->
<view @touchmove.prevent.stop class="complete-info-popup"> <view @touchmove.prevent.stop class="complete-info-popup">
<uni-popup ref="completeInfoPopup" type="bottom" :maskClick="false"> <uni-popup ref="completeInfoPopup" type="center" :maskClick="false">
<view class="complete-info-wrap"> <view class="complete-info-wrap">
<!-- #ifdef H5 --> <!-- #ifdef H5 -->
<template v-if="forceBindingMobileControl"> <template v-if="forceBindingMobileControl">
@@ -32,77 +32,108 @@
<!-- #ifdef MP --> <!-- #ifdef MP -->
<view class="head"> <view class="head">
<text class="title"> <text class="title">欢迎来到 {{ site_name }}</text>
获取您的昵称头像
<template v-if="forceBindingMobileControl">
手机号
</template>
</text>
<text class="color-tip tips"> <text class="color-tip tips">
获取用户头像昵称 <template>{{ forceBindingMobileControl ? '使用手机号登录,' : '注册登录,' }}</template>
<template v-if="forceBindingMobileControl"> 获得订单售后等服务
手机号
</template>
完善个人资料主要用于向用户提供具有辨识度的用户中心界面
</text> </text>
<text class="iconfont icon-close color-tip" @click="cancelCompleteInfo"></text> <text class="iconfont icon-close color-tip" @click="cancelCompleteInfo"></text>
</view> </view>
<!-- 协议勾选 -->
<view style="display: flex;">
<view
class="iconfont"
:class="isAgree ? 'icon-fuxuankuang1 color-base-text' : 'icon-fuxuankuang2'"
@click="isAgree = !isAgree"
></view>
<view style="text-align: left; margin-left: 10rpx; padding-top: 2rpx; font-size: 28rpx;">
我同意
<text style="color: #4395ff;" @click="tourl('/pages_tool/agreement/contenr?type=0')">隐私条款</text>
<text style="color: #4395ff;" @click="tourl('/pages_tool/agreement/contenr?type=1')">用户服务协议</text>
</view>
</view>
<!-- 手机号授权按钮 -->
<block v-if="isAgree">
<button
class="auth-login save-btn border-0"
style="border: none;"
open-type="getPhoneNumber"
@getphonenumber="getPhoneNumber"
>
<text style="color: #fff; font-size: 30rpx;">同意隐私协议并授权手机号</text>
</button>
</block>
<block v-else>
<button class="auth-login save-btn border-0" style="border: none;" @click="authno">
<text style="color: #fff; font-size: 30rpx;">授权手机号码</text>
</button>
</block>
<view @click="closeLogin" style="font-size: 30rpx; color: #888; text-align: center; padding-top: 10rpx;">
暂不登录
</view>
<!-- 昵称和头像模式 -->
<template v-if="enableNickAndAvatar">
<!-- #ifdef MP-WEIXIN --> <!-- #ifdef MP-WEIXIN -->
<view class="item-wrap"> <view class="item-wrap">
<text class="label">头像</text> <text class="label">头像</text>
<button open-type="chooseAvatar" @chooseavatar="onChooseAvatar"> <button open-type="chooseAvatar" @chooseavatar="onChooseAvatar">
<image :src="avatarUrl ? avatarUrl : $util.getDefaultImage().head" @error="avatarUrl = $util.getDefaultImage().head" mode="aspectFill"/> <image :src="avatarUrl ? avatarUrl : $util.getDefaultImage().head"
@error="avatarUrl = $util.getDefaultImage().head" mode="aspectFill" />
<text class="iconfont icon-right color-tip"></text> <text class="iconfont icon-right color-tip"></text>
</button> </button>
</view> </view>
<view class="item-wrap"> <view class="item-wrap">
<text class="label">昵称</text> <text class="label">昵称</text>
<input type="nickname" placeholder="请输入昵称" v-model="nickName" @blur="blurNickName" maxlength="50" /> <input type="nickname" placeholder="请输入昵称" v-model="nickName" @blur="blurNickName"
maxlength="50" />
</view> </view>
<!-- #endif --> <!-- #endif -->
<!-- #ifdef MP-ALIPAY --> <!-- #ifdef MP-ALIPAY -->
<view class="item-wrap"> <view class="item-wrap">
<text class="label">头像</text> <text class="label">头像</text>
<button open-type="getAuthorize" scope="userInfo" @getAuthorize="aliappGetUserinfo" :plain="true" class="border-0"> <button open-type="getAuthorize" scope="userInfo" @getAuthorize="aliappGetUserinfo"
<image :src="avatarUrl ? avatarUrl : $util.getDefaultImage().head" @error="avatarUrl = $util.getDefaultImage().head" mode="aspectFill"/> :plain="true" class="border-0">
<image :src="avatarUrl ? avatarUrl : $util.getDefaultImage().head"
@error="avatarUrl = $util.getDefaultImage().head" mode="aspectFill" />
<text class="iconfont icon-right color-tip"></text> <text class="iconfont icon-right color-tip"></text>
</button> </button>
</view> </view>
<view class="item-wrap"> <view class="item-wrap">
<text class="label">昵称</text> <text class="label">昵称</text>
<input type="nickname" placeholder="请输入昵称" v-model="nickName" @blur="blurNickName" maxlength="50" /> <input type="nickname" placeholder="请输入昵称" v-model="nickName" @blur="blurNickName"
maxlength="50" />
</view> </view>
<!-- #endif --> <!-- #endif -->
<view class="item-wrap" v-if="forceBindingMobileControl"> <view class="item-wrap" v-if="forceBindingMobileControl">
<text class="label">手机号</text> <text class="label">手机号</text>
<button open-type="getPhoneNumber" :plain="true" class="auth-login border-0" @getphonenumber="getPhoneNumber"> <button open-type="getPhoneNumber" :plain="true" class="auth-login border-0"
@getphonenumber="getPhoneNumber">
<text class="mobile" v-if="formData.mobile">{{ formData.mobile }}</text> <text class="mobile" v-if="formData.mobile">{{ formData.mobile }}</text>
<text class="color-base-text" v-else>获取手机号</text> <text class="color-base-text" v-else>获取手机号</text>
</button> </button>
</view> </view>
<button type="default" class="save-btn" @click="saveMp" :disabled="isDisabled">保存</button> <button type="default" class="save-btn" @click="saveMp" :disabled="isDisabled">保存</button>
</template>
<!-- #endif --> <!-- #endif -->
</view> </view>
</uni-popup> </uni-popup>
</view> </view>
<!-- #ifdef MP-WEIXIN --> <!-- 隐私弹窗 -->
<!-- 小程序隐私协议 -->
<privacy-popup ref="privacyPopup"></privacy-popup> <privacy-popup ref="privacyPopup"></privacy-popup>
<!-- #endif -->
<register-reward ref="registerReward"></register-reward> <register-reward ref="registerReward"></register-reward>
</view> </view>
</template> </template>
<script> <script>
import uniPopup from '@/components/uni-popup/uni-popup.vue';
import registerReward from '@/components/register-reward/register-reward.vue';
// #ifdef MP-WEIXIN
import privacyPopup from '@/components/wx-privacy-popup/privacy-popup.vue';
// #endif
import auth from '@/common/js/auth.js'; import auth from '@/common/js/auth.js';
import validate from '@/common/js/validate.js'; import validate from '@/common/js/validate.js';
@@ -110,15 +141,12 @@
export default { export default {
mixins: [auth], mixins: [auth],
name: 'ns-login', name: 'ns-login',
components: {
uniPopup,
registerReward,
// #ifdef MP-WEIXIN
privacyPopup
// #endif
},
data() { data() {
return { return {
// 是否开启昵称和头像
enableNickAndAvatar: false,
// 协议勾选
isAgree: false,
url: '', url: '',
registerConfig: {}, registerConfig: {},
avatarUrl: '', // 头像预览路径 avatarUrl: '', // 头像预览路径
@@ -148,7 +176,8 @@
authMobileData: { authMobileData: {
iv: '', iv: '',
encryptedData: '' encryptedData: ''
} },
site_name: ''
}; };
}, },
options: { options: {
@@ -178,13 +207,10 @@
if (this.formData.mobile.length == 0) return true; if (this.formData.mobile.length == 0) return true;
// #ifdef H5 // #ifdef H5
// 验证码 // 验证码
if (this.isOpenCaptcha == 1 && this.formData.vercode.length == 0) return true; if (this.isOpenCaptcha == 1 && this.formData.vercode.length == 0) return true;
// 动态码 // 动态码
if (this.formData.dynacode.length == 0) return true; if (this.formData.dynacode.length == 0) return true;
// #endif // #endif
} }
return false; return false;
@@ -195,7 +221,25 @@
else return false; else return false;
} }
}, },
created() {
const siteInfo = uni.getStorageSync('siteInfo');
if (siteInfo) {
this.site_name = siteInfo.site_name;
}
},
methods: { methods: {
// 同意协议
authno() {
if (!this.isAgree) {
this.$util.showToast({ title: '请确认相关协议' });
}
},
// 关闭登录
closeLogin() {
this.$refs.completeInfoPopup.close();
},
// 获取注册配置 // 获取注册配置
getRegisterConfig(callback = null) { getRegisterConfig(callback = null) {
this.$api.sendRequest({ this.$api.sendRequest({
@@ -208,6 +252,8 @@
} }
}); });
}, },
// 打开弹窗
open(url) { open(url) {
if (url) this.url = url; if (url) this.url = url;
// #ifdef MP // #ifdef MP
@@ -235,6 +281,7 @@
this.toLogin(); this.toLogin();
// #endif // #endif
}, },
// 跳转去登录页 // 跳转去登录页
toLogin() { toLogin() {
if (this.url) this.$util.redirectTo('/pages_tool/login/login', { if (this.url) this.$util.redirectTo('/pages_tool/login/login', {
@@ -242,13 +289,19 @@
}); });
else this.$util.redirectTo('/pages_tool/login/login'); else this.$util.redirectTo('/pages_tool/login/login');
}, },
// 取消完善信息
cancelCompleteInfo() { cancelCompleteInfo() {
if (this.$refs.completeInfoPopup) this.$refs.completeInfoPopup.close(); if (this.$refs.completeInfoPopup) this.$refs.completeInfoPopup.close();
this.$store.commit('setBottomNavHidden', false); // 显示底部导航 this.$store.commit('setBottomNavHidden', false); // 显示底部导航
}, },
// 昵称失焦
blurNickName(e) { blurNickName(e) {
if (e.detail.value) this.nickName = e.detail.value; if (e.detail.value) this.nickName = e.detail.value;
}, },
// 选择头像
onChooseAvatar(e) { onChooseAvatar(e) {
this.avatarUrl = e.detail.avatarUrl; this.avatarUrl = e.detail.avatarUrl;
uni.getFileSystemManager().readFile({ uni.getFileSystemManager().readFile({
@@ -256,7 +309,6 @@
encoding: 'base64', //编码格式 encoding: 'base64', //编码格式
success: res => { success: res => {
let base64 = 'data:image/jpeg;base64,' + res.data; //不加上这串字符,在页面无法显示的哦 let base64 = 'data:image/jpeg;base64,' + res.data; //不加上这串字符,在页面无法显示的哦
this.$api.uploadBase64({ this.$api.uploadBase64({
base64, base64,
success: res => { success: res => {
@@ -277,6 +329,8 @@
} }
}); });
}, },
// 打开完善信息弹窗
openCompleteInfoPop() { openCompleteInfoPop() {
this.getRegisterConfig(); this.getRegisterConfig();
@@ -289,6 +343,7 @@
}); });
this.$store.commit('setBottomNavHidden', true); //隐藏底部导航 this.$store.commit('setBottomNavHidden', true); //隐藏底部导航
}, },
// 获取前台登录验证码开关配置 // 获取前台登录验证码开关配置
getCaptchaConfig() { getCaptchaConfig() {
this.$api.sendRequest({ this.$api.sendRequest({
@@ -301,6 +356,7 @@
} }
}); });
}, },
// 获取验证码 // 获取验证码
getCaptcha() { getCaptcha() {
this.$api.sendRequest({ this.$api.sendRequest({
@@ -316,6 +372,7 @@
} }
}); });
}, },
// 发送手机动态码 // 发送手机动态码
sendMobileCode() { sendMobileCode() {
if (this.dynacodeData.seconds != 120 || this.dynacodeData.isSend) return; if (this.dynacodeData.seconds != 120 || this.dynacodeData.isSend) return;
@@ -377,6 +434,8 @@
} }
}); });
}, },
// 刷新动态码数据
refreshDynacodeData() { refreshDynacodeData() {
this.getCaptcha(); this.getCaptcha();
clearInterval(this.dynacodeData.timer); clearInterval(this.dynacodeData.timer);
@@ -387,6 +446,8 @@
isSend: false isSend: false
}; };
}, },
// 表单验证 // 表单验证
verify(data) { verify(data) {
let rule = [{ let rule = [{
@@ -421,6 +482,7 @@
return false; return false;
} }
}, },
// 微信公众号强制绑定手机号 // 微信公众号强制绑定手机号
forceBindMobile() { forceBindMobile() {
let authData = uni.getStorageSync('authInfo'); let authData = uni.getStorageSync('authInfo');
@@ -468,13 +530,16 @@
} }
}); });
}, },
// 微信小程序获取手机号 // 微信小程序获取手机号
getPhoneNumber(e) { getPhoneNumber(e) {
console.log(e) if (e.detail.errMsg === 'getPhoneNumber:ok') {
if (e.detail.errMsg == 'getPhoneNumber:ok') { const authInfo = uni.getStorageSync('authInfo');
let authData = uni.getStorageSync('authInfo'); if (authInfo) { Object.assign(this.authMobileData, authInfo, e.detail);
if (authData) Object.assign(this.authMobileData, authData, e.detail); }
if (uni.getStorageSync('source_member')) this.authMobileData.source_member = uni.getStorageSync('source_member'); if (uni.getStorageSync('source_member')) {
this.authMobileData.source_member = uni.getStorageSync('source_member');
}
this.$api.sendRequest({ this.$api.sendRequest({
url: '/api/tripartite/getPhoneNumber', url: '/api/tripartite/getPhoneNumber',
@@ -482,6 +547,9 @@
success: res => { success: res => {
if (res.code >= 0) { if (res.code >= 0) {
this.formData.mobile = res.data.mobile; this.formData.mobile = res.data.mobile;
if (!this.enableNickAndAvatar) { // 不开启昵称和头像绑定,直接保存手机号
this.saveMp();
}
} else { } else {
this.formData.mobile = ''; this.formData.mobile = '';
this.$util.showToast({ this.$util.showToast({
@@ -496,6 +564,7 @@
}) })
} }
}, },
// 微信小程序强制绑定手机号 // 微信小程序强制绑定手机号
bindMobile() { bindMobile() {
let data = this.authMobileData; let data = this.authMobileData;
@@ -527,9 +596,8 @@
} }
}); });
}, },
/**
* 授权登录 // 授权登录
*/
authLogin(data, type = 'authLogin') { authLogin(data, type = 'authLogin') {
uni.showLoading({ uni.showLoading({
title: '登录中' title: '登录中'
@@ -577,7 +645,8 @@
} }
}); });
}, },
// 微信公众号,强制绑定手机号,验证
// H5保存:微信公众号,强制绑定手机号,验证
saveH5() { saveH5() {
if (this.$util.isWeiXin() && this.forceBindingMobileControl) { if (this.$util.isWeiXin() && this.forceBindingMobileControl) {
let data = { let data = {
@@ -593,24 +662,35 @@
} }
this.forceBindMobile(); this.forceBindMobile();
}, },
// 微信小程序保存数据 // 微信小程序保存数据
saveMp() { saveMp() {
if (this.nickName.length == 0) { if (this.formData.mobile === '') {
this.$util.showToast({ this.$util.showToast({ title: '请授权您的手机号码' });
title: '请输入昵称'
});
return; return;
} }
let authData = uni.getStorageSync('authInfo');
if (authData) Object.assign(authData, { if (this.nickName.length == 0 && this.enableNickAndAvatar) {
this.$util.showToast({ title: '请输入昵称' });
return;
}
let authInfo = uni.getStorageSync('authInfo');
if (authInfo) {
Object.assign(authInfo, {
nickName: this.nickName, nickName: this.nickName,
avatarUrl: this.headImg avatarUrl: this.headImg
}); });
uni.setStorageSync('authInfo', authData); uni.setStorageSync('authInfo', authInfo);
}
if (this.forceBindingMobileControl) this.bindMobile(); if (this.forceBindingMobileControl) {
else this.authLogin(authData); this.bindMobile();
} else {
this.authLogin(authInfo);
}
}, },
// #ifdef MP-ALIPAY // #ifdef MP-ALIPAY
aliappGetUserinfo() { aliappGetUserinfo() {
my.getOpenUserInfo({ my.getOpenUserInfo({
@@ -652,6 +732,8 @@
}); });
}, },
// #endif // #endif
// 获取会员信息
getMemberInfo() { getMemberInfo() {
this.$api.sendRequest({ this.$api.sendRequest({
url: '/api/member/info', url: '/api/member/info',
@@ -662,12 +744,17 @@
} }
} }
}); });
},
// 跳转页面
tourl(url) {
this.$util.redirectTo(url);
} }
} }
}; };
</script> </script>
<style lang="scss"> <style lang="scss" scoped>
.complete-info-popup { .complete-info-popup {
.complete-info-wrap { .complete-info-wrap {
background: #fff; background: #fff;
@@ -675,16 +762,16 @@
.head { .head {
position: relative; position: relative;
border-bottom: 2rpx solid $color-line;
padding-bottom: 20rpx; padding-bottom: 20rpx;
text-align: center;
.title { .title {
font-size: $font-size-toolbar; font-size: 30rpx;
display: block; display: block;
} }
.tips { .tips {
font-size: $font-size-base; font-size: 28rpx;
display: block; display: block;
} }
@@ -697,19 +784,19 @@
height: 56rpx; height: 56rpx;
line-height: 56rpx; line-height: 56rpx;
text-align: right; text-align: right;
font-size: $font-size-toolbar; font-size: 32rpx;
font-weight: bold; font-weight: 700;
} }
} }
.item-wrap { .item-wrap {
border-bottom: 2rpx solid $color-line; border-bottom: 2rpx solid #eee;
display: flex; display: flex;
align-items: center; align-items: center;
padding: 16rpx 0; padding: 16rpx 0;
.label { .label {
font-size: $font-size-toolbar; font-size: 32rpx;
margin-right: 40rpx; margin-right: 40rpx;
width: 100rpx; width: 100rpx;
} }
@@ -723,7 +810,7 @@
text-align: left; text-align: left;
display: flex; display: flex;
align-items: center; align-items: center;
font-size: $font-size-toolbar; font-size: 32rpx;
border: none; border: none;
image { image {
@@ -732,27 +819,27 @@
border-radius: 10rpx; border-radius: 10rpx;
overflow: hidden; overflow: hidden;
} }
}
.iconfont { .iconfont {
flex: 1; flex: 1;
text-align: right; text-align: right;
font-size: $font-size-tag; font-size: 24rpx;
}
} }
input { input {
flex: 1; flex: 1;
height: 80rpx; height: 80rpx;
box-sizing: border-box; box-sizing: border-box;
font-size: $font-size-toolbar; font-size: 32rpx;
} }
.send { .send {
border: 2rpx solid $base-color; border: 2rpx solid var(--base-color);
height: 60rpx; height: 60rpx;
line-height: 60rpx; line-height: 60rpx;
border-radius: 60rpx; border-radius: 60rpx;
font-size: $font-size-tag; font-size: 24rpx;
text-align: center; text-align: center;
padding: 0 40rpx; padding: 0 40rpx;
} }
@@ -771,27 +858,27 @@
} }
.save-btn { .save-btn {
width: 280rpx; width: 100%;
height: 90rpx; height: 90rpx;
line-height: 90rpx; line-height: 90rpx;
background-color: #07c160; background-color: #07c160;
color: #fff; color: #fff;
margin: 40rpx auto 20rpx; margin: 40rpx auto 20rpx;
border-radius: 50rpx;
} }
} }
}
</style> &.reward-popup .uni-popup__wrapper-box {
<style scoped>
/deep/ .reward-popup .uni-popup__wrapper-box {
background: none !important; background: none !important;
max-width: unset !important; max-width: unset !important;
max-height: unset !important; max-height: unset !important;
overflow: unset !important; overflow: unset !important;
} }
.complete-info-popup /deep/ .uni-popup__wrapper.bottom, &.uni-popup__wrapper.bottom,
.complete-info-popup /deep/ .uni-popup__wrapper.bottom .uni-popup__wrapper-box { &.uni-popup__wrapper.bottom .uni-popup__wrapper-box {
border-top-left-radius: 30rpx !important; border-top-left-radius: 30rpx !important;
border-top-right-radius: 30rpx !important; border-top-right-radius: 30rpx !important;
} }
}
</style> </style>

View File

@@ -75,12 +75,8 @@
</template> </template>
<script> <script>
import uniPopup from '../uni-popup/uni-popup.vue';
export default { export default {
components: {
uniPopup
},
data() { data() {
return { return {
newgift: { newgift: {

View File

@@ -278,13 +278,8 @@
</template> </template>
<script> <script>
import pickRegions from '@/components/pick-regions/pick-regions.vue'
export default { export default {
name: 'ns-form', name: 'ns-form',
components: {
pickRegions
},
props: { props: {
data: { data: {
type: Array, type: Array,

View File

@@ -22,10 +22,12 @@
</view> </view>
<block v-if="payMoney > 0"> <block v-if="payMoney > 0">
<block v-if="payTypeList.length"> <block v-if="payTypeList.length">
<view class="payment-item" v-for="(item, index) in payTypeList" :key="index" @click="payIndex = index"> <view class="payment-item" v-for="(item, index) in payTypeList" :key="index"
@click="payIndex = index">
<view class="iconfont" :class="item.icon"></view> <view class="iconfont" :class="item.icon"></view>
<text class="name">{{ item.name }}</text> <text class="name">{{ item.name }}</text>
<text class="iconfont" :class="payIndex == index ? 'icon-yuan_checked color-base-text' : 'icon-checkboxblank'"></text> <text class="iconfont"
:class="payIndex == index ? 'icon-yuan_checked color-base-text' : 'icon-checkboxblank'"></text>
</view> </view>
</block> </block>
<block v-else> <block v-else>
@@ -43,8 +45,6 @@
<!-- 旧版支付组件 订单表不为order表 的订单支付时使用该组件 --> <!-- 旧版支付组件 订单表不为order表 的订单支付时使用该组件 -->
<script> <script>
import uniPopup from '@/components/uni-popup/uni-popup.vue';
import nsSwitch from '@/components/ns-switch/ns-switch.vue';
// #ifdef H5 // #ifdef H5
import { Weixin } from 'common/js/wx-jssdk.js'; import { Weixin } from 'common/js/wx-jssdk.js';
@@ -52,10 +52,6 @@
export default { export default {
name: 'ns-payment', name: 'ns-payment',
components: {
uniPopup,
nsSwitch
},
props: { props: {
balanceDeduct: { balanceDeduct: {
type: [Number, String], type: [Number, String],

View File

@@ -30,12 +30,8 @@
</template> </template>
<script> <script>
import uniPopup from '@/components/uni-popup/uni-popup.vue';
export default { export default {
name: "nsSelectTime", name: "nsSelectTime",
components: {
uniPopup
},
data() { data() {
return { return {
//选中日期的键值 //选中日期的键值

View File

@@ -43,9 +43,6 @@
<!-- 新版支付组件 订单表为order表 的订单支付时使用该组件 --> <!-- 新版支付组件 订单表为order表 的订单支付时使用该组件 -->
<script> <script>
import uniPopup from '@/components/uni-popup/uni-popup.vue';
import nsSwitch from '@/components/ns-switch/ns-switch.vue';
// #ifdef H5 // #ifdef H5
import { import {
Weixin Weixin
@@ -54,10 +51,6 @@
export default { export default {
name: 'payment', name: 'payment',
components: {
uniPopup,
nsSwitch
},
props: { props: {
// 是否可用余额支付 // 是否可用余额支付
balanceUsable: { balanceUsable: {

View File

@@ -1,4 +1,5 @@
<template> <template>
<!-- #ifdef MP -->
<view v-if="showPop"> <view v-if="showPop">
<view class="privacy-mask"> <view class="privacy-mask">
<view class="privacy-wrap"> <view class="privacy-wrap">
@@ -15,6 +16,10 @@
</view> </view>
</view> </view>
</view> </view>
<!-- #endif -->
<!-- #ifdef WEB || H5 -->
<view v-if="showPop"></view>
<!-- #endif -->
</template> </template>
<script> <script>

View File

@@ -78,14 +78,9 @@
</template> </template>
<script> <script>
import uniPopup from '@/components/uni-popup/uni-popup.vue';
// 注册奖励弹出层 // 注册奖励弹出层
export default { export default {
name: 'register-reward', name: 'register-reward',
components: {
uniPopup
},
data() { data() {
return { return {
reward: null, reward: null,

View File

@@ -1,10 +1,10 @@
@font-face {font-family: "iconfont"; @font-face {font-family: "iconfont";
src: url('~@/pages_tool/components/sx-rate/sx-rate/iconfont.eot?t=1574760464482'); /* IE9 */ src: url('~@/components/sx-rate/sx-rate/iconfont.eot?t=1574760464482'); /* IE9 */
src: url('~@/pages_tool/components/sx-rate/sx-rate/iconfont.eot?t=1574760464482#iefix') format('embedded-opentype'), /* IE6-IE8 */ src: url('~@/components/sx-rate/sx-rate/iconfont.eot?t=1574760464482#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('data:application/x-font-woff2;charset=utf-8;base64,d09GMgABAAAAAAK8AAsAAAAABnAAAAJwAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHEIGVgCCcAp8gQgBNgIkAwgLBgAEIAWEbQcuG6wFyA4lTcHACOEZBUg8fL/2O3f3fTHEkoh28SSayCSxkkgQG6Uz3UvYITu9Qr5K0Vh6Ij6f+8CXKzVBHDvWa6d0lSfK57mc3gQ6kGt8oBz3ojUG9QLqxYEU6B4YRVYqecPYBS7hMYG6QWF0dlOycoGxxFoViFuxkALGuYAksXRVKNccTOJdSTV7zbSAt/D78Y8XxmRKOavq5CZZAOK+7u2svLVode0TggR0vIQc84BEXNQmjugJxumpJ/SNAvsqD77ui8K3i71aBPvrrNIm6IfSe5K58ltNZ3BbU40Blkf9OmKsIW/Un1qddc4dcSma3ArIX7PPXdlxK5l2zJ+aD6TXnQqmu330wqpeWkYN/OnNm/0trU+YvqNR4UN99f+x/tApIFTfR7u39X4gKPnb9pOX5RAQB6DYyc/zOKCD4OUp6KiiPeqnapbAp56NdegrdhLo5wKq+3UG/0fWcyDpCsuWJVVWO5oZO29bXR0FwJ4uV2ONvTeTCVW9I1wVAylyVeNkYudR0rCOsqoN1M1JPd7QDdMTqYZZXQChwwYybT6Q63BIJvYSJX1eUNYReqi7CrsLGyZDbJqIEUWQAPLroJhWKhjHQUyj8mwkrJJROKsI+XyENeIw5LI4xXQqUiA8xxZNtZBHCAMZrJTDFPAcksmUUIWVEkQTlogQVQSbzdS9iUUr5cDUDgyhEIgAxFcHEqMpKTD+eMK09PlsiFAVGQpu6atJ5kMwDfHsEBcLpweZqlX06ruXVzSqCfEQBANiYEpyUAqYh8jIKEGq+nkSCI1gEY2IqURg28OYvlrW+nr5152AOsuUhV2fSy+EwgAAAA==') format('woff2'), url('data:application/x-font-woff2;charset=utf-8;base64,d09GMgABAAAAAAK8AAsAAAAABnAAAAJwAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHEIGVgCCcAp8gQgBNgIkAwgLBgAEIAWEbQcuG6wFyA4lTcHACOEZBUg8fL/2O3f3fTHEkoh28SSayCSxkkgQG6Uz3UvYITu9Qr5K0Vh6Ij6f+8CXKzVBHDvWa6d0lSfK57mc3gQ6kGt8oBz3ojUG9QLqxYEU6B4YRVYqecPYBS7hMYG6QWF0dlOycoGxxFoViFuxkALGuYAksXRVKNccTOJdSTV7zbSAt/D78Y8XxmRKOavq5CZZAOK+7u2svLVode0TggR0vIQc84BEXNQmjugJxumpJ/SNAvsqD77ui8K3i71aBPvrrNIm6IfSe5K58ltNZ3BbU40Blkf9OmKsIW/Un1qddc4dcSma3ArIX7PPXdlxK5l2zJ+aD6TXnQqmu330wqpeWkYN/OnNm/0trU+YvqNR4UN99f+x/tApIFTfR7u39X4gKPnb9pOX5RAQB6DYyc/zOKCD4OUp6KiiPeqnapbAp56NdegrdhLo5wKq+3UG/0fWcyDpCsuWJVVWO5oZO29bXR0FwJ4uV2ONvTeTCVW9I1wVAylyVeNkYudR0rCOsqoN1M1JPd7QDdMTqYZZXQChwwYybT6Q63BIJvYSJX1eUNYReqi7CrsLGyZDbJqIEUWQAPLroJhWKhjHQUyj8mwkrJJROKsI+XyENeIw5LI4xXQqUiA8xxZNtZBHCAMZrJTDFPAcksmUUIWVEkQTlogQVQSbzdS9iUUr5cDUDgyhEIgAxFcHEqMpKTD+eMK09PlsiFAVGQpu6atJ5kMwDfHsEBcLpweZqlX06ruXVzSqCfEQBANiYEpyUAqYh8jIKEGq+nkSCI1gEY2IqURg28OYvlrW+nr5152AOsuUhV2fSy+EwgAAAA==') format('woff2'),
url('~@/pages_tool/components/sx-rate/sx-rate/iconfont.woff?t=1574760464482') format('woff'), url('~@/components/sx-rate/sx-rate/iconfont.woff?t=1574760464482') format('woff'),
url('~@/pages_tool/components/sx-rate/sx-rate/iconfont.ttf?t=1574760464482') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+ */ url('~@/components/sx-rate/sx-rate/iconfont.ttf?t=1574760464482') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+ */
url('~@/pages_tool/components/sx-rate/sx-rate/iconfont.svg?t=1574760464482#iconfont') format('svg'); /* iOS 4.1- */ url('~@/components/sx-rate/sx-rate/iconfont.svg?t=1574760464482#iconfont') format('svg'); /* iOS 4.1- */
} }
.iconfont { .iconfont {

View File

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -0,0 +1,199 @@
# 微信小程序权限配置文档
## 1. 权限体系概述
微信小程序权限体系是微信为保护用户隐私和数据安全而设计的一套权限管理机制。小程序在使用某些功能时,需要向用户申请相应的权限,用户可以选择授权或拒绝。
## 2. 权限分类
微信小程序权限分为两大类:
### 2.1 需要单独申请的权限
这类权限需要通过 `wx.requestAuthorization` 或相关 API 向用户主动申请,用户会看到授权弹窗,必须明确同意后才能使用。
### 2.2 不需要单独申请的权限
这类权限不需要通过 API 主动申请,小程序在使用相关功能时会自动触发系统授权提示,或在某些场景下默认授权。
## 3. 详细权限列表
### 3.1 需要单独申请的权限
| 权限名称 | 权限标识 | 描述 | 使用场景 |
|---------|---------|------|----------|
| 地理位置 | `scope.userLocation` | 获取用户地理位置 | 地图定位、附近商家等 |
| 后台定位 | `scope.userLocationBackground` | 后台持续获取地理位置 | 外卖配送、打车等需要后台定位的场景 |
| 录音 | `scope.record` | 录制音频 | 语音消息、语音识别等 |
| 摄像头 | `scope.camera` | 使用摄像头 | 扫码、拍照、视频通话等 |
| 通讯地址 | `scope.address` | 获取用户通讯地址 | 填写收货地址等 |
| 发票抬头 | `scope.invoiceTitle` | 获取用户发票抬头 | 填写发票信息等 |
| 微信运动步数 | `scope.werun` | 获取微信运动步数 | 步数统计、运动排名等 |
| 保存到相册 | `scope.writePhotosAlbum` | 保存图片到相册 | 保存分享图片、截图等 |
| 添加到日历 | `scope.addPhoneCalendar` | 添加事件到日历 | 预约提醒、活动安排等 |
| 读取日历 | `scope.readPhoneCalendar` | 读取日历事件 | 日程管理、智能提醒等 |
### 3.2 不需要单独申请的权限
| 权限名称 | 权限标识 | 描述 | 使用场景 |
|---------|---------|------|----------|
| 剪贴板 | `scope.userClipboard` | 读写剪贴板 | 复制链接、粘贴内容等 |
| 选择地址 | `scope.chooseAddress` | 选择收货地址 | 下单时选择地址 |
| 选择发票 | `scope.chooseInvoice` | 选择发票 | 填写发票信息时选择 |
| 选择发票抬头 | `scope.chooseInvoiceTitle` | 选择发票抬头 | 填写发票信息时选择 |
| 获取网络状态 | - | 获取网络状态 | 网络请求、状态检测等 |
| 获取设备信息 | - | 获取设备型号、操作系统等 | 适配不同设备、统计分析等 |
| 获取窗口信息 | - | 获取窗口尺寸等 | 布局适配、响应式设计等 |
## 4. 权限申请流程
### 4.1 需要单独申请的权限
1.`manifest.json` 中配置权限描述
2. 在代码中调用相关 API 前,先检查是否已授权
3. 未授权时,调用 `wx.requestAuthorization` 申请权限
4. 根据用户授权结果执行相应操作
### 4.2 不需要单独申请的权限
1.`manifest.json` 中配置权限描述
2. 直接调用相关 API系统会自动处理授权逻辑
## 5. 权限配置示例
### 5.1 manifest.json 配置示例
```json
"mp-weixin": {
"appid": "wx29215aa1bd97bbd6",
"permission": {
"scope.userLocation": {
"desc": "为了更好地为您提供服务"
},
"scope.writePhotosAlbum": {
"desc": "为了更好地为您提供服务"
},
"scope.userClipboard": {
"desc": "为了方便您复制信息"
},
"scope.record": {
"desc": "用于语音录制功能"
},
"scope.camera": {
"desc": "用于拍摄照片或视频"
},
"scope.address": {
"desc": "用于获取您的通讯地址"
},
"scope.chooseAddress": {
"desc": "用于选择收货地址"
},
"scope.chooseInvoice": {
"desc": "用于选择发票"
},
"scope.chooseInvoiceTitle": {
"desc": "用于选择发票抬头"
}
},
"requiredPrivateInfos": ["chooseLocation", "getLocation", "chooseAddress"]
}
```
### 5.2 权限申请代码示例
```javascript
// 申请地理位置权限
wx.getSetting({
success: (res) => {
if (!res.authSetting['scope.userLocation']) {
wx.requestAuthorization({
scope: 'scope.userLocation',
success: (authRes) => {
if (authRes.authSetting['scope.userLocation']) {
// 用户授权成功,可以使用地理位置相关功能
wx.getLocation({
type: 'wgs84',
success: (locationRes) => {
console.log('获取位置成功', locationRes);
}
});
}
},
fail: (err) => {
console.log('授权失败', err);
}
});
} else {
// 已经授权,可以直接使用
wx.getLocation({
type: 'wgs84',
success: (locationRes) => {
console.log('获取位置成功', locationRes);
}
});
}
}
});
```
## 6. 注意事项和最佳实践
### 6.1 注意事项
1. **权限申请时机**:在真正需要使用权限时再申请,不要在小程序启动时就申请所有权限
2. **权限描述**:在 `manifest.json` 中为每个权限提供清晰、准确的描述,说明为什么需要该权限
3. **用户体验**:在申请权限前,先向用户解释为什么需要该权限,提高授权成功率
4. **权限拒绝处理**:当用户拒绝授权时,提供合理的降级方案,不要直接阻断用户操作
5. **隐私政策**:在小程序中提供隐私政策,说明如何使用用户数据
### 6.2 最佳实践
1. **按需申请**:只申请小程序真正需要的权限
2. **逐步申请**:根据用户使用流程,逐步申请所需权限
3. **合理降级**:当权限被拒绝时,提供替代方案
4. **定期检查**:定期检查权限使用情况,移除不再需要的权限
5. **权限管理**:在小程序设置中提供权限管理入口,方便用户查看和修改授权状态
## 7. 相关 API
### 7.1 权限相关 API
- `wx.getSetting`:获取用户当前的授权状态
- `wx.requestAuthorization`:请求用户授权
- `wx.openSetting`:打开设置页面,引导用户修改授权状态
### 7.2 常用功能 API
- `wx.getLocation`:获取用户地理位置
- `wx.chooseAddress`:选择收货地址
- `wx.chooseInvoice`:选择发票
- `wx.chooseInvoiceTitle`:选择发票抬头
- `wx.getRecorderManager`:获取录音管理器
- `wx.createCameraContext`:创建摄像头上下文
## 8. 常见问题
### 8.1 权限申请失败
- **原因**:用户拒绝授权、系统限制、权限配置错误
- **解决方法**:检查权限配置、提供合理的权限说明、引导用户在设置中开启权限
### 8.2 权限被禁用
- **原因**:用户在设置中关闭了权限
- **解决方法**:使用 `wx.openSetting` 引导用户重新开启权限
### 8.3 权限申请弹窗不显示
- **原因**:用户之前拒绝过授权且选择了"不再询问"
- **解决方法**:引导用户在设置中开启权限
## 9. 总结
合理配置和使用微信小程序权限,不仅可以保护用户隐私和数据安全,还能提升用户体验和小程序的可信度。开发者应该根据小程序的实际功能需求,按需申请权限,并为用户提供清晰、透明的权限使用说明。
---
**更新时间**2026-01-06
**适用微信版本**:最新版本
**参考文档**[微信小程序官方权限文档](https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/authorize.html)

View File

@@ -19,5 +19,12 @@ export const lang = {
currencySymbol: '¥', currencySymbol: '¥',
submit: '提交', submit: '提交',
searchTip: '请输入搜索关键词' searchTip: '请输入搜索关键词'
} },
waitpay: '待付款',
waitsend: '待发货',
waitconfirm: '待收货',
activist: '售后',
completed: '已完成',
} }

View File

@@ -72,6 +72,9 @@
}, },
"scope.writePhotosAlbum" : { "scope.writePhotosAlbum" : {
"desc" : "为了更好地为您提供服务" "desc" : "为了更好地为您提供服务"
},
"scope.userClipboard" : {
"desc" : "为了方便您复制信息"
} }
}, },
"requiredPrivateInfos" : [ "chooseLocation", "getLocation", "chooseAddress" ], "requiredPrivateInfos" : [ "chooseLocation", "getLocation", "chooseAddress" ],

57
package-lock.json generated
View File

@@ -1,11 +1,15 @@
{ {
"name": "uniappsaas", "name": "frontend",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"dependencies": {
"jweixin-module": "^1.6.0"
},
"devDependencies": { "devDependencies": {
"terser-webpack-plugin": "^5.3.10" "terser-webpack-plugin": "^5.3.10",
"zion-uniapp-mp-load-package": "^1.0.13"
} }
}, },
"node_modules/@jridgewell/gen-mapping": { "node_modules/@jridgewell/gen-mapping": {
@@ -619,6 +623,25 @@
"dev": true, "dev": true,
"license": "MIT" "license": "MIT"
}, },
"node_modules/json5": {
"version": "2.2.3",
"resolved": "https://registry.npmmirror.com/json5/-/json5-2.2.3.tgz",
"integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
"dev": true,
"license": "MIT",
"bin": {
"json5": "lib/cli.js"
},
"engines": {
"node": ">=6"
}
},
"node_modules/jweixin-module": {
"version": "1.6.0",
"resolved": "https://registry.npmmirror.com/jweixin-module/-/jweixin-module-1.6.0.tgz",
"integrity": "sha512-dGk9cf+ipipHmtzYmKZs5B2toX+p4hLyllGLF6xuC8t+B05oYxd8fYoaRz0T30U2n3RUv8a4iwvjhA+OcYz52w==",
"license": "ISC"
},
"node_modules/loader-runner": { "node_modules/loader-runner": {
"version": "4.3.0", "version": "4.3.0",
"resolved": "https://repo.huaweicloud.com/repository/npm/loader-runner/-/loader-runner-4.3.0.tgz", "resolved": "https://repo.huaweicloud.com/repository/npm/loader-runner/-/loader-runner-4.3.0.tgz",
@@ -981,6 +1004,16 @@
"engines": { "engines": {
"node": ">=10.13.0" "node": ">=10.13.0"
} }
},
"node_modules/zion-uniapp-mp-load-package": {
"version": "1.0.13",
"resolved": "https://registry.npmmirror.com/zion-uniapp-mp-load-package/-/zion-uniapp-mp-load-package-1.0.13.tgz",
"integrity": "sha512-QKJ6azXsJh9dVpjVS/48bGQELSI3FFtQ3QZic/Gs5z6v77BVjY7uGCXKxGuCwNwijtJnm8FRzlFGTVcQYU+wXA==",
"dev": true,
"license": "MIT",
"dependencies": {
"json5": "^2.2.3"
}
} }
}, },
"dependencies": { "dependencies": {
@@ -1456,6 +1489,17 @@
"integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
"dev": true "dev": true
}, },
"json5": {
"version": "2.2.3",
"resolved": "https://registry.npmmirror.com/json5/-/json5-2.2.3.tgz",
"integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
"dev": true
},
"jweixin-module": {
"version": "1.6.0",
"resolved": "https://registry.npmmirror.com/jweixin-module/-/jweixin-module-1.6.0.tgz",
"integrity": "sha512-dGk9cf+ipipHmtzYmKZs5B2toX+p4hLyllGLF6xuC8t+B05oYxd8fYoaRz0T30U2n3RUv8a4iwvjhA+OcYz52w=="
},
"loader-runner": { "loader-runner": {
"version": "4.3.0", "version": "4.3.0",
"resolved": "https://repo.huaweicloud.com/repository/npm/loader-runner/-/loader-runner-4.3.0.tgz", "resolved": "https://repo.huaweicloud.com/repository/npm/loader-runner/-/loader-runner-4.3.0.tgz",
@@ -1681,6 +1725,15 @@
"integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==",
"dev": true, "dev": true,
"peer": true "peer": true
},
"zion-uniapp-mp-load-package": {
"version": "1.0.13",
"resolved": "https://registry.npmmirror.com/zion-uniapp-mp-load-package/-/zion-uniapp-mp-load-package-1.0.13.tgz",
"integrity": "sha512-QKJ6azXsJh9dVpjVS/48bGQELSI3FFtQ3QZic/Gs5z6v77BVjY7uGCXKxGuCwNwijtJnm8FRzlFGTVcQYU+wXA==",
"dev": true,
"requires": {
"json5": "^2.2.3"
}
} }
} }
} }

View File

@@ -3,7 +3,8 @@
"mp-weixin": "node scripts/mp-weixin.patch.js" "mp-weixin": "node scripts/mp-weixin.patch.js"
}, },
"devDependencies": { "devDependencies": {
"terser-webpack-plugin": "^5.3.10" "terser-webpack-plugin": "^5.3.10",
"zion-uniapp-mp-load-package": "^1.0.13"
}, },
"dependencies": { "dependencies": {
"jweixin-module": "^1.6.0" "jweixin-module": "^1.6.0"

View File

@@ -953,6 +953,13 @@
"easycom": { "easycom": {
"autoscan": true, "autoscan": true,
"custom": { "custom": {
"x-skeleton": "@/uni_modules/x-skeleton/components/x-skeleton/x-skeleton.vue",
"mp-html": "@/uni_modules/mp-html/components/mp-html/mp-html.vue",
"uni-*(\\W.*)": "@/uni_modules/uni$1/components/uni$1/uni$1.vue",
"mescroll-uni": "@/components/mescroll/my-list-mescroll.vue",
"ns-goods-sku-*(\\W.*)": "@/components/ns-goods-sku/ns-goods-sku$1.vue",
"diy-*(\\W.*)": "@/components-diy/diy$1.vue" "diy-*(\\W.*)": "@/components-diy/diy$1.vue"
} }
}, },

View File

@@ -148,28 +148,13 @@
</template> </template>
<script> <script>
import uniPopup from '@/components/uni-popup/uni-popup.vue';
import nsNavbar from '@/components/ns-navbar/ns-navbar.vue';
import nsLogin from '@/components/ns-login/ns-login.vue';
// #ifdef MP-WEIXIN
import privacyPopup from '@/components/wx-privacy-popup/privacy-popup.vue';
// #endif
import diyJs from '@/common/js/diy.js';
import toTop from '@/components/toTop/toTop.vue';
import scroll from '@/common/js/scroll-view.js';
import diyJs from '@/common/js/diy.js';
import scroll from '@/common/js/scroll-view.js';
import indexJs from './public/js/index.js'; import indexJs from './public/js/index.js';
export default { export default {
components: {
uniPopup,
nsNavbar,
toTop,
nsLogin,
// #ifdef MP-WEIXIN
privacyPopup
// #endif
},
mixins: [diyJs, scroll, indexJs] mixins: [diyJs, scroll, indexJs]
}; };
</script> </script>

View File

@@ -1,7 +1,8 @@
<template> <template>
<view :style="themeColor"> <view :style="themeColor">
<view class="container"> <view class="container">
<scroll-view class="scroll-view" :scroll-y="true" :show-scrollbar="false" :refresher-enabled="true" :refresher-triggered="refresherTriggered" @refresherrefresh="onRefresh"> <scroll-view class="scroll-view" :scroll-y="true" :show-scrollbar="false" :refresher-enabled="true"
:refresher-triggered="refresherTriggered" @refresherrefresh="onRefresh">
<block v-if="hasData"> <block v-if="hasData">
<view class="cart-header" v-if="cartData.length"> <view class="cart-header" v-if="cartData.length">
<view class="num-wrap">{{ cartData[0].cartList.length }}种商品</view> <view class="num-wrap">{{ cartData[0].cartList.length }}种商品</view>
@@ -20,40 +21,51 @@
<text class="iconfont icon-right"></text> <text class="iconfont icon-right"></text>
</view> </view>
</view> </view>
<view class="store-wrap" v-if="globalStoreConfig && globalStoreConfig.store_business == 'store' && globalStoreInfo"> <view class="store-wrap"
v-if="globalStoreConfig && globalStoreConfig.store_business == 'store' && globalStoreInfo">
<text class="iconfont icon-dianpu"></text> <text class="iconfont icon-dianpu"></text>
<text class="name">{{ globalStoreInfo.store_name }}</text> <text class="name">{{ globalStoreInfo.store_name }}</text>
</view> </view>
<block v-for="(item, cartIndex) in siteItem.cartList" :key="cartIndex"> <block v-for="(item, cartIndex) in siteItem.cartList" :key="cartIndex">
<view class="cart-goods" @touchstart="touchS($event)" @touchend="touchE($event, item)"> <view class="cart-goods" @touchstart="touchS($event)" @touchend="touchE($event, item)">
<view class="goods-wrap" :class="{ edit: item.edit }"> <view class="goods-wrap" :class="{ edit: item.edit }">
<view class="iconfont" :class="item.checked ? 'icon-yuan_checked color-base-text' : 'icon-yuan_checkbox'" @click="singleElection(siteIndex, cartIndex)"></view> <view class="iconfont"
:class="item.checked ? 'icon-yuan_checked color-base-text' : 'icon-yuan_checkbox'"
@click="singleElection(siteIndex, cartIndex)"></view>
<view @click="toGoodsDetail(item)" class="goods-img"> <view @click="toGoodsDetail(item)" class="goods-img">
<image :src="$util.img(item.sku_image, { size: 'mid' })" @error="imageError(siteIndex, cartIndex)" mode="aspectFill"/> <image :src="$util.img(item.sku_image, { size: 'mid' })"
@error="imageError(siteIndex, cartIndex)" mode="aspectFill" />
</view> </view>
<view class="goods-info"> <view class="goods-info">
<view> <view>
<view @click="toGoodsDetail(item)" class="goods-name">{{ isEnEnv ? item.en_goods_name : item.goods_name }}</view> <view @click="toGoodsDetail(item)" class="goods-name">{{ isEnEnv ?
item.en_goods_name : item.goods_name }}</view>
<view class="sku-wrap"> <view class="sku-wrap">
<view class="sku"> <view class="sku">
<view class="goods-spec" v-if="item.sku_spec_format.length" @click="selectSku(item)"> <view class="goods-spec" v-if="item.sku_spec_format.length"
@click="selectSku(item)">
<block v-for="(x, i) in item.sku_spec_format" :key="i"> <block v-for="(x, i) in item.sku_spec_format" :key="i">
{{ x.spec_name }}:{{ x.spec_value_name }} {{ x.spec_name }}:{{ x.spec_value_name }}
{{ i < item.sku_spec_format.length - 1 ? ';' : '' }} {{ i < item.sku_spec_format.length - 1 ? ';' : '' }}
</block> </block>
</view> </view>
<text class="iconfont icon-unfold" v-if="item.sku_spec_format.length"></text> <text class="iconfont icon-unfold"
v-if="item.sku_spec_format.length"></text>
</view> </view>
</view> </view>
</view> </view>
<view class="goods-sub-section"> <view class="goods-sub-section">
<block v-if="item.promotion_type == 1"> <block v-if="item.promotion_type == 1">
<block v-if="Number(item.member_price) > 0 && Number(item.member_price) < Number(item.discount_price)"> <block
v-if="Number(item.member_price) > 0 && Number(item.member_price) < Number(item.discount_price)">
<view class="goods-price "> <view class="goods-price ">
<view class="bottom-price price-style large"> <view class="bottom-price price-style large">
<text class="unit price-style small">{{ $lang('common.currencySymbol') }}</text> <text class="unit price-style small">{{
$lang('common.currencySymbol') }}</text>
{{ parseFloat(item.member_price).toFixed(2).split('.')[0] }} {{ parseFloat(item.member_price).toFixed(2).split('.')[0] }}
<text class="unit price-style small">.{{ parseFloat(item.member_price).toFixed(2).split('.')[1] }}</text> <text class="unit price-style small">.{{
parseFloat(item.member_price).toFixed(2).split('.')[1]
}}</text>
<image :src="$util.img('public/uniapp/index/VIP.png')" /> <image :src="$util.img('public/uniapp/index/VIP.png')" />
</view> </view>
</view> </view>
@@ -61,10 +73,15 @@
<block v-else> <block v-else>
<view class="goods-price "> <view class="goods-price ">
<view class="bottom-price price-style large"> <view class="bottom-price price-style large">
<text class="unit price-style small">{{ $lang('common.currencySymbol') }}</text> <text class="unit price-style small">{{
{{ parseFloat(item.discount_price).toFixed(2).split('.')[0] }} $lang('common.currencySymbol') }}</text>
<text class="unit price-style small">.{{ parseFloat(item.discount_price).toFixed(2).split('.')[1] }}</text> {{ parseFloat(item.discount_price).toFixed(2).split('.')[0]
<image :src="$util.img('public/uniapp/index/discount.png')"/> }}
<text class="unit price-style small">.{{
parseFloat(item.discount_price).toFixed(2).split('.')[1]
}}</text>
<image
:src="$util.img('public/uniapp/index/discount.png')" />
</view> </view>
</view> </view>
</block> </block>
@@ -73,9 +90,12 @@
<block v-if="Number(item.member_price) > 0"> <block v-if="Number(item.member_price) > 0">
<view class="goods-price"> <view class="goods-price">
<view class="bottom-price price-style large"> <view class="bottom-price price-style large">
<text class="unit price-style small">{{ $lang('common.currencySymbol') }}</text> <text class="unit price-style small">{{
$lang('common.currencySymbol') }}</text>
{{ parseFloat(item.member_price).toFixed(2).split('.')[0] }} {{ parseFloat(item.member_price).toFixed(2).split('.')[0] }}
<text class="unit price-style small">.{{ parseFloat(item.member_price).toFixed(2).split('.')[1] }}</text> <text class="unit price-style small">.{{
parseFloat(item.member_price).toFixed(2).split('.')[1]
}}</text>
<image :src="$util.img('public/uniapp/index/VIP.png')" /> <image :src="$util.img('public/uniapp/index/VIP.png')" />
</view> </view>
</view> </view>
@@ -83,9 +103,12 @@
<block v-else> <block v-else>
<view class="goods-price"> <view class="goods-price">
<view class="bottom-price price-style large"> <view class="bottom-price price-style large">
<text class="unit price-style small">{{ $lang('common.currencySymbol') }}</text> <text class="unit price-style small">{{
$lang('common.currencySymbol') }}</text>
{{ parseFloat(item.price).toFixed(2).split('.')[0] }} {{ parseFloat(item.price).toFixed(2).split('.')[0] }}
<text class="unit price-style small">.{{ parseFloat(item.price).toFixed(2).split('.')[1] }}</text> <text class="unit price-style small">.{{
parseFloat(item.price).toFixed(2).split('.')[1]
}}</text>
</view> </view>
</view> </view>
</block> </block>
@@ -100,14 +123,16 @@
<text class="discount-tag">满减</text> <text class="discount-tag">满减</text>
<scroll-view scroll-x="true" class="scroll-view"> <scroll-view scroll-x="true" class="scroll-view">
<block v-for="(mitem, key) in manjian['sku_' + item.sku_id]" :key="key"> <block v-for="(mitem, key) in manjian['sku_' + item.sku_id]" :key="key">
<text v-if="mitem.discount_money">{{ Number(mitem.limit) }}{{ mitem.discount_money }}</text> <text v-if="mitem.discount_money">{{ Number(mitem.limit) }}{{
mitem.discount_money }}</text>
<text class="interval" v-if="mitem.discount_money"></text> <text class="interval" v-if="mitem.discount_money"></text>
</block> </block>
</scroll-view> </scroll-view>
</view> </view>
</view> </view>
</view> </view>
<view class="item-del color-base-bg" :class="{ show: item.edit }" @click="deleteCart('single', siteIndex, cartIndex)">{{ $lang('del') }}</view> <view class="item-del color-base-bg" :class="{ show: item.edit }"
@click="deleteCart('single', siteIndex, cartIndex)">{{ $lang('del') }}</view>
</view> </view>
</block> </block>
</view> </view>
@@ -124,7 +149,8 @@
<view class="goods-wrap"> <view class="goods-wrap">
<view class="iconfont icon-yuan_checked color-tip"></view> <view class="iconfont icon-yuan_checked color-tip"></view>
<view class="goods-img"> <view class="goods-img">
<image :src="$util.img(goodsItem.sku_image, { size: 'mid' })" mode="aspectFill"/> <image :src="$util.img(goodsItem.sku_image, { size: 'mid' })"
mode="aspectFill" />
</view> </view>
<view class="goods-info"> <view class="goods-info">
<view class="goods-name">{{ goodsItem.sku_name }}</view> <view class="goods-name">{{ goodsItem.sku_name }}</view>
@@ -141,16 +167,25 @@
<view class="goods-sub-section"> <view class="goods-sub-section">
<view class="goods-price"> <view class="goods-price">
<text class="bottom-price price-style large"> <text class="bottom-price price-style large">
<template v-if="goodsItem.member_price > 0 && goodsItem.member_price < goodsItem.discount_price"> <template
<text class="unit price-style small">{{ $lang('common.currencySymbol') }}</text> v-if="goodsItem.member_price > 0 && goodsItem.member_price < goodsItem.discount_price">
{{ parseFloat(goodsItem.member_price).toFixed(2).split('.')[0] }} <text class="unit price-style small">{{
<text class="unit price-style small">.{{ parseFloat(goodsItem.member_price).toFixed(2).split('.')[1] }}</text> $lang('common.currencySymbol') }}</text>
{{ parseFloat(goodsItem.member_price).toFixed(2).split('.')[0]
}}
<text class="unit price-style small">.{{
parseFloat(goodsItem.member_price).toFixed(2).split('.')[1]
}}</text>
<image :src="$util.img('public/uniapp/index/VIP.png')" /> <image :src="$util.img('public/uniapp/index/VIP.png')" />
</template> </template>
<template v-else> <template v-else>
<text class="unit price-style small">{{ $lang('common.currencySymbol') }}</text> <text class="unit price-style small">{{
{{ parseFloat(goodsItem.discount_price).toFixed(2).split('.')[0] }} $lang('common.currencySymbol') }}</text>
<text class="unit price-style small">.{{ parseFloat(goodsItem.discount_price).toFixed(2).split('.')[1] }}</text> {{ parseFloat(goodsItem.discount_price).toFixed(2).split('.')[0]
}}
<text class="unit price-style small">.{{
parseFloat(goodsItem.discount_price).toFixed(2).split('.')[1]
}}</text>
</template> </template>
</text> </text>
</view> </view>
@@ -165,7 +200,8 @@
<block v-else> <block v-else>
<view class="cart-empty"> <view class="cart-empty">
<ns-empty text="购物车为空" subText="赶紧去逛逛, 购买心仪的商品吧" :isIndex="Boolean(storeToken)"></ns-empty> <ns-empty text="购物车为空" subText="赶紧去逛逛, 购买心仪的商品吧" :isIndex="Boolean(storeToken)"></ns-empty>
<button type="primary" size="mini" class="button mini" v-if="!storeToken" @click="toLogin">去登录</button> <button type="primary" size="mini" class="button mini" v-if="!storeToken"
@click="toLogin">去登录</button>
</view> </view>
</block> </block>
<ns-goods-recommend ref="goodrecommend" route="cart"></ns-goods-recommend> <ns-goods-recommend ref="goodrecommend" route="cart"></ns-goods-recommend>
@@ -213,9 +249,11 @@
</view> </view>
<view class="popup-body" :class="{ 'safe-area': isIphoneX }" @click="$refs.couponPopup.close()"> <view class="popup-body" :class="{ 'safe-area': isIphoneX }" @click="$refs.couponPopup.close()">
<view class="coupon-item"> <view class="coupon-item">
<view class="coupon-info" :style="{ backgroundColor: discount.coupon_info.receive_type != 'wait' ? '#F2F2F2' : 'var(--main-color-shallow)' }"> <view class="coupon-info"
:style="{ backgroundColor: discount.coupon_info.receive_type != 'wait' ? '#F2F2F2' : 'var(--main-color-shallow)' }">
<view class="info-wrap"> <view class="info-wrap">
<image class="coupon-line" mode="heightFix" :src="$util.img('public/uniapp/coupon/coupon_line.png')"/> <image class="coupon-line" mode="heightFix"
:src="$util.img('public/uniapp/coupon/coupon_line.png')" />
<view class="coupon-money"> <view class="coupon-money">
<template v-if="discount.coupon_info.type == 'reward'"> <template v-if="discount.coupon_info.type == 'reward'">
<text class="unit">{{ $lang('common.currencySymbol') }}</text> <text class="unit">{{ $lang('common.currencySymbol') }}</text>
@@ -237,20 +275,26 @@
</view> </view>
<view class="desc-wrap"> <view class="desc-wrap">
<view class="coupon-name">{{ discount.coupon_info.coupon_name }}</view> <view class="coupon-name">{{ discount.coupon_info.coupon_name }}</view>
<view v-if="discount.coupon_info.type == 'discount' && discount.coupon_info.discount_limit > 0" class="limit"> <view
v-if="discount.coupon_info.type == 'discount' && discount.coupon_info.discount_limit > 0"
class="limit">
最多可抵{{ discount.coupon_info.discount_limit }} 最多可抵{{ discount.coupon_info.discount_limit }}
</view> </view>
<view class="time font-size-goods-tag" v-if="discount.coupon_info.validity_type == 0"> <view class="time font-size-goods-tag"
v-if="discount.coupon_info.validity_type == 0">
有效期{{ $util.timeStampTurnTime(discount.coupon_info.end_time) }} 有效期{{ $util.timeStampTurnTime(discount.coupon_info.end_time) }}
</view> </view>
<view class="time font-size-goods-tag" v-else-if="discount.coupon_info.validity_type == 1"> <view class="time font-size-goods-tag"
v-else-if="discount.coupon_info.validity_type == 1">
有效期领取之日起{{ discount.coupon_info.fixed_term }}天内有效 有效期领取之日起{{ discount.coupon_info.fixed_term }}天内有效
</view> </view>
<view class="time font-size-goods-tag" v-else>有效期长期有效</view> <view class="time font-size-goods-tag" v-else>有效期长期有效</view>
</view> </view>
<button type="primary" v-if="discount.coupon_info.receive_type != 'wait'" disabled>已领取</button> <button type="primary" v-if="discount.coupon_info.receive_type != 'wait'"
<button type="primary" v-else @click.stop="receiveCoupon(discount.coupon_info.coupon_type_id)">领取</button> disabled>领取</button>
<button type="primary" v-else
@click.stop="receiveCoupon(discount.coupon_info.coupon_type_id)">领取</button>
</view> </view>
</view> </view>
</view> </view>
@@ -262,7 +306,8 @@
<view class="cart-bottom" :style="{ bottom: tabBarHeight }" :class="{ active: isIphoneX }" v-if="hasData"> <view class="cart-bottom" :style="{ bottom: tabBarHeight }" :class="{ active: isIphoneX }" v-if="hasData">
<view class="all-election" @click="allElection"> <view class="all-election" @click="allElection">
<view class="iconfont" :class="checkAll ? 'icon-yuan_checked color-base-text' : 'icon-yuan_checkbox'"></view> <view class="iconfont" :class="checkAll ? 'icon-yuan_checked color-base-text' : 'icon-yuan_checkbox'">
</view>
<text>{{ $lang('allElection') }}</text> <text>{{ $lang('allElection') }}</text>
</view> </view>
<view class="settlement-info" :style="{ visibility: isAction ? 'hidden' : 'visible' }"> <view class="settlement-info" :style="{ visibility: isAction ? 'hidden' : 'visible' }">
@@ -270,8 +315,10 @@
{{ $lang('total') }} {{ $lang('total') }}
<text class="unit price-font">{{ $lang('common.currencySymbol') }}</text> <text class="unit price-font">{{ $lang('common.currencySymbol') }}</text>
<block v-if="Object.keys(discount).length"> <block v-if="Object.keys(discount).length">
<text class="value price-font">{{ parseFloat(discount.order_money).toFixed(2).split('.')[0] }}</text> <text class="value price-font">{{ parseFloat(discount.order_money).toFixed(2).split('.')[0]
<text class="unit price-font">.{{ parseFloat(discount.order_money).toFixed(2).split('.')[1] }}</text> }}</text>
<text class="unit price-font">.{{ parseFloat(discount.order_money).toFixed(2).split('.')[1]
}}</text>
</block> </block>
<block v-else> <block v-else>
<text class="value price-font">{{ parseFloat(totalPrice).toFixed(2).split('.')[0] }}</text> <text class="value price-font">{{ parseFloat(totalPrice).toFixed(2).split('.')[0] }}</text>
@@ -288,16 +335,20 @@
</view> </view>
<view class="action-btn" v-else> <view class="action-btn" v-else>
<button type="primary" size="mini" class="mini" @click="settlement" v-if="totalCount != 0"> <button type="primary" size="mini" class="mini" @click="settlement" v-if="totalCount != 0">
{{ discount.coupon_info && discount.coupon_info.receive_type == 'wait' ? '领券' : '立即' }}结算({{ totalCount }}) {{ discount.coupon_info && discount.coupon_info.receive_type == 'wait' ? '领券' : '立即' }}结算({{
totalCount }})
</button> </button>
<button type="primary" size="mini" class="mini" @click="settlement" disabled <button type="primary" size="mini" class="mini" @click="settlement" disabled v-else>{{
v-else>{{ $lang('settlement') }}({{ totalCount }})</button> $lang('settlement') }}({{
totalCount }})</button>
</view> </view>
</view> </view>
<diy-bottom-nav></diy-bottom-nav> <diy-bottom-nav></diy-bottom-nav>
<ns-goods-sku ref="selectSku" v-if="goodsSkuDetail" :goods-detail="goodsSkuDetail" :goods-id="goodsSkuDetail.goods_id" :max-buy="goodsSkuDetail.max_buy" :min-buy="goodsSkuDetail.min_buy" @refresh="refreshSkuDetail"></ns-goods-sku> <ns-goods-sku ref="selectSku" v-if="goodsSkuDetail" :goods-detail="goodsSkuDetail"
:goods-id="goodsSkuDetail.goods_id" :max-buy="goodsSkuDetail.max_buy" :min-buy="goodsSkuDetail.min_buy"
@refresh="refreshSkuDetail"></ns-goods-sku>
<!-- 加载动画 --> <!-- 加载动画 -->
<loading-cover ref="loadingCover"></loading-cover> <loading-cover ref="loadingCover"></loading-cover>
@@ -307,38 +358,16 @@
<ns-login ref="login"></ns-login> <ns-login ref="login"></ns-login>
<!-- #ifdef MP-WEIXIN --> <!-- 隐私弹窗 -->
<!-- 小程序隐私协议 -->
<privacy-popup ref="privacyPopup"></privacy-popup> <privacy-popup ref="privacyPopup"></privacy-popup>
<!-- #endif -->
</view> </view>
</template> </template>
<script> <script>
import nsGoodsRecommend from '@/components/ns-goods-recommend/ns-goods-recommend.vue';
import uniNumberBox from '@/components/uni-number-box/uni-number-box.vue';
import toTop from '@/components/toTop/toTop.vue';
import nsEmpty from '@/components/ns-empty/ns-empty.vue';
import nsLogin from '@/components/ns-login/ns-login.vue';
import loadingCover from '@/components/loading-cover/loading-cover.vue';
import scroll from '@/common/js/scroll-view.js'; import scroll from '@/common/js/scroll-view.js';
import cart from './public/js/cart.js'; import cart from './public/js/cart.js';
// #ifdef MP-WEIXIN
import privacyPopup from '@/components/wx-privacy-popup/privacy-popup.vue';
// #endif
export default { export default {
components: {
nsGoodsRecommend,
uniNumberBox,
toTop,
nsEmpty,
nsLogin,
loadingCover,
// #ifdef MP-WEIXIN
privacyPopup
// #endif
},
mixins: [scroll, cart] mixins: [scroll, cart]
}; };
</script> </script>

View File

@@ -12,10 +12,8 @@
<loading-cover ref="loadingCover"></loading-cover> <loading-cover ref="loadingCover"></loading-cover>
<!-- #ifdef MP-WEIXIN --> <!-- 隐私弹窗 -->
<!-- 小程序隐私协议 -->
<privacy-popup ref="privacyPopup"></privacy-popup> <privacy-popup ref="privacyPopup"></privacy-popup>
<!-- #endif -->
<!-- 底部tabBar --> <!-- 底部tabBar -->
<view id="tab-bar"> <view id="tab-bar">
@@ -25,19 +23,7 @@
</template> </template>
<script> <script>
import nsLogin from '@/components/ns-login/ns-login.vue';
import loadingCover from '@/components/loading-cover/loading-cover.vue';
// #ifdef MP-WEIXIN
import privacyPopup from '@/components/wx-privacy-popup/privacy-popup.vue';
// #endif
export default { export default {
components: {
nsLogin,
loadingCover,
// #ifdef MP-WEIXIN
privacyPopup
// #endif
},
data() { data() {
return { return {
diyData: null diyData: null

View File

@@ -1,465 +0,0 @@
// 商品详情业务
import {
Weixin
} from '@/common/js/wx-jssdk.js';
export default {
data() {
return {
skuId: 0,
goodsId: 0,
isIphoneX: false, //判断手机是否是iphoneX以上
whetherCollection: 0,
//是否开启预览0不开启1开启
preview: 0,
videoContext: '',
// 媒体,图片,视频
// 解决每个商品SKU图片数量不同时无法切换到第一个导致轮播图显示不出来
swiperInterval: 1,
swiperAutoplay: false,
swiperCurrent: 1,
switchMedia: 'img',
//评价
goodsEvaluate: [{
member_headimg: '',
member_name: '',
content: '',
images: [],
create_time: 0,
sku_name: ''
}],
evaluateConfig: {
evaluate_audit: 1,
evaluate_show: 0,
evaluate_status: 1
},
// 是否可分享到好物圈
goodsCircle: false,
service: null,
shareUrl: '', // 分享链接
source_member: 0, //分享人的id
isCommunity: false, //社群弹窗
poster: "-1", //海报
posterMsg: "", //海报错误信息
posterHeight: 0,
posterParams: {}, //海报所需参数
goodsRoute: '',
posterApi: '',
goodsAttrShow: false, // 商品属性是否展开
//门店列表
storeList: {
data: [],
page: 1,
page_size: 10
},
isShowStore: false,
latitude: null, // 纬度
longitude: null, // 经度
evaluateCount: 0, // 商品评论数量
deliveryType: null, // 配送方式
isVirtual: 0 //是否为虚拟商品
}
},
created() {
this.isIphoneX = this.$util.uniappIsIPhoneX();
if (this.location) {
this.latitude = this.location.latitude;
this.longitude = this.location.longitude;
} else {
this.$util.getLocation();
}
this.getStoreData();
},
watch: {
location: function (nVal) {
if (nVal) {
this.latitude = nVal.latitude;
this.longitude = nVal.longitude;
this.getStoreData();
}
}
},
methods: {
init(params) {
this.skuId = params.sku_id;
this.goodsId = params.goods_id;
this.preview = params.preview;
this.source_member = params.source_member;
this.whetherCollection = params.whetherCollection;
this.posterParams = params.posterParams;
this.shareUrl = params.shareUrl;
this.goodsRoute = params.goodsRoute;
this.posterApi = params.posterApi;
this.isVirtual = params.isVirtual;
this.deliveryType = params.deliveryType;
this.evaluateConfig = params.evaluateConfig;
if (this.evaluateConfig.evaluate_show == 1) {
//商品评论
this.getGoodsEvaluate(params.evaluateList);
this.evaluateCount = params.evaluateCount;
}
for (let k in this.deliveryType) {
if (k == 'store') {
this.isShowStore = true;
}
}
this.getService();
this.videoContext = uni.createVideoContext('goodsVideo');
// #ifdef MP-WEIXIN
this.goodsSyncToGoodsCircle();
// #endif
},
swiperChange(e) {
this.swiperCurrent = e.detail.current + 1;
},
//-------------------------------------服务-------------------------------------
openMerchantsServicePopup() {
this.$refs.merchantsServicePopup.open();
},
closeMerchantsServicePopup() {
this.$refs.merchantsServicePopup.close();
},
//-------------------------------------门店列表-------------------------------------
openStoreListPopup() {
this.$refs.storeListPopup.open();
},
closeStoreListPopup() {
this.$refs.storeListPopup.close();
},
getStoreData() {
//门店列表
let data = {
page: this.storeList.page,
page_size: this.storeList.page_size
};
if (this.latitude && this.longitude) {
data.latitude = this.latitude;
data.longitude = this.longitude;
}
this.$api.sendRequest({
url: '/api/store/page',
data: data,
success: res => {
if (this.storeList.page == 1) this.storeList.data == [];
if (res.code >= 0 && res.data) {
this.storeList.data = this.storeList.data.concat(res.data.list);
} else {
this.$util.showToast({
title: res.message
});
}
}
});
},
selectStore(item) {
this.$util.redirectTo('/pages_tool/store/detail', {
store_id: item.store_id
});
this.closeStoreListPopup();
},
//-------------------------------------属性-------------------------------------
switchGoodsAttr() {
this.goodsAttrShow = !this.goodsAttrShow;
},
//-------------------------------------评价-------------------------------------
//商品评论列表
getGoodsEvaluate(list) {
if (list) {
this.goodsEvaluate = list;
this.goodsEvaluate.forEach((item, index) => {
if (this.goodsEvaluate[index].images) this.goodsEvaluate[index].images = this.goodsEvaluate[index].images.split(",");
if (this.goodsEvaluate[index].is_anonymous == 1) this.goodsEvaluate[index].member_name = this.goodsEvaluate[index].member_name.replace(this.goodsEvaluate[index].member_name.substring(1, this.goodsEvaluate[index].member_name.length - 1), '***')
})
// if (this.goodsEvaluate.images) this.goodsEvaluate.images = this.goodsEvaluate.images.split(",");
// if (this.goodsEvaluate.is_anonymous == 1) this.goodsEvaluate.member_name = this.goodsEvaluate.member_name.replace(
// this.goodsEvaluate.member_name.substring(1, this.goodsEvaluate.member_name.length - 1), '***')
}
},
// 预览评价图片
previewEvaluate(index, img_index, field) {
var paths = [];
for (let i = 0; i < this.goodsEvaluate[index][field].length; i++) {
paths.push(this.$util.img(this.goodsEvaluate[index][field][i]));
}
uni.previewImage({
current: img_index,
urls: paths
});
},
//-------------------------------------关注-------------------------------------
async collection() {
if (this.preview) return; // 开启预览,禁止任何操作和跳转
if (this.storeToken) {
//未关注添加关注
if (this.whetherCollection == 0) {
let res = await this.$api.sendRequest({
url: "/api/goodscollect/add",
data: {
sku_id: this.skuId,
goods_id: this.goodsSkuDetail.goods_id,
sku_name: this.goodsSkuDetail.sku_name,
sku_price: this.goodsSkuDetail.show_price,
sku_image: this.goodsSkuDetail.sku_image
},
async: false,
});
var data = res.data;
if (data > 0) {
this.whetherCollection = 1;
}
} else {
//已关注取消关注
let res = await this.$api.sendRequest({
url: "/api/goodscollect/delete",
data: {
goods_id: this.goodsSkuDetail.goods_id
},
async: false,
});
var data = res.data;
if (data > 0) {
this.whetherCollection = 0;
}
}
return this.whetherCollection;
} else {
if (this.source_member) {
this.$refs.login.open(this.shareUrl + '&source_member=' + this.source_member);
} else {
this.$refs.login.open(this.shareUrl);
}
}
},
//-------------------------------------分享-------------------------------------
// 打开分享弹出层
openSharePopup() {
this.$refs.sharePopup.open();
},
// 关闭分享弹出层
closeSharePopup() {
this.$refs.sharePopup.close();
},
copyUrl() {
let text = this.$config.h5Domain + this.shareUrl;
if (this.memberInfo && this.memberInfo.member_id) text += '&source_member=' + this.memberInfo.member_id;
this.$util.copy(text, () => {
this.closeSharePopup();
});
},
//-------------------------------------海报-------------------------------------
// 打开海报弹出层
openPosterPopup() {
this.getGoodsPoster();
this.$refs.sharePopup.close();
},
// 关闭海报弹出层
closePosterPopup() {
this.$refs.posterPopup.close();
this.poster = ''
},
//生成海报
getGoodsPoster() {
uni.showLoading({
'title': '海报生成中...'
})
//活动海报信息
if (this.memberInfo && this.memberInfo.member_id) this.posterParams.source_member = this.memberInfo.member_id;
this.$api.sendRequest({
url: this.posterApi,
data: {
page: this.goodsRoute,
qrcode_param: JSON.stringify(this.posterParams)
},
success: res => {
if (res.code == 0) {
this.$refs.posterPopup.open();
this.poster = res.data.path + "?time=" + new Date().getTime();
} else {
this.posterMsg = res.message;
this.$util.showToast({
title: res.message
})
}
uni.hideLoading();
},
fail: err => {
uni.hideLoading();
}
});
},
// 预览图片
previewMedia(index) {
var paths = [];
for (let i = 0; i < this.goodsSkuDetail.sku_images.length; i++) {
paths.push(this.$util.img(this.goodsSkuDetail.sku_images[i], {
size: 'big'
}));
}
uni.previewImage({
current: index,
urls: paths,
// longPressActions: {
// itemList: ['发送给朋友', '保存图片', '关注'],
// success: function(data) {
// console.log('选中了第' + (data.tapIndex + 1) + '个按钮,第' + (data.index + 1) + '张图片');
// },
// fail: function(err) {
// console.log(err.errMsg);
// }
// }
});
},
swiperImageError(index) {
this.goodsSkuDetail.sku_images[index] = this.$util.getDefaultImage().goods;
this.$forceUpdate();
},
// #ifdef MP || APP-PLUS
//小程序中保存海报
saveGoodsPoster() {
let url = this.$util.img(this.poster);
uni.downloadFile({
url: url,
success: (res) => {
if (res.errMsg == "downloadFile:ok") {
uni.saveImageToPhotosAlbum({
filePath: res.tempFilePath,
success: () => {
this.$util.showToast({
title: "保存成功"
});
},
fail: (err) => {
this.$util.showToast({
title: "保存失败,请稍后重试"
});
}
});
}
},
fail: (err) => {
this.$util.showToast({
title: "保存失败,请稍后重试"
});
}
});
},
// #endif
//售后保障查询
getService() {
this.$api.sendRequest({
url: '/api/goods/aftersale',
success: res => {
if (res.code == 0 && res.data) {
this.service = res.data;
}
}
});
},
// #ifdef MP-WEIXIN
/**
* 将商品同步到微信圈子
*/
goodsSyncToGoodsCircle() {
this.$api.sendRequest({
url: '/goodscircle/api/goods/sync',
data: {
goods_id: this.goodsSkuDetail.goods_id
},
success: res => {
if (res.code == 0) {
this.goodsCircle = true;
}
}
})
},
/**
* 将商品推荐到微信圈子
*/
openBusinessView() {
if (wx.openBusinessView) {
wx.openBusinessView({
businessType: 'friendGoodsRecommend',
extraData: {
product: {
item_code: this.goodsSkuDetail.goods_id,
title: this.goodsSkuDetail.sku_name,
image_list: this.goodsSkuDetail.sku_images.map((ele) => {
return this.$util.img(ele);
})
}
},
success: function (res) {
console.log('success', res);
},
fail: function (res) {
console.log('fail', res);
}
})
}
},
// #endif
toEvaluateDetail(id) {
this.$util.redirectTo('/pages_tool/goods/evaluate', {
goods_id: id
});
},
showImg(e) {
//拿到图片的路径里面的内容放在我们数组中
let contentimg = e.target.dataset.nodes;
let arrImg = [];
for (var i = 0; i < contentimg.length; i++) {
var img = contentimg[i].children;
if (Array.isArray(img)) {
for (var j = 0; j < img.length; j++) {
if (img[j].attrs && img[j].name == "img") {
if (img[j].attrs.src) {
arrImg.push(img[j].attrs.src)
}
}
}
}
}
//最后一步就是把我们的所有图片放在预览的api中就可以了
uni.previewImage({
current: arrImg,
urls: arrImg,
})
},
//-------------------------------------社群-------------------------------------
//添加福利群
onCommunity() {
this.isCommunity = true
},
onCloseCommunity() {
this.isCommunity = false
},
}
}

View File

@@ -1,455 +0,0 @@
<template>
<view>
<view scroll-y="true" class="goods-detail" :class="isIphoneX ? 'active' : ''">
<view class="goods-container">
<!-- 弹幕 -->
<pengpai-fadein-out v-if="goodsSkuDetail.barrage_show && goodsSkuDetail.barrageData" ref="pengpai" :duration="1600" :wait="1900" :top="200" :left="0" :radius="60" :loop="true" :info="goodsSkuDetail.barrageData"/>
<!-- 商品媒体信息 -->
<view class="goods-media" :style="{height: goodsSkuDetail.swiperHeight}">
<!-- 商品图片 -->
<view class="goods-img" :class="{ show: switchMedia == 'img' }">
<swiper class="swiper" @change="swiperChange" :interval="swiperInterval" :autoplay="swiperAutoplay" autoplay="true" interval="4000" circular="true">
<swiper-item v-for="(item, index) in goodsSkuDetail.sku_images" :key="index" :item-id="'goods_id_' + index">
<view class="item" @click="previewMedia(index)">
<image :src="$util.img(item, { size: 'big' })" @error="swiperImageError(index)" mode="aspectFit" />
</view>
</swiper-item>
</swiper>
<view class="img-indicator-dots">
<text>{{ swiperCurrent }}</text>
<text v-if="goodsSkuDetail.sku_images">/{{ goodsSkuDetail.sku_images.length }}</text>
</view>
</view>
<!-- 商品视频 -->
<view class="goods-video" :class="{ show: switchMedia == 'video' }">
<video id="goodsVideo" :src="$util.img(goodsSkuDetail.video_url)" :poster="$util.img(goodsSkuDetail.sku_image, { size: 'big' })" objectFit="cover"></video>
</view>
<!-- 切换视频图片 -->
<view class="media-mode" v-if="goodsSkuDetail.video_url != ''">
<text :class="{ 'color-base-bg': switchMedia == 'video' }" @click="switchMedia = 'video'">{{ $lang('video') }}</text>
<text :class="{ 'color-base-bg': switchMedia == 'img' }" @click="(switchMedia = 'img'), videoContext.pause()">{{ $lang('image') }}</text>
</view>
</view>
<!-- 价格区域 -->
<view class="goods-gression">
<slot name="price"></slot>
</view>
<view class="newdetail margin-bottom" v-if="goodsSkuDetail.isinformation == 0">
<!-- 入口区域 -->
<slot name="entrance"></slot>
<!-- 配送 -->
<!-- @click="$refs.deliveryType.open()" -->
<view class="item delivery-type" v-if="goodsSkuDetail.is_virtual == 0" >
<view class="label">{{$lang('send')}}</view>
<block v-if="deliveryType">
<view class="box">
<block v-for="(item, index) in deliveryType" :key="index">
<text v-if="goodsSkuDetail.support_trade_type.indexOf(index) != -1">{{$lang('express')}}</text>
<!-- {{ item.name }} -->
</block>
</view>
<text class="iconfont icon-right"></text>
</block>
<block v-else>
<view class="box">未配置</view>
</block>
</view>
<!-- 门店 -->
<!-- <view class="item store-wrap" @click="openStoreListPopup()" v-if="addonIsExist.store && globalStoreInfo && isShowStore">
<view class="label">门店</view>
<view class="list-wrap">
<view class="name-wrap">
<text class="icondiy icon-system-shop"></text>
<text class="name">{{globalStoreInfo.store_name}}</text>
</view>
<view class="other-wrap">
<text class="distance" v-if="parseFloat(globalStoreInfo.distance)">距离{{ globalStoreInfo.distance > 1 ? globalStoreInfo.distance + 'km' : globalStoreInfo.distance * 1000 + 'm' }}</text>
<text class="decorate" v-if="parseFloat(globalStoreInfo.distance)">.</text>
<view class="address">{{ globalStoreInfo.full_address + globalStoreInfo.address }}
</view>
</view>
</view>
<text class="iconfont icon-right"></text>
</view> -->
<view class="item service" @click="openMerchantsServicePopup()" v-if="goodsSkuDetail.goods_service.length">
<view class="label">服务</view>
<view class="list-wrap">
<view class="item-wrap" v-for="(item, index) in goodsSkuDetail.goods_service" :key="index" v-if="index < 3">
<view class="item-wrap-box">
<view class="item-wrap-icon">
<text class="iconfont icon-dui" v-if="!item.icon || (!item.icon.imageUrl && !item.icon.icon)"></text>
<image class="icon-img" v-else-if="item.icon.iconType == 'img'" :src=" $util.img(item.icon.imageUrl)" />
<diy-icon class="icon-box" v-else-if="item.icon.iconType == 'icon'" :icon="item.icon.icon" :value="item.icon.style ? item.icon.style : null"></diy-icon>
</view>
<text>{{ item.service_name }}</text>
</view>
</view>
</view>
<text class="iconfont icon-right"></text>
</view>
</view>
<!--多规格区域-->
<view class="newdetail margin-bottom" v-if="goodsSkuDetail.sku_spec_format">
<!-- 入口区域 -->
<slot name="skuspec"></slot>
</view>
<view class="newdetail margin-bottom" v-if="goodsSkuDetail.merch_id > 0">
<!-- 入口区域 -->
<slot name="entrance"></slot>
<!-- 商家 -->
<view class="item store-wrap" @click="$util.redirectTo('/pages_promotion/merch/detail', { merch_id: goodsSkuDetail.merch_id })">
<view class="list-wrap" style="display: flex;">
<view class="name-wrap">
<image :src="$util.img(goodsSkuDetail.merchinfo.merch_image)" mode="widthFix" style="width: 100rpx;height: 100rpx;border-radius: 50rpx;"></image>
</view>
<view class="other-wrap">
<view class="address" style="margin-left: 30rpx;">
<view>{{goodsSkuDetail.merchinfo.merch_name}}</view>
<view style="font-size: 24rpx;color: #888;">官方认证商家值得信赖</view>
</view>
</view>
</view>
<text class="iconfont icon-right"></text>
</view>
</view>
<!-- 配送方式 -->
<view @touchmove.prevent.stop>
<uni-popup ref="deliveryType" type="bottom">
<view class="deliverytype-popup-layer popup-layer">
<view class="head-wrap" @click="$refs.deliveryType.close()">
<text>配送</text>
<text class="iconfont icon-close"></text>
</view>
<scroll-view scroll-y class="type-body">
<block v-for="(item, index) in deliveryType" :key="index">
<view class="type-item" :class="{ 'not-support': goodsSkuDetail.support_trade_type.indexOf(index) == -1 }">
<text class="iconfont" :class="item.icon"></text>
<view class="content">
<view class="title">{{ item.name }}</view>
<view class="desc">{{ item.desc }}</view>
</view>
</view>
</block>
</scroll-view>
</view>
</uni-popup>
</view>
<!-- 商品服务 -->
<view @touchmove.prevent.stop>
<uni-popup ref="merchantsServicePopup" type="bottom">
<view class="goods-merchants-service-popup-layer popup-layer">
<view class="head-wrap" @click="closeMerchantsServicePopup()">
<text>商品服务</text>
<text class="iconfont icon-close"></text>
</view>
<scroll-view scroll-y>
<view class="item" :class="{ 'empty-desc': !item.desc }" v-for="(item, index) in goodsSkuDetail.goods_service" :key="index">
<view class="item-icon" :class="{'empty-desc':!item.desc}">
<text class="iconfont icon-dui color-base-text" v-if="!item.icon || (!item.icon.imageUrl && !item.icon.icon)"></text>
<image class="icon-img" v-else-if="item.icon.iconType == 'img'" :src=" $util.img(item.icon.imageUrl)" />
<diy-icon class="icon-box" v-else-if="item.icon.iconType == 'icon'" :icon="item.icon.icon" :value="item.icon.style ? item.icon.style : null"></diy-icon>
</view>
<view class="info-wrap">
<text class="title">{{ item.service_name }}</text>
<text class="describe" v-if="item.desc">{{ item.desc }}</text>
</view>
</view>
</scroll-view>
<view class="button-box">
<button type="primary" @click="closeMerchantsServicePopup()">确定</button>
</view>
</view>
</uni-popup>
</view>
<!-- 门店列表 -->
<view @touchmove.prevent.stop>
<uni-popup ref="storeListPopup" type="bottom">
<view class="goods-merchants-service-popup-layer popup-layer store-list-wrap">
<view class="head-wrap" @click="closeStoreListPopup()">
<text>门店列表</text>
<text class="iconfont icon-close"></text>
</view>
<scroll-view scroll-y>
<view class="store-list-content">
<view class="list-item" v-for="(item, index) in storeList.data" :key="index" @click="selectStore(item)">
<view class="item-box">
<view class="item-image">
<image :src="$util.img(item.store_image)" v-if="item.store_image"/>
<image :src="$util.getDefaultImage().store" v-else/>
</view>
<view class="item-info">
<view class="item-title">
<text class="title">{{ item.store_name }}</text>
<text class="distance color-base-text" v-if="item.distance">
距离{{ item.distance > 1 ? item.distance + 'km' : item.distance * 1000 + 'm' }}
</text>
</view>
<view class="item-time" v-if="item.open_date">营业时间{{ item.open_date }}
</view>
<view class="item-address">{{ item.full_address + item.address }}</view>
</view>
<view class="item-right"><text class="iconfont icon-right"></text></view>
</view>
</view>
</view>
</scroll-view>
</view>
</uni-popup>
</view>
<!-- 业务区域 -->
<slot name="business"></slot>
<view class="detail-community" v-if="goodsSkuDetail.qr_data && goodsSkuDetail.qr_data.qr_state == 1">
<view class="community-box">
<image :src="$util.img('public/uniapp/goods/detail_erweiImage.png')" mode="aspectFill"></image>
<view class="community-content">
<view class="community-title">{{ goodsSkuDetail.qr_data.qr_name }}</view>
<view class="community-txt">{{ goodsSkuDetail.qr_data.community_describe }}</view>
</view>
</view>
<view class="community-btn" @click="onCommunity()">添加</view>
</view>
<!-- 促销 -->
<!-- <view class="community-model" @touchmove.prevent.stop @click.stop="onCloseCommunity()" v-show="isCommunity">
<view class="community-model-content" @click.stop>
<view class="community-model-content-radius">
<view>添加社群</view>
</view>
<view class="community-model-content-draw" v-if="goodsSkuDetail.qr_data && goodsSkuDetail.qr_data.qr_img">
<image :src="goodsSkuDetail.qr_data.qr_img != '' && goodsSkuDetail.qr_data.qr_state == 1 ? $util.img(goodsSkuDetail.qr_data.qr_img) : $util.img('public/uniapp/goods/detail_erweiImage.png') " mode="aspectFill" show-menu-by-longpress="true"/>
</view>
<view class="community-model-content-text">长按识别二维码添加社群</view>
</view>
<view class="community-model-close" @click.stop="onCloseCommunity()">
<text class="iconfont icon-close"></text>
</view>
</view> -->
<!-- 参与流程 -->
<slot name="articipation"></slot>
<!-- 商品评价 -->
<view class="group-wrap" v-if="evaluateConfig.evaluate_show == 1 && goodsSkuDetail.isinformation == 0" style="display: none;">
<view class="goods-evaluate" @click="toEvaluateDetail(goodsSkuDetail.goods_id)">
<view class="tit">
<!-- <view class="tit" :class="{ active: goodsEvaluate.content }"> -->
<view>
<text class="color-title font-size-base">
评价
<text class="font-size-base">({{ evaluateCount }})</text>
</text>
<text class="evaluate-item-empty" v-if="!evaluateCount">暂无评价</text>
<view class="evaluate-item-empty" v-else>
<text class="font-size-tag">查看全部</text>
<text class="iconfont icon-right font-size-tag"></text>
</view>
</view>
</view>
<view class="evaluate-item" v-for="(item, index) in goodsEvaluate" :key="index"
v-if="item.content">
<view class="evaluator">
<view class="evaluator-info">
<view class="evaluator-face">
<image v-if="item.member_headimg" :src="$util.img(item.member_headimg)" @error="item.member_headimg = $util.getDefaultImage().head" mode="aspectFill" />
<image v-else :src="$util.getDefaultImage().head" @error="item.member_headimg = $util.getDefaultImage().head" mode="aspectFill" />
</view>
<view class="evaluator-name-wrap">
<text class="evaluator-name using-hidden" v-if="item.member_name.length > 2 && item.is_anonymous == 1">
{{ item.member_name[0] }}***{{ item.member_name[item.member_name.length - 1] }}
</text>
<text class="evaluator-name using-hidden" v-else>{{ item.member_name }}</text>
<view v-if="item.scores" class="evaluator-xing">
<xiaoStarComponent :starCount="item.scores * 2"></xiaoStarComponent>
</view>
</view>
</view>
<text class="time color-tip">{{ $util.timeStampTurnTime(item.create_time) }}</text>
</view>
<view class="cont margin-top">{{ item.content }}</view>
<scroll-view scroll-x="true">
<view class="evaluate-img" v-if="item.images">
<view class="img-box" v-for="(img, img_index) in item.images" :key="img_index" @click="previewEvaluate(index, img_index, 'images')">
<image :src="$util.img(img)" mode="aspectFill" />
</view>
</view>
</scroll-view>
</view>
</view>
</view>
<view class="goods-attr" v-if="goodsSkuDetail.goods_attr_format && goodsSkuDetail.goods_attr_format.length > 0">
<view class="title">规格属性</view>
<view class="attr-wrap">
<block v-for="(item, index) in goodsSkuDetail.goods_attr_format" :key="index">
<view class="item" v-if="goodsAttrShow || (!goodsAttrShow && index < 4)">
<text class="attr-name">{{ item.attr_name }}</text>
<text class="value-name">{{ item.attr_value_name }}</text>
</view>
</block>
<view class="attr-action" v-if="goodsSkuDetail.goods_attr_format.length > 4" @click="switchGoodsAttr">
<block v-if="!goodsAttrShow">
展开<text class="iconfont icon-iconangledown"></text>
</block>
<block v-else>
收起<text class="iconfont icon-iconangledown-copy"></text>
</block>
</view>
</view>
</view>
<!-- 详情 -->
<view class="goods-detail-tab">
<view class="detail-tab">
<view class="tab-item">{{$lang('details')}}</view>
</view>
<view class="detail-content active">
<view class="detail-content-item">
<view class="goods-details" v-if="goodsSkuDetail.goods_content">
<!-- <rich-text :nodes="goodsSkuDetail.goods_content" @click="showImg($event)" :data-nodes="goodsSkuDetail.goods_content"></rich-text> -->
<!-- {{goodsSkuDetail.goods_content}} -->
<mp-html :content="goodsSkuDetail.goods_content" />
<!-- :loading="loading" @preview="preview" @navigate="navigate" -->
</view>
<view class="goods-details active" v-else></view>
<view class="goods-details" v-if="service && service.is_display == 1 && service.content">
<rich-text :nodes="service.content" @click="showImg($event)" :data-nodes="service.content"></rich-text>
</view>
</view>
</view>
</view>
<!-- 商品推荐 -->
<ns-goods-recommend ref="goodrecommend" route="goods_detail"></ns-goods-recommend>
<ns-copyright></ns-copyright>
<!-- 海报 -->
<view @touchmove.prevent.stop class="poster-layer">
<uni-popup ref="posterPopup" type="center">
<template v-if="poster != '-1'">
<view class="poster-wrap">
<view class="image-wrap">
<image :src="$util.img(poster)" :show-menu-by-longpress="true" mode="widthFix" />
<view class="close iconfont icon-close" @click="closePosterPopup()"></view>
</view>
<!-- #ifdef MP || APP-PLUS -->
<view class="save-btn" @click="saveGoodsPoster()">保存图片</view>
<!-- #endif -->
<!-- #ifdef H5 -->
<view class="save-btn">长按图片进行保存</view>
<!-- #endif -->
</view>
</template>
</uni-popup>
</view>
<!-- 分享弹窗 -->
<view @touchmove.prevent.stop>
<uni-popup ref="sharePopup" type="bottom" class="share-popup">
<view>
<view class="share-title">分享</view>
<view class="share-content">
<!-- #ifdef MP -->
<view class="share-box">
<button class="share-btn" :plain="true" open-type="share">
<view class="iconfont icon-share-friend"></view>
<text>分享给好友</text>
</button>
</view>
<!-- #endif -->
<!-- #ifdef MP-WEIXIN -->
<view class="share-box" v-if="goodsCircle">
<button class="share-btn" :plain="true" @click="openBusinessView">
<view class="iconfont icon-haowuquan"></view>
<text>分享到好物圈</text>
</button>
</view>
<!-- #endif -->
<view class="share-box" @click="openPosterPopup">
<button class="share-btn" :plain="true">
<view class="iconfont icon-pengyouquan"></view>
<text>生成分享海报</text>
</button>
</view>
<!-- #ifdef H5 -->
<view class="share-box" @click="copyUrl">
<button class="share-btn" :plain="true">
<view class="iconfont icon-fuzhilianjie"></view>
<text>复制链接</text>
</button>
</view>
<!-- #endif -->
</view>
<view class="share-footer" @click="closeSharePopup"><text>取消分享</text></view>
</view>
</uni-popup>
</view>
<slot name="fixedbtn"></slot>
</view>
</view>
<!-- 操作区域 -->
<slot name="action"></slot>
<to-top v-if="showTop" @toTop="scrollToTopNative()"></to-top>
<ns-login ref="login"></ns-login>
</view>
</template>
<script>
// 商品详情视图
import uniPopup from '@/components/uni-popup/uni-popup.vue';
import nsGoodsRecommend from '@/components/ns-goods-recommend/ns-goods-recommend.vue';
import pengpaiFadeinOut from '@/components/pengpai-fadein-out/pengpai-fadein-out.vue';
import xiaoStarComponent from '@/components/xiao-star-component/xiao-star-component.vue';
import scroll from '@/common/js/scroll-view.js';
import toTop from '@/components/toTop/toTop.vue';
import detail from './detail.js';
export default {
name: 'goods-detail-view',
props: {
goodsSkuDetail: {
type: Object,
default: () => {
return {};
}
}
},
components: {
uniPopup,
nsGoodsRecommend,
pengpaiFadeinOut,
toTop,
xiaoStarComponent
},
mixins: [scroll, detail]
};
</script>
<style lang="scss">
@import '@/common/css/goods_detail.scss';
</style>
<style scoped></style>

View File

@@ -1,96 +0,0 @@
<template>
<view class="action-buttom-wrap disabled" v-if="disabled" @click="clickEvent">{{ disabledText }}</view>
<view class="action-buttom-wrap"
:class="[backgroundClass, textPrice ? 'has-second' : '', background ? 'color-join-cart' : 'color-base-bg']"
:style="{background:backgroundColor+'!important', 'color':textColor ? textColor : '#ffffff'}" v-else
@click="clickEvent">
<text class="price-font">{{ textPrice }}</text>
<text>{{ text }}</text>
</view>
</template>
<script>
export default {
name: 'ns-goods-action-button',
props: {
// 商品底部按钮文字
text: {
type: String,
default: ''
},
// 商品底部按钮价格文字
textPrice: {
type: String,
default: ''
},
// 背景色
background: {
type: String,
default: ''
},
// 背景色样式
backgroundClass: {
type: String,
default: ''
},
//
backgroundColor: {
type: String,
default: ''
},
// 是否禁用
disabled: {
type: Boolean,
default: false
},
// 禁用文字提示
disabledText: {
type: String,
default: ''
},
// 文字颜色
textColor: {
type: String,
default: ''
},
},
computed: {},
methods: {
clickEvent() {
this.$emit('click');
}
}
};
</script>
<style lang="scss">
.action-buttom-wrap {
flex: 1;
height: 70rpx;
font-weight: 600;
font-size: 30rpx;
line-height: 70rpx;
border: none;
color: #fff;
text-align: center;
border-radius: 10rpx;
margin-right: 20rpx;
}
.action-buttom-wrap.has-second {
line-height: 50rpx;
}
.action-buttom-wrap.has-second text {
display: block;
line-height: 1.2;
}
.action-buttom-wrap:active {
opacity: 0.8;
}
.action-buttom-wrap.disabled {
background: $color-disabled;
}
</style>

View File

@@ -1,146 +0,0 @@
<template>
<view>
<block v-if="text == '客服' || text == 'Contact'">
<!-- <ns-contact :niushop="chatParam" :send-message-title="sendData.title" :send-message-path="sendData.path" :send-message-img="sendData.img"> -->
<button hoverClass="none" openType="contact" sessionFrom="weapp" showMessageCard="true" class="action-icon-wrap" style="background: transparent;padding: 0;margin: 0;">
<view class="iconfont color-title" :class="icon"></view>
<text>{{ text }}</text>
<view class="corner-mark color-base-bg" v-if="cornerMark.length" :style="{ background: cornerMarkBg+'!important', color: cornerMarkColor }">{{ cornerMark }}</view>
</button>
<!-- </ns-contact> -->
</block>
<block v-else>
<view class="action-icon-wrap" @click="clickEvent">
<view class="iconfont " :class="icon"></view>
<text>{{ text }}</text>
<view class="corner-mark color-base-bg" :class="{'max' : parseInt(cornerMark)>99}" v-if="cornerMark.length" :style="{ background: cornerMarkBg+'!important', color: cornerMarkColor }">{{ cornerMark > 99 ? '99+' : cornerMark }}</view>
</view>
</block>
</view>
</template>
<script>
import nsContact from '@/components/ns-contact/ns-contact.vue';
export default {
name: 'ns-goods-action-icon',
props: {
// 商品底部icon导航icon图标
icon: {
type: String,
default: ''
},
// 商品底部icon导航文字
text: {
type: String,
default: ''
},
// 角标文字
cornerMark: {
type: String,
default: ''
},
// 角标背景色
cornerMarkBg: {
type: String,
default: ''
},
// 角标文字颜色
cornerMarkColor: {
type: String,
default: '#fff'
},
// 开放能力
openType: {
type: String,
default: ''
},
// 发送内容 openType="contact"时有效
sendData: {
type: Object,
default: function() {
return {
title: '',
path: '',
img: ''
};
}
},
chatParam: {
type: Object,
default: function(){
return {}
}
}
},
components:{
nsContact
},
methods: {
clickEvent() {
this.$emit('click');
}
}
};
</script>
<style lang="scss">
.action-icon-wrap {
display: flex;
flex-direction: column;
justify-content: center;
height: 100rpx;
min-width: 90rpx;
text-align: center;
position: relative;
margin-right: 6rpx;
}
.action-icon-wrap button {
width: 100%;
height: 100%;
position: absolute;
border: none;
z-index: 1;
padding: 0;
margin: 0;
background: none;
top: 0;
left: 0;
opacity: 0;
}
.action-icon-wrap button::after {
border: none !important;
}
.action-icon-wrap .iconfont {
margin: 0 auto 10rpx;
line-height: 1;
font-size: 40rpx;
}
.action-icon-wrap .corner-mark {
position: absolute;
z-index: 99;
font-size: $font-size-activity-tag;
top: 4rpx;
right: 12rpx;
color: #fff;
display: flex;
justify-content: center;
align-items: center;
width: 24rpx;
height: 24rpx;
padding: 6rpx;
border-radius: 50%;
&.max{
right:-4rpx;
width: 40rpx;
border-radius: 24rpx;
}
}
.action-icon-wrap text {
font-size: $font-size-tag;
line-height: 1;
}
</style>

View File

@@ -1,33 +0,0 @@
<template>
<view class="ns-goods-action bottom-safe-area" :class="{ 'bottom-safe-area': safeArea }"><slot></slot></view>
</template>
<script>
export default {
name: 'ns-goods-action',
props: {
safeArea: {
type: Boolean,
default: false
}
}
};
</script>
<style>
.ns-goods-action {
position: fixed;
right: 0;
bottom: 0;
left: 0;
display: flex;
align-items: center;
background-color: #fff;
z-index: 9;
}
.ns-goods-action.bottom-safe-area {
padding-bottom: 0;
padding-bottom: constant(safe-area-inset-bottom);
padding-bottom: env(safe-area-inset-bottom);
}
</style>

View File

@@ -1,125 +0,0 @@
<template>
<!-- 当前商品参与的营销活动入口 -->
<view class="ns-goods-promotion" v-if="goodsPromotion.length">
<view v-for="(item, index) in goodsPromotion" v-if="promotion != item.promotion_type" :key="index">
<view v-if="item.promotion_type == 'discount'" class="item" @click="redirectTo('/pages_goods/detail', { goods_id: item.goods_id })">
<text class="promotion-mark ">限时折扣</text>
<text class="title">当前商品正在参加{{ item.promotion_name }}</text>
<text class="iconfont icon-right"></text>
<!-- <view class="img-wrap"><image :src="$util.img('public/uniapp/goods/detail_more.png')" mode="aspectFit" /></view> -->
</view>
<view v-else-if="item.promotion_type == 'groupbuy'" class="item" @click="redirectTo('/pages_promotion/groupbuy/detail', { groupbuy_id: item.groupbuy_id })">
<!-- <view v-else-if="item.promotion_type == 'groupbuy'" class="item" @click="redirectTo('/pages_promotion/groupbuy/detail', { id: item.groupbuy_id })"> -->
<text class="promotion-mark ">团购</text>
<text class="title">当前商品正在参加{{ item.promotion_name }}</text>
<text class="iconfont icon-right"></text>
<!-- <view class="img-wrap"><image :src="$util.img('public/uniapp/goods/detail_more.png')" mode="aspectFit" /></view> -->
</view>
<view v-else-if="item.promotion_type == 'pintuan'" class="item" @click="redirectTo('/pages_promotion/pintuan/detail', { pintuan_id: item.pintuan_id })">
<text class="promotion-mark ">拼团</text>
<text class="title">当前商品正在参加{{ item.promotion_name }}</text>
<text class="iconfont icon-right"></text>
<!-- <view class="img-wrap"><image :src="$util.img('public/uniapp/goods/detail_more.png')" mode="aspectFit" /></view> -->
</view>
<view v-else-if="item.promotion_type == 'seckill'" class="item" @click="redirectTo('/pages_promotion/seckill/detail', { seckill_id: item.id })">
<text class="promotion-mark ">秒杀</text>
<text class="title">当前商品正在参加{{ item.promotion_name }}</text>
<text class="iconfont icon-right"></text>
<!-- <view class="img-wrap"><image :src="$util.img('public/uniapp/goods/detail_more.png')" mode="aspectFit" /></view> -->
</view>
<view v-else-if="item.promotion_type == 'topic'" class="item" @click="redirectTo('/pages_promotion/topics/goods_detail', { id: item.id })">
<text class="promotion-mark ">专题活动</text>
<text class="title">当前商品正在参加{{ item.promotion_name }}</text>
<text class="iconfont icon-right"></text>
<!-- <view class="img-wrap"><image :src="$util.img('public/uniapp/goods/detail_more.png')" mode="aspectFit" /></view> -->
</view>
<view v-else-if="item.promotion_type == 'bargain'" class="item" @click="redirectTo('/pages_promotion/bargain/detail', { b_id: item.bargain_id })">
<text class="promotion-mark ">砍价</text>
<text class="title">当前商品正在参加{{ item.promotion_name }}</text>
<text class="iconfont icon-right"></text>
<!-- <view class="img-wrap"><image :src="$util.img('public/uniapp/goods/detail_more.png')" mode="aspectFit" /></view> -->
</view>
<view v-else-if="item.promotion_type == 'pinfan'" class="item" @click="redirectTo('/pages_promotion/pinfan/detail', { pinfan_id: item.pintuan_id })">
<text class="promotion-mark ">拼团返利</text>
<text class="title">当前商品正在参加{{ item.promotion_name }}</text>
<text class="iconfont icon-right"></text>
</view>
</view>
</view>
</template>
<script>
export default {
name: 'ns-goods-promotion',
props: {
promotion: {
type: String,
default: ''
}
},
data() {
return {
goodsPromotion: {
type: Array
}
};
},
created() {},
methods: {
refresh(goodsPromotion) {
this.goodsPromotion = goodsPromotion;
},
redirectTo(path, param) {
this.$util.redirectTo(path, param);
}
}
};
</script>
<style lang="scss">
.ns-goods-promotion {
background-color: #fff;
& > view {
}
.item {
display: flex;
font-size: $font-size-base;
align-items: center;
padding: 20rpx 0;
border-bottom: 2rpx solid $color-line;
&:last-child {
border-bottom: none;
}
.promotion-mark {
padding: 12rpx 14rpx;
margin-right: 16rpx;
line-height: 1;
color: var(--main-color);
border-radius: 6rpx;
font-size: $font-size-tag;
font-weight: bold;
background-color: var(--main-color-shallow);
}
.title {
flex: 1;
line-height: 1;
}
.iconfont {
color: $color-tip;
font-size: $font-size-base;
}
.img-wrap {
width: 38rpx;
height: 38rpx;
image {
width: 100%;
height: 100%;
}
}
}
}
</style>

View File

@@ -513,50 +513,17 @@
<ns-login ref="login"></ns-login> <ns-login ref="login"></ns-login>
<loading-cover ref="loadingCover"></loading-cover> <loading-cover ref="loadingCover"></loading-cover>
<!-- #ifdef MP-WEIXIN --> <!-- 隐私弹窗 -->
<!-- 小程序隐私协议 -->
<privacy-popup ref="privacyPopup"></privacy-popup> <privacy-popup ref="privacyPopup"></privacy-popup>
<!-- #endif -->
</view> </view>
</template> </template>
<script> <script>
import nsGoodsAction from '@/pages_goods/components/ns-goods-action/ns-goods-action.vue';
import nsGoodsActionIcon from '@/pages_goods/components/ns-goods-action-icon/ns-goods-action-icon.vue';
import nsGoodsActionButton from '@/pages_goods/components/ns-goods-action-button/ns-goods-action-button.vue';
import uniPopup from '@/components/uni-popup/uni-popup.vue';
import nsGoodsSku from '@/components/ns-goods-sku/ns-goods-sku.vue';
import uniCountDown from '@/components/uni-count-down/uni-count-down.vue';
import detail from './public/js/detail.js'; import detail from './public/js/detail.js';
import scroll from '@/common/js/scroll-view.js'; import scroll from '@/common/js/scroll-view.js';
import toTop from '@/components/toTop/toTop.vue';
import nsGoodsPromotion from '@/pages_goods/components/ns-goods-promotion/ns-goods-promotion.vue';
import goodsDetailBase from '@/common/js/goods_detail_base.js'; import goodsDetailBase from '@/common/js/goods_detail_base.js';
import goodsDetailView from '@/pages_goods/components/goods-detail-view/goods-detail-view.vue';
// 按需引入全局组件
import nsLogin from '@/components/ns-login/ns-login.vue';
import loadingCover from '@/components/loading-cover/loading-cover.vue';
// #ifdef MP-WEIXIN
import privacyPopup from '@/components/wx-privacy-popup/privacy-popup.vue';
// #endif
export default { export default {
components: {
nsGoodsAction,
nsGoodsActionIcon,
nsGoodsActionButton,
uniPopup,
nsGoodsSku,
uniCountDown,
nsGoodsPromotion,
goodsDetailView,
toTop,
nsLogin,
loadingCover,
// #ifdef MP-WEIXIN
privacyPopup,
// #endif
},
mixins: [goodsDetailBase, detail, scroll] mixins: [goodsDetailBase, detail, scroll]
}; };
</script> </script>

View File

@@ -4,26 +4,35 @@
<!-- 搜索区域 --> <!-- 搜索区域 -->
<view class="search-wrap uni-flex uni-row"> <view class="search-wrap uni-flex uni-row">
<view class="flex-item input-wrap"> <view class="flex-item input-wrap">
<input class="uni-input" maxlength="50" v-model="keyword" @confirm="search()" :placeholder="langstatus?$lang('Search'):'请输入您要搜索的商品'" /> <input class="uni-input" maxlength="50" v-model="keyword" @confirm="search()"
:placeholder="langstatus ? $lang('Search') : '请输入您要搜索的商品'" />
<text class="iconfont icon-sousuo3" @click.stop="search()"></text> <text class="iconfont icon-sousuo3" @click.stop="search()"></text>
</view> </view>
<view class="iconfont" :class="{ 'icon-apps': isList, 'icon-list': !isList }" @click="changeListStyle()"></view> <view class="iconfont" :class="{ 'icon-apps': isList, 'icon-list': !isList }"
@click="changeListStyle()"></view>
</view> </view>
<!-- 排序 --> <!-- 排序 -->
<view class="sort-wrap"> <view class="sort-wrap">
<view class="comprehensive-wrap" :class="{ 'color-base-text': orderType === '' }" @click="sortTabClick('')"> <view class="comprehensive-wrap" :class="{ 'color-base-text': orderType === '' }"
@click="sortTabClick('')">
<text :class="{ 'color-base-text': orderType === '' }">{{ langstatus ? $lang('Random') : '综合' }}</text> <text :class="{ 'color-base-text': orderType === '' }">{{ langstatus ? $lang('Random') : '综合' }}</text>
</view> </view>
<view :class="{ 'color-base-text': orderType === 'sale_num' }" @click="sortTabClick('sale_num')">{{langstatus?$lang('Sales'):'销量'}} <view :class="{ 'color-base-text': orderType === 'sale_num' }" @click="sortTabClick('sale_num')">
{{ langstatus ? $lang('Sales') : '销量' }}
</view> </view>
<view class="price-wrap" @click="sortTabClick('discount_price')"> <view class="price-wrap" @click="sortTabClick('discount_price')">
<text :class="{ 'color-base-text': orderType === 'discount_price' }">{{langstatus?$lang('Price'):'价格'}}</text> <text
:class="{ 'color-base-text': orderType === 'discount_price' }">{{ langstatus ? $lang('Price') : '价格' }}</text>
<view class="iconfont-wrap"> <view class="iconfont-wrap">
<view class="iconfont icon-iconangledown-copy asc" :class="{ 'color-base-text': priceOrder === 'asc' && orderType === 'discount_price' }"></view> <view class="iconfont icon-iconangledown-copy asc"
<view class="iconfont icon-iconangledown desc" :class="{ 'color-base-text': priceOrder === 'desc' && orderType === 'discount_price' }"></view> :class="{ 'color-base-text': priceOrder === 'asc' && orderType === 'discount_price' }">
</view>
<view class="iconfont icon-iconangledown desc"
:class="{ 'color-base-text': priceOrder === 'desc' && orderType === 'discount_price' }">
</view>
</view> </view>
</view> </view>
@@ -39,17 +48,20 @@
<mescroll-uni top="180" ref="mescroll" @getData="getGoodsList"> <mescroll-uni top="180" ref="mescroll" @getData="getGoodsList">
<block slot="list"> <block slot="list">
<view class="goods-list single-column" :class="{ show: isList }"> <view class="goods-list single-column" :class="{ show: isList }">
<view class="goods-item margin-bottom" v-for="(item, index) in goodsList" :key="index" @click="toDetail(item)"> <view class="goods-item margin-bottom" v-for="(item, index) in goodsList" :key="index"
@click="toDetail(item)">
<view class="goods-img"> <view class="goods-img">
<image :src="goodsImg(item.goods_image)" mode="widthFix" @error="imgError(index)"></image> <image :src="goodsImg(item.goods_image)" mode="widthFix" @error="imgError(index)"></image>
<view class="color-base-bg goods-tag" v-if="goodsTag(item) != ''">{{ goodsTag(item) }}</view> <view class="color-base-bg goods-tag" v-if="goodsTag(item) != ''">{{ goodsTag(item) }}
</view>
<view class="sell-out" v-if="item.goods_stock <= 0"> <view class="sell-out" v-if="item.goods_stock <= 0">
<text class="iconfont icon-shuqing"></text> <text class="iconfont icon-shuqing"></text>
</view> </view>
</view> </view>
<view class="info-wrap"> <view class="info-wrap">
<view class="name-wrap"> <view class="name-wrap">
<view class="goods-name" :class="[{ 'using-hidden': config.nameLineMode == 'single' }, { 'multi-hidden': config.nameLineMode == 'multiple' }]"> <view class="goods-name"
:class="[{ 'using-hidden': config.nameLineMode == 'single' }, { 'multi-hidden': config.nameLineMode == 'multiple' }]">
{{ isEnEnv ? item.en_goods_name : item.goods_name }} {{ isEnEnv ? item.en_goods_name : item.goods_name }}
</view> </view>
@@ -58,15 +70,18 @@
<view class="lineheight-clear"> <view class="lineheight-clear">
<view class="discount-price" v-if="item.isinformation == 0"> <view class="discount-price" v-if="item.isinformation == 0">
<text class="unit price-style small">{{ $lang('common.currencySymbol') }}</text> <text class="unit price-style small">{{ $lang('common.currencySymbol') }}</text>
<text class="price price-style large">{{ parseFloat(showPrice(item)).toFixed(2).split('.')[0] }}</text> <text class="price price-style large">{{
<text class="unit price-style small">.{{ parseFloat(showPrice(item)).toFixed(2).split('.')[1] }}</text> parseFloat(showPrice(item)).toFixed(2).split('.')[0] }}</text>
<text class="unit price-style small">.{{
parseFloat(showPrice(item)).toFixed(2).split('.')[1] }}</text>
</view> </view>
<view class="discount-price" v-else> <view class="discount-price" v-else>
<text class="price price-style large">{{ langstatus ? $lang('Make') : '询底价' }}</text> <text class="price price-style large">{{ langstatus ? $lang('Make') : '询底价' }}</text>
</view> </view>
<view class="member-price-tag" v-if="item.member_price && item.member_price == showPrice(item)"> <view class="member-price-tag"
v-if="item.member_price && item.member_price == showPrice(item)">
<image :src="$util.img('public/uniapp/index/VIP.png')" mode="widthFix"></image> <image :src="$util.img('public/uniapp/index/VIP.png')" mode="widthFix"></image>
</view> </view>
<view class="member-price-tag" v-else-if="item.promotion_type == 1"> <view class="member-price-tag" v-else-if="item.promotion_type == 1">
@@ -79,7 +94,8 @@
<text>{{ showMarketPrice(item) }}</text> <text>{{ showMarketPrice(item) }}</text>
</view> </view>
<view class="block-wrap"> <view class="block-wrap">
<view class="sale color-tip" v-if="item.sale_show">已售{{ item.sale_num }}{{ item.unit ? item.unit : '' }}</view> <view class="sale color-tip" v-if="item.sale_show">已售{{ item.sale_num }}{{ item.unit
? item.unit : '' }}</view>
</view> </view>
<view class="cart-action-wrap" v-if="config.control && item.is_virtual == 0"> <view class="cart-action-wrap" v-if="config.control && item.is_virtual == 0">
<!-- 购物车图标 --> <!-- 购物车图标 -->
@@ -118,7 +134,8 @@
}" class="icon-diy click-wrap" :id="'goods-' + item.id" }" class="icon-diy click-wrap" :id="'goods-' + item.id"
@click.stop="$refs.goodsSkuIndex.addCart(config.cartEvent, item, $event)"> @click.stop="$refs.goodsSkuIndex.addCart(config.cartEvent, item, $event)">
<view class="click-event"></view> <view class="click-event"></view>
<diy-icon :icon="config.iconDiy.icon" :value="config.iconDiy.style ? config.iconDiy.style : null"></diy-icon> <diy-icon :icon="config.iconDiy.icon"
:value="config.iconDiy.style ? config.iconDiy.style : null"></diy-icon>
</view> </view>
</view> </view>
</view> </view>
@@ -127,29 +144,35 @@
</view> </view>
<view class="goods-list double-column" :class="{ show: !isList }"> <view class="goods-list double-column" :class="{ show: !isList }">
<view class="goods-item margin-bottom" v-for="(item, index) in goodsList" :key="index" <view class="goods-item margin-bottom" v-for="(item, index) in goodsList" :key="index"
@click="toDetail(item)" :style="{ left: listPosition[index] ? listPosition[index].left : '', top: listPosition[index] ? listPosition[index].top : '' }"> @click="toDetail(item)"
:style="{ left: listPosition[index] ? listPosition[index].left : '', top: listPosition[index] ? listPosition[index].top : '' }">
<view class="goods-img"> <view class="goods-img">
<image :src="goodsImg(item.goods_image)" mode="widthFix" @error="imgError(index)"></image> <image :src="goodsImg(item.goods_image)" mode="widthFix" @error="imgError(index)"></image>
<view class="color-base-bg goods-tag" v-if="goodsTag(item) != ''">{{ goodsTag(item) }}</view> <view class="color-base-bg goods-tag" v-if="goodsTag(item) != ''">{{ goodsTag(item) }}
</view>
<view class="sell-out" v-if="item.stock <= 0"> <view class="sell-out" v-if="item.stock <= 0">
<text class="iconfont icon-shuqing"></text> <text class="iconfont icon-shuqing"></text>
</view> </view>
</view> </view>
<view class="info-wrap"> <view class="info-wrap">
<view class="goods-name" :class="[{ 'using-hidden': config.nameLineMode == 'single' }, { 'multi-hidden': config.nameLineMode == 'multiple' }]"> <view class="goods-name"
:class="[{ 'using-hidden': config.nameLineMode == 'single' }, { 'multi-hidden': config.nameLineMode == 'multiple' }]">
{{ isEnEnv ? item.en_goods_name : item.goods_name }} {{ isEnEnv ? item.en_goods_name : item.goods_name }}
</view> </view>
<view class="lineheight-clear"> <view class="lineheight-clear">
<view class="discount-price" v-if="item.isinformation == 0"> <view class="discount-price" v-if="item.isinformation == 0">
<text class="unit price-style small">{{ $lang('common.currencySymbol') }}</text> <text class="unit price-style small">{{ $lang('common.currencySymbol') }}</text>
<text class="price price-style large">{{ parseFloat(showPrice(item)).toFixed(2).split('.')[0] }}</text> <text class="price price-style large">{{
<text class="unit price-style small">.{{ parseFloat(showPrice(item)).toFixed(2).split('.')[1] }}</text> parseFloat(showPrice(item)).toFixed(2).split('.')[0] }}</text>
<text class="unit price-style small">.{{
parseFloat(showPrice(item)).toFixed(2).split('.')[1] }}</text>
</view> </view>
<view class="discount-price" v-else> <view class="discount-price" v-else>
<text class="price price-style large">{{ langstatus ? $lang('Make') : '询底价' }}</text> <text class="price price-style large">{{ langstatus ? $lang('Make') : '询底价' }}</text>
</view> </view>
<view class="member-price-tag" v-if="item.member_price && item.member_price == showPrice(item)"> <view class="member-price-tag"
v-if="item.member_price && item.member_price == showPrice(item)">
<image :src="$util.img('public/uniapp/index/VIP.png')" mode="widthFix"></image> <image :src="$util.img('public/uniapp/index/VIP.png')" mode="widthFix"></image>
</view> </view>
<view class="member-price-tag" v-else-if="item.promotion_type == 1"> <view class="member-price-tag" v-else-if="item.promotion_type == 1">
@@ -162,7 +185,8 @@
</view> </view>
<view class="pro-info" v-if="item.isinformation == 0"> <view class="pro-info" v-if="item.isinformation == 0">
<view class="block-wrap"> <view class="block-wrap">
<view class="sale color-tip" v-if="item.sale_show">已售{{ item.sale_num }}{{ item.unit ? item.unit : '' }}</view> <view class="sale color-tip" v-if="item.sale_show">已售{{ item.sale_num }}{{ item.unit
? item.unit : '' }}</view>
</view> </view>
<view class="cart-action-wrap" v-if="config.control && item.is_virtual == 0"> <view class="cart-action-wrap" v-if="config.control && item.is_virtual == 0">
<!-- 购物车图标 --> <!-- 购物车图标 -->
@@ -201,7 +225,8 @@
}" class="icon-diy click-wrap" :id="'goods-' + item.id" }" class="icon-diy click-wrap" :id="'goods-' + item.id"
@click.stop="$refs.goodsSkuIndex.addCart(config.cartEvent, item, $event)"> @click.stop="$refs.goodsSkuIndex.addCart(config.cartEvent, item, $event)">
<view class="click-event"></view> <view class="click-event"></view>
<diy-icon :icon="config.iconDiy.icon" :value="config.iconDiy.style ? config.iconDiy.style : null"></diy-icon> <diy-icon :icon="config.iconDiy.icon"
:value="config.iconDiy.style ? config.iconDiy.style : null"></diy-icon>
</view> </view>
</view> </view>
</view> </view>
@@ -253,8 +278,11 @@
<view @click="selectedCategory('')" class="list-wrap"> <view @click="selectedCategory('')" class="list-wrap">
<text :class="{ selected: !categoryId, 'color-base-text': !categoryId }">全部</text> <text :class="{ selected: !categoryId, 'color-base-text': !categoryId }">全部</text>
</view> </view>
<view @click="selectedCategory(item.category_id)" v-for="(item, index) in categoryList" :key="index" class="list-wrap"> <view @click="selectedCategory(item.category_id)" v-for="(item, index) in categoryList"
<text :class="{ selected: item.category_id == categoryId, 'color-base-text': item.category_id == categoryId }">{{ item.category_name }}</text> :key="index" class="list-wrap">
<text
:class="{ selected: item.category_id == categoryId, 'color-base-text': item.category_id == categoryId }">{{
item.category_name }}</text>
</view> </view>
</view> </view>
</view> </view>
@@ -266,10 +294,8 @@
</uni-drawer> </uni-drawer>
<loading-cover ref="loadingCover"></loading-cover> <loading-cover ref="loadingCover"></loading-cover>
<!-- #ifdef MP-WEIXIN --> <!-- 隐私弹窗 -->
<!-- 小程序隐私协议 -->
<privacy-popup ref="privacyPopup"></privacy-popup> <privacy-popup ref="privacyPopup"></privacy-popup>
<!-- #endif -->
<!-- 底部tabBar --> <!-- 底部tabBar -->
<view id="tab-bar"> <view id="tab-bar">
@@ -279,29 +305,9 @@
</template> </template>
<script> <script>
import uniDrawer from '@/components/uni-drawer/uni-drawer.vue';
import uniTag from '@/components/uni-tag/uni-tag.vue';
import nsGoodsSkuIndex from '@/components/ns-goods-sku/ns-goods-sku-index.vue';
import nsEmpty from '@/components/ns-empty/ns-empty.vue';
import MescrollUni from "@/components/mescroll/my-list-mescroll.vue";
import loadingCover from '@/components/loading-cover/loading-cover.vue';
// #ifdef MP-WEIXIN
import privacyPopup from '@/components/wx-privacy-popup/privacy-popup.vue';
// #endif
import list from './public/js/list.js'; import list from './public/js/list.js';
export default { export default {
components: {
uniDrawer,
uniTag,
nsGoodsSkuIndex,
nsEmpty,
MescrollUni,
loadingCover,
// #ifdef MP-WEIXIN
privacyPopup
// #endif
},
data() { data() {
return {}; return {};
}, },

View File

@@ -1,7 +1,8 @@
<template> <template>
<view class="detail-container" :class="{ 'safe-area': isIphoneX }" :style="themeColor"> <view class="detail-container" :class="{ 'safe-area': isIphoneX }" :style="themeColor">
<!-- 订单状态 --> <!-- 订单状态 -->
<view class="status-wrap color-base-bg" :style="{ backgroundImage: 'url(' + $util.img('public/uniapp/order/status-wrap-bg.png') + ')' }"> <view class="status-wrap color-base-bg"
:style="{ backgroundImage: 'url(' + $util.img('public/uniapp/order/status-wrap-bg.png') + ')' }">
<view class="order-status-left"> <view class="order-status-left">
<image :src="$util.img(action.icon)"></image> <image :src="$util.img(action.icon)"></image>
<view class="status-name"> <view class="status-name">
@@ -108,8 +109,11 @@
<text class="copy" @click="$util.copy(orderData.delivery_code)">复制</text> <text class="copy" @click="$util.copy(orderData.delivery_code)">复制</text>
</view> </view>
<view class="code"> <view class="code">
<image :src="$util.img(orderData.pickup_barcode)" @click="previewMedia($util.img(orderData.pickup_barcode))" class="barcode" mode="widthFix"/> <image :src="$util.img(orderData.pickup_barcode)"
<image :src="$util.img(orderData.pickup)" @click="previewMedia($util.img(orderData.pickup))" class="qrcode" mode="widthFix"/> @click="previewMedia($util.img(orderData.pickup_barcode))" class="barcode"
mode="widthFix" />
<image :src="$util.img(orderData.pickup)" @click="previewMedia($util.img(orderData.pickup))"
class="qrcode" mode="widthFix" />
</view> </view>
</view> </view>
</view> </view>
@@ -121,7 +125,8 @@
<view v-for="(goodsItem, goodsIndex) in orderData.order_goods" :key="goodsIndex" class="goods-item"> <view v-for="(goodsItem, goodsIndex) in orderData.order_goods" :key="goodsIndex" class="goods-item">
<view class="goods-wrap"> <view class="goods-wrap">
<view class="goods-img" @click="goDetail(goodsItem)"> <view class="goods-img" @click="goDetail(goodsItem)">
<image :src="$util.img(goodsItem.sku_image, { size: 'mid' })" @error="imageError(goodsIndex)" mode="aspectFill"/> <image :src="$util.img(goodsItem.sku_image, { size: 'mid' })"
@error="imageError(goodsIndex)" mode="aspectFill" />
</view> </view>
<view class="goods-info" @click="goDetail(goodsItem)"> <view class="goods-info" @click="goDetail(goodsItem)">
<view class="goods-name">{{ goodsItem.sku_name }}</view> <view class="goods-name">{{ goodsItem.sku_name }}</view>
@@ -129,16 +134,18 @@
<view class="goods-spec"> <view class="goods-spec">
<block v-for="(x, i) in goodsItem.sku_spec_format" :key="i"> <block v-for="(x, i) in goodsItem.sku_spec_format" :key="i">
{{ x.spec_value_name }} {{ x.spec_value_name }}
{{ i < goodsItem.sku_spec_format.length - 1 ? '; ' : '' }} {{ i < goodsItem.sku_spec_format.length - 1 ? '; ' : '' }} </block>
</block>
</view> </view>
</view> </view>
<view class="goods-sub-section"> <view class="goods-sub-section">
<view> <view>
<text class="goods-price "> <text class="goods-price ">
<text class="unit price-style small">{{ $lang('common.currencySymbol') }}</text> <text class="unit price-style small">{{ $lang('common.currencySymbol') }}</text>
<text class="price-style large">{{ parseFloat(goodsItem.price).toFixed(2).split('.')[0] }}</text> <text class="price-style large">{{
<text class="unit price-style small">.{{ parseFloat(goodsItem.price).toFixed(2).split('.')[1] }}</text> parseFloat(goodsItem.price).toFixed(2).split('.')[0]
}}</text>
<text class="unit price-style small">.{{
parseFloat(goodsItem.price).toFixed(2).split('.')[1] }}</text>
</text> </text>
</view> </view>
<view> <view>
@@ -152,8 +159,10 @@
次卡抵扣 次卡抵扣
<text class="goods-price "> <text class="goods-price ">
<text class="unit price-style small">-{{ $lang('common.currencySymbol') }}</text> <text class="unit price-style small">-{{ $lang('common.currencySymbol') }}</text>
<text class="price-style large">{{ parseFloat(goodsItem.card_promotion_money).toFixed(2).split('.')[0] }}</text> <text class="price-style large">{{
<text class="unit price-style small">.{{ parseFloat(goodsItem.card_promotion_money).toFixed(2).split('.')[1] }}</text> parseFloat(goodsItem.card_promotion_money).toFixed(2).split('.')[0] }}</text>
<text class="unit price-style small">.{{
parseFloat(goodsItem.card_promotion_money).toFixed(2).split('.')[1] }}</text>
</text> </text>
</view> </view>
</view> </view>
@@ -164,7 +173,8 @@
<text class="tit">{{ item.value.title }}</text> <text class="tit">{{ item.value.title }}</text>
<view class="box img-box" v-if="item.controller == 'Img'"> <view class="box img-box" v-if="item.controller == 'Img'">
<view class="img" v-for="(img, imgIndex) in item.img_lists" :key="imgIndex"> <view class="img" v-for="(img, imgIndex) in item.img_lists" :key="imgIndex">
<image :src="$util.img(img)" mode="widthFix" @click="previewMedia($util.img(img))"/> <image :src="$util.img(img)" mode="widthFix"
@click="previewMedia($util.img(img))" />
</view> </view>
</view> </view>
<view class="box" v-else> <view class="box" v-else>
@@ -176,13 +186,15 @@
<view class="goods-action"> <view class="goods-action">
<block v-if="orderData.is_enable_refund"> <block v-if="orderData.is_enable_refund">
<view @click="goRefund(goodsItem.order_goods_id)" v-if="orderData.order_scene == 'online' && (goodsItem.refund_status == 0 || goodsItem.refund_status == -1)"> <view @click="goRefund(goodsItem.order_goods_id)"
v-if="orderData.order_scene == 'online' && (goodsItem.refund_status == 0 || goodsItem.refund_status == -1)">
<view class="order-box-btn" v-if="orderData.promotion_type != 'blindbox'"> <view class="order-box-btn" v-if="orderData.promotion_type != 'blindbox'">
{{ orderData.order_status == 10 ? '申请售后' : '申请退款' }} {{ orderData.order_status == 10 ? '申请售后' : '申请退款' }}
</view> </view>
</view> </view>
</block> </block>
<view @click="goRefundDetail(goodsItem.order_goods_id)" v-if="goodsItem.refund_status != 0 && goodsItem.refund_status != -1"> <view @click="goRefundDetail(goodsItem.order_goods_id)"
v-if="goodsItem.refund_status != 0 && goodsItem.refund_status != -1">
<view class="order-box-btn">{{ orderData.order_status == 10 ? '查看售后' : '查看退款' }}</view> <view class="order-box-btn">{{ orderData.order_status == 10 ? '查看售后' : '查看退款' }}</view>
</view> </view>
</view> </view>
@@ -315,7 +327,8 @@
<block v-if="orderData.goods_class == 5"> <block v-if="orderData.goods_class == 5">
<view class="order-cell"> <view class="order-cell">
<text class="tit">我的卡包</text> <text class="tit">我的卡包</text>
<view class="box"><text class="color-base-text" @click="$util.redirectTo('/pages_promotion/cardservice/card/my_card')">查看</text></view> <view class="box"><text class="color-base-text"
@click="$util.redirectTo('/pages_promotion/cardservice/card/my_card')">查看</text></view>
</view> </view>
</block> </block>
<!-- 联系客服 --> <!-- 联系客服 -->
@@ -349,14 +362,17 @@
<text class="tit">核销次数</text> <text class="tit">核销次数</text>
<view class="box align-right"> <view class="box align-right">
<text class="color-title"> <text class="color-title">
剩余{{ orderData.virtual_goods.verify_total_count - orderData.virtual_goods.verify_use_num }}/{{ orderData.virtual_goods.verify_total_count }} 剩余{{ orderData.virtual_goods.verify_total_count - orderData.virtual_goods.verify_use_num
}}/{{
orderData.virtual_goods.verify_total_count }}
</text> </text>
</view> </view>
</view> </view>
<view class="order-cell"> <view class="order-cell">
<text class="tit">有效期</text> <text class="tit">有效期</text>
<view class="box align-right"> <view class="box align-right">
<text class="color-title" v-if="orderData.virtual_goods.expire_time > 0">{{ $util.timeStampTurnTime(orderData.virtual_goods.expire_time) }}</text> <text class="color-title" v-if="orderData.virtual_goods.expire_time > 0">{{
$util.timeStampTurnTime(orderData.virtual_goods.expire_time) }}</text>
<text v-else>永久有效</text> <text v-else>永久有效</text>
</view> </view>
</view> </view>
@@ -365,7 +381,8 @@
<view class="verify-info-wrap"> <view class="verify-info-wrap">
<view class="head">核销记录</view> <view class="head">核销记录</view>
<view v-if="orderData.virtual_goods.verify_record.length"> <view v-if="orderData.virtual_goods.verify_record.length">
<view v-for="(item, index) in orderData.virtual_goods.verify_record" :key="index" class="record-item"> <view v-for="(item, index) in orderData.virtual_goods.verify_record" :key="index"
class="record-item">
<view class="order-cell"> <view class="order-cell">
<text class="tit">核销人</text> <text class="tit">核销人</text>
<view class="box align-right"> <view class="box align-right">
@@ -426,14 +443,17 @@
<text class="tit">核销次数</text> <text class="tit">核销次数</text>
<view class="box align-right"> <view class="box align-right">
<text class="color-title"> <text class="color-title">
剩余{{ orderData.virtual_goods.verify_total_count - orderData.virtual_goods.verify_use_num }}/{{ orderData.virtual_goods.verify_total_count }} 剩余{{ orderData.virtual_goods.verify_total_count - orderData.virtual_goods.verify_use_num
}}/{{
orderData.virtual_goods.verify_total_count }}
</text> </text>
</view> </view>
</view> </view>
<view class="order-cell"> <view class="order-cell">
<text class="tit">有效期</text> <text class="tit">有效期</text>
<view class="box align-right"> <view class="box align-right">
<text class="color-title" v-if="orderData.virtual_goods.expire_time > 0">{{ $util.timeStampTurnTime(orderData.virtual_goods.expire_time) }}</text> <text class="color-title" v-if="orderData.virtual_goods.expire_time > 0">{{
$util.timeStampTurnTime(orderData.virtual_goods.expire_time) }}</text>
<text v-else>永久有效</text> <text v-else>永久有效</text>
</view> </view>
</view> </view>
@@ -442,7 +462,8 @@
<view class="verify-info-wrap"> <view class="verify-info-wrap">
<view class="head">核销记录</view> <view class="head">核销记录</view>
<view v-if="orderData.virtual_goods.verify_record.length"> <view v-if="orderData.virtual_goods.verify_record.length">
<view v-for="(item, index) in orderData.virtual_goods.verify_record" :key="index" class="record-item"> <view v-for="(item, index) in orderData.virtual_goods.verify_record" :key="index"
class="record-item">
<view class="order-cell"> <view class="order-cell">
<text class="tit">核销人</text> <text class="tit">核销人</text>
<view class="box align-right"> <view class="box align-right">
@@ -574,7 +595,9 @@
</view> </view>
<view class="order-action fixed-bottom bottom-safe-area" v-if="orderData.action.length > 0"> <view class="order-action fixed-bottom bottom-safe-area" v-if="orderData.action.length > 0">
<view class="order-box-btn white" v-if="evaluateConfig.evaluate_status == 1 && orderData.is_evaluate == 1" @click="operation('memberOrderEvaluation')"> <view class="order-box-btn white"
v-if="evaluateConfig.evaluate_status == 1 && orderData.is_evaluate == 1"
@click="operation('memberOrderEvaluation')">
<text v-if="orderData.evaluate_status == 0">评价</text> <text v-if="orderData.evaluate_status == 0">评价</text>
<text v-else-if="orderData.evaluate_status == 1">追评</text> <text v-else-if="orderData.evaluate_status == 1">追评</text>
</view> </view>
@@ -588,7 +611,8 @@
</block> </block>
</view> </view>
<view class="order-action fixed-bottom bottom-safe-area" v-else-if="orderData.action.length == 0 && orderData.is_evaluate == 1 && evaluateConfig.evaluate_status == 1"> <view class="order-action fixed-bottom bottom-safe-area"
v-else-if="orderData.action.length == 0 && orderData.is_evaluate == 1 && evaluateConfig.evaluate_status == 1">
<view class="order-box-btn white" @click="operation('memberOrderEvaluation')"> <view class="order-box-btn white" @click="operation('memberOrderEvaluation')">
<text v-if="orderData.evaluate_status == 0">评价</text> <text v-if="orderData.evaluate_status == 0">评价</text>
<text v-else-if="orderData.evaluate_status == 1">追评</text> <text v-else-if="orderData.evaluate_status == 1">追评</text>
@@ -597,7 +621,8 @@
</view> </view>
<!-- 订单 --> <!-- 订单 -->
<view class="fixed-bottom-box bottom-safe-area" v-if="orderData.action.length > 0 || (orderData.is_evaluate == 1 && evaluateConfig.evaluate_status == 1)"> <view class="fixed-bottom-box bottom-safe-area"
v-if="orderData.action.length > 0 || (orderData.is_evaluate == 1 && evaluateConfig.evaluate_status == 1)">
</view> </view>
<ns-goods-recommend ref="goodrecommend" route="order_detail"></ns-goods-recommend> <ns-goods-recommend ref="goodrecommend" route="order_detail"></ns-goods-recommend>
@@ -608,10 +633,7 @@
</template> </template>
<script> <script>
import nsGoodsRecommend from '@/components/ns-goods-recommend/ns-goods-recommend.vue';
import orderMethod from './public/js/orderMethod.js'; import orderMethod from './public/js/orderMethod.js';
import nsPayment from '@/components/payment/payment.vue';
import nsContact from '@/components/ns-contact/ns-contact.vue';
export default { export default {
data() { data() {
return { return {
@@ -636,11 +658,6 @@
}; };
}, },
mixins: [orderMethod], mixins: [orderMethod],
components: {
nsGoodsRecommend,
nsPayment,
nsContact
},
onLoad(option) { onLoad(option) {
if (option.order_id) this.orderId = option.order_id; if (option.order_id) this.orderId = option.order_id;
if (option.merchant_trade_no) this.merchantTradeNo = option.merchant_trade_no; if (option.merchant_trade_no) this.merchantTradeNo = option.merchant_trade_no;
@@ -817,6 +834,7 @@
.pickup-code-info .code img:nth-child(1) { .pickup-code-info .code img:nth-child(1) {
margin-bottom: 30rpx; margin-bottom: 30rpx;
} }
/deep/ .sku-layer .uni-popup__wrapper.uni-custom .uni-popup__wrapper-box { /deep/ .sku-layer .uni-popup__wrapper.uni-custom .uni-popup__wrapper-box {
max-height: unset !important; max-height: unset !important;
} }

View File

@@ -1,14 +1,18 @@
<template> <template>
<view class="detail-container" :class="{ 'safe-area': isIphoneX }" :style="themeColor"> <view class="detail-container" :class="{ 'safe-area': isIphoneX }" :style="themeColor">
<!-- 订单状态 --> <!-- 订单状态 -->
<view class="status-wrap color-base-bg" :style="{ backgroundImage: 'url(' + $util.img('public/uniapp/order/status-wrap-bg.png') + ')' }"> <view class="status-wrap color-base-bg"
:style="{ backgroundImage: 'url(' + $util.img('public/uniapp/order/status-wrap-bg.png') + ')' }">
<view class="order-status-left"> <view class="order-status-left">
<image v-if="orderData.order_status == 0" :src="$util.img('public/uniapp/order/order-icon.png')" /> <image v-if="orderData.order_status == 0" :src="$util.img('public/uniapp/order/order-icon.png')" />
<image v-if="orderData.order_status == 1" :src="$util.img('public/uniapp/order/order-icon-received.png')"/> <image v-if="orderData.order_status == 1"
<image v-if="orderData.order_status == -1" :src="$util.img('public/uniapp/order/order-icon-close.png')"/> :src="$util.img('public/uniapp/order/order-icon-received.png')" />
<image v-if="orderData.order_status == -1"
:src="$util.img('public/uniapp/order/order-icon-close.png')" />
<view class="status-name"> <view class="status-name">
<view class="status-name"> <view class="status-name">
{{ orderData.order_status == 0 ? '待支付' : orderData.order_status == 1 ? '已完成' : orderData.order_status == -1 ? '已关闭' : '' }} {{ orderData.order_status == 0 ? '待支付' : orderData.order_status == 1 ? '已完成' :
orderData.order_status == -1 ? '已关闭' : '' }}
</view> </view>
</view> </view>
</view> </view>
@@ -120,7 +124,8 @@
<view class="order-action" v-if="orderData.order_status == 0 && orderData.type == 1"> <view class="order-action" v-if="orderData.order_status == 0 && orderData.type == 1">
<view class="order-box-btn" @click="orderClose()">关闭</view> <view class="order-box-btn" @click="orderClose()">关闭</view>
<view class="order-box-btn color-base-bg color-base-border color-text-white" @click="openChoosePayment()">支付</view> <view class="order-box-btn color-base-bg color-base-border color-text-white"
@click="openChoosePayment()">支付</view>
</view> </view>
</view> </view>
@@ -133,13 +138,7 @@
</template> </template>
<script> <script>
import nsGoodsRecommend from '@/components/ns-goods-recommend/ns-goods-recommend.vue';
import nsContact from '@/components/ns-contact/ns-contact.vue';
export default { export default {
components: {
nsGoodsRecommend,
nsContact
},
data() { data() {
return { return {
isIphoneX: false, isIphoneX: false,

View File

@@ -166,20 +166,8 @@
<script> <script>
import orderMethod from './public/js/orderMethod.js'; import orderMethod from './public/js/orderMethod.js';
import nsPayment from '@/components/payment/payment.vue';
import MescrollUni from "@/components/mescroll/my-list-mescroll.vue";
import nsLogin from '@/components/ns-login/ns-login.vue';
import loadingCover from '@/components/loading-cover/loading-cover.vue';
import nsEmpty from '@/components/ns-empty/ns-empty.vue';
export default { export default {
components: {
nsPayment,
MescrollUni,
nsLogin,
loadingCover,
nsEmpty
},
data() { data() {
return { return {
scrollInto: '', scrollInto: '',

View File

@@ -152,9 +152,8 @@
</template> </template>
<script> <script>
import validate from 'common/js/validate.js'; import validate from '@/common/js/validate.js';
import uniPopup from '@/components/uni-popup/uni-popup.vue'; import fenxiaoWords from '@/common/js/fenxiao-words.js';
import fenxiaoWords from 'common/js/fenxiao-words.js';
import htmlParser from '@/common/js/html-parser'; import htmlParser from '@/common/js/html-parser';
export default { export default {
data() { data() {
@@ -187,9 +186,6 @@
isOpen: false isOpen: false
}; };
}, },
components: {
uniPopup
},
mixins: [fenxiaoWords], mixins: [fenxiaoWords],
onLoad(option) { onLoad(option) {
setTimeout( () => { setTimeout( () => {

View File

@@ -3,7 +3,8 @@
<mescroll-uni ref="mescroll" @getData="getData" class="member-point" :size="8"> <mescroll-uni ref="mescroll" @getData="getData" class="member-point" :size="8">
<block slot="list"> <block slot="list">
<view class="balances" v-if="accountList.length" v-for="item in accountList" :key="item.id"> <view class="balances" v-if="accountList.length" v-for="item in accountList" :key="item.id">
<image v-if="item.type == 'order'" :src="$util.img('public/uniapp/fenxiao/bill/jiesuan.png')" mode="widthFix"></image> <image v-if="item.type == 'order'" :src="$util.img('public/uniapp/fenxiao/bill/jiesuan.png')"
mode="widthFix"></image>
<image v-else :src="$util.img('public/uniapp/fenxiao/bill/withdraw.png')" mode="widthFix"></image> <image v-else :src="$util.img('public/uniapp/fenxiao/bill/withdraw.png')" mode="widthFix"></image>
<view class="balances-info"> <view class="balances-info">
<text>{{ item.type_name }}</text> <text>{{ item.type_name }}</text>
@@ -11,7 +12,8 @@
<text>{{ $util.timeStampTurnTime(item.create_time) }}</text> <text>{{ $util.timeStampTurnTime(item.create_time) }}</text>
</view> </view>
<view class="balances-num"> <view class="balances-num">
<text :class="item.money > 0 ? 'color-base-text' : ''">{{ item.money > 0 ? '+' + item.money : item.money }}</text> <text :class="item.money > 0 ? 'color-base-text' : ''">{{ item.money > 0 ? '+' + item.money :
item.money }}</text>
</view> </view>
</view> </view>
<ns-empty v-if="!accountList.length && showEmpty" text="暂无账单信息" :isIndex="false"></ns-empty> <ns-empty v-if="!accountList.length && showEmpty" text="暂无账单信息" :isIndex="false"></ns-empty>
@@ -22,14 +24,6 @@
</template> </template>
<script> <script>
import MescrollUni from "@/components/mescroll/my-list-mescroll.vue";
import nsLogin from '@/components/ns-login/ns-login.vue';
import loadingCover from '@/components/loading-cover/loading-cover.vue';
import nsEmpty from '@/components/ns-empty/ns-empty.vue';
// #ifdef MP-WEIXIN
import privacyPopup from '@/components/wx-privacy-popup/privacy-popup.vue';
// #endif
export default { export default {
data() { data() {
return { return {
@@ -37,15 +31,6 @@ export default {
showEmpty: true showEmpty: true
}; };
}, },
components: {
nsLogin,
MescrollUni,
loadingCover,
nsEmpty,
// #ifdef MP-WEIXIN
privacyPopup
// #endif
},
onShow() { onShow() {
setTimeout(() => { setTimeout(() => {
if (!this.addonIsExist.fenxiao) { if (!this.addonIsExist.fenxiao) {

View File

@@ -40,13 +40,6 @@
</template> </template>
<script> <script>
import MescrollUni from "@/components/mescroll/my-list-mescroll.vue";
import nsLogin from '@/components/ns-login/ns-login.vue';
import loadingCover from '@/components/loading-cover/loading-cover.vue';
import nsEmpty from '@/components/ns-empty/ns-empty.vue';
// #ifdef MP-WEIXIN
import privacyPopup from '@/components/wx-privacy-popup/privacy-popup.vue';
// #endif
import fenxiaoWords from 'common/js/fenxiao-words.js'; import fenxiaoWords from 'common/js/fenxiao-words.js';
export default { export default {
@@ -56,15 +49,6 @@ export default {
emptyShow: false, emptyShow: false,
}; };
}, },
components: {
nsLogin,
MescrollUni,
loadingCover,
nsEmpty,
// #ifdef MP-WEIXIN
privacyPopup
// #endif
},
mixins: [fenxiaoWords], mixins: [fenxiaoWords],
onShow() { onShow() {
setTimeout(() => { setTimeout(() => {

View File

@@ -2,28 +2,28 @@
<view class="content" :style="themeColor"> <view class="content" :style="themeColor">
<mescroll-uni ref="mescroll" @getData="getGoodsList"> <mescroll-uni ref="mescroll" @getData="getGoodsList">
<block slot="list"> <block slot="list">
<view class="goods-list" :style="{ backgroundImage: 'url(' + $util.img('public/uniapp/fenxiao/promote/promote_bg.png') + ')' }"> <view class="goods-list"
:style="{ backgroundImage: 'url(' + $util.img('public/uniapp/fenxiao/promote/promote_bg.png') + ')' }">
<scroll-view class="quick-nav" scroll-x="true"> <scroll-view class="quick-nav" scroll-x="true">
<!-- #ifdef MP --> <!-- #ifdef MP -->
<view class="uni-scroll-view-content"> <view class="uni-scroll-view-content">
<!-- #endif --> <!-- #endif -->
<view class="quick-nav-item" :class="{ selected: categoryId == 0 }" @click="changeCategory(0)">全部</view> <view class="quick-nav-item" :class="{ selected: categoryId == 0 }"
<view @click="changeCategory(0)">全部</view>
class="quick-nav-item" <view class="quick-nav-item" v-for="item in categoryList" :key="item.category_id"
v-for="item in categoryList"
:key="item.category_id"
:class="{ selected: categoryId == item.category_id }" :class="{ selected: categoryId == item.category_id }"
@click="changeCategory(item.category_id)" @click="changeCategory(item.category_id)">
>
{{ item.category_name }} {{ item.category_name }}
</view> </view>
<!-- #ifdef MP --> <!-- #ifdef MP -->
</view> </view>
<!-- #endif --> <!-- #endif -->
</scroll-view> </scroll-view>
<view v-for="(item, index) in goodsList" :key="index" class="goods-item" @click="navToDetailPage(item)"> <view v-for="(item, index) in goodsList" :key="index" class="goods-item"
@click="navToDetailPage(item)">
<view class="image-wrap"> <view class="image-wrap">
<image :src="$util.img(item.sku_image, { size: 'mid' })" @error="imageError(index)" mode="aspectFill" /> <image :src="$util.img(item.sku_image, { size: 'mid' })" @error="imageError(index)"
mode="aspectFill" />
</view> </view>
<view class="goods-content"> <view class="goods-content">
<view class="goods-name"> <view class="goods-name">
@@ -124,34 +124,16 @@
</uni-popup> </uni-popup>
</view> </view>
<!-- #ifdef MP-WEIXIN --> <!-- 隐私弹窗 -->
<!-- 小程序隐私协议 -->
<privacy-popup ref="privacyPopup"></privacy-popup> <privacy-popup ref="privacyPopup"></privacy-popup>
<!-- #endif -->
</view> </view>
</template> </template>
<script> <script>
import MescrollUni from "@/components/mescroll/my-list-mescroll.vue";
import nsLogin from '@/components/ns-login/ns-login.vue';
import loadingCover from '@/components/loading-cover/loading-cover.vue';
import nsEmpty from '@/components/ns-empty/ns-empty.vue';
// #ifdef MP-WEIXIN
import privacyPopup from '@/components/wx-privacy-popup/privacy-popup.vue';
// #endif
import list from './public/js/goods_list.js'; import list from './public/js/goods_list.js';
import fenxiaoWords from 'common/js/fenxiao-words.js'; import fenxiaoWords from 'common/js/fenxiao-words.js';
export default { export default {
components: {
nsLogin,
MescrollUni,
loadingCover,
nsEmpty,
// #ifdef MP-WEIXIN
privacyPopup
// #endif
},
mixins: [list, fenxiaoWords] mixins: [list, fenxiaoWords]
}; };
</script> </script>
@@ -165,8 +147,10 @@ export default {
/deep/ .uni-popup__wrapper.uni-custom .uni-popup__wrapper-box { /deep/ .uni-popup__wrapper.uni-custom .uni-popup__wrapper-box {
max-height: unset !important; max-height: unset !important;
} }
.quick-nav { .quick-nav {
margin-bottom: 20rpx; margin-bottom: 20rpx;
.quick-nav-item { .quick-nav-item {
display: flex; display: flex;
align-items: center; align-items: center;
@@ -190,6 +174,7 @@ export default {
} }
} }
} }
.content { .content {
overflow: hidden; overflow: hidden;
padding: 0 30rpx 160rpx; padding: 0 30rpx 160rpx;
@@ -202,12 +187,14 @@ export default {
background-size: 100%; background-size: 100%;
background-repeat: no-repeat; background-repeat: no-repeat;
box-sizing: border-box; box-sizing: border-box;
.goods-item { .goods-item {
margin-bottom: 20rpx; margin-bottom: 20rpx;
background: #ffffff; background: #ffffff;
padding: $padding; padding: $padding;
display: flex; display: flex;
border-radius: 10rpx; border-radius: 10rpx;
&:last-child { &:last-child {
margin-bottom: 0; margin-bottom: 0;
} }
@@ -221,6 +208,7 @@ export default {
border-radius: 10rpx; border-radius: 10rpx;
overflow: hidden; overflow: hidden;
flex-shrink: 0; flex-shrink: 0;
image { image {
width: 100%; width: 100%;
height: 100%; height: 100%;
@@ -241,6 +229,7 @@ export default {
.goods-name { .goods-name {
width: 100%; width: 100%;
line-height: 1.3; line-height: 1.3;
.name { .name {
line-height: 1.3; line-height: 1.3;
word-break: break-all; word-break: break-all;
@@ -250,10 +239,12 @@ export default {
-webkit-line-clamp: 2; -webkit-line-clamp: 2;
-webkit-box-orient: vertical; -webkit-box-orient: vertical;
} }
.label-list { .label-list {
display: flex; display: flex;
align-items: center; align-items: center;
margin-top: 6rpx; margin-top: 6rpx;
.label-item { .label-item {
padding: 4rpx 10rpx; padding: 4rpx 10rpx;
font-size: $font-size-tag; font-size: $font-size-tag;
@@ -285,6 +276,7 @@ export default {
padding: 0 $padding; padding: 0 $padding;
border-radius: 50rpx; border-radius: 50rpx;
border: 2rpx solid $base-color; border: 2rpx solid $base-color;
text { text {
color: $base-color; color: $base-color;
border-radius: 40rpx; border-radius: 40rpx;
@@ -299,6 +291,7 @@ export default {
} }
} }
} }
.active-btn { .active-btn {
position: fixed; position: fixed;
bottom: 40rpx; bottom: 40rpx;
@@ -312,10 +305,12 @@ export default {
border-radius: 50rpx; border-radius: 50rpx;
background-color: $base-color; background-color: $base-color;
color: #fff; color: #fff;
.btn { .btn {
flex: 1; flex: 1;
text-align: center; text-align: center;
} }
.share-btn { .share-btn {
margin: 0; margin: 0;
padding: 0; padding: 0;
@@ -355,6 +350,7 @@ export default {
border: none; border: none;
line-height: 1; line-height: 1;
height: auto; height: auto;
text { text {
margin-top: 20rpx; margin-top: 20rpx;
font-size: $font-size-tag; font-size: $font-size-tag;
@@ -367,6 +363,7 @@ export default {
font-size: 80rpx; font-size: 80rpx;
line-height: initial; line-height: initial;
} }
.icon-fuzhilianjie, .icon-fuzhilianjie,
.icon-pengyouquan, .icon-pengyouquan,
.icon-haowuquan, .icon-haowuquan,
@@ -383,39 +380,48 @@ export default {
text-align: center; text-align: center;
} }
} }
.poster-layer { .poster-layer {
.generate-poster { .generate-poster {
padding: 40rpx 0; padding: 40rpx 0;
.iconfont { .iconfont {
font-size: 80rpx; font-size: 80rpx;
color: #07c160; color: #07c160;
line-height: initial; line-height: initial;
} }
>view { >view {
text-align: center; text-align: center;
&:last-child { &:last-child {
margin-top: 20rpx; margin-top: 20rpx;
} }
} }
} }
.image-wrap { .image-wrap {
width: 64%; width: 64%;
height: 854rpx; height: 854rpx;
margin: 60rpx auto 40rpx auto; margin: 60rpx auto 40rpx auto;
box-shadow: 0 0 32rpx rgba(100, 100, 100, 0.3); box-shadow: 0 0 32rpx rgba(100, 100, 100, 0.3);
image { image {
width: 480rpx; width: 480rpx;
height: 854rpx; height: 854rpx;
} }
} }
.msg { .msg {
padding: 40rpx; padding: 40rpx;
} }
.save { .save {
text-align: center; text-align: center;
height: 80rpx; height: 80rpx;
line-height: 80rpx; line-height: 80rpx;
} }
.close { .close {
position: absolute; position: absolute;
top: 0; top: 0;

View File

@@ -261,12 +261,8 @@
<script> <script>
import fenxiaoWords from '@/common/js/fenxiao-words.js'; import fenxiaoWords from '@/common/js/fenxiao-words.js';
import uniPopup from '@/components/uni-popup/uni-popup.vue';
export default { export default {
components: {
uniPopup
},
data() { data() {
return { return {
info: { info: {

View File

@@ -2,40 +2,51 @@
<view :style="themeColor"> <view :style="themeColor">
<view class="withdraw-cate"> <view class="withdraw-cate">
<block v-for="(item, index) in category" :key="index"> <block v-for="(item, index) in category" :key="index">
<view @click="selectCate(item.id)" class="cate-li" :class="{ 'active color-base-text color-base-bg-before': selectId == item.id }">{{ item.name }}</view> <view @click="selectCate(item.id)" class="cate-li"
:class="{ 'active color-base-text color-base-bg-before': selectId == item.id }">{{ item.name }}
</view>
</block> </block>
</view> </view>
<mescroll-uni ref="mescroll" @getData="getData" top="90" class="member-point" :size="8" v-if="storeToken"> <mescroll-uni ref="mescroll" @getData="getData" top="90" class="member-point" :size="8" v-if="storeToken">
<view class="goods_list" slot="list"> <view class="goods_list" slot="list">
<view class="order-list"> <view class="order-list">
<view class="order-item" v-for="(orderItem, orderIndex) in orderList" :key="orderIndex" @click="toDetail(orderItem.fenxiao_order_id)"> <view class="order-item" v-for="(orderItem, orderIndex) in orderList" :key="orderIndex"
@click="toDetail(orderItem.fenxiao_order_id)">
<view class="order-header"> <view class="order-header">
<text class="site-name font-size-base">{{ orderItem.order_no }}</text> <text class="site-name font-size-base">{{ orderItem.order_no }}</text>
<text class="status-name color-base-text" v-if="orderItem.is_refund == 1">已退款</text> <text class="status-name color-base-text" v-if="orderItem.is_refund == 1">已退款</text>
<text class="status-name color-text-green" v-else-if="orderItem.is_settlement == 1">已结算</text> <text class="status-name color-text-green"
v-else-if="orderItem.is_settlement == 1">已结算</text>
<text class="status-name color-text-orange" v-else>待结算</text> <text class="status-name color-text-orange" v-else>待结算</text>
</view> </view>
<view class="order-body"> <view class="order-body">
<view class="goods-wrap"> <view class="goods-wrap">
<view class="goods-img"> <view class="goods-img">
<image :src="$util.img(orderItem.sku_image, { size: 'mid' })" @error="imageError(orderIndex)" mode="aspectFill" :lazy-load="true"></image> <image :src="$util.img(orderItem.sku_image, { size: 'mid' })"
@error="imageError(orderIndex)" mode="aspectFill" :lazy-load="true"></image>
</view> </view>
<view class="goods-info"> <view class="goods-info">
<view class="top-wrap"> <view class="top-wrap">
<view class="goods-name font-size-base">{{ orderItem.sku_name }}</view> <view class="goods-name font-size-base">{{ orderItem.sku_name }}</view>
<view> <view>
<text class="color-tip">{{ fenxiaoWords.account }}</text> <text class="color-tip">{{ fenxiaoWords.account }}</text>
<text class="price-color price-style small">{{ $lang('common.currencySymbol') }}</text> <text class="price-color price-style small">{{
<text class="price-color price-style large" >{{ parseFloat(orderItem.commission).toFixed(2).split(".")[0] }}</text> $lang('common.currencySymbol') }}</text>
<text class="price-color price-style small">.{{ parseFloat(orderItem.commission).toFixed(2).split(".")[1] }}</text> <text class="price-color price-style large">{{
parseFloat(orderItem.commission).toFixed(2).split(".")[0] }}</text>
<text class="price-color price-style small">.{{
parseFloat(orderItem.commission).toFixed(2).split(".")[1] }}</text>
</view> </view>
</view> </view>
<view class="goods-sub-section"> <view class="goods-sub-section">
<view class="goods-price"> <view class="goods-price">
<text class="unit price-style small">{{ $lang('common.currencySymbol') }}</text> <text class="unit price-style small">{{ $lang('common.currencySymbol')
<text class="price-color price-style large" >{{ parseFloat(orderItem.price).toFixed(2).split(".")[0] }}</text> }}</text>
<text class="unit price-style small">.{{ parseFloat(orderItem.price).toFixed(2).split(".")[1] }}</text> <text class="price-color price-style large">{{
parseFloat(orderItem.price).toFixed(2).split(".")[0] }}</text>
<text class="unit price-style small">.{{
parseFloat(orderItem.price).toFixed(2).split(".")[1] }}</text>
</view> </view>
<view> <view>
<text> <text>
@@ -57,18 +68,24 @@
<view class="total"> <view class="total">
<text>合计</text> <text>合计</text>
<text class="price-color">{{ $lang('common.currencySymbol') }}</text> <text class="price-color">{{ $lang('common.currencySymbol') }}</text>
<text class="price-color font-size-toolbar" >{{ parseFloat(orderItem.real_goods_money).toFixed(2).split(".")[0] }}</text> <text class="price-color font-size-toolbar">{{
<text class="price-color">.{{ parseFloat(orderItem.real_goods_money).toFixed(2).split(".")[1] }}</text> parseFloat(orderItem.real_goods_money).toFixed(2).split(".")[0] }}</text>
<text class="price-color">.{{
parseFloat(orderItem.real_goods_money).toFixed(2).split(".")[1] }}</text>
</view> </view>
</view> </view>
</view> </view>
</view> </view>
</view> </view>
<view class="cart-empty"> <view class="cart-empty">
<ns-empty text="暂无订单" :isIndex="false" v-if="selectId == 0 && orderList.length == 0 && emptyShow"></ns-empty> <ns-empty text="暂无订单" :isIndex="false"
<ns-empty text="暂无待结算订单" :isIndex="false" v-if="selectId == 1 && orderList.length == 0 && emptyShow"></ns-empty> v-if="selectId == 0 && orderList.length == 0 && emptyShow"></ns-empty>
<ns-empty text="暂无结算订单" :isIndex="false" v-if="selectId == 2 && orderList.length == 0 && emptyShow"></ns-empty> <ns-empty text="暂无结算订单" :isIndex="false"
<ns-empty text="暂无已退款订单" :isIndex="false" v-if="selectId == 3 && orderList.length == 0 && emptyShow"></ns-empty> v-if="selectId == 1 && orderList.length == 0 && emptyShow"></ns-empty>
<ns-empty text="暂无已结算订单" :isIndex="false"
v-if="selectId == 2 && orderList.length == 0 && emptyShow"></ns-empty>
<ns-empty text="暂无已退款订单" :isIndex="false"
v-if="selectId == 3 && orderList.length == 0 && emptyShow"></ns-empty>
</view> </view>
</view> </view>
</mescroll-uni> </mescroll-uni>
@@ -79,24 +96,8 @@
</template> </template>
<script> <script>
import MescrollUni from "@/components/mescroll/my-list-mescroll.vue";
import nsLogin from '@/components/ns-login/ns-login.vue';
import loadingCover from '@/components/loading-cover/loading-cover.vue';
import nsEmpty from '@/components/ns-empty/ns-empty.vue';
// #ifdef MP-WEIXIN
import privacyPopup from '@/components/wx-privacy-popup/privacy-popup.vue';
// #endif
import fenxiaoWords from 'common/js/fenxiao-words.js'; import fenxiaoWords from 'common/js/fenxiao-words.js';
export default { export default {
components: {
nsLogin,
MescrollUni,
loadingCover,
nsEmpty,
// #ifdef MP-WEIXIN
privacyPopup
// #endif
},
data() { data() {
return { return {
category: [ category: [

View File

@@ -25,7 +25,8 @@
<view class="action-wrap"> <view class="action-wrap">
<view @click="closeDialog">取消</view> <view @click="closeDialog">取消</view>
<view> <view>
<button type="default" open-type="openSetting" @opensetting="closeDialog" hover-class="none">立即授权</button> <button type="default" open-type="openSetting" @opensetting="closeDialog"
hover-class="none">立即授权</button>
</view> </view>
</view> </view>
</view> </view>
@@ -34,10 +35,8 @@
<ns-login ref="login"></ns-login> <ns-login ref="login"></ns-login>
<loading-cover ref="loadingCover"></loading-cover> <loading-cover ref="loadingCover"></loading-cover>
<!-- #ifdef MP-WEIXIN --> <!-- 隐私弹窗 -->
<!-- 小程序隐私协议 -->
<privacy-popup ref="privacyPopup"></privacy-popup> <privacy-popup ref="privacyPopup"></privacy-popup>
<!-- #endif -->
</view> </view>
</template> </template>
@@ -45,7 +44,6 @@
import { import {
Weixin Weixin
} from 'common/js/wx-jssdk.js'; } from 'common/js/wx-jssdk.js';
import uniPopup from '@/components/uni-popup/uni-popup.vue';
export default { export default {
data() { data() {
@@ -58,9 +56,6 @@
mpShareData: null //小程序分享数据 mpShareData: null //小程序分享数据
}; };
}, },
components: {
uniPopup
},
methods: { methods: {
/** /**
* 获取分销海报 * 获取分销海报

View File

@@ -3,17 +3,22 @@
<mescroll-uni ref="mescroll" @getData="getData" top="0" :size="10"> <mescroll-uni ref="mescroll" @getData="getData" top="0" :size="10">
<view slot="list"> <view slot="list">
<block v-if="list.length != 0"> <block v-if="list.length != 0">
<view class="banner" :style="{background: 'url('+ $util.img('public/uniapp/fenxiao/index/header_bg.png') +') no-repeat top left / 100% 100%'}"> <view class="banner"
:style="{ background: 'url(' + $util.img('public/uniapp/fenxiao/index/header_bg.png') + ') no-repeat top left / 100% 100%' }">
<view class="info"> <view class="info">
<view class="info-pic"> <view class="info-pic">
<image :src="info.headimg ? $util.img(info.headimg) : $util.getDefaultImage().head" @error="info.headimg = $util.getDefaultImage().head" mode="aspectFill"/> <image :src="info.headimg ? $util.img(info.headimg) : $util.getDefaultImage().head"
@error="info.headimg = $util.getDefaultImage().head" mode="aspectFill" />
</view> </view>
<view class="member-info"> <view class="member-info">
<view class="rank-info-box"> <view class="rank-info-box">
<text class="name">{{ info.nickname }}</text> <text class="name">{{ info.nickname }}</text>
</view> </view>
<view class="withdrawal" @click="$util.redirectTo('/pages_promotion/fenxiao/withdraw_apply')" v-if="type == 'profit'">点击提现</view> <view class="withdrawal"
<view class="withdrawal" @click="$util.redirectTo('/pages_promotion/fenxiao/team')" v-if="type == 'invited_num'">我的团队</view> @click="$util.redirectTo('/pages_promotion/fenxiao/withdraw_apply')"
v-if="type == 'profit'">点击提现</view>
<view class="withdrawal" @click="$util.redirectTo('/pages_promotion/fenxiao/team')"
v-if="type == 'invited_num'">我的团队</view>
</view> </view>
</view> </view>
</view> </view>
@@ -75,7 +80,8 @@
<view class="ranking price-font">{{ index + 1 }}</view> <view class="ranking price-font">{{ index + 1 }}</view>
<view class="content"> <view class="content">
<view class="head-img"> <view class="head-img">
<image :src="item.headimg ? $util.img(item.headimg) : $util.getDefaultImage().head" @error="item.headimg = $util.getDefaultImage().head" mode="aspectFill"/> <image :src="item.headimg ? $util.img(item.headimg) : $util.getDefaultImage().head"
@error="item.headimg = $util.getDefaultImage().head" mode="aspectFill" />
</view> </view>
<view class="nickname">{{ item.nickname }}</view> <view class="nickname">{{ item.nickname }}</view>
</view> </view>
@@ -97,25 +103,7 @@
</template> </template>
<script> <script>
import MescrollUni from "@/components/mescroll/my-list-mescroll.vue";
import nsLogin from '@/components/ns-login/ns-login.vue';
import loadingCover from '@/components/loading-cover/loading-cover.vue';
import nsEmpty from '@/components/ns-empty/ns-empty.vue';
// #ifdef MP-WEIXIN
import privacyPopup from '@/components/wx-privacy-popup/privacy-popup.vue';
// #endif
export default { export default {
components: {
nsLogin,
MescrollUni,
loadingCover,
nsEmpty,
// #ifdef MP-WEIXIN
privacyPopup
// #endif
},
data() { data() {
return { return {
list: [], list: [],

View File

@@ -72,25 +72,9 @@
</template> </template>
<script> <script>
import MescrollUni from "@/components/mescroll/my-list-mescroll.vue";
import nsLogin from '@/components/ns-login/ns-login.vue';
import loadingCover from '@/components/loading-cover/loading-cover.vue';
import nsEmpty from '@/components/ns-empty/ns-empty.vue';
// #ifdef MP-WEIXIN
import privacyPopup from '@/components/wx-privacy-popup/privacy-popup.vue';
// #endif
import fenxiaoWords from 'common/js/fenxiao-words.js'; import fenxiaoWords from 'common/js/fenxiao-words.js';
export default { export default {
components: {
nsLogin,
MescrollUni,
loadingCover,
nsEmpty,
// #ifdef MP-WEIXIN
privacyPopup
// #endif
},
data() { data() {
return { return {
orderList: [], orderList: [],

View File

@@ -83,24 +83,8 @@
</template> </template>
<script> <script>
import MescrollUni from "@/components/mescroll/my-list-mescroll.vue";
import nsLogin from '@/components/ns-login/ns-login.vue';
import loadingCover from '@/components/loading-cover/loading-cover.vue';
import nsEmpty from '@/components/ns-empty/ns-empty.vue';
// #ifdef MP-WEIXIN
import privacyPopup from '@/components/wx-privacy-popup/privacy-popup.vue';
// #endif
import fenxiaoWords from 'common/js/fenxiao-words.js'; import fenxiaoWords from 'common/js/fenxiao-words.js';
export default { export default {
components: {
nsLogin,
MescrollUni,
loadingCover,
nsEmpty,
// #ifdef MP-WEIXIN
privacyPopup
// #endif
},
data() { data() {
return { return {
levelList: [ levelList: [

View File

@@ -5,16 +5,20 @@
<block v-if="withdrawList.length"> <block v-if="withdrawList.length">
<view class="detailed-wrap"> <view class="detailed-wrap">
<view class="cont"> <view class="cont">
<view class="detailed-item" v-for="(item, index) in withdrawList" :key="index" @click="toDetail(item.id)"> <view class="detailed-item" v-for="(item, index) in withdrawList" :key="index"
@click="toDetail(item.id)">
<view class="info"> <view class="info">
<view class="event">{{ item.transfer_type=='balance'&&'余额' || item.transfer_type=='alipay'&&'支付宝' || item.transfer_type=='bank'&&'银行卡' || item.transfer_type=='wechatpay'&&'微信' }}</view> <view class="event">{{ item.transfer_type == 'balance' && '余额' ||
item.transfer_type == 'alipay' && '支付宝' || item.transfer_type == 'bank' && '银行卡' ||
item.transfer_type =='wechatpay'&&'微信' }}</view>
<view> <view>
<text class="time">{{ $util.timeStampTurnTime(item.create_time) }}</text> <text class="time">{{ $util.timeStampTurnTime(item.create_time) }}</text>
</view> </view>
</view> </view>
<view class="right-wrap"> <view class="right-wrap">
<view class="num color-base-text">{{ item.money }}</view> <view class="num color-base-text">{{ item.money }}</view>
<view class="status-name" :style="withdrawState[item.status].color">{{ item.status_name }}</view> <view class="status-name" :style="withdrawState[item.status].color">{{
item.status_name }}</view>
</view> </view>
</view> </view>
</view> </view>
@@ -30,25 +34,9 @@
</view> </view>
</template> </template>
<script> <script>
import MescrollUni from "@/components/mescroll/my-list-mescroll.vue";
import nsLogin from '@/components/ns-login/ns-login.vue';
import loadingCover from '@/components/loading-cover/loading-cover.vue';
import nsEmpty from '@/components/ns-empty/ns-empty.vue';
// #ifdef MP-WEIXIN
import privacyPopup from '@/components/wx-privacy-popup/privacy-popup.vue';
// #endif
import fenxiaoWords from 'common/js/fenxiao-words.js'; import fenxiaoWords from 'common/js/fenxiao-words.js';
export default { export default {
components: {
nsLogin,
MescrollUni,
loadingCover,
nsEmpty,
// #ifdef MP-WEIXIN
privacyPopup
// #endif
},
data() { data() {
return { return {
withdrawState: { withdrawState: {

View File

@@ -29,7 +29,8 @@
<!-- 排序 --> <!-- 排序 -->
<view class="sort-wrap"> <view class="sort-wrap">
<view class="comprehensive-wrap" :class="{ 'color-base-text': orderType === '' }" @click="sortTabClick('')"> <view class="comprehensive-wrap" :class="{ 'color-base-text': orderType === '' }"
@click="sortTabClick('')">
<text :class="{ 'color-base-text': orderType === '' }">综合</text> <text :class="{ 'color-base-text': orderType === '' }">综合</text>
</view> </view>
@@ -39,8 +40,12 @@
<view class="price-wrap" @click="sortTabClick('discount_price')"> <view class="price-wrap" @click="sortTabClick('discount_price')">
<text :class="{ 'color-base-text': orderType === 'discount_price' }">价格</text> <text :class="{ 'color-base-text': orderType === 'discount_price' }">价格</text>
<view class="iconfont-wrap"> <view class="iconfont-wrap">
<view class="iconfont icon-iconangledown-copy asc" :class="{ 'color-base-text': priceOrder === 'asc' && orderType === 'discount_price' }"></view> <view class="iconfont icon-iconangledown-copy asc"
<view class="iconfont icon-iconangledown desc" :class="{ 'color-base-text': priceOrder === 'desc' && orderType === 'discount_price' }"></view> :class="{ 'color-base-text': priceOrder === 'asc' && orderType === 'discount_price' }">
</view>
<view class="iconfont icon-iconangledown desc"
:class="{ 'color-base-text': priceOrder === 'desc' && orderType === 'discount_price' }">
</view>
</view> </view>
</view> </view>
@@ -56,17 +61,20 @@
<mescroll-uni top="240" ref="mescroll" @getData="getGoodsList"> <mescroll-uni top="240" ref="mescroll" @getData="getGoodsList">
<block slot="list"> <block slot="list">
<view class="goods-list single-column" :class="{ show: isList }"> <view class="goods-list single-column" :class="{ show: isList }">
<view class="goods-item margin-bottom" v-for="(item, index) in goodsList" :key="index" @click="toDetail(item)"> <view class="goods-item margin-bottom" v-for="(item, index) in goodsList" :key="index"
@click="toDetail(item)">
<view class="goods-img"> <view class="goods-img">
<image :src="goodsImg(item.goods_image)" mode="widthFix" @error="imgError(index)"></image> <image :src="goodsImg(item.goods_image)" mode="widthFix" @error="imgError(index)"></image>
<view class="color-base-bg goods-tag" v-if="goodsTag(item) != ''">{{ goodsTag(item) }}</view> <view class="color-base-bg goods-tag" v-if="goodsTag(item) != ''">{{ goodsTag(item) }}
</view>
<view class="sell-out" v-if="item.stock <= 0"> <view class="sell-out" v-if="item.stock <= 0">
<text class="iconfont icon-shuqing"></text> <text class="iconfont icon-shuqing"></text>
</view> </view>
</view> </view>
<view class="info-wrap"> <view class="info-wrap">
<view class="name-wrap"> <view class="name-wrap">
<view class="goods-name" :class="[{ 'using-hidden': config.nameLineMode == 'single' }, { 'multi-hidden': config.nameLineMode == 'multiple' }]"> <view class="goods-name"
:class="[{ 'using-hidden': config.nameLineMode == 'single' }, { 'multi-hidden': config.nameLineMode == 'multiple' }]">
{{ isEnEnv ? item.en_goods_name : item.goods_name }} {{ isEnEnv ? item.en_goods_name : item.goods_name }}
</view> </view>
</view> </view>
@@ -74,15 +82,19 @@
<view class="lineheight-clear"> <view class="lineheight-clear">
<view class="discount-price" v-if="item.isinformation == 0"> <view class="discount-price" v-if="item.isinformation == 0">
<text class="unit price-style small">{{ $lang('common.currencySymbol') }}</text> <text class="unit price-style small">{{ $lang('common.currencySymbol') }}</text>
<text class="price price-style large">{{ parseFloat(showPrice(item)).toFixed(2).split('.')[0] }}</text> <text class="price price-style large">{{
<text class="unit price-style small">.{{ parseFloat(showPrice(item)).toFixed(2).split('.')[1] }}</text> parseFloat(showPrice(item)).toFixed(2).split('.')[0] }}</text>
<text class="unit price-style small">.{{
parseFloat(showPrice(item)).toFixed(2).split('.')[1] }}</text>
</view> </view>
<view class="discount-price" v-else> <view class="discount-price" v-else>
<text class="price price-style large">{{ $lang('Make') ? $lang('Make') : '询底价' }}</text> <text class="price price-style large">{{ $lang('Make') ? $lang('Make') : '询底价'
}}</text>
</view> </view>
<view class="member-price-tag" v-if="item.member_price && item.member_price == showPrice(item)"> <view class="member-price-tag"
v-if="item.member_price && item.member_price == showPrice(item)">
<image :src="$util.img('public/uniapp/index/VIP.png')" mode="widthFix"></image> <image :src="$util.img('public/uniapp/index/VIP.png')" mode="widthFix"></image>
</view> </view>
<view class="member-price-tag" v-else-if="item.promotion_type == 1"> <view class="member-price-tag" v-else-if="item.promotion_type == 1">
@@ -95,7 +107,8 @@
<text>{{ showMarketPrice(item) }}</text> <text>{{ showMarketPrice(item) }}</text>
</view> </view>
<view class="block-wrap"> <view class="block-wrap">
<view class="sale color-tip" v-if="item.sale_show">已售{{ item.sale_num }}{{ item.unit ? item.unit : '' }}</view> <view class="sale color-tip" v-if="item.sale_show">已售{{ item.sale_num }}{{ item.unit
? item.unit : '' }}</view>
</view> </view>
<view class="cart-action-wrap" v-if="config.control && item.is_virtual == 0"> <view class="cart-action-wrap" v-if="config.control && item.is_virtual == 0">
<!-- 购物车图标 --> <!-- 购物车图标 -->
@@ -134,7 +147,8 @@
}" class="icon-diy click-wrap" :id="'goods-' + item.id" }" class="icon-diy click-wrap" :id="'goods-' + item.id"
@click.stop="$refs.goodsSkuIndex.addCart(config.cartEvent, item, $event)"> @click.stop="$refs.goodsSkuIndex.addCart(config.cartEvent, item, $event)">
<view class="click-event"></view> <view class="click-event"></view>
<diy-icon :icon="config.iconDiy.icon" :value="config.iconDiy.style ? config.iconDiy.style : null"></diy-icon> <diy-icon :icon="config.iconDiy.icon"
:value="config.iconDiy.style ? config.iconDiy.style : null"></diy-icon>
</view> </view>
</view> </view>
</view> </view>
@@ -143,29 +157,36 @@
</view> </view>
<view class="goods-list double-column" :class="{ show: !isList }"> <view class="goods-list double-column" :class="{ show: !isList }">
<view class="goods-item margin-bottom" v-for="(item, index) in goodsList" :key="index" <view class="goods-item margin-bottom" v-for="(item, index) in goodsList" :key="index"
@click="toDetail(item)" :style="{ left: listPosition[index] ? listPosition[index].left : '', top: listPosition[index] ? listPosition[index].top : '' }"> @click="toDetail(item)"
:style="{ left: listPosition[index] ? listPosition[index].left : '', top: listPosition[index] ? listPosition[index].top : '' }">
<view class="goods-img"> <view class="goods-img">
<image :src="goodsImg(item.goods_image)" mode="widthFix" @error="imgError(index)"></image> <image :src="goodsImg(item.goods_image)" mode="widthFix" @error="imgError(index)"></image>
<view class="color-base-bg goods-tag" v-if="goodsTag(item) != ''">{{ goodsTag(item) }}</view> <view class="color-base-bg goods-tag" v-if="goodsTag(item) != ''">{{ goodsTag(item) }}
</view>
<view class="sell-out" v-if="item.stock <= 0"> <view class="sell-out" v-if="item.stock <= 0">
<text class="iconfont icon-shuqing"></text> <text class="iconfont icon-shuqing"></text>
</view> </view>
</view> </view>
<view class="info-wrap"> <view class="info-wrap">
<view class="goods-name" :class="[{ 'using-hidden': config.nameLineMode == 'single' }, { 'multi-hidden': config.nameLineMode == 'multiple' }]"> <view class="goods-name"
:class="[{ 'using-hidden': config.nameLineMode == 'single' }, { 'multi-hidden': config.nameLineMode == 'multiple' }]">
{{ isEnEnv ? item.en_goods_name : item.goods_name }} {{ isEnEnv ? item.en_goods_name : item.goods_name }}
</view> </view>
<view class="lineheight-clear"> <view class="lineheight-clear">
<view class="discount-price" v-if="item.isinformation == 0"> <view class="discount-price" v-if="item.isinformation == 0">
<text class="unit price-style small">{{ $lang('common.currencySymbol') }}</text> <text class="unit price-style small">{{ $lang('common.currencySymbol') }}</text>
<text class="price price-style large">{{ parseFloat(showPrice(item)).toFixed(2).split('.')[0] }}</text> <text class="price price-style large">{{
<text class="unit price-style small">.{{ parseFloat(showPrice(item)).toFixed(2).split('.')[1] }}</text> parseFloat(showPrice(item)).toFixed(2).split('.')[0] }}</text>
<text class="unit price-style small">.{{
parseFloat(showPrice(item)).toFixed(2).split('.')[1] }}</text>
</view> </view>
<view class="discount-price" v-else> <view class="discount-price" v-else>
<text class="price price-style large">{{ $lang('Make') ? $lang('Make') : '询底价' }}</text> <text class="price price-style large">{{ $lang('Make') ? $lang('Make') : '询底价'
}}</text>
</view> </view>
<view class="member-price-tag" v-if="item.member_price && item.member_price == showPrice(item)"> <view class="member-price-tag"
v-if="item.member_price && item.member_price == showPrice(item)">
<image :src="$util.img('public/uniapp/index/VIP.png')" mode="widthFix"></image> <image :src="$util.img('public/uniapp/index/VIP.png')" mode="widthFix"></image>
</view> </view>
<view class="member-price-tag" v-else-if="item.promotion_type == 1"> <view class="member-price-tag" v-else-if="item.promotion_type == 1">
@@ -178,7 +199,8 @@
</view> </view>
<view class="pro-info" v-if="item.isinformation == 0"> <view class="pro-info" v-if="item.isinformation == 0">
<view class="block-wrap"> <view class="block-wrap">
<view class="sale color-tip" v-if="item.sale_show">已售{{ item.sale_num }}{{ item.unit ? item.unit : '' }}</view> <view class="sale color-tip" v-if="item.sale_show">已售{{ item.sale_num }}{{ item.unit
? item.unit : '' }}</view>
</view> </view>
<view class="cart-action-wrap" v-if="config.control && item.is_virtual == 0"> <view class="cart-action-wrap" v-if="config.control && item.is_virtual == 0">
<!-- 购物车图标 --> <!-- 购物车图标 -->
@@ -217,7 +239,8 @@
}" class="icon-diy click-wrap" :id="'goods-' + item.id" }" class="icon-diy click-wrap" :id="'goods-' + item.id"
@click.stop="$refs.goodsSkuIndex.addCart(config.cartEvent, item, $event)"> @click.stop="$refs.goodsSkuIndex.addCart(config.cartEvent, item, $event)">
<view class="click-event"></view> <view class="click-event"></view>
<diy-icon :icon="config.iconDiy.icon" :value="config.iconDiy.style ? config.iconDiy.style : null"></diy-icon> <diy-icon :icon="config.iconDiy.icon"
:value="config.iconDiy.style ? config.iconDiy.style : null"></diy-icon>
</view> </view>
</view> </view>
</view> </view>
@@ -269,8 +292,11 @@
<view @click="selectedCategory('')" class="list-wrap"> <view @click="selectedCategory('')" class="list-wrap">
<text :class="{ selected: !categoryId, 'color-base-text': !categoryId }">全部</text> <text :class="{ selected: !categoryId, 'color-base-text': !categoryId }">全部</text>
</view> </view>
<view @click="selectedCategory(item.category_id)" v-for="(item, index) in categoryList" :key="index" class="list-wrap"> <view @click="selectedCategory(item.category_id)" v-for="(item, index) in categoryList"
<text :class="{ selected: item.category_id == categoryId, 'color-base-text': item.category_id == categoryId }">{{ item.category_name }}</text> :key="index" class="list-wrap">
<text
:class="{ selected: item.category_id == categoryId, 'color-base-text': item.category_id == categoryId }">{{
item.category_name }}</text>
</view> </view>
</view> </view>
</view> </view>
@@ -282,39 +308,16 @@
</uni-drawer> </uni-drawer>
<loading-cover ref="loadingCover"></loading-cover> <loading-cover ref="loadingCover"></loading-cover>
<!-- #ifdef MP-WEIXIN --> <!-- 隐私弹窗 -->
<!-- 小程序隐私协议 -->
<privacy-popup ref="privacyPopup"></privacy-popup> <privacy-popup ref="privacyPopup"></privacy-popup>
<!-- #endif -->
</view> </view>
</template> </template>
<script> <script>
import uniDrawer from '@/components/uni-drawer/uni-drawer.vue';
import uniTag from '@/components/uni-tag/uni-tag.vue';
import nsGoodsSkuIndex from '@/components/ns-goods-sku/ns-goods-sku-index.vue';
import MescrollUni from "@/components/mescroll/my-list-mescroll.vue";
import nsLogin from '@/components/ns-login/ns-login.vue';
import loadingCover from '@/components/loading-cover/loading-cover.vue';
import nsEmpty from '@/components/ns-empty/ns-empty.vue';
// #ifdef MP-WEIXIN
import privacyPopup from '@/components/wx-privacy-popup/privacy-popup.vue';
// #endif
import list from './public/js/list.js'; import list from './public/js/list.js';
export default { export default {
components: {
uniDrawer,
uniTag,
nsGoodsSkuIndex,
MescrollUni,
nsLogin,
loadingCover,
nsEmpty,
// #ifdef MP-WEIXIN
privacyPopup
// #endif
},
data() { data() {
return {}; return {};
}, },

View File

@@ -5,7 +5,8 @@
<view class="goods-media"> <view class="goods-media">
<!-- #ifdef H5 --> <!-- #ifdef H5 -->
<cover-view class="share"> <cover-view class="share">
<view class="share_left"><text class="iconfont icon-back_light" @click="$util.goBack()"></text></view> <view class="share_left"><text class="iconfont icon-back_light" @click="$util.goBack()"></text>
</view>
</cover-view> </cover-view>
<!-- #endif --> <!-- #endif -->
@@ -13,12 +14,21 @@
<swiper class="swiper"> <swiper class="swiper">
<swiper-item :item-id="'goods_id_' + pointInfo.type"> <swiper-item :item-id="'goods_id_' + pointInfo.type">
<view class="item" v-if="pointInfo.type == 2"> <view class="item" v-if="pointInfo.type == 2">
<image class="adv-pic" :src="pointInfo.image ? $util.img(pointInfo.image) : $util.img('public/uniapp/point/coupon.png')" @error="imageError($util.img('public/uniapp/point/coupon.png'))" mode="aspectFit"/> <image class="adv-pic"
:src="pointInfo.image ? $util.img(pointInfo.image) : $util.img('public/uniapp/point/coupon.png')"
@error="imageError($util.img('public/uniapp/point/coupon.png'))"
mode="aspectFit" />
</view> </view>
<view class="item" v-else-if="pointInfo.type == 3"> <view class="item" v-else-if="pointInfo.type == 3">
<image class="adv-pic" :src="pointInfo.image ? $util.img(pointInfo.image) : $util.img('public/uniapp/point/hongbao.png')" @error="imageError($util.img('public/uniapp/point/hongbao.png'))" mode="aspectFit"/> <image class="adv-pic"
:src="pointInfo.image ? $util.img(pointInfo.image) : $util.img('public/uniapp/point/hongbao.png')"
@error="imageError($util.img('public/uniapp/point/hongbao.png'))"
mode="aspectFit" />
</view>
<view class="item" v-else>
<image class="adv-pic" :src="$util.img(pointInfo.image)" @error="imageError()"
mode="aspectFit"></image>
</view> </view>
<view class="item" v-else><image class="adv-pic" :src="$util.img(pointInfo.image)" @error="imageError()" mode="aspectFit"></image></view>
</swiper-item> </swiper-item>
</swiper> </swiper>
</view> </view>
@@ -27,7 +37,8 @@
<view class="goods-module-wrap"> <view class="goods-module-wrap">
<text class="price-symbol ">{{ pointInfo.point }}积分</text> <text class="price-symbol ">{{ pointInfo.point }}积分</text>
<template v-if="pointInfo.exchange_price != '0.00' && pointInfo.pay_type > 0"> <template v-if="pointInfo.exchange_price != '0.00' && pointInfo.pay_type > 0">
<text class="price-symbol ">+{{ $lang('common.currencySymbol') }}{{ pointInfo.exchange_price }}</text> <text class="price-symbol ">+{{ $lang('common.currencySymbol') }}{{ pointInfo.exchange_price
}}</text>
</template> </template>
<view class="market-price-wrap" v-if="pointInfo.price"> <view class="market-price-wrap" v-if="pointInfo.price">
@@ -35,26 +46,36 @@
<text class="money">{{ pointInfo.price }}</text> <text class="money">{{ pointInfo.price }}</text>
</view> </view>
<view class="follow-and-share" v-if="pointInfo.stock_show == 1 || pointInfo.stock_show == undefined"> <view class="follow-and-share"
<text class="color-tip" v-if="pointInfo.pointCoupon != 1">库存:{{ pointInfo.stock }}{{ pointInfo.stock >= 0 ? pointInfo.unit : '' }}</text> v-if="pointInfo.stock_show == 1 || pointInfo.stock_show == undefined">
<text class="color-tip" v-if="pointInfo.pointCoupon != 1">库存:{{ pointInfo.stock }}{{
pointInfo.stock >= 0 ?
pointInfo.unit : '' }}</text>
<text class="color-tip" v-else>库存:无限{{ pointInfo.stock >= 0 ? pointInfo.unit : '' }}</text> <text class="color-tip" v-else>库存:无限{{ pointInfo.stock >= 0 ? pointInfo.unit : '' }}</text>
</view> </view>
</view> </view>
<view class="goods-module-wrap info"> <view class="goods-module-wrap info">
<text class="sku-name-wrap" v-if="pointInfo.type == 1">{{ isEnEnv ? pointInfo.en_goods_name : pointInfo.goods_name }}</text> <text class="sku-name-wrap" v-if="pointInfo.type == 1">{{ isEnEnv ? pointInfo.en_goods_name :
pointInfo.goods_name
}}</text>
<text class="sku-name-wrap" v-else>{{ pointInfo.name }}</text> <text class="sku-name-wrap" v-else>{{ pointInfo.name }}</text>
</view> </view>
<view class="coupon-desc"> <view class="coupon-desc">
<view v-if="pointInfo.balance && pointInfo.balance > 0" class="color-tip">内含{{ pointInfo.balance }}</view> <view v-if="pointInfo.balance && pointInfo.balance > 0" class="color-tip">内含{{ pointInfo.balance
}}</view>
<view v-if="pointInfo.coupon_type == 'random'" class="color-tip">无门槛优惠券</view> <view v-if="pointInfo.coupon_type == 'random'" class="color-tip">无门槛优惠券</view>
<view v-if="pointInfo.coupon_type == 'reward'" class="color-tip">{{ '' + pointInfo.at_least + '' + pointInfo.money }}</view> <view v-if="pointInfo.coupon_type == 'reward'" class="color-tip">{{ '' + pointInfo.at_least +
'' + pointInfo.money
}}</view>
<view v-if="pointInfo.coupon_type == 'discount'" class="color-tip"> <view v-if="pointInfo.coupon_type == 'discount'" class="color-tip">
{{ pointInfo.at_least }} {{ pointInfo.at_least }}
<text>{{ pointInfo.discount }}</text> <text>{{ pointInfo.discount }}</text>
</view> </view>
<view v-if="pointInfo.coupon_type == 'discount'" class="color-tip">最多优惠{{ pointInfo.discount_limit }}</view> <view v-if="pointInfo.coupon_type == 'discount'" class="color-tip">最多优惠{{
pointInfo.discount_limit }}</view>
<view class="time color-tip" v-if="pointInfo.coupon_type"> <view class="time color-tip" v-if="pointInfo.coupon_type">
{{ pointInfo.validity_type == 1 ? '领取之日起' + pointInfo.fixed_term + '天内有效' : $util.timeStampTurnTime(pointInfo.end_time) + '到期' }} {{ pointInfo.validity_type == 1 ? '领取之日起' + pointInfo.fixed_term + '天内有效' :
$util.timeStampTurnTime(pointInfo.end_time) + '到期' }}
</view> </view>
</view> </view>
</view> </view>
@@ -71,22 +92,23 @@
</view> </view>
<!-- 促销 --> <!-- 促销 -->
<view class="community-model" @touchmove.prevent.stop @click.stop="onCloseCommunity()" v-show="isCommunity"> <view class="community-model" @touchmove.prevent.stop @click.stop="onCloseCommunity()"
v-show="isCommunity">
<view class="community-model-content" @click.stop> <view class="community-model-content" @click.stop>
<view class="community-model-content-radius"><view>添加社群</view></view> <view class="community-model-content-radius">
<view>添加社群</view>
</view>
<view class="community-model-content-draw" v-if="pointInfo.qr_data && pointInfo.qr_data.qr_img"> <view class="community-model-content-draw" v-if="pointInfo.qr_data && pointInfo.qr_data.qr_img">
<image <image :src="pointInfo.qr_data.qr_img != '' && pointInfo.qr_data.qr_state == 1
:src="
pointInfo.qr_data.qr_img != '' && pointInfo.qr_data.qr_state == 1
? $util.img(pointInfo.qr_data.qr_img) ? $util.img(pointInfo.qr_data.qr_img)
: $util.img('public/uniapp/goods/detail_erweiImage.png') : $util.img('public/uniapp/goods/detail_erweiImage.png')
" " mode="aspectFill" show-menu-by-longpress="true" />
mode="aspectFill"
show-menu-by-longpress="true"/>
</view> </view>
<view class="community-model-content-text">长按识别二维码添加社群</view> <view class="community-model-content-text">长按识别二维码添加社群</view>
</view> </view>
<view class="community-model-close" @click.stop="onCloseCommunity()"><text class="iconfont icon-close"></text></view> <view class="community-model-close" @click.stop="onCloseCommunity()"><text
class="iconfont icon-close"></text>
</view>
</view> </view>
<!-- 添加二维码 end --> <!-- 添加二维码 end -->
<block v-if="pointInfo.type == 1"> <block v-if="pointInfo.type == 1">
@@ -95,15 +117,20 @@
<view class="item selected-sku-spec" v-if="pointInfo.sku_spec_format" @click="exchange"> <view class="item selected-sku-spec" v-if="pointInfo.sku_spec_format" @click="exchange">
<view class="label">选择</view> <view class="label">选择</view>
<view class="box"> <view class="box">
<text v-for="(item, index) in pointInfo.sku_spec_format" :key="index">{{ item.spec_name }}/{{ item.spec_value_name }}</text> <text v-for="(item, index) in pointInfo.sku_spec_format" :key="index">{{ item.spec_name
}}/{{
item.spec_value_name }}</text>
</view> </view>
<text class="iconfont icon-right"></text> <text class="iconfont icon-right"></text>
</view> </view>
<view class="item goods-attribute" @click="openAttributePopup()" v-if="pointInfo.goods_attr_format && pointInfo.goods_attr_format.length > 0"> <view class="item goods-attribute" @click="openAttributePopup()"
v-if="pointInfo.goods_attr_format && pointInfo.goods_attr_format.length > 0">
<view class="label">属性</view> <view class="label">属性</view>
<view class="box"> <view class="box">
<text v-for="(item, index) in pointInfo.goods_attr_format" :key="index" v-if="index < 2">{{ item.attr_name }}: {{ item.attr_value_name }}</text> <text v-for="(item, index) in pointInfo.goods_attr_format" :key="index"
v-if="index < 2">{{
item.attr_name }}: {{ item.attr_value_name }}</text>
</view> </view>
<text class="iconfont icon-right"></text> <text class="iconfont icon-right"></text>
</view> </view>
@@ -118,12 +145,14 @@
<text class="iconfont icon-close"></text> <text class="iconfont icon-close"></text>
</view> </view>
<scroll-view scroll-y class="goods-attribute-body"> <scroll-view scroll-y class="goods-attribute-body">
<view class="item" v-for="(item, index) in pointInfo.goods_attr_format" :key="index"> <view class="item" v-for="(item, index) in pointInfo.goods_attr_format"
:key="index">
<text class="attr-name">{{ item.attr_name }}</text> <text class="attr-name">{{ item.attr_name }}</text>
<text class="value-name">{{ item.attr_value_name }}</text> <text class="value-name">{{ item.attr_value_name }}</text>
</view> </view>
</scroll-view> </scroll-view>
<view class="button-box"><button type="primary" @click="closeAttributePopup()">确定</button></view> <view class="button-box"><button type="primary"
@click="closeAttributePopup()">确定</button></view>
</view> </view>
</uni-popup> </uni-popup>
</view> </view>
@@ -136,7 +165,8 @@
<text class="iconfont icon-close"></text> <text class="iconfont icon-close"></text>
</view> </view>
<scroll-view scroll-y> <scroll-view scroll-y>
<view class="item" :class="{ 'empty-desc': !item.desc }" v-for="(item, index) in pointInfo.goods_service" :key="index"> <view class="item" :class="{ 'empty-desc': !item.desc }"
v-for="(item, index) in pointInfo.goods_service" :key="index">
<view class="iconfont icon-dui "></view> <view class="iconfont icon-dui "></view>
<view class="info-wrap"> <view class="info-wrap">
<text class="title">{{ item.service_name }}</text> <text class="title">{{ item.service_name }}</text>
@@ -144,7 +174,8 @@
</view> </view>
</view> </view>
</scroll-view> </scroll-view>
<view class="button-box"><button type="primary" @click="closeMerchantsServicePopup()">确定</button></view> <view class="button-box"><button type="primary"
@click="closeMerchantsServicePopup()">确定</button></view>
</view> </view>
</uni-popup> </uni-popup>
</view> </view>
@@ -152,35 +183,36 @@
<!-- 详情 --> <!-- 详情 -->
<view class="goods-detail-tab"> <view class="goods-detail-tab">
<view class="detail-tab"><view class="tab-item">兑换详情</view></view> <view class="detail-tab">
<view class="tab-item">兑换详情</view>
</view>
<view class="detail-content"> <view class="detail-content">
<view class="detail-content-item"> <view class="detail-content-item">
<view class="goods-details" v-if="pointInfo.content"><rich-text :nodes="pointInfo.content"></rich-text></view> <view class="goods-details" v-if="pointInfo.content"><rich-text
:nodes="pointInfo.content"></rich-text>
</view>
<view class="goods-details active" v-else>暂无兑换详情</view> <view class="goods-details active" v-else>暂无兑换详情</view>
</view> </view>
</view> </view>
</view> </view>
<!-- SKU选择 --> <!-- SKU选择 -->
<ns-goods-sku <ns-goods-sku v-if="pointInfo.id" ref="goodsSku" @refresh="refreshGoodsSkuDetail"
v-if="pointInfo.id" :goods-detail="pointInfo" :goods-id="pointInfo.goods_id" :max-buy="pointInfo.max_buy"
ref="goodsSku" :min-buy="pointInfo.min_buy" source="point"></ns-goods-sku>
@refresh="refreshGoodsSkuDetail"
:goods-detail="pointInfo"
:goods-id="pointInfo.goods_id"
:max-buy="pointInfo.max_buy"
:min-buy="pointInfo.min_buy"
source="point"
></ns-goods-sku>
</view> </view>
</view> </view>
<view class="detail-swap" @click="exchange()" :class="{ 'position-bottom': isIphoneX }" v-if="!isLogin"><button type="primary" >登录之后方可兑换</button></view> <view class="detail-swap" @click="exchange()" :class="{ 'position-bottom': isIphoneX }" v-if="!isLogin"><button
type="primary">登录之后方可兑换</button></view>
<block v-else> <block v-else>
<view class="detail-swap" :class="{ 'position-bottom': isIphoneX }" v-if="pointInfo.stock == 0"><button disabled>库存不足</button></view> <view class="detail-swap" :class="{ 'position-bottom': isIphoneX }" v-if="pointInfo.stock == 0"><button
<view class="detail-swap" :class="{ 'position-bottom': isIphoneX }" v-else-if="enough"><button disabled>积分不足</button></view> disabled>库存不足</button></view>
<view class="detail-swap" @click="exchange()" :class="{ 'position-bottom': isIphoneX }" v-else><button type="primary" hover-class="none">兑换</button></view> <view class="detail-swap" :class="{ 'position-bottom': isIphoneX }" v-else-if="enough"><button
disabled>积分不足</button></view>
<view class="detail-swap" @click="exchange()" :class="{ 'position-bottom': isIphoneX }" v-else><button
type="primary" hover-class="none">兑换</button></view>
</block> </block>
<loading-cover ref="loadingCover"></loading-cover> <loading-cover ref="loadingCover"></loading-cover>
@@ -188,26 +220,15 @@
<to-top v-if="showTop" @toTop="scrollToTopNative()"></to-top> <to-top v-if="showTop" @toTop="scrollToTopNative()"></to-top>
<!-- #ifdef MP-WEIXIN --> <!-- 隐私弹窗 -->
<!-- 小程序隐私协议 -->
<privacy-popup ref="privacyPopup"></privacy-popup> <privacy-popup ref="privacyPopup"></privacy-popup>
<!-- #endif -->
</view> </view>
</template> </template>
<script> <script>
import uniPopup from '@/components/uni-popup/uni-popup.vue';
import uniNumberBox from '@/components/uni-number-box/uni-number-box.vue';
import htmlParser from '@/common/js/html-parser'; import htmlParser from '@/common/js/html-parser';
import nsGoodsSku from '@/components/ns-goods-sku/ns-goods-sku.vue';
import toTop from '@/components/toTop/toTop.vue';
import scroll from '@/common/js/scroll-view.js'; import scroll from '@/common/js/scroll-view.js';
export default { export default {
components: {
uniPopup,
uniNumberBox,
nsGoodsSku,
toTop
},
data() { data() {
return { return {
id: 0, id: 0,
@@ -470,9 +491,11 @@ export default {
<style lang="scss"> <style lang="scss">
@import '@/common/css/goods_detail.scss'; @import '@/common/css/goods_detail.scss';
.group-wrap .goods-module-wrap.info { .group-wrap .goods-module-wrap.info {
padding-bottom: 10rpx; padding-bottom: 10rpx;
} }
.group-wrap { .group-wrap {
padding-bottom: 20rpx; padding-bottom: 20rpx;
} }
@@ -492,6 +515,7 @@ export default {
height: 80rpx; height: 80rpx;
line-height: 80rpx; line-height: 80rpx;
border-radius: 10rpx; border-radius: 10rpx;
&[type='primary'] { &[type='primary'] {
background-color: var(--goods-btn-color); background-color: var(--goods-btn-color);
} }

View File

@@ -4,7 +4,9 @@
<!-- 搜索区域 --> <!-- 搜索区域 -->
<view class="search-wrap uni-flex uni-row"> <view class="search-wrap uni-flex uni-row">
<view class="flex-item input-wrap" @click.stop="search()" @tap.stop="search()"> <view class="flex-item input-wrap" @click.stop="search()" @tap.stop="search()">
<input class="uni-input" maxlength="50" v-model="keyword" confirm-type="search" @confirm="search()" @click.stop="search()" @tap.stop="search()" :placeholder="isEnEnv ? 'Please enter product keywords' : '请输入商品关键词'" /> <input class="uni-input" maxlength="50" v-model="keyword" confirm-type="search" @confirm="search()"
@click.stop="search()" @tap.stop="search()"
:placeholder="isEnEnv ? 'Please enter product keywords' : '请输入商品关键词'" />
<text class="iconfont icon-sousuo3" @click.stop="search()" @tap.stop="search()"></text> <text class="iconfont icon-sousuo3" @click.stop="search()" @tap.stop="search()"></text>
</view> </view>
</view> </view>
@@ -17,15 +19,20 @@
<view class="price-wrap" @click="sortTabClick('point')"> <view class="price-wrap" @click="sortTabClick('point')">
<text :class="{ 'color-base-text': order === 'point' }">{{ isEnEnv ? 'Points' : '积分' }}</text> <text :class="{ 'color-base-text': order === 'point' }">{{ isEnEnv ? 'Points' : '积分' }}</text>
<view class="iconfont-wrap"> <view class="iconfont-wrap">
<view class="iconfont icon-shangsanjiao-copy" :class="{ 'color-base-text': priceOrder === 'asc' && order === 'point' }"></view> <view class="iconfont icon-shangsanjiao-copy"
<view class="iconfont icon-sanjiao" :class="{ 'color-base-text': priceOrder === 'desc' && order === 'point' }"></view> :class="{ 'color-base-text': priceOrder === 'asc' && order === 'point' }"></view>
<view class="iconfont icon-sanjiao"
:class="{ 'color-base-text': priceOrder === 'desc' && order === 'point' }"></view>
</view> </view>
</view> </view>
<view class="price-wrap" @click="sortTabClick('create_time')"> <view class="price-wrap" @click="sortTabClick('create_time')">
<text :class="{ 'color-base-text': order === 'create_time' }">{{ isEnEnv ? 'New Arrival' : '上新时间' }}</text> <text :class="{ 'color-base-text': order === 'create_time' }">{{ isEnEnv ? 'New Arrival' : '上新时间'
}}</text>
<view class="iconfont-wrap"> <view class="iconfont-wrap">
<view class="iconfont icon-shangsanjiao-copy" :class="{ 'color-base-text': priceOrder === 'asc' && order === 'create_time' }"></view> <view class="iconfont icon-shangsanjiao-copy"
<view class="iconfont icon-sanjiao" :class="{ 'color-base-text': priceOrder === 'desc' && order === 'create_time' }"></view> :class="{ 'color-base-text': priceOrder === 'asc' && order === 'create_time' }"></view>
<view class="iconfont icon-sanjiao"
:class="{ 'color-base-text': priceOrder === 'desc' && order === 'create_time' }"></view>
</view> </view>
</view> </view>
<view :class="{ 'color-base-text': order === 'screen' }" class="screen-wrap"> <view :class="{ 'color-base-text': order === 'screen' }" class="screen-wrap">
@@ -47,7 +54,8 @@
</view> </view>
<view class="info-wrap"> <view class="info-wrap">
<view class="name-wrap"> <view class="name-wrap">
<view class="goods-name" @click="toDetail(item)">{{ isEnEnv ? item.en_goods_name : item.goods_name }}</view> <view class="goods-name" @click="toDetail(item)">{{ isEnEnv ? item.en_goods_name :
item.goods_name }}</view>
</view> </view>
<view class="lineheight-clear"> <view class="lineheight-clear">
<view class="discount-price"> <view class="discount-price">
@@ -55,14 +63,18 @@
<text class="unit font-size-tag">{{ isEnEnv ? 'Points' : '积分' }}</text> <text class="unit font-size-tag">{{ isEnEnv ? 'Points' : '积分' }}</text>
<block v-if="item.price > 0 && item.pay_type > 0"> <block v-if="item.price > 0 && item.pay_type > 0">
<text class="unit font-size-tag">+</text> <text class="unit font-size-tag">+</text>
<text class="unit font-size-tag">{{ $lang('common.currencySymbol') }}</text> <text class="unit font-size-tag">{{ $lang('common.currencySymbol')
<text class="price font-size-toolbar" >{{ parseFloat(item.price).toFixed(2).split(".")[0] }}</text> }}</text>
<text class="unit font-size-tag">.{{ parseFloat(item.price).toFixed(2).split(".")[1] }}</text> <text class="price font-size-toolbar">{{
parseFloat(item.price).toFixed(2).split(".")[0] }}</text>
<text class="unit font-size-tag">.{{
parseFloat(item.price).toFixed(2).split(".")[1] }}</text>
</block> </block>
</view> </view>
</view> </view>
<view class="pro-info" v-if="item.stock_show"> <view class="pro-info" v-if="item.stock_show">
<view class="font-size-activity-tag color-tip">{{ isEnEnv ? 'Stock ' : '库存' }}{{ item.stock }}</view> <view class="font-size-activity-tag color-tip">{{ isEnEnv ? 'Stock ' : '库存' }}{{
item.stock }}</view>
<view class="sale font-size-activity-tag color-tip" @click="toDetail(item)"> <view class="sale font-size-activity-tag color-tip" @click="toDetail(item)">
<!-- <button type="primary" size="mini">立即兑换</button> --> <!-- <button type="primary" size="mini">立即兑换</button> -->
</view> </view>
@@ -71,7 +83,8 @@
</view> </view>
</view> </view>
<view class="empty" v-if="goodsList.length == 0"> <view class="empty" v-if="goodsList.length == 0">
<ns-empty :isIndex="false" :text="isEnEnv ? 'No point products available' : '暂无积分商品'"></ns-empty> <ns-empty :isIndex="false"
:text="isEnEnv ? 'No point products available' : '暂无积分商品'"></ns-empty>
</view> </view>
</view> </view>
</block> </block>
@@ -85,18 +98,25 @@
<view class="item-wrap"> <view class="item-wrap">
<view class="label"><text>{{ isEnEnv ? 'Point Range' : '积分区间' }}</text></view> <view class="label"><text>{{ isEnEnv ? 'Point Range' : '积分区间' }}</text></view>
<view class="price-wrap"> <view class="price-wrap">
<input class="uni-input" type="digit" v-model="minPoint" :placeholder="isEnEnv ? 'Min' : '最低'" /> <input class="uni-input" type="digit" v-model="minPoint"
:placeholder="isEnEnv ? 'Min' : '最低'" />
<view class="h-line"></view> <view class="h-line"></view>
<input class="uni-input" type="digit" v-model="maxPoint" :placeholder="isEnEnv ? 'Max' : '最高'" /> <input class="uni-input" type="digit" v-model="maxPoint"
:placeholder="isEnEnv ? 'Max' : '最高'" />
</view> </view>
</view> </view>
<!-- 分类筛选项 --> <!-- 分类筛选项 -->
<view class="category-list-wrap"> <view class="category-list-wrap">
<text class="first">{{ isEnEnv ? 'All Categories' : '全部分类' }}</text> <text class="first">{{ isEnEnv ? 'All Categories' : '全部分类' }}</text>
<view class="class-box"> <view class="class-box">
<view @click="selectedCategory('')" class="list-wrap"><text :class="{ selected: !categoryId, 'color-base-text': !categoryId }">{{ isEnEnv ? 'All' : '全部' }}</text></view> <view @click="selectedCategory('')" class="list-wrap"><text
<view @click="selectedCategory(item.category_id)" v-for="(item, index) in categoryList" :key="index" class="list-wrap"> :class="{ selected: !categoryId, 'color-base-text': !categoryId }">{{ isEnEnv ? 'All' :
<text :class="{ selected: item.category_id == categoryId, 'color-base-text': item.category_id == categoryId }">{{ item.category_name }}</text> '全部' }}</text></view>
<view @click="selectedCategory(item.category_id)" v-for="(item, index) in categoryList"
:key="index" class="list-wrap">
<text
:class="{ selected: item.category_id == categoryId, 'color-base-text': item.category_id == categoryId }">{{
item.category_name }}</text>
</view> </view>
</view> </view>
</view> </view>
@@ -107,34 +127,13 @@
</view> </view>
</uni-drawer> </uni-drawer>
<!-- #ifdef MP-WEIXIN --> <!-- 隐私弹窗 -->
<!-- 小程序隐私协议 -->
<privacy-popup ref="privacyPopup"></privacy-popup> <privacy-popup ref="privacyPopup"></privacy-popup>
<!-- #endif -->
</view> </view>
</template> </template>
<script> <script>
import MescrollUni from "@/components/mescroll/my-list-mescroll.vue";
import nsLogin from '@/components/ns-login/ns-login.vue';
import loadingCover from '@/components/loading-cover/loading-cover.vue';
import nsEmpty from '@/components/ns-empty/ns-empty.vue';
// #ifdef MP-WEIXIN
import privacyPopup from '@/components/wx-privacy-popup/privacy-popup.vue';
// #endif
import uniDrawer from '@/components/uni-drawer/uni-drawer.vue';
export default { export default {
components: {
uniDrawer,
MescrollUni,
nsLogin,
loadingCover,
nsEmpty,
// #ifdef MP-WEIXIN
privacyPopup
// #endif
},
data() { data() {
return { return {
listStyle: '', listStyle: '',
@@ -735,6 +734,7 @@
line-height: 1; line-height: 1;
margin-top: 16rpx; margin-top: 16rpx;
color: var(--price-color); color: var(--price-color);
.unit { .unit {
margin-right: 6rpx; margin-right: 6rpx;
} }
@@ -860,6 +860,7 @@
line-height: 1; line-height: 1;
margin-top: 16rpx; margin-top: 16rpx;
color: var(--price-color); color: var(--price-color);
.unit { .unit {
margin-right: 6rpx; margin-right: 6rpx;
} }

View File

@@ -4,14 +4,17 @@
<view class="point-navbar" <view class="point-navbar"
:style="{ 'padding-top': menuButtonBounding.top + 'px', height: menuButtonBounding.height + 'px' }"> :style="{ 'padding-top': menuButtonBounding.top + 'px', height: menuButtonBounding.height + 'px' }">
<view class="nav-wrap" :style="{ width: menuButtonBounding.left + 'px' }"> <view class="nav-wrap" :style="{ width: menuButtonBounding.left + 'px' }">
<view class="back" @click="back" :style="{width: menuButtonBounding.height + 'px', height: menuButtonBounding.height + 'px' }"> <view class="back" @click="back"
:style="{ width: menuButtonBounding.height + 'px', height: menuButtonBounding.height + 'px' }">
<text class="iconfont icon-back_light"></text> <text class="iconfont icon-back_light"></text>
</view> </view>
<view class="search" @click="$util.redirectTo('/pages_tool/goods/search')"> <view class="search" @click="$util.redirectTo('/pages_tool/goods/search')">
<text class="iconfont icon-sousuo3"></text> <text class="iconfont icon-sousuo3"></text>
<text class="tips">搜索商品</text> <text class="tips">搜索商品</text>
</view> </view>
<view class="sign" :style="{width: menuButtonBounding.height + 'px', height: menuButtonBounding.height + 'px' }" @click="redirect('/pages_tool/member/signin')"> <view class="sign"
:style="{ width: menuButtonBounding.height + 'px', height: menuButtonBounding.height + 'px' }"
@click="redirect('/pages_tool/member/signin')">
<image :src="$util.img('public/uniapp/point/navbar-sing-icon.png')" mode="widthFix"></image> <image :src="$util.img('public/uniapp/point/navbar-sing-icon.png')" mode="widthFix"></image>
</view> </view>
</view> </view>
@@ -75,7 +78,8 @@
</view> </view>
</view> --> </view> -->
<view class="recharge-list-wrap" @click="redirect('/pages_tool/recharge/list')" v-if="rechargeList.length"> <view class="recharge-list-wrap" @click="redirect('/pages_tool/recharge/list')"
v-if="rechargeList.length">
<view class="item-wrap" v-for="(item, index) in rechargeList.slice(0, 4)" :key="index"> <view class="item-wrap" v-for="(item, index) in rechargeList.slice(0, 4)" :key="index">
<view class="recharge">储值{{ parseFloat(item.buy_price) }}</view> <view class="recharge">储值{{ parseFloat(item.buy_price) }}</view>
<view class="point">可得{{ item.point }}积分</view> <view class="point">可得{{ item.point }}积分</view>
@@ -93,9 +97,12 @@
<view class="list-wrap"> <view class="list-wrap">
<view class="list-wrap-scroll" :class="{ 'single-row': couponList.length < 3 }"> <view class="list-wrap-scroll" :class="{ 'single-row': couponList.length < 3 }">
<view class="list-wrap-item coupon-list-wrap-item" v-for="(couponItem, couponIndex) in couponList" :key="couponIndex" @click="toDetail(couponItem)"> <view class="list-wrap-item coupon-list-wrap-item"
v-for="(couponItem, couponIndex) in couponList" :key="couponIndex"
@click="toDetail(couponItem)">
<view class="img-box"> <view class="img-box">
<image :src="$util.img('public/uniapp/point/coupon_' + themeStyle.name + '_bg1.png')"/> <image
:src="$util.img('public/uniapp/point/coupon_' + themeStyle.name + '_bg1.png')" />
</view> </view>
<view class="content"> <view class="content">
<view class="coupon" <view class="coupon"
@@ -114,10 +121,14 @@
</view> </view>
<view class="coupon-info"> <view class="coupon-info">
<view class="coupon_condition font-size-activity-tag"> <view class="coupon_condition font-size-activity-tag">
{{ couponItem.at_least == 0 ? '无门槛优惠券' : '满' + parseFloat(couponItem.at_least).toFixed(0) + '可用' }} {{ couponItem.at_least == 0 ? '无门槛优惠券' : '满' +
parseFloat(couponItem.at_least).toFixed(0) + '可用' }}
</view> </view>
<view class="coupon_type font-size-activity-tag" v-if="couponItem.goods_type == 1">全场券</view> <view class="coupon_type font-size-activity-tag"
<view class="coupon_type font-size-activity-tag" v-else-if="couponItem.goods_type == 2||couponItem.goods_type == 3">指定</view> v-if="couponItem.goods_type == 1">全场</view>
<view class="coupon_type font-size-activity-tag"
v-else-if="couponItem.goods_type == 2 || couponItem.goods_type == 3">
指定券</view>
</view> </view>
</view> </view>
<view class="coupon_right"> <view class="coupon_right">
@@ -139,7 +150,9 @@
</view> </view>
<view class="list-wrap"> <view class="list-wrap">
<view class="list-wrap-item hongbao-list-wrap-item" v-for="(hongbaoItem, hongbaoIndex) in hongbaoList" :key="hongbaoIndex" @click="toDetail(hongbaoItem)"> <view class="list-wrap-item hongbao-list-wrap-item"
v-for="(hongbaoItem, hongbaoIndex) in hongbaoList" :key="hongbaoIndex"
@click="toDetail(hongbaoItem)">
<view class="img-box"> <view class="img-box">
<image :src="$util.img('public/uniapp/point/hongbao_bg.png')"></image> <image :src="$util.img('public/uniapp/point/hongbao_bg.png')"></image>
</view> </view>
@@ -188,8 +201,10 @@
<block v-if="item.price > 0 && item.pay_type > 0"> <block v-if="item.price > 0 && item.pay_type > 0">
<text class="unit font-size-tag">+</text> <text class="unit font-size-tag">+</text>
<view> <view>
<text class="font-size-tag">{{ parseFloat(item.price).toFixed(2).split(".")[0] }}</text> <text class="font-size-tag">{{
<text class="unit font-size-tag">.{{ parseFloat(item.price).toFixed(2).split(".")[1] }}</text> parseFloat(item.price).toFixed(2).split(".")[0] }}</text>
<text class="unit font-size-tag">.{{
parseFloat(item.price).toFixed(2).split(".")[1] }}</text>
</view> </view>
</block> </block>
</view> </view>
@@ -238,18 +253,12 @@
<loading-cover ref="loadingCover"></loading-cover> <loading-cover ref="loadingCover"></loading-cover>
<ns-login ref="login"></ns-login> <ns-login ref="login"></ns-login>
<!-- #ifdef MP-WEIXIN --> <!-- 隐私弹窗 -->
<!-- 小程序隐私协议 -->
<privacy-popup ref="privacyPopup"></privacy-popup> <privacy-popup ref="privacyPopup"></privacy-popup>
<!-- #endif -->
</view> </view>
</template> </template>
<script> <script>
import uniPopup from '@/components/uni-popup/uni-popup.vue';
export default { export default {
components: {
uniPopup
},
data() { data() {
return { return {
mescroll: { mescroll: {

View File

@@ -1,8 +1,10 @@
<template> <template>
<view class="order-container" :style="themeColor"> <view class="order-container" :style="themeColor">
<view class="order-nav" v-if="storeToken"> <view class="order-nav" v-if="storeToken">
<view v-for="(statusItem, statusIndex) in statusList" :key="statusIndex" class="uni-tab-item" :id="statusItem.id" :data-current="statusIndex" @click="ontabtap"> <view v-for="(statusItem, statusIndex) in statusList" :key="statusIndex" class="uni-tab-item"
<text class="uni-tab-item-title" :class="statusItem.status == orderStatus ? 'uni-tab-item-title-active color-base-text' : ''"> :id="statusItem.id" :data-current="statusIndex" @click="ontabtap">
<text class="uni-tab-item-title"
:class="statusItem.status == orderStatus ? 'uni-tab-item-title-active color-base-text' : ''">
{{ statusItem.name }} {{ statusItem.name }}
</text> </text>
</view> </view>
@@ -11,26 +13,31 @@
<mescroll-uni ref="mescroll" @getData="getListData" top="80rpx"> <mescroll-uni ref="mescroll" @getData="getListData" top="80rpx">
<block slot="list"> <block slot="list">
<block v-if="orderList.length"> <block v-if="orderList.length">
<view class="order-item" v-for="(orderItem, orderIndex) in orderList" :key="orderIndex" @click="detail(orderItem)"> <view class="order-item" v-for="(orderItem, orderIndex) in orderList" :key="orderIndex"
@click="detail(orderItem)">
<view class="order-header"> <view class="order-header">
<text class="order-no">订单号{{ orderItem.order_no }}</text> <text class="order-no">订单号{{ orderItem.order_no }}</text>
<text class="status-name"> <text class="status-name">
{{ orderItem.order_status == 0 ? '待支付' : orderItem.order_status == 1 ? '已完成' : orderItem.order_status == -1 ? '已关闭' : '' }} {{ orderItem.order_status == 0 ? '待支付' : orderItem.order_status == 1 ? '已完成' :
orderItem.order_status == -1 ? '已关闭' : '' }}
</text> </text>
</view> </view>
<view class="order-body"> <view class="order-body">
<view class="goods-wrap"> <view class="goods-wrap">
<view class="goods-img"> <view class="goods-img">
<block v-if="orderItem.type == 2"> <block v-if="orderItem.type == 2">
<image :src="$util.img(orderItem.exchange_image) ? $util.img(orderItem.exchange_image) : $util.img('public/uniapp/point/coupon.png')" <image
:src="$util.img(orderItem.exchange_image) ? $util.img(orderItem.exchange_image) : $util.img('public/uniapp/point/coupon.png')"
@error="imageError(orderIndex)" mode="aspectFill" :lazy-load="true"></image> @error="imageError(orderIndex)" mode="aspectFill" :lazy-load="true"></image>
</block> </block>
<block v-else-if="orderItem.type == 3"> <block v-else-if="orderItem.type == 3">
<image :src="$util.img(orderItem.exchange_image) ? $util.img(orderItem.exchange_image) : $util.img('public/uniapp/point/hongbao.png')" <image
:src="$util.img(orderItem.exchange_image) ? $util.img(orderItem.exchange_image) : $util.img('public/uniapp/point/hongbao.png')"
@error="imageError(orderIndex)" mode="aspectFill" :lazy-load="true"></image> @error="imageError(orderIndex)" mode="aspectFill" :lazy-load="true"></image>
</block> </block>
<block v-else> <block v-else>
<image :src="$util.img(orderItem.exchange_image)" @error="imageError(orderIndex)" mode="aspectFill" :lazy-load="true"></image> <image :src="$util.img(orderItem.exchange_image)"
@error="imageError(orderIndex)" mode="aspectFill" :lazy-load="true"></image>
</block> </block>
</view> </view>
<view class="goods-info"> <view class="goods-info">
@@ -42,9 +49,12 @@
<text class="unit price-style small">积分</text> <text class="unit price-style small">积分</text>
<block v-if="orderItem.price > 0"> <block v-if="orderItem.price > 0">
+ +
<text class="unit price-style small">{{ $lang('common.currencySymbol') }}</text> <text class="unit price-style small">{{
<text class="price-style large">{{ parseFloat(orderItem.price).toFixed(2).split(".")[0] }}</text> $lang('common.currencySymbol') }}</text>
<text class="unit price-style small">.{{ parseFloat(orderItem.price).toFixed(2).split(".")[1] }}</text> <text class="price-style large">{{
parseFloat(orderItem.price).toFixed(2).split(".")[0] }}</text>
<text class="unit price-style small">.{{
parseFloat(orderItem.price).toFixed(2).split(".")[1] }}</text>
</block> </block>
</text> </text>
<text class="goods-num"> <text class="goods-num">
@@ -58,8 +68,10 @@
</view> </view>
<view class="order-footer"> <view class="order-footer">
<view class="order-action" v-if="orderItem.order_status == 0 && orderItem.type == 1"> <view class="order-action" v-if="orderItem.order_status == 0 && orderItem.type == 1">
<view class="order-box-btn font-size-tag" @click.stop="orderClose(orderItem.order_id, orderIndex)">关闭</view> <view class="order-box-btn font-size-tag"
<view class="order-box-btn color-base-bg color-base-border" @click.stop="openChoosePayment(orderItem.out_trade_no, orderItem.price)">支付</view> @click.stop="orderClose(orderItem.order_id, orderIndex)">关闭</view>
<view class="order-box-btn color-base-bg color-base-border"
@click.stop="openChoosePayment(orderItem.out_trade_no, orderItem.price)">支付</view>
</view> </view>
<view class="order-action" v-else> <view class="order-action" v-else>
<view class="order-box-btn font-size-tag">查看详情</view> <view class="order-box-btn font-size-tag">查看详情</view>
@@ -69,7 +81,8 @@
</block> </block>
<block v-if="showEmpty && !orderList.length"> <block v-if="showEmpty && !orderList.length">
<view class="cart-empty"> <view class="cart-empty">
<ns-empty :isIndex="true" :emptyBtn ="{url: '/pages_promotion/point/list',text: '去逛逛'}" text="暂无积分兑换订单"></ns-empty> <ns-empty :isIndex="true" :emptyBtn="{ url: '/pages_promotion/point/list', text: '去逛逛' }"
text="暂无积分兑换订单"></ns-empty>
</view> </view>
</block> </block>
</block> </block>
@@ -83,24 +96,7 @@
</template> </template>
<script> <script>
import MescrollUni from "@/components/mescroll/my-list-mescroll.vue";
import nsLogin from '@/components/ns-login/ns-login.vue';
import loadingCover from '@/components/loading-cover/loading-cover.vue';
import nsEmpty from '@/components/ns-empty/ns-empty.vue';
// #ifdef MP-WEIXIN
import privacyPopup from '@/components/wx-privacy-popup/privacy-popup.vue';
// #endif
export default { export default {
components: {
MescrollUni,
nsLogin,
loadingCover,
nsEmpty,
// #ifdef MP-WEIXIN
privacyPopup
// #endif
},
data() { data() {
return { return {
orderList: [], orderList: [],
@@ -297,6 +293,7 @@
left: 20rpx; left: 20rpx;
transform: translateY(-50%); transform: translateY(-50%);
} }
.iconyuan_checkbox { .iconyuan_checkbox {
color: $color-tip; color: $color-tip;
} }
@@ -376,6 +373,7 @@
flex: 1; flex: 1;
font-weight: bold; font-weight: bold;
} }
.goods-num { .goods-num {
font-size: $font-size-tag; font-size: $font-size-tag;
color: $color-tip; color: $color-tip;
@@ -387,6 +385,7 @@
font-size: $font-size-tag; font-size: $font-size-tag;
} }
} }
.goods-type { .goods-type {
font-size: $font-size-tag; font-size: $font-size-tag;
} }

View File

@@ -18,7 +18,8 @@
<!-- 选择地址 --> <!-- 选择地址 -->
<template v-if="orderPaymentData.exchange_info.type == 1 && orderPaymentData.is_virtual == 0"> <template v-if="orderPaymentData.exchange_info.type == 1 && orderPaymentData.is_virtual == 0">
<!-- 配送方式 --> <!-- 配送方式 -->
<view class="delivery-mode" v-if="orderCreateData.delivery &&orderPaymentData.delivery.express_type.length > 1"> <view class="delivery-mode"
v-if="orderCreateData.delivery && orderPaymentData.delivery.express_type.length > 1">
<view class="action"> <view class="action">
<view v-for="(deliveryItem, deliveryIndex) in orderPaymentData.delivery.express_type" <view v-for="(deliveryItem, deliveryIndex) in orderPaymentData.delivery.express_type"
:key="deliveryIndex" :key="deliveryIndex"
@@ -31,10 +32,12 @@
</view> </view>
</view> </view>
<view class="address-box" :class="{'not-delivery-type': orderPaymentData.delivery.express_type.length <= 1}" <view class="address-box"
:class="{ 'not-delivery-type': orderPaymentData.delivery.express_type.length <= 1 }"
v-if="orderPaymentData.delivery.delivery_type != 'store'"> v-if="orderPaymentData.delivery.delivery_type != 'store'">
<block v-if="storeInfo.storeList.length > 1 && orderPaymentData.delivery.delivery_type == 'local'"> <block v-if="storeInfo.storeList.length > 1 && orderPaymentData.delivery.delivery_type == 'local'">
<view class="local-delivery-store" v-if="Object.keys(storeInfo.currStore).length" @click="$refs.deliveryPopup.open()"> <view class="local-delivery-store" v-if="Object.keys(storeInfo.currStore).length"
@click="$refs.deliveryPopup.open()">
<view class="info"> <view class="info">
<text class="store-name">{{ storeInfo.currStore.store_name }}</text> 提供配送 <text class="store-name">{{ storeInfo.currStore.store_name }}</text> 提供配送
</view> </view>
@@ -49,14 +52,19 @@
</view> </view>
</view> </view>
</block> </block>
<view class="info-wrap" :class="{'local': orderPaymentData.delivery.delivery_type == 'local'}" v-if="orderCreateData.member_address" @click="selectAddress"> <view class="info-wrap" :class="{ 'local': orderPaymentData.delivery.delivery_type == 'local' }"
v-if="orderCreateData.member_address" @click="selectAddress">
<view class="content"> <view class="content">
<text class="name font-size-base">{{ orderCreateData.member_address.name ? orderCreateData.member_address.name : '' }}</text> <text class="name font-size-base">{{ orderCreateData.member_address.name ?
<text class="font-size-base mobile">{{ orderCreateData.member_address.mobile ? orderCreateData.member_address.mobile : '' }}</text> orderCreateData.member_address.name : '' }}</text>
<text class="font-size-base mobile">{{ orderCreateData.member_address.mobile ?
orderCreateData.member_address.mobile : '' }}</text>
<text class="cell-more iconfont icon-right"></text> <text class="cell-more iconfont icon-right"></text>
<view class="desc-wrap"> <view class="desc-wrap">
{{ orderCreateData.member_address.full_address ? orderCreateData.member_address.full_address : '' }} {{ orderCreateData.member_address.full_address ?
{{ orderCreateData.member_address.address ? orderCreateData.member_address.address : '' }} orderCreateData.member_address.full_address : '' }}
{{ orderCreateData.member_address.address ? orderCreateData.member_address.address : ''
}}
</view> </view>
</view> </view>
</view> </view>
@@ -69,11 +77,14 @@
<!-- 外卖配送 --> <!-- 外卖配送 -->
<block v-if="orderPaymentData.delivery.delivery_type == 'local'"> <block v-if="orderPaymentData.delivery.delivery_type == 'local'">
<view class="local-box" v-if="orderPaymentData.config.local.is_use && orderPaymentData.delivery.local.info && orderPaymentData.delivery.local.info.time_is_open == 1"> <view class="local-box"
v-if="orderPaymentData.config.local.is_use && orderPaymentData.delivery.local.info && orderPaymentData.delivery.local.info.time_is_open == 1">
<view class="pick-block" @click="localtime"> <view class="pick-block" @click="localtime">
<view class="font-size-base">送达时间</view> <view class="font-size-base">送达时间</view>
<view class="time-picker"> <view class="time-picker">
<text :class="{'color-tip': !orderCreateData.buyer_ask_delivery_title}">{{ orderCreateData.buyer_ask_delivery_title ? orderCreateData.buyer_ask_delivery_title : '请选择送达时间' }}</text> <text :class="{ 'color-tip': !orderCreateData.buyer_ask_delivery_title }">{{
orderCreateData.buyer_ask_delivery_title ?
orderCreateData.buyer_ask_delivery_title : '请选择送达时间' }}</text>
<text class="iconfont icon-right cell-more"></text> <text class="iconfont icon-right cell-more"></text>
</view> </view>
</view> </view>
@@ -82,7 +93,9 @@
<image class="address-line" :src="$util.img('public/uniapp/order/address-line.png')"></image> <image class="address-line" :src="$util.img('public/uniapp/order/address-line.png')"></image>
</view> </view>
<view class="store-box" :class="{'not-delivery-type': orderPaymentData.delivery.express_type.length <= 1}" v-if="orderPaymentData.delivery.delivery_type == 'store' && storeInfo.currStore"> <view class="store-box"
:class="{ 'not-delivery-type': orderPaymentData.delivery.express_type.length <= 1 }"
v-if="orderPaymentData.delivery.delivery_type == 'store' && storeInfo.currStore">
<block v-if="storeInfo.currStore"> <block v-if="storeInfo.currStore">
<view @click="openSiteDelivery" class="store-info"> <view @click="openSiteDelivery" class="store-info">
<view class="store-address-info"> <view class="store-address-info">
@@ -104,14 +117,16 @@
<view class="mobile-wrap store-mobile"> <view class="mobile-wrap store-mobile">
<view class="form-group"> <view class="form-group">
<text class="text">姓名</text> <text class="text">姓名</text>
<input type="text" placeholder-class="color-tip placeholder" class="input" v-model="member_address.name" disabled /> <input type="text" placeholder-class="color-tip placeholder" class="input"
v-model="member_address.name" disabled />
</view> </view>
</view> </view>
<view class="mobile-wrap store-mobile"> <view class="mobile-wrap store-mobile">
<view class="form-group"> <view class="form-group">
<text class="text">预留手机</text> <text class="text">预留手机</text>
<input type="number" maxlength="11" placeholder="请输入您的手机号码" <input type="number" maxlength="11" placeholder="请输入您的手机号码"
placeholder-class="color-tip placeholder" class="input" v-model="member_address.mobile" /> placeholder-class="color-tip placeholder" class="input"
v-model="member_address.mobile" />
</view> </view>
</view> </view>
<view class="store-time"> <view class="store-time">
@@ -137,27 +152,35 @@
<view class="form-group"> <view class="form-group">
<text class="iconfont icon-dianhua2"></text> <text class="iconfont icon-dianhua2"></text>
<text class="text">手机号码</text> <text class="text">手机号码</text>
<input type="number" maxlength="11" placeholder="请输入您的手机号码" placeholder-class="color-tip placeholder" class="input" v-model="orderCreateData.member_address.mobile" /> <input type="number" maxlength="11" placeholder="请输入您的手机号码"
placeholder-class="color-tip placeholder" class="input"
v-model="orderCreateData.member_address.mobile" />
</view> </view>
</view> </view>
<!-- 店铺 --> <!-- 店铺 -->
<view class="site-wrap" :class="orderPaymentData.exchange_info.type == 2 || orderPaymentData.exchange_info.type == 3 ? 'margin-top' : ''"> <view class="site-wrap"
:class="orderPaymentData.exchange_info.type == 2 || orderPaymentData.exchange_info.type == 3 ? 'margin-top' : ''">
<view class="site-body"> <view class="site-body">
<view class="goods-wrap"> <view class="goods-wrap">
<block v-if="orderPaymentData.exchange_info.type == 2"> <block v-if="orderPaymentData.exchange_info.type == 2">
<view class="goods-img"> <view class="goods-img">
<image :src="orderPaymentData.exchange_info.image ? $util.img(orderPaymentData.exchange_info.image) : $util.img('public/uniapp/point/coupon.png')" @error="imageError()" mode="aspectFill"/> <image
:src="orderPaymentData.exchange_info.image ? $util.img(orderPaymentData.exchange_info.image) : $util.img('public/uniapp/point/coupon.png')"
@error="imageError()" mode="aspectFill" />
</view> </view>
</block> </block>
<block v-else-if="orderPaymentData.exchange_info.type == 3"> <block v-else-if="orderPaymentData.exchange_info.type == 3">
<view class="goods-img"> <view class="goods-img">
<image :src="orderPaymentData.exchange_info.image ? $util.img(orderPaymentData.exchange_info.image) : $util.img('public/uniapp/point/hongbao.png')" @error="imageError()" mode="aspectFill"/> <image
:src="orderPaymentData.exchange_info.image ? $util.img(orderPaymentData.exchange_info.image) : $util.img('public/uniapp/point/hongbao.png')"
@error="imageError()" mode="aspectFill" />
</view> </view>
</block> </block>
<block v-else> <block v-else>
<view class="goods-img"> <view class="goods-img">
<image :src="$util.img(orderPaymentData.exchange_info.image)" @error="imageError()" mode="aspectFill"/> <image :src="$util.img(orderPaymentData.exchange_info.image)" @error="imageError()"
mode="aspectFill" />
</view> </view>
</block> </block>
<view class="goods-info"> <view class="goods-info">
@@ -182,7 +205,8 @@
<view class="site-footer"> <view class="site-footer">
<view class="order-cell"> <view class="order-cell">
<text class="tit">买家留言</text> <text class="tit">买家留言</text>
<view class="box"><input type="text" placeholder="留言前建议先与商家协调一致" placeholder-class="color-tip" v-model="orderCreateData.buyer_message" /></view> <view class="box"><input type="text" placeholder="留言前建议先与商家协调一致" placeholder-class="color-tip"
v-model="orderCreateData.buyer_message" /></view>
</view> </view>
</view> </view>
</view> </view>
@@ -196,7 +220,8 @@
<text class="unit">积分</text> <text class="unit">积分</text>
</view> </view>
</view> </view>
<view class="order-cell" v-if="orderPaymentData.exchange_info.type == 1 && orderPaymentData.delivery_money > 0"> <view class="order-cell"
v-if="orderPaymentData.exchange_info.type == 1 && orderPaymentData.delivery_money > 0">
<text class="tit">运费</text> <text class="tit">运费</text>
<view class="box"> <view class="box">
<text class="unit">{{ $lang('common.currencySymbol') }}</text> <text class="unit">{{ $lang('common.currencySymbol') }}</text>
@@ -206,7 +231,8 @@
</view> </view>
<view class="error-message" v-if="orderPaymentData.delivery && orderPaymentData.delivery.delivery_type == 'local' && orderPaymentData.delivery && orderPaymentData.delivery.error && orderPaymentData.delivery.error !== ''"> <view class="error-message"
v-if="orderPaymentData.delivery && orderPaymentData.delivery.delivery_type == 'local' && orderPaymentData.delivery && orderPaymentData.delivery.error && orderPaymentData.delivery.error !== ''">
{{ orderPaymentData.delivery.error_msg }} {{ orderPaymentData.delivery.error_msg }}
</view> </view>
<view class="order-submit" :class="{ 'bottom-safe-area': isIphoneX }"> <view class="order-submit" :class="{ 'bottom-safe-area': isIphoneX }">
@@ -221,9 +247,11 @@
</template> </template>
</view> </view>
<view class="submit-btn"> <view class="submit-btn">
<button v-if="createBtn()" type="primary" class="mini" size="mini" @click="openChoosePayment()">提交订单</button> <button v-if="createBtn()" type="primary" class="mini" size="mini"
@click="openChoosePayment()">提交订单</button>
<button v-else class="no-submit mini" size="mini"> <button v-else class="no-submit mini" size="mini">
<block v-if="orderPaymentData.delivery && orderPaymentData.delivery.delivery_type == 'local' && orderPaymentData.delivery && orderPaymentData.delivery.error && orderPaymentData.delivery.start_money > orderPaymentData.price"> <block
v-if="orderPaymentData.delivery && orderPaymentData.delivery.delivery_type == 'local' && orderPaymentData.delivery && orderPaymentData.delivery.error && orderPaymentData.delivery.start_money > orderPaymentData.price">
{{ orderPaymentData.delivery.start_money - orderPaymentData.price | moneyFormat }}起送 {{ orderPaymentData.delivery.start_money - orderPaymentData.price | moneyFormat }}起送
</block> </block>
<block v-else>提交订单</block> <block v-else>提交订单</block>
@@ -241,22 +269,29 @@
</view> </view>
<view class="popup-body store-popup" :class="{ 'safe-area': isIphoneX }"> <view class="popup-body store-popup" :class="{ 'safe-area': isIphoneX }">
<view class="delivery-content"> <view class="delivery-content">
<view class="item-wrap" v-for="(item, index) in storeInfo.storeList" :key="index" @click="selectPickupPoint(item)"> <view class="item-wrap" v-for="(item, index) in storeInfo.storeList" :key="index"
@click="selectPickupPoint(item)">
<view class="detail"> <view class="detail">
<view class="name" :class="item.store_id == orderPaymentData.delivery.store_id ? 'color-base-text' : ''"> <view class="name"
:class="item.store_id == orderPaymentData.delivery.store_id ? 'color-base-text' : ''">
<text>{{ item.store_name }}</text> <text>{{ item.store_name }}</text>
<text v-if="item.distance">({{ item.distance }}km)</text> <text v-if="item.distance">({{ item.distance }}km)</text>
</view> </view>
<view class="info"> <view class="info">
<view :class="item.store_id == orderPaymentData.delivery.store_id ? 'color-base-text' : ''" class="font-size-goods-tag"> <view
:class="item.store_id == orderPaymentData.delivery.store_id ? 'color-base-text' : ''"
class="font-size-goods-tag">
营业时间{{ item.open_date }} 营业时间{{ item.open_date }}
</view> </view>
<view :class="item.store_id == orderPaymentData.delivery.store_id ? 'color-base-text' : ''" class="font-size-goods-tag"> <view
:class="item.store_id == orderPaymentData.delivery.store_id ? 'color-base-text' : ''"
class="font-size-goods-tag">
地址{{ item.full_address }}{{ item.address }} 地址{{ item.full_address }}{{ item.address }}
</view> </view>
</view> </view>
</view> </view>
<view class="icon" v-if="item.store_id == orderPaymentData.delivery.store_id"><text class="iconfont icon-yuan_checked color-base-text"></text></view> <view class="icon" v-if="item.store_id == orderPaymentData.delivery.store_id"><text
class="iconfont icon-yuan_checked color-base-text"></text></view>
</view> </view>
<view v-if="!storeInfo.storeList" class="empty">所选择收货地址附近没有可以自提的门店</view> <view v-if="!storeInfo.storeList" class="empty">所选择收货地址附近没有可以自提的门店</view>
</view> </view>
@@ -267,7 +302,8 @@
</scroll-view> </scroll-view>
<!-- 选择支付方式弹窗 --> <!-- 选择支付方式弹窗 -->
<ns-payment ref="choosePaymentPopup" :payMoney="orderPaymentData.order_money" @confirm="orderCreate"></ns-payment> <ns-payment ref="choosePaymentPopup" :payMoney="orderPaymentData.order_money"
@confirm="orderCreate"></ns-payment>
<loading-cover ref="loadingCover"></loading-cover> <loading-cover ref="loadingCover"></loading-cover>
@@ -278,28 +314,8 @@
<script> <script>
import payment from './public/js/payment.js'; import payment from './public/js/payment.js';
import uniPopup from '@/components/uni-popup/uni-popup.vue';
import nsSelectTime from '@/components/ns-select-time/ns-select-time.vue';
import MescrollUni from "@/components/mescroll/my-list-mescroll.vue";
import nsLogin from '@/components/ns-login/ns-login.vue';
import loadingCover from '@/components/loading-cover/loading-cover.vue';
import nsEmpty from '@/components/ns-empty/ns-empty.vue';
// #ifdef MP-WEIXIN
import privacyPopup from '@/components/wx-privacy-popup/privacy-popup.vue';
// #endif
export default { export default {
components: {
uniPopup,
nsSelectTime,
nsLogin,
MescrollUni,
loadingCover,
nsEmpty,
// #ifdef MP-WEIXIN
privacyPopup
// #endif
},
mixins: [payment] mixins: [payment]
}; };
</script> </script>

View File

@@ -7,8 +7,6 @@
<script> <script>
import htmlParser from '@/common/js/html-parser'; import htmlParser from '@/common/js/html-parser';
export default { export default {
components: {
},
data() { data() {
return { return {
content:'', content:'',

View File

@@ -17,10 +17,8 @@
</view> </view>
<loading-cover ref="loadingCover"></loading-cover> <loading-cover ref="loadingCover"></loading-cover>
<!-- #ifdef MP-WEIXIN --> <!-- 隐私弹窗 -->
<!-- 小程序隐私协议 -->
<privacy-popup ref="privacyPopup"></privacy-popup> <privacy-popup ref="privacyPopup"></privacy-popup>
<!-- #endif -->
</view> </view>
</template> </template>

View File

@@ -6,7 +6,8 @@
<ns-adv keyword="NS_ARTICLE" class-name="adv-wrap"></ns-adv> <ns-adv keyword="NS_ARTICLE" class-name="adv-wrap"></ns-adv>
<view class="item" v-for="(item, index) in list" :key="index" @click="toDetail(item)"> <view class="item" v-for="(item, index) in list" :key="index" @click="toDetail(item)">
<view class="article-img"> <view class="article-img">
<image class="cover-img" :src="$util.img(item.cover_img)" mode="widthFix" @error="imgError(index)"/> <image class="cover-img" :src="$util.img(item.cover_img)" mode="widthFix"
@error="imgError(index)" />
</view> </view>
<view class="info-wrap"> <view class="info-wrap">
<text class="title">{{ item.article_title }}</text> <text class="title">{{ item.article_title }}</text>
@@ -25,39 +26,18 @@
</block> </block>
</mescroll-uni> </mescroll-uni>
<!-- #ifdef MP-WEIXIN --> <!-- 隐私弹窗 -->
<!-- 小程序隐私协议 -->
<privacy-popup ref="privacyPopup"></privacy-popup> <privacy-popup ref="privacyPopup"></privacy-popup>
<!-- #endif -->
</view> </view>
</template> </template>
<script> <script>
import nsAdv from '@/pages_tool/components/ns-adv/ns-adv.vue';
import MescrollUni from "@/components/mescroll/my-list-mescroll.vue";
import nsLogin from '@/components/ns-login/ns-login.vue';
import loadingCover from '@/components/loading-cover/loading-cover.vue';
import nsEmpty from '@/components/ns-empty/ns-empty.vue';
// #ifdef MP-WEIXIN
import privacyPopup from '@/components/wx-privacy-popup/privacy-popup.vue';
// #endif
export default { export default {
data() { data() {
return { return {
list: [] list: []
}; };
}, },
components: {
nsAdv,
MescrollUni,
nsLogin,
loadingCover,
nsEmpty,
// #ifdef MP-WEIXIN
privacyPopup
// #endif
},
onShow() { onShow() {
this.setPublicShare(); this.setPublicShare();
}, },

Some files were not shown because too many files have changed in this diff Show More