first commit
commit
d340cb56ba
|
|
@ -0,0 +1,33 @@
|
||||||
|
HELP.md
|
||||||
|
target/
|
||||||
|
!.mvn/wrapper/maven-wrapper.jar
|
||||||
|
!**/src/main/**/target/
|
||||||
|
!**/src/test/**/target/
|
||||||
|
|
||||||
|
### STS ###
|
||||||
|
.apt_generated
|
||||||
|
.classpath
|
||||||
|
.factorypath
|
||||||
|
.project
|
||||||
|
.settings
|
||||||
|
.springBeans
|
||||||
|
.sts4-cache
|
||||||
|
|
||||||
|
### IntelliJ IDEA ###
|
||||||
|
.idea
|
||||||
|
*.iws
|
||||||
|
*.iml
|
||||||
|
*.ipr
|
||||||
|
|
||||||
|
### NetBeans ###
|
||||||
|
/nbproject/private/
|
||||||
|
/nbbuild/
|
||||||
|
/dist/
|
||||||
|
/nbdist/
|
||||||
|
/.nb-gradle/
|
||||||
|
build/
|
||||||
|
!**/src/main/**/build/
|
||||||
|
!**/src/test/**/build/
|
||||||
|
|
||||||
|
### VS Code ###
|
||||||
|
.vscode/
|
||||||
Binary file not shown.
|
|
@ -0,0 +1,2 @@
|
||||||
|
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.5/apache-maven-3.9.5-bin.zip
|
||||||
|
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.2.0/maven-wrapper-3.2.0.jar
|
||||||
|
|
@ -0,0 +1,308 @@
|
||||||
|
#!/bin/sh
|
||||||
|
# ----------------------------------------------------------------------------
|
||||||
|
# Licensed to the Apache Software Foundation (ASF) under one
|
||||||
|
# or more contributor license agreements. See the NOTICE file
|
||||||
|
# distributed with this work for additional information
|
||||||
|
# regarding copyright ownership. The ASF licenses this file
|
||||||
|
# to you under the Apache License, Version 2.0 (the
|
||||||
|
# "License"); you may not use this file except in compliance
|
||||||
|
# with the License. You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# https://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing,
|
||||||
|
# software distributed under the License is distributed on an
|
||||||
|
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
|
# KIND, either express or implied. See the License for the
|
||||||
|
# specific language governing permissions and limitations
|
||||||
|
# under the License.
|
||||||
|
# ----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
# ----------------------------------------------------------------------------
|
||||||
|
# Apache Maven Wrapper startup batch script, version 3.2.0
|
||||||
|
#
|
||||||
|
# Required ENV vars:
|
||||||
|
# ------------------
|
||||||
|
# JAVA_HOME - location of a JDK home dir
|
||||||
|
#
|
||||||
|
# Optional ENV vars
|
||||||
|
# -----------------
|
||||||
|
# MAVEN_OPTS - parameters passed to the Java VM when running Maven
|
||||||
|
# e.g. to debug Maven itself, use
|
||||||
|
# set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000
|
||||||
|
# MAVEN_SKIP_RC - flag to disable loading of mavenrc files
|
||||||
|
# ----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
if [ -z "$MAVEN_SKIP_RC" ] ; then
|
||||||
|
|
||||||
|
if [ -f /usr/local/etc/mavenrc ] ; then
|
||||||
|
. /usr/local/etc/mavenrc
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -f /etc/mavenrc ] ; then
|
||||||
|
. /etc/mavenrc
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -f "$HOME/.mavenrc" ] ; then
|
||||||
|
. "$HOME/.mavenrc"
|
||||||
|
fi
|
||||||
|
|
||||||
|
fi
|
||||||
|
|
||||||
|
# OS specific support. $var _must_ be set to either true or false.
|
||||||
|
cygwin=false;
|
||||||
|
darwin=false;
|
||||||
|
mingw=false
|
||||||
|
case "$(uname)" in
|
||||||
|
CYGWIN*) cygwin=true ;;
|
||||||
|
MINGW*) mingw=true;;
|
||||||
|
Darwin*) darwin=true
|
||||||
|
# Use /usr/libexec/java_home if available, otherwise fall back to /Library/Java/Home
|
||||||
|
# See https://developer.apple.com/library/mac/qa/qa1170/_index.html
|
||||||
|
if [ -z "$JAVA_HOME" ]; then
|
||||||
|
if [ -x "/usr/libexec/java_home" ]; then
|
||||||
|
JAVA_HOME="$(/usr/libexec/java_home)"; export JAVA_HOME
|
||||||
|
else
|
||||||
|
JAVA_HOME="/Library/Java/Home"; export JAVA_HOME
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -z "$JAVA_HOME" ] ; then
|
||||||
|
if [ -r /etc/gentoo-release ] ; then
|
||||||
|
JAVA_HOME=$(java-config --jre-home)
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
# For Cygwin, ensure paths are in UNIX format before anything is touched
|
||||||
|
if $cygwin ; then
|
||||||
|
[ -n "$JAVA_HOME" ] &&
|
||||||
|
JAVA_HOME=$(cygpath --unix "$JAVA_HOME")
|
||||||
|
[ -n "$CLASSPATH" ] &&
|
||||||
|
CLASSPATH=$(cygpath --path --unix "$CLASSPATH")
|
||||||
|
fi
|
||||||
|
|
||||||
|
# For Mingw, ensure paths are in UNIX format before anything is touched
|
||||||
|
if $mingw ; then
|
||||||
|
[ -n "$JAVA_HOME" ] && [ -d "$JAVA_HOME" ] &&
|
||||||
|
JAVA_HOME="$(cd "$JAVA_HOME" || (echo "cannot cd into $JAVA_HOME."; exit 1); pwd)"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -z "$JAVA_HOME" ]; then
|
||||||
|
javaExecutable="$(which javac)"
|
||||||
|
if [ -n "$javaExecutable" ] && ! [ "$(expr "\"$javaExecutable\"" : '\([^ ]*\)')" = "no" ]; then
|
||||||
|
# readlink(1) is not available as standard on Solaris 10.
|
||||||
|
readLink=$(which readlink)
|
||||||
|
if [ ! "$(expr "$readLink" : '\([^ ]*\)')" = "no" ]; then
|
||||||
|
if $darwin ; then
|
||||||
|
javaHome="$(dirname "\"$javaExecutable\"")"
|
||||||
|
javaExecutable="$(cd "\"$javaHome\"" && pwd -P)/javac"
|
||||||
|
else
|
||||||
|
javaExecutable="$(readlink -f "\"$javaExecutable\"")"
|
||||||
|
fi
|
||||||
|
javaHome="$(dirname "\"$javaExecutable\"")"
|
||||||
|
javaHome=$(expr "$javaHome" : '\(.*\)/bin')
|
||||||
|
JAVA_HOME="$javaHome"
|
||||||
|
export JAVA_HOME
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -z "$JAVACMD" ] ; then
|
||||||
|
if [ -n "$JAVA_HOME" ] ; then
|
||||||
|
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
|
||||||
|
# IBM's JDK on AIX uses strange locations for the executables
|
||||||
|
JAVACMD="$JAVA_HOME/jre/sh/java"
|
||||||
|
else
|
||||||
|
JAVACMD="$JAVA_HOME/bin/java"
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
JAVACMD="$(\unset -f command 2>/dev/null; \command -v java)"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -x "$JAVACMD" ] ; then
|
||||||
|
echo "Error: JAVA_HOME is not defined correctly." >&2
|
||||||
|
echo " We cannot execute $JAVACMD" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -z "$JAVA_HOME" ] ; then
|
||||||
|
echo "Warning: JAVA_HOME environment variable is not set."
|
||||||
|
fi
|
||||||
|
|
||||||
|
# traverses directory structure from process work directory to filesystem root
|
||||||
|
# first directory with .mvn subdirectory is considered project base directory
|
||||||
|
find_maven_basedir() {
|
||||||
|
if [ -z "$1" ]
|
||||||
|
then
|
||||||
|
echo "Path not specified to find_maven_basedir"
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
basedir="$1"
|
||||||
|
wdir="$1"
|
||||||
|
while [ "$wdir" != '/' ] ; do
|
||||||
|
if [ -d "$wdir"/.mvn ] ; then
|
||||||
|
basedir=$wdir
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
# workaround for JBEAP-8937 (on Solaris 10/Sparc)
|
||||||
|
if [ -d "${wdir}" ]; then
|
||||||
|
wdir=$(cd "$wdir/.." || exit 1; pwd)
|
||||||
|
fi
|
||||||
|
# end of workaround
|
||||||
|
done
|
||||||
|
printf '%s' "$(cd "$basedir" || exit 1; pwd)"
|
||||||
|
}
|
||||||
|
|
||||||
|
# concatenates all lines of a file
|
||||||
|
concat_lines() {
|
||||||
|
if [ -f "$1" ]; then
|
||||||
|
# Remove \r in case we run on Windows within Git Bash
|
||||||
|
# and check out the repository with auto CRLF management
|
||||||
|
# enabled. Otherwise, we may read lines that are delimited with
|
||||||
|
# \r\n and produce $'-Xarg\r' rather than -Xarg due to word
|
||||||
|
# splitting rules.
|
||||||
|
tr -s '\r\n' ' ' < "$1"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
log() {
|
||||||
|
if [ "$MVNW_VERBOSE" = true ]; then
|
||||||
|
printf '%s\n' "$1"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
BASE_DIR=$(find_maven_basedir "$(dirname "$0")")
|
||||||
|
if [ -z "$BASE_DIR" ]; then
|
||||||
|
exit 1;
|
||||||
|
fi
|
||||||
|
|
||||||
|
MAVEN_PROJECTBASEDIR=${MAVEN_BASEDIR:-"$BASE_DIR"}; export MAVEN_PROJECTBASEDIR
|
||||||
|
log "$MAVEN_PROJECTBASEDIR"
|
||||||
|
|
||||||
|
##########################################################################################
|
||||||
|
# Extension to allow automatically downloading the maven-wrapper.jar from Maven-central
|
||||||
|
# This allows using the maven wrapper in projects that prohibit checking in binary data.
|
||||||
|
##########################################################################################
|
||||||
|
wrapperJarPath="$MAVEN_PROJECTBASEDIR/.mvn/wrapper/maven-wrapper.jar"
|
||||||
|
if [ -r "$wrapperJarPath" ]; then
|
||||||
|
log "Found $wrapperJarPath"
|
||||||
|
else
|
||||||
|
log "Couldn't find $wrapperJarPath, downloading it ..."
|
||||||
|
|
||||||
|
if [ -n "$MVNW_REPOURL" ]; then
|
||||||
|
wrapperUrl="$MVNW_REPOURL/org/apache/maven/wrapper/maven-wrapper/3.2.0/maven-wrapper-3.2.0.jar"
|
||||||
|
else
|
||||||
|
wrapperUrl="https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.2.0/maven-wrapper-3.2.0.jar"
|
||||||
|
fi
|
||||||
|
while IFS="=" read -r key value; do
|
||||||
|
# Remove '\r' from value to allow usage on windows as IFS does not consider '\r' as a separator ( considers space, tab, new line ('\n'), and custom '=' )
|
||||||
|
safeValue=$(echo "$value" | tr -d '\r')
|
||||||
|
case "$key" in (wrapperUrl) wrapperUrl="$safeValue"; break ;;
|
||||||
|
esac
|
||||||
|
done < "$MAVEN_PROJECTBASEDIR/.mvn/wrapper/maven-wrapper.properties"
|
||||||
|
log "Downloading from: $wrapperUrl"
|
||||||
|
|
||||||
|
if $cygwin; then
|
||||||
|
wrapperJarPath=$(cygpath --path --windows "$wrapperJarPath")
|
||||||
|
fi
|
||||||
|
|
||||||
|
if command -v wget > /dev/null; then
|
||||||
|
log "Found wget ... using wget"
|
||||||
|
[ "$MVNW_VERBOSE" = true ] && QUIET="" || QUIET="--quiet"
|
||||||
|
if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then
|
||||||
|
wget $QUIET "$wrapperUrl" -O "$wrapperJarPath" || rm -f "$wrapperJarPath"
|
||||||
|
else
|
||||||
|
wget $QUIET --http-user="$MVNW_USERNAME" --http-password="$MVNW_PASSWORD" "$wrapperUrl" -O "$wrapperJarPath" || rm -f "$wrapperJarPath"
|
||||||
|
fi
|
||||||
|
elif command -v curl > /dev/null; then
|
||||||
|
log "Found curl ... using curl"
|
||||||
|
[ "$MVNW_VERBOSE" = true ] && QUIET="" || QUIET="--silent"
|
||||||
|
if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then
|
||||||
|
curl $QUIET -o "$wrapperJarPath" "$wrapperUrl" -f -L || rm -f "$wrapperJarPath"
|
||||||
|
else
|
||||||
|
curl $QUIET --user "$MVNW_USERNAME:$MVNW_PASSWORD" -o "$wrapperJarPath" "$wrapperUrl" -f -L || rm -f "$wrapperJarPath"
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
log "Falling back to using Java to download"
|
||||||
|
javaSource="$MAVEN_PROJECTBASEDIR/.mvn/wrapper/MavenWrapperDownloader.java"
|
||||||
|
javaClass="$MAVEN_PROJECTBASEDIR/.mvn/wrapper/MavenWrapperDownloader.class"
|
||||||
|
# For Cygwin, switch paths to Windows format before running javac
|
||||||
|
if $cygwin; then
|
||||||
|
javaSource=$(cygpath --path --windows "$javaSource")
|
||||||
|
javaClass=$(cygpath --path --windows "$javaClass")
|
||||||
|
fi
|
||||||
|
if [ -e "$javaSource" ]; then
|
||||||
|
if [ ! -e "$javaClass" ]; then
|
||||||
|
log " - Compiling MavenWrapperDownloader.java ..."
|
||||||
|
("$JAVA_HOME/bin/javac" "$javaSource")
|
||||||
|
fi
|
||||||
|
if [ -e "$javaClass" ]; then
|
||||||
|
log " - Running MavenWrapperDownloader.java ..."
|
||||||
|
("$JAVA_HOME/bin/java" -cp .mvn/wrapper MavenWrapperDownloader "$wrapperUrl" "$wrapperJarPath") || rm -f "$wrapperJarPath"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
##########################################################################################
|
||||||
|
# End of extension
|
||||||
|
##########################################################################################
|
||||||
|
|
||||||
|
# If specified, validate the SHA-256 sum of the Maven wrapper jar file
|
||||||
|
wrapperSha256Sum=""
|
||||||
|
while IFS="=" read -r key value; do
|
||||||
|
case "$key" in (wrapperSha256Sum) wrapperSha256Sum=$value; break ;;
|
||||||
|
esac
|
||||||
|
done < "$MAVEN_PROJECTBASEDIR/.mvn/wrapper/maven-wrapper.properties"
|
||||||
|
if [ -n "$wrapperSha256Sum" ]; then
|
||||||
|
wrapperSha256Result=false
|
||||||
|
if command -v sha256sum > /dev/null; then
|
||||||
|
if echo "$wrapperSha256Sum $wrapperJarPath" | sha256sum -c > /dev/null 2>&1; then
|
||||||
|
wrapperSha256Result=true
|
||||||
|
fi
|
||||||
|
elif command -v shasum > /dev/null; then
|
||||||
|
if echo "$wrapperSha256Sum $wrapperJarPath" | shasum -a 256 -c > /dev/null 2>&1; then
|
||||||
|
wrapperSha256Result=true
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
echo "Checksum validation was requested but neither 'sha256sum' or 'shasum' are available."
|
||||||
|
echo "Please install either command, or disable validation by removing 'wrapperSha256Sum' from your maven-wrapper.properties."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
if [ $wrapperSha256Result = false ]; then
|
||||||
|
echo "Error: Failed to validate Maven wrapper SHA-256, your Maven wrapper might be compromised." >&2
|
||||||
|
echo "Investigate or delete $wrapperJarPath to attempt a clean download." >&2
|
||||||
|
echo "If you updated your Maven version, you need to update the specified wrapperSha256Sum property." >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
MAVEN_OPTS="$(concat_lines "$MAVEN_PROJECTBASEDIR/.mvn/jvm.config") $MAVEN_OPTS"
|
||||||
|
|
||||||
|
# For Cygwin, switch paths to Windows format before running java
|
||||||
|
if $cygwin; then
|
||||||
|
[ -n "$JAVA_HOME" ] &&
|
||||||
|
JAVA_HOME=$(cygpath --path --windows "$JAVA_HOME")
|
||||||
|
[ -n "$CLASSPATH" ] &&
|
||||||
|
CLASSPATH=$(cygpath --path --windows "$CLASSPATH")
|
||||||
|
[ -n "$MAVEN_PROJECTBASEDIR" ] &&
|
||||||
|
MAVEN_PROJECTBASEDIR=$(cygpath --path --windows "$MAVEN_PROJECTBASEDIR")
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Provide a "standardized" way to retrieve the CLI args that will
|
||||||
|
# work with both Windows and non-Windows executions.
|
||||||
|
MAVEN_CMD_LINE_ARGS="$MAVEN_CONFIG $*"
|
||||||
|
export MAVEN_CMD_LINE_ARGS
|
||||||
|
|
||||||
|
WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain
|
||||||
|
|
||||||
|
# shellcheck disable=SC2086 # safe args
|
||||||
|
exec "$JAVACMD" \
|
||||||
|
$MAVEN_OPTS \
|
||||||
|
$MAVEN_DEBUG_OPTS \
|
||||||
|
-classpath "$MAVEN_PROJECTBASEDIR/.mvn/wrapper/maven-wrapper.jar" \
|
||||||
|
"-Dmaven.multiModuleProjectDirectory=${MAVEN_PROJECTBASEDIR}" \
|
||||||
|
${WRAPPER_LAUNCHER} $MAVEN_CONFIG "$@"
|
||||||
|
|
@ -0,0 +1,205 @@
|
||||||
|
@REM ----------------------------------------------------------------------------
|
||||||
|
@REM Licensed to the Apache Software Foundation (ASF) under one
|
||||||
|
@REM or more contributor license agreements. See the NOTICE file
|
||||||
|
@REM distributed with this work for additional information
|
||||||
|
@REM regarding copyright ownership. The ASF licenses this file
|
||||||
|
@REM to you under the Apache License, Version 2.0 (the
|
||||||
|
@REM "License"); you may not use this file except in compliance
|
||||||
|
@REM with the License. You may obtain a copy of the License at
|
||||||
|
@REM
|
||||||
|
@REM https://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
@REM
|
||||||
|
@REM Unless required by applicable law or agreed to in writing,
|
||||||
|
@REM software distributed under the License is distributed on an
|
||||||
|
@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
|
@REM KIND, either express or implied. See the License for the
|
||||||
|
@REM specific language governing permissions and limitations
|
||||||
|
@REM under the License.
|
||||||
|
@REM ----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
@REM ----------------------------------------------------------------------------
|
||||||
|
@REM Apache Maven Wrapper startup batch script, version 3.2.0
|
||||||
|
@REM
|
||||||
|
@REM Required ENV vars:
|
||||||
|
@REM JAVA_HOME - location of a JDK home dir
|
||||||
|
@REM
|
||||||
|
@REM Optional ENV vars
|
||||||
|
@REM MAVEN_BATCH_ECHO - set to 'on' to enable the echoing of the batch commands
|
||||||
|
@REM MAVEN_BATCH_PAUSE - set to 'on' to wait for a keystroke before ending
|
||||||
|
@REM MAVEN_OPTS - parameters passed to the Java VM when running Maven
|
||||||
|
@REM e.g. to debug Maven itself, use
|
||||||
|
@REM set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000
|
||||||
|
@REM MAVEN_SKIP_RC - flag to disable loading of mavenrc files
|
||||||
|
@REM ----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
@REM Begin all REM lines with '@' in case MAVEN_BATCH_ECHO is 'on'
|
||||||
|
@echo off
|
||||||
|
@REM set title of command window
|
||||||
|
title %0
|
||||||
|
@REM enable echoing by setting MAVEN_BATCH_ECHO to 'on'
|
||||||
|
@if "%MAVEN_BATCH_ECHO%" == "on" echo %MAVEN_BATCH_ECHO%
|
||||||
|
|
||||||
|
@REM set %HOME% to equivalent of $HOME
|
||||||
|
if "%HOME%" == "" (set "HOME=%HOMEDRIVE%%HOMEPATH%")
|
||||||
|
|
||||||
|
@REM Execute a user defined script before this one
|
||||||
|
if not "%MAVEN_SKIP_RC%" == "" goto skipRcPre
|
||||||
|
@REM check for pre script, once with legacy .bat ending and once with .cmd ending
|
||||||
|
if exist "%USERPROFILE%\mavenrc_pre.bat" call "%USERPROFILE%\mavenrc_pre.bat" %*
|
||||||
|
if exist "%USERPROFILE%\mavenrc_pre.cmd" call "%USERPROFILE%\mavenrc_pre.cmd" %*
|
||||||
|
:skipRcPre
|
||||||
|
|
||||||
|
@setlocal
|
||||||
|
|
||||||
|
set ERROR_CODE=0
|
||||||
|
|
||||||
|
@REM To isolate internal variables from possible post scripts, we use another setlocal
|
||||||
|
@setlocal
|
||||||
|
|
||||||
|
@REM ==== START VALIDATION ====
|
||||||
|
if not "%JAVA_HOME%" == "" goto OkJHome
|
||||||
|
|
||||||
|
echo.
|
||||||
|
echo Error: JAVA_HOME not found in your environment. >&2
|
||||||
|
echo Please set the JAVA_HOME variable in your environment to match the >&2
|
||||||
|
echo location of your Java installation. >&2
|
||||||
|
echo.
|
||||||
|
goto error
|
||||||
|
|
||||||
|
:OkJHome
|
||||||
|
if exist "%JAVA_HOME%\bin\java.exe" goto init
|
||||||
|
|
||||||
|
echo.
|
||||||
|
echo Error: JAVA_HOME is set to an invalid directory. >&2
|
||||||
|
echo JAVA_HOME = "%JAVA_HOME%" >&2
|
||||||
|
echo Please set the JAVA_HOME variable in your environment to match the >&2
|
||||||
|
echo location of your Java installation. >&2
|
||||||
|
echo.
|
||||||
|
goto error
|
||||||
|
|
||||||
|
@REM ==== END VALIDATION ====
|
||||||
|
|
||||||
|
:init
|
||||||
|
|
||||||
|
@REM Find the project base dir, i.e. the directory that contains the folder ".mvn".
|
||||||
|
@REM Fallback to current working directory if not found.
|
||||||
|
|
||||||
|
set MAVEN_PROJECTBASEDIR=%MAVEN_BASEDIR%
|
||||||
|
IF NOT "%MAVEN_PROJECTBASEDIR%"=="" goto endDetectBaseDir
|
||||||
|
|
||||||
|
set EXEC_DIR=%CD%
|
||||||
|
set WDIR=%EXEC_DIR%
|
||||||
|
:findBaseDir
|
||||||
|
IF EXIST "%WDIR%"\.mvn goto baseDirFound
|
||||||
|
cd ..
|
||||||
|
IF "%WDIR%"=="%CD%" goto baseDirNotFound
|
||||||
|
set WDIR=%CD%
|
||||||
|
goto findBaseDir
|
||||||
|
|
||||||
|
:baseDirFound
|
||||||
|
set MAVEN_PROJECTBASEDIR=%WDIR%
|
||||||
|
cd "%EXEC_DIR%"
|
||||||
|
goto endDetectBaseDir
|
||||||
|
|
||||||
|
:baseDirNotFound
|
||||||
|
set MAVEN_PROJECTBASEDIR=%EXEC_DIR%
|
||||||
|
cd "%EXEC_DIR%"
|
||||||
|
|
||||||
|
:endDetectBaseDir
|
||||||
|
|
||||||
|
IF NOT EXIST "%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config" goto endReadAdditionalConfig
|
||||||
|
|
||||||
|
@setlocal EnableExtensions EnableDelayedExpansion
|
||||||
|
for /F "usebackq delims=" %%a in ("%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config") do set JVM_CONFIG_MAVEN_PROPS=!JVM_CONFIG_MAVEN_PROPS! %%a
|
||||||
|
@endlocal & set JVM_CONFIG_MAVEN_PROPS=%JVM_CONFIG_MAVEN_PROPS%
|
||||||
|
|
||||||
|
:endReadAdditionalConfig
|
||||||
|
|
||||||
|
SET MAVEN_JAVA_EXE="%JAVA_HOME%\bin\java.exe"
|
||||||
|
set WRAPPER_JAR="%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.jar"
|
||||||
|
set WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain
|
||||||
|
|
||||||
|
set WRAPPER_URL="https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.2.0/maven-wrapper-3.2.0.jar"
|
||||||
|
|
||||||
|
FOR /F "usebackq tokens=1,2 delims==" %%A IN ("%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.properties") DO (
|
||||||
|
IF "%%A"=="wrapperUrl" SET WRAPPER_URL=%%B
|
||||||
|
)
|
||||||
|
|
||||||
|
@REM Extension to allow automatically downloading the maven-wrapper.jar from Maven-central
|
||||||
|
@REM This allows using the maven wrapper in projects that prohibit checking in binary data.
|
||||||
|
if exist %WRAPPER_JAR% (
|
||||||
|
if "%MVNW_VERBOSE%" == "true" (
|
||||||
|
echo Found %WRAPPER_JAR%
|
||||||
|
)
|
||||||
|
) else (
|
||||||
|
if not "%MVNW_REPOURL%" == "" (
|
||||||
|
SET WRAPPER_URL="%MVNW_REPOURL%/org/apache/maven/wrapper/maven-wrapper/3.2.0/maven-wrapper-3.2.0.jar"
|
||||||
|
)
|
||||||
|
if "%MVNW_VERBOSE%" == "true" (
|
||||||
|
echo Couldn't find %WRAPPER_JAR%, downloading it ...
|
||||||
|
echo Downloading from: %WRAPPER_URL%
|
||||||
|
)
|
||||||
|
|
||||||
|
powershell -Command "&{"^
|
||||||
|
"$webclient = new-object System.Net.WebClient;"^
|
||||||
|
"if (-not ([string]::IsNullOrEmpty('%MVNW_USERNAME%') -and [string]::IsNullOrEmpty('%MVNW_PASSWORD%'))) {"^
|
||||||
|
"$webclient.Credentials = new-object System.Net.NetworkCredential('%MVNW_USERNAME%', '%MVNW_PASSWORD%');"^
|
||||||
|
"}"^
|
||||||
|
"[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; $webclient.DownloadFile('%WRAPPER_URL%', '%WRAPPER_JAR%')"^
|
||||||
|
"}"
|
||||||
|
if "%MVNW_VERBOSE%" == "true" (
|
||||||
|
echo Finished downloading %WRAPPER_JAR%
|
||||||
|
)
|
||||||
|
)
|
||||||
|
@REM End of extension
|
||||||
|
|
||||||
|
@REM If specified, validate the SHA-256 sum of the Maven wrapper jar file
|
||||||
|
SET WRAPPER_SHA_256_SUM=""
|
||||||
|
FOR /F "usebackq tokens=1,2 delims==" %%A IN ("%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.properties") DO (
|
||||||
|
IF "%%A"=="wrapperSha256Sum" SET WRAPPER_SHA_256_SUM=%%B
|
||||||
|
)
|
||||||
|
IF NOT %WRAPPER_SHA_256_SUM%=="" (
|
||||||
|
powershell -Command "&{"^
|
||||||
|
"$hash = (Get-FileHash \"%WRAPPER_JAR%\" -Algorithm SHA256).Hash.ToLower();"^
|
||||||
|
"If('%WRAPPER_SHA_256_SUM%' -ne $hash){"^
|
||||||
|
" Write-Output 'Error: Failed to validate Maven wrapper SHA-256, your Maven wrapper might be compromised.';"^
|
||||||
|
" Write-Output 'Investigate or delete %WRAPPER_JAR% to attempt a clean download.';"^
|
||||||
|
" Write-Output 'If you updated your Maven version, you need to update the specified wrapperSha256Sum property.';"^
|
||||||
|
" exit 1;"^
|
||||||
|
"}"^
|
||||||
|
"}"
|
||||||
|
if ERRORLEVEL 1 goto error
|
||||||
|
)
|
||||||
|
|
||||||
|
@REM Provide a "standardized" way to retrieve the CLI args that will
|
||||||
|
@REM work with both Windows and non-Windows executions.
|
||||||
|
set MAVEN_CMD_LINE_ARGS=%*
|
||||||
|
|
||||||
|
%MAVEN_JAVA_EXE% ^
|
||||||
|
%JVM_CONFIG_MAVEN_PROPS% ^
|
||||||
|
%MAVEN_OPTS% ^
|
||||||
|
%MAVEN_DEBUG_OPTS% ^
|
||||||
|
-classpath %WRAPPER_JAR% ^
|
||||||
|
"-Dmaven.multiModuleProjectDirectory=%MAVEN_PROJECTBASEDIR%" ^
|
||||||
|
%WRAPPER_LAUNCHER% %MAVEN_CONFIG% %*
|
||||||
|
if ERRORLEVEL 1 goto error
|
||||||
|
goto end
|
||||||
|
|
||||||
|
:error
|
||||||
|
set ERROR_CODE=1
|
||||||
|
|
||||||
|
:end
|
||||||
|
@endlocal & set ERROR_CODE=%ERROR_CODE%
|
||||||
|
|
||||||
|
if not "%MAVEN_SKIP_RC%"=="" goto skipRcPost
|
||||||
|
@REM check for post script, once with legacy .bat ending and once with .cmd ending
|
||||||
|
if exist "%USERPROFILE%\mavenrc_post.bat" call "%USERPROFILE%\mavenrc_post.bat"
|
||||||
|
if exist "%USERPROFILE%\mavenrc_post.cmd" call "%USERPROFILE%\mavenrc_post.cmd"
|
||||||
|
:skipRcPost
|
||||||
|
|
||||||
|
@REM pause the script if MAVEN_BATCH_PAUSE is set to 'on'
|
||||||
|
if "%MAVEN_BATCH_PAUSE%"=="on" pause
|
||||||
|
|
||||||
|
if "%MAVEN_TERMINATE_CMD%"=="on" exit %ERROR_CODE%
|
||||||
|
|
||||||
|
cmd /C exit /B %ERROR_CODE%
|
||||||
|
|
@ -0,0 +1,41 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<parent>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-starter-parent</artifactId>
|
||||||
|
<version>3.2.1</version>
|
||||||
|
<relativePath/> <!-- lookup parent from repository -->
|
||||||
|
</parent>
|
||||||
|
<groupId>com.gao</groupId>
|
||||||
|
<artifactId>final</artifactId>
|
||||||
|
<version>0.0.1-SNAPSHOT</version>
|
||||||
|
<name>final</name>
|
||||||
|
<description>final</description>
|
||||||
|
<properties>
|
||||||
|
<java.version>17</java.version>
|
||||||
|
</properties>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-starter-web</artifactId>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-starter-test</artifactId>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
|
||||||
|
</project>
|
||||||
|
|
@ -0,0 +1,13 @@
|
||||||
|
package com.gao.finalh;
|
||||||
|
|
||||||
|
import org.springframework.boot.SpringApplication;
|
||||||
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||||
|
|
||||||
|
@SpringBootApplication
|
||||||
|
public class FinalApplication {
|
||||||
|
|
||||||
|
public static void main(String[] args) {
|
||||||
|
SpringApplication.run(FinalApplication.class, args);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,2 @@
|
||||||
|
package com.gao.finalhw.controller;public class CartPageController {
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,2 @@
|
||||||
|
package com.gao.finalhw.controller;public class MemberPageController {
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,2 @@
|
||||||
|
package com.gao.finalhw.controller;public class PageController {
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,2 @@
|
||||||
|
package com.gao.finalhw.controller;public class UserController {
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
|
||||||
Binary file not shown.
|
|
@ -0,0 +1,38 @@
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" class="hb-loaded">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<title>404报错</title>
|
||||||
|
<link href="../css/wrong.css?v=1.3.5" type="text/css" rel="stylesheet" />
|
||||||
|
<script language="javascript" type="text/javascript">
|
||||||
|
window.onload = function() {
|
||||||
|
setTimeout("goUrl()", 5000);
|
||||||
|
var i = 5;
|
||||||
|
setInterval(function() {
|
||||||
|
if (i > 0) {
|
||||||
|
i = i - 1;
|
||||||
|
}
|
||||||
|
document.getElementById("time").innerHTML = i;
|
||||||
|
}, 1000);
|
||||||
|
}
|
||||||
|
|
||||||
|
function goUrl() {
|
||||||
|
window.location.href = "/index";
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<div class="wrong_wc">
|
||||||
|
<div class="wrong_two cmain">
|
||||||
|
<div class="wrong_word">
|
||||||
|
<h3>404 Not Found</h3>
|
||||||
|
<h4>这个页面一边凉快去了!</h4>
|
||||||
|
<p> <i id="time">0</i> <span>秒之后页面自动跳转,你还可以:</span> </p>
|
||||||
|
<p> <a href="/index">直接返回首页</a> </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
||||||
|
|
@ -0,0 +1,651 @@
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" class="hb-loaded">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<link href="../css/same.css?v=1.3.7.2" type="text/css" rel="stylesheet" />
|
||||||
|
<script src="../js/jquery.js" type="text/javascript"></script>
|
||||||
|
<script src="../js/index.js?virsion=1.3.7.2" type="text/javascript"></script>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<title>品牌文化</title>
|
||||||
|
<link href="../css/same.css?v=1.3.7.2" type="text/css" rel="stylesheet" />
|
||||||
|
<link href="../css/dr_culture.css?v=1.3.5.0" type="text/css" rel="stylesheet" />
|
||||||
|
<div>
|
||||||
|
<!--头部-->
|
||||||
|
<div class="cmain">
|
||||||
|
<div class="headtop">
|
||||||
|
<!--头部左边-->
|
||||||
|
<div class="top-left fl">
|
||||||
|
<a title="Darry Ring" href="/index"> <img width="187" height="42" alt="Darry Ring官网" src="../images/logo.png" /> </a>
|
||||||
|
<span style="font-weight: normal;">求婚钻戒领导品牌</span>
|
||||||
|
</div>
|
||||||
|
<!--头部左边end-->
|
||||||
|
<!--头部右边-->
|
||||||
|
<div class="top-right fr">
|
||||||
|
<!--登录注册-->
|
||||||
|
<ul class="tright-ul fl">
|
||||||
|
<div id="ctl00_ucheader_pllogin1">
|
||||||
|
<li><a rel="nofollow" href="/login">登录</a><em>|</em></li>
|
||||||
|
<li><a rel="nofollow" href="/reg">注册</a></li>
|
||||||
|
<li class="headed"><em class="icon shooping"></em><a target="black" rel="nofollow" href="/cart">购物车</a><i>(0)</i></li>
|
||||||
|
</div>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<!--头部右边end-->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--头部end-->
|
||||||
|
<!--导航-->
|
||||||
|
<div class="nav">
|
||||||
|
<div class="cmain">
|
||||||
|
<!--导航的左边-->
|
||||||
|
<ul class="nav-ul fl">
|
||||||
|
<li><a href="/index">首页</a> </li>
|
||||||
|
<li><a href="/brand">品牌文化</a> </li>
|
||||||
|
<li><a style="font-family:arial" href="/lists">Darry Ring 求婚钻戒</a>
|
||||||
|
<div class="nav-div" style="display: none;">
|
||||||
|
<div class="navdiv_top">
|
||||||
|
<div class="navdiv-right">
|
||||||
|
<p> <a href="/lists"> 查看所有款</a></p>
|
||||||
|
<p> <a href="/dr_series/12_22.html">Forever系列</a></p>
|
||||||
|
<p> <a href="/dr_series/11_20.html">My Heart系列</a></p>
|
||||||
|
<p> <a href="/dr_series/16_30.html">True Love系列</a></p>
|
||||||
|
<p> <a href="/dr_series/15_28.html">I Swear系列</a></p>
|
||||||
|
<p> <a href="/dr_series/13_24.html">Just you系列</a></p>
|
||||||
|
</div>
|
||||||
|
<div class="navdiv-left">
|
||||||
|
<h3> NEW</h3>
|
||||||
|
<a href="/darry_ring/349.html"> <img width="138" height="97" alt="2克拉钻戒价格_E色EX切工VVS2净度_True Love系列 奢华款 _Darry Ring求婚钻戒 戴瑞珠宝官网" src="../images/03wj.jpg" /></a>
|
||||||
|
<div class="more_cp">
|
||||||
|
<a href="/darry_ring/349.html">> 了解该系列产品</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="navdiv_bottom"></div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li class=""><a href="/question">常见问题</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--导航end-->
|
||||||
|
<script type="text/javascript">
|
||||||
|
function logout() {
|
||||||
|
if (window.confirm('确定退出吗?')) {
|
||||||
|
|
||||||
|
$.get("/nAPI/QuitExit.ashx", function(data) {
|
||||||
|
window.location.href = "/";
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<div class="cort">
|
||||||
|
<!--中间-->
|
||||||
|
<div class="cort">
|
||||||
|
<!--内容-->
|
||||||
|
<div class="cmain culture_same">
|
||||||
|
<!--面包屑-->
|
||||||
|
<div class="zbk_top spalid">
|
||||||
|
<div class="zbk_top spalid">
|
||||||
|
<span>您当前的位置:</span>
|
||||||
|
<span id="ctl00_content_website_SiteMapPath1"><a href="#ctl00_content_website_SiteMapPath1_SkipLink"></a><span> <a target="_blank" href="/index">Darry Ring</a> </span><span> <em>></em> </span><span> <span>品牌文化</span> </span>
|
||||||
|
<a id="ctl00_content_website_SiteMapPath1_SkipLink"></a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--面包屑end-->
|
||||||
|
<!--标题-->
|
||||||
|
<div class="culture_top">
|
||||||
|
<div class="culture_top-tittle">
|
||||||
|
<i></i>
|
||||||
|
<span class="tittle_span">关于Darry Ring</span>
|
||||||
|
<i></i>
|
||||||
|
</div>
|
||||||
|
<h4> About Darry Ring</h4>
|
||||||
|
</div>
|
||||||
|
<!--标题end-->
|
||||||
|
<!--特殊颜色的P-->
|
||||||
|
<div class="culture_wz">
|
||||||
|
<p> 早于上个世纪90年代,戴瑞珠宝便在香港开始从事裸钻高级定制,以寻求、欣赏珍宝的眼光,苛刻的甄选标准,搜集来自世界各地的珍稀钻石。</p>
|
||||||
|
<p> 这些卓越品质的钻石戴瑞珠宝只提供给少数专属的顶尖珠宝商,让钻石在不同珠宝艺术大师演绎绝美工艺创作。</p>
|
||||||
|
</div>
|
||||||
|
<!--特殊颜色的P end-->
|
||||||
|
<!--品牌理念-->
|
||||||
|
<div class="culture_pp culture_first">
|
||||||
|
<!--左边-->
|
||||||
|
<div class="fl">
|
||||||
|
<a target="_blank" href="javascript:void(0)"> <img width="470" height="300" src="../images/wh1.jpg" /> </a>
|
||||||
|
</div>
|
||||||
|
<!--左边end-->
|
||||||
|
<!--右边-->
|
||||||
|
<div class="culture_pp-word fr">
|
||||||
|
<h3> 品牌理念</h3>
|
||||||
|
<h4> Brand Beliefs</h4>
|
||||||
|
<p> Darry Ring,有着世间最独特的规定,</p>
|
||||||
|
<p> 男士凭身份证一生仅能定制一枚唯一的戒指,赠予此生唯一挚爱的女子,</p>
|
||||||
|
<p> 以示“一生只爱你一人”的至高承诺……</p>
|
||||||
|
<a class="to_more" target="_blank" href="javascript:void(0)">了解更多</a>
|
||||||
|
</div>
|
||||||
|
<!--右边end-->
|
||||||
|
</div>
|
||||||
|
<!--品牌理念end-->
|
||||||
|
<!--三大块-->
|
||||||
|
<div class="three_yz">
|
||||||
|
<a href="javascript:void(0)" target="_blank"> <img width="300" height="426" src="../images/re1.jpg" /> </a>
|
||||||
|
<a href="javascript:void(0)" target="_blank"> <img width="300" height="426" src="../images/re2.jpg" /> </a>
|
||||||
|
<a href="javascript:void(0)" target="_blank"> <img width="300" height="426" src="../images/re3.jpg" /> </a>
|
||||||
|
</div>
|
||||||
|
<!--三大块end-->
|
||||||
|
<!--社会名人-->
|
||||||
|
<div class="culture_pp culture_sec">
|
||||||
|
<!--左边-->
|
||||||
|
<div class="culture_pp-word fl">
|
||||||
|
<h3> 社会名人倾情推荐</h3>
|
||||||
|
<h4> Expert Advice</h4>
|
||||||
|
<p> 《小时代3.0》御用求婚钻戒品牌</p>
|
||||||
|
<p> 著名功夫明星吴京凭DarryRing 向谢楠求婚成功</p>
|
||||||
|
<p> 知名情感作家苏岑、陆琪等社会名人倾情推荐 ……</p>
|
||||||
|
<a class="to_more" target="_blank" href="javascript:void(0)">了解更多</a>
|
||||||
|
</div>
|
||||||
|
<!--左边end-->
|
||||||
|
<!--右边-->
|
||||||
|
<div class="culture_sec-right fr">
|
||||||
|
<a target="_blank" href="javascript:void(0)"> <img width="367" height="250" src="../images/wh2.jpg" /> </a>
|
||||||
|
</div>
|
||||||
|
<!--右边end-->
|
||||||
|
</div>
|
||||||
|
<!--社会名人end-->
|
||||||
|
<!--最烂漫的珠宝店-->
|
||||||
|
<div class="culture_pp culture_thrid">
|
||||||
|
<!--左边-->
|
||||||
|
<div class="culture_thrid-left fl">
|
||||||
|
<a target="_blank" href="javascript:void(0)"> <img width="367" height="230" src="../images/wh3.jpg" /> </a>
|
||||||
|
</div>
|
||||||
|
<!--左边end-->
|
||||||
|
<!--右边-->
|
||||||
|
<div class="culture_pp-word fr">
|
||||||
|
<h3> 最浪漫的珠宝店</h3>
|
||||||
|
<h4> Store Locator</h4>
|
||||||
|
<p> 从设立之初,DarryRing 就在全球范围内,甄选最具有浪漫情调的地址</p>
|
||||||
|
<p> 让每一位来到DarryRing 挑选钻戒的顾客</p>
|
||||||
|
<p> 都感受到与Shopping Mall 中其它品牌完全不同的独特购物体验。</p>
|
||||||
|
<p> 同时,DarryRing 最浪漫的珠宝店也成为众多客户求婚的首选场所。</p>
|
||||||
|
<a class="to_more" target="_blank" href="javascript:void(0)">了解更多</a>
|
||||||
|
</div>
|
||||||
|
<!--右边end-->
|
||||||
|
</div>
|
||||||
|
<!--最烂漫的珠宝店end-->
|
||||||
|
<!--品质工艺与DR族-->
|
||||||
|
<div class="culture_pp">
|
||||||
|
<!--品质工艺-->
|
||||||
|
<div class="culture_four-left fl">
|
||||||
|
<img width="465" height="300" src="../images/wh4.jpg" />
|
||||||
|
<!--透明背景-->
|
||||||
|
<div class="bk_opacity">
|
||||||
|
</div>
|
||||||
|
<!--透明背景end-->
|
||||||
|
<!--工艺-->
|
||||||
|
<div class="professional_gy">
|
||||||
|
<h3> 卓越品质工艺</h3>
|
||||||
|
<h4> Professional Quality</h4>
|
||||||
|
<a class="to_more" target="_blank" href="javascript:void(0)">了解更多</a>
|
||||||
|
</div>
|
||||||
|
<!--工艺end-->
|
||||||
|
</div>
|
||||||
|
<!--品质工艺end-->
|
||||||
|
<!--DR族-->
|
||||||
|
<div class="culture_four-right fr">
|
||||||
|
<img width="465" height="300" src="../images/wh5.jpg" />
|
||||||
|
<!--DR族-->
|
||||||
|
<div class="brand_drz">
|
||||||
|
<h3> 真爱验证</h3>
|
||||||
|
<h4> Brand Culture</h4>
|
||||||
|
<p> 男士一生仅能定制一枚,</p>
|
||||||
|
<p> 赠予此生唯一挚爱的女子</p>
|
||||||
|
<a class="to_more" target="_blank" href="javascript:void(0)">了解更多</a>
|
||||||
|
</div>
|
||||||
|
<!--DR族end-->
|
||||||
|
</div>
|
||||||
|
<!--DR族end-->
|
||||||
|
</div>
|
||||||
|
<!--品质工艺与DR族end-->
|
||||||
|
<!--DR社区与加入我们-->
|
||||||
|
<div class="culture_pp">
|
||||||
|
<!--左边-->
|
||||||
|
<div class="culture_last fl">
|
||||||
|
<a target="_blank" href="javascript:void(0)"> <img width="465" height="200" src="../images/wh6.jpg" /> </a>
|
||||||
|
</div>
|
||||||
|
<!--左边end-->
|
||||||
|
<!--右边-->
|
||||||
|
<div class="culture_last fr">
|
||||||
|
<a target="_blank" href="javascript:void(0)"> <img width="466" height="200" src="../images/wh7.jpg" /> </a>
|
||||||
|
</div>
|
||||||
|
<!--右边end-->
|
||||||
|
</div>
|
||||||
|
<!--DR社区与加入我们end-->
|
||||||
|
<!--分享-->
|
||||||
|
<div class="culture_share">
|
||||||
|
<div class="culture_share-tittle">
|
||||||
|
<i></i>
|
||||||
|
<span>分享至</span>
|
||||||
|
<i></i>
|
||||||
|
</div>
|
||||||
|
<div class="culture_share-it">
|
||||||
|
<a class="cshare_1" target="_blank" title="QQ空间" href="http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url=index.htmlbrand.html"></a>
|
||||||
|
<a class="cshare_2" id="wb" href="#"> </a>
|
||||||
|
<a class="cshare_3" target="_blank" href="http://widget.renren.com/dialog/share?resourceUrl=index.htmlbrand.html&title=一生唯一真爱,凭身份证一生只能购买一次!Darry Ring钻石戒指!"></a>
|
||||||
|
<a class="cshare_4" href="http://share.v.t.qq.com/index.php?c=share&a=index&url=index.htmlbrand.html&title=&appkey=333cf198acc94876a684d043a6b48e14"></a>
|
||||||
|
<a class="cshare_5" target="_blank" href="http://www.douban.com/share/service?href=index.htmlbrand.html&name=品牌文化&text=早于上个世纪90年代,戴瑞珠宝便在香港开始从事裸钻高级定制,以寻求、欣赏珍宝的眼光,苛刻的甄选标准,搜集来自世界各地的珍稀钻石。"></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--分享end-->
|
||||||
|
</div>
|
||||||
|
<!--内容end-->
|
||||||
|
</div>
|
||||||
|
<!--中间end-->
|
||||||
|
<script>
|
||||||
|
$("#wb").click(function() {
|
||||||
|
var href = "http://service.weibo.com/share/share.php?title=品牌文化 &url=index.htmlbrand.html";
|
||||||
|
window.open(href, 'newwindow', 'height=700,width=650,top=300,left=400,toolbar=no,menubar=no,scrollbars=no,resizable=no,location=no,status=no');
|
||||||
|
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
</div>
|
||||||
|
<!--底部-->
|
||||||
|
<div class="footer">
|
||||||
|
<!--错误-->
|
||||||
|
<!--提示-->
|
||||||
|
<div class="loverit_word2">
|
||||||
|
Darry Ring严格规定男士凭身份证一生仅能定制一枚,象征男人一生真爱的最高承诺。输入身份证号码即可查询购买记录。
|
||||||
|
</div>
|
||||||
|
<!--提示end-->
|
||||||
|
<div class="loverit_wrong2">
|
||||||
|
<p>信息填写不正确,请重新输入。</p>
|
||||||
|
</div>
|
||||||
|
<!--错误end-->
|
||||||
|
|
||||||
|
<div style="clear:both"></div>
|
||||||
|
<div class="cmain">
|
||||||
|
<ul class="Service_ul">
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p>权威认证</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_2">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p> 一钻双证</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_3">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p> 终生保养</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_4">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p> 以小换大</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_5">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p> 15天退换</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_6">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p> 全国免运费</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_7">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p> 全程保险</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<div class="tw-foot">
|
||||||
|
<div class="auto" id="Copyright">
|
||||||
|
<p> Copyright © 2017 winner winner,chicken dinner All Rights Reserved. 粤ICP备11012085号-2.ICP经营许可证粤B2-20140279 </p>
|
||||||
|
<p> 中国互联网违法信息举报中心 | 中国公安网络110报警服务 | 本网站提供所售商品的正式发票 </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="model" id="model">
|
||||||
|
<div class="Prompt" id="Prompt">
|
||||||
|
</div>
|
||||||
|
<span id="log_uid" style="display:none"></span>
|
||||||
|
<span id="log_uname" style="display:none"></span>
|
||||||
|
<span id="log_orderid" style="display:none"></span>
|
||||||
|
<span id="log_price" style="display:none"></span>
|
||||||
|
</div>
|
||||||
|
<script src="http://wpa.b.qq.com/cgi/wpa.php" charset="utf-8" type="text/javascript"></script>
|
||||||
|
<!--客服(2014年8月29日)-->
|
||||||
|
<div style="display:none" class="Ffloat_kf">
|
||||||
|
<div class="fkf_top">
|
||||||
|
<div style="cursor: pointer; display: none;" id="bridgehead">
|
||||||
|
</div>
|
||||||
|
<div id="BizQQWPA"></div>
|
||||||
|
<div onClick="showModel(modelsever);" style="cursor: pointer;" class="qq_hover" id="qqTalk_head">
|
||||||
|
</div>
|
||||||
|
<div id="BizQQWPAB" class="sh">
|
||||||
|
</div>
|
||||||
|
<div id="bdBridge">
|
||||||
|
<a href="javascript:NTKF.im_openInPageChat()"> <img width="75" height="37" src="../images/zx.jpg" /></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="fkf_bottom">
|
||||||
|
<img width="92" height="82" alt="Darry Ring 官方微信" src="../images/to_erwei.jpg" />
|
||||||
|
<a href="#"> <img width="92" height="26" src="../images/db.jpg" /></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--新版右边客服start-->
|
||||||
|
<!--右边漂浮悬挂大的-->
|
||||||
|
<div class="float_big">
|
||||||
|
<div class="floatbig_hide fr"></div>
|
||||||
|
<div class="floatbig_center">
|
||||||
|
<!--客服-->
|
||||||
|
<div onClick="javascript:void(0)" id="Bearonline" class="floatbig_center-kf"></div>
|
||||||
|
<!--客服end-->
|
||||||
|
<!--定制咨询-->
|
||||||
|
<div id="dzzxonline" class="floatbig_center-zx">
|
||||||
|
<a href="javascript:showModel(modelsever);"></a>
|
||||||
|
</div>
|
||||||
|
<!--定制咨询end-->
|
||||||
|
<img src="../images/ew.jpg" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--右边漂浮悬挂大的end-->
|
||||||
|
<!--右边漂浮悬挂小的-->
|
||||||
|
<div class="float_small">
|
||||||
|
<div class="floatbig_show fr"></div>
|
||||||
|
<div class="floatbig_center">
|
||||||
|
<!--客服-->
|
||||||
|
<div onClick="javascript:void(0)" class="floatsmall_center-kf fr"></div>
|
||||||
|
<!--客服end-->
|
||||||
|
<!--定制咨询-->
|
||||||
|
<div class="floatsmall_center-zx fr">
|
||||||
|
<a href="javascript:showModel(modelsever);"></a>
|
||||||
|
</div>
|
||||||
|
<!--定制咨询end-->
|
||||||
|
<!--二维码-->
|
||||||
|
<div class="floatsmall_erwei fr">
|
||||||
|
<a href="#"></a>
|
||||||
|
</div>
|
||||||
|
<!--二维码end-->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--右边漂浮悬挂小的end-->
|
||||||
|
<!--返回顶部-->
|
||||||
|
<div class="comeback"></div>
|
||||||
|
<!--返回顶部end-->
|
||||||
|
<!--新版右边客服end-->
|
||||||
|
<div style="position: fixed; cursor: pointer; right: 6px; top: 289px; padding-bottom: 152px; z-index: 9999; width: 19px; height: 103px; display: none;" onClick="openserver();" id="openbnt">
|
||||||
|
<img width="19" height="103" src="../images/server_03.jpg" />
|
||||||
|
</div>
|
||||||
|
<div class="news_tc">
|
||||||
|
<div class="newtc_left">
|
||||||
|
</div>
|
||||||
|
<div class="newtc_right">
|
||||||
|
<span style="cursor: pointer" class="sszs">稍后再说</span>
|
||||||
|
<span class="xzzx"><a onClick="showxiaon()" style="cursor: pointer" id="chatnow"> 现在咨询</a></span>
|
||||||
|
<div style="cursor: pointer" class="tocclose">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="mask" id="masks">
|
||||||
|
</div>
|
||||||
|
<div style="display:none;" class="modelsever" id="modelsever">
|
||||||
|
<div class="cs_top">
|
||||||
|
<div class="cs_topcenter">
|
||||||
|
<div style="width:300px; height:40px; line-height:40px; float:left; display:inline-block; ">
|
||||||
|
顾客常见疑问
|
||||||
|
</div>
|
||||||
|
<div style="width:385px; height:20px; float:left; text-align:right; padding-top:20px;">
|
||||||
|
<img width="55" height="9" style="cursor: pointer;" onClick="CloseMaskser()" src="../images/popup_window_btn_close.gif" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="cs_content clear">
|
||||||
|
<div id="box1" class="box1">
|
||||||
|
<div onClick="contenttxt(1,1)" id="content_title_11" class="content_title">
|
||||||
|
<span style="margin-top:8px;">Q:Darry Ring 是否有实体店?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_1" class="content_txt">
|
||||||
|
<span style="margin-top:1px;">A:DR公司总部在香港,目前内地深圳市、北京市、重庆市、广州市、上海市、武汉市、南京市、长沙市设有实体店,支持到店订购,也支持全国在线官网订购。同时目前其他一线城市公司已在考察选址阶段,将陆续开设店面。</span>
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(1,2)" id="content_title_12" class="content_title">
|
||||||
|
<span style="margin-top:8px;">Q:实体店具体位置?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_2" class="content_txt">
|
||||||
|
<span style="margin-top:1px;">A:深圳实体店地址:深圳南山区世界之窗旁欧陆小镇4号楼Darry Ring (地铁罗宝线世界之窗I出口)深圳店联系方式:0755-86621782。<p></p> 北京实体店地址:北京东二环朝阳门桥银河SOHO中心B座负一层2-109 (朝阳门地铁G出口) 北京店联系方式:010-59576758。<p></p> 上海实体店地址:上海长宁区淮海西路570号红坊创意园区G-108栋(近虹桥路) 上海店联系方式:021-60934520。<p></p> 广州实体店地址:广州市天河区天河北路233号中信广场商场136单元 广州店联系方式:020-38836315。<p></p> 重庆实体店地址:重庆市渝中区解放碑步行街民族路188号环球金融中心(WFC)LG-B02A 重庆店联系方式:023-63710835。<p></p> 武汉实体店地址:武汉市洪山区光谷意大利风情街5号楼一层51021号 武汉店联系方式:027-87688895。<p></p> 南京实体店地址:南京市长江路288号1912街区17号楼一层 南京店联系方式:025-83613520。<p></p> 长沙实体店地址:长沙市开福区中山路589号万达百货商场2楼 长沙店联系方式:0731-83878575。<p></p> 全国400客服热线:400 01 13520。</span>
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(1,3)" id="content_title_13" class="content_title">
|
||||||
|
<span style="margin-top:8px;">Q:到店订购和官网订购的价格一致吗?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_3" class="content_txt">
|
||||||
|
<span style="margin-top:1px;">A:DR的所有商品,到店订购和官网订购的时间周期,价格,质量及售后服务均一致。</span>
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(1,4)" id="content_title_14" class="content_title">
|
||||||
|
<span style="margin-top:8px;">Q:价格是否有折扣优惠?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_4" class="content_txt">
|
||||||
|
<span style="margin-top:1px;">A:DR的品牌寓意为一生唯一真爱,大多是用作见证彼此求婚或结婚这一神圣时刻,所以所有商品都是常年任何节假日没有折扣活动,就像彼此一生唯一真爱的承诺及永恒的爱情,永不打折。</span>
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(1,5)" id="content_title_15" class="content_title">
|
||||||
|
<span style="margin-top:8px;">Q:为什么在官网上输入姓名身份证号后看不到款式?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_5" class="content_txt">
|
||||||
|
<span style="margin-top:1px;">A:www.darryring.com 官网首页点击—求婚钻戒,进入页面后不需要填写任何信息,移动鼠标到最下方,就可以看到Darry Ring女戒的所有款式。</span>
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(1,6)" id="content_title_16" class="content_title">
|
||||||
|
<span style="margin-top:8px;">Q:到实体店是否可以立刻拿到戒指?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_6" class="content_txt">
|
||||||
|
<span style="margin-top:1px;">A:您好,DR的所有商品都是需要根据您选择的款式、手寸大小及刻字信息来定制。实体店仅提供款式体验及预订,与官网购买的定制时间是一致的,可于15-20个工作日内送到或自取。</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="box2" class="box2">
|
||||||
|
<div onClick="contenttxt(2,1)" id="content_title_21" class="content_title"></div>
|
||||||
|
<div id="content_title2_1" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(2,2)" id="content_title_22" class="content_title"></div>
|
||||||
|
<div id="content_title2_2" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(2,3)" id="content_title_23" class="content_title"></div>
|
||||||
|
<div id="content_title2_3" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(2,4)" id="content_title_24" class="content_title"></div>
|
||||||
|
<div id="content_title2_4" class="content_txt">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="box3" class="box3">
|
||||||
|
<div onClick="contenttxt(3,1)" id="content_title_31" class="content_title"></div>
|
||||||
|
<div id="content_title3_1" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(3,2)" id="content_title_32" class="content_title"></div>
|
||||||
|
<div id="content_title3_2" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(3,3)" id="content_title_33" class="content_title"></div>
|
||||||
|
<div id="content_title3_3" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(3,4)" id="content_title_34" class="content_title"></div>
|
||||||
|
<div id="content_title3_4" class="content_txt"></div>
|
||||||
|
</div>
|
||||||
|
<div id="box4" class="box4">
|
||||||
|
<div onClick="contenttxt(4,1)" id="content_title_41" class="content_title"></div>
|
||||||
|
<div id="content_title4_1" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(4,2)" id="content_title_42" class="content_title"></div>
|
||||||
|
<div id="content_title4_2" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(4,3)" id="content_title_43" class="content_title"></div>
|
||||||
|
<div id="content_title4_3" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(4,4)" id="content_title_44" class="content_title"></div>
|
||||||
|
<div id="content_title4_4" class="content_txt"></div>
|
||||||
|
</div>
|
||||||
|
<div id="box5" class="box5">
|
||||||
|
<div onClick="contenttxt(5,1)" id="content_title_51" class="content_title"></div>
|
||||||
|
<div id="content_title5_1" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(5,2)" id="content_title_52" class="content_title"></div>
|
||||||
|
<div id="content_title5_2" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(5,3)" id="content_title_53" class="content_title"></div>
|
||||||
|
<div id="content_title5_3" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(5,4)" id="content_title_54" class="content_title"></div>
|
||||||
|
<div id="content_title5_4" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(5,5)" id="content_title_55" class="content_title"></div>
|
||||||
|
<div id="content_title5_5" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(5,6)" id="content_title_56" class="content_title"></div>
|
||||||
|
<div id="content_title5_6" class="content_txt">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="box6" class="box6">
|
||||||
|
<div onClick="contenttxt(6,1)" id="content_title_61" class="content_title"></div>
|
||||||
|
<div id="content_title6_1" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(6,2)" id="content_title_62" class="content_title"></div>
|
||||||
|
<div id="content_title6_2" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(6,3)" id="content_title_63" class="content_title"></div>
|
||||||
|
<div id="content_title6_3" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(6,4)" id="content_title_64" class="content_title"></div>
|
||||||
|
<div id="content_title6_4" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(6,5)" id="content_title_65" class="content_title"></div>
|
||||||
|
<div id="content_title6_5" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(6,6)" id="content_title_66" class="content_title"></div>
|
||||||
|
<div id="content_title6_6" class="content_txt">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="box7" class="box7">
|
||||||
|
<div onClick="contenttxt(7,1)" id="content_title_71" class="content_title"></div>
|
||||||
|
<div id="content_title7_1" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(7,2)" id="content_title_72" class="content_title"></div>
|
||||||
|
<div id="content_title7_2" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(7,3)" id="content_title_73" class="content_title"></div>
|
||||||
|
<div id="content_title7_3" class="content_txt">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript">
|
||||||
|
function showbox(id) {
|
||||||
|
getQeestion(id);
|
||||||
|
for (var i = 1; i <= 8; i++) {
|
||||||
|
if (i == id) {
|
||||||
|
showdiv(id);
|
||||||
|
} else {
|
||||||
|
hidediv(i);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function contenttxt(id, sid) {
|
||||||
|
for (var i = 1; i <= 7; i++) {
|
||||||
|
if (i == id) {
|
||||||
|
showtxt(id, sid);
|
||||||
|
} else {
|
||||||
|
hidetxt(i, sid);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
function showtxt(id, sid) {
|
||||||
|
var objtitle = $("#content_title" + id + "_" + sid);
|
||||||
|
|
||||||
|
if (objtitle.css("display") == "none") {
|
||||||
|
objtitle.show("fast");
|
||||||
|
} else {
|
||||||
|
|
||||||
|
hidetxt(id, sid);
|
||||||
|
}
|
||||||
|
//$("#"+id).show("fast");
|
||||||
|
}
|
||||||
|
|
||||||
|
function hidetxt(id, sid) {
|
||||||
|
var objtitle = $("#content_title" + id + "_" + sid);
|
||||||
|
objtitle.hide("fast");
|
||||||
|
}
|
||||||
|
|
||||||
|
function hidediv(id) {
|
||||||
|
$("#box" + id).hide("fast");
|
||||||
|
|
||||||
|
$("#li" + id).css({
|
||||||
|
"font-size": "14px",
|
||||||
|
"color": "#7d7d7d"
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function showdiv(id) {
|
||||||
|
if ($("#box" + id).css("display") == "none") {
|
||||||
|
$("#box" + id).show("fast");
|
||||||
|
$("#li" + id).css({
|
||||||
|
"font-size": "18px",
|
||||||
|
"color": "#000000"
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
function showMask() {
|
||||||
|
$("#masks").css("height", $(document).height());
|
||||||
|
$("#masks").css("width", $(document).width());
|
||||||
|
$("#masks").fadeIn();
|
||||||
|
}
|
||||||
|
|
||||||
|
function showModel(divName) {
|
||||||
|
showMask();
|
||||||
|
/* var top = ($(window).height() - $(divName).height()) / 5;
|
||||||
|
var left = ($(window).width() - $(divName).width()) / 2;
|
||||||
|
var scrollTop = $(document).scrollTop();
|
||||||
|
var scrollLeft = $(document).scrollLeft();*/
|
||||||
|
$(divName).fadeIn();
|
||||||
|
}
|
||||||
|
|
||||||
|
function CloseMaskser() {
|
||||||
|
|
||||||
|
$("#modelsever").fadeOut("slow");
|
||||||
|
$("#masks").fadeOut("slow");
|
||||||
|
$("#mask").fadeOut("slow");
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
||||||
|
|
@ -0,0 +1,151 @@
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" class="hb-loaded">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<title>购物车</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<link href="../css/shopping.css?v=1.3.5" type="text/css" rel="stylesheet" />
|
||||||
|
<script src="../js/jquery.js" type="text/javascript"></script>
|
||||||
|
<script src="../js/shoppcart.js" type="text/javascript"></script>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<iframe src="javascript:false;" style="display: none;"></iframe>
|
||||||
|
<form id="aspnetForm" action="/nCart/Cart.aspx" method="post" name="aspnetForm">
|
||||||
|
<!--全部背景-->
|
||||||
|
<div class="all-thing">
|
||||||
|
<!--中间内容-->
|
||||||
|
<div class="tcmain">
|
||||||
|
<!--头部-->
|
||||||
|
<div class="shop_top">
|
||||||
|
<div class="shopt_left fl">
|
||||||
|
<a title="Darry Ring" href="/index"> <img width="186" height="42" src="../images/dr.png" /> </a>
|
||||||
|
<span>求婚钻戒领导品牌</span>
|
||||||
|
</div>
|
||||||
|
<div class="shopt_right fr">
|
||||||
|
<span id="ctl00_ltlUname">你好!KLNgOk</span>
|
||||||
|
<a class="my_dr" href="/member_index">我的DR</a>
|
||||||
|
<a onClick="javascript:logout()" class="tc_dr" href="#">退出</a>
|
||||||
|
<a class="help_dr" href="/help">帮助中心</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--头部end-->
|
||||||
|
<!--导航条-->
|
||||||
|
<div class="shop_nav" id="ctl00_showNav"></div>
|
||||||
|
<!--导航条end-->
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
function deleteCart(cid) {
|
||||||
|
if (confirm("确认删除?")) {
|
||||||
|
$.get("/nAPI/Cart.aspx?action=delete&cid=" + cid, function() {
|
||||||
|
window.location.reload();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function clearCart() {
|
||||||
|
if (confirm("确认清除?")) {
|
||||||
|
$.get("/nAPI/Cart.aspx?action=clear", function() {
|
||||||
|
window.location.reload();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function toPay() {
|
||||||
|
var nu = '1';
|
||||||
|
|
||||||
|
window.location = "cart_agreement.html";
|
||||||
|
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<!--内容-->
|
||||||
|
<div class="shop_cort">
|
||||||
|
<!--左边-->
|
||||||
|
<div class="shop_cort-left fl">
|
||||||
|
<h3>查看我的购物车</h3>
|
||||||
|
<!--购物车-->
|
||||||
|
<table cellspacing="0" cellpadding="0" border="0" class="shop_tabble">
|
||||||
|
<tbody>
|
||||||
|
<tr class="nav_tr">
|
||||||
|
<td style="width:240px" class="sp_td">商品</td>
|
||||||
|
<td style="width:100px" class="cz_td">材质</td>
|
||||||
|
<td style="width:100px" class="sc_td">手寸/尺寸</td>
|
||||||
|
<td style="width:100px" class="kz_td">数量</td>
|
||||||
|
<td class="gm_td">购买价</td>
|
||||||
|
</tr>
|
||||||
|
<tr class="cp_tr">
|
||||||
|
<td class="sp_td">
|
||||||
|
<a href="/darry_ring/87.html" class="jx_shop"> <img width="85" height="85" src="../images/201409011932585de1c2f2a9.jpg" /> <span> Forever系列 经典款</span></a>
|
||||||
|
</td>
|
||||||
|
<td class="cz_td">18K白金</td>
|
||||||
|
<td class="sc_td">7</td>
|
||||||
|
<td class="kz_td">1</td>
|
||||||
|
<td style="font-family:微软雅黑" class="gm_td">¥10,800</td>
|
||||||
|
<td class="close_td"><span onClick="deleteCart(61538);" class="sicon s_close"></span></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
<!--购物车end-->
|
||||||
|
<!--结算-->
|
||||||
|
<div class="shop_js">
|
||||||
|
<a class="jx_shop" href="/lists">继续购物</a>
|
||||||
|
<a class="qk_shop" href="javascript:clearCart();">清空购物车</a>
|
||||||
|
<span>你购买了<i>1</i>件商品</span>
|
||||||
|
<span>总计:<i style="font-family:微软雅黑" class="fw_bold">¥10,800</i></span>
|
||||||
|
<span onClick="toPay();" class="end_bt"><em>立即结算</em></span>
|
||||||
|
</div>
|
||||||
|
<!--结算end-->
|
||||||
|
</div>
|
||||||
|
<!--左边end-->
|
||||||
|
<!--右边-->
|
||||||
|
<!--右边-->
|
||||||
|
<div class="shop_cort-right fr">
|
||||||
|
<div class="shop_right-nr">
|
||||||
|
<h3>购物帮助指南</h3>
|
||||||
|
<div class="shop_right-zx line_bottom">
|
||||||
|
<p class="shop_lx">24小时在线客服</p>
|
||||||
|
<p class="shop_tel">400-13-14520</p>
|
||||||
|
</div>
|
||||||
|
<div class="shop_right-zf line_bottom">
|
||||||
|
<h4>支付安全保障</h4>
|
||||||
|
<p>安全支付系统采用SSL加密。</p>
|
||||||
|
<ul class="shop_right-ul">
|
||||||
|
<li class="shop_cor-yl"></li>
|
||||||
|
<li class="shop_cor-cft"></li>
|
||||||
|
<li class="shop_cor-zf"></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="shop_right-ps">
|
||||||
|
<h4>全球配送</h4>
|
||||||
|
<p class="shop_kd">支持全球配送,店铺取货</p>
|
||||||
|
<p class="shop_bj">全程保价 无风险</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--右边end-->
|
||||||
|
<!--右边end-->
|
||||||
|
</div>
|
||||||
|
<!--底部-->
|
||||||
|
<div class="cmain shop_foot">
|
||||||
|
<p>Copyright © 2017 winner winner,chicken dinner All Rights Reserved. 粤ICP备11012085号</p>
|
||||||
|
<p>中国互联网违法信息举报中心 | 中国公安网络110报警服务 | 本网站提供所售商品的正式发票</p>
|
||||||
|
<div class="shop_foot-img">
|
||||||
|
<img src="../images/db.jpg" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--底部end-->
|
||||||
|
</div>
|
||||||
|
<!--全部背景end-->
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript">
|
||||||
|
function logout() {
|
||||||
|
if (window.confirm('确定退出吗?')) {
|
||||||
|
$.get("/nAPI/QuitExit.ashx", function(data) {
|
||||||
|
window.location.href = "/";
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
</form>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
||||||
|
|
@ -0,0 +1,131 @@
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" class="hb-loaded">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<title>购物车 - 真爱协议</title>
|
||||||
|
<link href="../css/shopping.css?v=1.3.5" type="text/css" rel="stylesheet" />
|
||||||
|
<script src="../js/jquery.js" type="text/javascript"></script>
|
||||||
|
<script src="../js/shoppcart.js" type="text/javascript"></script>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<iframe src="javascript:false;" style="display: none;"></iframe>
|
||||||
|
<form id="aspnetForm" action="/cart_order" method="post" name="aspnetForm">
|
||||||
|
<!--全部背景-->
|
||||||
|
<div class="all-thing">
|
||||||
|
<!--中间内容-->
|
||||||
|
<div class="tcmain">
|
||||||
|
<!--头部-->
|
||||||
|
<div class="shop_top">
|
||||||
|
<div class="shopt_left fl">
|
||||||
|
<a title="Darry Ring" href="/index"> <img width="186" height="42" src="../images/dr.png" /> </a>
|
||||||
|
<span>求婚钻戒领导品牌</span>
|
||||||
|
</div>
|
||||||
|
<div class="shopt_right fr">
|
||||||
|
<span id="ctl00_ltlUname">你好!KLNgOk</span>
|
||||||
|
<a class="my_dr" href="/member_index">我的DR</a>
|
||||||
|
<a onClick="javascript:logout()" class="tc_dr" href="#">退出</a>
|
||||||
|
<a class="help_dr" href="/help">帮助中心</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--头部end-->
|
||||||
|
<!--导航条-->
|
||||||
|
<div class="shop_nav shop_nav-love" id="ctl00_showNav"></div>
|
||||||
|
<!--导航条end-->
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
function check() {
|
||||||
|
if ($("#sirName").val() == "") {
|
||||||
|
alert("先生姓名不能为空。");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if ($("#ladyName").val() == "") {
|
||||||
|
alert("女士姓名不能为空。");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if ($("#sirCode").val() == "") {
|
||||||
|
alert("先生身份证不能为空。");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (!$("#cbAgree").attr("checked")) {
|
||||||
|
alert("必须先接受真爱协议。");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
function submitAgreement() {
|
||||||
|
var nu = '1';
|
||||||
|
|
||||||
|
if (check()) {
|
||||||
|
$("#aspnetForm").submit();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
$(function() {
|
||||||
|
$("#aspnetForm").attr("action", "/cart_order");
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<!--真爱协议中的内容-->
|
||||||
|
<div class="shop_agree">
|
||||||
|
<div class="shop_agree-top"></div>
|
||||||
|
<!--边框内容-->
|
||||||
|
<div class="shop_agree-cort">
|
||||||
|
<div class="shopagree_cort-top">
|
||||||
|
<i></i>
|
||||||
|
<span>真爱协议</span>
|
||||||
|
<i></i>
|
||||||
|
</div>
|
||||||
|
<div class="shopagree_cort-center">
|
||||||
|
<p>Darry Ring 真爱戒指男士凭身份证号一生仅可购买一枚,作为一生唯一真爱的最高承诺。</p>
|
||||||
|
<p>签署该协议则表示您已经过慎重考虑,</p>
|
||||||
|
<p>决定自购买之日起,将您的身份证号与Darry Ring 编码绑定,并接受亲友对购买信息的验证查询。</p>
|
||||||
|
<p>此购买信息将终身留存在Darry Ring 数据库中并无法更改。请用心呵护您的真爱。</p>
|
||||||
|
</div>
|
||||||
|
<br>
|
||||||
|
<div class="shopagree_cort-spcenter">
|
||||||
|
<p>温馨提示:当您填写此资料,即默认同意本公司相关资料制作的网页放在Darry Ring专属页面。此资料将做合同永久保留。</p>
|
||||||
|
</div>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<div class="shopagree_cort-check">
|
||||||
|
<input type="checkbox" id="cbAgree" />
|
||||||
|
<label for="cbAgree"> <a>我已经仔细阅读并接受该协议</a> </label>
|
||||||
|
</div>
|
||||||
|
<br>
|
||||||
|
<div onClick="submitAgreement();" class="shopagree_button">
|
||||||
|
<div class="bt1">
|
||||||
|
<span>确认提交真爱协议</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--边框内容end-->
|
||||||
|
<div class="shop_agree-bottom"></div>
|
||||||
|
</div>
|
||||||
|
<!--真爱协议中的内容end-->
|
||||||
|
<!--中间内容end-->
|
||||||
|
<!--底部-->
|
||||||
|
<div class="cmain shop_foot">
|
||||||
|
<p>Copyright © 2017 winner winner,chicken dinner All Rights Reserved. 粤ICP备11012085号</p>
|
||||||
|
<p>中国互联网违法信息举报中心 | 中国公安网络110报警服务 | 本网站提供所售商品的正式发票</p>
|
||||||
|
<div class="shop_foot-img">
|
||||||
|
<img src="../images/db.jpg" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--底部end-->
|
||||||
|
</div>
|
||||||
|
<!--全部背景end-->
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript">
|
||||||
|
function logout() {
|
||||||
|
if (window.confirm('确定退出吗?')) {
|
||||||
|
$.get("/nAPI/QuitExit.ashx", function(data) {
|
||||||
|
window.location.href = "/";
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
</form>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
||||||
|
|
@ -0,0 +1,356 @@
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" class="hb-loaded">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<title>购物车 - 提交订单</title>
|
||||||
|
<link href="../css/shopping.css?v=1.3.5" type="text/css" rel="stylesheet" />
|
||||||
|
<script src="../js/jquery.js" type="text/javascript"></script>
|
||||||
|
<script src="../js/shoppcart.js" type="text/javascript"></script>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<iframe src="javascript:false;" style="display: none;"></iframe>
|
||||||
|
<form id="aspnetForm" action="Address.aspx?action=post&process=darryring" method="post" name="aspnetForm">
|
||||||
|
<!--全部背景-->
|
||||||
|
<div class="all-thing">
|
||||||
|
<!--中间内容-->
|
||||||
|
<div class="tcmain">
|
||||||
|
<!--头部-->
|
||||||
|
<div class="shop_top">
|
||||||
|
<div class="shopt_left fl">
|
||||||
|
<a title="Darry Ring" href="/index"> <img width="186" height="42" src="../images/dr.png" /> </a>
|
||||||
|
<span>求婚钻戒领导品牌</span>
|
||||||
|
</div>
|
||||||
|
<div class="shopt_right fr">
|
||||||
|
<span id="ctl00_ltlUname">你好!KLNgOk</span>
|
||||||
|
<a class="my_dr" href="/member_index">我的DR</a>
|
||||||
|
<a onClick="javascript:logout()" class="tc_dr" href="#">退出</a>
|
||||||
|
<a class="help_dr" href="/help">帮助中心</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--头部end-->
|
||||||
|
<!--导航条-->
|
||||||
|
<div class="shop_nav shop_nav-dd" id="ctl00_showNav"></div>
|
||||||
|
<!--导航条end-->
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
function addressItemSelected(control) {
|
||||||
|
$(control).addClass("check_bk").siblings().removeClass("check_bk");
|
||||||
|
$(control).find("input:radio").attr("checked", true);
|
||||||
|
}
|
||||||
|
//市数据加载事件
|
||||||
|
|
||||||
|
var CityDataLoadEvent = function() {};
|
||||||
|
var DistrictDataLoadEvent = function() {};
|
||||||
|
|
||||||
|
$(function() {
|
||||||
|
//绑定地址点击事件
|
||||||
|
$(".shop_adress-top:not(:last)").each(function() {
|
||||||
|
$(this).click(function() {
|
||||||
|
hideNewAddress();
|
||||||
|
addressItemSelected(this);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
//绑定新增地址事件
|
||||||
|
$(".shop_adress-top:last").click(function() {
|
||||||
|
//地址标题,新增还是修改
|
||||||
|
$(".shop_adress-add h4").text("新增新地址");
|
||||||
|
addressItemSelected(this);
|
||||||
|
showNewAddress();
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
//保存地址按钮事件
|
||||||
|
$(".save").click(function() {
|
||||||
|
var data = getData();
|
||||||
|
if (data.name == "") {
|
||||||
|
alert("收货人不能为空。");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (data.street == "") {
|
||||||
|
alert("详细地址不能为空。");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (data.postcode == "") {
|
||||||
|
alert("邮编不能为空。");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (data.mobile == "" && data.telephone == "") {
|
||||||
|
alert("手机号/固定电话必填一个。");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
var action = "save";
|
||||||
|
if (isNaN(data.ID)) {
|
||||||
|
action = "add";
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
function bindDdlData(cid, data) {
|
||||||
|
$(cid).append($("<option value=\"" + data.code + "\">" + data.name + "</option>"));
|
||||||
|
}
|
||||||
|
|
||||||
|
function showAddress(id) {
|
||||||
|
//地址标题,新增还是修改
|
||||||
|
$(".shop_adress-add h4").text("修改地址");
|
||||||
|
$(".shop_adress-add").show();
|
||||||
|
$(".shop_adress-add").attr("id", "address_" + id);
|
||||||
|
}
|
||||||
|
|
||||||
|
function showNewAddress() {
|
||||||
|
resetNewAddress();
|
||||||
|
$(".shop_adress-add").show();
|
||||||
|
}
|
||||||
|
|
||||||
|
function hideNewAddress() {
|
||||||
|
$(".shop_adress-add").hide();
|
||||||
|
}
|
||||||
|
|
||||||
|
function resetNewAddress() {
|
||||||
|
$("#addressName").val("");
|
||||||
|
$("#province").val("-1");
|
||||||
|
$("#city").val("-1");
|
||||||
|
$("#space").val("-1");
|
||||||
|
|
||||||
|
$("#street").val("");
|
||||||
|
$("#postcode").val("");
|
||||||
|
$("#mobile").val("");
|
||||||
|
$("#telephone").val("");
|
||||||
|
$("#cbDefaultAddress").attr("checked", false);
|
||||||
|
|
||||||
|
$("#city option:not(:first)").remove();
|
||||||
|
$("#district option:not(:first)").remove();
|
||||||
|
}
|
||||||
|
|
||||||
|
function getData() {
|
||||||
|
var id = $(".shop_adress-add").attr("id");
|
||||||
|
id = id ? id.replace("address_", "") : undefined;
|
||||||
|
return {
|
||||||
|
"ID": id,
|
||||||
|
"name": $("#addressName").val(),
|
||||||
|
"province": $("#province option:selected").val() == "-1" ? "" : $("#province option:selected").text(),
|
||||||
|
"city": $("#city option:selected").val() == "-1" ? "" : $("#city option:selected").text(),
|
||||||
|
"district": $("#district option:selected").val() == "-1" ? "" : $("#district option:selected").text(),
|
||||||
|
"street": $("#street").val(),
|
||||||
|
"postcode": $("#postcode").val(),
|
||||||
|
"mobile": $("#mobile").val(),
|
||||||
|
"telephone": $("#telephone").val(),
|
||||||
|
"IsDefault": $("#cbDefaultAddress").attr("checked")
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
function setAddress(data) {
|
||||||
|
$("#addressName").val(data.name);
|
||||||
|
$("#province option").each(function() {
|
||||||
|
if (data.city.indexOf($(this).text()) != -1) {
|
||||||
|
$("#province").val($(this).val());
|
||||||
|
$("#province").change();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
CityDataLoadEvent = function() {
|
||||||
|
$("#city option").each(function() {
|
||||||
|
if (data.city.indexOf($(this).text()) != -1) {
|
||||||
|
$("#city").val($(this).val());
|
||||||
|
$("#city").change();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
DistrictDataLoadEvent = function() {
|
||||||
|
$("#district option").each(function() {
|
||||||
|
if (data.city.indexOf($(this).text()) != -1) {
|
||||||
|
$("#district").val($(this).val());
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
$("#street").val(data.street);
|
||||||
|
$("#postcode").val(data.code);
|
||||||
|
$("#mobile").val(data.mobile);
|
||||||
|
$("#telephone").val(data.phone);
|
||||||
|
$("#cbDefaultAddress").attr("checked", data.IsDefault);
|
||||||
|
}
|
||||||
|
|
||||||
|
function deleteAddress(id) {
|
||||||
|
if (confirm("确认是否删除?")) {}
|
||||||
|
}
|
||||||
|
|
||||||
|
function submitOrder() {
|
||||||
|
//check
|
||||||
|
if ($(".shop_adress-top:not(:last) :radio:checked").length == 0) {
|
||||||
|
alert("请先选择一个地址。");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
var nu = '1';
|
||||||
|
|
||||||
|
$("#aspnetForm").submit();
|
||||||
|
|
||||||
|
}
|
||||||
|
$(function() {
|
||||||
|
$("#aspnetForm").attr("action", "/cart_order_success");
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<!--内容-->
|
||||||
|
<div class="shop_cort">
|
||||||
|
<!--左边-->
|
||||||
|
<div class="shop_cort-left fl">
|
||||||
|
<h3>收货人信息</h3>
|
||||||
|
<!--填写地址信息-->
|
||||||
|
<div class="shop_cort-adress">
|
||||||
|
<!--地址-->
|
||||||
|
<div class="shop_adress-top">
|
||||||
|
<input type="radio" checked="checked" name="adress" value="61921" />
|
||||||
|
<label>福建省龙岩市长汀县娃娃亲到青岛</label>
|
||||||
|
<label> 张合(收) 13851435593</label>
|
||||||
|
<span>默认地址</span>
|
||||||
|
<a href="javascript:showAddress(61921);">修改</a>
|
||||||
|
<i>|</i>
|
||||||
|
<a href="javascript:deleteAddress(61921);">删除</a>
|
||||||
|
</div>
|
||||||
|
<div class="shop_adress-top">
|
||||||
|
<input type="radio" id="addressNew" name="adress" />
|
||||||
|
<label class="adress_color" for="addressNew">添加新地址</label>
|
||||||
|
</div>
|
||||||
|
<!--地址end-->
|
||||||
|
<!--新加地址-->
|
||||||
|
<div style="display:none;" class="shop_adress-add">
|
||||||
|
<h4>添加新地址:</h4>
|
||||||
|
<div class="shop_adress-Toadd">
|
||||||
|
<label><i>*</i>收 货 人:</label>
|
||||||
|
<input type="text" class="true_name" placeholder="请准确填写真实姓名" id="addressName" />
|
||||||
|
</div>
|
||||||
|
<div class="shop_adress-Toadd">
|
||||||
|
<label><i>*</i>详细地址:</label>
|
||||||
|
<input type="text" placeholder="请填写详细路名及门牌号" class="adt_1" id="street" />
|
||||||
|
</div>
|
||||||
|
<div class="shop_adress-Toadd">
|
||||||
|
<label><i>*</i>邮政编码:</label>
|
||||||
|
<input type="text" class="true_number" placeholder="请填写邮政编码" id="postcode" />
|
||||||
|
</div>
|
||||||
|
<div class="shop_adress-Toadd">
|
||||||
|
<label><i>*</i>手机号码:</label>
|
||||||
|
<input type="text" id="mobile" />
|
||||||
|
</div>
|
||||||
|
<div class="shop_adress-sp">
|
||||||
|
<input type="checkbox" id="cbDefaultAddress" />
|
||||||
|
<label for="cbDefaultAddress">设为默认地址</label>
|
||||||
|
</div>
|
||||||
|
<div class="shop_adress-save">
|
||||||
|
<div class="bt1">
|
||||||
|
<span class="save">保存收货人信息</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--新加地址end-->
|
||||||
|
<div class="shop_adress-qr">
|
||||||
|
<div class="shop_adressqr-top">
|
||||||
|
<a class="fr" href="Cart.aspx">返回修改购物车>></a>
|
||||||
|
<span>确认订单信息</span>
|
||||||
|
<i>提示:专属订制产品,需要相关证书认证时间。建议尽快提交。</i>
|
||||||
|
</div>
|
||||||
|
<!--订单-->
|
||||||
|
<table cellspacing="0" cellpadding="0" border="0" class="shop_adressqr-of">
|
||||||
|
<tbody>
|
||||||
|
<tr class="shop_adressqr-first">
|
||||||
|
<td class="shop_adress-shoop">商 品</td>
|
||||||
|
<td class="shop_adress-cz">材 质</td>
|
||||||
|
<td class="shop_adress-sc">手寸/尺寸</td>
|
||||||
|
<td class="shop_adress-kz">数量</td>
|
||||||
|
<td class="shop_adress-pirce">价 格</td>
|
||||||
|
</tr>
|
||||||
|
<tr class="shop_adressqr-sec">
|
||||||
|
<td class="shop_adress-shoop">Forever系列 经典款</td>
|
||||||
|
<td class="shop_adress-cz">18K白金</td>
|
||||||
|
<td class="shop_adress-sc">7</td>
|
||||||
|
<td class="shop_adress-kz">1</td>
|
||||||
|
<td class="shop_adress-pirce"><span style="font-family:微软雅黑">¥10,800</span></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
<!--订单end-->
|
||||||
|
<!--总计-->
|
||||||
|
<div class="shop_adress-zj">
|
||||||
|
<div class="fl">
|
||||||
|
<span>总计</span>
|
||||||
|
</div>
|
||||||
|
<div class="fr">
|
||||||
|
<i>1</i>
|
||||||
|
<span>件商品</span>
|
||||||
|
<span>应付金额:</span>
|
||||||
|
<i style="font-family:微软雅黑" class="fw_bold">¥10,800</i>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--总计-->
|
||||||
|
<!--最后一块-->
|
||||||
|
<div class="shop_adress-last">
|
||||||
|
<div class="shop_adress-ddbz fl">
|
||||||
|
<p>订单备注</p>
|
||||||
|
<textarea placeholder="此处请勿填写有关支付方面的信息,留言请在50字以内。" class="shop_adress-text" name="ordernote"></textarea>
|
||||||
|
</div>
|
||||||
|
<div onClick="submitOrder();" class="shop_adress-tjdd fr">
|
||||||
|
<div class="bt1 fr">
|
||||||
|
<span>立即提交订单</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--最后一块end-->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--填写地址信息end-->
|
||||||
|
</div>
|
||||||
|
<!--左边end-->
|
||||||
|
<!--右边-->
|
||||||
|
<!--右边-->
|
||||||
|
<div class="shop_cort-right fr">
|
||||||
|
<div class="shop_right-nr">
|
||||||
|
<h3>购物帮助指南</h3>
|
||||||
|
<div class="shop_right-zx line_bottom">
|
||||||
|
<p class="shop_lx">24小时在线客服</p>
|
||||||
|
<p class="shop_tel">400-13-14520</p>
|
||||||
|
</div>
|
||||||
|
<div class="shop_right-zf line_bottom">
|
||||||
|
<h4>支付安全保障</h4>
|
||||||
|
<p>安全支付系统采用SSL加密。</p>
|
||||||
|
<ul class="shop_right-ul">
|
||||||
|
<li class="shop_cor-yl"></li>
|
||||||
|
<li class="shop_cor-cft"></li>
|
||||||
|
<li class="shop_cor-zf"></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="shop_right-ps">
|
||||||
|
<h4>全球配送</h4>
|
||||||
|
<p class="shop_kd">支持全球配送,店铺取货</p>
|
||||||
|
<p class="shop_bj">全程保价 无风险</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--右边end-->
|
||||||
|
<!--右边end-->
|
||||||
|
</div>
|
||||||
|
<!--内容end-->
|
||||||
|
<!--底部-->
|
||||||
|
<div class="cmain shop_foot">
|
||||||
|
<p>Copyright © 2017 winner winner,chicken dinner All Rights Reserved. 粤ICP备11012085号</p>
|
||||||
|
<p>中国互联网违法信息举报中心 | 中国公安网络110报警服务 | 本网站提供所售商品的正式发票</p>
|
||||||
|
<div class="shop_foot-img">
|
||||||
|
<img width="92px" height="26px" src="../images/db.jpg" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--底部end-->
|
||||||
|
</div>
|
||||||
|
<!--全部背景end-->
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript">
|
||||||
|
function logout() {
|
||||||
|
if (window.confirm('确定退出吗?')) {
|
||||||
|
$.get("/nAPI/QuitExit.ashx", function(data) {
|
||||||
|
window.location.href = "/";
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
</form>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
||||||
|
|
@ -0,0 +1,110 @@
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" class="hb-loaded">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<title>购物车 - 订单提交成功</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<link href="../css/shopping.css?v=1.3.5" type="text/css" rel="stylesheet" />
|
||||||
|
<script src="../js/jquery.js" type="text/javascript"></script>
|
||||||
|
<script src="../js/shoppcart.js" type="text/javascript"></script>
|
||||||
|
<script src="../js/ma3.js" type="text/javascript"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
function toPay() {
|
||||||
|
alert("支付成功");
|
||||||
|
location.href="/member_order";
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<iframe src="javascript:false;" style="display: none;"></iframe>
|
||||||
|
<form id="aspnetForm" action="/ncart/ConfirmOrder.aspx?orderid=20150707888887&process=darryring" method="post" name="aspnetForm">
|
||||||
|
|
||||||
|
<!--全部背景-->
|
||||||
|
<div class="all-thing">
|
||||||
|
<!--中间内容-->
|
||||||
|
<div class="tcmain">
|
||||||
|
<!--头部-->
|
||||||
|
<div class="shop_top">
|
||||||
|
<div class="shopt_left fl">
|
||||||
|
<a title="Darry Ring" href="/index"> <img width="186" height="42" src="../images/dr.png" /> </a>
|
||||||
|
<span>求婚钻戒领导品牌</span>
|
||||||
|
</div>
|
||||||
|
<div class="shopt_right fr">
|
||||||
|
<span id="ctl00_ltlUname">你好!KLNgOk</span>
|
||||||
|
<a class="my_dr" href="/member_index">我的DR</a>
|
||||||
|
<a onClick="javascript:logout()" class="tc_dr" href="#">退出</a>
|
||||||
|
<a class="help_dr" href="/help">帮助中心</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--头部end-->
|
||||||
|
<!--导航条-->
|
||||||
|
<div class="shop_nav shop_nav-end" id="ctl00_showNav"></div>
|
||||||
|
<!--导航条end-->
|
||||||
|
<!--订单提交-->
|
||||||
|
<div class="shop_of-for">
|
||||||
|
<div class="shop_ofor-top">
|
||||||
|
<img width="54" height="67" src="../images/right.png" />
|
||||||
|
<h3>订单提交成功,请您尽快完成支付!</h3>
|
||||||
|
<h4>请您在24小时内完成付款,超过24小时后系统将自动取消订单。</h4>
|
||||||
|
<p class="shop_ofor-font"> <span> 应付总金额:</span> <i style="font-family:微软雅黑;">¥10,800</i> <a target="_blank" href="javascript:history.back(-1);">查看订单>></a> </p>
|
||||||
|
</div>
|
||||||
|
<h2>网上支付方式</h2>
|
||||||
|
<!--银行-->
|
||||||
|
<ul class="shop_ofor-bank">
|
||||||
|
<li> <input type="radio" id="bankgongshang" checked="checked" value="0005" name="target" /> <label for="bankgongshang"> <img width="160" height="43" src="../images/bank1.jpg" /> </label> </li>
|
||||||
|
<li> <input type="radio" value="14" id="bankpingan" name="target" /> <label for="bankpingan"> <img width="160" height="43" src="../images/bank2.jpg" /> </label> </li>
|
||||||
|
<li> <input type="radio" value="1010" id="bankjianshe" name="target" /> <label for="bankjianshe"> <img width="160" height="43" src="../images/bank3.jpg" /> </label> </li>
|
||||||
|
<li> <input type="radio" value="43" id="banknongye" name="target" /> <label for="banknongye"> <img width="160" height="43" src="../images/bank4.jpg" /> </label> </li>
|
||||||
|
<li> <input type="radio" value="3" id="bankzhaoshang" name="target" /> <label for="bankzhaoshang"> <img width="160" height="43" src="../images/bank5.jpg" /> </label> </li>
|
||||||
|
<li> <input type="radio" value="67" id="bankjiaotong" name="target" /> <label for="bankjiaotong"> <img width="160" height="43" src="../images/bank6.jpg" /> </label> </li>
|
||||||
|
<li> <input type="radio" value="84" id="bankzhongxin" name="target" /> <label for="bankzhongxin"> <img width="160" height="43" src="../images/bank7.jpg" /> </label> </li>
|
||||||
|
<li> <input type="radio" value="60" id="bankhuaxia" name="target" /> <label for="bankhuaxia"> <img width="160" height="43" src="../images/bank8.jpg" /> </label> </li>
|
||||||
|
<li> <input type="radio" value="1022" id="bankpufa" name="target" /> <label for="bankpufa"> <img width="160" height="43" src="../images/bank9.jpg" /> </label> </li>
|
||||||
|
<li> <input type="radio" value="0051" id="bankdongya" name="target" /> <label for="bankdongya"> <img width="160" height="43" src="../images/bank10.jpg" /> </label> </li>
|
||||||
|
<li> <input type="radio" value="44" id="bankguangfa" name="target" /> <label for="bankguangfa"> <img width="160" height="43" src="../images/bank11.jpg" /> </label> </li>
|
||||||
|
<li> <input type="radio" value="33" id="bankxingye" name="target" /> <label for="bankxingye"> <img width="160" height="43" src="../images/bank12.jpg" /> </label> </li>
|
||||||
|
<li> <input type="radio" value="28" id="bankmingsheng" name="target" /> <label for="bankmingsheng"> <img width="160" height="43" src="../images/bank13.jpg" /> </label> </li>
|
||||||
|
<li> <input type="radio" value="85" id="bankzhongguo" name="target" /> <label for="bankzhongguo"> <img width="160" height="43" src="../images/bank14.jpg" /> </label> </li>
|
||||||
|
<li> <input type="radio" value="74" id="bankguangda" name="target" /> <label for="bankguangda"> <img width="160" height="43" src="../images/bank15.jpg" /> </label> </li>
|
||||||
|
<li> <input type="radio" value="59" id="bankyouzheng" name="target" /> <label for="bankyouzheng"> <img width="160" height="43" src="../images/bank16.jpg" /> </label> </li>
|
||||||
|
<li> <input type="radio" value="8607" id="bankzaixian" name="target" /> <label for="bankzaixian"> <img width="160" height="43" src="../images/bank17.jpg" /> </label> </li>
|
||||||
|
<li> <input type="radio" value="alipay" id="bankzhifubao" name="target" /> <label for="bankzhifubao"> <img width="160" height="43" src="../images/bank18.jpg" /> </label> </li>
|
||||||
|
</ul>
|
||||||
|
<!--银行end-->
|
||||||
|
<!--提交按钮-->
|
||||||
|
<div class="shop_ofor-button">
|
||||||
|
<div onClick="toPay()" class="bt3">
|
||||||
|
<span>立即支付</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--提交按钮end-->
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!--底部-->
|
||||||
|
<div class="cmain shop_foot">
|
||||||
|
<p>Copyright © 2017 winner winner,chicken dinner All Rights Reserved. 粤ICP备11012085号</p>
|
||||||
|
<p>中国互联网违法信息举报中心 | 中国公安网络110报警服务 | 本网站提供所售商品的正式发票</p>
|
||||||
|
<div class="shop_foot-img">
|
||||||
|
<img width="92px" height="26px" src="../images/db.jpg" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--底部end-->
|
||||||
|
</div>
|
||||||
|
<!--全部背景end-->
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript">
|
||||||
|
function logout() {
|
||||||
|
if (window.confirm('确定退出吗?')) {
|
||||||
|
$.get("/nAPI/QuitExit.ashx", function(data) {
|
||||||
|
window.location.href = "/";
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
</form>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
||||||
File diff suppressed because it is too large
Load Diff
|
|
@ -0,0 +1,103 @@
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" class="hb-loaded">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<title>忘记密码</title>
|
||||||
|
<link href="../css/style.css" type="text/css" rel="stylesheet" />
|
||||||
|
<script src="../js/jquery-1.10.1.min.js" type="text/javascript"></script>
|
||||||
|
<script src="../js/common.js" type="text/javascript"></script>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<div class="wrap">
|
||||||
|
<!-- start of 头部导航-->
|
||||||
|
<div class="head_top">
|
||||||
|
<div class="head clearfix">
|
||||||
|
<!--头部左边-->
|
||||||
|
<div class="topLeft left">
|
||||||
|
<a href="/index" title="Darry Ring"> <img width="186" height="42" src="../images/logo_01.png " /> </a>
|
||||||
|
<span>求婚钻戒领导品牌</span>
|
||||||
|
</div>
|
||||||
|
<!--头部左边end-->
|
||||||
|
<!--头部右边-->
|
||||||
|
<ul class="topRight right">
|
||||||
|
<li>国际权威认证</li>
|
||||||
|
<li class="tr_2">15天无理由退换</li>
|
||||||
|
<li class="tr_3">终身保养</li>
|
||||||
|
</ul>
|
||||||
|
<!--头部左边end-->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--end of 头部导航-->
|
||||||
|
<!-- starto of container -->
|
||||||
|
<div class="container">
|
||||||
|
<!--中间内容-->
|
||||||
|
<div class="cmain ddd">
|
||||||
|
<!--内容右边-->
|
||||||
|
<div class="cort-right right">
|
||||||
|
<div class="r_bg"></div>
|
||||||
|
<!--登陆框内-->
|
||||||
|
<div class="cr_border">
|
||||||
|
<!--手机注册-->
|
||||||
|
<form method="post" action="/forget" class="form_first">
|
||||||
|
<input type="hidden" value="1" name="type" />
|
||||||
|
<input type="hidden" value="NCkpc1Pl" name="fbkey" />
|
||||||
|
<div class="photo_show">
|
||||||
|
<!--手机号-->
|
||||||
|
<div class="the_input">
|
||||||
|
<span class="member"></span>
|
||||||
|
<input type="text" placeholder="请输入手机号码" class="al_Input dr_photo" name="mobile" value="" />
|
||||||
|
</div>
|
||||||
|
<!--手机号end-->
|
||||||
|
<!--密码-->
|
||||||
|
<div style="border:none" class="the_input">
|
||||||
|
<span class="password"></span>
|
||||||
|
<input type="text" style="width:133px;" placeholder="请输入验证码" class="al_Input ls" name="mobile_code" value="" />
|
||||||
|
<input type="button" value="获取验证码" class="action mobile_action" />
|
||||||
|
</div>
|
||||||
|
<!--验证码end-->
|
||||||
|
<!--密码-->
|
||||||
|
<div class="the_input ">
|
||||||
|
<span class="pw"></span>
|
||||||
|
<input type="password" placeholder="请输入新密码" maxlength="21" class="al_Input dr_photo" name="mobile_pwd" value="" />
|
||||||
|
</div>
|
||||||
|
<!--密码end-->
|
||||||
|
<!--密码-->
|
||||||
|
<div class="the_input ">
|
||||||
|
<span class="pw"></span>
|
||||||
|
<input type="password" placeholder="确认新密码" maxlength="21" class="al_Input dr_photo" name="mobile_pwd_confirm" value="" />
|
||||||
|
</div>
|
||||||
|
<!--密码end-->
|
||||||
|
<div style="display:none" class="other_input">
|
||||||
|
<div class="left">
|
||||||
|
<input type="checkbox" name="check" id="check" value="1" />
|
||||||
|
<label for="check">已经仔细阅读并同意《Darry Ring用户注册协议》</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--其他合作-->
|
||||||
|
<div class="other_hz">
|
||||||
|
<input type="button" value="确认重置" class="up" />
|
||||||
|
</div>
|
||||||
|
<!--其他合作end-->
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
<!--手机注册end-->
|
||||||
|
</div>
|
||||||
|
<!--登陆框内end-->
|
||||||
|
</div>
|
||||||
|
<!--内容右边end-->
|
||||||
|
</div>
|
||||||
|
<!--中间内容end-->
|
||||||
|
</div>
|
||||||
|
<!-- end of container -->
|
||||||
|
<!--底部end-->
|
||||||
|
<div class="cmain bc_yz">
|
||||||
|
<div class="db_cort">
|
||||||
|
<p> Copyright © 2017 winner winner,chickdinner !!团队 All Rights Reserved. 闽ICP备11012085号-2.ICP经营许可证闽B2-20140279 </p>
|
||||||
|
<p> 中国互联网违法信息举报中心 | 中国公安网络110报警服务 | 本网站提供所售商品的正式发票 </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -0,0 +1,672 @@
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" class="hb-loaded">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8"/>
|
||||||
|
<title>DarryRing首页</title>
|
||||||
|
<link href="/css/index_A.css?v=1.3.7.1" type="text/css" rel="stylesheet"/>
|
||||||
|
<link href="/css/same_A.css?v=1.3.7.2" type="text/css" rel="stylesheet"/>
|
||||||
|
<script type="text/javascript" src="/js/jquery.js"></script>
|
||||||
|
<script src="/js/jsex.js?virsion=1.3.7.2" type="text/javascript"></script>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<!--遮罩-->
|
||||||
|
<div class="backall"></div>
|
||||||
|
<!--遮罩end-->
|
||||||
|
<!--头部-->
|
||||||
|
<div class="cmain">
|
||||||
|
<div class="headtop">
|
||||||
|
<!--头部左边-->
|
||||||
|
<div class="top-left fl">
|
||||||
|
<a title="Darry Ring" href="/index"> <img width="187" height="42" alt="Darry Ring官网"
|
||||||
|
src="/images/logo.png"/> </a>
|
||||||
|
<span style="font-weight: normal;">求婚钻戒领导品牌</span>
|
||||||
|
</div>
|
||||||
|
<!--头部左边end-->
|
||||||
|
<!--头部右边-->
|
||||||
|
<div class="top-right fr">
|
||||||
|
<!--登录注册-->
|
||||||
|
<ul class="tright-ul fl">
|
||||||
|
<div id="ucheader1_pllogin1">
|
||||||
|
<li><a rel="nofollow" href="/login">登录</a><em>|</em></li>
|
||||||
|
<li><a rel="nofollow" href="/reg">注册</a></li>
|
||||||
|
<li class="headed"><em class="icon shooping"></em><a target="black" rel="nofollow" href="/cart">购物车</a><i>(0)</i>
|
||||||
|
</li>
|
||||||
|
</div>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<!--头部右边end-->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--头部end-->
|
||||||
|
<!--导航-->
|
||||||
|
<div class="nav">
|
||||||
|
<div class="cmain">
|
||||||
|
<!--导航的左边-->
|
||||||
|
<ul class="nav-ul fl">
|
||||||
|
<li><a href="index">首页</a></li>
|
||||||
|
<li><a href="brand">品牌文化</a></li>
|
||||||
|
<li><a style="font-family:arial" href="/lists">Darry Ring 求婚钻戒</a>
|
||||||
|
<div class="nav-div">
|
||||||
|
<div class="navdiv_top">
|
||||||
|
<div class="navdiv-right">
|
||||||
|
<p><a href="/lists"> 查看所有款</a></p>
|
||||||
|
<p><a href="/dr_series/12_22.html">Forever系列</a></p>
|
||||||
|
<p><a href="/dr_series/11_20.html">My Heart系列</a></p>
|
||||||
|
<p><a href="/dr_series/16_30.html">True Love系列</a></p>
|
||||||
|
<p><a href="/dr_series/15_28.html">I Swear系列</a></p>
|
||||||
|
<p><a href="/dr_series/13_24.html">Just you系列</a></p>
|
||||||
|
</div>
|
||||||
|
<div class="navdiv-left">
|
||||||
|
<h3> NEW</h3>
|
||||||
|
<a href="/detail"> <img width="138" height="97" src="/images/03wj.jpg"/></a>
|
||||||
|
<div class="more_cp">
|
||||||
|
<a href="/detail">> 了解该系列产品</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="navdiv_bottom"></div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li><a href="/question">常见问题</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--导航end-->
|
||||||
|
<script type="text/javascript">
|
||||||
|
function logout() {
|
||||||
|
if (window.confirm('确定退出吗?')) {
|
||||||
|
|
||||||
|
$.get("/nAPI/QuitExit.ashx", function (data) {
|
||||||
|
window.location.href = "/";
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<!--banner-->
|
||||||
|
<div class="indexbanner-all">
|
||||||
|
<ul class="indexbanner">
|
||||||
|
<li class="tb_first" style="display: block; opacity: 0.982279;">
|
||||||
|
<div class="cmain cb_main">
|
||||||
|
|
||||||
|
<div class="banner-word sp_width">
|
||||||
|
<img src="/images/dr_logo.png"/>
|
||||||
|
<div class="baner_longline">
|
||||||
|
<em></em>
|
||||||
|
<span>爱的最高承诺</span>
|
||||||
|
<em></em>
|
||||||
|
</div>
|
||||||
|
<h2>男士一生仅能定制一枚</h2>
|
||||||
|
<div class="baner_shortline">
|
||||||
|
<em></em>
|
||||||
|
<span>寓意:一生·唯一·真爱</span>
|
||||||
|
<em></em>
|
||||||
|
</div>
|
||||||
|
<div class="button sp_button">
|
||||||
|
<div class="bt2">
|
||||||
|
<a target="_blank" href="/brand">了解品牌文化</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<!--中间的内容-->
|
||||||
|
<div class="all-thing">
|
||||||
|
<div class="cmain">
|
||||||
|
<!--资讯内容的ul-->
|
||||||
|
|
||||||
|
|
||||||
|
<ul class="all_tab">
|
||||||
|
<li style="display: none;">
|
||||||
|
<!--tab选项卡下的左边内容-->
|
||||||
|
<div class="tab_left fl">
|
||||||
|
<img width="504" height="314" alt="Forever经典系列" src="/images/fimg6.jpg"/>
|
||||||
|
</div>
|
||||||
|
<!--tab选项卡下的左边内容 end-->
|
||||||
|
<!--tab选项卡下的右边内容-->
|
||||||
|
<div class="tab_right fr">
|
||||||
|
<h3> Forever系列</h3>
|
||||||
|
<p> 爱如Forever经典的六爪</p>
|
||||||
|
<p> 任时光流逝,唯爱永固,祈岁月静好,唯爱永恒</p>
|
||||||
|
<div class="to_more">
|
||||||
|
<div class="bt2">
|
||||||
|
<a target="_blank" href="/lists">了解更多</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--tab选项卡下的右边内容 end-->
|
||||||
|
</li>
|
||||||
|
<li style="display: none;">
|
||||||
|
<!--tab选项卡下的左边内容-->
|
||||||
|
<div class="tab_left fl">
|
||||||
|
<img width="504" height="314" alt="Marry Me系列" src="/images/fimg1.jpg"/>
|
||||||
|
</div>
|
||||||
|
<!--tab选项卡下的左边内容 end-->
|
||||||
|
<!--tab选项卡下的右边内容-->
|
||||||
|
<div class="tab_right fr">
|
||||||
|
<h3> Marry Me系列</h3>
|
||||||
|
<p> 承诺相伴一生真爱之人,一生一次,一次一生的爱情信物</p>
|
||||||
|
<p> 7月15日 正午12点浪漫发售</p>
|
||||||
|
<div class="to_more">
|
||||||
|
<div class="bt2">
|
||||||
|
<a target="_blank" href="/lists">了解更多</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--tab选项卡下的右边内容 end-->
|
||||||
|
</li>
|
||||||
|
<li style="display: none;">
|
||||||
|
<!--tab选项卡下的左边内容-->
|
||||||
|
<div class="tab_left fl">
|
||||||
|
<img width="504" height="314" alt="My heart系列" src="/images/fimg2.jpg"/>
|
||||||
|
</div>
|
||||||
|
<!--tab选项卡下的左边内容 end-->
|
||||||
|
<!--tab选项卡下的右边内容-->
|
||||||
|
<div class="tab_right fr">
|
||||||
|
<h3> My heart系列</h3>
|
||||||
|
<p> 将我的心刻入璀璨的钻石 呈献给最爱的你 </p>
|
||||||
|
<p> 此生只愿,把心交给你</p>
|
||||||
|
<div class="to_more">
|
||||||
|
<div class="bt2">
|
||||||
|
<a target="_blank" href="/lists">了解更多</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--tab选项卡下的右边内容 end-->
|
||||||
|
</li>
|
||||||
|
<li style="display: list-item; opacity: 0.470565;">
|
||||||
|
<!--tab选项卡下的左边内容-->
|
||||||
|
<div class="tab_left fl">
|
||||||
|
<img width="515" height="314" alt="True Love系列" src="/images/fimg3.jpg"/>
|
||||||
|
</div>
|
||||||
|
<!--tab选项卡下的左边内容 end-->
|
||||||
|
<!--tab选项卡下的右边内容-->
|
||||||
|
<div class="tab_right fr">
|
||||||
|
<h3> True Love系列</h3>
|
||||||
|
<p> 沿袭了欧式古典,圆融了世间美好,绽放女人最温润的内敛</p>
|
||||||
|
<p> 从今往后,将你我恒久岁月,用True Love细细包容</p>
|
||||||
|
<div class="to_more">
|
||||||
|
<div class="bt2">
|
||||||
|
<a target="_blank" href="/lists">了解更多</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--tab选项卡下的右边内容 end-->
|
||||||
|
</li>
|
||||||
|
<li style="opacity: 0.529435; display: list-item;">
|
||||||
|
<!--tab选项卡下的左边内容-->
|
||||||
|
<div class="tab_left fl">
|
||||||
|
<img width="504" height="314" alt="I Swear系列" src="/images/fimg4.jpg"/>
|
||||||
|
</div>
|
||||||
|
<!--tab选项卡下的左边内容 end-->
|
||||||
|
<!--tab选项卡下的右边内容-->
|
||||||
|
<div class="tab_right fr">
|
||||||
|
<h3> I Swear系列</h3>
|
||||||
|
<p> 不论顺境逆境、贫穷富贵、健康疾病</p>
|
||||||
|
<p> 将我们的誓言印刻在永恒的钻石上,散发最闪耀的光芒</p>
|
||||||
|
<div class="to_more">
|
||||||
|
<div class="bt2">
|
||||||
|
<a target="_blank" href="/lists">了解更多</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--tab选项卡下的右边内容 end-->
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!--tab选项卡下的内容 end-->
|
||||||
|
<!--推荐款式-->
|
||||||
|
<div class="hot-ks">
|
||||||
|
<a class="fr" target="_blank" href="/lists">更多</a>
|
||||||
|
<span class="other_color" id="renqi"><i>人气最高</i><em></em> </span>
|
||||||
|
<span id="rxph"><i>热销商品</i><em></em> </span>
|
||||||
|
</div>
|
||||||
|
<!--购买的款式-->
|
||||||
|
<div class="cmain">
|
||||||
|
<ul id="ullist" class="buyit">
|
||||||
|
<li>
|
||||||
|
<div class="by_top">
|
||||||
|
<a target="_blank" href="/detail" rel="nofollow"></a>
|
||||||
|
<div style="opacity:1" class="bything-one">
|
||||||
|
<img width="236px" height="236px" alt="Forever系列 "
|
||||||
|
src="/images/2014090119350717386d7a1e.jpg"/>
|
||||||
|
</div>
|
||||||
|
<div style="opacity:0" class="bything-two">
|
||||||
|
<img width="236px" height="236px" src="/images/201409011935072849fe802f.jpg"/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="by_center"></div>
|
||||||
|
<div class="by_bottom">
|
||||||
|
<p><a target="_blank" href="/detail">Forever系列 经典款 50分 H色</a></p>
|
||||||
|
<p><span>¥25,700</span><i>销量:5698</i></p>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<!--款式end-->
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!--底部-->
|
||||||
|
<div class="footer">
|
||||||
|
<!--错误-->
|
||||||
|
<!--提示-->
|
||||||
|
<div class="loverit_word2" style="display: none;">
|
||||||
|
Darry Ring严格规定男士凭身份证一生仅能定制一枚,象征男人一生真爱的最高承诺。输入身份证号码即可查询购买记录。
|
||||||
|
</div>
|
||||||
|
<!--提示end-->
|
||||||
|
<div class="loverit_wrong2" style="display: none;">
|
||||||
|
<p>信息填写不正确,请重新输入。</p>
|
||||||
|
</div>
|
||||||
|
<!--错误end-->
|
||||||
|
<!--验证身份-->
|
||||||
|
<div class="loveit_center">
|
||||||
|
<div class="love_doit2" style="display: none;">
|
||||||
|
<div class="loverit_center2">
|
||||||
|
<div class="loverit_write2">
|
||||||
|
<label>国家/区域:</label>
|
||||||
|
<select id="txtArea" style="vertical-align: middle;height:22px;">
|
||||||
|
<option value="0">中国大陆</option>
|
||||||
|
<option value="1">中国香港</option>
|
||||||
|
<option value="2">中国澳门</option>
|
||||||
|
<option value="3">中国台湾</option>
|
||||||
|
</select>
|
||||||
|
<label>先生姓名:</label>
|
||||||
|
<input type="text" class="lit_txt" id="textName2"/>
|
||||||
|
<label>身份证号码:</label>
|
||||||
|
<input type="text" class="lit_txt" id="textIDCard2"/>
|
||||||
|
<span id="btnsub2"></span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--验证身份end-->
|
||||||
|
<div style="clear:both"></div>
|
||||||
|
<div class="cmain">
|
||||||
|
<ul class="Service_ul">
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p>权威认证</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_2">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p> 一钻双证</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_3">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p> 终生保养</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_4">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p> 以小换大</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_5">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p> 15天退换</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_6">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p> 全国免运费</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_7">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p> 全程保险</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<!--条文-->
|
||||||
|
<div class="auto" id="Menu_Service">
|
||||||
|
</div>
|
||||||
|
<div class="tw-foot">
|
||||||
|
<div class="auto" id="Copyright">
|
||||||
|
<p> Copyright © 2017 winner winner,chicken dinner All Rights Reserved.
|
||||||
|
闽ICP备11012085号-2.ICP经营许可证闽B2-20140279 </p>
|
||||||
|
<p> 中国互联网违法信息举报中心 | 中国公安网络110报警服务 | 本网站提供所售商品的正式发票 </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="model" id="model">
|
||||||
|
<div class="Prompt" id="Prompt">
|
||||||
|
</div>
|
||||||
|
<span id="log_uid" style="display:none"></span>
|
||||||
|
<span id="log_uname" style="display:none"></span>
|
||||||
|
<span id="log_orderid" style="display:none"></span>
|
||||||
|
<span id="log_price" style="display:none"></span>
|
||||||
|
</div>
|
||||||
|
<!-- <script src="http://wpa.b.qq.com/cgi/wpa.php" charset="utf-8" type="text/javascript"></script> -->
|
||||||
|
<!--客服(2014年8月29日)-->
|
||||||
|
<div style="display:none" class="Ffloat_kf">
|
||||||
|
<div class="fkf_top">
|
||||||
|
<div style="cursor: pointer; display: none;" id="bridgehead">
|
||||||
|
</div>
|
||||||
|
<div id="BizQQWPA"></div>
|
||||||
|
<div onClick="showModel(modelsever);" style="cursor: pointer;" class="qq_hover" id="qqTalk_head">
|
||||||
|
</div>
|
||||||
|
<div id="BizQQWPAB" class="sh">
|
||||||
|
</div>
|
||||||
|
<div id="bdBridge">
|
||||||
|
<a href="javascript:NTKF.im_openInPageChat()"> <img width="75" height="37" src="/images/zx.jpg"/></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="fkf_bottom">
|
||||||
|
<img width="92" height="82" alt="Darry Ring 官方微信" src="/images/to_erwei.jpg"/>
|
||||||
|
<a href="#"> <img width="92" height="26" src="/images/db.jpg"/></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--新版右边客服start-->
|
||||||
|
<!--右边漂浮悬挂大的-->
|
||||||
|
<div class="float_big">
|
||||||
|
<div class="floatbig_hide fr"></div>
|
||||||
|
<div class="floatbig_center">
|
||||||
|
<!--客服-->
|
||||||
|
<div onClick="javascript:NTKF.im_openInPageChat();" id="Bearonline" class="floatbig_center-kf"></div>
|
||||||
|
<!--客服end-->
|
||||||
|
<!--定制咨询-->
|
||||||
|
<div id="dzzxonline" class="floatbig_center-zx">
|
||||||
|
<a href="javascript:showModel(modelsever);"></a>
|
||||||
|
</div>
|
||||||
|
<!--定制咨询end-->
|
||||||
|
<img src="/images/ew.jpg"/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--右边漂浮悬挂大的end-->
|
||||||
|
<!--右边漂浮悬挂小的-->
|
||||||
|
<div class="float_small">
|
||||||
|
<div class="floatbig_show fr"></div>
|
||||||
|
<div class="floatbig_center">
|
||||||
|
<!--客服-->
|
||||||
|
<div onClick="javascript:NTKF.im_openInPageChat();" class="floatsmall_center-kf fr"></div>
|
||||||
|
<!--客服end-->
|
||||||
|
<!--定制咨询-->
|
||||||
|
<div class="floatsmall_center-zx fr">
|
||||||
|
<a href="javascript:showModel(modelsever);"></a>
|
||||||
|
</div>
|
||||||
|
<!--定制咨询end-->
|
||||||
|
<!--二维码-->
|
||||||
|
<div class="floatsmall_erwei fr">
|
||||||
|
<a href="#"></a>
|
||||||
|
</div>
|
||||||
|
<!--二维码end-->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--右边漂浮悬挂小的end-->
|
||||||
|
<!--返回顶部-->
|
||||||
|
<div class="comeback" style="display: block;"></div>
|
||||||
|
<!--返回顶部end-->
|
||||||
|
<!--新版右边客服end-->
|
||||||
|
<div style="position: fixed; cursor: pointer; right: 6px; top: 289px; padding-bottom: 152px; z-index: 9999; width: 19px; height: 103px; display: none;"
|
||||||
|
onClick="openserver();" id="openbnt">
|
||||||
|
<img width="19" height="103" src="../images/server_03.jpg"/>
|
||||||
|
</div>
|
||||||
|
<div class="news_tc">
|
||||||
|
<div class="newtc_left">
|
||||||
|
</div>
|
||||||
|
<div class="newtc_right">
|
||||||
|
<span style="cursor: pointer" class="sszs">稍后再说</span>
|
||||||
|
<span class="xzzx"><a onClick="showxiaon()" style="cursor: pointer" id="chatnow"> 现在咨询</a></span>
|
||||||
|
<div style="cursor: pointer" class="tocclose">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="mask" id="masks">
|
||||||
|
</div>
|
||||||
|
<div style="display:none;" class="modelsever" id="modelsever">
|
||||||
|
<div class="cs_top">
|
||||||
|
<div class="cs_topcenter">
|
||||||
|
<div style="width:300px; height:40px; line-height:40px; float:left; display:inline-block; ">
|
||||||
|
顾客常见疑问
|
||||||
|
</div>
|
||||||
|
<div style="width:385px; height:20px; float:left; text-align:right; padding-top:20px;">
|
||||||
|
<img width="55" height="9" style="cursor: pointer;" onClick="CloseMaskser()"
|
||||||
|
src="../images/popup_window_btn_close.gif"/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="cs_content clear">
|
||||||
|
<div id="box1" class="box1">
|
||||||
|
<div onClick="contenttxt(1,1)" id="content_title_11" class="content_title">
|
||||||
|
<span style="margin-top:8px;">Q:Darry Ring 是否有实体店?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_1" class="content_txt">
|
||||||
|
<span style="margin-top:1px;">A:DR公司总部在香港,目前内地深圳市、北京市、重庆市、广州市、上海市、武汉市、南京市、长沙市设有实体店,支持到店订购,也支持全国在线官网订购。同时目前其他一线城市公司已在考察选址阶段,将陆续开设店面。</span>
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(1,2)" id="content_title_12" class="content_title">
|
||||||
|
<span style="margin-top:8px;">Q:实体店具体位置?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_2" class="content_txt">
|
||||||
|
<span style="margin-top:1px;">A:深圳实体店地址:深圳南山区世界之窗旁欧陆小镇4号楼Darry Ring (地铁罗宝线世界之窗I出口)深圳店联系方式:0755-86621782。<p></p> 北京实体店地址:北京东二环朝阳门桥银河SOHO中心B座负一层2-109 (朝阳门地铁G出口) 北京店联系方式:010-59576758。<p></p> 上海实体店地址:上海长宁区淮海西路570号红坊创意园区G-108栋(近虹桥路) 上海店联系方式:021-60934520。<p></p> 广州实体店地址:广州市天河区天河北路233号中信广场商场136单元 广州店联系方式:020-38836315。<p></p> 重庆实体店地址:重庆市渝中区解放碑步行街民族路188号环球金融中心(WFC)LG-B02A 重庆店联系方式:023-63710835。<p></p> 武汉实体店地址:武汉市洪山区光谷意大利风情街5号楼一层51021号 武汉店联系方式:027-87688895。<p></p> 南京实体店地址:南京市长江路288号1912街区17号楼一层 南京店联系方式:025-83613520。<p></p> 长沙实体店地址:长沙市开福区中山路589号万达百货商场2楼 长沙店联系方式:0731-83878575。<p></p> 全国400客服热线:400 01 13520。</span>
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(1,3)" id="content_title_13" class="content_title">
|
||||||
|
<span style="margin-top:8px;">Q:到店订购和官网订购的价格一致吗?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_3" class="content_txt">
|
||||||
|
<span style="margin-top:1px;">A:DR的所有商品,到店订购和官网订购的时间周期,价格,质量及售后服务均一致。</span>
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(1,4)" id="content_title_14" class="content_title">
|
||||||
|
<span style="margin-top:8px;">Q:价格是否有折扣优惠?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_4" class="content_txt">
|
||||||
|
<span style="margin-top:1px;">A:DR的品牌寓意为一生唯一真爱,大多是用作见证彼此求婚或结婚这一神圣时刻,所以所有商品都是常年任何节假日没有折扣活动,就像彼此一生唯一真爱的承诺及永恒的爱情,永不打折。</span>
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(1,5)" id="content_title_15" class="content_title">
|
||||||
|
<span style="margin-top:8px;">Q:为什么在官网上输入姓名身份证号后看不到款式?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_5" class="content_txt">
|
||||||
|
<span style="margin-top:1px;">A:www.darryring.com 官网首页点击—求婚钻戒,进入页面后不需要填写任何信息,移动鼠标到最下方,就可以看到Darry Ring女戒的所有款式。</span>
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(1,6)" id="content_title_16" class="content_title">
|
||||||
|
<span style="margin-top:8px;">Q:到实体店是否可以立刻拿到戒指?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_6" class="content_txt">
|
||||||
|
<span style="margin-top:1px;">A:您好,DR的所有商品都是需要根据您选择的款式、手寸大小及刻字信息来定制。实体店仅提供款式体验及预订,与官网购买的定制时间是一致的,可于15-20个工作日内送到或自取。</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="box2" class="box2">
|
||||||
|
<div onClick="contenttxt(2,1)" id="content_title_21" class="content_title"></div>
|
||||||
|
<div id="content_title2_1" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(2,2)" id="content_title_22" class="content_title"></div>
|
||||||
|
<div id="content_title2_2" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(2,3)" id="content_title_23" class="content_title"></div>
|
||||||
|
<div id="content_title2_3" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(2,4)" id="content_title_24" class="content_title"></div>
|
||||||
|
<div id="content_title2_4" class="content_txt">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="box3" class="box3">
|
||||||
|
<div onClick="contenttxt(3,1)" id="content_title_31" class="content_title"></div>
|
||||||
|
<div id="content_title3_1" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(3,2)" id="content_title_32" class="content_title"></div>
|
||||||
|
<div id="content_title3_2" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(3,3)" id="content_title_33" class="content_title"></div>
|
||||||
|
<div id="content_title3_3" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(3,4)" id="content_title_34" class="content_title"></div>
|
||||||
|
<div id="content_title3_4" class="content_txt"></div>
|
||||||
|
</div>
|
||||||
|
<div id="box4" class="box4">
|
||||||
|
<div onClick="contenttxt(4,1)" id="content_title_41" class="content_title"></div>
|
||||||
|
<div id="content_title4_1" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(4,2)" id="content_title_42" class="content_title"></div>
|
||||||
|
<div id="content_title4_2" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(4,3)" id="content_title_43" class="content_title"></div>
|
||||||
|
<div id="content_title4_3" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(4,4)" id="content_title_44" class="content_title"></div>
|
||||||
|
<div id="content_title4_4" class="content_txt"></div>
|
||||||
|
</div>
|
||||||
|
<div id="box5" class="box5">
|
||||||
|
<div onClick="contenttxt(5,1)" id="content_title_51" class="content_title"></div>
|
||||||
|
<div id="content_title5_1" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(5,2)" id="content_title_52" class="content_title"></div>
|
||||||
|
<div id="content_title5_2" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(5,3)" id="content_title_53" class="content_title"></div>
|
||||||
|
<div id="content_title5_3" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(5,4)" id="content_title_54" class="content_title"></div>
|
||||||
|
<div id="content_title5_4" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(5,5)" id="content_title_55" class="content_title"></div>
|
||||||
|
<div id="content_title5_5" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(5,6)" id="content_title_56" class="content_title"></div>
|
||||||
|
<div id="content_title5_6" class="content_txt">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="box6" class="box6">
|
||||||
|
<div onClick="contenttxt(6,1)" id="content_title_61" class="content_title"></div>
|
||||||
|
<div id="content_title6_1" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(6,2)" id="content_title_62" class="content_title"></div>
|
||||||
|
<div id="content_title6_2" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(6,3)" id="content_title_63" class="content_title"></div>
|
||||||
|
<div id="content_title6_3" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(6,4)" id="content_title_64" class="content_title"></div>
|
||||||
|
<div id="content_title6_4" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(6,5)" id="content_title_65" class="content_title"></div>
|
||||||
|
<div id="content_title6_5" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(6,6)" id="content_title_66" class="content_title"></div>
|
||||||
|
<div id="content_title6_6" class="content_txt">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="box7" class="box7">
|
||||||
|
<div onClick="contenttxt(7,1)" id="content_title_71" class="content_title"></div>
|
||||||
|
<div id="content_title7_1" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(7,2)" id="content_title_72" class="content_title"></div>
|
||||||
|
<div id="content_title7_2" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(7,3)" id="content_title_73" class="content_title"></div>
|
||||||
|
<div id="content_title7_3" class="content_txt">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript">
|
||||||
|
function showbox(id) {
|
||||||
|
getQeestion(id);
|
||||||
|
for (var i = 1; i <= 8; i++) {
|
||||||
|
if (i == id) {
|
||||||
|
showdiv(id);
|
||||||
|
} else {
|
||||||
|
hidediv(i);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function contenttxt(id, sid) {
|
||||||
|
for (var i = 1; i <= 7; i++) {
|
||||||
|
if (i == id) {
|
||||||
|
showtxt(id, sid);
|
||||||
|
} else {
|
||||||
|
hidetxt(i, sid);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
function showtxt(id, sid) {
|
||||||
|
var objtitle = $("#content_title" + id + "_" + sid);
|
||||||
|
|
||||||
|
if (objtitle.css("display") == "none") {
|
||||||
|
objtitle.show("fast");
|
||||||
|
} else {
|
||||||
|
|
||||||
|
hidetxt(id, sid);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function hidetxt(id, sid) {
|
||||||
|
var objtitle = $("#content_title" + id + "_" + sid);
|
||||||
|
objtitle.hide("fast");
|
||||||
|
}
|
||||||
|
|
||||||
|
function hidediv(id) {
|
||||||
|
$("#box" + id).hide("fast");
|
||||||
|
|
||||||
|
$("#li" + id).css({
|
||||||
|
"font-size": "14px",
|
||||||
|
"color": "#7d7d7d"
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function showdiv(id) {
|
||||||
|
if ($("#box" + id).css("display") == "none") {
|
||||||
|
$("#box" + id).show("fast");
|
||||||
|
$("#li" + id).css({
|
||||||
|
"font-size": "18px",
|
||||||
|
"color": "#000000"
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
function showMask() {
|
||||||
|
$("#masks").css("height", $(document).height());
|
||||||
|
$("#masks").css("width", $(document).width());
|
||||||
|
$("#masks").fadeIn();
|
||||||
|
}
|
||||||
|
|
||||||
|
function showModel(divName) {
|
||||||
|
showMask();
|
||||||
|
/* var top = ($(window).height() - $(divName).height()) / 5;
|
||||||
|
var left = ($(window).width() - $(divName).width()) / 2;
|
||||||
|
var scrollTop = $(document).scrollTop();
|
||||||
|
var scrollLeft = $(document).scrollLeft();*/
|
||||||
|
$(divName).fadeIn();
|
||||||
|
}
|
||||||
|
|
||||||
|
function CloseMaskser() {
|
||||||
|
|
||||||
|
$("#modelsever").fadeOut("slow");
|
||||||
|
$("#masks").fadeOut("slow");
|
||||||
|
$("#mask").fadeOut("slow");
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
||||||
|
|
@ -0,0 +1,882 @@
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" class="hb-loaded">
|
||||||
|
<head>
|
||||||
|
<title>钻戒列表</title>
|
||||||
|
<link href="../css/same.css?v=1.3.7.2" type="text/css" rel="stylesheet" />
|
||||||
|
<link href="../css/dr.css?v=1.3.5.0" type="text/css" rel="stylesheet" />
|
||||||
|
<script src="../js/jquery.js" type="text/javascript"></script>
|
||||||
|
<script src="../js/index.js?virsion=1.3.7.2" type="text/javascript"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<!--头部-->
|
||||||
|
<div class="cmain">
|
||||||
|
<div class="headtop">
|
||||||
|
<!--头部左边-->
|
||||||
|
<div class="top-left fl">
|
||||||
|
<a title="Darry Ring" href="/index"> <img width="187" height="42" alt="Darry Ring官网" src="../images/logo.png" /> </a>
|
||||||
|
<span style="font-weight: normal;">求婚钻戒领导品牌</span>
|
||||||
|
</div>
|
||||||
|
<!--头部左边end-->
|
||||||
|
<!--头部右边-->
|
||||||
|
<div class="top-right fr">
|
||||||
|
<!--登录注册-->
|
||||||
|
<ul class="tright-ul fl">
|
||||||
|
<div id="ucheader1_pllogin1">
|
||||||
|
<li><a rel="nofollow" href="/login">登录</a><em>|</em></li>
|
||||||
|
<li><a rel="nofollow" href="/reg">注册</a></li>
|
||||||
|
<li class="headed"><em class="icon shooping"></em><a target="black" rel="nofollow" href="/cart">购物车</a><i>(0)</i></li>
|
||||||
|
</div>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<!--头部右边end-->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--头部end-->
|
||||||
|
<!--导航-->
|
||||||
|
<div class="nav">
|
||||||
|
<div class="cmain">
|
||||||
|
<!--导航的左边-->
|
||||||
|
<ul class="nav-ul fl">
|
||||||
|
<li><a href="/index">首页</a> </li>
|
||||||
|
<li class=""><a href="/brand">品牌文化</a> </li>
|
||||||
|
<li><a style="font-family:arial" href="/lists">Darry Ring 爱的礼物</a>
|
||||||
|
<div class="nav-div" style="display: none;">
|
||||||
|
<div class="navdiv_top">
|
||||||
|
<div class="navdiv-right">
|
||||||
|
<p> <a href="/lists"> 查看所有款</a></p>
|
||||||
|
<p> <a href="/dr_series/12_22.html">Forever系列</a></p>
|
||||||
|
<p> <a href="/dr_series/11_20.html">My Heart系列</a></p>
|
||||||
|
<p> <a href="/dr_series/16_30.html">True Love系列</a></p>
|
||||||
|
<p> <a href="/dr_series/15_28.html">I Swear系列</a></p>
|
||||||
|
<p> <a href="/dr_series/13_24.html">Just you系列</a></p>
|
||||||
|
</div>
|
||||||
|
<div class="navdiv-left">
|
||||||
|
<h3> NEW</h3>
|
||||||
|
<a href="/detail"> <img width="138" height="97" src="../images/03wj.jpg" /></a>
|
||||||
|
<div class="more_cp">
|
||||||
|
<a href="/detail">> 了解该系列产品</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="navdiv_bottom"></div>
|
||||||
|
</div> </li>
|
||||||
|
<li><a href="/question">常见问题</a></li>
|
||||||
|
</ul>
|
||||||
|
<!--导航的右边-->
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--导航end-->
|
||||||
|
<script type="text/javascript">
|
||||||
|
function logout() {
|
||||||
|
if (window.confirm('确定退出吗?')) {
|
||||||
|
|
||||||
|
$.get("/nAPI/QuitExit.ashx", function (data) {
|
||||||
|
window.location.href = "/";
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<!--钻戒页面中间-->
|
||||||
|
<div class="cort">
|
||||||
|
<div class="cmain sp_cort fix">
|
||||||
|
<!--背景图-->
|
||||||
|
<div class="zj_bk">
|
||||||
|
<div class="zbk_top spalid">
|
||||||
|
<span>您当前的位置:</span>
|
||||||
|
<span id="website_SiteMapPath1"><a href="#website_SiteMapPath1_SkipLink"></a><span> <a target="_blank" href="/index">Darry Ring</a> </span><span> <em>></em> </span><span> <span>求婚钻戒</span> </span><a id="website_SiteMapPath1_SkipLink"></a></span>
|
||||||
|
</div>
|
||||||
|
<!--banner中间内容-->
|
||||||
|
<div class="zbk_center">
|
||||||
|
<!--banner左边-->
|
||||||
|
<div class="zbkc-left">
|
||||||
|
<h3> 求婚钻戒领导品牌</h3>
|
||||||
|
<h2> 男士一生仅能定制一枚</h2>
|
||||||
|
<h4> 寓意:一生·唯一·真爱</h4>
|
||||||
|
<div class="button">
|
||||||
|
<div id="dzck" class="bt1">
|
||||||
|
<a target="_blank" href="javascript:void(0)">购买流程说明</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--banner右边的背景图-->
|
||||||
|
<div class="zbkc-right">
|
||||||
|
<img width="458" height="260" alt="求婚钻戒" src="../images/True-Love-_ring.jpg" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--背景图end-->
|
||||||
|
<!--流程图-->
|
||||||
|
<div class="the_lct">
|
||||||
|
<img src="../images/lct.png" />
|
||||||
|
</div>
|
||||||
|
<!--流程图end-->
|
||||||
|
<!--小导航-->
|
||||||
|
<div class="allchose_nav">
|
||||||
|
<!--购买选项-->
|
||||||
|
<div class="dr_choose">
|
||||||
|
<!--选项nav-->
|
||||||
|
<div class="drcho_top">
|
||||||
|
<ul class="drchoose_ul">
|
||||||
|
<li class="choose_hover" id="ucser_all"><span>所有</span> </li>
|
||||||
|
<li id="ucser_forever"><span>Forever 系列</span> </li>
|
||||||
|
<li id="ucser_myheart"><span>My Heart 系列</span> </li>
|
||||||
|
<li id="ucser_swear"><span>I Swear系列</span> </li>
|
||||||
|
<li id="ucser_justyou"><span>Just You 系列</span> </li>
|
||||||
|
<li style="background-image:none" id="ucser_truelove"><span>True Love系列</span> </li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="drcho_bto"></div>
|
||||||
|
</div>
|
||||||
|
<!--购买选项end-->
|
||||||
|
<script type="text/javascript" language="javascript">
|
||||||
|
$(function () {
|
||||||
|
$("#ucser_all").click(function () {
|
||||||
|
window.location.href = "/darry_ring";
|
||||||
|
});
|
||||||
|
$("#ucser_forever").click(function () {
|
||||||
|
window.location.href = "/dr_series/12_22.html";
|
||||||
|
});
|
||||||
|
$("#ucser_myheart").click(function () {
|
||||||
|
window.location.href = "/dr_series/11_20.html";
|
||||||
|
});
|
||||||
|
$("#ucser_swear").click(function () {
|
||||||
|
window.location.href = "/dr_series/15_28.html";
|
||||||
|
});
|
||||||
|
$("#ucser_justyou").click(function () {
|
||||||
|
window.location.href = "/dr_series/13_24.html";
|
||||||
|
});
|
||||||
|
$("#ucser_truelove").click(function () {
|
||||||
|
window.location.href = "/dr_series/16_30.html";
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<!--参数选项-->
|
||||||
|
<div class="select_choose">
|
||||||
|
<div class="thefirst_it">
|
||||||
|
<div class="search2 search_other fr">
|
||||||
|
<input type="text" placeholder="产品名称/关键字" class="txt2" id="txtTitle" name="txtTitle" />
|
||||||
|
<div id="prosearch" class="icon toser2"></div>
|
||||||
|
</div>
|
||||||
|
<div class="fl">
|
||||||
|
<span>价格:</span>
|
||||||
|
<select id="drpListPrice" name="drpListPrice"> <option value="-1" selected="selected">不限</option> <option value="1">5000以下</option> <option value="2">5000-10000</option> <option value="3">10000-20000</option> <option value="4">20000以上</option> </select>
|
||||||
|
<span>钻石:</span>
|
||||||
|
<select id="drplistzct" name="drplistzct"> <option value="-1" selected="selected">不限</option> <option value="1">10分以下</option> <option value="2">10分-30分</option> <option value="3">30分-50分</option> <option value="4">50分-1克拉</option> <option value="5">1克拉以上</option> </select>
|
||||||
|
<span>材质:</span>
|
||||||
|
<select id="drpListCZ" name="drpListCZ"> <option value="-1" selected="selected">不限</option> <option value="1">PT950</option> <option value="2">18K白金</option> <option value="3">18K黄金</option> <option value="4">18K玫瑰金</option> </select>
|
||||||
|
</div>
|
||||||
|
<div style="display:none" id="btncz" class="choose_cz fl">
|
||||||
|
<span>重 置</span>
|
||||||
|
</div>
|
||||||
|
<div class="choose_serach fl" style="display:none">
|
||||||
|
<a target="_blank" href="/diydr/"><span>高级搜索</span></a>
|
||||||
|
</div>
|
||||||
|
<span style="display:none" id="spanclick"></span>
|
||||||
|
<div style="display:none" class="choose-ks fr">
|
||||||
|
<span id="xp"><i>新品</i> <em></em></span>
|
||||||
|
<span id="xl"> <i>销量</i> <em></em></span>
|
||||||
|
<span id="jg"><i>价格</i> <em></em></span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="thesec_it">
|
||||||
|
<div class="thesec_word-left fl">
|
||||||
|
<span>排序:</span>
|
||||||
|
<b> <i id="i_xl">按销量</i> <i id="i_jg">按价格</i> </b>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--参数选项end-->
|
||||||
|
</div>
|
||||||
|
<!--小导航end-->
|
||||||
|
<!--高级搜索-->
|
||||||
|
<!--高级搜索end-->
|
||||||
|
<!--购买的款式-->
|
||||||
|
<div class="cmain">
|
||||||
|
<ul class="buyit">
|
||||||
|
<!--每一个款式-->
|
||||||
|
<li>
|
||||||
|
<div class="by_top">
|
||||||
|
<a target="_blank" href="/darry_ring/78.html"></a>
|
||||||
|
<div class="bything-one">
|
||||||
|
<img width="236px" height="236" alt="DR钻戒 Forever系列 经典款 50分 H色" src="../images/2014090119350717386d7a1e.jpg" />
|
||||||
|
</div>
|
||||||
|
<div class="bything-two">
|
||||||
|
<img width="236px" height="236" src="../images/201409011935072849fe802f.jpg" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="by_center">
|
||||||
|
</div>
|
||||||
|
<div class="by_bottom">
|
||||||
|
<p> <a target="_blank" href="/darry_ring/78.html">DR钻戒 Forever系列 经典款 50分 H色</a></p>
|
||||||
|
<p> <span>¥25,700</span><i>销量:5698</i></p>
|
||||||
|
</div> </li>
|
||||||
|
<!--每一个款式-->
|
||||||
|
<li>
|
||||||
|
<div class="by_top">
|
||||||
|
<a target="_blank" href="/darry_ring/387.html"></a>
|
||||||
|
<div class="bything-one">
|
||||||
|
<img width="236px" height="236" alt="DR钻戒 True Love系列 典雅 40分 F色" src="../images/201412081512070b82d519cb.jpg" />
|
||||||
|
</div>
|
||||||
|
<div class="bything-two">
|
||||||
|
<img width="236px" height="236" src="../images/20141208151207e3fa9cdc9e.jpg" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="by_center">
|
||||||
|
</div>
|
||||||
|
<div class="by_bottom">
|
||||||
|
<p> <a target="_blank" href="/darry_ring/387.html">DR钻戒 True Love系列 典雅 40分 F色</a></p>
|
||||||
|
<p> <span>¥19,150</span><i>销量:2654</i></p>
|
||||||
|
</div> </li>
|
||||||
|
<!--每一个款式-->
|
||||||
|
<li>
|
||||||
|
<div class="by_top">
|
||||||
|
<a target="_blank" href="/darry_ring/379.html"></a>
|
||||||
|
<div class="bything-one" style="opacity: 1;">
|
||||||
|
<img width="236px" height="236" alt="DR钻戒 Forever系列 简奢款 30分 F色" src="../images/201412081516238b52b39cab.jpg" />
|
||||||
|
</div>
|
||||||
|
<div class="bything-two" style="opacity: 0;">
|
||||||
|
<img width="236px" height="236" src="../images/20141208151624bd02fe9e65.jpg" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="by_center">
|
||||||
|
</div>
|
||||||
|
<div class="by_bottom">
|
||||||
|
<p> <a target="_blank" href="/darry_ring/379.html">DR钻戒 Forever系列 简奢款 30分 F色</a></p>
|
||||||
|
<p> <span>¥12,200</span><i>销量:2136</i></p>
|
||||||
|
</div> </li>
|
||||||
|
<!--每一个款式-->
|
||||||
|
<li>
|
||||||
|
<div class="by_top">
|
||||||
|
<a target="_blank" href="/darry_ring/389.html"></a>
|
||||||
|
<div class="bything-one">
|
||||||
|
<img width="236px" height="236" alt="DR钻戒 Marry Me 纯爱 40分 H色" src="../images/201412031648134faa47945e.jpg" />
|
||||||
|
</div>
|
||||||
|
<div class="bything-two">
|
||||||
|
<img width="236px" height="236" src="../images/20141203164814cbaa761ecb.jpg" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="by_center">
|
||||||
|
</div>
|
||||||
|
<div class="by_bottom">
|
||||||
|
<p> <a target="_blank" href="/darry_ring/389.html">DR钻戒 Marry Me 纯爱 40分 H色</a></p>
|
||||||
|
<p> <span>¥13,900</span><i>销量:1986</i></p>
|
||||||
|
</div> </li>
|
||||||
|
<!--每一个款式-->
|
||||||
|
<li>
|
||||||
|
<div class="by_top">
|
||||||
|
<a target="_blank" href="/darry_ring/168.html"></a>
|
||||||
|
<div class="bything-one">
|
||||||
|
<img width="236px" height="236" alt="DR钻戒 My heart系列 奢华款 70分 H色" src="../images/201502031541470f549eecb4.jpg" />
|
||||||
|
</div>
|
||||||
|
<div class="bything-two">
|
||||||
|
<img width="236px" height="236" src="../images/2015020315414939f8806bca.jpg" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="by_center">
|
||||||
|
</div>
|
||||||
|
<div class="by_bottom">
|
||||||
|
<p> <a target="_blank" href="/darry_ring/168.html">DR钻戒 My heart系列 奢华款 70分 H色</a></p>
|
||||||
|
<p> <span>¥38,636</span><i>销量:2708</i></p>
|
||||||
|
</div> </li>
|
||||||
|
<!--每一个款式-->
|
||||||
|
<li>
|
||||||
|
<div class="by_top">
|
||||||
|
<a target="_blank" href="/darry_ring/161.html"></a>
|
||||||
|
<div class="bything-one">
|
||||||
|
<img width="236px" height="236" alt="DR钻戒 Believe系列 典雅 30分 H色" src="../images/2015012911164499edc9d9cc.jpg" />
|
||||||
|
</div>
|
||||||
|
<div class="bything-two">
|
||||||
|
<img width="236px" height="236" src="../images/20150129111645f4a722d817.jpg" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="by_center">
|
||||||
|
</div>
|
||||||
|
<div class="by_bottom">
|
||||||
|
<p> <a target="_blank" href="/darry_ring/161.html">DR钻戒 Believe系列 典雅 30分 H色</a></p>
|
||||||
|
<p> <span>¥10,600</span><i>销量:1967</i></p>
|
||||||
|
</div> </li>
|
||||||
|
<!--每一个款式-->
|
||||||
|
<li>
|
||||||
|
<div class="by_top">
|
||||||
|
<a target="_blank" href="/darry_ring/329.html"></a>
|
||||||
|
<div class="bything-one">
|
||||||
|
<img width="236px" height="236" alt="DR钻戒 My heart系列 简奢款 30分 H色" src="../images/20141208151342d086aedadc.jpg" />
|
||||||
|
</div>
|
||||||
|
<div class="bything-two">
|
||||||
|
<img width="236px" height="236" src="../images/20141208151343c33b1c06ce.jpg" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="by_center">
|
||||||
|
</div>
|
||||||
|
<div class="by_bottom">
|
||||||
|
<p> <a target="_blank" href="/darry_ring/329.html">DR钻戒 My heart系列 简奢款 30分 H色</a></p>
|
||||||
|
<p> <span>¥14,820</span><i>销量:975</i></p>
|
||||||
|
</div> </li>
|
||||||
|
<!--每一个款式-->
|
||||||
|
<li>
|
||||||
|
<div class="by_top">
|
||||||
|
<a target="_blank" href="/darry_ring/383.html"></a>
|
||||||
|
<div class="bything-one">
|
||||||
|
<img width="236px" height="236" alt="DR钻戒 Just you系列 经典款 25分 I-J色" src="../images/20141208151441cc5ac80d54.jpg" />
|
||||||
|
</div>
|
||||||
|
<div class="bything-two">
|
||||||
|
<img width="236px" height="236" src="../images/20141208151441a7c5365eda.jpg" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="by_center">
|
||||||
|
</div>
|
||||||
|
<div class="by_bottom">
|
||||||
|
<p> <a target="_blank" href="/darry_ring/383.html">DR钻戒 Just you系列 经典款 25分 I-J色</a></p>
|
||||||
|
<p> <span>¥5,228</span><i>销量:1263</i></p>
|
||||||
|
</div> </li>
|
||||||
|
<!--每一个款式-->
|
||||||
|
<li>
|
||||||
|
<div class="by_top">
|
||||||
|
<a target="_blank" href="/darry_ring/87.html"></a>
|
||||||
|
<div class="bything-one">
|
||||||
|
<img width="236px" height="236" alt="DR钻戒 Forever系列 经典款 40分 D色" src="../images/201409011932585de1c2f2a9.jpg" />
|
||||||
|
</div>
|
||||||
|
<div class="bything-two">
|
||||||
|
<img width="236px" height="236" src="../images/20140901193258beafcb5eb7.jpg" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="by_center">
|
||||||
|
</div>
|
||||||
|
<div class="by_bottom">
|
||||||
|
<p> <a target="_blank" href="/darry_ring/87.html">DR钻戒 Forever系列 经典款 40分 D色</a></p>
|
||||||
|
<p> <span>¥15,800</span><i>销量:2413</i></p>
|
||||||
|
</div> </li>
|
||||||
|
<!--每一个款式-->
|
||||||
|
<li>
|
||||||
|
<div class="by_top">
|
||||||
|
<a target="_blank" href="/darry_ring/335.html"></a>
|
||||||
|
<div class="bything-one">
|
||||||
|
<img width="236px" height="236" alt="DR钻戒 Just you系列 经典款 20分 I-J色" src="../images/201409031759476e8527cccb.jpg" />
|
||||||
|
</div>
|
||||||
|
<div class="bything-two">
|
||||||
|
<img width="236px" height="236" src="../images/20140903175947fa15145af3.jpg" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="by_center">
|
||||||
|
</div>
|
||||||
|
<div class="by_bottom">
|
||||||
|
<p> <a target="_blank" href="/darry_ring/335.html">DR钻戒 Just you系列 经典款 20分 I-J色</a></p>
|
||||||
|
<p> <span>¥4,699</span><i>销量:1320</i></p>
|
||||||
|
</div> </li>
|
||||||
|
<!--每一个款式-->
|
||||||
|
<li>
|
||||||
|
<div class="by_top">
|
||||||
|
<a target="_blank" href="/darry_ring/150.html"></a>
|
||||||
|
<div class="bything-one">
|
||||||
|
<img width="236px" height="236" alt="DR钻戒 Forever系列 经典款 30分 E色" src="../images/2014090119253914614d2d7b.jpg" />
|
||||||
|
</div>
|
||||||
|
<div class="bything-two">
|
||||||
|
<img width="236px" height="236" src="../images/2014090119253961c1aa6a86.jpg" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="by_center">
|
||||||
|
</div>
|
||||||
|
<div class="by_bottom">
|
||||||
|
<p> <a target="_blank" href="/darry_ring/150.html">DR钻戒 Forever系列 经典款 30分 E色</a></p>
|
||||||
|
<p> <span>¥9,800</span><i>销量:2034</i></p>
|
||||||
|
</div> </li>
|
||||||
|
<!--每一个款式-->
|
||||||
|
<li>
|
||||||
|
<div class="by_top">
|
||||||
|
<a target="_blank" href="/darry_ring/388.html"></a>
|
||||||
|
<div class="bything-one">
|
||||||
|
<img width="236px" height="236" alt="DR钻戒 I Swear系列 奢华款 40分 H色" src="../images/201504251408518eddbc7a98.jpg" />
|
||||||
|
</div>
|
||||||
|
<div class="bything-two">
|
||||||
|
<img width="236px" height="236" src="../images/20150425140852a0a0f1e3e2.jpg" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="by_center">
|
||||||
|
</div>
|
||||||
|
<div class="by_bottom">
|
||||||
|
<p> <a target="_blank" href="/darry_ring/388.html">DR钻戒 I Swear系列 奢华款 40分 H色</a></p>
|
||||||
|
<p> <span>¥20,600</span><i>销量:1064</i></p>
|
||||||
|
</div> </li>
|
||||||
|
<!--每一个款式-->
|
||||||
|
<li>
|
||||||
|
<div class="by_top">
|
||||||
|
<a target="_blank" href="/darry_ring/347.html"></a>
|
||||||
|
<div class="bything-one">
|
||||||
|
<img width="236px" height="236" alt="DR钻戒 True Love系列 简奢款 30分 E色" src="../images/2014091515351160b3d26880.jpg" />
|
||||||
|
</div>
|
||||||
|
<div class="bything-two">
|
||||||
|
<img width="236px" height="236" src="../images/20140901162336bad2605031.jpg" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="by_center">
|
||||||
|
</div>
|
||||||
|
<div class="by_bottom">
|
||||||
|
<p> <a target="_blank" href="/darry_ring/347.html">DR钻戒 True Love系列 简奢款 30分 E色</a></p>
|
||||||
|
<p> <span>¥11,000</span><i>销量:1235</i></p>
|
||||||
|
</div> </li>
|
||||||
|
<!--每一个款式-->
|
||||||
|
<li>
|
||||||
|
<div class="by_top">
|
||||||
|
<a target="_blank" href="/darry_ring/74.html"></a>
|
||||||
|
<div class="bything-one">
|
||||||
|
<img width="236px" height="236" alt="DR钻戒 Princess系列 花影 2分 H色" src="../images/20150203145404c670aa80de.jpg" />
|
||||||
|
</div>
|
||||||
|
<div class="bything-two">
|
||||||
|
<img width="236px" height="236" src="../images/201502031454050d165b3124.jpg" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="by_center">
|
||||||
|
</div>
|
||||||
|
<div class="by_bottom">
|
||||||
|
<p> <a target="_blank" href="/darry_ring/74.html">DR钻戒 Princess系列 花影 2分 H色</a></p>
|
||||||
|
<p> <span>¥4,360</span><i>销量:460</i></p>
|
||||||
|
</div> </li>
|
||||||
|
<!--每一个款式-->
|
||||||
|
<li>
|
||||||
|
<div class="by_top">
|
||||||
|
<a target="_blank" href="/darry_ring/333.html"></a>
|
||||||
|
<div class="bything-one">
|
||||||
|
<img width="236px" height="236" alt="DR钻戒 Forever系列 经典款 100分 J色" src="../images/201409031259093e45b5ecf0.jpg" />
|
||||||
|
</div>
|
||||||
|
<div class="bything-two">
|
||||||
|
<img width="236px" height="236" src="../images/2014090312590972b221c6ce.jpg" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="by_center">
|
||||||
|
</div>
|
||||||
|
<div class="by_bottom">
|
||||||
|
<p> <a target="_blank" href="/darry_ring/333.html">DR钻戒 Forever系列 经典款 100分 J色</a></p>
|
||||||
|
<p> <span>¥64,700</span><i>销量:1387</i></p>
|
||||||
|
</div> </li>
|
||||||
|
<!--每一个款式-->
|
||||||
|
<li>
|
||||||
|
<div class="by_top">
|
||||||
|
<a target="_blank" href="/darry_ring/170.html"></a>
|
||||||
|
<div class="bything-one">
|
||||||
|
<img width="236px" height="236" alt="DR钻戒 My heart系列 简奢款 20分 H色" src="../images/20141208151356816302d93c.jpg" />
|
||||||
|
</div>
|
||||||
|
<div class="bything-two">
|
||||||
|
<img width="236px" height="236" src="../images/20141208151356af0991c81c.jpg" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="by_center">
|
||||||
|
</div>
|
||||||
|
<div class="by_bottom">
|
||||||
|
<p> <a target="_blank" href="/darry_ring/170.html">DR钻戒 My heart系列 简奢款 20分 H色</a></p>
|
||||||
|
<p> <span>¥8,520</span><i>销量:1484</i></p>
|
||||||
|
</div> </li>
|
||||||
|
</ul>
|
||||||
|
<!--购买的款式end-->
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="paging_all" id="pageing_pagingDiv">
|
||||||
|
<div class="paging_all-cort">
|
||||||
|
<ul class="paging fl">
|
||||||
|
<li class="pli pag_gray"><<上一页</li>
|
||||||
|
<li class="pag_gray">1</li>
|
||||||
|
<li>2</li>
|
||||||
|
<li>3</li>
|
||||||
|
<li>4</li>
|
||||||
|
<li>5</li>
|
||||||
|
<li class="pli2">下一页>></li>
|
||||||
|
</ul>
|
||||||
|
<p class="pag_p fl"> <span>共5页,到第</span> <input type="text" class="pag_txt" id="pageing_pag_txt" name="pageing$pag_txt" />页 <input type="button" class="pag_bt" onClick="__CurrentPaging.PageIndexChaned($('#pageing_pag_txt').val());$('#pageing_pag_txt').val('');" value="确定" /> </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--分页end-->
|
||||||
|
<!--分页end-->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--底部-->
|
||||||
|
<div class="footer">
|
||||||
|
<!--错误-->
|
||||||
|
<!--提示-->
|
||||||
|
<div class="loverit_word2">
|
||||||
|
Darry Ring严格规定男士凭身份证一生仅能定制一枚,象征男人一生真爱的最高承诺。输入身份证号码即可查询购买记录。
|
||||||
|
</div>
|
||||||
|
<!--提示end-->
|
||||||
|
<div class="loverit_wrong2">
|
||||||
|
<p>信息填写不正确,请重新输入。</p>
|
||||||
|
</div>
|
||||||
|
<!--错误end-->
|
||||||
|
|
||||||
|
<div style="clear:both"></div>
|
||||||
|
<div class="cmain">
|
||||||
|
<ul class="Service_ul">
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p>权威认证</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_2">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p> 一钻双证</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_3">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p> 终生保养</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_4">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p> 以小换大</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_5">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p> 15天退换</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_6">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p> 全国免运费</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_7">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p> 全程保险</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<div class="tw-foot">
|
||||||
|
<div class="auto" id="Copyright">
|
||||||
|
<p> Copyright © 2017 winner winner,chicken dinner All Rights Reserved. 粤ICP备11012085号-2.ICP经营许可证粤B2-20140279 </p>
|
||||||
|
<p> 中国互联网违法信息举报中心 | 中国公安网络110报警服务 | 本网站提供所售商品的正式发票 </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="model" id="model">
|
||||||
|
<div class="Prompt" id="Prompt">
|
||||||
|
</div>
|
||||||
|
<span id="log_uid" style="display:none"></span>
|
||||||
|
<span id="log_uname" style="display:none"></span>
|
||||||
|
<span id="log_orderid" style="display:none"></span>
|
||||||
|
<span id="log_price" style="display:none"></span>
|
||||||
|
</div>
|
||||||
|
<script src="http://wpa.b.qq.com/cgi/wpa.php" charset="utf-8" type="text/javascript"></script>
|
||||||
|
<!--客服(2014年8月29日)-->
|
||||||
|
<div style="display:none" class="Ffloat_kf">
|
||||||
|
<div class="fkf_top">
|
||||||
|
<div style="cursor: pointer; display: none;" id="bridgehead">
|
||||||
|
</div>
|
||||||
|
<div id="BizQQWPA"></div>
|
||||||
|
<div onClick="showModel(modelsever);" style="cursor: pointer;" class="qq_hover" id="qqTalk_head">
|
||||||
|
</div>
|
||||||
|
<div id="BizQQWPAB" class="sh">
|
||||||
|
</div>
|
||||||
|
<div id="bdBridge">
|
||||||
|
<a href="javascript:NTKF.im_openInPageChat()"> <img width="75" height="37" src="../images/zx.jpg" /></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="fkf_bottom">
|
||||||
|
<img width="92" height="82" alt="Darry Ring 官方微信" src="../images/to_erwei.jpg" />
|
||||||
|
<a href="#"> <img width="92" height="26" src="../images/db.jpg" /></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--新版右边客服start-->
|
||||||
|
<!--右边漂浮悬挂大的-->
|
||||||
|
<div class="float_big">
|
||||||
|
<div class="floatbig_hide fr"></div>
|
||||||
|
<div class="floatbig_center">
|
||||||
|
<!--客服-->
|
||||||
|
<div onClick="javascript:void(0)" id="Bearonline" class="floatbig_center-kf"></div>
|
||||||
|
<!--客服end-->
|
||||||
|
<!--定制咨询-->
|
||||||
|
<div id="dzzxonline" class="floatbig_center-zx">
|
||||||
|
<a href="javascript:showModel(modelsever);"></a>
|
||||||
|
</div>
|
||||||
|
<!--定制咨询end-->
|
||||||
|
<img src="../images/ew.jpg" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--右边漂浮悬挂大的end-->
|
||||||
|
<!--右边漂浮悬挂小的-->
|
||||||
|
<div class="float_small">
|
||||||
|
<div class="floatbig_show fr"></div>
|
||||||
|
<div class="floatbig_center">
|
||||||
|
<!--客服-->
|
||||||
|
<div onClick="javascript:void(0)" class="floatsmall_center-kf fr"></div>
|
||||||
|
<!--客服end-->
|
||||||
|
<!--定制咨询-->
|
||||||
|
<div class="floatsmall_center-zx fr">
|
||||||
|
<a href="javascript:showModel(modelsever);"></a>
|
||||||
|
</div>
|
||||||
|
<!--定制咨询end-->
|
||||||
|
<!--二维码-->
|
||||||
|
<div class="floatsmall_erwei fr">
|
||||||
|
<a href="#"></a>
|
||||||
|
</div>
|
||||||
|
<!--二维码end-->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--右边漂浮悬挂小的end-->
|
||||||
|
<!--返回顶部-->
|
||||||
|
<div class="comeback" style="display: none;"></div>
|
||||||
|
<!--返回顶部end-->
|
||||||
|
<!--新版右边客服end-->
|
||||||
|
<div style="position: fixed; cursor: pointer; right: 6px; top: 289px; padding-bottom: 152px; z-index: 9999; width: 19px; height: 103px; display: none;" onClick="openserver();" id="openbnt">
|
||||||
|
<img width="19" height="103" src="../images/server_03.jpg" />
|
||||||
|
</div>
|
||||||
|
<div class="news_tc">
|
||||||
|
<div class="newtc_left">
|
||||||
|
</div>
|
||||||
|
<div class="newtc_right">
|
||||||
|
<span style="cursor: pointer" class="sszs">稍后再说</span>
|
||||||
|
<span class="xzzx"><a onClick="showxiaon()" style="cursor: pointer" id="chatnow"> 现在咨询</a></span>
|
||||||
|
<div style="cursor: pointer" class="tocclose">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="mask" id="masks">
|
||||||
|
</div>
|
||||||
|
<div style="display:none;" class="modelsever" id="modelsever">
|
||||||
|
<div class="cs_top">
|
||||||
|
<div class="cs_topcenter">
|
||||||
|
<div style="width:300px; height:40px; line-height:40px; float:left; display:inline-block; ">
|
||||||
|
顾客常见疑问
|
||||||
|
</div>
|
||||||
|
<div style="width:385px; height:20px; float:left; text-align:right; padding-top:20px;">
|
||||||
|
<img width="55" height="9" style="cursor: pointer;" onClick="CloseMaskser()" src="../images/popup_window_btn_close.gif" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="cs_content clear">
|
||||||
|
<div id="box1" class="box1">
|
||||||
|
<div onClick="contenttxt(1,1)" id="content_title_11" class="content_title">
|
||||||
|
<span style="margin-top:8px;">Q:Darry Ring 是否有实体店?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_1" class="content_txt">
|
||||||
|
<span style="margin-top:1px;">A:DR公司总部在香港,目前内地深圳市、北京市、重庆市、广州市、上海市、武汉市、南京市、长沙市设有实体店,支持到店订购,也支持全国在线官网订购。同时目前其他一线城市公司已在考察选址阶段,将陆续开设店面。</span>
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(1,2)" id="content_title_12" class="content_title">
|
||||||
|
<span style="margin-top:8px;">Q:实体店具体位置?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_2" class="content_txt">
|
||||||
|
<span style="margin-top:1px;">A:深圳实体店地址:深圳南山区世界之窗旁欧陆小镇4号楼Darry Ring (地铁罗宝线世界之窗I出口)深圳店联系方式:0755-86621782。<p></p> 北京实体店地址:北京东二环朝阳门桥银河SOHO中心B座负一层2-109 (朝阳门地铁G出口) 北京店联系方式:010-59576758。<p></p> 上海实体店地址:上海长宁区淮海西路570号红坊创意园区G-108栋(近虹桥路) 上海店联系方式:021-60934520。<p></p> 广州实体店地址:广州市天河区天河北路233号中信广场商场136单元 广州店联系方式:020-38836315。<p></p> 重庆实体店地址:重庆市渝中区解放碑步行街民族路188号环球金融中心(WFC)LG-B02A 重庆店联系方式:023-63710835。<p></p> 武汉实体店地址:武汉市洪山区光谷意大利风情街5号楼一层51021号 武汉店联系方式:027-87688895。<p></p> 南京实体店地址:南京市长江路288号1912街区17号楼一层 南京店联系方式:025-83613520。<p></p> 长沙实体店地址:长沙市开福区中山路589号万达百货商场2楼 长沙店联系方式:0731-83878575。<p></p> 全国400客服热线:400 01 13520。</span>
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(1,3)" id="content_title_13" class="content_title">
|
||||||
|
<span style="margin-top:8px;">Q:到店订购和官网订购的价格一致吗?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_3" class="content_txt">
|
||||||
|
<span style="margin-top:1px;">A:DR的所有商品,到店订购和官网订购的时间周期,价格,质量及售后服务均一致。</span>
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(1,4)" id="content_title_14" class="content_title">
|
||||||
|
<span style="margin-top:8px;">Q:价格是否有折扣优惠?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_4" class="content_txt">
|
||||||
|
<span style="margin-top:1px;">A:DR的品牌寓意为一生唯一真爱,大多是用作见证彼此求婚或结婚这一神圣时刻,所以所有商品都是常年任何节假日没有折扣活动,就像彼此一生唯一真爱的承诺及永恒的爱情,永不打折。</span>
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(1,5)" id="content_title_15" class="content_title">
|
||||||
|
<span style="margin-top:8px;">Q:为什么在官网上输入姓名身份证号后看不到款式?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_5" class="content_txt">
|
||||||
|
<span style="margin-top:1px;">A:www.darryring.com 官网首页点击—求婚钻戒,进入页面后不需要填写任何信息,移动鼠标到最下方,就可以看到Darry Ring女戒的所有款式。</span>
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(1,6)" id="content_title_16" class="content_title">
|
||||||
|
<span style="margin-top:8px;">Q:到实体店是否可以立刻拿到戒指?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_6" class="content_txt">
|
||||||
|
<span style="margin-top:1px;">A:您好,DR的所有商品都是需要根据您选择的款式、手寸大小及刻字信息来定制。实体店仅提供款式体验及预订,与官网购买的定制时间是一致的,可于15-20个工作日内送到或自取。</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="box2" class="box2">
|
||||||
|
<div onClick="contenttxt(2,1)" id="content_title_21" class="content_title"></div>
|
||||||
|
<div id="content_title2_1" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(2,2)" id="content_title_22" class="content_title"></div>
|
||||||
|
<div id="content_title2_2" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(2,3)" id="content_title_23" class="content_title"></div>
|
||||||
|
<div id="content_title2_3" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<!--<div class="content_title" onclick="contenttxt(2,4)">4、Q:LES可以购买吗?</div>
|
||||||
|
<div class="content_txt" id="content_title2_4">A:真爱不分性别,只要确定了对方就是您这辈子的真爱,同时您愿意为此绑定自己的身份证信息,那
|
||||||
|
么DR不会限制您追求真爱的自由,您同样是可以购买到Darry Ring的真爱女戒。
|
||||||
|
|
||||||
|
</div>-->
|
||||||
|
<div onClick="contenttxt(2,4)" id="content_title_24" class="content_title"></div>
|
||||||
|
<div id="content_title2_4" class="content_txt">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="box3" class="box3">
|
||||||
|
<div onClick="contenttxt(3,1)" id="content_title_31" class="content_title"></div>
|
||||||
|
<div id="content_title3_1" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(3,2)" id="content_title_32" class="content_title"></div>
|
||||||
|
<div id="content_title3_2" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(3,3)" id="content_title_33" class="content_title"></div>
|
||||||
|
<div id="content_title3_3" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(3,4)" id="content_title_34" class="content_title"></div>
|
||||||
|
<div id="content_title3_4" class="content_txt"></div>
|
||||||
|
</div>
|
||||||
|
<div id="box4" class="box4">
|
||||||
|
<div onClick="contenttxt(4,1)" id="content_title_41" class="content_title"></div>
|
||||||
|
<div id="content_title4_1" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(4,2)" id="content_title_42" class="content_title"></div>
|
||||||
|
<div id="content_title4_2" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(4,3)" id="content_title_43" class="content_title"></div>
|
||||||
|
<div id="content_title4_3" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(4,4)" id="content_title_44" class="content_title"></div>
|
||||||
|
<div id="content_title4_4" class="content_txt"></div>
|
||||||
|
</div>
|
||||||
|
<div id="box5" class="box5">
|
||||||
|
<div onClick="contenttxt(5,1)" id="content_title_51" class="content_title"></div>
|
||||||
|
<div id="content_title5_1" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(5,2)" id="content_title_52" class="content_title"></div>
|
||||||
|
<div id="content_title5_2" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(5,3)" id="content_title_53" class="content_title"></div>
|
||||||
|
<div id="content_title5_3" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(5,4)" id="content_title_54" class="content_title"></div>
|
||||||
|
<div id="content_title5_4" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(5,5)" id="content_title_55" class="content_title"></div>
|
||||||
|
<div id="content_title5_5" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(5,6)" id="content_title_56" class="content_title"></div>
|
||||||
|
<div id="content_title5_6" class="content_txt">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="box6" class="box6">
|
||||||
|
<div onClick="contenttxt(6,1)" id="content_title_61" class="content_title"></div>
|
||||||
|
<div id="content_title6_1" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(6,2)" id="content_title_62" class="content_title"></div>
|
||||||
|
<div id="content_title6_2" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(6,3)" id="content_title_63" class="content_title"></div>
|
||||||
|
<div id="content_title6_3" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(6,4)" id="content_title_64" class="content_title"></div>
|
||||||
|
<div id="content_title6_4" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(6,5)" id="content_title_65" class="content_title"></div>
|
||||||
|
<div id="content_title6_5" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(6,6)" id="content_title_66" class="content_title"></div>
|
||||||
|
<div id="content_title6_6" class="content_txt">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="box7" class="box7">
|
||||||
|
<div onClick="contenttxt(7,1)" id="content_title_71" class="content_title"></div>
|
||||||
|
<div id="content_title7_1" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(7,2)" id="content_title_72" class="content_title"></div>
|
||||||
|
<div id="content_title7_2" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(7,3)" id="content_title_73" class="content_title"></div>
|
||||||
|
<div id="content_title7_3" class="content_txt">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript">
|
||||||
|
function showbox(id) {
|
||||||
|
getQeestion(id);
|
||||||
|
for (var i = 1; i <= 8; i++) {
|
||||||
|
if (i == id) {
|
||||||
|
showdiv(id);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
hidediv(i);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function contenttxt(id, sid) {
|
||||||
|
for (var i = 1; i <= 7; i++) {
|
||||||
|
if (i == id) {
|
||||||
|
showtxt(id, sid);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
hidetxt(i, sid);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
function showtxt(id, sid) {
|
||||||
|
var objtitle = $("#content_title" + id + "_" + sid);
|
||||||
|
|
||||||
|
if (objtitle.css("display") == "none") {
|
||||||
|
objtitle.show("fast");
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
|
||||||
|
hidetxt(id, sid);
|
||||||
|
}
|
||||||
|
//$("#"+id).show("fast");
|
||||||
|
}
|
||||||
|
function hidetxt(id, sid) {
|
||||||
|
var objtitle = $("#content_title" + id + "_" + sid);
|
||||||
|
objtitle.hide("fast");
|
||||||
|
}
|
||||||
|
function hidediv(id) {
|
||||||
|
$("#box" + id).hide("fast");
|
||||||
|
|
||||||
|
$("#li" + id).css({ "font-size": "14px", "color": "#7d7d7d" });
|
||||||
|
}
|
||||||
|
|
||||||
|
function showdiv(id) {
|
||||||
|
if ($("#box" + id).css("display") == "none") {
|
||||||
|
$("#box" + id).show("fast");
|
||||||
|
$("#li" + id).css({ "font-size": "18px", "color": "#000000" });
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
</script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
function showMask() {
|
||||||
|
$("#masks").css("height", $(document).height());
|
||||||
|
$("#masks").css("width", $(document).width());
|
||||||
|
$("#masks").fadeIn();
|
||||||
|
}
|
||||||
|
function showModel(divName) {
|
||||||
|
showMask();
|
||||||
|
/* var top = ($(window).height() - $(divName).height()) / 5;
|
||||||
|
var left = ($(window).width() - $(divName).width()) / 2;
|
||||||
|
var scrollTop = $(document).scrollTop();
|
||||||
|
var scrollLeft = $(document).scrollLeft();*/
|
||||||
|
$(divName).fadeIn();
|
||||||
|
}
|
||||||
|
function CloseMaskser() {
|
||||||
|
|
||||||
|
$("#modelsever").fadeOut("slow");
|
||||||
|
$("#masks").fadeOut("slow");
|
||||||
|
$("#mask").fadeOut("slow");
|
||||||
|
}
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
@ -0,0 +1,147 @@
|
||||||
|
<html class="hb-loaded">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<title>会员登录</title>
|
||||||
|
<link href="../css/style.css" type="text/css" rel="stylesheet" />
|
||||||
|
<script src="../js/jquery.js" type="text/javascript"></script>
|
||||||
|
<script src="../js/common.js" type="text/javascript"></script>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<div class="wrap">
|
||||||
|
<!-- start of 头部导航-->
|
||||||
|
<div class="head_top">
|
||||||
|
<div class="head clearfix">
|
||||||
|
<!--头部左边-->
|
||||||
|
<div class="topLeft left">
|
||||||
|
<a href="/index" title="Darry Ring"> <img width="186" height="42" src="../images/logo_01.png " /> </a>
|
||||||
|
<span>求婚钻戒领导品牌</span>
|
||||||
|
</div>
|
||||||
|
<!--头部左边end-->
|
||||||
|
<!--头部右边-->
|
||||||
|
<ul class="topRight right">
|
||||||
|
<li>国际权威认证</li>
|
||||||
|
<li class="tr_2">15天无理由退换</li>
|
||||||
|
<li class="tr_3">终身保养</li>
|
||||||
|
</ul>
|
||||||
|
<!--头部左边end-->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--end of 头部导航-->
|
||||||
|
<!-- starto of container -->
|
||||||
|
<div class="container">
|
||||||
|
<!--中间内容-->
|
||||||
|
<div class="cmain ddd">
|
||||||
|
<!--内容右边-->
|
||||||
|
<div class="cort-right right">
|
||||||
|
<div class="r_bg"></div>
|
||||||
|
<!--登陆框内-->
|
||||||
|
<form method="post" action="/login" id="loginform">
|
||||||
|
<div class="cr_border">
|
||||||
|
<h3></h3>
|
||||||
|
<!--手机-->
|
||||||
|
<div id="cssName" class="the_input ">
|
||||||
|
<span class="member"></span>
|
||||||
|
<input type="text" placeholder="请输入邮箱/手机号码" id="txtName" class="al_Input dr_email" value="" name="data[email]" />
|
||||||
|
<i id="tname"></i>
|
||||||
|
</div>
|
||||||
|
<!--手机end-->
|
||||||
|
<!--密码-->
|
||||||
|
<div style="margin-top:15px;" class="the_input" id="cssPwd">
|
||||||
|
<span class="password"></span>
|
||||||
|
<input type="password" placeholder="请输入密码" id="txtPwd" class="al_Input" value="" name="data[password]" />
|
||||||
|
<i id="pwdd"></i>
|
||||||
|
</div>
|
||||||
|
<!--验证码-->
|
||||||
|
<!--验证码end-->
|
||||||
|
<!--报错信息-->
|
||||||
|
<div class="ts_wrong" id="showWrong" style="display: none">
|
||||||
|
<span id="wrong"> <span id="Label1">Label</span></span>
|
||||||
|
</div>
|
||||||
|
<!--报错信息end-->
|
||||||
|
<!--其他选项-->
|
||||||
|
<div class="other_input">
|
||||||
|
<div class="left">
|
||||||
|
<input type="checkbox" name="remember" id="check" value="1" />
|
||||||
|
<label for="check">记住密码</label>
|
||||||
|
</div>
|
||||||
|
<div class="right">
|
||||||
|
<a href="/forget" class="forget">忘记密码</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--其他选项end-->
|
||||||
|
<!--按钮-->
|
||||||
|
<div class="other_input">
|
||||||
|
<div class="bt1 clearfix" id="login">
|
||||||
|
<span class="left">注册</span>
|
||||||
|
<span class="right focus">登录</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--按钮end-->
|
||||||
|
<!--其他合作-->
|
||||||
|
<div class="other_hz">
|
||||||
|
<p> <span>更多合作网站帐号登录:</span>
|
||||||
|
<a class="oth_qq"></a>
|
||||||
|
<a class="oth_wb"></a>
|
||||||
|
<a class="oth_wx"></a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<!--其他合作end-->
|
||||||
|
</div>
|
||||||
|
<input type="hidden" value="/index" name="forward" />
|
||||||
|
</form>
|
||||||
|
<!--登陆框内end-->
|
||||||
|
</div>
|
||||||
|
<!--内容右边end-->
|
||||||
|
</div>
|
||||||
|
<!--中间内容end-->
|
||||||
|
</div>
|
||||||
|
<!-- end of container -->
|
||||||
|
<!--底部end-->
|
||||||
|
<div class="cmain bc_yz">
|
||||||
|
<div class="db_cort">
|
||||||
|
<p> Copyright © 2017 winner winner,chickdinner !!团队 All Rights Reserved. 闽ICP备11012085号-2.ICP经营许可证闽B2-20140279 </p>
|
||||||
|
<p> 中国互联网违法信息举报中心 | 中国公安网络110报警服务 | 本网站提供所售商品的正式发票 </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
$(document).ready(function() {
|
||||||
|
$('#login span').eq(0).click(function() {
|
||||||
|
location.href = "/reg"
|
||||||
|
});
|
||||||
|
|
||||||
|
$('#login span').eq(1).click(function() {
|
||||||
|
$('.ts_wrong').remove();
|
||||||
|
$('.the_input').removeClass('error');
|
||||||
|
if($('#txtName').val() == '') {
|
||||||
|
var notice = '<div class="ts_wrong"><span id="wrong">请输入邮箱/手机号码!</span></div>';
|
||||||
|
$('#txtName').parent().after(notice);
|
||||||
|
$('#txtName').parent().addClass('error');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if($('#txtPwd').val() == '') {
|
||||||
|
var notice = '<div class="ts_wrong"><span id="wrong">请输入密码!</span></div>';
|
||||||
|
$('#txtPwd').parent().after(notice);
|
||||||
|
$('#txtPwd').parent().addClass('error');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
$('form').submit();
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
$(document).keyup(function(event) {
|
||||||
|
if(event.keyCode == 13) {
|
||||||
|
$('#login span').eq(1).click();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
||||||
|
|
@ -0,0 +1,867 @@
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" class="hb-loaded">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<title>个人中心 - 地址管理</title>
|
||||||
|
<link href="../css/same.css?v=1.3.7.2" type="text/css" rel="stylesheet" />
|
||||||
|
<link href="../css/same.css?v=1.3.7.2" type="text/css" rel="stylesheet" />
|
||||||
|
<link href="../css/member.css?v=1.3.6.0" type="text/css" rel="stylesheet" />
|
||||||
|
<script src="../js/jquery.js" type="text/javascript"></script>
|
||||||
|
<script src="../js/index.js?virsion=1.3.7.2" type="text/javascript"></script>
|
||||||
|
<script src="../js/member.js" type="text/javascript"></script>
|
||||||
|
<script>
|
||||||
|
$(function() {
|
||||||
|
$("#street").blur(function() {
|
||||||
|
var street = $("#street").val();
|
||||||
|
if (street == "") {
|
||||||
|
$("#strwrong").text("请输入详细地址!");
|
||||||
|
$("#streeid").show();
|
||||||
|
$("#streey").hide();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (street.length > 500) {
|
||||||
|
$("#strwrong").text("输入内容过长!");
|
||||||
|
$("#streeid").show();
|
||||||
|
$("#streey").hide();
|
||||||
|
return false;
|
||||||
|
} else {
|
||||||
|
$("#streeid").hide();
|
||||||
|
$("#streey").show();
|
||||||
|
|
||||||
|
}
|
||||||
|
});
|
||||||
|
$("#postcode").blur(function() {
|
||||||
|
var post = $("#postcode").val();
|
||||||
|
if (post == "") {
|
||||||
|
$("#postwrong").text("请邮政编码!");
|
||||||
|
$("#postid").show();
|
||||||
|
return false;
|
||||||
|
} else {
|
||||||
|
$("#postid").hide();
|
||||||
|
$("#posty").show();
|
||||||
|
|
||||||
|
}
|
||||||
|
});
|
||||||
|
$("#postcode").blur(function() {
|
||||||
|
|
||||||
|
});
|
||||||
|
$("#telephone").blur(function() {
|
||||||
|
|
||||||
|
var tel = $("#telephone").val();
|
||||||
|
if (tel == "") {
|
||||||
|
$("#telwrong").text("请输入手机号或者固定电话!");
|
||||||
|
$("#telid").show();
|
||||||
|
return false;
|
||||||
|
} else {
|
||||||
|
$("#telid").hide();
|
||||||
|
if (!checkphone(tel)) {
|
||||||
|
$("#telwrong").text("座机号格式不正确!");
|
||||||
|
$("#telid").show();
|
||||||
|
|
||||||
|
return false;
|
||||||
|
} else {
|
||||||
|
$("#telid").hide();
|
||||||
|
$("#tely").show();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
});
|
||||||
|
$("#mobile").blur(function() {});
|
||||||
|
//保存地址按钮事件
|
||||||
|
$(".add_adress-save").click(function() {
|
||||||
|
|
||||||
|
var name = $("#addressName").val();
|
||||||
|
var pro = $("#province option:selected").text();
|
||||||
|
var city = $("#city option:selected").text();
|
||||||
|
var dis = $("#district option:selected").text();
|
||||||
|
var street = $("#street").val();
|
||||||
|
var post = $("#postcode").val();
|
||||||
|
var mobile = $("#mobile").val();
|
||||||
|
var tel = $("#telephone").val();
|
||||||
|
if (dis == "请选择区县") {
|
||||||
|
$("#addwrong").text("请选择区县!");
|
||||||
|
$("#addy").hide();
|
||||||
|
$("#addid").show();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (name == "") {
|
||||||
|
$("#shrwrong").text("请输入姓名!");
|
||||||
|
$("#shrid").show();
|
||||||
|
return false;
|
||||||
|
} else {
|
||||||
|
$("#shry").show();
|
||||||
|
|
||||||
|
}
|
||||||
|
if (street == "") {
|
||||||
|
$("#strwrong").text("请输入详细地址!");
|
||||||
|
$("#streeid").show();
|
||||||
|
return false;
|
||||||
|
} else {
|
||||||
|
$("#streey").show();
|
||||||
|
|
||||||
|
}
|
||||||
|
if (post == "") {
|
||||||
|
$("#postwrong").text("请输入邮编!");
|
||||||
|
$("#postid").show();
|
||||||
|
return false;
|
||||||
|
} else {
|
||||||
|
$("#posty").show();
|
||||||
|
|
||||||
|
}
|
||||||
|
if (mobile == "" || tel == "") {
|
||||||
|
$("#telwrong").text("请输入手机号或者固定电话!");
|
||||||
|
$("#telid").show();
|
||||||
|
return false;
|
||||||
|
} else {
|
||||||
|
$("#tely").show();
|
||||||
|
}
|
||||||
|
if (mobile != "") {
|
||||||
|
if (!checkTel(mobile)) {
|
||||||
|
$("#telwrong").text("手机号格式不正确!");
|
||||||
|
$("#telid").show();
|
||||||
|
$("#tely").hide();
|
||||||
|
return false;
|
||||||
|
} else {
|
||||||
|
$("#telid").hide();
|
||||||
|
$("#tely").show();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var data = getData();
|
||||||
|
var action = "save";
|
||||||
|
if (isNaN(data.ID)) {
|
||||||
|
action = "add";
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
function getData() {
|
||||||
|
var id = $(".shop_adress-add").attr("id");
|
||||||
|
id = id ? id.replace("address_", "") : undefined;
|
||||||
|
return {
|
||||||
|
"ID": id,
|
||||||
|
"name": $("#addressName").val(),
|
||||||
|
"province": $("#province option:selected").text(),
|
||||||
|
"city": $("#city option:selected").text(),
|
||||||
|
"district": $("#district option:selected").text(),
|
||||||
|
"street": $("#street").val(),
|
||||||
|
"postcode": $("#postcode").val(),
|
||||||
|
"mobile": $("#mobile").val(),
|
||||||
|
"telephone": $("#telephone").val(),
|
||||||
|
"IsDefault": $("#cbDefaultAddress").attr("checked")
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
function showAddress(id) {
|
||||||
|
//地址标题,新增还是修改
|
||||||
|
$(".member_adress-addtop span").text("修改地址");
|
||||||
|
$(".shop_adress-add").show();
|
||||||
|
$(".shop_adress-add").attr("id", "address_" + id);
|
||||||
|
}
|
||||||
|
|
||||||
|
function setAddress(data) {
|
||||||
|
$("#addressName").val(data.name);
|
||||||
|
$("#province option").each(function() {
|
||||||
|
if (data.city.indexOf($(this).text()) != -1) {
|
||||||
|
$("#province").val($(this).val());
|
||||||
|
$("#province").change();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
CityDataLoadEvent = function() {
|
||||||
|
$("#city option").each(function() {
|
||||||
|
if (data.city.indexOf($(this).text()) != -1) {
|
||||||
|
$("#city").val($(this).val());
|
||||||
|
$("#city").change();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
DistrictDataLoadEvent = function() {
|
||||||
|
$("#district option").each(function() {
|
||||||
|
if (data.city.indexOf($(this).text()) != -1) {
|
||||||
|
$("#district").val($(this).val());
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
$("#street").val(data.street);
|
||||||
|
$("#postcode").val(data.code);
|
||||||
|
$("#mobile").val(data.mobile);
|
||||||
|
$("#telephone").val(data.phone);
|
||||||
|
$("#cbDefaultAddress").attr("checked", data.IsDefault);
|
||||||
|
}
|
||||||
|
|
||||||
|
function deleteAddress(id) {
|
||||||
|
if (confirm("确认是否删除?")) {}
|
||||||
|
}
|
||||||
|
|
||||||
|
function bindDdlData(cid, data) {
|
||||||
|
$(cid).append($("<option value=\"" + data.code + "\">" + data.name + "</option>"));
|
||||||
|
}
|
||||||
|
CityDataLoadEvent = function() {
|
||||||
|
$("#city option").each(function() {
|
||||||
|
if (data.city.indexOf($(this).text()) != -1) {
|
||||||
|
$("#city").val($(this).val());
|
||||||
|
$("#city").change();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
DistrictDataLoadEvent = function() {
|
||||||
|
$("#district option").each(function() {
|
||||||
|
if (data.city.indexOf($(this).text()) != -1) {
|
||||||
|
$("#district").val($(this).val());
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
//
|
||||||
|
function checkTel(tel) {
|
||||||
|
var mobile = /^1[3-8]+\d{9}$/;
|
||||||
|
return mobile.test(tel);
|
||||||
|
}
|
||||||
|
//
|
||||||
|
function checkcode(zipcode) {
|
||||||
|
var MyNumber = /^[0-9]{1}[0-9]{5}$/;
|
||||||
|
return MyNumber.test(zipcode);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
function checkphone(tel) {
|
||||||
|
var mobile = /^0\d{2,3}-?\d{7,8}$/;
|
||||||
|
return mobile.test(tel);
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<form id="aspnetForm" action="/member_addr" method="post" name="aspnetForm">
|
||||||
|
</form>
|
||||||
|
<div>
|
||||||
|
<!--头部-->
|
||||||
|
<div class="cmain">
|
||||||
|
<div class="headtop">
|
||||||
|
<!--头部左边-->
|
||||||
|
<div class="top-left fl">
|
||||||
|
<a title="Darry Ring" href="/index"> <img width="187" height="42" alt="Darry Ring官网" src="../images/logo.png" /> </a>
|
||||||
|
<span style="font-weight: normal;">求婚钻戒领导品牌</span>
|
||||||
|
</div>
|
||||||
|
<!--头部左边end-->
|
||||||
|
<!--头部右边-->
|
||||||
|
<div class="top-right fr">
|
||||||
|
<!--登录注册-->
|
||||||
|
<ul class="tright-ul fl">
|
||||||
|
<div id="ctl00_ucheader_pllogin2">
|
||||||
|
<li><a><span id="ctl00_ucheader_lit">KLNgOk</span></a></li>
|
||||||
|
<li> <a href="javascript:logout()" rel="nofollow">退出</a><em>|</em> </li>
|
||||||
|
<li><a target="black" rel="nofollow" href="/member_index">我的DR</a><em>|</em></li>
|
||||||
|
<li class="headed"><em class="icon shooping"></em><a target="black" rel="nofollow" href="/cart">购物车</a><i>(0)</i></li>
|
||||||
|
</div>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<!--头部右边end-->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--头部end-->
|
||||||
|
<!--导航-->
|
||||||
|
<div class="nav">
|
||||||
|
<div class="cmain">
|
||||||
|
<!--导航的左边-->
|
||||||
|
<ul class="nav-ul fl">
|
||||||
|
<li><a href="/index">首页</a> </li>
|
||||||
|
<li><a href="/brand">品牌文化</a> </li>
|
||||||
|
<li><a style="font-family:arial" href="/lists">Darry Ring 求婚钻戒</a>
|
||||||
|
<div class="nav-div">
|
||||||
|
<div class="navdiv_top">
|
||||||
|
<div class="navdiv-right">
|
||||||
|
<p> <a href="/lists"> 查看所有款</a></p>
|
||||||
|
<p> <a href="/dr_series/12_22.html">Forever系列</a></p>
|
||||||
|
<p> <a href="/dr_series/11_20.html">My Heart系列</a></p>
|
||||||
|
<p> <a href="/dr_series/16_30.html">True Love系列</a></p>
|
||||||
|
<p> <a href="/dr_series/15_28.html">I Swear系列</a></p>
|
||||||
|
<p> <a href="/dr_series/13_24.html">Just you系列</a></p>
|
||||||
|
</div>
|
||||||
|
<div class="navdiv-left">
|
||||||
|
<h3> NEW</h3>
|
||||||
|
<a href="/detail"> <img width="138" height="97" src="../images/03wj.jpg" /></a>
|
||||||
|
<div class="more_cp">
|
||||||
|
<a href="/detail">> 了解该系列产品</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="navdiv_bottom"></div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li><a href="/question">常见问题</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--导航end-->
|
||||||
|
<script type="text/javascript">
|
||||||
|
function logout() {
|
||||||
|
if (window.confirm('确定退出吗?')) {
|
||||||
|
|
||||||
|
$.get("/nAPI/QuitExit.ashx", function(data) {
|
||||||
|
window.location.href = "/";
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<div class="cort">
|
||||||
|
<!--中间-->
|
||||||
|
<div class="cort">
|
||||||
|
<!--内容-->
|
||||||
|
<div class="cmain mb_back">
|
||||||
|
<div class="zbk_top spalid">
|
||||||
|
<div class="zbk_top spalid">
|
||||||
|
<span>您当前的位置:</span>
|
||||||
|
<span id="ctl00_content_website_SiteMapPath1"><a href="#ctl00_content_website_SiteMapPath1_SkipLink"></a><span> <a target="_blank" href="/index">Darry Ring</a> </span><span> <em>></em> </span><span> <a target="_blank" href="/member_index">我的DR</a> </span><span> <em>></em> </span><span> <span>收货地址</span> </span>
|
||||||
|
<a id="ctl00_content_website_SiteMapPath1_SkipLink"></a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--中间内容-->
|
||||||
|
<div class="member_cort">
|
||||||
|
<!--左边树-->
|
||||||
|
<div class="member_cort-left fl">
|
||||||
|
<!--我的DR-->
|
||||||
|
<div class="member_cortleft-tittle">
|
||||||
|
<i class="mb_home"></i>
|
||||||
|
<a rel="nofollow" href="/member_index">我的DR</a>
|
||||||
|
</div>
|
||||||
|
<!--我的DR end-->
|
||||||
|
<ul class="member_cort-ul">
|
||||||
|
<li>
|
||||||
|
<h3> -订单中心-</h3>
|
||||||
|
<ul class="member_ul-dr">
|
||||||
|
<li id="ctl00_content_treeId_order"><a rel="nofollow" href="/member_order">我的订单</a></li>
|
||||||
|
<li id="ctl00_content_treeId_ask"><a rel="nofollow" href="/member/myevaluate">我要评价</a></li>
|
||||||
|
<li id="ctl00_content_treeId_cart"><a rel="nofollow" href="/cart" target="_blank">我的购物车</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<h3> -帐户管理-</h3>
|
||||||
|
<ul class="member_ul-dr">
|
||||||
|
<li id="ctl00_content_treeId_myinfo"><a rel="nofollow" href="/member_info">个人信息</a></li>
|
||||||
|
<li id="ctl00_content_treeId_password"><a rel="nofollow" href="/member_pwd">修改密码</a></li>
|
||||||
|
<li class="speacil_color" id="ctl00_content_treeId_address"><a rel="nofollow" href="/member_addr">收货地址</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<!--左边树end-->
|
||||||
|
<!--右边的主要内容-->
|
||||||
|
<div class="member_cort-right fr">
|
||||||
|
<!--收货地址-->
|
||||||
|
<div class="member_adress">
|
||||||
|
<div class="myorder-xq-news_top">
|
||||||
|
<p> 收货地址</p>
|
||||||
|
</div>
|
||||||
|
<!--收货地址选择-->
|
||||||
|
<table cellspacing="0" cellpadding="0" border="0" class="member_adress-top">
|
||||||
|
<tbody>
|
||||||
|
<tr class="member_adress-trfirst">
|
||||||
|
<td class="member_adress-td1"> 收件人姓名 </td>
|
||||||
|
<td class="member_adress-td2"> 详细地址 </td>
|
||||||
|
<td class="member_adress-td3"> 联系方式 </td>
|
||||||
|
<td class="member_adress-td4"> 邮政编码 </td>
|
||||||
|
<td class="member_adress-td5"> 操作 </td>
|
||||||
|
</tr>
|
||||||
|
<tr class="member_adress-trsec">
|
||||||
|
<td class="member_adress-td1"> <label for="61921"> 张合</label> </td>
|
||||||
|
<td class="member_adress-td2"> <label> 福建省龙岩市长汀县娃娃亲到青岛</label> </td>
|
||||||
|
<td class="member_adress-td3">
|
||||||
|
<p> 13851435593</p>
|
||||||
|
<p> </p>
|
||||||
|
</td>
|
||||||
|
<td class="member_adress-td4"> 223311 </td>
|
||||||
|
<td class="member_adress-td5"> <input type="radio" checked="checked" name="adress" id="61921" value="61921" onClick="szdefault(61921);" /> <label for="61921"> 设为常用地址 </label> <a href="javascript:showAddress(61921);">修改</a><i>|</i><a href="javascript:deleteAddress(61921);">删除</a> </td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
<!--收货地址选择end-->
|
||||||
|
<div class="member_adress-addtop">
|
||||||
|
<span>添加新地址</span>
|
||||||
|
<i></i>
|
||||||
|
</div>
|
||||||
|
<!--新加地址-->
|
||||||
|
<div class="shop_adress-add">
|
||||||
|
<div id="addresses" class="shop_adress-Toadd">
|
||||||
|
<span id="addid" style="display: none"><i class="writer_wrong"></i><em id="addwrong" class="writer_word">信息报错样式显示!</em></span>
|
||||||
|
<span id="addy" style="display: none"><i class="writer_right"> </i></span>
|
||||||
|
</div>
|
||||||
|
<div id="detailadd" class="shop_adress-Toadd">
|
||||||
|
<label class="adress-Toadd_label"> <em>*</em>详细地址:</label>
|
||||||
|
<textarea id="street"></textarea>
|
||||||
|
<span id="streeid" style="display: none"><i class="writer_wrong"></i><em id="strwrong" class="writer_word">信息报错样式显示!</em></span>
|
||||||
|
<span id="streey" style="display: none"><i class="writer_right"> </i></span>
|
||||||
|
</div>
|
||||||
|
<div id="pname" class="shop_adress-Toadd">
|
||||||
|
<label> <em>*</em>收货人:</label>
|
||||||
|
<input type="text" class="true_name" id="addressName" />
|
||||||
|
<span id="shrid" style="display: none"><i class="writer_wrong"></i><em id="shrwrong" class="writer_word"></em></span>
|
||||||
|
<span id="shry" style="display: none"><i class="writer_right"> </i></span>
|
||||||
|
</div>
|
||||||
|
<div id="post" class="shop_adress-Toadd">
|
||||||
|
<label> <em>*</em>邮政编码:</label>
|
||||||
|
<input type="text" class="true_number" id="postcode" />
|
||||||
|
<span id="postid" style="display: none"><i class="writer_wrong"></i><em id="postwrong" class="writer_word">信息报错样式显示!</em></span>
|
||||||
|
<span id="posty" style="display: none"><i class="writer_right"> </i></span>
|
||||||
|
</div>
|
||||||
|
<div id="lx" class="shop_adress-Toadd">
|
||||||
|
<label> <em>*</em>手机号码:</label>
|
||||||
|
<input type="text" id="mobile" />
|
||||||
|
<span id="telid" style="display: none"><i class="writer_wrong"></i><em id="telwrong" class="writer_word">信息报错样式显示!</em></span>
|
||||||
|
<span id="tely" style="display: none"><i class="writer_right"> </i></span>
|
||||||
|
</div>
|
||||||
|
<div class="shop_adress-sp">
|
||||||
|
<input type="checkbox" id="cbDefaultAddress" />
|
||||||
|
<label for="cbDefaultAddress" class="add_adress-splabel"> 设为默认地址</label>
|
||||||
|
</div>
|
||||||
|
<div class="add_adress-save">
|
||||||
|
<div class="bt1">
|
||||||
|
<span>保存此地址</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--新加地址end-->
|
||||||
|
</div>
|
||||||
|
<!--收货地址end-->
|
||||||
|
</div>
|
||||||
|
<!--右边的主要内容end-->
|
||||||
|
</div>
|
||||||
|
<!--中间内容end-->
|
||||||
|
</div>
|
||||||
|
<!--内容end-->
|
||||||
|
</div>
|
||||||
|
<!--中间end-->
|
||||||
|
<script>
|
||||||
|
function szdefault(id) {
|
||||||
|
$.get("/API/MemberAPI.ashx", {
|
||||||
|
action: 'default',
|
||||||
|
id: id
|
||||||
|
}, function(data) {
|
||||||
|
if (data == "ok") {
|
||||||
|
alert("设置成功!");
|
||||||
|
}
|
||||||
|
if (data == "false") {
|
||||||
|
alert("设置失败!");
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
</div>
|
||||||
|
<!--底部-->
|
||||||
|
<div class="footer">
|
||||||
|
<!--错误-->
|
||||||
|
<!--提示-->
|
||||||
|
<div class="loverit_word2" style="display: none;">
|
||||||
|
Darry Ring严格规定男士凭身份证一生仅能定制一枚,象征男人一生真爱的最高承诺。输入身份证号码即可查询购买记录。
|
||||||
|
</div>
|
||||||
|
<!--提示end-->
|
||||||
|
<div class="loverit_wrong2" style="display: none;">
|
||||||
|
<p>信息填写不正确,请重新输入。</p>
|
||||||
|
</div>
|
||||||
|
<!--错误end-->
|
||||||
|
<!--验证身份-->
|
||||||
|
<div class="loveit_center">
|
||||||
|
<div class="love_doit2" style="display: none;">
|
||||||
|
<div class="loverit_center2">
|
||||||
|
<div class="loverit_write2">
|
||||||
|
<label>国家/区域:</label>
|
||||||
|
<select id="txtArea" style="vertical-align: middle;height:22px;"> <option value="0">中国大陆</option> <option value="1">中国香港</option> <option value="2">中国澳门</option> <option value="3">中国台湾</option> </select>
|
||||||
|
<label>先生姓名:</label>
|
||||||
|
<input type="text" class="lit_txt" id="textName2" />
|
||||||
|
<label>身份证号码:</label>
|
||||||
|
<input type="text" class="lit_txt" id="textIDCard2" />
|
||||||
|
<span id="btnsub2"></span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--验证身份end-->
|
||||||
|
<div style="clear:both"></div>
|
||||||
|
<div class="cmain">
|
||||||
|
<ul class="Service_ul">
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p>权威认证</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_2">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p> 一钻双证</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_3">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p> 终生保养</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_4">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p> 以小换大</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_5">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p> 15天退换</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_6">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p> 全国免运费</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_7">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p> 全程保险</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<!--条文-->
|
||||||
|
<div class="auto" id="Menu_Service">
|
||||||
|
</div>
|
||||||
|
<div class="tw-foot">
|
||||||
|
<div class="auto" id="Copyright">
|
||||||
|
<p> Copyright © 2017 winner winner,chickdinner !!团队 All Rights Reserved. 闽ICP备11012085号-2.ICP经营许可证闽B2-20140279 </p>
|
||||||
|
<p> 中国互联网违法信息举报中心 | 中国公安网络110报警服务 | 本网站提供所售商品的正式发票 </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="model" id="model">
|
||||||
|
<div class="Prompt" id="Prompt">
|
||||||
|
</div>
|
||||||
|
<span id="log_uid" style="display:none"></span>
|
||||||
|
<span id="log_uname" style="display:none"></span>
|
||||||
|
<span id="log_orderid" style="display:none"></span>
|
||||||
|
<span id="log_price" style="display:none"></span>
|
||||||
|
</div>
|
||||||
|
<!-- <script src="http://wpa.b.qq.com/cgi/wpa.php" charset="utf-8" type="text/javascript"></script> -->
|
||||||
|
<!--客服(2014年8月29日)-->
|
||||||
|
<div style="display:none" class="Ffloat_kf">
|
||||||
|
<div class="fkf_top">
|
||||||
|
<div style="cursor: pointer; display: none;" id="bridgehead">
|
||||||
|
</div>
|
||||||
|
<div id="BizQQWPA"></div>
|
||||||
|
<div onClick="showModel(modelsever);" style="cursor: pointer;" class="qq_hover" id="qqTalk_head">
|
||||||
|
</div>
|
||||||
|
<div id="BizQQWPAB" class="sh">
|
||||||
|
</div>
|
||||||
|
<div id="bdBridge">
|
||||||
|
<a href="javascript:NTKF.im_openInPageChat()"> <img width="75" height="37" src="../images/zx.jpg" /></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="fkf_bottom">
|
||||||
|
<img width="92" height="82" alt="Darry Ring 官方微信" src="../images/to_erwei.jpg" />
|
||||||
|
<a href="#"> <img width="92" height="26" src="../images/db.jpg" /></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--新版右边客服start-->
|
||||||
|
<!--右边漂浮悬挂大的-->
|
||||||
|
<div class="float_big">
|
||||||
|
<div class="floatbig_hide fr"></div>
|
||||||
|
<div class="floatbig_center">
|
||||||
|
<!--客服-->
|
||||||
|
<div onClick="javascript:void(0)" id="Bearonline" class="floatbig_center-kf"></div>
|
||||||
|
<!--客服end-->
|
||||||
|
<!--定制咨询-->
|
||||||
|
<div id="dzzxonline" class="floatbig_center-zx">
|
||||||
|
<a href="javascript:showModel(modelsever);"></a>
|
||||||
|
</div>
|
||||||
|
<!--定制咨询end-->
|
||||||
|
<img src="../images/ew.jpg" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--右边漂浮悬挂大的end-->
|
||||||
|
<!--右边漂浮悬挂小的-->
|
||||||
|
<div class="float_small">
|
||||||
|
<div class="floatbig_show fr"></div>
|
||||||
|
<div class="floatbig_center">
|
||||||
|
<!--客服-->
|
||||||
|
<div onClick="javascript:void(0)" class="floatsmall_center-kf fr"></div>
|
||||||
|
<!--客服end-->
|
||||||
|
<!--定制咨询-->
|
||||||
|
<div class="floatsmall_center-zx fr">
|
||||||
|
<a href="javascript:showModel(modelsever);"></a>
|
||||||
|
</div>
|
||||||
|
<!--定制咨询end-->
|
||||||
|
<!--二维码-->
|
||||||
|
<div class="floatsmall_erwei fr">
|
||||||
|
<a href="#"></a>
|
||||||
|
</div>
|
||||||
|
<!--二维码end-->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--右边漂浮悬挂小的end-->
|
||||||
|
<!--返回顶部-->
|
||||||
|
<div class="comeback" style="display: block;"></div>
|
||||||
|
<!--返回顶部end-->
|
||||||
|
<!--新版右边客服end-->
|
||||||
|
<div style="position: fixed; cursor: pointer; right: 6px; top: 289px; padding-bottom: 152px; z-index: 9999; width: 19px; height: 103px; display: none;" onClick="openserver();" id="openbnt">
|
||||||
|
<img width="19" height="103" src="../images/server_03.jpg" />
|
||||||
|
</div>
|
||||||
|
<div class="news_tc">
|
||||||
|
<div class="newtc_left">
|
||||||
|
</div>
|
||||||
|
<div class="newtc_right">
|
||||||
|
<span style="cursor: pointer" class="sszs">稍后再说</span>
|
||||||
|
<span class="xzzx"><a onClick="showxiaon()" style="cursor: pointer" id="chatnow"> 现在咨询</a></span>
|
||||||
|
<div style="cursor: pointer" class="tocclose">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="mask" id="masks">
|
||||||
|
</div>
|
||||||
|
<div style="display:none;" class="modelsever" id="modelsever">
|
||||||
|
<div class="cs_top">
|
||||||
|
<div class="cs_topcenter">
|
||||||
|
<div style="width:300px; height:40px; line-height:40px; float:left; display:inline-block; ">
|
||||||
|
顾客常见疑问
|
||||||
|
</div>
|
||||||
|
<div style="width:385px; height:20px; float:left; text-align:right; padding-top:20px;">
|
||||||
|
<img width="55" height="9" style="cursor: pointer;" onClick="CloseMaskser()" src="../images/popup_window_btn_close.gif" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="cs_content clear">
|
||||||
|
<div id="box1" class="box1">
|
||||||
|
<div onClick="contenttxt(1,1)" id="content_title_11" class="content_title">
|
||||||
|
<span style="margin-top:8px;">Q:Darry Ring 是否有实体店?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_1" class="content_txt">
|
||||||
|
<span style="margin-top:1px;">A:DR公司总部在香港,目前内地深圳市、北京市、重庆市、广州市、上海市、武汉市、南京市、长沙市设有实体店,支持到店订购,也支持全国在线官网订购。同时目前其他一线城市公司已在考察选址阶段,将陆续开设店面。</span>
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(1,2)" id="content_title_12" class="content_title">
|
||||||
|
<span style="margin-top:8px;">Q:实体店具体位置?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_2" class="content_txt">
|
||||||
|
<span style="margin-top:1px;">A:深圳实体店地址:深圳南山区世界之窗旁欧陆小镇4号楼Darry Ring (地铁罗宝线世界之窗I出口)深圳店联系方式:0755-86621782。<p></p> 北京实体店地址:北京东二环朝阳门桥银河SOHO中心B座负一层2-109 (朝阳门地铁G出口) 北京店联系方式:010-59576758。<p></p> 上海实体店地址:上海长宁区淮海西路570号红坊创意园区G-108栋(近虹桥路) 上海店联系方式:021-60934520。<p></p> 广州实体店地址:广州市天河区天河北路233号中信广场商场136单元 广州店联系方式:020-38836315。<p></p> 重庆实体店地址:重庆市渝中区解放碑步行街民族路188号环球金融中心(WFC)LG-B02A 重庆店联系方式:023-63710835。<p></p> 武汉实体店地址:武汉市洪山区光谷意大利风情街5号楼一层51021号 武汉店联系方式:027-87688895。<p></p> 南京实体店地址:南京市长江路288号1912街区17号楼一层 南京店联系方式:025-83613520。<p></p> 长沙实体店地址:长沙市开福区中山路589号万达百货商场2楼 长沙店联系方式:0731-83878575。<p></p> 全国400客服热线:400 01 13520。</span>
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(1,3)" id="content_title_13" class="content_title">
|
||||||
|
<span style="margin-top:8px;">Q:到店订购和官网订购的价格一致吗?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_3" class="content_txt">
|
||||||
|
<span style="margin-top:1px;">A:DR的所有商品,到店订购和官网订购的时间周期,价格,质量及售后服务均一致。</span>
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(1,4)" id="content_title_14" class="content_title">
|
||||||
|
<span style="margin-top:8px;">Q:价格是否有折扣优惠?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_4" class="content_txt">
|
||||||
|
<span style="margin-top:1px;">A:DR的品牌寓意为一生唯一真爱,大多是用作见证彼此求婚或结婚这一神圣时刻,所以所有商品都是常年任何节假日没有折扣活动,就像彼此一生唯一真爱的承诺及永恒的爱情,永不打折。</span>
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(1,5)" id="content_title_15" class="content_title">
|
||||||
|
<span style="margin-top:8px;">Q:为什么在官网上输入姓名身份证号后看不到款式?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_5" class="content_txt">
|
||||||
|
<span style="margin-top:1px;">A:www.darryring.com 官网首页点击—求婚钻戒,进入页面后不需要填写任何信息,移动鼠标到最下方,就可以看到Darry Ring女戒的所有款式。</span>
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(1,6)" id="content_title_16" class="content_title">
|
||||||
|
<span style="margin-top:8px;">Q:到实体店是否可以立刻拿到戒指?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_6" class="content_txt">
|
||||||
|
<span style="margin-top:1px;">A:您好,DR的所有商品都是需要根据您选择的款式、手寸大小及刻字信息来定制。实体店仅提供款式体验及预订,与官网购买的定制时间是一致的,可于15-20个工作日内送到或自取。</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="box2" class="box2">
|
||||||
|
<div onClick="contenttxt(2,1)" id="content_title_21" class="content_title"></div>
|
||||||
|
<div id="content_title2_1" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(2,2)" id="content_title_22" class="content_title"></div>
|
||||||
|
<div id="content_title2_2" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(2,3)" id="content_title_23" class="content_title"></div>
|
||||||
|
<div id="content_title2_3" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(2,4)" id="content_title_24" class="content_title"></div>
|
||||||
|
<div id="content_title2_4" class="content_txt">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="box3" class="box3">
|
||||||
|
<div onClick="contenttxt(3,1)" id="content_title_31" class="content_title"></div>
|
||||||
|
<div id="content_title3_1" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(3,2)" id="content_title_32" class="content_title"></div>
|
||||||
|
<div id="content_title3_2" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(3,3)" id="content_title_33" class="content_title"></div>
|
||||||
|
<div id="content_title3_3" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(3,4)" id="content_title_34" class="content_title"></div>
|
||||||
|
<div id="content_title3_4" class="content_txt"></div>
|
||||||
|
</div>
|
||||||
|
<div id="box4" class="box4">
|
||||||
|
<div onClick="contenttxt(4,1)" id="content_title_41" class="content_title"></div>
|
||||||
|
<div id="content_title4_1" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(4,2)" id="content_title_42" class="content_title"></div>
|
||||||
|
<div id="content_title4_2" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(4,3)" id="content_title_43" class="content_title"></div>
|
||||||
|
<div id="content_title4_3" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(4,4)" id="content_title_44" class="content_title"></div>
|
||||||
|
<div id="content_title4_4" class="content_txt"></div>
|
||||||
|
</div>
|
||||||
|
<div id="box5" class="box5">
|
||||||
|
<div onClick="contenttxt(5,1)" id="content_title_51" class="content_title"></div>
|
||||||
|
<div id="content_title5_1" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(5,2)" id="content_title_52" class="content_title"></div>
|
||||||
|
<div id="content_title5_2" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(5,3)" id="content_title_53" class="content_title"></div>
|
||||||
|
<div id="content_title5_3" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(5,4)" id="content_title_54" class="content_title"></div>
|
||||||
|
<div id="content_title5_4" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(5,5)" id="content_title_55" class="content_title"></div>
|
||||||
|
<div id="content_title5_5" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(5,6)" id="content_title_56" class="content_title"></div>
|
||||||
|
<div id="content_title5_6" class="content_txt">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="box6" class="box6">
|
||||||
|
<div onClick="contenttxt(6,1)" id="content_title_61" class="content_title"></div>
|
||||||
|
<div id="content_title6_1" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(6,2)" id="content_title_62" class="content_title"></div>
|
||||||
|
<div id="content_title6_2" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(6,3)" id="content_title_63" class="content_title"></div>
|
||||||
|
<div id="content_title6_3" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(6,4)" id="content_title_64" class="content_title"></div>
|
||||||
|
<div id="content_title6_4" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(6,5)" id="content_title_65" class="content_title"></div>
|
||||||
|
<div id="content_title6_5" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(6,6)" id="content_title_66" class="content_title"></div>
|
||||||
|
<div id="content_title6_6" class="content_txt">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="box7" class="box7">
|
||||||
|
<div onClick="contenttxt(7,1)" id="content_title_71" class="content_title"></div>
|
||||||
|
<div id="content_title7_1" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(7,2)" id="content_title_72" class="content_title"></div>
|
||||||
|
<div id="content_title7_2" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(7,3)" id="content_title_73" class="content_title"></div>
|
||||||
|
<div id="content_title7_3" class="content_txt">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript">
|
||||||
|
function showbox(id) {
|
||||||
|
getQeestion(id);
|
||||||
|
for (var i = 1; i <= 8; i++) {
|
||||||
|
if (i == id) {
|
||||||
|
showdiv(id);
|
||||||
|
} else {
|
||||||
|
hidediv(i);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function contenttxt(id, sid) {
|
||||||
|
for (var i = 1; i <= 7; i++) {
|
||||||
|
if (i == id) {
|
||||||
|
showtxt(id, sid);
|
||||||
|
} else {
|
||||||
|
hidetxt(i, sid);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
function showtxt(id, sid) {
|
||||||
|
var objtitle = $("#content_title" + id + "_" + sid);
|
||||||
|
|
||||||
|
if (objtitle.css("display") == "none") {
|
||||||
|
objtitle.show("fast");
|
||||||
|
} else {
|
||||||
|
|
||||||
|
hidetxt(id, sid);
|
||||||
|
}
|
||||||
|
//$("#"+id).show("fast");
|
||||||
|
}
|
||||||
|
|
||||||
|
function hidetxt(id, sid) {
|
||||||
|
var objtitle = $("#content_title" + id + "_" + sid);
|
||||||
|
objtitle.hide("fast");
|
||||||
|
}
|
||||||
|
|
||||||
|
function hidediv(id) {
|
||||||
|
$("#box" + id).hide("fast");
|
||||||
|
|
||||||
|
$("#li" + id).css({
|
||||||
|
"font-size": "14px",
|
||||||
|
"color": "#7d7d7d"
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function showdiv(id) {
|
||||||
|
if ($("#box" + id).css("display") == "none") {
|
||||||
|
$("#box" + id).show("fast");
|
||||||
|
$("#li" + id).css({
|
||||||
|
"font-size": "18px",
|
||||||
|
"color": "#000000"
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
function showMask() {
|
||||||
|
$("#masks").css("height", $(document).height());
|
||||||
|
$("#masks").css("width", $(document).width());
|
||||||
|
$("#masks").fadeIn();
|
||||||
|
}
|
||||||
|
|
||||||
|
function showModel(divName) {
|
||||||
|
showMask();
|
||||||
|
/* var top = ($(window).height() - $(divName).height()) / 5;
|
||||||
|
var left = ($(window).width() - $(divName).width()) / 2;
|
||||||
|
var scrollTop = $(document).scrollTop();
|
||||||
|
var scrollLeft = $(document).scrollLeft();*/
|
||||||
|
$(divName).fadeIn();
|
||||||
|
}
|
||||||
|
|
||||||
|
function CloseMaskser() {
|
||||||
|
|
||||||
|
$("#modelsever").fadeOut("slow");
|
||||||
|
$("#masks").fadeOut("slow");
|
||||||
|
$("#mask").fadeOut("slow");
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
||||||
|
|
@ -0,0 +1,630 @@
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" class="hb-loaded">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<title>个人中心 - 上传头像</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<link href="../css/same.css?v=1.3.7.2" type="text/css" rel="stylesheet" />
|
||||||
|
<link href="../css/member.css?v=1.3.6.0" type="text/css" rel="stylesheet" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="../css/uploadify.css" />
|
||||||
|
<script src="../js/jquery.js" type="text/javascript"></script>
|
||||||
|
<script src="../js/index.js?virsion=1.3.7.2" type="text/javascript"></script>
|
||||||
|
<script type="text/javascript" src="../js/member.js"></script>
|
||||||
|
<script type="text/javascript" src="../js/jquery.Jcrop.js"></script>
|
||||||
|
<script type="text/javascript" src="../js/Jcrop_photo.js"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
function loadimg(url) {
|
||||||
|
$(".member_person-upload img").attr("src", url);
|
||||||
|
}
|
||||||
|
|
||||||
|
$(function() {
|
||||||
|
loadimg("images/mem-big.jpg");
|
||||||
|
});
|
||||||
|
|
||||||
|
function SaveCustomImg() {
|
||||||
|
var c = $(".jcrop-holder div").eq(0);
|
||||||
|
var x = parseInt(parseInt(c.css("left").replace("px", "")) / currentScale);
|
||||||
|
var y = parseInt(parseInt(c.css("top").replace("px", "")) / currentScale);
|
||||||
|
var width = parseInt(c.width() / currentScale);
|
||||||
|
var height = parseInt(c.height() / currentScale);
|
||||||
|
var url = $("#bPic").attr("src");
|
||||||
|
var custom = {
|
||||||
|
"url": url,
|
||||||
|
"x": x,
|
||||||
|
"y": y,
|
||||||
|
"width": width,
|
||||||
|
"height": height
|
||||||
|
};
|
||||||
|
$.post("/nAPI/customimg.ashx", custom, function(data) {
|
||||||
|
var msg = jQuery.parseJSON(data);
|
||||||
|
if (msg.result) {
|
||||||
|
window.location = "dr_personinfo.aspx";
|
||||||
|
} else {
|
||||||
|
alert("自定义头像保存失败。");
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<div class="cmain">
|
||||||
|
<div class="headtop">
|
||||||
|
<!--头部左边-->
|
||||||
|
<div class="top-left fl">
|
||||||
|
<a title="Darry Ring" href="/index"> <img width="187" height="42" alt="Darry Ring官网" src="../images/logo.png" /> </a>
|
||||||
|
<span style="font-weight: normal;">求婚钻戒领导品牌</span>
|
||||||
|
</div>
|
||||||
|
<!--头部左边end-->
|
||||||
|
<!--头部右边-->
|
||||||
|
<div class="top-right fr">
|
||||||
|
<!--登录注册-->
|
||||||
|
<ul class="tright-ul fl">
|
||||||
|
<div id="ctl00_ucheader_pllogin2">
|
||||||
|
<li><a><span id="ctl00_ucheader_lit">KLNgOk</span></a></li>
|
||||||
|
<li> <a href="javascript:logout()" rel="nofollow">退出</a><em>|</em> </li>
|
||||||
|
<li><a target="black" rel="nofollow" href="/member_index">我的DR</a><em>|</em></li>
|
||||||
|
<li class="headed"><em class="icon shooping"></em><a target="black" rel="nofollow" href="/cart">购物车</a><i>(0)</i></li>
|
||||||
|
</div>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<!--头部右边end-->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--头部end-->
|
||||||
|
<!--导航-->
|
||||||
|
<div class="nav">
|
||||||
|
<div class="cmain">
|
||||||
|
<!--导航的左边-->
|
||||||
|
<ul class="nav-ul fl">
|
||||||
|
<li><a href="/index">首页</a> </li>
|
||||||
|
<li><a href="/brand">品牌文化</a> </li>
|
||||||
|
<li><a style="font-family:arial" href="/lists">Darry Ring 求婚钻戒</a>
|
||||||
|
<div class="nav-div">
|
||||||
|
<div class="navdiv_top">
|
||||||
|
<div class="navdiv-right">
|
||||||
|
<p> <a href="/lists"> 查看所有款</a></p>
|
||||||
|
<p> <a href="/dr_series/12_22.html">Forever系列</a></p>
|
||||||
|
<p> <a href="/dr_series/11_20.html">My Heart系列</a></p>
|
||||||
|
<p> <a href="/dr_series/16_30.html">True Love系列</a></p>
|
||||||
|
<p> <a href="/dr_series/15_28.html">I Swear系列</a></p>
|
||||||
|
<p> <a href="/dr_series/13_24.html">Just you系列</a></p>
|
||||||
|
</div>
|
||||||
|
<div class="navdiv-left">
|
||||||
|
<h3> NEW</h3>
|
||||||
|
<a href="/detail"> <img width="138" height="97" src="../images/03wj.jpg" /></a>
|
||||||
|
<div class="more_cp">
|
||||||
|
<a href="/detail">> 了解该系列产品</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="navdiv_bottom"></div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li><a href="/question">常见问题</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--导航end-->
|
||||||
|
<script type="text/javascript">
|
||||||
|
function logout() {
|
||||||
|
if (window.confirm('确定退出吗?')) {
|
||||||
|
|
||||||
|
$.get("/nAPI/QuitExit.ashx", function(data) {
|
||||||
|
window.location.href = "/";
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<div class="cort">
|
||||||
|
<div class="cort">
|
||||||
|
<div class="tobuy cmain">
|
||||||
|
<div class="cmain mb_back">
|
||||||
|
<div class="zbk_top spalid">
|
||||||
|
<span>您当前的位置:</span>
|
||||||
|
<span id="ctl00_content_website_SiteMapPath1"><a href="#ctl00_content_website_SiteMapPath1_SkipLink"></a><span> <a target="_blank" href="/index">Darry Ring</a> </span><span> <em>></em> </span><span> <a target="_blank" href="/member_index">我的DR</a> </span><span> <em>></em> </span><span> <span>修改头像</span> </span>
|
||||||
|
<a id="ctl00_content_website_SiteMapPath1_SkipLink"></a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div class="member_cort">
|
||||||
|
<div class="member_cort-left fl">
|
||||||
|
<!--我的DR-->
|
||||||
|
<div class="member_cortleft-tittle">
|
||||||
|
<i class="mb_home"></i>
|
||||||
|
<a rel="nofollow" href="/member_index">我的DR</a>
|
||||||
|
</div>
|
||||||
|
<!--我的DR end-->
|
||||||
|
<ul class="member_cort-ul">
|
||||||
|
<li>
|
||||||
|
<h3> -订单中心-</h3>
|
||||||
|
<ul class="member_ul-dr">
|
||||||
|
<li id="ctl00_content_ucmemberleft_order"><a rel="nofollow" href="/member_order">我的订单</a></li>
|
||||||
|
<li id="ctl00_content_ucmemberleft_ask"><a rel="nofollow" href="/member/myevaluate">我要评价</a></li>
|
||||||
|
<li id="ctl00_content_ucmemberleft_cart"><a rel="nofollow" href="/cart" target="_blank">我的购物车</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<h3> -帐户管理-</h3>
|
||||||
|
<ul class="member_ul-dr">
|
||||||
|
<li id="ctl00_content_ucmemberleft_myinfo"><a rel="nofollow" href="/member_info">个人信息</a></li>
|
||||||
|
<li id="ctl00_content_ucmemberleft_password"><a rel="nofollow" href="/member_pwd">修改密码</a></li>
|
||||||
|
<li id="ctl00_content_ucmemberleft_address"><a rel="nofollow" href="/member_addr">收货地址</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<!--右边的主要内容-->
|
||||||
|
<div class="member_cort-right fr">
|
||||||
|
<!--上传头像-->
|
||||||
|
<div class="member_person">
|
||||||
|
<div class="member_ask-tittle">
|
||||||
|
<h4>设置头像</h4>
|
||||||
|
<p>为了能给您提供个性化服务,请完善您的基本资料。</p>
|
||||||
|
</div>
|
||||||
|
<!--选择文件上传-->
|
||||||
|
<div class="member_person-upload">
|
||||||
|
<div id="uploadimg" class="uploadify" style="height: 30px; width: 120px;">
|
||||||
|
<object width="120" height="30" class="swfupload" data="/uploadify/uploadify.swf?preventswfcaching=1436277845884" type="application/x-shockwave-flash" id="SWFUpload_0" style="position: absolute; z-index: 1;"><param value="transparent" name="wmode"></param><param value="/uploadify/uploadify.swf?preventswfcaching=1436277845884" name="movie"></param><param value="high" name="quality"></param><param value="false" name="menu"></param><param value="always" name="allowScriptAccess"></param><param value="movieName=SWFUpload_0&uploadURL=%2FnAPI%2Fimgupload.ashx&useQueryString=false&requeueOnError=false&httpSuccess=&assumeSuccessTimeout=30&params=&filePostName=Filedata&fileTypes=*.gif%3B%20*.jpg%3B%20*.png%3B%20*.jpeg%3B&fileTypesDescription=Image%20Files&fileSizeLimit=200&fileUploadLimit=0&fileQueueLimit=999&debugEnabled=false&buttonImageURL=%2Fmember%2F&buttonWidth=120&buttonHeight=30&buttonText=&buttonTextTopPadding=0&buttonTextLeftPadding=0&buttonTextStyle=color%3A%20%23000000%3B%20font-size%3A%2016pt%3B&buttonAction=-110&buttonDisabled=false&buttonCursor=-2" name="flashvars"></param></object>
|
||||||
|
<div id="uploadimg-button" class="uploadify-button " style="height: 30px; line-height: 30px; width: 120px;">
|
||||||
|
<span class="uploadify-button-text">上传图片</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="uploadimg-queue" class="uploadify-queue"></div>
|
||||||
|
<span class="fl">请确保文件为大小不超过200k,格式为jpg,png,gif的图片。</span>
|
||||||
|
</div>
|
||||||
|
<div class="member_person-upload">
|
||||||
|
<img id="bPic" style="width: 300px; height: 300px; display: none;" src="../images/mem-big.jpg" />
|
||||||
|
<div style="width: 300px; height: 300px; position: relative; background-color: rgb(205, 205, 205);" class="jcrop-holder">
|
||||||
|
<div style="position: absolute; z-index: 300; width: 90px; height: 90px; top: 10px; left: 10px;">
|
||||||
|
<div style="width: 100%; height: 100%; z-index: 310; position: absolute; overflow: hidden;">
|
||||||
|
<div style="position: absolute; opacity: 0.4; top: 0px;" class="jcrop-hline"></div>
|
||||||
|
<div style="position: absolute; opacity: 0.4; top: 89px;" class="jcrop-hline"></div>
|
||||||
|
<div style="position: absolute; opacity: 0.4;" class="jcrop-vline"></div>
|
||||||
|
<div style="position: absolute; opacity: 0.4; left: 89px;" class="jcrop-vline"></div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="jcrop-tracker" style="width: 316px; height: 316px; position: absolute; top: -8px; left: -8px; z-index: 290; cursor: crosshair;"></div>
|
||||||
|
<div style="position: absolute; overflow: hidden;">
|
||||||
|
<input type="radio" style="position: absolute; left: -30px;" />
|
||||||
|
</div>
|
||||||
|
<img style="width: 300px; height: 300px; position: absolute; opacity: 0.5;" src="../images/mem-big.jpg" />
|
||||||
|
</div>
|
||||||
|
<div id="preview_box" class="person-upload-right">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="person-upload-rightbt">
|
||||||
|
<div onClick="SaveCustomImg()" class="person-upload-button">
|
||||||
|
保存头像
|
||||||
|
</div>
|
||||||
|
<p></p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--选择文件上传end-->
|
||||||
|
</div>
|
||||||
|
<!--上传头像end-->
|
||||||
|
</div>
|
||||||
|
<!--右边的主要内容end-->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--底部-->
|
||||||
|
<div class="footer">
|
||||||
|
<!--错误-->
|
||||||
|
<!--提示-->
|
||||||
|
<div class="loverit_word2" style="display: none;">
|
||||||
|
Darry Ring严格规定男士凭身份证一生仅能定制一枚,象征男人一生真爱的最高承诺。输入身份证号码即可查询购买记录。
|
||||||
|
</div>
|
||||||
|
<!--提示end-->
|
||||||
|
<div class="loverit_wrong2" style="display: none;">
|
||||||
|
<p>信息填写不正确,请重新输入。</p>
|
||||||
|
</div>
|
||||||
|
<!--错误end-->
|
||||||
|
<!--验证身份-->
|
||||||
|
<div class="loveit_center">
|
||||||
|
<div class="love_doit2" style="display: none;">
|
||||||
|
<div class="loverit_center2">
|
||||||
|
<div class="loverit_write2">
|
||||||
|
<label>国家/区域:</label>
|
||||||
|
<select id="txtArea" style="vertical-align: middle;height:22px;"> <option value="0">中国大陆</option> <option value="1">中国香港</option> <option value="2">中国澳门</option> <option value="3">中国台湾</option> </select>
|
||||||
|
<label>先生姓名:</label>
|
||||||
|
<input type="text" class="lit_txt" id="textName2" />
|
||||||
|
<label>身份证号码:</label>
|
||||||
|
<input type="text" class="lit_txt" id="textIDCard2" />
|
||||||
|
<span id="btnsub2"></span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--验证身份end-->
|
||||||
|
<div style="clear:both"></div>
|
||||||
|
<div class="cmain">
|
||||||
|
<ul class="Service_ul">
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p>权威认证</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_2">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p> 一钻双证</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_3">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p> 终生保养</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_4">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p> 以小换大</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_5">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p> 15天退换</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_6">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p> 全国免运费</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_7">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p> 全程保险</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<!--条文-->
|
||||||
|
<div class="auto" id="Menu_Service">
|
||||||
|
</div>
|
||||||
|
<div class="tw-foot">
|
||||||
|
<div class="auto" id="Copyright">
|
||||||
|
<p> Copyright © 2017 winner winner,chickdinner !!团队 All Rights Reserved. 闽ICP备11012085号-2.ICP经营许可证闽B2-20140279 </p>
|
||||||
|
<p> 中国互联网违法信息举报中心 | 中国公安网络110报警服务 | 本网站提供所售商品的正式发票 </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="model" id="model">
|
||||||
|
<div class="Prompt" id="Prompt">
|
||||||
|
</div>
|
||||||
|
<span id="log_uid" style="display:none"></span>
|
||||||
|
<span id="log_uname" style="display:none"></span>
|
||||||
|
<span id="log_orderid" style="display:none"></span>
|
||||||
|
<span id="log_price" style="display:none"></span>
|
||||||
|
</div>
|
||||||
|
<!-- <script src="http://wpa.b.qq.com/cgi/wpa.php" charset="utf-8" type="text/javascript"></script> -->
|
||||||
|
<!--客服(2014年8月29日)-->
|
||||||
|
<div style="display:none" class="Ffloat_kf">
|
||||||
|
<div class="fkf_top">
|
||||||
|
<div style="cursor: pointer; display: none;" id="bridgehead">
|
||||||
|
</div>
|
||||||
|
<div id="BizQQWPA"></div>
|
||||||
|
<div onClick="showModel(modelsever);" style="cursor: pointer;" class="qq_hover" id="qqTalk_head">
|
||||||
|
</div>
|
||||||
|
<div id="BizQQWPAB" class="sh">
|
||||||
|
</div>
|
||||||
|
<div id="bdBridge">
|
||||||
|
<a href="javascript:NTKF.im_openInPageChat()"> <img width="75" height="37" src="../images/zx.jpg" /></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="fkf_bottom">
|
||||||
|
<img width="92" height="82" alt="Darry Ring 官方微信" src="../images/to_erwei.jpg" />
|
||||||
|
<a href="#"> <img width="92" height="26" src="../images/db.jpg" /></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--新版右边客服start-->
|
||||||
|
<!--右边漂浮悬挂大的-->
|
||||||
|
<div class="float_big">
|
||||||
|
<div class="floatbig_hide fr"></div>
|
||||||
|
<div class="floatbig_center">
|
||||||
|
<!--客服-->
|
||||||
|
<div onClick="javascript:void(0)" id="Bearonline" class="floatbig_center-kf"></div>
|
||||||
|
<!--客服end-->
|
||||||
|
<!--定制咨询-->
|
||||||
|
<div id="dzzxonline" class="floatbig_center-zx">
|
||||||
|
<a href="javascript:showModel(modelsever);"></a>
|
||||||
|
</div>
|
||||||
|
<!--定制咨询end-->
|
||||||
|
<img src="../images/ew.jpg" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--右边漂浮悬挂大的end-->
|
||||||
|
<!--右边漂浮悬挂小的-->
|
||||||
|
<div class="float_small">
|
||||||
|
<div class="floatbig_show fr"></div>
|
||||||
|
<div class="floatbig_center">
|
||||||
|
<!--客服-->
|
||||||
|
<div onClick="javascript:void(0)" class="floatsmall_center-kf fr"></div>
|
||||||
|
<!--客服end-->
|
||||||
|
<!--定制咨询-->
|
||||||
|
<div class="floatsmall_center-zx fr">
|
||||||
|
<a href="javascript:showModel(modelsever);"></a>
|
||||||
|
</div>
|
||||||
|
<!--定制咨询end-->
|
||||||
|
<!--二维码-->
|
||||||
|
<div class="floatsmall_erwei fr">
|
||||||
|
<a href="#"></a>
|
||||||
|
</div>
|
||||||
|
<!--二维码end-->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--右边漂浮悬挂小的end-->
|
||||||
|
<!--返回顶部-->
|
||||||
|
<div class="comeback" style="display: block;"></div>
|
||||||
|
<!--返回顶部end-->
|
||||||
|
<!--新版右边客服end-->
|
||||||
|
<div style="position: fixed; cursor: pointer; right: 6px; top: 289px; padding-bottom: 152px; z-index: 9999; width: 19px; height: 103px; display: none;" onClick="openserver();" id="openbnt">
|
||||||
|
<img width="19" height="103" src="../images/server_03.jpg" />
|
||||||
|
</div>
|
||||||
|
<div class="news_tc">
|
||||||
|
<div class="newtc_left">
|
||||||
|
</div>
|
||||||
|
<div class="newtc_right">
|
||||||
|
<span style="cursor: pointer" class="sszs">稍后再说</span>
|
||||||
|
<span class="xzzx"><a onClick="showxiaon()" style="cursor: pointer" id="chatnow"> 现在咨询</a></span>
|
||||||
|
<div style="cursor: pointer" class="tocclose">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="mask" id="masks">
|
||||||
|
</div>
|
||||||
|
<div style="display:none;" class="modelsever" id="modelsever">
|
||||||
|
<div class="cs_top">
|
||||||
|
<div class="cs_topcenter">
|
||||||
|
<div style="width:300px; height:40px; line-height:40px; float:left; display:inline-block; ">
|
||||||
|
顾客常见疑问
|
||||||
|
</div>
|
||||||
|
<div style="width:385px; height:20px; float:left; text-align:right; padding-top:20px;">
|
||||||
|
<img width="55" height="9" style="cursor: pointer;" onClick="CloseMaskser()" src="../images/popup_window_btn_close.gif" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="cs_content clear">
|
||||||
|
<div id="box1" class="box1">
|
||||||
|
<div onClick="contenttxt(1,1)" id="content_title_11" class="content_title">
|
||||||
|
<span style="margin-top:8px;">Q:Darry Ring 是否有实体店?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_1" class="content_txt">
|
||||||
|
<span style="margin-top:1px;">A:DR公司总部在香港,目前内地深圳市、北京市、重庆市、广州市、上海市、武汉市、南京市、长沙市设有实体店,支持到店订购,也支持全国在线官网订购。同时目前其他一线城市公司已在考察选址阶段,将陆续开设店面。</span>
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(1,2)" id="content_title_12" class="content_title">
|
||||||
|
<span style="margin-top:8px;">Q:实体店具体位置?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_2" class="content_txt">
|
||||||
|
<span style="margin-top:1px;">A:深圳实体店地址:深圳南山区世界之窗旁欧陆小镇4号楼Darry Ring (地铁罗宝线世界之窗I出口)深圳店联系方式:0755-86621782。<p></p> 北京实体店地址:北京东二环朝阳门桥银河SOHO中心B座负一层2-109 (朝阳门地铁G出口) 北京店联系方式:010-59576758。<p></p> 上海实体店地址:上海长宁区淮海西路570号红坊创意园区G-108栋(近虹桥路) 上海店联系方式:021-60934520。<p></p> 广州实体店地址:广州市天河区天河北路233号中信广场商场136单元 广州店联系方式:020-38836315。<p></p> 重庆实体店地址:重庆市渝中区解放碑步行街民族路188号环球金融中心(WFC)LG-B02A 重庆店联系方式:023-63710835。<p></p> 武汉实体店地址:武汉市洪山区光谷意大利风情街5号楼一层51021号 武汉店联系方式:027-87688895。<p></p> 南京实体店地址:南京市长江路288号1912街区17号楼一层 南京店联系方式:025-83613520。<p></p> 长沙实体店地址:长沙市开福区中山路589号万达百货商场2楼 长沙店联系方式:0731-83878575。<p></p> 全国400客服热线:400 01 13520。</span>
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(1,3)" id="content_title_13" class="content_title">
|
||||||
|
<span style="margin-top:8px;">Q:到店订购和官网订购的价格一致吗?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_3" class="content_txt">
|
||||||
|
<span style="margin-top:1px;">A:DR的所有商品,到店订购和官网订购的时间周期,价格,质量及售后服务均一致。</span>
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(1,4)" id="content_title_14" class="content_title">
|
||||||
|
<span style="margin-top:8px;">Q:价格是否有折扣优惠?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_4" class="content_txt">
|
||||||
|
<span style="margin-top:1px;">A:DR的品牌寓意为一生唯一真爱,大多是用作见证彼此求婚或结婚这一神圣时刻,所以所有商品都是常年任何节假日没有折扣活动,就像彼此一生唯一真爱的承诺及永恒的爱情,永不打折。</span>
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(1,5)" id="content_title_15" class="content_title">
|
||||||
|
<span style="margin-top:8px;">Q:为什么在官网上输入姓名身份证号后看不到款式?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_5" class="content_txt">
|
||||||
|
<span style="margin-top:1px;">A:www.darryring.com 官网首页点击—求婚钻戒,进入页面后不需要填写任何信息,移动鼠标到最下方,就可以看到Darry Ring女戒的所有款式。</span>
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(1,6)" id="content_title_16" class="content_title">
|
||||||
|
<span style="margin-top:8px;">Q:到实体店是否可以立刻拿到戒指?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_6" class="content_txt">
|
||||||
|
<span style="margin-top:1px;">A:您好,DR的所有商品都是需要根据您选择的款式、手寸大小及刻字信息来定制。实体店仅提供款式体验及预订,与官网购买的定制时间是一致的,可于15-20个工作日内送到或自取。</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="box2" class="box2">
|
||||||
|
<div onClick="contenttxt(2,1)" id="content_title_21" class="content_title"></div>
|
||||||
|
<div id="content_title2_1" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(2,2)" id="content_title_22" class="content_title"></div>
|
||||||
|
<div id="content_title2_2" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(2,3)" id="content_title_23" class="content_title"></div>
|
||||||
|
<div id="content_title2_3" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(2,4)" id="content_title_24" class="content_title"></div>
|
||||||
|
<div id="content_title2_4" class="content_txt">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="box3" class="box3">
|
||||||
|
<div onClick="contenttxt(3,1)" id="content_title_31" class="content_title"></div>
|
||||||
|
<div id="content_title3_1" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(3,2)" id="content_title_32" class="content_title"></div>
|
||||||
|
<div id="content_title3_2" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(3,3)" id="content_title_33" class="content_title"></div>
|
||||||
|
<div id="content_title3_3" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(3,4)" id="content_title_34" class="content_title"></div>
|
||||||
|
<div id="content_title3_4" class="content_txt"></div>
|
||||||
|
</div>
|
||||||
|
<div id="box4" class="box4">
|
||||||
|
<div onClick="contenttxt(4,1)" id="content_title_41" class="content_title"></div>
|
||||||
|
<div id="content_title4_1" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(4,2)" id="content_title_42" class="content_title"></div>
|
||||||
|
<div id="content_title4_2" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(4,3)" id="content_title_43" class="content_title"></div>
|
||||||
|
<div id="content_title4_3" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(4,4)" id="content_title_44" class="content_title"></div>
|
||||||
|
<div id="content_title4_4" class="content_txt"></div>
|
||||||
|
</div>
|
||||||
|
<div id="box5" class="box5">
|
||||||
|
<div onClick="contenttxt(5,1)" id="content_title_51" class="content_title"></div>
|
||||||
|
<div id="content_title5_1" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(5,2)" id="content_title_52" class="content_title"></div>
|
||||||
|
<div id="content_title5_2" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(5,3)" id="content_title_53" class="content_title"></div>
|
||||||
|
<div id="content_title5_3" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(5,4)" id="content_title_54" class="content_title"></div>
|
||||||
|
<div id="content_title5_4" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(5,5)" id="content_title_55" class="content_title"></div>
|
||||||
|
<div id="content_title5_5" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(5,6)" id="content_title_56" class="content_title"></div>
|
||||||
|
<div id="content_title5_6" class="content_txt">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="box6" class="box6">
|
||||||
|
<div onClick="contenttxt(6,1)" id="content_title_61" class="content_title"></div>
|
||||||
|
<div id="content_title6_1" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(6,2)" id="content_title_62" class="content_title"></div>
|
||||||
|
<div id="content_title6_2" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(6,3)" id="content_title_63" class="content_title"></div>
|
||||||
|
<div id="content_title6_3" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(6,4)" id="content_title_64" class="content_title"></div>
|
||||||
|
<div id="content_title6_4" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(6,5)" id="content_title_65" class="content_title"></div>
|
||||||
|
<div id="content_title6_5" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(6,6)" id="content_title_66" class="content_title"></div>
|
||||||
|
<div id="content_title6_6" class="content_txt">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="box7" class="box7">
|
||||||
|
<div onClick="contenttxt(7,1)" id="content_title_71" class="content_title"></div>
|
||||||
|
<div id="content_title7_1" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(7,2)" id="content_title_72" class="content_title"></div>
|
||||||
|
<div id="content_title7_2" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(7,3)" id="content_title_73" class="content_title"></div>
|
||||||
|
<div id="content_title7_3" class="content_txt">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript">
|
||||||
|
function showbox(id) {
|
||||||
|
getQeestion(id);
|
||||||
|
for (var i = 1; i <= 8; i++) {
|
||||||
|
if (i == id) {
|
||||||
|
showdiv(id);
|
||||||
|
} else {
|
||||||
|
hidediv(i);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function contenttxt(id, sid) {
|
||||||
|
for (var i = 1; i <= 7; i++) {
|
||||||
|
if (i == id) {
|
||||||
|
showtxt(id, sid);
|
||||||
|
} else {
|
||||||
|
hidetxt(i, sid);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
function showtxt(id, sid) {
|
||||||
|
var objtitle = $("#content_title" + id + "_" + sid);
|
||||||
|
|
||||||
|
if (objtitle.css("display") == "none") {
|
||||||
|
objtitle.show("fast");
|
||||||
|
} else {
|
||||||
|
|
||||||
|
hidetxt(id, sid);
|
||||||
|
}
|
||||||
|
//$("#"+id).show("fast");
|
||||||
|
}
|
||||||
|
|
||||||
|
function hidetxt(id, sid) {
|
||||||
|
var objtitle = $("#content_title" + id + "_" + sid);
|
||||||
|
objtitle.hide("fast");
|
||||||
|
}
|
||||||
|
|
||||||
|
function hidediv(id) {
|
||||||
|
$("#box" + id).hide("fast");
|
||||||
|
|
||||||
|
$("#li" + id).css({
|
||||||
|
"font-size": "14px",
|
||||||
|
"color": "#7d7d7d"
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function showdiv(id) {
|
||||||
|
if ($("#box" + id).css("display") == "none") {
|
||||||
|
$("#box" + id).show("fast");
|
||||||
|
$("#li" + id).css({
|
||||||
|
"font-size": "18px",
|
||||||
|
"color": "#000000"
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
function showMask() {
|
||||||
|
$("#masks").css("height", $(document).height());
|
||||||
|
$("#masks").css("width", $(document).width());
|
||||||
|
$("#masks").fadeIn();
|
||||||
|
}
|
||||||
|
|
||||||
|
function showModel(divName) {
|
||||||
|
showMask();
|
||||||
|
/* var top = ($(window).height() - $(divName).height()) / 5;
|
||||||
|
var left = ($(window).width() - $(divName).width()) / 2;
|
||||||
|
var scrollTop = $(document).scrollTop();
|
||||||
|
var scrollLeft = $(document).scrollLeft();*/
|
||||||
|
$(divName).fadeIn();
|
||||||
|
}
|
||||||
|
|
||||||
|
function CloseMaskser() {
|
||||||
|
|
||||||
|
$("#modelsever").fadeOut("slow");
|
||||||
|
$("#masks").fadeOut("slow");
|
||||||
|
$("#mask").fadeOut("slow");
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
||||||
|
|
@ -0,0 +1,643 @@
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" class="hb-loaded">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<title>个人中心 - 首页</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<link href="../css/same.css?v=1.3.7.2" type="text/css" rel="stylesheet" />
|
||||||
|
<link href="../css/dr.css?v=1.3.5.0" type="text/css" rel="stylesheet" />
|
||||||
|
<link href="../css/member.css?v=1.3.6.0" type="text/css" rel="stylesheet" />
|
||||||
|
<script src="../js/jquery.js" type="text/javascript"></script>
|
||||||
|
<script src="../js/index.js?virsion=1.3.7.2" type="text/javascript"></script>
|
||||||
|
<script type="text/javascript" src="../js/member.js"></script>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<div>
|
||||||
|
<!--头部-->
|
||||||
|
<div class="cmain">
|
||||||
|
<div class="headtop">
|
||||||
|
<!--头部左边-->
|
||||||
|
<div class="top-left fl">
|
||||||
|
<a title="Darry Ring" href="/index"> <img width="187" height="42" alt="Darry Ring官网" src="../images/logo.png" /> </a>
|
||||||
|
<span style="font-weight: normal;">求婚钻戒领导品牌</span>
|
||||||
|
</div>
|
||||||
|
<!--头部左边end-->
|
||||||
|
<!--头部右边-->
|
||||||
|
<div class="top-right fr">
|
||||||
|
<!--登录注册-->
|
||||||
|
<ul class="tright-ul fl">
|
||||||
|
<div id="ctl00_ucheader_pllogin2">
|
||||||
|
<li><a><span id="ctl00_ucheader_lit">KLNgOk</span></a></li>
|
||||||
|
<li> <a href="javascript:logout()" rel="nofollow">退出</a><em>|</em> </li>
|
||||||
|
<li><a target="black" rel="nofollow" href="/member_index">我的DR</a><em>|</em></li>
|
||||||
|
<li class="headed"><em class="icon shooping"></em><a target="black" rel="nofollow" href="/cart">购物车</a><i>(0)</i></li>
|
||||||
|
</div>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<!--头部右边end-->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--头部end-->
|
||||||
|
<!--导航-->
|
||||||
|
<div class="nav">
|
||||||
|
<div class="cmain">
|
||||||
|
<!--导航的左边-->
|
||||||
|
<ul class="nav-ul fl">
|
||||||
|
<li><a href="/index">首页</a> </li>
|
||||||
|
<li><a href="/brand">品牌文化</a> </li>
|
||||||
|
<li><a style="font-family:arial" href="/lists">Darry Ring 求婚钻戒</a>
|
||||||
|
<div class="nav-div">
|
||||||
|
<div class="navdiv_top">
|
||||||
|
<div class="navdiv-right">
|
||||||
|
<p> <a href="/lists"> 查看所有款</a></p>
|
||||||
|
<p> <a href="/dr_series/12_22.html">Forever系列</a></p>
|
||||||
|
<p> <a href="/dr_series/11_20.html">My Heart系列</a></p>
|
||||||
|
<p> <a href="/dr_series/16_30.html">True Love系列</a></p>
|
||||||
|
<p> <a href="/dr_series/15_28.html">I Swear系列</a></p>
|
||||||
|
<p> <a href="/dr_series/13_24.html">Just you系列</a></p>
|
||||||
|
</div>
|
||||||
|
<div class="navdiv-left">
|
||||||
|
<h3> NEW</h3>
|
||||||
|
<a href="/detail"> <img width="138" height="97" src="../images/03wj.jpg" /></a>
|
||||||
|
<div class="more_cp">
|
||||||
|
<a href="/detail">> 了解该系列产品</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="navdiv_bottom"></div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li><a href="/question">常见问题</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--导航end-->
|
||||||
|
<script type="text/javascript">
|
||||||
|
function logout() {
|
||||||
|
if (window.confirm('确定退出吗?')) {
|
||||||
|
|
||||||
|
$.get("/nAPI/QuitExit.ashx", function(data) {
|
||||||
|
window.location.href = "/";
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<div class="cort">
|
||||||
|
<div class="cort">
|
||||||
|
<div class="tobuy cmain">
|
||||||
|
<div class="cmain mb_back">
|
||||||
|
<div class="zbk_top spalid">
|
||||||
|
<span>您当前的位置:</span>
|
||||||
|
<span id="ctl00_content_website_SiteMapPath1"><a href="#ctl00_content_website_SiteMapPath1_SkipLink"></a><span> <a target="_blank" href="/index">Darry Ring</a> </span><span> <em>></em> </span><span> <span>我的DR</span> </span>
|
||||||
|
<a id="ctl00_content_website_SiteMapPath1_SkipLink"></a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div class="member_cort">
|
||||||
|
<div class="member_cort-left fl">
|
||||||
|
<!--我的DR-->
|
||||||
|
<div class="member_cortleft-tittle">
|
||||||
|
<i class="mb_home"></i>
|
||||||
|
<a rel="nofollow" href="/member_index">我的DR</a>
|
||||||
|
</div>
|
||||||
|
<!--我的DR end-->
|
||||||
|
<ul class="member_cort-ul">
|
||||||
|
<li>
|
||||||
|
<h3> -订单中心-</h3>
|
||||||
|
<ul class="member_ul-dr">
|
||||||
|
<li id="ctl00_content_ucmemberleft_order"><a rel="nofollow" href="/member_order">我的订单</a></li>
|
||||||
|
<li id="ctl00_content_ucmemberleft_ask"><a rel="nofollow" href="/member/myevaluate">我要评价</a></li>
|
||||||
|
<li id="ctl00_content_ucmemberleft_cart"><a rel="nofollow" href="/cart" target="_blank">我的购物车</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<h3> -帐户管理-</h3>
|
||||||
|
<ul class="member_ul-dr">
|
||||||
|
<li id="ctl00_content_ucmemberleft_myinfo"><a rel="nofollow" href="/member_info">个人信息</a></li>
|
||||||
|
<li id="ctl00_content_ucmemberleft_password"><a rel="nofollow" href="/member_pwd">修改密码</a></li>
|
||||||
|
<li id="ctl00_content_ucmemberleft_address"><a rel="nofollow" href="/member_addr">收货地址</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<!--右边的主要内容-->
|
||||||
|
<div class="member_cort-right fr">
|
||||||
|
<!--我的dr首页-->
|
||||||
|
<div class="member_my_index">
|
||||||
|
<!--第一块-->
|
||||||
|
<div class="member_cortr-first">
|
||||||
|
<!--左边-->
|
||||||
|
<div class="member_cortr-first-left fl">
|
||||||
|
<!--名字-->
|
||||||
|
<div class="member_first-left-top">
|
||||||
|
<div class="mb_theleft fl">
|
||||||
|
<span>您好!</span>
|
||||||
|
<a href="/member_info">(个人信息完善)</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--名字end-->
|
||||||
|
<!--订单提醒-->
|
||||||
|
<div class="member_first-left-sec">
|
||||||
|
<div class="mb_theright-sec fl">
|
||||||
|
<p> <span>订单提醒:</span> <a href="/member_order"><span class="vtop">订单信息</span>(0)</a> <a href="javascript:void(0)"><span class="vtop">待评价</span>(0)</a> </p>
|
||||||
|
</div>
|
||||||
|
<div class="mb_theright fl">
|
||||||
|
<p> <span>安全级别:</span> <em class="mb_red-color" id="rou">弱</em> <em id="zhong" class="mb_red-color">中</em> <em id="strong">强</em> </p>
|
||||||
|
<span style="display:none" id="span_pwd">hjl7233163</span>
|
||||||
|
<script type="text/javascript" language="javascript">
|
||||||
|
$(function() {
|
||||||
|
var pwd = document.getElementById("span_pwd").innerHTML;
|
||||||
|
|
||||||
|
if (pwd.length >= 5 && pwd.length < 9) {
|
||||||
|
$("#rou").addClass('mb_red-color');
|
||||||
|
$("#zhong").removeClass('mb_red-color');
|
||||||
|
$("#strong").removeClass('mb_red-color');
|
||||||
|
}
|
||||||
|
if (pwd.length >= 9 && pwd.length < 12) {
|
||||||
|
$("#rou").addClass('mb_red-color');
|
||||||
|
$("#zhong").addClass('mb_red-color');
|
||||||
|
$("#strong").removeClass('mb_red-color');
|
||||||
|
|
||||||
|
}
|
||||||
|
if (pwd.length >= 12 && pwd.length < 20) {
|
||||||
|
$("#rou").addClass('mb_red-color');
|
||||||
|
$("#zhong").addClass('mb_red-color');
|
||||||
|
$("#strong").addClass('mb_red-color');
|
||||||
|
}
|
||||||
|
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<p class="oth_span"> <span>为了您帐户安全,建议进行</span> <a href="/member_pwd">设置</a> </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--订单提醒end-->
|
||||||
|
</div>
|
||||||
|
<!--左边end-->
|
||||||
|
<!--右边-->
|
||||||
|
<div class="member_cortr-first-right fr">
|
||||||
|
<img width="90" height="90" src="../images/mem.jpg" />
|
||||||
|
<p><a href="/member_avatar">编辑个人资料</a></p>
|
||||||
|
</div>
|
||||||
|
<!--右边end-->
|
||||||
|
</div>
|
||||||
|
<!--第一块end-->
|
||||||
|
<!--第二块-->
|
||||||
|
<h3>快捷通道</h3>
|
||||||
|
<!--快捷通道-->
|
||||||
|
<ul class="member_cortr-sec">
|
||||||
|
<li class="mb_border">
|
||||||
|
<div class="member_cortr-sec-left fl"></div>
|
||||||
|
<div class="member_cortr-sec-right fl">
|
||||||
|
<h4><a href="/myorder">订单查询</a></h4>
|
||||||
|
<p>-修改订单</p>
|
||||||
|
<p>-订单详情</p>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<div class="member_cortr-sec-left member_secimg_3 fl"></div>
|
||||||
|
<div class="member_cortr-sec-right fl">
|
||||||
|
<h4><a href="/mypwd">修改密码</a></h4>
|
||||||
|
<p>-手机修改</p>
|
||||||
|
<p>-邮箱修改</p>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
<!--快捷通道end-->
|
||||||
|
<!--第二块end-->
|
||||||
|
<script type="text/javascript" language="javascript">
|
||||||
|
function getPro(id) {
|
||||||
|
if (id == 1) { //热销
|
||||||
|
document.getElementById("u_history").style.display = "block";
|
||||||
|
document.getElementById("u_rx").style.display = "none";
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
</div>
|
||||||
|
<!--我的dr首页end-->
|
||||||
|
</div>
|
||||||
|
<!--右边的主要内容end-->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--底部-->
|
||||||
|
<div class="footer">
|
||||||
|
<!--错误-->
|
||||||
|
<!--提示-->
|
||||||
|
<div class="loverit_word2" style="display: none;">
|
||||||
|
Darry Ring严格规定男士凭身份证一生仅能定制一枚,象征男人一生真爱的最高承诺。输入身份证号码即可查询购买记录。
|
||||||
|
</div>
|
||||||
|
<!--提示end-->
|
||||||
|
<div class="loverit_wrong2" style="display: none;">
|
||||||
|
<p>信息填写不正确,请重新输入。</p>
|
||||||
|
</div>
|
||||||
|
<!--错误end-->
|
||||||
|
<!--验证身份-->
|
||||||
|
<div class="loveit_center">
|
||||||
|
<div class="love_doit2" style="display: none;">
|
||||||
|
<div class="loverit_center2">
|
||||||
|
<div class="loverit_write2">
|
||||||
|
<label>国家/区域:</label>
|
||||||
|
<select id="txtArea" style="vertical-align: middle;height:22px;"> <option value="0">中国大陆</option> <option value="1">中国香港</option> <option value="2">中国澳门</option> <option value="3">中国台湾</option> </select>
|
||||||
|
<label>先生姓名:</label>
|
||||||
|
<input type="text" class="lit_txt" id="textName2" />
|
||||||
|
<label>身份证号码:</label>
|
||||||
|
<input type="text" class="lit_txt" id="textIDCard2" />
|
||||||
|
<span id="btnsub2"></span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--验证身份end-->
|
||||||
|
<div style="clear:both"></div>
|
||||||
|
<div class="cmain">
|
||||||
|
<ul class="Service_ul">
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p>权威认证</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_2">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p> 一钻双证</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_3">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p> 终生保养</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_4">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p> 以小换大</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_5">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p> 15天退换</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_6">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p> 全国免运费</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_7">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p> 全程保险</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<!--条文-->
|
||||||
|
<div class="auto" id="Menu_Service">
|
||||||
|
</div>
|
||||||
|
<div class="tw-foot">
|
||||||
|
<div class="auto" id="Copyright">
|
||||||
|
<p> Copyright © 2017 winner winner,chickdinner !!团队 All Rights Reserved. 闽ICP备11012085号-2.ICP经营许可证闽B2-20140279 </p>
|
||||||
|
<p> 中国互联网违法信息举报中心 | 中国公安网络110报警服务 | 本网站提供所售商品的正式发票 </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="model" id="model">
|
||||||
|
<div class="Prompt" id="Prompt">
|
||||||
|
</div>
|
||||||
|
<span id="log_uid" style="display:none"></span>
|
||||||
|
<span id="log_uname" style="display:none"></span>
|
||||||
|
<span id="log_orderid" style="display:none"></span>
|
||||||
|
<span id="log_price" style="display:none"></span>
|
||||||
|
</div>
|
||||||
|
<!-- <script src="http://wpa.b.qq.com/cgi/wpa.php" charset="utf-8" type="text/javascript"></script> -->
|
||||||
|
<!--客服(2014年8月29日)-->
|
||||||
|
<div style="display:none" class="Ffloat_kf">
|
||||||
|
<div class="fkf_top">
|
||||||
|
<div style="cursor: pointer; display: none;" id="bridgehead">
|
||||||
|
</div>
|
||||||
|
<div id="BizQQWPA"></div>
|
||||||
|
<div onClick="showModel(modelsever);" style="cursor: pointer;" class="qq_hover" id="qqTalk_head">
|
||||||
|
</div>
|
||||||
|
<div id="BizQQWPAB" class="sh">
|
||||||
|
</div>
|
||||||
|
<div id="bdBridge">
|
||||||
|
<a href="javascript:NTKF.im_openInPageChat()"> <img width="75" height="37" src="../images/zx.jpg" /></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="fkf_bottom">
|
||||||
|
<img width="92" height="82" alt="Darry Ring 官方微信" src="../images/to_erwei.jpg" />
|
||||||
|
<a href="#"> <img width="92" height="26" src="../images/db.jpg" /></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--新版右边客服start-->
|
||||||
|
<!--右边漂浮悬挂大的-->
|
||||||
|
<div class="float_big">
|
||||||
|
<div class="floatbig_hide fr"></div>
|
||||||
|
<div class="floatbig_center">
|
||||||
|
<!--客服-->
|
||||||
|
<div onClick="javascript:void(0)" id="Bearonline" class="floatbig_center-kf"></div>
|
||||||
|
<!--客服end-->
|
||||||
|
<!--定制咨询-->
|
||||||
|
<div id="dzzxonline" class="floatbig_center-zx">
|
||||||
|
<a href="javascript:showModel(modelsever);"></a>
|
||||||
|
</div>
|
||||||
|
<!--定制咨询end-->
|
||||||
|
<img src="../images/ew.jpg" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--右边漂浮悬挂大的end-->
|
||||||
|
<!--右边漂浮悬挂小的-->
|
||||||
|
<div class="float_small">
|
||||||
|
<div class="floatbig_show fr"></div>
|
||||||
|
<div class="floatbig_center">
|
||||||
|
<!--客服-->
|
||||||
|
<div onClick="javascript:void(0)" class="floatsmall_center-kf fr"></div>
|
||||||
|
<!--客服end-->
|
||||||
|
<!--定制咨询-->
|
||||||
|
<div class="floatsmall_center-zx fr">
|
||||||
|
<a href="javascript:showModel(modelsever);"></a>
|
||||||
|
</div>
|
||||||
|
<!--定制咨询end-->
|
||||||
|
<!--二维码-->
|
||||||
|
<div class="floatsmall_erwei fr">
|
||||||
|
<a href="#"></a>
|
||||||
|
</div>
|
||||||
|
<!--二维码end-->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--右边漂浮悬挂小的end-->
|
||||||
|
<!--返回顶部-->
|
||||||
|
<div class="comeback" style="display: block;"></div>
|
||||||
|
<!--返回顶部end-->
|
||||||
|
<!--新版右边客服end-->
|
||||||
|
<div style="position: fixed; cursor: pointer; right: 6px; top: 289px; padding-bottom: 152px; z-index: 9999; width: 19px; height: 103px; display: none;" onClick="openserver();" id="openbnt">
|
||||||
|
<img width="19" height="103" src="../images/server_03.jpg" />
|
||||||
|
</div>
|
||||||
|
<div class="news_tc">
|
||||||
|
<div class="newtc_left">
|
||||||
|
</div>
|
||||||
|
<div class="newtc_right">
|
||||||
|
<span style="cursor: pointer" class="sszs">稍后再说</span>
|
||||||
|
<span class="xzzx"><a onClick="showxiaon()" style="cursor: pointer" id="chatnow"> 现在咨询</a></span>
|
||||||
|
<div style="cursor: pointer" class="tocclose">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="mask" id="masks">
|
||||||
|
</div>
|
||||||
|
<div style="display:none;" class="modelsever" id="modelsever">
|
||||||
|
<div class="cs_top">
|
||||||
|
<div class="cs_topcenter">
|
||||||
|
<div style="width:300px; height:40px; line-height:40px; float:left; display:inline-block; ">
|
||||||
|
顾客常见疑问
|
||||||
|
</div>
|
||||||
|
<div style="width:385px; height:20px; float:left; text-align:right; padding-top:20px;">
|
||||||
|
<img width="55" height="9" style="cursor: pointer;" onClick="CloseMaskser()" src="../images/popup_window_btn_close.gif" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="cs_content clear">
|
||||||
|
<div id="box1" class="box1">
|
||||||
|
<div onClick="contenttxt(1,1)" id="content_title_11" class="content_title">
|
||||||
|
<span style="margin-top:8px;">Q:Darry Ring 是否有实体店?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_1" class="content_txt">
|
||||||
|
<span style="margin-top:1px;">A:DR公司总部在香港,目前内地深圳市、北京市、重庆市、广州市、上海市、武汉市、南京市、长沙市设有实体店,支持到店订购,也支持全国在线官网订购。同时目前其他一线城市公司已在考察选址阶段,将陆续开设店面。</span>
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(1,2)" id="content_title_12" class="content_title">
|
||||||
|
<span style="margin-top:8px;">Q:实体店具体位置?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_2" class="content_txt">
|
||||||
|
<span style="margin-top:1px;">A:深圳实体店地址:深圳南山区世界之窗旁欧陆小镇4号楼Darry Ring (地铁罗宝线世界之窗I出口)深圳店联系方式:0755-86621782。<p></p> 北京实体店地址:北京东二环朝阳门桥银河SOHO中心B座负一层2-109 (朝阳门地铁G出口) 北京店联系方式:010-59576758。<p></p> 上海实体店地址:上海长宁区淮海西路570号红坊创意园区G-108栋(近虹桥路) 上海店联系方式:021-60934520。<p></p> 广州实体店地址:广州市天河区天河北路233号中信广场商场136单元 广州店联系方式:020-38836315。<p></p> 重庆实体店地址:重庆市渝中区解放碑步行街民族路188号环球金融中心(WFC)LG-B02A 重庆店联系方式:023-63710835。<p></p> 武汉实体店地址:武汉市洪山区光谷意大利风情街5号楼一层51021号 武汉店联系方式:027-87688895。<p></p> 南京实体店地址:南京市长江路288号1912街区17号楼一层 南京店联系方式:025-83613520。<p></p> 长沙实体店地址:长沙市开福区中山路589号万达百货商场2楼 长沙店联系方式:0731-83878575。<p></p> 全国400客服热线:400 01 13520。</span>
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(1,3)" id="content_title_13" class="content_title">
|
||||||
|
<span style="margin-top:8px;">Q:到店订购和官网订购的价格一致吗?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_3" class="content_txt">
|
||||||
|
<span style="margin-top:1px;">A:DR的所有商品,到店订购和官网订购的时间周期,价格,质量及售后服务均一致。</span>
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(1,4)" id="content_title_14" class="content_title">
|
||||||
|
<span style="margin-top:8px;">Q:价格是否有折扣优惠?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_4" class="content_txt">
|
||||||
|
<span style="margin-top:1px;">A:DR的品牌寓意为一生唯一真爱,大多是用作见证彼此求婚或结婚这一神圣时刻,所以所有商品都是常年任何节假日没有折扣活动,就像彼此一生唯一真爱的承诺及永恒的爱情,永不打折。</span>
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(1,5)" id="content_title_15" class="content_title">
|
||||||
|
<span style="margin-top:8px;">Q:为什么在官网上输入姓名身份证号后看不到款式?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_5" class="content_txt">
|
||||||
|
<span style="margin-top:1px;">A:www.darryring.com 官网首页点击—求婚钻戒,进入页面后不需要填写任何信息,移动鼠标到最下方,就可以看到Darry Ring女戒的所有款式。</span>
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(1,6)" id="content_title_16" class="content_title">
|
||||||
|
<span style="margin-top:8px;">Q:到实体店是否可以立刻拿到戒指?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_6" class="content_txt">
|
||||||
|
<span style="margin-top:1px;">A:您好,DR的所有商品都是需要根据您选择的款式、手寸大小及刻字信息来定制。实体店仅提供款式体验及预订,与官网购买的定制时间是一致的,可于15-20个工作日内送到或自取。</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="box2" class="box2">
|
||||||
|
<div onClick="contenttxt(2,1)" id="content_title_21" class="content_title"></div>
|
||||||
|
<div id="content_title2_1" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(2,2)" id="content_title_22" class="content_title"></div>
|
||||||
|
<div id="content_title2_2" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(2,3)" id="content_title_23" class="content_title"></div>
|
||||||
|
<div id="content_title2_3" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(2,4)" id="content_title_24" class="content_title"></div>
|
||||||
|
<div id="content_title2_4" class="content_txt">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="box3" class="box3">
|
||||||
|
<div onClick="contenttxt(3,1)" id="content_title_31" class="content_title"></div>
|
||||||
|
<div id="content_title3_1" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(3,2)" id="content_title_32" class="content_title"></div>
|
||||||
|
<div id="content_title3_2" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(3,3)" id="content_title_33" class="content_title"></div>
|
||||||
|
<div id="content_title3_3" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(3,4)" id="content_title_34" class="content_title"></div>
|
||||||
|
<div id="content_title3_4" class="content_txt"></div>
|
||||||
|
</div>
|
||||||
|
<div id="box4" class="box4">
|
||||||
|
<div onClick="contenttxt(4,1)" id="content_title_41" class="content_title"></div>
|
||||||
|
<div id="content_title4_1" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(4,2)" id="content_title_42" class="content_title"></div>
|
||||||
|
<div id="content_title4_2" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(4,3)" id="content_title_43" class="content_title"></div>
|
||||||
|
<div id="content_title4_3" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(4,4)" id="content_title_44" class="content_title"></div>
|
||||||
|
<div id="content_title4_4" class="content_txt"></div>
|
||||||
|
</div>
|
||||||
|
<div id="box5" class="box5">
|
||||||
|
<div onClick="contenttxt(5,1)" id="content_title_51" class="content_title"></div>
|
||||||
|
<div id="content_title5_1" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(5,2)" id="content_title_52" class="content_title"></div>
|
||||||
|
<div id="content_title5_2" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(5,3)" id="content_title_53" class="content_title"></div>
|
||||||
|
<div id="content_title5_3" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(5,4)" id="content_title_54" class="content_title"></div>
|
||||||
|
<div id="content_title5_4" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(5,5)" id="content_title_55" class="content_title"></div>
|
||||||
|
<div id="content_title5_5" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(5,6)" id="content_title_56" class="content_title"></div>
|
||||||
|
<div id="content_title5_6" class="content_txt">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="box6" class="box6">
|
||||||
|
<div onClick="contenttxt(6,1)" id="content_title_61" class="content_title"></div>
|
||||||
|
<div id="content_title6_1" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(6,2)" id="content_title_62" class="content_title"></div>
|
||||||
|
<div id="content_title6_2" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(6,3)" id="content_title_63" class="content_title"></div>
|
||||||
|
<div id="content_title6_3" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(6,4)" id="content_title_64" class="content_title"></div>
|
||||||
|
<div id="content_title6_4" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(6,5)" id="content_title_65" class="content_title"></div>
|
||||||
|
<div id="content_title6_5" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(6,6)" id="content_title_66" class="content_title"></div>
|
||||||
|
<div id="content_title6_6" class="content_txt">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="box7" class="box7">
|
||||||
|
<div onClick="contenttxt(7,1)" id="content_title_71" class="content_title"></div>
|
||||||
|
<div id="content_title7_1" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(7,2)" id="content_title_72" class="content_title"></div>
|
||||||
|
<div id="content_title7_2" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(7,3)" id="content_title_73" class="content_title"></div>
|
||||||
|
<div id="content_title7_3" class="content_txt">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript">
|
||||||
|
function showbox(id) {
|
||||||
|
getQeestion(id);
|
||||||
|
for (var i = 1; i <= 8; i++) {
|
||||||
|
if (i == id) {
|
||||||
|
showdiv(id);
|
||||||
|
} else {
|
||||||
|
hidediv(i);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function contenttxt(id, sid) {
|
||||||
|
for (var i = 1; i <= 7; i++) {
|
||||||
|
if (i == id) {
|
||||||
|
showtxt(id, sid);
|
||||||
|
} else {
|
||||||
|
hidetxt(i, sid);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
function showtxt(id, sid) {
|
||||||
|
var objtitle = $("#content_title" + id + "_" + sid);
|
||||||
|
|
||||||
|
if (objtitle.css("display") == "none") {
|
||||||
|
objtitle.show("fast");
|
||||||
|
} else {
|
||||||
|
|
||||||
|
hidetxt(id, sid);
|
||||||
|
}
|
||||||
|
//$("#"+id).show("fast");
|
||||||
|
}
|
||||||
|
|
||||||
|
function hidetxt(id, sid) {
|
||||||
|
var objtitle = $("#content_title" + id + "_" + sid);
|
||||||
|
objtitle.hide("fast");
|
||||||
|
}
|
||||||
|
|
||||||
|
function hidediv(id) {
|
||||||
|
$("#box" + id).hide("fast");
|
||||||
|
|
||||||
|
$("#li" + id).css({
|
||||||
|
"font-size": "14px",
|
||||||
|
"color": "#7d7d7d"
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function showdiv(id) {
|
||||||
|
if ($("#box" + id).css("display") == "none") {
|
||||||
|
$("#box" + id).show("fast");
|
||||||
|
$("#li" + id).css({
|
||||||
|
"font-size": "18px",
|
||||||
|
"color": "#000000"
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
function showMask() {
|
||||||
|
$("#masks").css("height", $(document).height());
|
||||||
|
$("#masks").css("width", $(document).width());
|
||||||
|
$("#masks").fadeIn();
|
||||||
|
}
|
||||||
|
|
||||||
|
function showModel(divName) {
|
||||||
|
showMask();
|
||||||
|
/* var top = ($(window).height() - $(divName).height()) / 5;
|
||||||
|
var left = ($(window).width() - $(divName).width()) / 2;
|
||||||
|
var scrollTop = $(document).scrollTop();
|
||||||
|
var scrollLeft = $(document).scrollLeft();*/
|
||||||
|
$(divName).fadeIn();
|
||||||
|
}
|
||||||
|
|
||||||
|
function CloseMaskser() {
|
||||||
|
|
||||||
|
$("#modelsever").fadeOut("slow");
|
||||||
|
$("#masks").fadeOut("slow");
|
||||||
|
$("#mask").fadeOut("slow");
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
||||||
|
|
@ -0,0 +1,955 @@
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" class="hb-loaded">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<title>个人中心 - 修改资料</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<link href="../css/same.css?v=1.3.7.2" type="text/css" rel="stylesheet" />
|
||||||
|
<link href="../css/same.css?v=1.3.7.2" type="text/css" rel="stylesheet" />
|
||||||
|
<link href="../css/member.css?v=1.3.6.0" type="text/css" rel="stylesheet" />
|
||||||
|
<script src="../js/jquery.js" type="text/javascript"></script>
|
||||||
|
<script src="../js/index.js?virsion=1.3.7.2" type="text/javascript"></script>
|
||||||
|
<script src="../js/year_month_day.js" type="text/javascript"></script>
|
||||||
|
<script type="text/javascript" language="javascript">
|
||||||
|
//市数据加载事件
|
||||||
|
var CityDataLoadEvent = function() {};
|
||||||
|
var DistrictDataLoadEvent = function() {};
|
||||||
|
$(function() {
|
||||||
|
|
||||||
|
$("#nicname").focus(function() {
|
||||||
|
$("#shrid").hide();
|
||||||
|
$("#shry").hide();
|
||||||
|
});
|
||||||
|
$("#telephone").focus(function() {
|
||||||
|
$("#zjid").hide();
|
||||||
|
$("#zjy").hide();
|
||||||
|
});
|
||||||
|
$("#mobile").focus(function() {
|
||||||
|
$("#sjid").hide();
|
||||||
|
$("#sjy").hide();
|
||||||
|
});
|
||||||
|
$("#postcode").focus(function() {
|
||||||
|
$("#postid").hide();
|
||||||
|
$("#posty").hide();
|
||||||
|
});
|
||||||
|
$("#realName").focus(function() {
|
||||||
|
$("#realId").hide();
|
||||||
|
$("#realy").hide();
|
||||||
|
});
|
||||||
|
$("#street").focus(function() {
|
||||||
|
$("#streid").hide();
|
||||||
|
$("#strey").hide();
|
||||||
|
});
|
||||||
|
|
||||||
|
var temail = $("#sp_email").html();
|
||||||
|
if (temail == "") {
|
||||||
|
$("#div_email").show();
|
||||||
|
} else {
|
||||||
|
$("#div_email").hide();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
$("#nicname").blur(function() {
|
||||||
|
var nickname = $("#nicname").val();
|
||||||
|
if (nickname == "") {
|
||||||
|
$("#shrwrong").text("请输入昵称!");
|
||||||
|
$("#shrid").show();
|
||||||
|
return false;
|
||||||
|
} else {
|
||||||
|
$("#shry").show();
|
||||||
|
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
function isEmail(strEmail) {
|
||||||
|
if (strEmail.search(/^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+$/) != -1)
|
||||||
|
return true;
|
||||||
|
else {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$("#mobile").blur(function() {
|
||||||
|
var tel = $("#mobile").val();
|
||||||
|
if (tel == "") {
|
||||||
|
$("#sjwrong").text("请输入手机号!");
|
||||||
|
$("#sjid").show();
|
||||||
|
return false;
|
||||||
|
} else {
|
||||||
|
if (!checkTel(tel)) {
|
||||||
|
$("#sjwrong").text("手机号格式不正确!");
|
||||||
|
$("#sjid").show();
|
||||||
|
} else {
|
||||||
|
$("#sjy").show();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
});
|
||||||
|
$("#postcode").blur(function() {
|
||||||
|
var post = $("#postcode").val();
|
||||||
|
if (!checkcode(post)) {
|
||||||
|
$("#postwrong").text("请输入正确的邮编!");
|
||||||
|
$("#postid").show();
|
||||||
|
return false;
|
||||||
|
} else {
|
||||||
|
$("#posty").show();
|
||||||
|
|
||||||
|
}
|
||||||
|
});
|
||||||
|
$("#street").blur(function() {
|
||||||
|
var stree = $("#street").val();
|
||||||
|
if (stree == "") {
|
||||||
|
$("#strewrong").text("请输入内容!");
|
||||||
|
$("#streid").show();
|
||||||
|
$("#strey").hide();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (stree.length > 250) {
|
||||||
|
$("#strewrong").text("输入内容过长!");
|
||||||
|
$("#streid").show();
|
||||||
|
$("#strey").hide();
|
||||||
|
} else {
|
||||||
|
$("#strey").show();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
$("#realName").blur(function() {
|
||||||
|
var realName = $("#realName").val();
|
||||||
|
if (realName == "") {
|
||||||
|
$("#realwrong").text("请输入姓名!");
|
||||||
|
$("#realId").show();
|
||||||
|
return false;
|
||||||
|
} else {
|
||||||
|
$("#realy").show();
|
||||||
|
|
||||||
|
}
|
||||||
|
});
|
||||||
|
$("#btnsave").click(function() {
|
||||||
|
var email = $("#sp_email").html();
|
||||||
|
var IsUpemail = "0";
|
||||||
|
if (email == "") {
|
||||||
|
email = $("#txtEmail").val();
|
||||||
|
if (!isEmail($("#txtEmail").val())) {
|
||||||
|
alert("邮箱不正确!");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
var IsUpemail = "1";
|
||||||
|
}
|
||||||
|
var realName = $("#realName").val();
|
||||||
|
var gender = $("input:checked").val();
|
||||||
|
var year = $("#selYear option:selected").text();
|
||||||
|
var month = $("#selMonth option:selected").text();
|
||||||
|
var day = $("#selDay option:selected").text();
|
||||||
|
var pro = $("#province option:selected").text();
|
||||||
|
var city = $("#city option:selected").text();
|
||||||
|
var district = $("#district option:selected").text();
|
||||||
|
var address = $("#street").val();
|
||||||
|
var post = $("#postcode").val();
|
||||||
|
var tel = $("#mobile").val();
|
||||||
|
var photo = $("#telephone").val();
|
||||||
|
var nickname = $("#nicname").val();
|
||||||
|
|
||||||
|
if (email == "") {
|
||||||
|
$("#shrwrong1").text("请输入邮箱!");
|
||||||
|
$("#shrid1").show();
|
||||||
|
return false;
|
||||||
|
} else {
|
||||||
|
$("#shry1").show();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (nickname == "") {
|
||||||
|
$("#shrwrong").text("请输入昵称!");
|
||||||
|
$("#shrid").show();
|
||||||
|
return false;
|
||||||
|
} else {
|
||||||
|
$("#shry").show();
|
||||||
|
|
||||||
|
}
|
||||||
|
if (realName == "") {
|
||||||
|
$("#realwrong").text("请输入姓名!");
|
||||||
|
$("#realId").show();
|
||||||
|
return false;
|
||||||
|
} else {
|
||||||
|
$("#realy").show();
|
||||||
|
|
||||||
|
}
|
||||||
|
if (!checkcode(post)) {
|
||||||
|
$("#postwrong").text("请输入正确的邮编!");
|
||||||
|
$("#postid").show();
|
||||||
|
return false;
|
||||||
|
} else {
|
||||||
|
$("#postid").hide();
|
||||||
|
$("#posty").show();
|
||||||
|
|
||||||
|
}
|
||||||
|
if (address == "") {
|
||||||
|
$("#strewrong").text("请输入内容!");
|
||||||
|
$("#streid").show();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (district == "请选择区县") {
|
||||||
|
$("#strewrong").text("请选择区县!");
|
||||||
|
$("#strey").hide();
|
||||||
|
$("#streid").show();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (address.length > 250) {
|
||||||
|
$("#strewrong").text("输入内容过长!");
|
||||||
|
$("#streid").show();
|
||||||
|
return false;
|
||||||
|
} else {
|
||||||
|
$("#strey").show();
|
||||||
|
}
|
||||||
|
if (tel == "") {
|
||||||
|
$("#sjwrong").text("请输入手机号!");
|
||||||
|
$("#sjid").show();
|
||||||
|
return false;
|
||||||
|
} else {
|
||||||
|
if (!checkTel(tel)) {
|
||||||
|
$("#sjwrong").text("手机号格式不正确!");
|
||||||
|
$("#sjid").show();
|
||||||
|
} else {
|
||||||
|
$("#sjy").show();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$.post("/API/MemberAPI.ashx", {
|
||||||
|
action: 'update',
|
||||||
|
email: email,
|
||||||
|
IsUpemail: IsUpemail,
|
||||||
|
nickname: nickname,
|
||||||
|
realName: realName,
|
||||||
|
gender: gender,
|
||||||
|
year: year,
|
||||||
|
month: month,
|
||||||
|
day: day,
|
||||||
|
pro: pro,
|
||||||
|
city: city,
|
||||||
|
dis: district,
|
||||||
|
address: address,
|
||||||
|
post: post,
|
||||||
|
tel: tel,
|
||||||
|
photo: photo
|
||||||
|
}, function(data) {
|
||||||
|
if (data == "ok") {
|
||||||
|
alert("保存成功!");
|
||||||
|
window.location.reload();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (data == "false") {
|
||||||
|
alert("保存失败!");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (data == "repeat") {
|
||||||
|
alert("手机号已注册过!");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (data == "erepeat") {
|
||||||
|
alert("邮箱已注册过!");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
function bindDdlData(cid, data) {
|
||||||
|
$(cid).append($("<option value=\"" + data.code + "\">" + data.name + "</option>"));
|
||||||
|
}
|
||||||
|
CityDataLoadEvent = function() {
|
||||||
|
$("#city option").each(function() {
|
||||||
|
if (data.city.indexOf($(this).text()) != -1) {
|
||||||
|
$("#city").val($(this).val());
|
||||||
|
$("#city").change();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
DistrictDataLoadEvent = function() {
|
||||||
|
$("#district option").each(function() {
|
||||||
|
if (data.city.indexOf($(this).text()) != -1) {
|
||||||
|
$("#district").val($(this).val());
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
$(function() {
|
||||||
|
var selYear = window.document.getElementById("selYear");
|
||||||
|
var selMonth = window.document.getElementById("selMonth");
|
||||||
|
var selDay = window.document.getElementById("selDay");
|
||||||
|
// 新建一个DateSelector类的实例,将三个select对象传进去
|
||||||
|
var date = '';
|
||||||
|
var year = '';
|
||||||
|
var mon = '';
|
||||||
|
var day = '';
|
||||||
|
if (date != '') {
|
||||||
|
var d = date.split("-");
|
||||||
|
year = d[0];
|
||||||
|
mon = d[1];
|
||||||
|
day = d[2];
|
||||||
|
} else {
|
||||||
|
year = 2014;
|
||||||
|
mon = 12;
|
||||||
|
day = 12;
|
||||||
|
}
|
||||||
|
|
||||||
|
new DateSelector(selYear, selMonth, selDay, year, mon, day);
|
||||||
|
});
|
||||||
|
|
||||||
|
function setAddress(data) {
|
||||||
|
|
||||||
|
$("#province option").each(function() {
|
||||||
|
if (data.indexOf($(this).text()) != -1) {
|
||||||
|
$("#province").val($(this).val());
|
||||||
|
$("#province").change();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
CityDataLoadEvent = function() {
|
||||||
|
$("#city option").each(function() {
|
||||||
|
if (data.indexOf($(this).text()) != -1) {
|
||||||
|
$("#city").val($(this).val());
|
||||||
|
$("#city").change();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
DistrictDataLoadEvent = function() {
|
||||||
|
$("#district option").each(function() {
|
||||||
|
if (data.indexOf($(this).text()) != -1) {
|
||||||
|
$("#district").val($(this).val());
|
||||||
|
var address = "";
|
||||||
|
$("#street").val(address.substr(address.lastIndexOf($(this).text())).replace($(this).text(), ""));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
}
|
||||||
|
//
|
||||||
|
function checkTel(tel) {
|
||||||
|
var mobile = /^1[3-8]+\d{9}$/;
|
||||||
|
return mobile.test(tel);
|
||||||
|
}
|
||||||
|
//
|
||||||
|
function checkcode(zipcode) {
|
||||||
|
var MyNumber = /^[0-9]{1}[0-9]{5}$/;
|
||||||
|
return MyNumber.test(zipcode);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
function checkphone(tel) {
|
||||||
|
var mobile = /^(\d{3,4}-?)?\d{7,9}$/;
|
||||||
|
return mobile.test(tel);
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<form id="aspnetForm" action="/member_info" method="post" name="aspnetForm">
|
||||||
|
</form>
|
||||||
|
<div>
|
||||||
|
|
||||||
|
<!--头部-->
|
||||||
|
<div class="cmain">
|
||||||
|
<div class="headtop">
|
||||||
|
<!--头部左边-->
|
||||||
|
<div class="top-left fl">
|
||||||
|
<a title="Darry Ring" href="/index"> <img width="187" height="42" alt="Darry Ring官网" src="../images/logo.png" /> </a>
|
||||||
|
<span style="font-weight: normal;">求婚钻戒领导品牌</span>
|
||||||
|
</div>
|
||||||
|
<!--头部左边end-->
|
||||||
|
<!--头部右边-->
|
||||||
|
<div class="top-right fr">
|
||||||
|
<!--登录注册-->
|
||||||
|
<ul class="tright-ul fl">
|
||||||
|
<div id="ctl00_ucheader_pllogin2">
|
||||||
|
<li><a><span id="ctl00_ucheader_lit">KLNgOk</span></a></li>
|
||||||
|
<li> <a href="javascript:logout()" rel="nofollow">退出</a><em>|</em> </li>
|
||||||
|
<li><a target="black" rel="nofollow" href="/member_index">我的DR</a><em>|</em></li>
|
||||||
|
<li class="headed"><em class="icon shooping"></em><a target="black" rel="nofollow" href="/cart">购物车</a><i>(0)</i></li>
|
||||||
|
</div>
|
||||||
|
</ul>
|
||||||
|
<!--语言选择-->
|
||||||
|
|
||||||
|
<!--搜索框-->
|
||||||
|
<div style="display:none;" class="search">
|
||||||
|
<input type="text" placeholder="求婚钻戒" class="txt1" />
|
||||||
|
<div onClick="showSearch()" class="icon toser">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--头部右边end-->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--头部end-->
|
||||||
|
<!--导航-->
|
||||||
|
<div class="nav">
|
||||||
|
<div class="cmain">
|
||||||
|
<!--导航的左边-->
|
||||||
|
<ul class="nav-ul fl">
|
||||||
|
<li><a href="/index">首页</a> </li>
|
||||||
|
<li><a href="/brand">品牌文化</a> </li>
|
||||||
|
<li><a style="font-family:arial" href="/lists">Darry Ring 求婚钻戒</a>
|
||||||
|
<div class="nav-div">
|
||||||
|
<div class="navdiv_top">
|
||||||
|
<div class="navdiv-right">
|
||||||
|
<p> <a href="/lists"> 查看所有款</a></p>
|
||||||
|
<p> <a href="/dr_series/12_22.html">Forever系列</a></p>
|
||||||
|
<p> <a href="/dr_series/11_20.html">My Heart系列</a></p>
|
||||||
|
<p> <a href="/dr_series/16_30.html">True Love系列</a></p>
|
||||||
|
<p> <a href="/dr_series/15_28.html">I Swear系列</a></p>
|
||||||
|
<p> <a href="/dr_series/13_24.html">Just you系列</a></p>
|
||||||
|
</div>
|
||||||
|
<div class="navdiv-left">
|
||||||
|
<h3> NEW</h3>
|
||||||
|
<a href="/detail"> <img width="138" height="97" src="../images/03wj.jpg" /></a>
|
||||||
|
<div class="more_cp">
|
||||||
|
<a href="/detail">> 了解该系列产品</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="navdiv_bottom"></div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li><a href="/question">常见问题</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--导航end-->
|
||||||
|
<script type="text/javascript">
|
||||||
|
function logout() {
|
||||||
|
if (window.confirm('确定退出吗?')) {
|
||||||
|
|
||||||
|
$.get("/nAPI/QuitExit.ashx", function(data) {
|
||||||
|
window.location.href = "/";
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<div class="cort">
|
||||||
|
<!--中间-->
|
||||||
|
<div class="cort">
|
||||||
|
<!--内容-->
|
||||||
|
<div class="cmain mb_back">
|
||||||
|
<div class="zbk_top spalid">
|
||||||
|
<span>您当前的位置:</span>
|
||||||
|
<span id="ctl00_content_website_SiteMapPath1"><a href="#ctl00_content_website_SiteMapPath1_SkipLink"></a><span> <a target="_blank" href="/index">Darry Ring</a> </span><span> <em>></em> </span><span> <a target="_blank" href="/member_index">我的DR</a> </span><span> <em>></em> </span><span> <span>个人信息</span> </span>
|
||||||
|
<a id="ctl00_content_website_SiteMapPath1_SkipLink"></a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<!--中间内容-->
|
||||||
|
<div class="member_cort">
|
||||||
|
<!--左边树-->
|
||||||
|
<div class="member_cort-left fl">
|
||||||
|
<!--我的DR-->
|
||||||
|
<div class="member_cortleft-tittle">
|
||||||
|
<i class="mb_home"></i>
|
||||||
|
<a rel="nofollow" href="/member_index">我的DR</a>
|
||||||
|
</div>
|
||||||
|
<!--我的DR end-->
|
||||||
|
<ul class="member_cort-ul">
|
||||||
|
<li>
|
||||||
|
<h3> -订单中心-</h3>
|
||||||
|
<ul class="member_ul-dr">
|
||||||
|
<li id="ctl00_content_treeId_order"><a rel="nofollow" href="/member_order">我的订单</a></li>
|
||||||
|
<li id="ctl00_content_treeId_ask"><a rel="nofollow" href="/member/myevaluate">我要评价</a></li>
|
||||||
|
<li id="ctl00_content_treeId_cart"><a rel="nofollow" href="/cart" target="_blank">我的购物车</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<h3> -帐户管理-</h3>
|
||||||
|
<ul class="member_ul-dr">
|
||||||
|
<li class="speacil_color" id="ctl00_content_treeId_myinfo"><a rel="nofollow" href="/member_info">个人信息</a></li>
|
||||||
|
<li id="ctl00_content_treeId_password"><a rel="nofollow" href="/member_pwd">修改密码</a></li>
|
||||||
|
<li id="ctl00_content_treeId_address"><a rel="nofollow" href="/member_addr">收货地址</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<!--左边树end-->
|
||||||
|
<!--右边的主要内容-->
|
||||||
|
<div class="member_cort-right fr">
|
||||||
|
<!--我的个人信息-->
|
||||||
|
<div class="member_person">
|
||||||
|
<div class="member_ask-tittle">
|
||||||
|
<h4> 我的个人信息</h4>
|
||||||
|
<p> 为了能给您提供个性化服务,请完善您的基本资料。</p>
|
||||||
|
</div>
|
||||||
|
<!--个人信息填写-->
|
||||||
|
<div class="member_person-cort">
|
||||||
|
<!--左边-->
|
||||||
|
<div class="member_person-cort_left">
|
||||||
|
|
||||||
|
<div class="person-cort_left-write">
|
||||||
|
<span>昵 称:</span>
|
||||||
|
<input type="text" value="KLNgOk" class="write_text" id="nicname" />
|
||||||
|
<span style="display: none" id="shrid"><i class="writer_wrong"></i><em id="shrwrong" class="writer_word"></em></span>
|
||||||
|
<span id="shry" style="display: none"><i class="writer_right"> </i></span>
|
||||||
|
</div>
|
||||||
|
<div class="person-cort_left-write">
|
||||||
|
<span>真实姓名:</span>
|
||||||
|
<input type="text" value="" class="write_text" id="realName" />
|
||||||
|
<span style="display: none" id="realId"><i class="writer_wrong"></i><em id="realwrong" class="writer_word"></em></span>
|
||||||
|
<span id="realy" style="display: none"><i class="writer_right"> </i></span>
|
||||||
|
</div>
|
||||||
|
<div class="person-cort_left-write">
|
||||||
|
<span>性 别:</span>
|
||||||
|
<input type="radio" id="ctl00_content_nan" name="ctl00$content$sex" value="男" />
|
||||||
|
<label for="nan"> 男</label>
|
||||||
|
<input type="radio" checked="checked" id="ctl00_content_nv" name="ctl00$content$sex" value="女" />
|
||||||
|
<label for="nv"> 女</label>
|
||||||
|
</div>
|
||||||
|
<div class="person-cort_left-write">
|
||||||
|
<span>出生日期:</span>
|
||||||
|
<select id="selYear"> <option value="2015">2015</option><option value="2014">2014</option><option value="2013">2013</option><option value="2012">2012</option><option value="2011">2011</option><option value="2010">2010</option><option value="2009">2009</option><option value="2008">2008</option><option value="2007">2007</option><option value="2006">2006</option><option value="2005">2005</option><option value="2004">2004</option><option value="2003">2003</option><option value="2002">2002</option><option value="2001">2001</option><option value="2000">2000</option><option value="1999">1999</option><option value="1998">1998</option><option value="1997">1997</option><option value="1996">1996</option><option value="1995">1995</option><option value="1994">1994</option><option value="1993">1993</option><option value="1992">1992</option><option value="1991">1991</option><option value="1990">1990</option><option value="1989">1989</option><option value="1988">1988</option><option value="1987">1987</option><option value="1986">1986</option><option value="1985">1985</option><option value="1984">1984</option><option value="1983">1983</option><option value="1982">1982</option><option value="1981">1981</option><option value="1980">1980</option><option value="1979">1979</option><option value="1978">1978</option><option value="1977">1977</option><option value="1976">1976</option><option value="1975">1975</option><option value="1974">1974</option><option value="1973">1973</option><option value="1972">1972</option><option value="1971">1971</option><option value="1970">1970</option><option value="1969">1969</option><option value="1968">1968</option><option value="1967">1967</option><option value="1966">1966</option><option value="1965">1965</option><option value="1964">1964</option><option value="1963">1963</option><option value="1962">1962</option><option value="1961">1961</option><option value="1960">1960</option><option value="1959">1959</option><option value="1958">1958</option><option value="1957">1957</option><option value="1956">1956</option><option value="1955">1955</option><option value="1954">1954</option><option value="1953">1953</option><option value="1952">1952</option><option value="1951">1951</option><option value="1950">1950</option><option value="1949">1949</option><option value="1948">1948</option><option value="1947">1947</option><option value="1946">1946</option><option value="1945">1945</option><option value="1944">1944</option><option value="1943">1943</option><option value="1942">1942</option><option value="1941">1941</option><option value="1940">1940</option><option value="1939">1939</option><option value="1938">1938</option><option value="1937">1937</option><option value="1936">1936</option><option value="1935">1935</option><option value="1934">1934</option><option value="1933">1933</option><option value="1932">1932</option><option value="1931">1931</option><option value="1930">1930</option><option value="1929">1929</option><option value="1928">1928</option><option value="1927">1927</option><option value="1926">1926</option><option value="1925">1925</option><option value="1924">1924</option><option value="1923">1923</option><option value="1922">1922</option><option value="1921">1921</option><option value="1920">1920</option><option value="1919">1919</option><option value="1918">1918</option><option value="1917">1917</option><option value="1916">1916</option><option value="1915">1915</option><option value="1914">1914</option><option value="1913">1913</option><option value="1912">1912</option><option value="1911">1911</option><option value="1910">1910</option><option value="1909">1909</option><option value="1908">1908</option><option value="1907">1907</option><option value="1906">1906</option><option value="1905">1905</option><option value="1904">1904</option><option value="1903">1903</option><option value="1902">1902</option><option value="1901">1901</option><option value="1900">1900</option></select>
|
||||||
|
<select id="selMonth"> <option value="1">1</option><option value="2">2</option><option value="3">3</option><option value="4">4</option><option value="5">5</option><option value="6">6</option><option value="7">7</option><option value="8">8</option><option value="9">9</option><option value="10">10</option><option value="11">11</option><option value="12">12</option></select>
|
||||||
|
<select id="selDay"> <option value="1">1</option><option value="2">2</option><option value="3">3</option><option value="4">4</option><option value="5">5</option><option value="6">6</option><option value="7">7</option><option value="8">8</option><option value="9">9</option><option value="10">10</option><option value="11">11</option><option value="12">12</option><option value="13">13</option><option value="14">14</option><option value="15">15</option><option value="16">16</option><option value="17">17</option><option value="18">18</option><option value="19">19</option><option value="20">20</option><option value="21">21</option><option value="22">22</option><option value="23">23</option><option value="24">24</option><option value="25">25</option><option value="26">26</option><option value="27">27</option><option value="28">28</option><option value="29">29</option><option value="30">30</option><option value="31">31</option></select>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="person-cort_left-write">
|
||||||
|
<span class="write_vtop">详细地址:</span>
|
||||||
|
<textarea id="street" cols="20" rows="2" name="ctl00$content$street"></textarea>
|
||||||
|
<span id="streid" style="display: none"><i class="writer_wrong"></i><em id="strewrong" class="writer_word"></em></span>
|
||||||
|
<span id="strey" style="display: none"><i class="writer_right"> </i></span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="person-cort_left-write">
|
||||||
|
<span class="fl">手 机:</span>
|
||||||
|
<input type="text" value="18005151538" class="write_text fl" id="mobile" />
|
||||||
|
<span id="sjid" style="display: none"><i class="writer_wrong"></i><em id="sjwrong" class="writer_word"></em></span>
|
||||||
|
<span id="sjy" style="display: none"><i class="writer_right"> </i></span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="btnsave" class="bt1 person-cort_left-button">
|
||||||
|
> 保存
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--左边end-->
|
||||||
|
<!--右边-->
|
||||||
|
<div class="member_person-cort_right">
|
||||||
|
<a href="#"> <img width="90" height="90" src="../images/mem.jpg" /> </a>
|
||||||
|
<p> <a href="dr_personuploadtx.aspx">更换头像</a> </p>
|
||||||
|
</div>
|
||||||
|
<!--右边end-->
|
||||||
|
</div>
|
||||||
|
<!--个人信息填写end-->
|
||||||
|
</div>
|
||||||
|
<!--我的个人信息end-->
|
||||||
|
</div>
|
||||||
|
<!--右边的主要内容end-->
|
||||||
|
</div>
|
||||||
|
<!--中间内容end-->
|
||||||
|
</div>
|
||||||
|
<!--内容end-->
|
||||||
|
</div>
|
||||||
|
<!--中间end-->
|
||||||
|
</div>
|
||||||
|
<!--底部-->
|
||||||
|
<div class="footer">
|
||||||
|
<!--错误-->
|
||||||
|
<!--提示-->
|
||||||
|
<div class="loverit_word2" style="display: none;">
|
||||||
|
Darry Ring严格规定男士凭身份证一生仅能定制一枚,象征男人一生真爱的最高承诺。输入身份证号码即可查询购买记录。
|
||||||
|
</div>
|
||||||
|
<!--提示end-->
|
||||||
|
<div class="loverit_wrong2" style="display: none;">
|
||||||
|
<p>信息填写不正确,请重新输入。</p>
|
||||||
|
</div>
|
||||||
|
<!--错误end-->
|
||||||
|
<!--验证身份-->
|
||||||
|
<div class="loveit_center">
|
||||||
|
<div class="love_doit2" style="display: none;">
|
||||||
|
<div class="loverit_center2">
|
||||||
|
<div class="loverit_write2">
|
||||||
|
<label>国家/区域:</label>
|
||||||
|
<select id="txtArea" style="vertical-align: middle;height:22px;"> <option value="0">中国大陆</option> <option value="1">中国香港</option> <option value="2">中国澳门</option> <option value="3">中国台湾</option> </select>
|
||||||
|
<label>先生姓名:</label>
|
||||||
|
<input type="text" class="lit_txt" id="textName2" />
|
||||||
|
<label>身份证号码:</label>
|
||||||
|
<input type="text" class="lit_txt" id="textIDCard2" />
|
||||||
|
<span id="btnsub2"></span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--验证身份end-->
|
||||||
|
<div style="clear:both"></div>
|
||||||
|
<div class="cmain">
|
||||||
|
<ul class="Service_ul">
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p>权威认证</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_2">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p> 一钻双证</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_3">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p> 终生保养</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_4">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p> 以小换大</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_5">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p> 15天退换</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_6">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p> 全国免运费</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_7">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p> 全程保险</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<!--条文-->
|
||||||
|
<div class="auto" id="Menu_Service">
|
||||||
|
</div>
|
||||||
|
<div class="tw-foot">
|
||||||
|
<div class="auto" id="Copyright">
|
||||||
|
<p> Copyright © 2017 winner winner,chickdinner !!团队 All Rights Reserved. 闽ICP备11012085号-2.ICP经营许可证闽B2-20140279 </p>
|
||||||
|
<p> 中国互联网违法信息举报中心 | 中国公安网络110报警服务 | 本网站提供所售商品的正式发票 </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="model" id="model">
|
||||||
|
<div class="Prompt" id="Prompt">
|
||||||
|
</div>
|
||||||
|
<span id="log_uid" style="display:none"></span>
|
||||||
|
<span id="log_uname" style="display:none"></span>
|
||||||
|
<span id="log_orderid" style="display:none"></span>
|
||||||
|
<span id="log_price" style="display:none"></span>
|
||||||
|
</div>
|
||||||
|
<div style="display:none" class="Ffloat_kf">
|
||||||
|
<div class="fkf_top">
|
||||||
|
<div style="cursor: pointer; display: none;" id="bridgehead">
|
||||||
|
</div>
|
||||||
|
<div id="BizQQWPA"></div>
|
||||||
|
<div onClick="showModel(modelsever);" style="cursor: pointer;" class="qq_hover" id="qqTalk_head">
|
||||||
|
</div>
|
||||||
|
<div id="BizQQWPAB" class="sh">
|
||||||
|
</div>
|
||||||
|
<div id="bdBridge">
|
||||||
|
<a href="javascript:NTKF.im_openInPageChat()"> <img width="75" height="37" src="../images/zx.jpg" /></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="fkf_bottom">
|
||||||
|
<img width="92" height="82" alt="Darry Ring 官方微信" src="../images/to_erwei.jpg" />
|
||||||
|
<a href="#"> <img width="92" height="26" src="../images/db.jpg" /></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--新版右边客服start-->
|
||||||
|
<!--右边漂浮悬挂大的-->
|
||||||
|
<div class="float_big">
|
||||||
|
<div class="floatbig_hide fr"></div>
|
||||||
|
<div class="floatbig_center">
|
||||||
|
<!--客服-->
|
||||||
|
<div onClick="javascript:void(0)" id="Bearonline" class="floatbig_center-kf"></div>
|
||||||
|
<!--客服end-->
|
||||||
|
<!--定制咨询-->
|
||||||
|
<div id="dzzxonline" class="floatbig_center-zx">
|
||||||
|
<a href="javascript:showModel(modelsever);"></a>
|
||||||
|
</div>
|
||||||
|
<!--定制咨询end-->
|
||||||
|
<img src="../images/ew.jpg" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--右边漂浮悬挂大的end-->
|
||||||
|
<!--右边漂浮悬挂小的-->
|
||||||
|
<div class="float_small">
|
||||||
|
<div class="floatbig_show fr"></div>
|
||||||
|
<div class="floatbig_center">
|
||||||
|
<!--客服-->
|
||||||
|
<div onClick="javascript:void(0)" class="floatsmall_center-kf fr"></div>
|
||||||
|
<!--客服end-->
|
||||||
|
<!--定制咨询-->
|
||||||
|
<div class="floatsmall_center-zx fr">
|
||||||
|
<a href="javascript:showModel(modelsever);"></a>
|
||||||
|
</div>
|
||||||
|
<!--定制咨询end-->
|
||||||
|
<!--二维码-->
|
||||||
|
<div class="floatsmall_erwei fr">
|
||||||
|
<a href="#"></a>
|
||||||
|
</div>
|
||||||
|
<!--二维码end-->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--右边漂浮悬挂小的end-->
|
||||||
|
<!--返回顶部-->
|
||||||
|
<div class="comeback" style="display: block;"></div>
|
||||||
|
<!--返回顶部end-->
|
||||||
|
<!--新版右边客服end-->
|
||||||
|
<div style="position: fixed; cursor: pointer; right: 6px; top: 289px; padding-bottom: 152px; z-index: 9999; width: 19px; height: 103px; display: none;" onClick="openserver();" id="openbnt">
|
||||||
|
<img width="19" height="103" src="../images/server_03.jpg" />
|
||||||
|
</div>
|
||||||
|
<div class="news_tc">
|
||||||
|
<div class="newtc_left">
|
||||||
|
</div>
|
||||||
|
<div class="newtc_right">
|
||||||
|
<span style="cursor: pointer" class="sszs">稍后再说</span>
|
||||||
|
<span class="xzzx"><a onClick="showxiaon()" style="cursor: pointer" id="chatnow"> 现在咨询</a></span>
|
||||||
|
<div style="cursor: pointer" class="tocclose">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="mask" id="masks">
|
||||||
|
</div>
|
||||||
|
<div style="display:none;" class="modelsever" id="modelsever">
|
||||||
|
<div class="cs_top">
|
||||||
|
<div class="cs_topcenter">
|
||||||
|
<div style="width:300px; height:40px; line-height:40px; float:left; display:inline-block; ">
|
||||||
|
顾客常见疑问
|
||||||
|
</div>
|
||||||
|
<div style="width:385px; height:20px; float:left; text-align:right; padding-top:20px;">
|
||||||
|
<img width="55" height="9" style="cursor: pointer;" onClick="CloseMaskser()" src="../images/popup_window_btn_close.gif" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="cs_content clear">
|
||||||
|
<div id="box1" class="box1">
|
||||||
|
<div onClick="contenttxt(1,1)" id="content_title_11" class="content_title">
|
||||||
|
<span style="margin-top:8px;">Q:Darry Ring 是否有实体店?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_1" class="content_txt">
|
||||||
|
<span style="margin-top:1px;">A:DR公司总部在香港,目前内地深圳市、北京市、重庆市、广州市、上海市、武汉市、南京市、长沙市设有实体店,支持到店订购,也支持全国在线官网订购。同时目前其他一线城市公司已在考察选址阶段,将陆续开设店面。</span>
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(1,2)" id="content_title_12" class="content_title">
|
||||||
|
<span style="margin-top:8px;">Q:实体店具体位置?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_2" class="content_txt">
|
||||||
|
<span style="margin-top:1px;">A:深圳实体店地址:深圳南山区世界之窗旁欧陆小镇4号楼Darry Ring (地铁罗宝线世界之窗I出口)深圳店联系方式:0755-86621782。<p></p> 北京实体店地址:北京东二环朝阳门桥银河SOHO中心B座负一层2-109 (朝阳门地铁G出口) 北京店联系方式:010-59576758。<p></p> 上海实体店地址:上海长宁区淮海西路570号红坊创意园区G-108栋(近虹桥路) 上海店联系方式:021-60934520。<p></p> 广州实体店地址:广州市天河区天河北路233号中信广场商场136单元 广州店联系方式:020-38836315。<p></p> 重庆实体店地址:重庆市渝中区解放碑步行街民族路188号环球金融中心(WFC)LG-B02A 重庆店联系方式:023-63710835。<p></p> 武汉实体店地址:武汉市洪山区光谷意大利风情街5号楼一层51021号 武汉店联系方式:027-87688895。<p></p> 南京实体店地址:南京市长江路288号1912街区17号楼一层 南京店联系方式:025-83613520。<p></p> 长沙实体店地址:长沙市开福区中山路589号万达百货商场2楼 长沙店联系方式:0731-83878575。<p></p> 全国400客服热线:400 01 13520。</span>
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(1,3)" id="content_title_13" class="content_title">
|
||||||
|
<span style="margin-top:8px;">Q:到店订购和官网订购的价格一致吗?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_3" class="content_txt">
|
||||||
|
<span style="margin-top:1px;">A:DR的所有商品,到店订购和官网订购的时间周期,价格,质量及售后服务均一致。</span>
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(1,4)" id="content_title_14" class="content_title">
|
||||||
|
<span style="margin-top:8px;">Q:价格是否有折扣优惠?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_4" class="content_txt">
|
||||||
|
<span style="margin-top:1px;">A:DR的品牌寓意为一生唯一真爱,大多是用作见证彼此求婚或结婚这一神圣时刻,所以所有商品都是常年任何节假日没有折扣活动,就像彼此一生唯一真爱的承诺及永恒的爱情,永不打折。</span>
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(1,5)" id="content_title_15" class="content_title">
|
||||||
|
<span style="margin-top:8px;">Q:为什么在官网上输入姓名身份证号后看不到款式?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_5" class="content_txt">
|
||||||
|
<span style="margin-top:1px;">A:www.darryring.com 官网首页点击—求婚钻戒,进入页面后不需要填写任何信息,移动鼠标到最下方,就可以看到Darry Ring女戒的所有款式。</span>
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(1,6)" id="content_title_16" class="content_title">
|
||||||
|
<span style="margin-top:8px;">Q:到实体店是否可以立刻拿到戒指?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_6" class="content_txt">
|
||||||
|
<span style="margin-top:1px;">A:您好,DR的所有商品都是需要根据您选择的款式、手寸大小及刻字信息来定制。实体店仅提供款式体验及预订,与官网购买的定制时间是一致的,可于15-20个工作日内送到或自取。</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="box2" class="box2">
|
||||||
|
<div onClick="contenttxt(2,1)" id="content_title_21" class="content_title"></div>
|
||||||
|
<div id="content_title2_1" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(2,2)" id="content_title_22" class="content_title"></div>
|
||||||
|
<div id="content_title2_2" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(2,3)" id="content_title_23" class="content_title"></div>
|
||||||
|
<div id="content_title2_3" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(2,4)" id="content_title_24" class="content_title"></div>
|
||||||
|
<div id="content_title2_4" class="content_txt">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="box3" class="box3">
|
||||||
|
<div onClick="contenttxt(3,1)" id="content_title_31" class="content_title"></div>
|
||||||
|
<div id="content_title3_1" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(3,2)" id="content_title_32" class="content_title"></div>
|
||||||
|
<div id="content_title3_2" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(3,3)" id="content_title_33" class="content_title"></div>
|
||||||
|
<div id="content_title3_3" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(3,4)" id="content_title_34" class="content_title"></div>
|
||||||
|
<div id="content_title3_4" class="content_txt"></div>
|
||||||
|
</div>
|
||||||
|
<div id="box4" class="box4">
|
||||||
|
<div onClick="contenttxt(4,1)" id="content_title_41" class="content_title"></div>
|
||||||
|
<div id="content_title4_1" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(4,2)" id="content_title_42" class="content_title"></div>
|
||||||
|
<div id="content_title4_2" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(4,3)" id="content_title_43" class="content_title"></div>
|
||||||
|
<div id="content_title4_3" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(4,4)" id="content_title_44" class="content_title"></div>
|
||||||
|
<div id="content_title4_4" class="content_txt"></div>
|
||||||
|
</div>
|
||||||
|
<div id="box5" class="box5">
|
||||||
|
<div onClick="contenttxt(5,1)" id="content_title_51" class="content_title"></div>
|
||||||
|
<div id="content_title5_1" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(5,2)" id="content_title_52" class="content_title"></div>
|
||||||
|
<div id="content_title5_2" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(5,3)" id="content_title_53" class="content_title"></div>
|
||||||
|
<div id="content_title5_3" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(5,4)" id="content_title_54" class="content_title"></div>
|
||||||
|
<div id="content_title5_4" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(5,5)" id="content_title_55" class="content_title"></div>
|
||||||
|
<div id="content_title5_5" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(5,6)" id="content_title_56" class="content_title"></div>
|
||||||
|
<div id="content_title5_6" class="content_txt">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="box6" class="box6">
|
||||||
|
<div onClick="contenttxt(6,1)" id="content_title_61" class="content_title"></div>
|
||||||
|
<div id="content_title6_1" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(6,2)" id="content_title_62" class="content_title"></div>
|
||||||
|
<div id="content_title6_2" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(6,3)" id="content_title_63" class="content_title"></div>
|
||||||
|
<div id="content_title6_3" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(6,4)" id="content_title_64" class="content_title"></div>
|
||||||
|
<div id="content_title6_4" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(6,5)" id="content_title_65" class="content_title"></div>
|
||||||
|
<div id="content_title6_5" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(6,6)" id="content_title_66" class="content_title"></div>
|
||||||
|
<div id="content_title6_6" class="content_txt">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="box7" class="box7">
|
||||||
|
<div onClick="contenttxt(7,1)" id="content_title_71" class="content_title"></div>
|
||||||
|
<div id="content_title7_1" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(7,2)" id="content_title_72" class="content_title"></div>
|
||||||
|
<div id="content_title7_2" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(7,3)" id="content_title_73" class="content_title"></div>
|
||||||
|
<div id="content_title7_3" class="content_txt">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript">
|
||||||
|
function showbox(id) {
|
||||||
|
getQeestion(id);
|
||||||
|
for (var i = 1; i <= 8; i++) {
|
||||||
|
if (i == id) {
|
||||||
|
showdiv(id);
|
||||||
|
} else {
|
||||||
|
hidediv(i);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function contenttxt(id, sid) {
|
||||||
|
for (var i = 1; i <= 7; i++) {
|
||||||
|
if (i == id) {
|
||||||
|
showtxt(id, sid);
|
||||||
|
} else {
|
||||||
|
hidetxt(i, sid);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
function showtxt(id, sid) {
|
||||||
|
var objtitle = $("#content_title" + id + "_" + sid);
|
||||||
|
|
||||||
|
if (objtitle.css("display") == "none") {
|
||||||
|
objtitle.show("fast");
|
||||||
|
} else {
|
||||||
|
|
||||||
|
hidetxt(id, sid);
|
||||||
|
}
|
||||||
|
//$("#"+id).show("fast");
|
||||||
|
}
|
||||||
|
|
||||||
|
function hidetxt(id, sid) {
|
||||||
|
var objtitle = $("#content_title" + id + "_" + sid);
|
||||||
|
objtitle.hide("fast");
|
||||||
|
}
|
||||||
|
|
||||||
|
function hidediv(id) {
|
||||||
|
$("#box" + id).hide("fast");
|
||||||
|
|
||||||
|
$("#li" + id).css({
|
||||||
|
"font-size": "14px",
|
||||||
|
"color": "#7d7d7d"
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function showdiv(id) {
|
||||||
|
if ($("#box" + id).css("display") == "none") {
|
||||||
|
$("#box" + id).show("fast");
|
||||||
|
$("#li" + id).css({
|
||||||
|
"font-size": "18px",
|
||||||
|
"color": "#000000"
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
function showMask() {
|
||||||
|
$("#masks").css("height", $(document).height());
|
||||||
|
$("#masks").css("width", $(document).width());
|
||||||
|
$("#masks").fadeIn();
|
||||||
|
}
|
||||||
|
|
||||||
|
function showModel(divName) {
|
||||||
|
showMask();
|
||||||
|
/* var top = ($(window).height() - $(divName).height()) / 5;
|
||||||
|
var left = ($(window).width() - $(divName).width()) / 2;
|
||||||
|
var scrollTop = $(document).scrollTop();
|
||||||
|
var scrollLeft = $(document).scrollLeft();*/
|
||||||
|
$(divName).fadeIn();
|
||||||
|
}
|
||||||
|
|
||||||
|
function CloseMaskser() {
|
||||||
|
|
||||||
|
$("#modelsever").fadeOut("slow");
|
||||||
|
$("#masks").fadeOut("slow");
|
||||||
|
$("#mask").fadeOut("slow");
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
@ -0,0 +1,685 @@
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" class="hb-loaded">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8"/>
|
||||||
|
<title>个人中心 - 订单中心</title><!--/*技术支持,小庄602842076 验证:官网技术支持*/
|
||||||
|
/*技术支持,小庄602842076 验证:官网技术支持*/
|
||||||
|
/*技术支持,小庄602842076 验证:官网技术支持*/
|
||||||
|
/*技术支持,小庄602842076 验证:官网技术支持*/
|
||||||
|
/*技术支持,小庄602842076 验证:官网技术支持*/
|
||||||
|
/*https://shop116998991.taobao.com/*/
|
||||||
|
/*https://shop116998991.taobao.com/*/
|
||||||
|
/*https://shop116998991.taobao.com/*/-->
|
||||||
|
<link href="../css/same.css?v=1.3.7.2" type="text/css" rel="stylesheet"/>
|
||||||
|
<link href="../css/member.css?v=1.3.6.0" type="text/css" rel="stylesheet"/>
|
||||||
|
<script src="../js/jquery.js" type="text/javascript"></script>
|
||||||
|
<script src="../js/index.js?virsion=1.3.7.2" type="text/javascript"></script>
|
||||||
|
<script type="text/javascript" src="../js/member.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<!--头部-->
|
||||||
|
<div class="cmain">
|
||||||
|
<div class="headtop">
|
||||||
|
<!--头部左边-->
|
||||||
|
<div class="top-left fl">
|
||||||
|
<a title="Darry Ring" href="/index">
|
||||||
|
<img width="187" height="42" alt="Darry Ring官网" src="../images/logo.png">
|
||||||
|
</a><span style="font-weight: normal;">求婚钻戒领导品牌</span>
|
||||||
|
</div>
|
||||||
|
<!--头部左边end-->
|
||||||
|
<!--头部右边-->
|
||||||
|
<div class="top-right fr">
|
||||||
|
<!--登录注册-->
|
||||||
|
<ul class="tright-ul fl">
|
||||||
|
|
||||||
|
<div id="ctl00_ucheader_pllogin2">
|
||||||
|
|
||||||
|
<li><a><span id="ctl00_ucheader_lit">KLNgOk</span></a></li>
|
||||||
|
<li> <a href="javascript:logout()" rel="nofollow">退出</a><em>|</em> </li>
|
||||||
|
<li><a target="black" rel="nofollow" href="/member_index">我的DR</a><em>|</em></li>
|
||||||
|
<li class="headed"><em class="icon shooping"></em><a target="black" rel="nofollow" href="/cart">购物车</a><i>(0)</i></li>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</ul>
|
||||||
|
<!--语言选择-->
|
||||||
|
|
||||||
|
<!--搜索框-->
|
||||||
|
<div style="display:none;" class="search">
|
||||||
|
<input type="text" placeholder="求婚钻戒" class="txt1">
|
||||||
|
<div onClick="showSearch()" class="icon toser">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--头部右边end-->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--头部end-->
|
||||||
|
<!--导航-->
|
||||||
|
<div class="nav">
|
||||||
|
<div class="cmain">
|
||||||
|
<!--导航的左边-->
|
||||||
|
<ul class="nav-ul fl">
|
||||||
|
<li><a href="/index">首页</a> </li>
|
||||||
|
<li><a href="/brand">品牌文化</a> </li>
|
||||||
|
<li><a style="font-family:arial" href="/lists">Darry Ring 求婚钻戒</a>
|
||||||
|
<div class="nav-div">
|
||||||
|
<div class="navdiv_top">
|
||||||
|
<div class="navdiv-right">
|
||||||
|
<p> <a href="/lists"> 查看所有款</a></p>
|
||||||
|
<p> <a href="/dr_series/12_22.html">Forever系列</a></p>
|
||||||
|
<p> <a href="/dr_series/11_20.html">My Heart系列</a></p>
|
||||||
|
<p> <a href="/dr_series/16_30.html">True Love系列</a></p>
|
||||||
|
<p> <a href="/dr_series/15_28.html">I Swear系列</a></p>
|
||||||
|
<p> <a href="/dr_series/13_24.html">Just you系列</a></p>
|
||||||
|
</div>
|
||||||
|
<div class="navdiv-left">
|
||||||
|
<h3> NEW</h3>
|
||||||
|
<a href="/detail"> <img width="138" height="97" src="../images/03wj.jpg" /></a>
|
||||||
|
<div class="more_cp">
|
||||||
|
<a href="/detail">> 了解该系列产品</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="navdiv_bottom"></div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li><a href="/question">常见问题</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--导航end-->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
function logout() {
|
||||||
|
if (window.confirm('确定退出吗?')) {
|
||||||
|
|
||||||
|
$.get("/nAPI/QuitExit.ashx", function (data) {
|
||||||
|
window.location.href = "/";
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<div class="cort">
|
||||||
|
|
||||||
|
<div class="cort">
|
||||||
|
<div class="tobuy cmain">
|
||||||
|
<div class="cmain mb_back">
|
||||||
|
|
||||||
|
<div class="zbk_top spalid">
|
||||||
|
<span>您当前的位置:</span>
|
||||||
|
<span id="ctl00_content_website_SiteMapPath1"><a href="#ctl00_content_website_SiteMapPath1_SkipLink"></a><a id="ctl00_content_website_SiteMapPath1_SkipLink"></a></span>
|
||||||
|
</div>
|
||||||
|
<div class="member_cort">
|
||||||
|
|
||||||
|
<div class="member_cort-left fl">
|
||||||
|
<!--我的DR-->
|
||||||
|
<div class="member_cortleft-tittle">
|
||||||
|
<i class="mb_home"></i><a rel="nofollow" href="/member_index">我的DR</a>
|
||||||
|
</div>
|
||||||
|
<!--我的DR end-->
|
||||||
|
<ul class="member_cort-ul">
|
||||||
|
<li>
|
||||||
|
<h3>
|
||||||
|
-订单中心-</h3>
|
||||||
|
<ul class="member_ul-dr">
|
||||||
|
<li class="speacil_color" id="ctl00_content_ucmemberleft_order"><a rel="nofollow" href="/member_order">我的订单</a></li>
|
||||||
|
<li id="ctl00_content_ucmemberleft_ask"><a rel="nofollow" href="/member/myevaluate">我要评价</a></li>
|
||||||
|
<li id="ctl00_content_ucmemberleft_cart"><a rel="nofollow" href="/cart" target="_blank">我的购物车</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<h3>
|
||||||
|
-帐户管理-</h3>
|
||||||
|
<ul class="member_ul-dr">
|
||||||
|
<li id="ctl00_content_ucmemberleft_myinfo"><a rel="nofollow" href="/member_info">个人信息</a></li>
|
||||||
|
<li id="ctl00_content_ucmemberleft_password"><a rel="nofollow" href="/member_pwd">修改密码</a></li>
|
||||||
|
<li id="ctl00_content_ucmemberleft_address"><a rel="nofollow" href="/member_addr">收货地址</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<!--右边的主要内容-->
|
||||||
|
<div class="member_cort-right fr">
|
||||||
|
<!--我的订单-->
|
||||||
|
<div class="member_myorder">
|
||||||
|
<!--切换nav-->
|
||||||
|
<div class="member_all-nav">
|
||||||
|
<div class="member_all-nav-top">
|
||||||
|
<ul class="member_all-nav-ul fl">
|
||||||
|
<li class="member_all-nav-click">全部订单</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
<!--右边-->
|
||||||
|
<div class="member_all-nav-right fr">
|
||||||
|
<i class="member_tz"></i>
|
||||||
|
<span>订单如需加急处理,请及时联系</span>
|
||||||
|
<a target="_blank" style="cursor: pointer" onClick="javascript:showxiaon();">
|
||||||
|
在线客服>></a>
|
||||||
|
</div>
|
||||||
|
<!--右边end-->
|
||||||
|
</div>
|
||||||
|
<!--黄色线-->
|
||||||
|
<div class="member_all-nav-line"></div>
|
||||||
|
<!--黄色线end-->
|
||||||
|
</div>
|
||||||
|
<!--切换nav end-->
|
||||||
|
<!--订单-->
|
||||||
|
|
||||||
|
<div class="member_myorder-allorder">
|
||||||
|
<div class="member_news-it">
|
||||||
|
|
||||||
|
<script src="../js/orderlist.js" type="text/javascript"></script>
|
||||||
|
<script type="text/javascript" language="javascript">
|
||||||
|
function deleteOrder(orderid) {
|
||||||
|
if (confirm("确定要取消订单吗?")) {
|
||||||
|
window.location.href = "/member/myorder.aspx?action=delete&orderid=" + orderid;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<table cellspacing="0" cellpadding="0" border="0" class="member_title-table">
|
||||||
|
<tbody><tr class="member_myorder-table-first">
|
||||||
|
<td class="myorder-table_td1">订单商品</td>
|
||||||
|
<td class="myorder-table_td2">商品数量</td>
|
||||||
|
|
||||||
|
<td class="myorder-table_td2">付款金额</td>
|
||||||
|
<td class="myorder-table_td4">物流信息</td>
|
||||||
|
<td class="myorder-table_td5">订单状态</td>
|
||||||
|
<td class="myorder-table_td6">操作</td>
|
||||||
|
</tr>
|
||||||
|
</tbody></table>
|
||||||
|
|
||||||
|
<table cellspacing="0" cellpadding="0" border="0" class="member_myorder-table">
|
||||||
|
|
||||||
|
<tbody><tr class="member_myorder-table-sec">
|
||||||
|
<td class="myorder-table-sec_td1" colspan="4">订单号:20150707888887</td>
|
||||||
|
<td class="myorder-table-sec_td2" colspan="2">下单时间:2015/7/7 22:04:56</td>
|
||||||
|
</tr>
|
||||||
|
<tr class="member_myorder-table-third">
|
||||||
|
<td class="myorder-table_td1">
|
||||||
|
|
||||||
|
<div class="myorder-table-third-cp">
|
||||||
|
<div class="img_left fl">
|
||||||
|
<a href="/darry_ring/87.html">
|
||||||
|
<img width="55" height="55" src="../images/201409011932585de1c2f2a9.jpg">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="img_right fr">
|
||||||
|
<a href="/darry_ring/87.html">
|
||||||
|
<p>Forever系列 经典款 [DRNJ00015]</p>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</td>
|
||||||
|
<td class="myorder-table_td3">
|
||||||
|
|
||||||
|
<div style="height:55px;line-height:55px;font-family:微软雅黑;" class="myorder-table-third-cp">
|
||||||
|
3</div>
|
||||||
|
|
||||||
|
</td>
|
||||||
|
<td style="font-family:微软雅黑;" class="myorder-table_td2">
|
||||||
|
¥0
|
||||||
|
</td>
|
||||||
|
<td class="myorder-table_td4"></td>
|
||||||
|
<td class="myorder-table_td5">
|
||||||
|
未处理
|
||||||
|
</td>
|
||||||
|
<td class="myorder-table_td6">
|
||||||
|
|
||||||
|
<a class="myorder-table_pay" href="/nCart/ConfirmOrder.aspx?orderid=20150707888887&process=other">支 付</a>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<a href="/member_order_detail">查看</a>
|
||||||
|
</p>
|
||||||
|
<p style="cursor:pointer">
|
||||||
|
<a onClick="deleteOrder(20150707888887)">取消订单</a>
|
||||||
|
</p>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
|
||||||
|
</tbody></table>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div style="display:none" class="member_news-it">
|
||||||
|
|
||||||
|
<script src="../js/orderlist.js" type="text/javascript"></script>
|
||||||
|
<script type="text/javascript" language="javascript">
|
||||||
|
function deleteOrder(orderid) {
|
||||||
|
if (confirm("确定要取消订单吗?")) {
|
||||||
|
window.location.href = "/member/myorder.aspx?action=delete&orderid=" + orderid;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
|
||||||
|
<table cellspacing="0" cellpadding="0" border="0" class="member_myorder-table">
|
||||||
|
|
||||||
|
</table>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<!--我的订单end-->
|
||||||
|
</div>
|
||||||
|
<!--右边的主要内容end-->
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<!--底部-->
|
||||||
|
<div class="footer">
|
||||||
|
<!--错误-->
|
||||||
|
<!--提示-->
|
||||||
|
<div class="loverit_word2" style="display: none;">
|
||||||
|
Darry Ring严格规定男士凭身份证一生仅能定制一枚,象征男人一生真爱的最高承诺。输入身份证号码即可查询购买记录。
|
||||||
|
</div>
|
||||||
|
<!--提示end-->
|
||||||
|
<div class="loverit_wrong2" style="display: none;">
|
||||||
|
<p>信息填写不正确,请重新输入。</p>
|
||||||
|
</div>
|
||||||
|
<!--错误end-->
|
||||||
|
<!--验证身份-->
|
||||||
|
<div class="loveit_center">
|
||||||
|
<div class="love_doit2" style="display: none;">
|
||||||
|
<div class="loverit_center2">
|
||||||
|
<div class="loverit_write2">
|
||||||
|
<label>国家/区域:</label>
|
||||||
|
<select id="txtArea" style="vertical-align: middle;height:22px;"> <option value="0">中国大陆</option> <option value="1">中国香港</option> <option value="2">中国澳门</option> <option value="3">中国台湾</option> </select>
|
||||||
|
<label>先生姓名:</label>
|
||||||
|
<input type="text" class="lit_txt" id="textName2" />
|
||||||
|
<label>身份证号码:</label>
|
||||||
|
<input type="text" class="lit_txt" id="textIDCard2" />
|
||||||
|
<span id="btnsub2"></span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--验证身份end-->
|
||||||
|
<div style="clear:both"></div>
|
||||||
|
<div class="cmain">
|
||||||
|
<ul class="Service_ul">
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div> <a href="javascript:void(0)" rel="nofollow"><p>权威认证</p></a> </li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_2">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div> <a href="javascript:void(0)" rel="nofollow"><p> 一钻双证</p></a> </li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_3">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div> <a href="javascript:void(0)" rel="nofollow"> <p> 终生保养</p></a> </li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_4">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div> <a href="javascript:void(0)" rel="nofollow"> <p> 以小换大</p></a> </li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_5">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div> <a href="javascript:void(0)" rel="nofollow"> <p> 15天退换</p></a> </li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_6">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div> <a href="javascript:void(0)" rel="nofollow"> <p> 全国免运费</p></a> </li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_7">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div> <a href="javascript:void(0)" rel="nofollow"><p> 全程保险</p></a> </li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<!--条文-->
|
||||||
|
<div class="auto" id="Menu_Service">
|
||||||
|
</div>
|
||||||
|
<div class="tw-foot">
|
||||||
|
<div class="auto" id="Copyright">
|
||||||
|
<p> Copyright © 2017 winner winner,chickdinner !!团队 All Rights Reserved. 闽ICP备11012085号-2.ICP经营许可证闽B2-20140279 </p>
|
||||||
|
<p> 中国互联网违法信息举报中心 | 中国公安网络110报警服务 | 本网站提供所售商品的正式发票 </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="model" id="model">
|
||||||
|
<div class="Prompt" id="Prompt">
|
||||||
|
</div>
|
||||||
|
<span id="log_uid" style="display:none"></span>
|
||||||
|
<span id="log_uname" style="display:none"></span>
|
||||||
|
<span id="log_orderid" style="display:none"></span>
|
||||||
|
<span id="log_price" style="display:none"></span>
|
||||||
|
</div>
|
||||||
|
<!-- <script src="http://wpa.b.qq.com/cgi/wpa.php" charset="utf-8" type="text/javascript"></script> -->
|
||||||
|
<!--客服(2014年8月29日)-->
|
||||||
|
<div style="display:none" class="Ffloat_kf">
|
||||||
|
<div class="fkf_top">
|
||||||
|
<div style="cursor: pointer; display: none;" id="bridgehead">
|
||||||
|
</div>
|
||||||
|
<div id="BizQQWPA"></div>
|
||||||
|
<div onClick="showModel(modelsever);" style="cursor: pointer;" class="qq_hover" id="qqTalk_head">
|
||||||
|
</div>
|
||||||
|
<div id="BizQQWPAB" class="sh">
|
||||||
|
</div>
|
||||||
|
<div id="bdBridge">
|
||||||
|
<a href="javascript:NTKF.im_openInPageChat()"> <img width="75" height="37" src="../images/zx.jpg" /></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="fkf_bottom">
|
||||||
|
<img width="92" height="82" alt="Darry Ring 官方微信" src="../images/to_erwei.jpg" />
|
||||||
|
<a href="#"> <img width="92" height="26" src="../images/db.jpg" /></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--新版右边客服start-->
|
||||||
|
<!--右边漂浮悬挂大的-->
|
||||||
|
<div class="float_big">
|
||||||
|
<div class="floatbig_hide fr"></div>
|
||||||
|
<div class="floatbig_center">
|
||||||
|
<!--客服-->
|
||||||
|
<div onClick="javascript:NTKF.im_openInPageChat();" id="Bearonline" class="floatbig_center-kf"></div>
|
||||||
|
<!--客服end-->
|
||||||
|
<!--定制咨询-->
|
||||||
|
<div id="dzzxonline" class="floatbig_center-zx">
|
||||||
|
<a href="javascript:showModel(modelsever);"></a>
|
||||||
|
</div>
|
||||||
|
<!--定制咨询end-->
|
||||||
|
<img src="../images/ew.jpg" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--右边漂浮悬挂大的end-->
|
||||||
|
<!--右边漂浮悬挂小的-->
|
||||||
|
<div class="float_small">
|
||||||
|
<div class="floatbig_show fr"></div>
|
||||||
|
<div class="floatbig_center">
|
||||||
|
<!--客服-->
|
||||||
|
<div onClick="javascript:NTKF.im_openInPageChat();" class="floatsmall_center-kf fr"></div>
|
||||||
|
<!--客服end-->
|
||||||
|
<!--定制咨询-->
|
||||||
|
<div class="floatsmall_center-zx fr">
|
||||||
|
<a href="javascript:showModel(modelsever);"></a>
|
||||||
|
</div>
|
||||||
|
<!--定制咨询end-->
|
||||||
|
<!--二维码-->
|
||||||
|
<div class="floatsmall_erwei fr">
|
||||||
|
<a href="#"></a>
|
||||||
|
</div>
|
||||||
|
<!--二维码end-->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--右边漂浮悬挂小的end-->
|
||||||
|
<!--返回顶部-->
|
||||||
|
<div class="comeback" style="display: block;"></div>
|
||||||
|
<!--返回顶部end-->
|
||||||
|
<!--新版右边客服end-->
|
||||||
|
<div style="position: fixed; cursor: pointer; right: 6px; top: 289px; padding-bottom: 152px; z-index: 9999; width: 19px; height: 103px; display: none;" onClick="openserver();" id="openbnt">
|
||||||
|
<img width="19" height="103" src="../images/server_03.jpg" />
|
||||||
|
</div>
|
||||||
|
<div class="news_tc">
|
||||||
|
<div class="newtc_left">
|
||||||
|
</div>
|
||||||
|
<div class="newtc_right">
|
||||||
|
<span style="cursor: pointer" class="sszs">稍后再说</span>
|
||||||
|
<span class="xzzx"><a onClick="showxiaon()" style="cursor: pointer" id="chatnow"> 现在咨询</a></span>
|
||||||
|
<div style="cursor: pointer" class="tocclose">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="mask" id="masks">
|
||||||
|
</div>
|
||||||
|
<div style="display:none;" class="modelsever" id="modelsever">
|
||||||
|
<div class="cs_top">
|
||||||
|
<div class="cs_topcenter">
|
||||||
|
<div style="width:300px; height:40px; line-height:40px; float:left; display:inline-block; ">
|
||||||
|
顾客常见疑问
|
||||||
|
</div>
|
||||||
|
<div style="width:385px; height:20px; float:left; text-align:right; padding-top:20px;">
|
||||||
|
<img width="55" height="9" style="cursor: pointer;" onClick="CloseMaskser()" src="../images/popup_window_btn_close.gif" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="cs_content clear">
|
||||||
|
<ul>
|
||||||
|
<li onClick="showbox(1)" id="li1">官网店铺</li>
|
||||||
|
<li class="line">/</li>
|
||||||
|
<li onClick="showbox(2)" id="li2">真爱疑问</li>
|
||||||
|
<li class="line">/</li>
|
||||||
|
<li onClick="showbox(3)" id="li3">购买限制</li>
|
||||||
|
<li class="line">/</li>
|
||||||
|
<li onClick="showbox(4)" id="li4">产品疑问</li>
|
||||||
|
<li class="line">/</li>
|
||||||
|
<li onClick="showbox(5)" id="li5">关于定制</li>
|
||||||
|
<li class="line">/</li>
|
||||||
|
<li onClick="showbox(6)" id="li6">关于运输</li>
|
||||||
|
<li class="line">/</li>
|
||||||
|
<li onClick="showbox(7)" id="li7">关于售后</li>
|
||||||
|
</ul>
|
||||||
|
<div id="box1" class="box1">
|
||||||
|
<div onClick="contenttxt(1,1)" id="content_title_11" class="content_title">
|
||||||
|
<span style="margin-top:8px;">Q:Darry Ring 是否有实体店?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_1" class="content_txt">
|
||||||
|
<span style="margin-top:1px;">A:DR公司总部在香港,目前内地深圳市、北京市、重庆市、广州市、上海市、武汉市、南京市、长沙市设有实体店,支持到店订购,也支持全国在线官网订购。同时目前其他一线城市公司已在考察选址阶段,将陆续开设店面。</span>
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(1,2)" id="content_title_12" class="content_title">
|
||||||
|
<span style="margin-top:8px;">Q:实体店具体位置?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_2" class="content_txt">
|
||||||
|
<span style="margin-top:1px;">A:深圳实体店地址:深圳南山区世界之窗旁欧陆小镇4号楼Darry Ring (地铁罗宝线世界之窗I出口)深圳店联系方式:0755-86621782。<p></p> 北京实体店地址:北京东二环朝阳门桥银河SOHO中心B座负一层2-109 (朝阳门地铁G出口) 北京店联系方式:010-59576758。<p></p> 上海实体店地址:上海长宁区淮海西路570号红坊创意园区G-108栋(近虹桥路) 上海店联系方式:021-60934520。<p></p> 广州实体店地址:广州市天河区天河北路233号中信广场商场136单元 广州店联系方式:020-38836315。<p></p> 重庆实体店地址:重庆市渝中区解放碑步行街民族路188号环球金融中心(WFC)LG-B02A 重庆店联系方式:023-63710835。<p></p> 武汉实体店地址:武汉市洪山区光谷意大利风情街5号楼一层51021号 武汉店联系方式:027-87688895。<p></p> 南京实体店地址:南京市长江路288号1912街区17号楼一层 南京店联系方式:025-83613520。<p></p> 长沙实体店地址:长沙市开福区中山路589号万达百货商场2楼 长沙店联系方式:0731-83878575。<p></p> 全国400客服热线:400 01 13520。</span>
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(1,3)" id="content_title_13" class="content_title">
|
||||||
|
<span style="margin-top:8px;">Q:到店订购和官网订购的价格一致吗?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_3" class="content_txt">
|
||||||
|
<span style="margin-top:1px;">A:DR的所有商品,到店订购和官网订购的时间周期,价格,质量及售后服务均一致。</span>
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(1,4)" id="content_title_14" class="content_title">
|
||||||
|
<span style="margin-top:8px;">Q:价格是否有折扣优惠?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_4" class="content_txt">
|
||||||
|
<span style="margin-top:1px;">A:DR的品牌寓意为一生唯一真爱,大多是用作见证彼此求婚或结婚这一神圣时刻,所以所有商品都是常年任何节假日没有折扣活动,就像彼此一生唯一真爱的承诺及永恒的爱情,永不打折。</span>
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(1,5)" id="content_title_15" class="content_title">
|
||||||
|
<span style="margin-top:8px;">Q:为什么在官网上输入姓名身份证号后看不到款式?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_5" class="content_txt">
|
||||||
|
<span style="margin-top:1px;">A:www.darryring.com 官网首页点击—求婚钻戒,进入页面后不需要填写任何信息,移动鼠标到最下方,就可以看到Darry Ring女戒的所有款式。</span>
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(1,6)" id="content_title_16" class="content_title">
|
||||||
|
<span style="margin-top:8px;">Q:到实体店是否可以立刻拿到戒指?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_6" class="content_txt">
|
||||||
|
<span style="margin-top:1px;">A:您好,DR的所有商品都是需要根据您选择的款式、手寸大小及刻字信息来定制。实体店仅提供款式体验及预订,与官网购买的定制时间是一致的,可于15-20个工作日内送到或自取。</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="box2" class="box2">
|
||||||
|
<div onClick="contenttxt(2,1)" id="content_title_21" class="content_title"></div>
|
||||||
|
<div id="content_title2_1" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(2,2)" id="content_title_22" class="content_title"></div>
|
||||||
|
<div id="content_title2_2" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(2,3)" id="content_title_23" class="content_title"></div>
|
||||||
|
<div id="content_title2_3" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(2,4)" id="content_title_24" class="content_title"></div>
|
||||||
|
<div id="content_title2_4" class="content_txt">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="box3" class="box3">
|
||||||
|
<div onClick="contenttxt(3,1)" id="content_title_31" class="content_title"></div>
|
||||||
|
<div id="content_title3_1" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(3,2)" id="content_title_32" class="content_title"></div>
|
||||||
|
<div id="content_title3_2" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(3,3)" id="content_title_33" class="content_title"></div>
|
||||||
|
<div id="content_title3_3" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(3,4)" id="content_title_34" class="content_title"></div>
|
||||||
|
<div id="content_title3_4" class="content_txt"></div>
|
||||||
|
</div>
|
||||||
|
<div id="box4" class="box4">
|
||||||
|
<div onClick="contenttxt(4,1)" id="content_title_41" class="content_title"></div>
|
||||||
|
<div id="content_title4_1" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(4,2)" id="content_title_42" class="content_title"></div>
|
||||||
|
<div id="content_title4_2" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(4,3)" id="content_title_43" class="content_title"></div>
|
||||||
|
<div id="content_title4_3" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(4,4)" id="content_title_44" class="content_title"></div>
|
||||||
|
<div id="content_title4_4" class="content_txt"></div>
|
||||||
|
</div>
|
||||||
|
<div id="box5" class="box5">
|
||||||
|
<div onClick="contenttxt(5,1)" id="content_title_51" class="content_title"></div>
|
||||||
|
<div id="content_title5_1" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(5,2)" id="content_title_52" class="content_title"></div>
|
||||||
|
<div id="content_title5_2" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(5,3)" id="content_title_53" class="content_title"></div>
|
||||||
|
<div id="content_title5_3" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(5,4)" id="content_title_54" class="content_title"></div>
|
||||||
|
<div id="content_title5_4" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(5,5)" id="content_title_55" class="content_title"></div>
|
||||||
|
<div id="content_title5_5" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(5,6)" id="content_title_56" class="content_title"></div>
|
||||||
|
<div id="content_title5_6" class="content_txt">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="box6" class="box6">
|
||||||
|
<div onClick="contenttxt(6,1)" id="content_title_61" class="content_title"></div>
|
||||||
|
<div id="content_title6_1" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(6,2)" id="content_title_62" class="content_title"></div>
|
||||||
|
<div id="content_title6_2" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(6,3)" id="content_title_63" class="content_title"></div>
|
||||||
|
<div id="content_title6_3" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(6,4)" id="content_title_64" class="content_title"></div>
|
||||||
|
<div id="content_title6_4" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(6,5)" id="content_title_65" class="content_title"></div>
|
||||||
|
<div id="content_title6_5" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(6,6)" id="content_title_66" class="content_title"></div>
|
||||||
|
<div id="content_title6_6" class="content_txt">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="box7" class="box7">
|
||||||
|
<div onClick="contenttxt(7,1)" id="content_title_71" class="content_title"></div>
|
||||||
|
<div id="content_title7_1" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(7,2)" id="content_title_72" class="content_title"></div>
|
||||||
|
<div id="content_title7_2" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(7,3)" id="content_title_73" class="content_title"></div>
|
||||||
|
<div id="content_title7_3" class="content_txt">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
function showbox(id) {
|
||||||
|
getQeestion(id);
|
||||||
|
for (var i = 1; i <= 8; i++) {
|
||||||
|
if (i == id) {
|
||||||
|
showdiv(id);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
hidediv(i);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function contenttxt(id, sid) {
|
||||||
|
for (var i = 1; i <= 7; i++) {
|
||||||
|
if (i == id) {
|
||||||
|
showtxt(id, sid);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
hidetxt(i, sid);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
function showtxt(id, sid) {
|
||||||
|
var objtitle = $("#content_title" + id + "_" + sid);
|
||||||
|
|
||||||
|
if (objtitle.css("display") == "none") {
|
||||||
|
objtitle.show("fast");
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
|
||||||
|
hidetxt(id, sid);
|
||||||
|
}
|
||||||
|
//$("#"+id).show("fast");
|
||||||
|
}
|
||||||
|
function hidetxt(id, sid) {
|
||||||
|
var objtitle = $("#content_title" + id + "_" + sid);
|
||||||
|
objtitle.hide("fast");
|
||||||
|
}
|
||||||
|
function hidediv(id) {
|
||||||
|
$("#box" + id).hide("fast");
|
||||||
|
|
||||||
|
$("#li" + id).css({ "font-size": "14px", "color": "#7d7d7d" });
|
||||||
|
}
|
||||||
|
|
||||||
|
function showdiv(id) {
|
||||||
|
if ($("#box" + id).css("display") == "none") {
|
||||||
|
$("#box" + id).show("fast");
|
||||||
|
$("#li" + id).css({ "font-size": "18px", "color": "#000000" });
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
</script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
function showMask() {
|
||||||
|
$("#masks").css("height", $(document).height());
|
||||||
|
$("#masks").css("width", $(document).width());
|
||||||
|
$("#masks").fadeIn();
|
||||||
|
}
|
||||||
|
function showModel(divName) {
|
||||||
|
showMask();
|
||||||
|
/* var top = ($(window).height() - $(divName).height()) / 5;
|
||||||
|
var left = ($(window).width() - $(divName).width()) / 2;
|
||||||
|
var scrollTop = $(document).scrollTop();
|
||||||
|
var scrollLeft = $(document).scrollLeft();*/
|
||||||
|
$(divName).fadeIn();
|
||||||
|
}
|
||||||
|
function CloseMaskser() {
|
||||||
|
|
||||||
|
$("#modelsever").fadeOut("slow");
|
||||||
|
$("#masks").fadeOut("slow");
|
||||||
|
$("#mask").fadeOut("slow");
|
||||||
|
}
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
|
|
||||||
|
</body></html>
|
||||||
|
|
@ -0,0 +1,826 @@
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" class="hb-loaded">
|
||||||
|
<head>
|
||||||
|
<title>个人中心 - 订单详情</title>
|
||||||
|
<meta charset="utf-8"/>
|
||||||
|
<link href="../css/same.css?v=1.3.7.2" type="text/css" rel="stylesheet"/>
|
||||||
|
<link href="../css/member.css?v=1.3.6.0" type="text/css" rel="stylesheet"/>
|
||||||
|
<script src="../js/jquery.js" type="text/javascript"></script>
|
||||||
|
<script src="../js/index.js?virsion=1.3.7.2" type="text/javascript"></script>
|
||||||
|
<script src="../js/member.js" type="text/javascript"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<!--头部-->
|
||||||
|
<div class="cmain">
|
||||||
|
<div class="headtop">
|
||||||
|
<!--头部左边-->
|
||||||
|
<div class="top-left fl">
|
||||||
|
<a title="Darry Ring" href="index">
|
||||||
|
<img width="187" height="42" alt="Darry Ring官网" src="../images/logo.png">
|
||||||
|
</a><span style="font-weight: normal;">求婚钻戒领导品牌</span>
|
||||||
|
</div>
|
||||||
|
<!--头部左边end-->
|
||||||
|
<!--头部右边-->
|
||||||
|
<div class="top-right fr">
|
||||||
|
<!--登录注册-->
|
||||||
|
<ul class="tright-ul fl">
|
||||||
|
|
||||||
|
<div id="ctl00_ucheader_pllogin2">
|
||||||
|
|
||||||
|
<li><a><span id="ctl00_ucheader_lit">KLNgOk</span></a></li>
|
||||||
|
<li><a href="javascript:logout()" rel="nofollow">退出</a><em>|</em></li>
|
||||||
|
<li><a target="black" rel="nofollow" href="/member_index">我的DR</a><em>|</em></li>
|
||||||
|
<li class="headed"><em class="icon shooping"></em><a target="black" rel="nofollow" href="/cart">购物车</a><i>(0)</i>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<!--头部右边end-->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--头部end-->
|
||||||
|
<!--导航-->
|
||||||
|
<div class="nav">
|
||||||
|
<div class="cmain">
|
||||||
|
<!--导航的左边-->
|
||||||
|
<ul class="nav-ul fl">
|
||||||
|
<li><a href="/index">首页</a></li>
|
||||||
|
<li><a href="/brand">品牌文化</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
<li><a style="font-family:arial" href="/lists">Darry Ring 求婚钻戒</a>
|
||||||
|
<div class="nav-div">
|
||||||
|
<div class="navdiv_top">
|
||||||
|
<div class="navdiv-right">
|
||||||
|
<p><a href="/lists"> 查看所有款</a></p>
|
||||||
|
<p>
|
||||||
|
<a href="/pinkdiamond.aspx">稀世粉钻系列</a></p>
|
||||||
|
<p>
|
||||||
|
<a href="/dr_series/12_22.html">Forever系列</a></p>
|
||||||
|
<p>
|
||||||
|
<a href="/dr_series/11_20.html">My Heart系列</a></p>
|
||||||
|
<p>
|
||||||
|
<a href="/dr_series/16_30.html">True Love系列</a></p>
|
||||||
|
<p>
|
||||||
|
<a href="/dr_series/15_28.html">I Swear系列</a></p>
|
||||||
|
<p>
|
||||||
|
<a href="/dr_series/13_24.html">Just you系列</a></p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="navdiv-left">
|
||||||
|
<h3>
|
||||||
|
NEW</h3>
|
||||||
|
<a href="/darry_ring/349.html">
|
||||||
|
<img width="138" height="97"
|
||||||
|
alt="2克拉钻戒价格_E色EX切工VVS2净度_True Love系列 奢华款 _Darry Ring求婚钻戒 戴瑞珠宝官网"
|
||||||
|
src="../images/03wj.jpg"></a>
|
||||||
|
<div class="more_cp">
|
||||||
|
<a href="/darry_ring/349.html">> 了解该系列产品</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="navdiv_bottom"></div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li><a href="/question">常见问题</a></li>
|
||||||
|
</ul>
|
||||||
|
<!--导航的右边-->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--导航end-->
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
function logout() {
|
||||||
|
if (window.confirm('确定退出吗?')) {
|
||||||
|
|
||||||
|
$.get("/nAPI/QuitExit.ashx", function (data) {
|
||||||
|
window.location.href = "/";
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<div class="cort">
|
||||||
|
|
||||||
|
<div class="cort">
|
||||||
|
<div class="tobuy cmain">
|
||||||
|
<div class="cmain mb_back">
|
||||||
|
|
||||||
|
<div class="zbk_top spalid">
|
||||||
|
<span>您当前的位置:</span>
|
||||||
|
<span id="ctl00_content_website_SiteMapPath1"><a
|
||||||
|
href="#ctl00_content_website_SiteMapPath1_SkipLink"></a><span>
|
||||||
|
<a target="_blank" href="/index">Darry Ring</a>
|
||||||
|
</span><span>
|
||||||
|
<em>></em>
|
||||||
|
</span><span>
|
||||||
|
<a target="_blank" href="/member_index">我的DR</a>
|
||||||
|
</span><span>
|
||||||
|
<em>></em>
|
||||||
|
</span><span>
|
||||||
|
<span>订单详情</span>
|
||||||
|
</span><a id="ctl00_content_website_SiteMapPath1_SkipLink"></a></span>
|
||||||
|
</div>
|
||||||
|
<div class="member_cort">
|
||||||
|
|
||||||
|
<div class="member_cort-left fl">
|
||||||
|
<!--我的DR-->
|
||||||
|
<div class="member_cortleft-tittle">
|
||||||
|
<i class="mb_home"></i><a rel="nofollow" href="/member_index">我的DR</a>
|
||||||
|
</div>
|
||||||
|
<!--我的DR end-->
|
||||||
|
<ul class="member_cort-ul">
|
||||||
|
<li>
|
||||||
|
<h3> -订单中心-</h3>
|
||||||
|
<ul class="member_ul-dr">
|
||||||
|
<li id="ctl00_content_treeId_order"><a rel="nofollow"
|
||||||
|
href="/member_order">我的订单</a></li>
|
||||||
|
<li id="ctl00_content_treeId_ask"><a rel="nofollow" href="/member/myevaluate">我要评价</a>
|
||||||
|
</li>
|
||||||
|
<li id="ctl00_content_treeId_cart"><a rel="nofollow" href="/cart"
|
||||||
|
target="_blank">我的购物车</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<h3> -帐户管理-</h3>
|
||||||
|
<ul class="member_ul-dr">
|
||||||
|
<li class="speacil_color" id="ctl00_content_treeId_myinfo"><a rel="nofollow"
|
||||||
|
href="/member_info">个人信息</a>
|
||||||
|
</li>
|
||||||
|
<li id="ctl00_content_treeId_password"><a rel="nofollow"
|
||||||
|
href="/member_pwd">修改密码</a></li>
|
||||||
|
<li id="ctl00_content_treeId_address"><a rel="nofollow"
|
||||||
|
href="/member_addr">收货地址</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<!--右边的主要内容-->
|
||||||
|
<div class="member_cort-right fr">
|
||||||
|
<!--我的订单详情-->
|
||||||
|
<div class="member_myorder-xq">
|
||||||
|
<!--详情顶部-->
|
||||||
|
<ul class="member_myorder-xq-tittle">
|
||||||
|
<li>
|
||||||
|
<i>您的订单号:20150707888887</i>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i>订单状态: </i>
|
||||||
|
<a href="#">未处理</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i>下单时间:</i>
|
||||||
|
<span>2015/7/7 22:04:56</span>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!--详情顶部-->
|
||||||
|
<!--订单情况-->
|
||||||
|
<ul style="display:block;" class="member_myorder-xq-ul">
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<!--上-->
|
||||||
|
<div class="myorder-xq-ul-top">
|
||||||
|
提交订单
|
||||||
|
</div>
|
||||||
|
<!--上end-->
|
||||||
|
<!--中-->
|
||||||
|
<div class="myorder-xq-ul-cort xqul-cort1 xqul-cort1-cilck"></div>
|
||||||
|
<!--中end-->
|
||||||
|
<!--下-->
|
||||||
|
<div style="display:block" class="myorder-xq-ul-bottom">
|
||||||
|
<img width="21" height="18" src="../images/ok.png">
|
||||||
|
<p></p>
|
||||||
|
<p></p>
|
||||||
|
</div>
|
||||||
|
<!--下end-->
|
||||||
|
</li>
|
||||||
|
<!--提交订单end-->
|
||||||
|
<li style="display:block">
|
||||||
|
<div class="myorder-xq-ul-line myorder-xq-ul-line-click"></div>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<!--上-->
|
||||||
|
<div class="myorder-xq-ul-top">
|
||||||
|
审核完成
|
||||||
|
</div>
|
||||||
|
<!--上end-->
|
||||||
|
<!--中-->
|
||||||
|
<div class="myorder-xq-ul-cort xqul-cort2 "></div>
|
||||||
|
<!--中end-->
|
||||||
|
<!--下-->
|
||||||
|
<div style="display:none" class="myorder-xq-ul-bottom">
|
||||||
|
<img width="21" height="18" src="../images/ok.png">
|
||||||
|
<p></p>
|
||||||
|
<p></p>
|
||||||
|
</div>
|
||||||
|
<!--下end-->
|
||||||
|
</li>
|
||||||
|
<!--提交订单end-->
|
||||||
|
<li style="display:block">
|
||||||
|
<div class="myorder-xq-ul-line "></div>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<!--上-->
|
||||||
|
<div class="myorder-xq-ul-top">
|
||||||
|
商品定制
|
||||||
|
</div>
|
||||||
|
<!--上end-->
|
||||||
|
<!--中-->
|
||||||
|
<div class="myorder-xq-ul-cort xqul-cort3 "></div>
|
||||||
|
<!--中end-->
|
||||||
|
<!--下-->
|
||||||
|
<div style="display:none" class="myorder-xq-ul-bottom">
|
||||||
|
<img width="21" height="18" src="../images/ok.png">
|
||||||
|
<p></p>
|
||||||
|
<p></p>
|
||||||
|
</div>
|
||||||
|
<!--下end-->
|
||||||
|
</li>
|
||||||
|
<!--提交订单end-->
|
||||||
|
<li style="display:block">
|
||||||
|
<div class="myorder-xq-ul-line "></div>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<!--上-->
|
||||||
|
<div class="myorder-xq-ul-top">
|
||||||
|
检测出库
|
||||||
|
</div>
|
||||||
|
<!--上end-->
|
||||||
|
<!--中-->
|
||||||
|
<div class="myorder-xq-ul-cort xqul-cort4 "></div>
|
||||||
|
<!--中end-->
|
||||||
|
<!--下-->
|
||||||
|
<div style="display:none" class="myorder-xq-ul-bottom">
|
||||||
|
<img width="21" height="18" src="../images/ok.png">
|
||||||
|
<p></p>
|
||||||
|
<p></p>
|
||||||
|
</div>
|
||||||
|
<!--下end-->
|
||||||
|
</li>
|
||||||
|
<!--提交订单end-->
|
||||||
|
<li style="display:block">
|
||||||
|
<div class="myorder-xq-ul-line "></div>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<!--上-->
|
||||||
|
<div class="myorder-xq-ul-top">
|
||||||
|
等待收货
|
||||||
|
</div>
|
||||||
|
<!--上end-->
|
||||||
|
<!--中-->
|
||||||
|
<div class="myorder-xq-ul-cort xqul-cort5 "></div>
|
||||||
|
<!--中end-->
|
||||||
|
<!--下-->
|
||||||
|
<div style="display:none" class="myorder-xq-ul-bottom">
|
||||||
|
<img width="21" height="18" src="../images/ok.png">
|
||||||
|
<p></p>
|
||||||
|
<p></p>
|
||||||
|
</div>
|
||||||
|
<!--下end-->
|
||||||
|
</li>
|
||||||
|
<!--提交订单end-->
|
||||||
|
<li style="display:block">
|
||||||
|
<div class="myorder-xq-ul-line "></div>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<!--上-->
|
||||||
|
<div class="myorder-xq-ul-top">
|
||||||
|
完成
|
||||||
|
</div>
|
||||||
|
<!--上end-->
|
||||||
|
<!--中-->
|
||||||
|
<div class="myorder-xq-ul-cort xqul-cort6 "></div>
|
||||||
|
<!--中end-->
|
||||||
|
<!--下-->
|
||||||
|
<div style="display:none" class="myorder-xq-ul-bottom">
|
||||||
|
<img width="21" height="18" src="../images/ok.png">
|
||||||
|
<p></p>
|
||||||
|
<p></p>
|
||||||
|
</div>
|
||||||
|
<!--下end-->
|
||||||
|
</li>
|
||||||
|
<!--提交订单end-->
|
||||||
|
<li style="display:none">
|
||||||
|
<div class="myorder-xq-ul-line "></div>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<!--提交订单-->
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
<!--订单情况end-->
|
||||||
|
<!--订单信息-->
|
||||||
|
<div class="member_myorder-xq-news">
|
||||||
|
<div class="myorder-xq-news_top">
|
||||||
|
<p class="fl">订单信息</p>
|
||||||
|
</div>
|
||||||
|
<!--订单信息的table-->
|
||||||
|
<table cellspacing="0" cellpadding="0" border="0" class="myorder-xq-news_table"
|
||||||
|
style="font-family:微软雅黑">
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td class="news_table-td1">订单状态</td>
|
||||||
|
<td class="news_table-td2">未处理</td>
|
||||||
|
<td class="news_table-td1">下单日期</td>
|
||||||
|
<td class="news_table-td3"></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="news_table-td1">订单总金额</td>
|
||||||
|
<td class="news_table-td2">¥10,800</td>
|
||||||
|
<td class="news_table-td1">物流方式</td>
|
||||||
|
<td class="news_table-td3"></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="news_table-td1">收货人</td>
|
||||||
|
<td class="news_table-td2">张合</td>
|
||||||
|
<td class="news_table-td1">邮政编码</td>
|
||||||
|
<td class="news_table-td3">223311</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="news_table-td1">移动电话</td>
|
||||||
|
<td class="news_table-td2">13851435593</td>
|
||||||
|
<td class="news_table-td1">收货人地址</td>
|
||||||
|
<td class="news_table-td3"></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="news_table-td1">备注</td>
|
||||||
|
<td colspan="3" class="news_table-td4">纯手工</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
<!--订单信息的table end-->
|
||||||
|
<div class="myorder-xq-news_top">
|
||||||
|
<p class="fl">商品明细</p>
|
||||||
|
</div>
|
||||||
|
<!--商品明细-->
|
||||||
|
<table cellspacing="0" cellpadding="0" border="0" class="myorder-xq-shop_table">
|
||||||
|
<tbody>
|
||||||
|
<tr class="xq-shop_table-trfirst">
|
||||||
|
<td class="xq-shop_table-td1">商 品</td>
|
||||||
|
<td class="xq-shop_table-td2">主钻参数</td>
|
||||||
|
<td class="xq-shop_table-td3">材 质</td>
|
||||||
|
<td class="xq-shop_table-td4">手寸/尺寸</td>
|
||||||
|
<td class="xq-shop_table-td5">数量</td>
|
||||||
|
<td class="xq-shop_table-td6">价 格</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr class="xq-shop_table-trsec">
|
||||||
|
<td class="xq-shop_table-td1">
|
||||||
|
<a href="/darry_ring/87.html">
|
||||||
|
<img width="55" height="55" class="fl"
|
||||||
|
src="../images/201409011932585de1c2f2a9.jpg">
|
||||||
|
<span class="fl">
|
||||||
|
Forever系列 经典款
|
||||||
|
</span></a>
|
||||||
|
</td>
|
||||||
|
<td class="xq-shop_table-td2">
|
||||||
|
<p>30分 G色</p>
|
||||||
|
<p>VS2 EX</p>
|
||||||
|
<p></p>
|
||||||
|
</td>
|
||||||
|
<td class="xq-shop_table-td3">18K白金</td>
|
||||||
|
<td class="xq-shop_table-td4">
|
||||||
|
<p>7</p>
|
||||||
|
</td>
|
||||||
|
<td class="xq-shop_table-td5">素材火♥</td>
|
||||||
|
<td style="font-family:微软雅黑" class="xq-shop_table-td6">¥10,800</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
<!--商品明细end-->
|
||||||
|
|
||||||
|
<!--订单信息end-->
|
||||||
|
<!--返回订单-->
|
||||||
|
<div class="member_myorder-xq-retrun">
|
||||||
|
<a class="fr" href="myorder.aspx">> 返回订单列表</a>
|
||||||
|
</div>
|
||||||
|
<!--返回订单end-->
|
||||||
|
</div>
|
||||||
|
<!--我的订单详情end-->
|
||||||
|
</div>
|
||||||
|
<!--右边的主要内容end-->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<!--底部-->
|
||||||
|
<div class="footer">
|
||||||
|
<!--错误-->
|
||||||
|
<!--提示-->
|
||||||
|
<div class="loverit_word2">Darry
|
||||||
|
Ring严格规定男士凭身份证一生仅能定制一枚,象征男人一生真爱的最高承诺。输入身份证号码即可查询购买记录。
|
||||||
|
</div>
|
||||||
|
<!--提示end-->
|
||||||
|
<div class="loverit_wrong2"><p>信息填写不正确,请重新输入。</p></div>
|
||||||
|
<!--错误end-->
|
||||||
|
<div style="clear:both"></div>
|
||||||
|
<div class="cmain">
|
||||||
|
<ul class="Service_ul">
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p>权威认证</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_2">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p> 一钻双证</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_3">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p> 终生保养</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_4">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p> 以小换大</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_5">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p> 15天退换</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_6">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p> 全国免运费</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_7">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow">
|
||||||
|
<p> 全程保险</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<div class="tw-foot">
|
||||||
|
<div class="auto" id="Copyright">
|
||||||
|
<p> Copyright © 2017 winner winner,chicken dinner All Rights Reserved.
|
||||||
|
粤ICP备11012085号-2.ICP经营许可证粤B2-20140279 </p>
|
||||||
|
<p> 中国互联网违法信息举报中心 | 中国公安网络110报警服务 | 本网站提供所售商品的正式发票 </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="model" id="model">
|
||||||
|
<div class="Prompt" id="Prompt">
|
||||||
|
</div>
|
||||||
|
<span id="log_uid" style="display:none"></span>
|
||||||
|
<span id="log_uname" style="display:none"></span>
|
||||||
|
<span id="log_orderid" style="display:none"></span>
|
||||||
|
<span id="log_price" style="display:none"></span>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<script src="http://wpa.b.qq.com/cgi/wpa.php" charset="utf-8" type="text/javascript"></script>
|
||||||
|
<!--客服(2014年8月29日)-->
|
||||||
|
<div style="display:none" class="Ffloat_kf">
|
||||||
|
<div class="fkf_top">
|
||||||
|
<div style="cursor: pointer; display: none;" id="bridgehead">
|
||||||
|
</div>
|
||||||
|
<div id="BizQQWPA"></div>
|
||||||
|
<div onClick="showModel(modelsever);" style="cursor: pointer;" class="qq_hover" id="qqTalk_head">
|
||||||
|
</div>
|
||||||
|
<div id="BizQQWPAB" class="sh">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="bdBridge">
|
||||||
|
<a href="javascript:NTKF.im_openInPageChat()">
|
||||||
|
<img width="75" height="37" src="../images/zx.jpg"></a></div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="fkf_bottom">
|
||||||
|
<img width="92" height="82" alt="Darry Ring 官方微信" src="../images/to_erwei.jpg">
|
||||||
|
<a href="#">
|
||||||
|
<img width="92" height="26" src="../images/db.jpg"></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!--新版右边客服start-->
|
||||||
|
|
||||||
|
<!--右边漂浮悬挂大的-->
|
||||||
|
<div class="float_big">
|
||||||
|
<div class="floatbig_hide fr"></div>
|
||||||
|
<div class="floatbig_center">
|
||||||
|
<!--客服-->
|
||||||
|
<div onClick="javascript:void(0)" id="Bearonline" class="floatbig_center-kf"></div>
|
||||||
|
<!--客服end-->
|
||||||
|
<!--定制咨询-->
|
||||||
|
<div id="dzzxonline" class="floatbig_center-zx">
|
||||||
|
<a href="javascript:showModel(modelsever);"></a>
|
||||||
|
</div>
|
||||||
|
<!--定制咨询end-->
|
||||||
|
<img src="../images/ew.jpg">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--右边漂浮悬挂大的end-->
|
||||||
|
<!--右边漂浮悬挂小的-->
|
||||||
|
<div class="float_small">
|
||||||
|
<div class="floatbig_show fr"></div>
|
||||||
|
<div class="floatbig_center">
|
||||||
|
<!--客服-->
|
||||||
|
<div onClick="javascript:void(0)" class="floatsmall_center-kf fr"></div>
|
||||||
|
<!--客服end-->
|
||||||
|
<!--定制咨询-->
|
||||||
|
<div class="floatsmall_center-zx fr">
|
||||||
|
<a href="javascript:showModel(modelsever);"></a>
|
||||||
|
</div>
|
||||||
|
<!--定制咨询end-->
|
||||||
|
<!--二维码-->
|
||||||
|
<div class="floatsmall_erwei fr">
|
||||||
|
<a href="#"></a>
|
||||||
|
</div>
|
||||||
|
<!--二维码end-->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--右边漂浮悬挂小的end-->
|
||||||
|
<!--返回顶部-->
|
||||||
|
<div class="comeback"></div>
|
||||||
|
<!--返回顶部end-->
|
||||||
|
|
||||||
|
<!--新版右边客服end-->
|
||||||
|
|
||||||
|
<div style="position: fixed; cursor: pointer; right: 6px; top: 289px; padding-bottom: 152px; z-index: 9999; width: 19px; height: 103px; display: none;"
|
||||||
|
onClick="openserver();" id="openbnt">
|
||||||
|
<img width="19" height="103" src="../images/server_03.jpg"></div>
|
||||||
|
<div class="news_tc">
|
||||||
|
<div class="newtc_left">
|
||||||
|
</div>
|
||||||
|
<div class="newtc_right">
|
||||||
|
<span style="cursor: pointer" class="sszs">稍后再说</span> <span class="xzzx"><a onClick="showxiaon()"
|
||||||
|
style="cursor: pointer"
|
||||||
|
id="chatnow">
|
||||||
|
现在咨询</a></span>
|
||||||
|
<div style="cursor: pointer" class="tocclose">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="mask" id="masks"></div>
|
||||||
|
<div style="display:none;" class="modelsever" id="modelsever">
|
||||||
|
<div class="cs_top">
|
||||||
|
<div class="cs_topcenter">
|
||||||
|
<div style="width:300px; height:40px; line-height:40px; float:left; display:inline-block; ">顾客常见疑问
|
||||||
|
</div>
|
||||||
|
<div style="width:385px; height:20px; float:left; text-align:right; padding-top:20px;">
|
||||||
|
<img width="55" height="9" style="cursor: pointer;" onClick="CloseMaskser()"
|
||||||
|
src="../images/popup_window_btn_close.gif">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="cs_content clear">
|
||||||
|
<div id="box1" class="box1">
|
||||||
|
<div onClick="contenttxt(1,1)" id="content_title_11" class="content_title"><span style="margin-top:8px;">Q:Darry Ring 是否有实体店?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_1" class="content_txt"><span style="margin-top:1px;">A:DR公司总部在香港,目前内地深圳市、北京市、重庆市、广州市、上海市、武汉市、南京市、长沙市设有实体店,支持到店订购,也支持全国在线官网订购。同时目前其他一线城市公司已在考察选址阶段,将陆续开设店面。</span>
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(1,2)" id="content_title_12" class="content_title"><span style="margin-top:8px;">Q:实体店具体位置?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_2" class="content_txt"><span style="margin-top:1px;">A:深圳实体店地址:深圳南山区世界之窗旁欧陆小镇4号楼Darry Ring (地铁罗宝线世界之窗I出口)深圳店联系方式:0755-86621782。<p></p>
|
||||||
|
北京实体店地址:北京东二环朝阳门桥银河SOHO中心B座负一层2-109 (朝阳门地铁G出口) 北京店联系方式:010-59576758。<p></p>
|
||||||
|
上海实体店地址:上海长宁区淮海西路570号红坊创意园区G-108栋(近虹桥路) 上海店联系方式:021-60934520。<p></p>
|
||||||
|
广州实体店地址:广州市天河区天河北路233号中信广场商场136单元 广州店联系方式:020-38836315。<p></p>
|
||||||
|
重庆实体店地址:重庆市渝中区解放碑步行街民族路188号环球金融中心(WFC)LG-B02A 重庆店联系方式:023-63710835。<p></p>
|
||||||
|
武汉实体店地址:武汉市洪山区光谷意大利风情街5号楼一层51021号 武汉店联系方式:027-87688895。<p></p>
|
||||||
|
南京实体店地址:南京市长江路288号1912街区17号楼一层 南京店联系方式:025-83613520。<p></p>
|
||||||
|
长沙实体店地址:长沙市开福区中山路589号万达百货商场2楼 长沙店联系方式:0731-83878575。<p></p>
|
||||||
|
全国400客服热线:400 01 13520。</span></div>
|
||||||
|
<div onClick="contenttxt(1,3)" id="content_title_13" class="content_title"><span style="margin-top:8px;">Q:到店订购和官网订购的价格一致吗?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_3" class="content_txt"><span style="margin-top:1px;">A:DR的所有商品,到店订购和官网订购的时间周期,价格,质量及售后服务均一致。</span>
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(1,4)" id="content_title_14" class="content_title"><span style="margin-top:8px;">Q:价格是否有折扣优惠?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_4" class="content_txt"><span style="margin-top:1px;">A:DR的品牌寓意为一生唯一真爱,大多是用作见证彼此求婚或结婚这一神圣时刻,所以所有商品都是常年任何节假日没有折扣活动,就像彼此一生唯一真爱的承诺及永恒的爱情,永不打折。</span>
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(1,5)" id="content_title_15" class="content_title"><span style="margin-top:8px;">Q:为什么在官网上输入姓名身份证号后看不到款式?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_5" class="content_txt"><span style="margin-top:1px;">A:www.darryring.com 官网首页点击—求婚钻戒,进入页面后不需要填写任何信息,移动鼠标到最下方,就可以看到Darry Ring女戒的所有款式。</span>
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(1,6)" id="content_title_16" class="content_title"><span style="margin-top:8px;">Q:到实体店是否可以立刻拿到戒指?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_6" class="content_txt"><span style="margin-top:1px;">A:您好,DR的所有商品都是需要根据您选择的款式、手寸大小及刻字信息来定制。实体店仅提供款式体验及预订,与官网购买的定制时间是一致的,可于15-20个工作日内送到或自取。</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="box2" class="box2">
|
||||||
|
<div onClick="contenttxt(2,1)" id="content_title_21" class="content_title"></div>
|
||||||
|
<div id="content_title2_1" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(2,2)" id="content_title_22" class="content_title"></div>
|
||||||
|
<div id="content_title2_2" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(2,3)" id="content_title_23" class="content_title"></div>
|
||||||
|
<div id="content_title2_3" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<!--<div class="content_title" onclick="contenttxt(2,4)">4、Q:LES可以购买吗?</div>
|
||||||
|
<div class="content_txt" id="content_title2_4">A:真爱不分性别,只要确定了对方就是您这辈子的真爱,同时您愿意为此绑定自己的身份证信息,那
|
||||||
|
么DR不会限制您追求真爱的自由,您同样是可以购买到Darry Ring的真爱女戒。
|
||||||
|
|
||||||
|
</div>-->
|
||||||
|
<div onClick="contenttxt(2,4)" id="content_title_24" class="content_title"></div>
|
||||||
|
<div id="content_title2_4" class="content_txt">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="box3" class="box3">
|
||||||
|
<div onClick="contenttxt(3,1)" id="content_title_31" class="content_title"></div>
|
||||||
|
<div id="content_title3_1" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(3,2)" id="content_title_32" class="content_title"></div>
|
||||||
|
<div id="content_title3_2" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(3,3)" id="content_title_33" class="content_title"></div>
|
||||||
|
<div id="content_title3_3" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(3,4)" id="content_title_34" class="content_title"></div>
|
||||||
|
<div id="content_title3_4" class="content_txt"></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="box4" class="box4">
|
||||||
|
<div onClick="contenttxt(4,1)" id="content_title_41" class="content_title"></div>
|
||||||
|
<div id="content_title4_1" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(4,2)" id="content_title_42" class="content_title"></div>
|
||||||
|
<div id="content_title4_2" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(4,3)" id="content_title_43" class="content_title"></div>
|
||||||
|
<div id="content_title4_3" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(4,4)" id="content_title_44" class="content_title"></div>
|
||||||
|
<div id="content_title4_4" class="content_txt"></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="box5" class="box5">
|
||||||
|
<div onClick="contenttxt(5,1)" id="content_title_51" class="content_title"></div>
|
||||||
|
<div id="content_title5_1" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(5,2)" id="content_title_52" class="content_title"></div>
|
||||||
|
<div id="content_title5_2" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(5,3)" id="content_title_53" class="content_title"></div>
|
||||||
|
<div id="content_title5_3" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(5,4)" id="content_title_54" class="content_title"></div>
|
||||||
|
<div id="content_title5_4" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(5,5)" id="content_title_55" class="content_title"></div>
|
||||||
|
<div id="content_title5_5" class="content_txt">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(5,6)" id="content_title_56" class="content_title"></div>
|
||||||
|
<div id="content_title5_6" class="content_txt">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="box6" class="box6">
|
||||||
|
<div onClick="contenttxt(6,1)" id="content_title_61" class="content_title"></div>
|
||||||
|
<div id="content_title6_1" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(6,2)" id="content_title_62" class="content_title"></div>
|
||||||
|
<div id="content_title6_2" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(6,3)" id="content_title_63" class="content_title"></div>
|
||||||
|
<div id="content_title6_3" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(6,4)" id="content_title_64" class="content_title"></div>
|
||||||
|
<div id="content_title6_4" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(6,5)" id="content_title_65" class="content_title"></div>
|
||||||
|
<div id="content_title6_5" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(6,6)" id="content_title_66" class="content_title"></div>
|
||||||
|
<div id="content_title6_6" class="content_txt">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="box7" class="box7">
|
||||||
|
<div onClick="contenttxt(7,1)" id="content_title_71" class="content_title"></div>
|
||||||
|
<div id="content_title7_1" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(7,2)" id="content_title_72" class="content_title"></div>
|
||||||
|
<div id="content_title7_2" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(7,3)" id="content_title_73" class="content_title"></div>
|
||||||
|
<div id="content_title7_3" class="content_txt">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript">
|
||||||
|
function showbox(id) {
|
||||||
|
getQeestion(id);
|
||||||
|
for (var i = 1; i <= 8; i++) {
|
||||||
|
if (i == id) {
|
||||||
|
showdiv(id);
|
||||||
|
} else {
|
||||||
|
hidediv(i);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function contenttxt(id, sid) {
|
||||||
|
for (var i = 1; i <= 7; i++) {
|
||||||
|
if (i == id) {
|
||||||
|
showtxt(id, sid);
|
||||||
|
} else {
|
||||||
|
hidetxt(i, sid);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
function showtxt(id, sid) {
|
||||||
|
var objtitle = $("#content_title" + id + "_" + sid);
|
||||||
|
|
||||||
|
if (objtitle.css("display") == "none") {
|
||||||
|
objtitle.show("fast");
|
||||||
|
} else {
|
||||||
|
|
||||||
|
hidetxt(id, sid);
|
||||||
|
}
|
||||||
|
//$("#"+id).show("fast");
|
||||||
|
}
|
||||||
|
|
||||||
|
function hidetxt(id, sid) {
|
||||||
|
var objtitle = $("#content_title" + id + "_" + sid);
|
||||||
|
objtitle.hide("fast");
|
||||||
|
}
|
||||||
|
|
||||||
|
function hidediv(id) {
|
||||||
|
$("#box" + id).hide("fast");
|
||||||
|
|
||||||
|
$("#li" + id).css({"font-size": "14px", "color": "#7d7d7d"});
|
||||||
|
}
|
||||||
|
|
||||||
|
function showdiv(id) {
|
||||||
|
if ($("#box" + id).css("display") == "none") {
|
||||||
|
$("#box" + id).show("fast");
|
||||||
|
$("#li" + id).css({"font-size": "18px", "color": "#000000"});
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
</script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
function showMask() {
|
||||||
|
$("#masks").css("height", $(document).height());
|
||||||
|
$("#masks").css("width", $(document).width());
|
||||||
|
$("#masks").fadeIn();
|
||||||
|
}
|
||||||
|
|
||||||
|
function showModel(divName) {
|
||||||
|
showMask();
|
||||||
|
/* var top = ($(window).height() - $(divName).height()) / 5;
|
||||||
|
var left = ($(window).width() - $(divName).width()) / 2;
|
||||||
|
var scrollTop = $(document).scrollTop();
|
||||||
|
var scrollLeft = $(document).scrollLeft();*/
|
||||||
|
$(divName).fadeIn();
|
||||||
|
}
|
||||||
|
|
||||||
|
function CloseMaskser() {
|
||||||
|
|
||||||
|
$("#modelsever").fadeOut("slow");
|
||||||
|
$("#masks").fadeOut("slow");
|
||||||
|
$("#mask").fadeOut("slow");
|
||||||
|
}
|
||||||
|
|
||||||
|
</script>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
@ -0,0 +1,662 @@
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" class="hb-loaded">
|
||||||
|
<head>
|
||||||
|
<title>个人中心 - 修改密码</title>
|
||||||
|
<meta charset="utf-8"/>
|
||||||
|
<link href="../css/same.css?v=1.3.7.2" type="text/css" rel="stylesheet"/>
|
||||||
|
<link href="../css/same.css?v=1.3.7.2" type="text/css" rel="stylesheet">
|
||||||
|
<link href="../css/member.css?v=1.3.6.0" type="text/css" rel="stylesheet">
|
||||||
|
<script src="../js/jquery.js" type="text/javascript"></script>
|
||||||
|
<script src="../js/index.js?virsion=1.3.7.2" type="text/javascript"></script>
|
||||||
|
<script src="../js/member.js" type="text/javascript"></script>
|
||||||
|
<script>
|
||||||
|
$(function () {
|
||||||
|
$("#ctl00_content_pwd1").keypress(function () {
|
||||||
|
var pwd1 = $("#ctl00_content_pwd1").val();
|
||||||
|
if (pwd1.length >= 5 && pwd1.length < 9) {
|
||||||
|
$("#rou").addClass('mb_red-color');
|
||||||
|
$("#zhong").removeClass('mb_red-color');
|
||||||
|
$("#strong").removeClass('mb_red-color');
|
||||||
|
}
|
||||||
|
if (pwd1.length >= 9 && pwd1.length < 12) {
|
||||||
|
$("#rou").addClass('mb_red-color');
|
||||||
|
$("#zhong").addClass('mb_red-color');
|
||||||
|
$("#strong").removeClass('mb_red-color');
|
||||||
|
|
||||||
|
}
|
||||||
|
if (pwd1.length >= 12 && pwd1.length < 20) {
|
||||||
|
$("#rou").addClass('mb_red-color');
|
||||||
|
$("#zhong").addClass('mb_red-color');
|
||||||
|
$("#strong").addClass('mb_red-color');
|
||||||
|
}
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
$("#ctl00_content_pwd1").blur(function () {
|
||||||
|
var pwd1 = $("#ctl00_content_pwd1").val();
|
||||||
|
if (pwd1.length < 5 || pwd1.length > 20) {
|
||||||
|
$("#txtshow").text("密码长度不正确!");
|
||||||
|
$("#rou").removeClass('mb_red-color');
|
||||||
|
$("#zhong").removeClass('mb_red-color');
|
||||||
|
$("#strong").removeClass('mb_red-color');
|
||||||
|
$("#ctl00_content_pwd1").val("");
|
||||||
|
$("#showr").show();
|
||||||
|
$("#show_wrong").show();
|
||||||
|
return false;
|
||||||
|
} else {
|
||||||
|
$("#showr").hide();
|
||||||
|
$("#show_wrong").hide();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
$("#ctl00_content_pwd2").blur(function () {
|
||||||
|
var pwd1 = $("#ctl00_content_pwd1").val();
|
||||||
|
var pwd2 = $("#ctl00_content_pwd2").val();
|
||||||
|
if (pwd1 != pwd2) {
|
||||||
|
$("#txtwrong").text("两次密码输入不一致!");
|
||||||
|
$("#ctl00_content_pwd2").val("");
|
||||||
|
$(".againpwd").show();
|
||||||
|
return false;
|
||||||
|
} else {
|
||||||
|
$(".againpwd").hide();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
function check() {
|
||||||
|
var pwd = $("#ctl00_content_pwd").val();
|
||||||
|
var pwd1 = $("#ctl00_content_pwd1").val();
|
||||||
|
var pwd2 = $("#ctl00_content_pwd2").val();
|
||||||
|
if (pwd == "") {
|
||||||
|
alert("请输入原始密码!");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (pwd1 == "" || pwd2 == "") {
|
||||||
|
$("#txtwrong").text("请输入密码!");
|
||||||
|
$(".againpwd").show();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (pwd1 != pwd2) {
|
||||||
|
|
||||||
|
$("#txtwrong").text("两次密码输入不一致!");
|
||||||
|
$(".againpwd").show();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<body>
|
||||||
|
<div>
|
||||||
|
<!--头部-->
|
||||||
|
<div class="cmain">
|
||||||
|
<div class="headtop">
|
||||||
|
<!--头部左边-->
|
||||||
|
<div class="top-left fl">
|
||||||
|
<a title="Darry Ring" href="/index">
|
||||||
|
<img width="187" height="42" alt="Darry Ring官网" src="../images/logo.png">
|
||||||
|
</a><span style="font-weight: normal;">求婚钻戒领导品牌</span>
|
||||||
|
</div>
|
||||||
|
<!--头部左边end-->
|
||||||
|
<!--头部右边-->
|
||||||
|
<div class="top-right fr">
|
||||||
|
<!--登录注册-->
|
||||||
|
<ul class="tright-ul fl">
|
||||||
|
|
||||||
|
<div id="ctl00_ucheader_pllogin2">
|
||||||
|
|
||||||
|
<li><a><span id="ctl00_ucheader_lit">KLNgOk</span></a></li>
|
||||||
|
<li><a href="javascript:logout()" rel="nofollow">退出</a><em>|</em></li>
|
||||||
|
<li><a target="black" rel="nofollow" href="/member_index">我的DR</a><em>|</em></li>
|
||||||
|
<li class="headed"><em class="icon shooping"></em><a target="black" rel="nofollow"
|
||||||
|
href="/cart">购物车</a><i>(0)</i></li>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<!--头部右边end-->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--头部end-->
|
||||||
|
<!--导航-->
|
||||||
|
<div class="nav">
|
||||||
|
<div class="cmain">
|
||||||
|
<!--导航的左边-->
|
||||||
|
<ul class="nav-ul fl">
|
||||||
|
<li><a href="/index">首页</a></li>
|
||||||
|
<li><a href="/brand">品牌文化</a></li>
|
||||||
|
<li><a style="font-family:arial" href="/lists">Darry Ring 求婚钻戒</a>
|
||||||
|
<div class="nav-div">
|
||||||
|
<div class="navdiv_top">
|
||||||
|
<div class="navdiv-right">
|
||||||
|
<p><a href="/lists"> 查看所有款</a></p>
|
||||||
|
<p><a href="/dr_series/12_22.html">Forever系列</a></p>
|
||||||
|
<p><a href="/dr_series/11_20.html">My Heart系列</a></p>
|
||||||
|
<p><a href="/dr_series/16_30.html">True Love系列</a></p>
|
||||||
|
<p><a href="/dr_series/15_28.html">I Swear系列</a></p>
|
||||||
|
<p><a href="/dr_series/13_24.html">Just you系列</a></p>
|
||||||
|
</div>
|
||||||
|
<div class="navdiv-left">
|
||||||
|
<h3> NEW</h3>
|
||||||
|
<a href="/detail"> <img width="138" height="97" src="../images/03wj.jpg"/></a>
|
||||||
|
<div class="more_cp">
|
||||||
|
<a href="/detail">> 了解该系列产品</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="navdiv_bottom"></div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li><a href="/question">常见问题</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--导航end-->
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
function logout() {
|
||||||
|
if (window.confirm('确定退出吗?')) {
|
||||||
|
|
||||||
|
$.get("/nAPI/QuitExit.ashx", function (data) {
|
||||||
|
window.location.href = "/";
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<div class="cort">
|
||||||
|
|
||||||
|
<!--中间-->
|
||||||
|
<div class="cort">
|
||||||
|
<!--内容-->
|
||||||
|
<div class="cmain mb_back">
|
||||||
|
<div class="zbk_top spalid">
|
||||||
|
|
||||||
|
<div class="zbk_top spalid">
|
||||||
|
<span>您当前的位置:</span>
|
||||||
|
<span id="ctl00_content_website_SiteMapPath1"><a
|
||||||
|
href="#ctl00_content_website_SiteMapPath1_SkipLink"></a><span>
|
||||||
|
<a target="_blank" href="/index">Darry Ring</a>
|
||||||
|
</span><span>
|
||||||
|
<em>></em>
|
||||||
|
</span><span>
|
||||||
|
<a target="_blank" href="/member_index">我的DR</a>
|
||||||
|
</span><span>
|
||||||
|
<em>></em>
|
||||||
|
</span><span>
|
||||||
|
<span>修改密码</span>
|
||||||
|
</span><a id="ctl00_content_website_SiteMapPath1_SkipLink"></a></span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--中间内容-->
|
||||||
|
<div class="member_cort">
|
||||||
|
<!--左边树-->
|
||||||
|
|
||||||
|
<div class="member_cort-left fl">
|
||||||
|
<!--我的DR-->
|
||||||
|
<div class="member_cortleft-tittle">
|
||||||
|
<i class="mb_home"></i><a rel="nofollow" href="/member_index">我的DR</a>
|
||||||
|
</div>
|
||||||
|
<!--我的DR end-->
|
||||||
|
<ul class="member_cort-ul">
|
||||||
|
<li>
|
||||||
|
<h3>
|
||||||
|
-订单中心-</h3>
|
||||||
|
<ul class="member_ul-dr">
|
||||||
|
<li id="ctl00_content_treeId_order"><a rel="nofollow"
|
||||||
|
href="/member_order">我的订单</a></li>
|
||||||
|
<li id="ctl00_content_treeId_ask"><a rel="nofollow" href="/member/myevaluate">我要评价</a>
|
||||||
|
</li>
|
||||||
|
<li id="ctl00_content_treeId_cart"><a rel="nofollow" href="/cart"
|
||||||
|
target="_blank">我的购物车</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<h3>
|
||||||
|
-帐户管理-</h3>
|
||||||
|
<ul class="member_ul-dr">
|
||||||
|
<li id="ctl00_content_treeId_myinfo"><a rel="nofollow"
|
||||||
|
href="/member_info">个人信息</a></li>
|
||||||
|
<li class="speacil_color" id="ctl00_content_treeId_password"><a rel="nofollow"
|
||||||
|
href="/member_pwd">修改密码</a>
|
||||||
|
</li>
|
||||||
|
<li id="ctl00_content_treeId_address"><a rel="nofollow"
|
||||||
|
href="/member_addr">收货地址</a></li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!--左边树end-->
|
||||||
|
<!--右边的主要内容-->
|
||||||
|
<div class="member_cort-right fr">
|
||||||
|
<!--找回密码-->
|
||||||
|
<div class="member_password">
|
||||||
|
<div class="member_ask-tittle">
|
||||||
|
<h4>
|
||||||
|
修改密码</h4>
|
||||||
|
<p>
|
||||||
|
为保障账户安全,建议避免使用与其他网站相同密码。</p>
|
||||||
|
</div>
|
||||||
|
<!--找回密码-->
|
||||||
|
<div class="member_password-find">
|
||||||
|
<div class="person-cort_left-write">
|
||||||
|
<span>原始密码:</span>
|
||||||
|
<input type="password" class="write_text" id="ctl00_content_pwd"
|
||||||
|
name="ctl00$content$pwd">
|
||||||
|
</div>
|
||||||
|
<div style="float: left" class="person-cort_left-write person-cort_left-password">
|
||||||
|
<span>新密码:</span>
|
||||||
|
<input type="password" class="write_text" id="ctl00_content_pwd1"
|
||||||
|
name="ctl00$content$pwd1">
|
||||||
|
<em id="rou">弱</em> <em id="zhong">中</em> <em id="strong">强</em>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div style="display: none;" id="showr" class="person-cort_left-write">
|
||||||
|
<i id="pwdwrong" class="writer_wrong pwd"></i><em class="pwd" id="txtshow"></em>
|
||||||
|
</div>
|
||||||
|
<div style="clear: both" class="person-cort_left-write">
|
||||||
|
<span>确认新密码:</span>
|
||||||
|
<input type="password" class="write_text" id="ctl00_content_pwd2"
|
||||||
|
name="ctl00$content$pwd2">
|
||||||
|
<i id="wrong" style="display: none" class="writer_wrong againpwd"></i><em
|
||||||
|
style="display: none" class="againpwd" id="txtwrong"></em>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div style="margin-left: 90px">
|
||||||
|
<input type="submit" style="border-style:None;" class="bt1 person-sp-button"
|
||||||
|
id="btnsubmit" onClick="return check();" value="立即提交"
|
||||||
|
name="ctl00$content$btnsubmit"></div>
|
||||||
|
<!--找回密码end-->
|
||||||
|
</div>
|
||||||
|
<!--找回密码end-->
|
||||||
|
</div>
|
||||||
|
<!--右边的主要内容end-->
|
||||||
|
</div>
|
||||||
|
<!--中间内容end-->
|
||||||
|
</div>
|
||||||
|
<!--内容end-->
|
||||||
|
</div>
|
||||||
|
<!--中间end-->
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<!--底部-->
|
||||||
|
<div class="footer">
|
||||||
|
<!--错误-->
|
||||||
|
<!--提示-->
|
||||||
|
<div class="loverit_word2" style="display: none;">
|
||||||
|
Darry Ring严格规定男士凭身份证一生仅能定制一枚,象征男人一生真爱的最高承诺。输入身份证号码即可查询购买记录。
|
||||||
|
</div>
|
||||||
|
<!--提示end-->
|
||||||
|
<div class="loverit_wrong2" style="display: none;">
|
||||||
|
<p>信息填写不正确,请重新输入。</p>
|
||||||
|
</div>
|
||||||
|
<!--错误end-->
|
||||||
|
<div style="clear:both"></div>
|
||||||
|
<div class="cmain">
|
||||||
|
<ul class="Service_ul">
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"><p>权威认证</p></a></li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_2">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"><p> 一钻双证</p></a></li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_3">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"><p> 终生保养</p></a></li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_4">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"><p> 以小换大</p></a></li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_5">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"><p> 15天退换</p></a></li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_6">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"><p> 全国免运费</p></a></li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_7">
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="javascript:void(0)" rel="nofollow"><p> 全程保险</p></a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<!--条文-->
|
||||||
|
<div class="auto" id="Menu_Service">
|
||||||
|
</div>
|
||||||
|
<div class="tw-foot">
|
||||||
|
<div class="auto" id="Copyright">
|
||||||
|
<p> Copyright © 2017 winner winner,chickdinner !!团队 All Rights Reserved.
|
||||||
|
闽ICP备11012085号-2.ICP经营许可证闽B2-20140279 </p>
|
||||||
|
<p> 中国互联网违法信息举报中心 | 中国公安网络110报警服务 | 本网站提供所售商品的正式发票 </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="model" id="model">
|
||||||
|
<div class="Prompt" id="Prompt">
|
||||||
|
</div>
|
||||||
|
<span id="log_uid" style="display:none"></span>
|
||||||
|
<span id="log_uname" style="display:none"></span>
|
||||||
|
<span id="log_orderid" style="display:none"></span>
|
||||||
|
<span id="log_price" style="display:none"></span>
|
||||||
|
</div>
|
||||||
|
<!-- <script src="http://wpa.b.qq.com/cgi/wpa.php" charset="utf-8" type="text/javascript"></script> -->
|
||||||
|
<!--客服(2014年8月29日)-->
|
||||||
|
<div style="display:none" class="Ffloat_kf">
|
||||||
|
<div class="fkf_top">
|
||||||
|
<div style="cursor: pointer; display: none;" id="bridgehead">
|
||||||
|
</div>
|
||||||
|
<div id="BizQQWPA"></div>
|
||||||
|
<div onClick="showModel(modelsever);" style="cursor: pointer;" class="qq_hover" id="qqTalk_head">
|
||||||
|
</div>
|
||||||
|
<div id="BizQQWPAB" class="sh">
|
||||||
|
</div>
|
||||||
|
<div id="bdBridge">
|
||||||
|
<a href="javascript:NTKF.im_openInPageChat()"> <img width="75" height="37" src="../images/zx.jpg"/></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="fkf_bottom">
|
||||||
|
<img width="92" height="82" alt="Darry Ring 官方微信" src="../images/to_erwei.jpg"/>
|
||||||
|
<a href="#"> <img width="92" height="26" src="../images/db.jpg"/></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--新版右边客服start-->
|
||||||
|
<!--右边漂浮悬挂大的-->
|
||||||
|
<div class="float_big">
|
||||||
|
<div class="floatbig_hide fr"></div>
|
||||||
|
<div class="floatbig_center">
|
||||||
|
<!--客服-->
|
||||||
|
<div onClick="javascript:void(0)" id="Bearonline" class="floatbig_center-kf"></div>
|
||||||
|
<!--客服end-->
|
||||||
|
<!--定制咨询-->
|
||||||
|
<div id="dzzxonline" class="floatbig_center-zx">
|
||||||
|
<a href="javascript:showModel(modelsever);"></a>
|
||||||
|
</div>
|
||||||
|
<!--定制咨询end-->
|
||||||
|
<img src="../images/ew.jpg"/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--右边漂浮悬挂大的end-->
|
||||||
|
<!--右边漂浮悬挂小的-->
|
||||||
|
<div class="float_small">
|
||||||
|
<div class="floatbig_show fr"></div>
|
||||||
|
<div class="floatbig_center">
|
||||||
|
<!--客服-->
|
||||||
|
<div onClick="javascript:void(0)" class="floatsmall_center-kf fr"></div>
|
||||||
|
<!--客服end-->
|
||||||
|
<!--定制咨询-->
|
||||||
|
<div class="floatsmall_center-zx fr">
|
||||||
|
<a href="javascript:showModel(modelsever);"></a>
|
||||||
|
</div>
|
||||||
|
<!--定制咨询end-->
|
||||||
|
<!--二维码-->
|
||||||
|
<div class="floatsmall_erwei fr">
|
||||||
|
<a href="#"></a>
|
||||||
|
</div>
|
||||||
|
<!--二维码end-->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--右边漂浮悬挂小的end-->
|
||||||
|
<!--返回顶部-->
|
||||||
|
<div class="comeback" style="display: block;"></div>
|
||||||
|
<!--返回顶部end-->
|
||||||
|
<!--新版右边客服end-->
|
||||||
|
<div style="position: fixed; cursor: pointer; right: 6px; top: 289px; padding-bottom: 152px; z-index: 9999; width: 19px; height: 103px; display: none;"
|
||||||
|
onClick="openserver();" id="openbnt">
|
||||||
|
<img width="19" height="103" src="../images/server_03.jpg"/>
|
||||||
|
</div>
|
||||||
|
<div class="news_tc">
|
||||||
|
<div class="newtc_left">
|
||||||
|
</div>
|
||||||
|
<div class="newtc_right">
|
||||||
|
<span style="cursor: pointer" class="sszs">稍后再说</span>
|
||||||
|
<span class="xzzx"><a onClick="showxiaon()" style="cursor: pointer" id="chatnow"> 现在咨询</a></span>
|
||||||
|
<div style="cursor: pointer" class="tocclose">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="mask" id="masks">
|
||||||
|
</div>
|
||||||
|
<div style="display:none;" class="modelsever" id="modelsever">
|
||||||
|
<div class="cs_top">
|
||||||
|
<div class="cs_topcenter">
|
||||||
|
<div style="width:300px; height:40px; line-height:40px; float:left; display:inline-block; ">
|
||||||
|
顾客常见疑问
|
||||||
|
</div>
|
||||||
|
<div style="width:385px; height:20px; float:left; text-align:right; padding-top:20px;">
|
||||||
|
<img width="55" height="9" style="cursor: pointer;" onClick="CloseMaskser()"
|
||||||
|
src="../images/popup_window_btn_close.gif"/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="cs_content clear">
|
||||||
|
<div id="box1" class="box1">
|
||||||
|
<div onClick="contenttxt(1,1)" id="content_title_11" class="content_title">
|
||||||
|
<span style="margin-top:8px;">Q:Darry Ring 是否有实体店?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_1" class="content_txt">
|
||||||
|
<span style="margin-top:1px;">A:DR公司总部在香港,目前内地深圳市、北京市、重庆市、广州市、上海市、武汉市、南京市、长沙市设有实体店,支持到店订购,也支持全国在线官网订购。同时目前其他一线城市公司已在考察选址阶段,将陆续开设店面。</span>
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(1,2)" id="content_title_12" class="content_title">
|
||||||
|
<span style="margin-top:8px;">Q:实体店具体位置?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_2" class="content_txt">
|
||||||
|
<span style="margin-top:1px;">A:深圳实体店地址:深圳南山区世界之窗旁欧陆小镇4号楼Darry Ring (地铁罗宝线世界之窗I出口)深圳店联系方式:0755-86621782。<p></p> 北京实体店地址:北京东二环朝阳门桥银河SOHO中心B座负一层2-109 (朝阳门地铁G出口) 北京店联系方式:010-59576758。<p></p> 上海实体店地址:上海长宁区淮海西路570号红坊创意园区G-108栋(近虹桥路) 上海店联系方式:021-60934520。<p></p> 广州实体店地址:广州市天河区天河北路233号中信广场商场136单元 广州店联系方式:020-38836315。<p></p> 重庆实体店地址:重庆市渝中区解放碑步行街民族路188号环球金融中心(WFC)LG-B02A 重庆店联系方式:023-63710835。<p></p> 武汉实体店地址:武汉市洪山区光谷意大利风情街5号楼一层51021号 武汉店联系方式:027-87688895。<p></p> 南京实体店地址:南京市长江路288号1912街区17号楼一层 南京店联系方式:025-83613520。<p></p> 长沙实体店地址:长沙市开福区中山路589号万达百货商场2楼 长沙店联系方式:0731-83878575。<p></p> 全国400客服热线:400 01 13520。</span>
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(1,3)" id="content_title_13" class="content_title">
|
||||||
|
<span style="margin-top:8px;">Q:到店订购和官网订购的价格一致吗?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_3" class="content_txt">
|
||||||
|
<span style="margin-top:1px;">A:DR的所有商品,到店订购和官网订购的时间周期,价格,质量及售后服务均一致。</span>
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(1,4)" id="content_title_14" class="content_title">
|
||||||
|
<span style="margin-top:8px;">Q:价格是否有折扣优惠?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_4" class="content_txt">
|
||||||
|
<span style="margin-top:1px;">A:DR的品牌寓意为一生唯一真爱,大多是用作见证彼此求婚或结婚这一神圣时刻,所以所有商品都是常年任何节假日没有折扣活动,就像彼此一生唯一真爱的承诺及永恒的爱情,永不打折。</span>
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(1,5)" id="content_title_15" class="content_title">
|
||||||
|
<span style="margin-top:8px;">Q:为什么在官网上输入姓名身份证号后看不到款式?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_5" class="content_txt">
|
||||||
|
<span style="margin-top:1px;">A:www.darryring.com 官网首页点击—求婚钻戒,进入页面后不需要填写任何信息,移动鼠标到最下方,就可以看到Darry Ring女戒的所有款式。</span>
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(1,6)" id="content_title_16" class="content_title">
|
||||||
|
<span style="margin-top:8px;">Q:到实体店是否可以立刻拿到戒指?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_6" class="content_txt">
|
||||||
|
<span style="margin-top:1px;">A:您好,DR的所有商品都是需要根据您选择的款式、手寸大小及刻字信息来定制。实体店仅提供款式体验及预订,与官网购买的定制时间是一致的,可于15-20个工作日内送到或自取。</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="box2" class="box2">
|
||||||
|
<div onClick="contenttxt(2,1)" id="content_title_21" class="content_title"></div>
|
||||||
|
<div id="content_title2_1" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(2,2)" id="content_title_22" class="content_title"></div>
|
||||||
|
<div id="content_title2_2" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(2,3)" id="content_title_23" class="content_title"></div>
|
||||||
|
<div id="content_title2_3" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(2,4)" id="content_title_24" class="content_title"></div>
|
||||||
|
<div id="content_title2_4" class="content_txt">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="box3" class="box3">
|
||||||
|
<div onClick="contenttxt(3,1)" id="content_title_31" class="content_title"></div>
|
||||||
|
<div id="content_title3_1" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(3,2)" id="content_title_32" class="content_title"></div>
|
||||||
|
<div id="content_title3_2" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(3,3)" id="content_title_33" class="content_title"></div>
|
||||||
|
<div id="content_title3_3" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(3,4)" id="content_title_34" class="content_title"></div>
|
||||||
|
<div id="content_title3_4" class="content_txt"></div>
|
||||||
|
</div>
|
||||||
|
<div id="box4" class="box4">
|
||||||
|
<div onClick="contenttxt(4,1)" id="content_title_41" class="content_title"></div>
|
||||||
|
<div id="content_title4_1" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(4,2)" id="content_title_42" class="content_title"></div>
|
||||||
|
<div id="content_title4_2" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(4,3)" id="content_title_43" class="content_title"></div>
|
||||||
|
<div id="content_title4_3" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(4,4)" id="content_title_44" class="content_title"></div>
|
||||||
|
<div id="content_title4_4" class="content_txt"></div>
|
||||||
|
</div>
|
||||||
|
<div id="box5" class="box5">
|
||||||
|
<div onClick="contenttxt(5,1)" id="content_title_51" class="content_title"></div>
|
||||||
|
<div id="content_title5_1" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(5,2)" id="content_title_52" class="content_title"></div>
|
||||||
|
<div id="content_title5_2" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(5,3)" id="content_title_53" class="content_title"></div>
|
||||||
|
<div id="content_title5_3" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(5,4)" id="content_title_54" class="content_title"></div>
|
||||||
|
<div id="content_title5_4" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(5,5)" id="content_title_55" class="content_title"></div>
|
||||||
|
<div id="content_title5_5" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(5,6)" id="content_title_56" class="content_title"></div>
|
||||||
|
<div id="content_title5_6" class="content_txt">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="box6" class="box6">
|
||||||
|
<div onClick="contenttxt(6,1)" id="content_title_61" class="content_title"></div>
|
||||||
|
<div id="content_title6_1" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(6,2)" id="content_title_62" class="content_title"></div>
|
||||||
|
<div id="content_title6_2" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(6,3)" id="content_title_63" class="content_title"></div>
|
||||||
|
<div id="content_title6_3" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(6,4)" id="content_title_64" class="content_title"></div>
|
||||||
|
<div id="content_title6_4" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(6,5)" id="content_title_65" class="content_title"></div>
|
||||||
|
<div id="content_title6_5" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(6,6)" id="content_title_66" class="content_title"></div>
|
||||||
|
<div id="content_title6_6" class="content_txt">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="box7" class="box7">
|
||||||
|
<div onClick="contenttxt(7,1)" id="content_title_71" class="content_title"></div>
|
||||||
|
<div id="content_title7_1" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(7,2)" id="content_title_72" class="content_title"></div>
|
||||||
|
<div id="content_title7_2" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(7,3)" id="content_title_73" class="content_title"></div>
|
||||||
|
<div id="content_title7_3" class="content_txt">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript">
|
||||||
|
function showbox(id) {
|
||||||
|
getQeestion(id);
|
||||||
|
for (var i = 1; i <= 8; i++) {
|
||||||
|
if (i == id) {
|
||||||
|
showdiv(id);
|
||||||
|
} else {
|
||||||
|
hidediv(i);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function contenttxt(id, sid) {
|
||||||
|
for (var i = 1; i <= 7; i++) {
|
||||||
|
if (i == id) {
|
||||||
|
showtxt(id, sid);
|
||||||
|
} else {
|
||||||
|
hidetxt(i, sid);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
function showtxt(id, sid) {
|
||||||
|
var objtitle = $("#content_title" + id + "_" + sid);
|
||||||
|
|
||||||
|
if (objtitle.css("display") == "none") {
|
||||||
|
objtitle.show("fast");
|
||||||
|
} else {
|
||||||
|
|
||||||
|
hidetxt(id, sid);
|
||||||
|
}
|
||||||
|
//$("#"+id).show("fast");
|
||||||
|
}
|
||||||
|
|
||||||
|
function hidetxt(id, sid) {
|
||||||
|
var objtitle = $("#content_title" + id + "_" + sid);
|
||||||
|
objtitle.hide("fast");
|
||||||
|
}
|
||||||
|
|
||||||
|
function hidediv(id) {
|
||||||
|
$("#box" + id).hide("fast");
|
||||||
|
|
||||||
|
$("#li" + id).css({"font-size": "14px", "color": "#7d7d7d"});
|
||||||
|
}
|
||||||
|
|
||||||
|
function showdiv(id) {
|
||||||
|
if ($("#box" + id).css("display") == "none") {
|
||||||
|
$("#box" + id).show("fast");
|
||||||
|
$("#li" + id).css({"font-size": "18px", "color": "#000000"});
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
</script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
function showMask() {
|
||||||
|
$("#masks").css("height", $(document).height());
|
||||||
|
$("#masks").css("width", $(document).width());
|
||||||
|
$("#masks").fadeIn();
|
||||||
|
}
|
||||||
|
|
||||||
|
function showModel(divName) {
|
||||||
|
showMask();
|
||||||
|
/* var top = ($(window).height() - $(divName).height()) / 5;
|
||||||
|
var left = ($(window).width() - $(divName).width()) / 2;
|
||||||
|
var scrollTop = $(document).scrollTop();
|
||||||
|
var scrollLeft = $(document).scrollLeft();*/
|
||||||
|
$(divName).fadeIn();
|
||||||
|
}
|
||||||
|
|
||||||
|
function CloseMaskser() {
|
||||||
|
|
||||||
|
$("#modelsever").fadeOut("slow");
|
||||||
|
$("#masks").fadeOut("slow");
|
||||||
|
$("#mask").fadeOut("slow");
|
||||||
|
}
|
||||||
|
|
||||||
|
</script>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
@ -0,0 +1,722 @@
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" class="hb-loaded">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<title>常见问题</title>
|
||||||
|
<meta charset="utf-8"/>
|
||||||
|
<link href="../css/same.css?v=1.3.7.2" type="text/css" rel="stylesheet">
|
||||||
|
<link href="../css/aboutUs.css?v=1.3.5.0" type="text/css" rel="stylesheet">
|
||||||
|
<script type="text/javascript" src="../js/jquery.js"></script>
|
||||||
|
<script src="../js/index.js?virsion=1.3.7.2" type="text/javascript"></script>
|
||||||
|
<script src="../js/aboutUs.js" type="text/javascript"></script>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<iframe src="javascript:false;" style="display: none;"></iframe>
|
||||||
|
<form id="aspnetForm" action="/question" method="post" name="aspnetForm"></form>
|
||||||
|
<div>
|
||||||
|
<script type="text/javascript">
|
||||||
|
function showSearch() {
|
||||||
|
window.location = "/diydr/?pname=" + encodeURI($(".search input").val()) + "&bprice=&eprice=&bct=&ect=&orderby=&pagenum=1";
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<!--头部-->
|
||||||
|
<div class="cmain">
|
||||||
|
<div class="headtop">
|
||||||
|
<!--头部左边-->
|
||||||
|
<div class="top-left fl">
|
||||||
|
<a title="Darry Ring" href="/index">
|
||||||
|
<img width="187" height="42" alt="Darry Ring官网" src="../images/logo.png">
|
||||||
|
</a><span style="font-weight: normal;">求婚钻戒领导品牌</span>
|
||||||
|
</div>
|
||||||
|
<!--头部左边end-->
|
||||||
|
<!--头部右边-->
|
||||||
|
<div class="top-right fr">
|
||||||
|
<!--登录注册-->
|
||||||
|
<ul class="tright-ul fl">
|
||||||
|
|
||||||
|
<div id="ctl00_ucheader_pllogin2">
|
||||||
|
|
||||||
|
<li><a><span id="ctl00_ucheader_lit">KLNgOk</span></a></li>
|
||||||
|
<li><a href="javascript:logout()" rel="nofollow">退出</a><em>|</em></li>
|
||||||
|
<li><a target="black" rel="nofollow" href="/member_index">我的DR</a><em>|</em></li>
|
||||||
|
<li class="headed"><em class="icon shooping"></em><a target="black" rel="nofollow"
|
||||||
|
href="/cart">购物车</a><i>(0)</i>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<div style="display:none;" class="search">
|
||||||
|
<input type="text" placeholder="求婚钻戒" class="txt1">
|
||||||
|
<div onClick="showSearch()" class="icon toser">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--头部右边end-->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--头部end-->
|
||||||
|
<!--导航-->
|
||||||
|
<div class="nav">
|
||||||
|
<div class="cmain">
|
||||||
|
<!--导航的左边-->
|
||||||
|
<ul class="nav-ul fl">
|
||||||
|
<li><a href="/index">首页</a></li>
|
||||||
|
<li class=""><a href="/brand">品牌文化</a>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
<li class=""><a style="font-family:arial" href="/lists">Darry Ring 求婚钻戒</a>
|
||||||
|
<div class="nav-div" style="display: none;">
|
||||||
|
<div class="navdiv_top">
|
||||||
|
<div class="navdiv-right">
|
||||||
|
<p><a href="/lists"> 查看所有款</a></p>
|
||||||
|
<p>
|
||||||
|
<a href="/pinkdiamond.aspx">稀世粉钻系列</a></p>
|
||||||
|
<p>
|
||||||
|
<a href="/dr_series/12_22.html">Forever系列</a></p>
|
||||||
|
<p>
|
||||||
|
<a href="/dr_series/11_20.html">My Heart系列</a></p>
|
||||||
|
<p>
|
||||||
|
<a href="/dr_series/16_30.html">True Love系列</a></p>
|
||||||
|
<p>
|
||||||
|
<a href="/dr_series/15_28.html">I Swear系列</a></p>
|
||||||
|
<p>
|
||||||
|
<a href="/dr_series/13_24.html">Just you系列</a></p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="navdiv-left">
|
||||||
|
<h3>
|
||||||
|
NEW</h3>
|
||||||
|
<a href="/darry_ring/349.html">
|
||||||
|
<img width="138" height="97"
|
||||||
|
alt="2克拉钻戒价格_E色EX切工VVS2净度_True Love系列 奢华款 _Darry Ring求婚钻戒 戴瑞珠宝官网"
|
||||||
|
src="../images/03wj.jpg"></a>
|
||||||
|
<div class="more_cp">
|
||||||
|
<a href="/darry_ring/349.html">> 了解该系列产品</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="navdiv_bottom"></div>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li><a href="/question">常见问题</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--导航end-->
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
function logout() {
|
||||||
|
if (window.confirm('确定退出吗?')) {
|
||||||
|
|
||||||
|
$.get("/nAPI/QuitExit.ashx", function (data) {
|
||||||
|
window.location.href = "/";
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<div class="cort">
|
||||||
|
|
||||||
|
<!--中间-->
|
||||||
|
<div class="cort">
|
||||||
|
<!--内容-->
|
||||||
|
<div class="cmain aboutUs">
|
||||||
|
<!--主要内容-->
|
||||||
|
<div class="about_center">
|
||||||
|
<!--导航条( 一 )-->
|
||||||
|
<div style="display:none" class="about_center-top">
|
||||||
|
<!--左边-->
|
||||||
|
<div class="ttop_left fl">
|
||||||
|
购买流程
|
||||||
|
</div>
|
||||||
|
<!--左边end-->
|
||||||
|
<!--右边-->
|
||||||
|
<ul class="ttop_right fl">
|
||||||
|
<li><span class="tdnav-left"></span><a class="tdnav-center" onClick="buyaction(89)"
|
||||||
|
href="javascript:void(0);">1. 挑选款式</a></li>
|
||||||
|
<li><span class="tdnav-left"></span><a class="tdnav-center" onClick="buyaction(90)"
|
||||||
|
href="javascript:void(0);">2. 挑选钻石</a></li>
|
||||||
|
<li><span class="tdnav-left"></span><a class="tdnav-center" onClick="buyaction(91)"
|
||||||
|
href="javascript:void(0)">3. 身份验证</a></li>
|
||||||
|
<li><span class="tdnav-left"></span><a class="tdnav-center" onClick="buyaction(92)"
|
||||||
|
href="javascript:void(0)">4. 填写协议</a></li>
|
||||||
|
<li><span class="tdnav-left"></span><a class="tdnav-center" onClick="buyaction(93)"
|
||||||
|
href="javascript:void(0)">5. 提交订单</a></li>
|
||||||
|
<li><span class="tdnav-left"></span><a class="tdnav-center" onClick="buyaction(94)"
|
||||||
|
href="javascript:void(0)">6. 完成</a><i
|
||||||
|
class="tdnav-right"></i></li>
|
||||||
|
</ul>
|
||||||
|
<!--右边end-->
|
||||||
|
</div>
|
||||||
|
<!--导航条( 一 )end-->
|
||||||
|
<!--导航条( 二 )-->
|
||||||
|
<div class="question_allnav">
|
||||||
|
<ul class="question_allnav-top">
|
||||||
|
<li>挑选款式</li>
|
||||||
|
<li>挑选钻石</li>
|
||||||
|
<li>身份验证</li>
|
||||||
|
<li>填写协议</li>
|
||||||
|
<li>提交订单</li>
|
||||||
|
<li>完成</li>
|
||||||
|
</ul>
|
||||||
|
<ul class="question_allnav-bottom">
|
||||||
|
<li class=""><span></span></li>
|
||||||
|
<li><span></span></li>
|
||||||
|
<li><span></span></li>
|
||||||
|
<li><span></span></li>
|
||||||
|
<li><span></span></li>
|
||||||
|
<li><span></span></li>
|
||||||
|
</ul>
|
||||||
|
<div class="question_bottom"></div>
|
||||||
|
</div>
|
||||||
|
<!--导航条( 二 )end-->
|
||||||
|
<!--中间内容-->
|
||||||
|
<div class="about_center-cort">
|
||||||
|
<!--右边-->
|
||||||
|
<div class="ques_right fl">
|
||||||
|
<!--常见问题-->
|
||||||
|
<div class="common_question">
|
||||||
|
<h3 id="commonqudestion">官网店铺:</h3>
|
||||||
|
<ul class="com-question">
|
||||||
|
<li>
|
||||||
|
<h4><span style="margin-top:8px;">Q:Darry Ring 是否有实体店?</span></h4>
|
||||||
|
<div style="display: block">
|
||||||
|
<p><span style="margin-top:1px;">A:DR公司总部在香港,目前内地深圳市、北京市、重庆市、广州市、上海市、武汉市、南京市、长沙市设有实体店,支持到店订购,也支持全国在线官网订购。同时目前其他一线城市公司已在考察选址阶段,将陆续开设店面。</span>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<h4><span style="margin-top:8px;">Q:实体店具体位置?</span>
|
||||||
|
</h4>
|
||||||
|
<div>
|
||||||
|
<p><span style="margin-top:1px;">A:深圳实体店地址:深圳南山区世界之窗旁欧陆小镇4号楼Darry Ring (地铁罗宝线世界之窗I出口)深圳店联系方式:0755-86621782。</span>
|
||||||
|
</p>
|
||||||
|
北京实体店地址:北京东二环朝阳门桥银河SOHO中心B座负一层2-109 (朝阳门地铁G出口)
|
||||||
|
北京店联系方式:010-59576758。
|
||||||
|
<p></p>
|
||||||
|
上海实体店地址:上海长宁区淮海西路570号红坊创意园区G-108栋(近虹桥路)
|
||||||
|
上海店联系方式:021-60934520。
|
||||||
|
<p></p>
|
||||||
|
广州实体店地址:广州市天河区天河北路233号中信广场商场136单元
|
||||||
|
广州店联系方式:020-38836315。
|
||||||
|
<p></p>
|
||||||
|
重庆实体店地址:重庆市渝中区解放碑步行街民族路188号环球金融中心(WFC)LG-B02A
|
||||||
|
重庆店联系方式:023-63710835。
|
||||||
|
<p></p>
|
||||||
|
武汉实体店地址:武汉市洪山区光谷意大利风情街5号楼一层51021号
|
||||||
|
武汉店联系方式:027-87688895。
|
||||||
|
<p></p>
|
||||||
|
南京实体店地址:南京市长江路288号1912街区17号楼一层 南京店联系方式:025-83613520。
|
||||||
|
<p></p>
|
||||||
|
长沙实体店地址:长沙市开福区中山路589号万达百货商场2楼
|
||||||
|
长沙店联系方式:0731-83878575。
|
||||||
|
<p></p>
|
||||||
|
全国400客服热线:400 01 13520。
|
||||||
|
<p></p>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<h4><span style="margin-top:8px;">Q:到店订购和官网订购的价格一致吗?</span>
|
||||||
|
</h4>
|
||||||
|
<div>
|
||||||
|
<p><span
|
||||||
|
style="margin-top:1px;">A:DR的所有商品,到店订购和官网订购的时间周期,价格,质量及售后服务均一致。</span>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<h4><span style="margin-top:8px;">Q:价格是否有折扣优惠?</span></h4>
|
||||||
|
<div>
|
||||||
|
<p><span style="margin-top:1px;">A:DR的品牌寓意为一生唯一真爱,大多是用作见证彼此求婚或结婚这一神圣时刻,所以所有商品都是常年任何节假日没有折扣活动,就像彼此一生唯一真爱的承诺及永恒的爱情,永不打折。</span>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<h4><span
|
||||||
|
style="margin-top:8px;">Q:为什么在官网上输入姓名身份证号后看不到款式?</span>
|
||||||
|
</h4>
|
||||||
|
<div>
|
||||||
|
<p><span style="margin-top:1px;">A:www.darryring.com 官网首页点击—求婚钻戒,进入页面后不需要填写任何信息,移动鼠标到最下方,就可以看到Darry Ring女戒的所有款式。</span>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<h4><span style="margin-top:8px;">Q:到实体店是否可以立刻拿到戒指?</span>
|
||||||
|
</h4>
|
||||||
|
<div>
|
||||||
|
<p><span style="margin-top:1px;">A:您好,DR的所有商品都是需要根据您选择的款式、手寸大小及刻字信息来定制。实体店仅提供款式体验及预订,与官网购买的定制时间是一致的,可于15-20个工作日内送到或自取。</span>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<h4><span style="margin-top:8px;">Q:哪些电商平台可以购买到DR正品?</span>
|
||||||
|
</h4>
|
||||||
|
<div>
|
||||||
|
<p></p>
|
||||||
|
<p>
|
||||||
|
<span style="margin-top:8px;">A:戴瑞目前开通电商平台有:亚马逊、京东、天猫、一号店等电商平台?</span>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<span style="margin-top:8px;"><a
|
||||||
|
href="http://darryring.tmall.com/?spm=a220o.1000855.1997427721.d4918089.bGtU16"><img
|
||||||
|
width="201" height="85"
|
||||||
|
src="../images/20150707101641f9d958efff.jpg"
|
||||||
|
alt=""></a> <a
|
||||||
|
href="http://search.jd.com/search?keyword=%E7%8F%A0%E5%AE%9D&enc=utf-8&qrst=1&ps=addr&rt=1&stop=1&ev=exbrand_DR%20darryring%40&uc=0"><img
|
||||||
|
width="201" height="85"
|
||||||
|
src="../images/2015070710170180545692fd.jpg"
|
||||||
|
alt=""></a> <a
|
||||||
|
href="http://list.yhd.com/c0-0-0/b969402-30038/a-s1-v4-p1-price-d0-f0-m1-rt0-pid-mid0-k%E7%8F%A0%E5%AE%9D/"><img
|
||||||
|
width="201" height="85"
|
||||||
|
src="../images/20150707101711e7690bde7f.jpg"
|
||||||
|
alt=""></a> <a
|
||||||
|
href="http://www.amazon.cn/s/ref=sr_nr_i_0?fst=as%3Aoff&rh=k%3ADarry+Ring%2Ci%3Ajewelry&keywords=Darry+Ring&ie=UTF8&qid=1436234715"><img
|
||||||
|
width="201" height="85"
|
||||||
|
src="../images/20150707101722a3e63ffc72.jpg" alt=""></a></span>
|
||||||
|
</p>
|
||||||
|
<p></p>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<!--常见问题end-->
|
||||||
|
</div>
|
||||||
|
<!--右边end-->
|
||||||
|
</div>
|
||||||
|
<!--中间内容end-->
|
||||||
|
</div>
|
||||||
|
<!--主要内容end-->
|
||||||
|
</div>
|
||||||
|
<!--内容end-->
|
||||||
|
</div>
|
||||||
|
<!--中间end-->
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!--底部-->
|
||||||
|
<div class="footer">
|
||||||
|
<!--错误-->
|
||||||
|
<!--提示-->
|
||||||
|
<div class="loverit_word2">Darry
|
||||||
|
Ring严格规定男士凭身份证一生仅能定制一枚,象征男人一生真爱的最高承诺。输入身份证号码即可查询购买记录。
|
||||||
|
</div>
|
||||||
|
<!--提示end-->
|
||||||
|
<div class="loverit_wrong2">
|
||||||
|
<p>信息填写不正确,请重新输入。</p>
|
||||||
|
</div>
|
||||||
|
<!--错误end-->
|
||||||
|
|
||||||
|
<div style="clear:both"></div>
|
||||||
|
<div class="cmain">
|
||||||
|
<ul class="Service_ul">
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img">
|
||||||
|
<a href="index.html/help_ab/51.html" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="index.html/help_ab/51.html" rel="nofollow">
|
||||||
|
<p>权威认证</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_2">
|
||||||
|
<a href="index.html/help_se/81.html" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="index.html/help_se/81.html" rel="nofollow">
|
||||||
|
<p>
|
||||||
|
一钻双证</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_3">
|
||||||
|
<a href="index.html/help_se/80.html" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="index.html/help_se/80.html" rel="nofollow">
|
||||||
|
<p>
|
||||||
|
终生保养</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_4">
|
||||||
|
<a href="index.html/help_se/82.html" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="index.html/help_se/82.html" rel="nofollow">
|
||||||
|
<p>
|
||||||
|
以小换大</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_5">
|
||||||
|
<a href="index.html/help_se/84.html" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="index.html/help_se/84.html" rel="nofollow">
|
||||||
|
<p>
|
||||||
|
15天退换</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_6">
|
||||||
|
<a href="index.html/help/74.html" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="index.html/help/74.html" rel="nofollow">
|
||||||
|
<p>
|
||||||
|
全国免运费</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<!--每一块li-->
|
||||||
|
<li>
|
||||||
|
<div class="Service_ul-img bk_7">
|
||||||
|
<a href="index.html/help_se/83.html" rel="nofollow"></a>
|
||||||
|
</div>
|
||||||
|
<a href="index.html/help_se/83.html" rel="nofollow">
|
||||||
|
<p>
|
||||||
|
全程保险</p>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<div class="tw-foot">
|
||||||
|
<div class="auto" id="Copyright">
|
||||||
|
<p>
|
||||||
|
Copyright © 2017 winner winner,chicken dinner All Rights Reserved.
|
||||||
|
粤ICP备11012085号-2.ICP经营许可证粤B2-20140279
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
中国互联网违法信息举报中心 | 中国公安网络110报警服务 | 本网站提供所售商品的正式发票
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="model" id="model">
|
||||||
|
<div class="Prompt" id="Prompt">
|
||||||
|
</div>
|
||||||
|
<span id="log_uid" style="display:none"></span>
|
||||||
|
<span id="log_uname" style="display:none"></span>
|
||||||
|
<span id="log_orderid" style="display:none"></span>
|
||||||
|
<span id="log_price" style="display:none"></span>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<script src="http://wpa.b.qq.com/cgi/wpa.php" charset="utf-8" type="text/javascript"></script>
|
||||||
|
<!--客服(2014年8月29日)-->
|
||||||
|
<div style="display:none" class="Ffloat_kf">
|
||||||
|
<div class="fkf_top">
|
||||||
|
<div style="cursor: pointer; display: none;" id="bridgehead">
|
||||||
|
</div>
|
||||||
|
<div id="BizQQWPA"></div>
|
||||||
|
<div onClick="showModel(modelsever);" style="cursor: pointer;" class="qq_hover" id="qqTalk_head">
|
||||||
|
</div>
|
||||||
|
<div id="BizQQWPAB" class="sh">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="bdBridge">
|
||||||
|
<a href="javascript:NTKF.im_openInPageChat()">
|
||||||
|
<img width="75" height="37" src="../images/zx.jpg"></a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="fkf_bottom">
|
||||||
|
<img width="92" height="82" alt="Darry Ring 官方微信" src="../images/to_erwei.jpg">
|
||||||
|
<a href="#">
|
||||||
|
<img width="92" height="26" src="../images/db.jpg"></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!--新版右边客服start-->
|
||||||
|
|
||||||
|
<!--右边漂浮悬挂大的-->
|
||||||
|
<div class="float_big">
|
||||||
|
<div class="floatbig_hide fr"></div>
|
||||||
|
<div class="floatbig_center">
|
||||||
|
<!--客服-->
|
||||||
|
<div onClick="javascript:void(0)" id="Bearonline" class="floatbig_center-kf"></div>
|
||||||
|
<!--客服end-->
|
||||||
|
<!--定制咨询-->
|
||||||
|
<div id="dzzxonline" class="floatbig_center-zx">
|
||||||
|
<a href="javascript:showModel(modelsever);"></a>
|
||||||
|
</div>
|
||||||
|
<!--定制咨询end-->
|
||||||
|
<img src="../images/ew.jpg">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--右边漂浮悬挂大的end-->
|
||||||
|
<!--右边漂浮悬挂小的-->
|
||||||
|
<div class="float_small">
|
||||||
|
<div class="floatbig_show fr"></div>
|
||||||
|
<div class="floatbig_center">
|
||||||
|
<!--客服-->
|
||||||
|
<div onClick="javascript:void(0)" class="floatsmall_center-kf fr"></div>
|
||||||
|
<!--客服end-->
|
||||||
|
<!--定制咨询-->
|
||||||
|
<div class="floatsmall_center-zx fr">
|
||||||
|
<a href="javascript:showModel(modelsever);"></a>
|
||||||
|
</div>
|
||||||
|
<!--定制咨询end-->
|
||||||
|
<!--二维码-->
|
||||||
|
<div class="floatsmall_erwei fr">
|
||||||
|
<a href="#"></a>
|
||||||
|
</div>
|
||||||
|
<!--二维码end-->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--右边漂浮悬挂小的end-->
|
||||||
|
<!--返回顶部-->
|
||||||
|
<div class="comeback"></div>
|
||||||
|
<!--返回顶部end-->
|
||||||
|
|
||||||
|
<!--新版右边客服end-->
|
||||||
|
|
||||||
|
<div style="position: fixed; cursor: pointer; right: 6px; top: 289px; padding-bottom: 152px; z-index: 9999; width: 19px; height: 103px; display: none;"
|
||||||
|
onClick="openserver();" id="openbnt">
|
||||||
|
<img width="19" height="103" src="../images/server_03.jpg"></div>
|
||||||
|
<div class="news_tc">
|
||||||
|
<div class="newtc_left">
|
||||||
|
</div>
|
||||||
|
<div class="newtc_right">
|
||||||
|
<span style="cursor: pointer" class="sszs">稍后再说</span> <span class="xzzx"><a onClick="showxiaon()"
|
||||||
|
style="cursor: pointer"
|
||||||
|
id="chatnow">
|
||||||
|
现在咨询</a></span>
|
||||||
|
<div style="cursor: pointer" class="tocclose">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="mask" id="masks">
|
||||||
|
</div>
|
||||||
|
<div style="display:none;" class="modelsever" id="modelsever">
|
||||||
|
<div class="cs_top">
|
||||||
|
<div class="cs_topcenter">
|
||||||
|
<div style="width:300px; height:40px; line-height:40px; float:left; display:inline-block; ">
|
||||||
|
顾客常见疑问
|
||||||
|
</div>
|
||||||
|
<div style="width:385px; height:20px; float:left; text-align:right; padding-top:20px;">
|
||||||
|
<img width="55" height="9" style="cursor: pointer;" onClick="CloseMaskser()"
|
||||||
|
src="../images/popup_window_btn_close.gif">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="cs_content clear">
|
||||||
|
<div id="box1" class="box1">
|
||||||
|
<div onClick="contenttxt(1,1)" id="content_title_11" class="content_title"><span
|
||||||
|
style="margin-top:8px;">Q:Darry Ring 是否有实体店?</span></div>
|
||||||
|
<div id="content_title1_1" class="content_txt"><span style="margin-top:1px;">A:DR公司总部在香港,目前内地深圳市、北京市、重庆市、广州市、上海市、武汉市、南京市、长沙市设有实体店,支持到店订购,也支持全国在线官网订购。同时目前其他一线城市公司已在考察选址阶段,将陆续开设店面。</span>
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(1,2)" id="content_title_12" class="content_title"><span
|
||||||
|
style="margin-top:8px;">Q:实体店具体位置?</span>
|
||||||
|
</div>
|
||||||
|
<div id="content_title1_2" class="content_txt"><span style="margin-top:1px;">A:深圳实体店地址:深圳南山区世界之窗旁欧陆小镇4号楼Darry Ring (地铁罗宝线世界之窗I出口)深圳店联系方式:0755-86621782。<p></p>
|
||||||
|
北京实体店地址:北京东二环朝阳门桥银河SOHO中心B座负一层2-109 (朝阳门地铁G出口) 北京店联系方式:010-59576758。<p></p>
|
||||||
|
上海实体店地址:上海长宁区淮海西路570号红坊创意园区G-108栋(近虹桥路) 上海店联系方式:021-60934520。<p></p>
|
||||||
|
广州实体店地址:广州市天河区天河北路233号中信广场商场136单元 广州店联系方式:020-38836315。<p></p>
|
||||||
|
重庆实体店地址:重庆市渝中区解放碑步行街民族路188号环球金融中心(WFC)LG-B02A 重庆店联系方式:023-63710835。<p></p>
|
||||||
|
武汉实体店地址:武汉市洪山区光谷意大利风情街5号楼一层51021号 武汉店联系方式:027-87688895。<p></p>
|
||||||
|
南京实体店地址:南京市长江路288号1912街区17号楼一层 南京店联系方式:025-83613520。<p></p>
|
||||||
|
长沙实体店地址:长沙市开福区中山路589号万达百货商场2楼 长沙店联系方式:0731-83878575。<p></p>
|
||||||
|
全国400客服热线:400 01 13520。</span></div>
|
||||||
|
<div onClick="contenttxt(1,3)" id="content_title_13" class="content_title"><span
|
||||||
|
style="margin-top:8px;">Q:到店订购和官网订购的价格一致吗?</span></div>
|
||||||
|
<div id="content_title1_3" class="content_txt"><span style="margin-top:1px;">A:DR的所有商品,到店订购和官网订购的时间周期,价格,质量及售后服务均一致。</span>
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(1,4)" id="content_title_14" class="content_title"><span
|
||||||
|
style="margin-top:8px;">Q:价格是否有折扣优惠?</span></div>
|
||||||
|
<div id="content_title1_4" class="content_txt"><span style="margin-top:1px;">A:DR的品牌寓意为一生唯一真爱,大多是用作见证彼此求婚或结婚这一神圣时刻,所以所有商品都是常年任何节假日没有折扣活动,就像彼此一生唯一真爱的承诺及永恒的爱情,永不打折。</span>
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(1,5)" id="content_title_15" class="content_title"><span
|
||||||
|
style="margin-top:8px;">Q:为什么在官网上输入姓名身份证号后看不到款式?</span></div>
|
||||||
|
<div id="content_title1_5" class="content_txt"><span style="margin-top:1px;">A:www.darryring.com 官网首页点击—求婚钻戒,进入页面后不需要填写任何信息,移动鼠标到最下方,就可以看到Darry Ring女戒的所有款式。</span>
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(1,6)" id="content_title_16" class="content_title"><span
|
||||||
|
style="margin-top:8px;">Q:到实体店是否可以立刻拿到戒指?</span></div>
|
||||||
|
<div id="content_title1_6" class="content_txt"><span style="margin-top:1px;">A:您好,DR的所有商品都是需要根据您选择的款式、手寸大小及刻字信息来定制。实体店仅提供款式体验及预订,与官网购买的定制时间是一致的,可于15-20个工作日内送到或自取。</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="box2" class="box2">
|
||||||
|
<div onClick="contenttxt(2,1)" id="content_title_21" class="content_title"></div>
|
||||||
|
<div id="content_title2_1" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(2,2)" id="content_title_22" class="content_title"></div>
|
||||||
|
<div id="content_title2_2" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(2,3)" id="content_title_23" class="content_title"></div>
|
||||||
|
<div id="content_title2_3" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(2,4)" id="content_title_24" class="content_title"></div>
|
||||||
|
<div id="content_title2_4" class="content_txt">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="box3" class="box3">
|
||||||
|
<div onClick="contenttxt(3,1)" id="content_title_31" class="content_title"></div>
|
||||||
|
<div id="content_title3_1" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(3,2)" id="content_title_32" class="content_title"></div>
|
||||||
|
<div id="content_title3_2" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(3,3)" id="content_title_33" class="content_title"></div>
|
||||||
|
<div id="content_title3_3" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(3,4)" id="content_title_34" class="content_title"></div>
|
||||||
|
<div id="content_title3_4" class="content_txt"></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="box4" class="box4">
|
||||||
|
<div onClick="contenttxt(4,1)" id="content_title_41" class="content_title"></div>
|
||||||
|
<div id="content_title4_1" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(4,2)" id="content_title_42" class="content_title"></div>
|
||||||
|
<div id="content_title4_2" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(4,3)" id="content_title_43" class="content_title"></div>
|
||||||
|
<div id="content_title4_3" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(4,4)" id="content_title_44" class="content_title"></div>
|
||||||
|
<div id="content_title4_4" class="content_txt"></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="box5" class="box5">
|
||||||
|
<div onClick="contenttxt(5,1)" id="content_title_51" class="content_title"></div>
|
||||||
|
<div id="content_title5_1" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(5,2)" id="content_title_52" class="content_title"></div>
|
||||||
|
<div id="content_title5_2" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(5,3)" id="content_title_53" class="content_title"></div>
|
||||||
|
<div id="content_title5_3" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(5,4)" id="content_title_54" class="content_title"></div>
|
||||||
|
<div id="content_title5_4" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(5,5)" id="content_title_55" class="content_title"></div>
|
||||||
|
<div id="content_title5_5" class="content_txt">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(5,6)" id="content_title_56" class="content_title"></div>
|
||||||
|
<div id="content_title5_6" class="content_txt">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="box6" class="box6">
|
||||||
|
<div onClick="contenttxt(6,1)" id="content_title_61" class="content_title"></div>
|
||||||
|
<div id="content_title6_1" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(6,2)" id="content_title_62" class="content_title"></div>
|
||||||
|
<div id="content_title6_2" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(6,3)" id="content_title_63" class="content_title"></div>
|
||||||
|
<div id="content_title6_3" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(6,4)" id="content_title_64" class="content_title"></div>
|
||||||
|
<div id="content_title6_4" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(6,5)" id="content_title_65" class="content_title"></div>
|
||||||
|
<div id="content_title6_5" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(6,6)" id="content_title_66" class="content_title"></div>
|
||||||
|
<div id="content_title6_6" class="content_txt">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="box7" class="box7">
|
||||||
|
<div onClick="contenttxt(7,1)" id="content_title_71" class="content_title"></div>
|
||||||
|
<div id="content_title7_1" class="content_txt"></div>
|
||||||
|
<div onClick="contenttxt(7,2)" id="content_title_72" class="content_title"></div>
|
||||||
|
<div id="content_title7_2" class="content_txt">
|
||||||
|
</div>
|
||||||
|
<div onClick="contenttxt(7,3)" id="content_title_73" class="content_title"></div>
|
||||||
|
<div id="content_title7_3" class="content_txt">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script type="text/javascript">
|
||||||
|
function showbox(id) {
|
||||||
|
getQeestion(id);
|
||||||
|
for (var i = 1; i <= 8; i++) {
|
||||||
|
if (i == id) {
|
||||||
|
showdiv(id);
|
||||||
|
} else {
|
||||||
|
hidediv(i);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function contenttxt(id, sid) {
|
||||||
|
for (var i = 1; i <= 7; i++) {
|
||||||
|
if (i == id) {
|
||||||
|
showtxt(id, sid);
|
||||||
|
} else {
|
||||||
|
hidetxt(i, sid);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
function showtxt(id, sid) {
|
||||||
|
var objtitle = $("#content_title" + id + "_" + sid);
|
||||||
|
|
||||||
|
if (objtitle.css("display") == "none") {
|
||||||
|
objtitle.show("fast");
|
||||||
|
} else {
|
||||||
|
|
||||||
|
hidetxt(id, sid);
|
||||||
|
}
|
||||||
|
//$("#"+id).show("fast");
|
||||||
|
}
|
||||||
|
|
||||||
|
function hidetxt(id, sid) {
|
||||||
|
var objtitle = $("#content_title" + id + "_" + sid);
|
||||||
|
objtitle.hide("fast");
|
||||||
|
}
|
||||||
|
|
||||||
|
function hidediv(id) {
|
||||||
|
$("#box" + id).hide("fast");
|
||||||
|
|
||||||
|
$("#li" + id).css({
|
||||||
|
"font-size": "14px",
|
||||||
|
"color": "#7d7d7d"
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function showdiv(id) {
|
||||||
|
if ($("#box" + id).css("display") == "none") {
|
||||||
|
$("#box" + id).show("fast");
|
||||||
|
$("#li" + id).css({
|
||||||
|
"font-size": "18px",
|
||||||
|
"color": "#000000"
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
function showMask() {
|
||||||
|
$("#masks").css("height", $(document).height());
|
||||||
|
$("#masks").css("width", $(document).width());
|
||||||
|
$("#masks").fadeIn();
|
||||||
|
}
|
||||||
|
|
||||||
|
function showModel(divName) {
|
||||||
|
showMask();
|
||||||
|
/* var top = ($(window).height() - $(divName).height()) / 5;
|
||||||
|
var left = ($(window).width() - $(divName).width()) / 2;
|
||||||
|
var scrollTop = $(document).scrollTop();
|
||||||
|
var scrollLeft = $(document).scrollLeft();*/
|
||||||
|
$(divName).fadeIn();
|
||||||
|
}
|
||||||
|
|
||||||
|
function CloseMaskser() {
|
||||||
|
|
||||||
|
$("#modelsever").fadeOut("slow");
|
||||||
|
$("#masks").fadeOut("slow");
|
||||||
|
$("#mask").fadeOut("slow");
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
||||||
|
|
@ -0,0 +1,408 @@
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" class="hb-loaded">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<title>会员注册</title>
|
||||||
|
<link href="../css/style.css" type="text/css" rel="stylesheet"/>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<div class="wrap">
|
||||||
|
<!-- start of 头部导航-->
|
||||||
|
<div class="head_top">
|
||||||
|
<div class="head clearfix">
|
||||||
|
<!--头部左边-->
|
||||||
|
<div class="topLeft left">
|
||||||
|
<a href="index.html" title="Darry Ring">
|
||||||
|
<img width="186" height="42" src="../images/logo_01.png ">
|
||||||
|
</a>
|
||||||
|
<span>求婚钻戒领导品牌</span>
|
||||||
|
</div>
|
||||||
|
<!--头部左边end-->
|
||||||
|
<!--头部右边-->
|
||||||
|
<ul class="topRight right">
|
||||||
|
<li>国际权威认证</li>
|
||||||
|
<li class="tr_2">15天无理由退换</li>
|
||||||
|
<li class="tr_3">终身保养</li>
|
||||||
|
</ul>
|
||||||
|
<!--头部左边end-->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--end of 头部导航-->
|
||||||
|
<!-- starto of container -->
|
||||||
|
<div class="container">
|
||||||
|
<!--中间内容-->
|
||||||
|
<div class="cmain ddd">
|
||||||
|
<!--内容右边-->
|
||||||
|
<div class="cort-right right">
|
||||||
|
<div class="r_bg"></div>
|
||||||
|
<!--登陆框内-->
|
||||||
|
<div class="cr_border">
|
||||||
|
|
||||||
|
|
||||||
|
<form method="post" action="/sign" class="form_first">
|
||||||
|
<input type="hidden" value="1" name="type">
|
||||||
|
<input type="hidden" value="login.html" name="forward">
|
||||||
|
<input type="hidden" value="H6mY5VyS" name="skey">
|
||||||
|
<div style="" class="photo_show">
|
||||||
|
<!--手机-->
|
||||||
|
<div class="the_input">
|
||||||
|
<span class="member"></span>
|
||||||
|
<input type="text" placeholder="请输入手机号码" class="al_Input dr_photo" value=""
|
||||||
|
name="mobile">
|
||||||
|
</div>
|
||||||
|
<!--手机end-->
|
||||||
|
<!--密码-->
|
||||||
|
<div style="border:none" class="the_input">
|
||||||
|
<span class="password"></span>
|
||||||
|
<input type="text" style="width:133px;" placeholder="请输入验证码" class="al_Input ls"
|
||||||
|
value="" name="mobile_code">
|
||||||
|
<input type="button" value="获取验证码" class="action mobile_action">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!--验证码end-->
|
||||||
|
<!--密码-->
|
||||||
|
<div class="the_input ">
|
||||||
|
<span class="pw"></span>
|
||||||
|
<input type="password" placeholder="请输入密码" maxlength="21" class="al_Input dr_photo"
|
||||||
|
value="" name="mobile_pwd">
|
||||||
|
</div>
|
||||||
|
<!--密码end-->
|
||||||
|
<!--密码-->
|
||||||
|
<div class="the_input ">
|
||||||
|
<span class="pw"></span>
|
||||||
|
<input type="password" placeholder="确认密码" maxlength="21" class="al_Input dr_photo"
|
||||||
|
value="" name="mobile_pwd_confirm">
|
||||||
|
</div>
|
||||||
|
<!--密码end-->
|
||||||
|
|
||||||
|
|
||||||
|
<!--其他合作-->
|
||||||
|
<div class="other_hz">
|
||||||
|
<input type="button" value="立即注册" id="mobile_reg" class="up">
|
||||||
|
</div>
|
||||||
|
<!--其他合作end-->
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
<!--手机注册end-->
|
||||||
|
</div>
|
||||||
|
<!--登陆框内end-->
|
||||||
|
</div>
|
||||||
|
<!--内容右边end-->
|
||||||
|
</div>
|
||||||
|
<!--中间内容end-->
|
||||||
|
</div>
|
||||||
|
<!-- end of container -->
|
||||||
|
|
||||||
|
<!--底部end-->
|
||||||
|
<div class="cmain bc_yz">
|
||||||
|
<div class="db_cort">
|
||||||
|
<p> Copyright © 2017 winner winner,chickdinner !!团队 All Rights Reserved.
|
||||||
|
闽ICP备11012085号-2.ICP经营许可证闽B2-20140279 </p>
|
||||||
|
<p> 中国互联网违法信息举报中心 | 中国公安网络110报警服务 | 本网站提供所售商品的正式发票 </p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script src="../js/jquery.js" type="text/javascript"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
$(function () {
|
||||||
|
//切换tab
|
||||||
|
$(".tits .ph").click(function (event) {
|
||||||
|
$(this).addClass('focus').siblings().removeClass('focus')
|
||||||
|
$(".photo_show").eq(0).show()
|
||||||
|
$(".photo_show").eq(1).hide()
|
||||||
|
});
|
||||||
|
|
||||||
|
$(".tits .em").click(function (event) {
|
||||||
|
$(this).addClass('focus').siblings().removeClass('focus')
|
||||||
|
$(".photo_show").eq(1).show()
|
||||||
|
$(".photo_show").eq(0).hide()
|
||||||
|
});
|
||||||
|
|
||||||
|
//验证参数
|
||||||
|
$('.up').click(function () {
|
||||||
|
$('.ts_wrong').remove();
|
||||||
|
$('.al_Input').removeClass('error');
|
||||||
|
//判断是邮箱还是手机
|
||||||
|
if ($('.em').hasClass('focus')) {
|
||||||
|
//邮箱登录
|
||||||
|
var email = $('input[name="email"]').val();
|
||||||
|
if (isNull(email)) {
|
||||||
|
var notice = '<div class="ts_wrong"><span id="wrong">请输入邮箱!</span></div>';
|
||||||
|
$('input[name="email"]').parent().after(notice);
|
||||||
|
$('input[name="email"]').addClass('error');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!isEmail(email)) {
|
||||||
|
var notice = '<div class="ts_wrong"><span id="wrong">邮箱格式错误 请重新输入!</span></div>';
|
||||||
|
$('input[name="email"]').parent().after(notice);
|
||||||
|
$('input[name="email"]').addClass('error');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
var pwd = $('input[name="email_pwd"]').val();
|
||||||
|
if (isNull(pwd)) {
|
||||||
|
var notice = '<div class="ts_wrong"><span id="wrong">请输入密码!</span></div>';
|
||||||
|
$('input[name="email_pwd"]').parent().after(notice);
|
||||||
|
$('input[name="email_pwd"]').addClass('error');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (pwd.length < 6) {
|
||||||
|
var notice = '<div class="ts_wrong"><span id="wrong">密码长度为6~21个字符!</span></div>';
|
||||||
|
$('input[name="email_pwd"]').parent().after(notice);
|
||||||
|
$('input[name="email_pwd"]').addClass('error');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
var pwd_confirm = $('input[name="email_pwd_confirm"]').val();
|
||||||
|
if (isNull(pwd_confirm)) {
|
||||||
|
var notice = '<div class="ts_wrong"><span id="wrong">请输入确认密码!</span></div>';
|
||||||
|
$('input[name="email_pwd_confirm"]').parent().after(notice);
|
||||||
|
$('input[name="email_pwd_confirm"]').addClass('error');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (pwd != pwd_confirm) {
|
||||||
|
var notice = '<div class="ts_wrong"><span id="wrong">密码与确认密码不一致 请重新输入!</span></div>';
|
||||||
|
$('input[name="email_pwd_confirm"]').parent().after(notice);
|
||||||
|
$('input[name="email_pwd_confirm"]').addClass('error');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
var code = $('input[name="email_code"]').val();
|
||||||
|
if (isNull(code)) {
|
||||||
|
var notice = '<div class="ts_wrong"><span id="wrong">请输入验证码!</span></div>';
|
||||||
|
$('input[name="email_code"]').parent().after(notice);
|
||||||
|
$('input[name="email_code"]').addClass('error');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!$('input[name="email_check"]').is(':checked')) {
|
||||||
|
var notice = '<div class="ts_wrong"><span id="wrong">请阅读并同意用户注册协议!</span></div>';
|
||||||
|
$('input[name="email_check"]').parent().parent().after(notice);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// $('#mobile_reg').click(ag_Reg_click_Mobile);
|
||||||
|
// 注册统计
|
||||||
|
ag_Reg_click_Email();
|
||||||
|
|
||||||
|
//检测邮箱是否使用过
|
||||||
|
$.ajax({
|
||||||
|
type: "POST",
|
||||||
|
url: "/sign/validEmail",
|
||||||
|
data: "email=" + email,
|
||||||
|
success: function (msg) {
|
||||||
|
if (msg == 1) {
|
||||||
|
var notice = '<div class="ts_wrong"><span id="wrong">该邮箱已被注册!</span></div>';
|
||||||
|
$('input[name="email"]').parent().after(notice);
|
||||||
|
$('input[name="email"]').addClass('error');
|
||||||
|
return false;
|
||||||
|
} else {
|
||||||
|
$.ajax({
|
||||||
|
type: "POST",
|
||||||
|
url: "/sign/validEmailCode",
|
||||||
|
data: "code=" + code,
|
||||||
|
success: function (msg) {
|
||||||
|
if (msg == 1) {
|
||||||
|
var notice = '<div class="ts_wrong"><span id="wrong">验证码错误!</span></div>';
|
||||||
|
$('.ts_wrong').remove();
|
||||||
|
$('input[name="email_code"]').parent().after(notice);
|
||||||
|
$('input[name="email_code"]').addClass('error');
|
||||||
|
return false;
|
||||||
|
} else {
|
||||||
|
$('.form_second').submit();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($('.ph').hasClass('focus')) {
|
||||||
|
//手机登录
|
||||||
|
var mobile = $('input[name="mobile"]').val();
|
||||||
|
if (isNull(mobile)) {
|
||||||
|
var notice = '<div class="ts_wrong"><span id="wrong">请输入手机号码!</span></div>';
|
||||||
|
$('input[name="mobile"]').parent().after(notice);
|
||||||
|
$('input[name="mobile"]').addClass('error');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!checkMobile(mobile)) {
|
||||||
|
var notice = '<div class="ts_wrong"><span id="wrong">手机号码格式错误 请重新输入!</span></div>';
|
||||||
|
$('input[name="mobile"]').parent().after(notice);
|
||||||
|
$('input[name="mobile"]').addClass('error');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
var code = $('input[name="mobile_code"]').val();
|
||||||
|
if (isNull(code)) {
|
||||||
|
var notice = '<div class="ts_wrong"><span id="wrong">请输入验证码!</span></div>';
|
||||||
|
$('input[name="mobile_code"]').parent().after(notice);
|
||||||
|
$('input[name="mobile_code"]').addClass('error');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
var pwd = $('input[name="mobile_pwd"]').val();
|
||||||
|
if (isNull(pwd)) {
|
||||||
|
var notice = '<div class="ts_wrong"><span id="wrong">请输入密码!</span></div>';
|
||||||
|
$('input[name="mobile_pwd"]').parent().after(notice);
|
||||||
|
$('input[name="mobile_pwd"]').addClass('error');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (pwd.length < 6) {
|
||||||
|
var notice = '<div class="ts_wrong"><span id="wrong">密码长度为6~21个字符!</span></div>';
|
||||||
|
$('input[name="mobile_pwd"]').parent().after(notice);
|
||||||
|
$('input[name="mobile_pwd"]').addClass('error');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
var pwd_confirm = $('input[name="mobile_pwd_confirm"]').val();
|
||||||
|
if (isNull(pwd_confirm)) {
|
||||||
|
var notice = '<div class="ts_wrong"><span id="wrong">请输入确认密码!</span></div>';
|
||||||
|
$('input[name="mobile_pwd_confirm"]').parent().after(notice);
|
||||||
|
$('input[name="mobile_pwd_confirm"]').addClass('error');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (pwd != pwd_confirm) {
|
||||||
|
var notice = '<div class="ts_wrong"><span id="wrong">密码与确认密码不一致 请重新输入!</span></div>';
|
||||||
|
$('input[name="mobile_pwd_confirm"]').parent().after(notice);
|
||||||
|
$('input[name="mobile_pwd_confirm"]').addClass('error');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!$('input[name="mobile_check"]').is(':checked')) {
|
||||||
|
var notice = '<div class="ts_wrong"><span id="wrong">请阅读并同意用户注册协议!</span></div>';
|
||||||
|
$('input[name="mobile_check"]').parent().parent().after(notice);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
//检测手机号码是否使用过
|
||||||
|
$.ajax({
|
||||||
|
type: "POST",
|
||||||
|
url: "/sign/validMobile",
|
||||||
|
data: "mobile=" + mobile,
|
||||||
|
success: function (msg) {
|
||||||
|
if (msg == 1) {
|
||||||
|
var notice = '<div class="ts_wrong"><span id="wrong">该手机号码已被注册!</span></div>';
|
||||||
|
$('input[name="mobile"]').parent().after(notice);
|
||||||
|
$('input[name="mobile"]').addClass('error');
|
||||||
|
return false;
|
||||||
|
} else {
|
||||||
|
$.ajax({
|
||||||
|
type: "POST",
|
||||||
|
url: "/sign/validMobileCode",
|
||||||
|
data: "code=" + code,
|
||||||
|
success: function (msg) {
|
||||||
|
if (msg == 1) {
|
||||||
|
var notice = '<div class="ts_wrong"><span id="wrong">验证码错误!</span></div>';
|
||||||
|
$('input[name="mobile_code"]').parent().after(notice);
|
||||||
|
$('input[name="mobile_code"]').addClass('error');
|
||||||
|
return false;
|
||||||
|
} else {
|
||||||
|
// 手机统计
|
||||||
|
ag_Reg_click_Mobile();
|
||||||
|
$('.form_first').submit();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
//发送短信验证码
|
||||||
|
var InterValObj; //timer变量,控制时间
|
||||||
|
var count = 120; //间隔函数,1秒执行
|
||||||
|
var curCount; //当前剩余秒数
|
||||||
|
$('.mobile_action').click(function () {
|
||||||
|
$('.ts_wrong').remove();
|
||||||
|
$('.al_Input').removeClass('error');
|
||||||
|
var mobile = $('input[name="mobile"]').val();
|
||||||
|
if (isNull(mobile)) {
|
||||||
|
var notice = '<div class="ts_wrong"><span id="wrong">请输入手机号码!</span></div>';
|
||||||
|
$('input[name="mobile"]').parent().after(notice);
|
||||||
|
$('input[name="mobile"]').addClass('error');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!checkMobile(mobile)) {
|
||||||
|
var notice = '<div class="ts_wrong"><span id="wrong">手机号码格式错误 请重新输入!</span></div>';
|
||||||
|
$('input[name="mobile"]').parent().after(notice);
|
||||||
|
$('input[name="mobile"]').addClass('error');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
//检测手机号码是否使用过
|
||||||
|
var is_used = false;
|
||||||
|
$.ajax({
|
||||||
|
type: "POST",
|
||||||
|
url: "/sign/validMobile",
|
||||||
|
data: "mobile=" + mobile,
|
||||||
|
success: function (msg) {
|
||||||
|
if (msg == 1) {
|
||||||
|
var notice = '<div class="ts_wrong"><span id="wrong">该手机号码已被注册!</span></div>';
|
||||||
|
$('input[name="mobile"]').parent().after(notice);
|
||||||
|
$('input[name="mobile"]').addClass('error');
|
||||||
|
is_used = true;
|
||||||
|
} else {
|
||||||
|
//设置button效果,开始计时
|
||||||
|
curCount = count;
|
||||||
|
//设置button效果,开始计时
|
||||||
|
$(".mobile_action").attr("disabled", "true");
|
||||||
|
$(".mobile_action").val(curCount + "秒后可重新获取验证码");
|
||||||
|
InterValObj = window.setInterval(SetRemainTime, 1000); //启动计时器,1秒执行一次
|
||||||
|
|
||||||
|
var skey = $('input[name="skey"]').val();
|
||||||
|
//向后台发送处理数据
|
||||||
|
$.ajax({
|
||||||
|
type: "POST", //用POST方式传输
|
||||||
|
url: '/sign/sendSms', //目标地址
|
||||||
|
data: "mobile=" + mobile + "&skey=" + skey,
|
||||||
|
success: function (msg) {
|
||||||
|
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
function SetRemainTime() {
|
||||||
|
if (curCount == 0) {
|
||||||
|
window.clearInterval(InterValObj); //停止计时器
|
||||||
|
$(".mobile_action").removeAttr("disabled"); //启用按钮
|
||||||
|
$(".mobile_action").val("获取验证码");
|
||||||
|
code = ""; //清除验证码。如果不清除,过时间后,输入收到的验证码依然有效
|
||||||
|
} else {
|
||||||
|
curCount--;
|
||||||
|
$(".mobile_action").val(curCount + "秒后可重新获取验证码");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
$(document).keyup(function (event) {
|
||||||
|
if (event.keyCode == 13) {
|
||||||
|
if ($('.ph').hasClass('focus')) {
|
||||||
|
$('#mobile_reg').click(ag_Reg_click_Mobile);
|
||||||
|
}
|
||||||
|
if ($('.em').hasClass('focus')) {
|
||||||
|
$('#email_reg').click(ag_Reg_click_Email);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
||||||
|
|
@ -0,0 +1,13 @@
|
||||||
|
package com.gao.finalh;
|
||||||
|
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
import org.springframework.boot.test.context.SpringBootTest;
|
||||||
|
|
||||||
|
@SpringBootTest
|
||||||
|
class FinalApplicationTests {
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void contextLoads() {
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
Reference in New Issue