diff --git a/config b/config deleted file mode 100644 index 7c968c3..0000000 --- a/config +++ /dev/null @@ -1,6 +0,0 @@ -[core] - bare = true - repositoryformatversion = 0 - filemode = false - symlinks = false - ignorecase = true diff --git a/description b/description deleted file mode 100644 index 498b267..0000000 --- a/description +++ /dev/null @@ -1 +0,0 @@ -Unnamed repository; edit this file 'description' to name the repository. diff --git a/hooks/applypatch-msg.sample b/hooks/applypatch-msg.sample deleted file mode 100644 index 8b2a2fe..0000000 --- a/hooks/applypatch-msg.sample +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# An example hook script to check the commit log message taken by -# applypatch from an e-mail message. -# -# The hook should exit with non-zero status after issuing an -# appropriate message if it wants to stop the commit. The hook is -# allowed to edit the commit message file. -# -# To enable this hook, rename this file to "applypatch-msg". - -. git-sh-setup -test -x "$GIT_DIR/hooks/commit-msg" && - exec "$GIT_DIR/hooks/commit-msg" ${1+"$@"} -: diff --git a/hooks/commit-msg.sample b/hooks/commit-msg.sample deleted file mode 100644 index b58d118..0000000 --- a/hooks/commit-msg.sample +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -# -# An example hook script to check the commit log message. -# Called by "git commit" with one argument, the name of the file -# that has the commit message. The hook should exit with non-zero -# status after issuing an appropriate message if it wants to stop the -# commit. The hook is allowed to edit the commit message file. -# -# To enable this hook, rename this file to "commit-msg". - -# Uncomment the below to add a Signed-off-by line to the message. -# Doing this in a hook is a bad idea in general, but the prepare-commit-msg -# hook is more suited to it. -# -# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') -# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" - -# This example catches duplicate Signed-off-by lines. - -test "" = "$(grep '^Signed-off-by: ' "$1" | - sort | uniq -c | sed -e '/^[ ]*1[ ]/d')" || { - echo >&2 Duplicate Signed-off-by lines. - exit 1 -} diff --git a/hooks/post-update.sample b/hooks/post-update.sample deleted file mode 100644 index ec17ec1..0000000 --- a/hooks/post-update.sample +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh -# -# An example hook script to prepare a packed repository for use over -# dumb transports. -# -# To enable this hook, rename this file to "post-update". - -exec git update-server-info diff --git a/hooks/pre-applypatch.sample b/hooks/pre-applypatch.sample deleted file mode 100644 index b1f187c..0000000 --- a/hooks/pre-applypatch.sample +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed -# by applypatch from an e-mail message. -# -# The hook should exit with non-zero status after issuing an -# appropriate message if it wants to stop the commit. -# -# To enable this hook, rename this file to "pre-applypatch". - -. git-sh-setup -test -x "$GIT_DIR/hooks/pre-commit" && - exec "$GIT_DIR/hooks/pre-commit" ${1+"$@"} -: diff --git a/hooks/pre-commit.sample b/hooks/pre-commit.sample deleted file mode 100644 index 68d62d5..0000000 --- a/hooks/pre-commit.sample +++ /dev/null @@ -1,49 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed. -# Called by "git commit" with no arguments. The hook should -# exit with non-zero status after issuing an appropriate message if -# it wants to stop the commit. -# -# To enable this hook, rename this file to "pre-commit". - -if git rev-parse --verify HEAD >/dev/null 2>&1 -then - against=HEAD -else - # Initial commit: diff against an empty tree object - against=4b825dc642cb6eb9a060e54bf8d69288fbee4904 -fi - -# If you want to allow non-ASCII filenames set this variable to true. -allownonascii=$(git config --bool hooks.allownonascii) - -# Redirect output to stderr. -exec 1>&2 - -# Cross platform projects tend to avoid non-ASCII filenames; prevent -# them from being added to the repository. We exploit the fact that the -# printable range starts at the space character and ends with tilde. -if [ "$allownonascii" != "true" ] && - # Note that the use of brackets around a tr range is ok here, (it's - # even required, for portability to Solaris 10's /usr/bin/tr), since - # the square bracket bytes happen to fall in the designated range. - test $(git diff --cached --name-only --diff-filter=A -z $against | - LC_ALL=C tr -d '[ -~]\0' | wc -c) != 0 -then - cat <<\EOF -Error: Attempt to add a non-ASCII file name. - -This can cause problems if you want to work with people on other platforms. - -To be portable it is advisable to rename the file. - -If you know what you are doing you can disable this check using: - - git config hooks.allownonascii true -EOF - exit 1 -fi - -# If there are whitespace errors, print the offending file names and fail. -exec git diff-index --check --cached $against -- diff --git a/hooks/pre-push.sample b/hooks/pre-push.sample deleted file mode 100644 index 1f3bceb..0000000 --- a/hooks/pre-push.sample +++ /dev/null @@ -1,54 +0,0 @@ -#!/bin/sh - -# An example hook script to verify what is about to be pushed. Called by "git -# push" after it has checked the remote status, but before anything has been -# pushed. If this script exits with a non-zero status nothing will be pushed. -# -# This hook is called with the following parameters: -# -# $1 -- Name of the remote to which the push is being done -# $2 -- URL to which the push is being done -# -# If pushing without using a named remote those arguments will be equal. -# -# Information about the commits which are being pushed is supplied as lines to -# the standard input in the form: -# -# -# -# This sample shows how to prevent push of commits where the log message starts -# with "WIP" (work in progress). - -remote="$1" -url="$2" - -z40=0000000000000000000000000000000000000000 - -IFS=' ' -while read local_ref local_sha remote_ref remote_sha -do - if [ "$local_sha" = $z40 ] - then - # Handle delete - : - else - if [ "$remote_sha" = $z40 ] - then - # New branch, examine all commits - range="$local_sha" - else - # Update to existing branch, examine new commits - range="$remote_sha..$local_sha" - fi - - # Check for WIP commit - commit=`git rev-list -n 1 --grep '^WIP' "$range"` - if [ -n "$commit" ] - then - echo "Found WIP commit in $local_ref, not pushing" - exit 1 - fi - fi -done - -exit 0 diff --git a/hooks/pre-rebase.sample b/hooks/pre-rebase.sample deleted file mode 100644 index 9773ed4..0000000 --- a/hooks/pre-rebase.sample +++ /dev/null @@ -1,169 +0,0 @@ -#!/bin/sh -# -# Copyright (c) 2006, 2008 Junio C Hamano -# -# The "pre-rebase" hook is run just before "git rebase" starts doing -# its job, and can prevent the command from running by exiting with -# non-zero status. -# -# The hook is called with the following parameters: -# -# $1 -- the upstream the series was forked from. -# $2 -- the branch being rebased (or empty when rebasing the current branch). -# -# This sample shows how to prevent topic branches that are already -# merged to 'next' branch from getting rebased, because allowing it -# would result in rebasing already published history. - -publish=next -basebranch="$1" -if test "$#" = 2 -then - topic="refs/heads/$2" -else - topic=`git symbolic-ref HEAD` || - exit 0 ;# we do not interrupt rebasing detached HEAD -fi - -case "$topic" in -refs/heads/??/*) - ;; -*) - exit 0 ;# we do not interrupt others. - ;; -esac - -# Now we are dealing with a topic branch being rebased -# on top of master. Is it OK to rebase it? - -# Does the topic really exist? -git show-ref -q "$topic" || { - echo >&2 "No such branch $topic" - exit 1 -} - -# Is topic fully merged to master? -not_in_master=`git rev-list --pretty=oneline ^master "$topic"` -if test -z "$not_in_master" -then - echo >&2 "$topic is fully merged to master; better remove it." - exit 1 ;# we could allow it, but there is no point. -fi - -# Is topic ever merged to next? If so you should not be rebasing it. -only_next_1=`git rev-list ^master "^$topic" ${publish} | sort` -only_next_2=`git rev-list ^master ${publish} | sort` -if test "$only_next_1" = "$only_next_2" -then - not_in_topic=`git rev-list "^$topic" master` - if test -z "$not_in_topic" - then - echo >&2 "$topic is already up-to-date with master" - exit 1 ;# we could allow it, but there is no point. - else - exit 0 - fi -else - not_in_next=`git rev-list --pretty=oneline ^${publish} "$topic"` - /usr/bin/perl -e ' - my $topic = $ARGV[0]; - my $msg = "* $topic has commits already merged to public branch:\n"; - my (%not_in_next) = map { - /^([0-9a-f]+) /; - ($1 => 1); - } split(/\n/, $ARGV[1]); - for my $elem (map { - /^([0-9a-f]+) (.*)$/; - [$1 => $2]; - } split(/\n/, $ARGV[2])) { - if (!exists $not_in_next{$elem->[0]}) { - if ($msg) { - print STDERR $msg; - undef $msg; - } - print STDERR " $elem->[1]\n"; - } - } - ' "$topic" "$not_in_next" "$not_in_master" - exit 1 -fi - -exit 0 - -################################################################ - -This sample hook safeguards topic branches that have been -published from being rewound. - -The workflow assumed here is: - - * Once a topic branch forks from "master", "master" is never - merged into it again (either directly or indirectly). - - * Once a topic branch is fully cooked and merged into "master", - it is deleted. If you need to build on top of it to correct - earlier mistakes, a new topic branch is created by forking at - the tip of the "master". This is not strictly necessary, but - it makes it easier to keep your history simple. - - * Whenever you need to test or publish your changes to topic - branches, merge them into "next" branch. - -The script, being an example, hardcodes the publish branch name -to be "next", but it is trivial to make it configurable via -$GIT_DIR/config mechanism. - -With this workflow, you would want to know: - -(1) ... if a topic branch has ever been merged to "next". Young - topic branches can have stupid mistakes you would rather - clean up before publishing, and things that have not been - merged into other branches can be easily rebased without - affecting other people. But once it is published, you would - not want to rewind it. - -(2) ... if a topic branch has been fully merged to "master". - Then you can delete it. More importantly, you should not - build on top of it -- other people may already want to - change things related to the topic as patches against your - "master", so if you need further changes, it is better to - fork the topic (perhaps with the same name) afresh from the - tip of "master". - -Let's look at this example: - - o---o---o---o---o---o---o---o---o---o "next" - / / / / - / a---a---b A / / - / / / / - / / c---c---c---c B / - / / / \ / - / / / b---b C \ / - / / / / \ / - ---o---o---o---o---o---o---o---o---o---o---o "master" - - -A, B and C are topic branches. - - * A has one fix since it was merged up to "next". - - * B has finished. It has been fully merged up to "master" and "next", - and is ready to be deleted. - - * C has not merged to "next" at all. - -We would want to allow C to be rebased, refuse A, and encourage -B to be deleted. - -To compute (1): - - git rev-list ^master ^topic next - git rev-list ^master next - - if these match, topic has not merged in next at all. - -To compute (2): - - git rev-list master..topic - - if this is empty, it is fully merged to "master". diff --git a/hooks/prepare-commit-msg.sample b/hooks/prepare-commit-msg.sample deleted file mode 100644 index f093a02..0000000 --- a/hooks/prepare-commit-msg.sample +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/sh -# -# An example hook script to prepare the commit log message. -# Called by "git commit" with the name of the file that has the -# commit message, followed by the description of the commit -# message's source. The hook's purpose is to edit the commit -# message file. If the hook fails with a non-zero status, -# the commit is aborted. -# -# To enable this hook, rename this file to "prepare-commit-msg". - -# This hook includes three examples. The first comments out the -# "Conflicts:" part of a merge commit. -# -# The second includes the output of "git diff --name-status -r" -# into the message, just before the "git status" output. It is -# commented because it doesn't cope with --amend or with squashed -# commits. -# -# The third example adds a Signed-off-by line to the message, that can -# still be edited. This is rarely a good idea. - -case "$2,$3" in - merge,) - /usr/bin/perl -i.bak -ne 's/^/# /, s/^# #/#/ if /^Conflicts/ .. /#/; print' "$1" ;; - -# ,|template,) -# /usr/bin/perl -i.bak -pe ' -# print "\n" . `git diff --cached --name-status -r` -# if /^#/ && $first++ == 0' "$1" ;; - - *) ;; -esac - -# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') -# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" diff --git a/hooks/update.sample b/hooks/update.sample deleted file mode 100644 index d847583..0000000 --- a/hooks/update.sample +++ /dev/null @@ -1,128 +0,0 @@ -#!/bin/sh -# -# An example hook script to blocks unannotated tags from entering. -# Called by "git receive-pack" with arguments: refname sha1-old sha1-new -# -# To enable this hook, rename this file to "update". -# -# Config -# ------ -# hooks.allowunannotated -# This boolean sets whether unannotated tags will be allowed into the -# repository. By default they won't be. -# hooks.allowdeletetag -# This boolean sets whether deleting tags will be allowed in the -# repository. By default they won't be. -# hooks.allowmodifytag -# This boolean sets whether a tag may be modified after creation. By default -# it won't be. -# hooks.allowdeletebranch -# This boolean sets whether deleting branches will be allowed in the -# repository. By default they won't be. -# hooks.denycreatebranch -# This boolean sets whether remotely creating branches will be denied -# in the repository. By default this is allowed. -# - -# --- Command line -refname="$1" -oldrev="$2" -newrev="$3" - -# --- Safety check -if [ -z "$GIT_DIR" ]; then - echo "Don't run this script from the command line." >&2 - echo " (if you want, you could supply GIT_DIR then run" >&2 - echo " $0 )" >&2 - exit 1 -fi - -if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then - echo "usage: $0 " >&2 - exit 1 -fi - -# --- Config -allowunannotated=$(git config --bool hooks.allowunannotated) -allowdeletebranch=$(git config --bool hooks.allowdeletebranch) -denycreatebranch=$(git config --bool hooks.denycreatebranch) -allowdeletetag=$(git config --bool hooks.allowdeletetag) -allowmodifytag=$(git config --bool hooks.allowmodifytag) - -# check for no description -projectdesc=$(sed -e '1q' "$GIT_DIR/description") -case "$projectdesc" in -"Unnamed repository"* | "") - echo "*** Project description file hasn't been set" >&2 - exit 1 - ;; -esac - -# --- Check types -# if $newrev is 0000...0000, it's a commit to delete a ref. -zero="0000000000000000000000000000000000000000" -if [ "$newrev" = "$zero" ]; then - newrev_type=delete -else - newrev_type=$(git cat-file -t $newrev) -fi - -case "$refname","$newrev_type" in - refs/tags/*,commit) - # un-annotated tag - short_refname=${refname##refs/tags/} - if [ "$allowunannotated" != "true" ]; then - echo "*** The un-annotated tag, $short_refname, is not allowed in this repository" >&2 - echo "*** Use 'git tag [ -a | -s ]' for tags you want to propagate." >&2 - exit 1 - fi - ;; - refs/tags/*,delete) - # delete tag - if [ "$allowdeletetag" != "true" ]; then - echo "*** Deleting a tag is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/tags/*,tag) - # annotated tag - if [ "$allowmodifytag" != "true" ] && git rev-parse $refname > /dev/null 2>&1 - then - echo "*** Tag '$refname' already exists." >&2 - echo "*** Modifying a tag is not allowed in this repository." >&2 - exit 1 - fi - ;; - refs/heads/*,commit) - # branch - if [ "$oldrev" = "$zero" -a "$denycreatebranch" = "true" ]; then - echo "*** Creating a branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/heads/*,delete) - # delete branch - if [ "$allowdeletebranch" != "true" ]; then - echo "*** Deleting a branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/remotes/*,commit) - # tracking branch - ;; - refs/remotes/*,delete) - # delete tracking branch - if [ "$allowdeletebranch" != "true" ]; then - echo "*** Deleting a tracking branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - *) - # Anything else (is there anything else?) - echo "*** Update hook: unknown type of update to ref $refname of type $newrev_type" >&2 - exit 1 - ;; -esac - -# --- Finished -exit 0 diff --git a/info/exclude b/info/exclude deleted file mode 100644 index a5196d1..0000000 --- a/info/exclude +++ /dev/null @@ -1,6 +0,0 @@ -# git ls-files --others --exclude-from=.git/info/exclude -# Lines that start with '#' are comments. -# For a project mostly in C, the following would be a good set of -# exclude patterns (uncomment them if you want to use them): -# *.[oa] -# *~ diff --git "a/\351\203\250\351\227\250\347\256\241\347\220\206/\351\203\250\351\227\250\345\221\250\346\212\245/20141117-20141121/\344\272\247\345\223\201\345\267\245\344\275\234\345\221\250\346\212\245-\351\273\204\351\224\246\346\264\213-20141117-20141121.xls" "b/\351\203\250\351\227\250\347\256\241\347\220\206/\351\203\250\351\227\250\345\221\250\346\212\245/20141117-20141121/\344\272\247\345\223\201\345\267\245\344\275\234\345\221\250\346\212\245-\351\273\204\351\224\246\346\264\213-20141117-20141121.xls" new file mode 100644 index 0000000..975aecf Binary files /dev/null and "b/\351\203\250\351\227\250\347\256\241\347\220\206/\351\203\250\351\227\250\345\221\250\346\212\245/20141117-20141121/\344\272\247\345\223\201\345\267\245\344\275\234\345\221\250\346\212\245-\351\273\204\351\224\246\346\264\213-20141117-20141121.xls" differ diff --git "a/\351\203\250\351\227\250\347\256\241\347\220\206/\351\203\250\351\227\250\345\221\250\346\212\245/20141117-20141121/\344\272\247\345\223\201\345\267\245\344\275\234\345\221\250\346\212\245_\345\210\230\344\277\212\350\261\252_201411117--1121.xls" "b/\351\203\250\351\227\250\347\256\241\347\220\206/\351\203\250\351\227\250\345\221\250\346\212\245/20141117-20141121/\344\272\247\345\223\201\345\267\245\344\275\234\345\221\250\346\212\245_\345\210\230\344\277\212\350\261\252_201411117--1121.xls" new file mode 100644 index 0000000..e890bf9 Binary files /dev/null and "b/\351\203\250\351\227\250\347\256\241\347\220\206/\351\203\250\351\227\250\345\221\250\346\212\245/20141117-20141121/\344\272\247\345\223\201\345\267\245\344\275\234\345\221\250\346\212\245_\345\210\230\344\277\212\350\261\252_201411117--1121.xls" differ diff --git "a/\351\203\250\351\227\250\347\256\241\347\220\206/\351\203\250\351\227\250\345\221\250\346\212\245/20141117-20141121/\344\272\247\345\223\201\345\267\245\344\275\234\345\221\250\346\212\245_\345\256\276\345\205\260\350\212\263_20141117-20141121.xls" "b/\351\203\250\351\227\250\347\256\241\347\220\206/\351\203\250\351\227\250\345\221\250\346\212\245/20141117-20141121/\344\272\247\345\223\201\345\267\245\344\275\234\345\221\250\346\212\245_\345\256\276\345\205\260\350\212\263_20141117-20141121.xls" new file mode 100644 index 0000000..379716e Binary files /dev/null and "b/\351\203\250\351\227\250\347\256\241\347\220\206/\351\203\250\351\227\250\345\221\250\346\212\245/20141117-20141121/\344\272\247\345\223\201\345\267\245\344\275\234\345\221\250\346\212\245_\345\256\276\345\205\260\350\212\263_20141117-20141121.xls" differ diff --git "a/\351\203\250\351\227\250\347\256\241\347\220\206/\351\203\250\351\227\250\345\221\250\346\212\245/20141117-20141121/\344\272\247\345\223\201\345\267\245\344\275\234\345\221\250\346\212\245_\346\235\216\346\265\267\351\224\213_20141117-20141121.xls" "b/\351\203\250\351\227\250\347\256\241\347\220\206/\351\203\250\351\227\250\345\221\250\346\212\245/20141117-20141121/\344\272\247\345\223\201\345\267\245\344\275\234\345\221\250\346\212\245_\346\235\216\346\265\267\351\224\213_20141117-20141121.xls" new file mode 100644 index 0000000..f6173b3 Binary files /dev/null and "b/\351\203\250\351\227\250\347\256\241\347\220\206/\351\203\250\351\227\250\345\221\250\346\212\245/20141117-20141121/\344\272\247\345\223\201\345\267\245\344\275\234\345\221\250\346\212\245_\346\235\216\346\265\267\351\224\213_20141117-20141121.xls" differ diff --git "a/\351\203\250\351\227\250\347\256\241\347\220\206/\351\203\250\351\227\250\345\221\250\346\212\245/20141117-20141121/\344\272\247\345\223\201\345\267\245\344\275\234\345\221\250\346\212\245_\346\242\201\346\200\235\346\225\217_20141117-20141121.xls" "b/\351\203\250\351\227\250\347\256\241\347\220\206/\351\203\250\351\227\250\345\221\250\346\212\245/20141117-20141121/\344\272\247\345\223\201\345\267\245\344\275\234\345\221\250\346\212\245_\346\242\201\346\200\235\346\225\217_20141117-20141121.xls" new file mode 100644 index 0000000..e33128e Binary files /dev/null and "b/\351\203\250\351\227\250\347\256\241\347\220\206/\351\203\250\351\227\250\345\221\250\346\212\245/20141117-20141121/\344\272\247\345\223\201\345\267\245\344\275\234\345\221\250\346\212\245_\346\242\201\346\200\235\346\225\217_20141117-20141121.xls" differ diff --git "a/\351\203\250\351\227\250\347\256\241\347\220\206/\351\203\250\351\227\250\345\221\250\346\212\245/20141117-20141121/\344\272\247\345\223\201\345\267\245\344\275\234\345\221\250\346\212\245_\350\201\202\344\277\235\345\256\232_20141110--20141121.xls" "b/\351\203\250\351\227\250\347\256\241\347\220\206/\351\203\250\351\227\250\345\221\250\346\212\245/20141117-20141121/\344\272\247\345\223\201\345\267\245\344\275\234\345\221\250\346\212\245_\350\201\202\344\277\235\345\256\232_20141110--20141121.xls" new file mode 100644 index 0000000..db81425 Binary files /dev/null and "b/\351\203\250\351\227\250\347\256\241\347\220\206/\351\203\250\351\227\250\345\221\250\346\212\245/20141117-20141121/\344\272\247\345\223\201\345\267\245\344\275\234\345\221\250\346\212\245_\350\201\202\344\277\235\345\256\232_20141110--20141121.xls" differ diff --git "a/\351\203\250\351\227\250\347\256\241\347\220\206/\351\203\250\351\227\250\345\221\250\346\212\245/20141117-20141121/\344\272\247\345\223\201\345\267\245\344\275\234\345\221\250\346\212\245_\350\202\226\351\233\250_20141117-20141121.xls" "b/\351\203\250\351\227\250\347\256\241\347\220\206/\351\203\250\351\227\250\345\221\250\346\212\245/20141117-20141121/\344\272\247\345\223\201\345\267\245\344\275\234\345\221\250\346\212\245_\350\202\226\351\233\250_20141117-20141121.xls" new file mode 100644 index 0000000..4f34137 Binary files /dev/null and "b/\351\203\250\351\227\250\347\256\241\347\220\206/\351\203\250\351\227\250\345\221\250\346\212\245/20141117-20141121/\344\272\247\345\223\201\345\267\245\344\275\234\345\221\250\346\212\245_\350\202\226\351\233\250_20141117-20141121.xls" differ diff --git "a/\351\203\250\351\227\250\347\256\241\347\220\206/\351\203\250\351\227\250\345\221\250\346\212\245/20141117-20141121/\344\272\247\345\223\201\345\267\245\344\275\234\345\221\250\346\212\245_\350\246\203\345\255\220\350\266\205_201411.17-201411.21.xls" "b/\351\203\250\351\227\250\347\256\241\347\220\206/\351\203\250\351\227\250\345\221\250\346\212\245/20141117-20141121/\344\272\247\345\223\201\345\267\245\344\275\234\345\221\250\346\212\245_\350\246\203\345\255\220\350\266\205_201411.17-201411.21.xls" new file mode 100644 index 0000000..72caf80 Binary files /dev/null and "b/\351\203\250\351\227\250\347\256\241\347\220\206/\351\203\250\351\227\250\345\221\250\346\212\245/20141117-20141121/\344\272\247\345\223\201\345\267\245\344\275\234\345\221\250\346\212\245_\350\246\203\345\255\220\350\266\205_201411.17-201411.21.xls" differ diff --git "a/\351\203\250\351\227\250\347\256\241\347\220\206/\351\203\250\351\227\250\345\221\250\346\212\245/20141117-20141121/\344\272\247\345\223\201\345\267\245\344\275\234\345\221\250\346\212\245_\351\203\255\346\225\217_201411.17-201411.21.xls" "b/\351\203\250\351\227\250\347\256\241\347\220\206/\351\203\250\351\227\250\345\221\250\346\212\245/20141117-20141121/\344\272\247\345\223\201\345\267\245\344\275\234\345\221\250\346\212\245_\351\203\255\346\225\217_201411.17-201411.21.xls" new file mode 100644 index 0000000..bc78747 Binary files /dev/null and "b/\351\203\250\351\227\250\347\256\241\347\220\206/\351\203\250\351\227\250\345\221\250\346\212\245/20141117-20141121/\344\272\247\345\223\201\345\267\245\344\275\234\345\221\250\346\212\245_\351\203\255\346\225\217_201411.17-201411.21.xls" differ diff --git "a/\351\203\250\351\227\250\347\256\241\347\220\206/\351\203\250\351\227\250\345\221\250\346\212\245/20141117-20141121/\344\272\247\345\223\201\345\267\245\344\275\234\345\221\250\346\212\245_\351\231\210\345\205\211\346\261\240_20141117-20141121.xls" "b/\351\203\250\351\227\250\347\256\241\347\220\206/\351\203\250\351\227\250\345\221\250\346\212\245/20141117-20141121/\344\272\247\345\223\201\345\267\245\344\275\234\345\221\250\346\212\245_\351\231\210\345\205\211\346\261\240_20141117-20141121.xls" new file mode 100644 index 0000000..b460d0b Binary files /dev/null and "b/\351\203\250\351\227\250\347\256\241\347\220\206/\351\203\250\351\227\250\345\221\250\346\212\245/20141117-20141121/\344\272\247\345\223\201\345\267\245\344\275\234\345\221\250\346\212\245_\351\231\210\345\205\211\346\261\240_20141117-20141121.xls" differ diff --git "a/\351\203\250\351\227\250\347\256\241\347\220\206/\351\203\250\351\227\250\345\221\250\346\212\245/20141117-20141121/\344\272\247\345\223\201\345\267\245\344\275\234\345\221\250\346\212\245_\351\242\234\346\242\246\345\247\243_20141117-20141121.xls" "b/\351\203\250\351\227\250\347\256\241\347\220\206/\351\203\250\351\227\250\345\221\250\346\212\245/20141117-20141121/\344\272\247\345\223\201\345\267\245\344\275\234\345\221\250\346\212\245_\351\242\234\346\242\246\345\247\243_20141117-20141121.xls" index f13de07..69a8736 100644 Binary files "a/\351\203\250\351\227\250\347\256\241\347\220\206/\351\203\250\351\227\250\345\221\250\346\212\245/20141117-20141121/\344\272\247\345\223\201\345\267\245\344\275\234\345\221\250\346\212\245_\351\242\234\346\242\246\345\247\243_20141117-20141121.xls" and "b/\351\203\250\351\227\250\347\256\241\347\220\206/\351\203\250\351\227\250\345\221\250\346\212\245/20141117-20141121/\344\272\247\345\223\201\345\267\245\344\275\234\345\221\250\346\212\245_\351\242\234\346\242\246\345\247\243_20141117-20141121.xls" differ diff --git "a/\351\203\250\351\227\250\347\256\241\347\220\206/\351\203\250\351\227\250\345\221\250\346\212\245/20141117-20141121/\344\272\247\345\223\201\345\267\245\344\275\234\345\221\250\346\212\245_\351\273\204\345\277\227\350\266\205_20141117_20141121.xls" "b/\351\203\250\351\227\250\347\256\241\347\220\206/\351\203\250\351\227\250\345\221\250\346\212\245/20141117-20141121/\344\272\247\345\223\201\345\267\245\344\275\234\345\221\250\346\212\245_\351\273\204\345\277\227\350\266\205_20141117_20141121.xls" new file mode 100644 index 0000000..78de87c Binary files /dev/null and "b/\351\203\250\351\227\250\347\256\241\347\220\206/\351\203\250\351\227\250\345\221\250\346\212\245/20141117-20141121/\344\272\247\345\223\201\345\267\245\344\275\234\345\221\250\346\212\245_\351\273\204\345\277\227\350\266\205_20141117_20141121.xls" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213.rp" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213.rp" index df6a89f..aec9639 100644 Binary files "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213.rp" and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213.rp" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/data/document.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/data/document.js" index f00235b..fc067a4 100644 --- "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/data/document.js" +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/data/document.js" @@ -17,29 +17,41 @@ "type":"Wireframe", "url":"购买授权码.html", "children":[{ - "pageName":"我的授权码(已绑定设备)", + "pageName":"我的授权码", "type":"Wireframe", - "url":"我的授权码(已绑定设备).html"}, + "url":"我的授权码.html"}, { - "pageName":"我的授权码(未绑定设备)", + "pageName":"刷卡器获取授权码", "type":"Wireframe", - "url":"我的授权码(未绑定设备).html"}, + "url":"刷卡器获取授权码.html"}, { - "pageName":"我的授权码(绑定验证)", + "pageName":"收银台付款", "type":"Wireframe", - "url":"我的授权码(绑定验证).html"}, + "url":"收银台付款.html"}, { - "pageName":"我的授权码(未购买)", + "pageName":"获得授权码", "type":"Wireframe", - "url":"我的授权码(未购买).html"}, + "url":"获得授权码.html"}, { - "pageName":"收银台付款", + "pageName":"用户信息登记", "type":"Wireframe", - "url":"收银台付款.html"}, + "url":"用户信息登记.html", + "children":[{ + "pageName":"用户级别示意", + "type":"Wireframe", + "url":"用户级别示意.html"}]}]}, { - "pageName":"获得授权码", + "pageName":"代理商分配授权码", + "type":"Wireframe", + "url":"代理商分配授权码.html", + "children":[{ + "pageName":"授权码出售", + "type":"Wireframe", + "url":"授权码出售.html"}, +{ + "pageName":"已分配记录", "type":"Wireframe", - "url":"获得授权码.html"}]}, + "url":"已分配记录.html"}]}, { "pageName":"授权码使用界面(有授权码)", "type":"Wireframe", @@ -47,7 +59,23 @@ { "pageName":"授权码使用界面(无授权码)", "type":"Wireframe", - "url":"授权码使用界面(无授权码).html"}]}, + "url":"授权码使用界面(无授权码).html"}, +{ + "pageName":"授权码绑定设备(暂时废弃)", + "type":"Wireframe", + "url":"授权码绑定设备(暂时废弃).html", + "children":[{ + "pageName":"我的授权码(已绑定设备)", + "type":"Wireframe", + "url":"我的授权码(已绑定设备).html"}, +{ + "pageName":"我的授权码(未绑定设备)", + "type":"Wireframe", + "url":"我的授权码(未绑定设备).html"}, +{ + "pageName":"我的授权码(绑定验证)", + "type":"Wireframe", + "url":"我的授权码(绑定验证).html"}]}]}, "globalVariables":{ "onloadvariable":""}, "defaultAdaptiveView":{ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\344\273\243\347\220\206\345\225\206\345\210\206\351\205\215\346\216\210\346\235\203\347\240\201/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\344\273\243\347\220\206\345\225\206\345\210\206\351\205\215\346\216\210\346\235\203\347\240\201/data.js" new file mode 100644 index 0000000..538ceeb --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\344\273\243\347\220\206\345\225\206\345\210\206\351\205\215\346\216\210\346\235\203\347\240\201/data.js" @@ -0,0 +1,638 @@ +$axure.loadCurrentPage({ + "url":"代理商分配授权码.html", + "generationDate":new Date(1416631107375), + "isCanvasEnabled":false, + "variables":["OnLoadVariable"], + "page":{ + "packageId":"66f25c3f90e84bd6b6c625aa7c555123", + "type":"Axure:Page", + "name":"代理商分配授权码", + "notes":{ +}, + "style":{ + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "pageAlignment":"near", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "image":null, + "imageHorizontalAlignment":"near", + "imageVerticalAlignment":"near", + "imageRepeat":"auto", + "favicon":null, + "sketchFactor":"0", + "colorStyle":"appliedColor", + "fontName":"Applied Font", + "borderWidth":"0"}, + "adaptiveStyles":{ +}, + "interactionMap":{ +}, + "diagram":{ + "objects":[{ + "id":"f2224b1254594005929e32f48cf35d30", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":30, + "y":20}, + "size":{ + "width":380, + "height":744}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ef034a122cfb405c87bd012bf8e5b6be", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":30, + "y":20}, + "size":{ + "width":380, + "height":744}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/购买授权码/u0.png"}}, +{ + "id":"f8a00e8ba35d4fff9cfa58fb26884bbf", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":62, + "y":163}, + "size":{ + "width":308, + "height":13}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a96cf75000e24ad58a071749db203cc6", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":62, + "y":163}, + "size":{ + "width":308, + "height":13}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/购买授权码/u2.png"}}, +{ + "id":"891c19ecfe1f4f6387c5602196b4b503", + "label":"", + "type":"buttonShape", + "styleType":"h1", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":166.5, + "y":193}, + "size":{ + "width":177, + "height":37}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"3746b5eb27604bedb7a97472e26cecd2", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":166.5, + "y":193}, + "size":{ + "width":177, + "height":37}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"f897b0b3addc4464b40e362dc4f731e1", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":70, + "y":360}, + "size":{ + "width":300, + "height":70}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"f666b06c6d674f19b78529eca7fe8944", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":70, + "y":360}, + "size":{ + "width":300, + "height":70}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/代理商分配授权码/u6.png"}}, +{ + "id":"ff651c157d32449fb4a81d92e4670c72", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":70, + "y":263}, + "size":{ + "width":300, + "height":87}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c994f250d6fd426e9cfc22b2ad9fd43b", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":70, + "y":263}, + "size":{ + "width":300, + "height":87}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/代理商分配授权码/u8.png"}}, +{ + "id":"b7b4c32b35654af788786603c612ee61", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":80, + "y":460}, + "size":{ + "width":70, + "height":70}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d9cd443640ed462fad966a4e39420781", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":80, + "y":460}, + "size":{ + "width":70, + "height":70}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/代理商分配授权码/u10.png"}}, +{ + "id":"03109b7cfe7b423f81ceb30e04dba598", + "label":"", + "type":"horizontalLine", + "styleType":"horizontalLine", + "visible":true, + "style":{ + "location":{ + "x":70, + "y":440}, + "size":{ + "width":300, + "height":10}}, + "adaptiveStyles":{ +}, + "images":{ + "start~":"resources/images/transparent.gif", + "end~":"resources/images/transparent.gif", + "line~":"images/代理商分配授权码/u12_line.png"}}, +{ + "id":"5f2f1bebc8154b0586b38f73b01b421e", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":150, + "y":460}, + "size":{ + "width":70, + "height":70}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"36199fb767fa4ca3a796116eea1ca2d1", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":150, + "y":460}, + "size":{ + "width":70, + "height":70}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/代理商分配授权码/u10.png"}}, +{ + "id":"3d373267ed6d4a2aa3cc12f1215e4103", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":220, + "y":460}, + "size":{ + "width":70, + "height":70}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"082886b4966b4647af7386758258e310", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":220, + "y":460}, + "size":{ + "width":70, + "height":70}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/代理商分配授权码/u10.png"}}, +{ + "id":"fc433715859b485db3c261293354dc38", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":290, + "y":460}, + "size":{ + "width":70, + "height":70}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"e4801d354766499a9c3dda9c03bc77bc", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":290, + "y":460}, + "size":{ + "width":70, + "height":70}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 授权码出售", + "target":{ + "targetType":"page", + "url":"授权码出售.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true, + "images":{ + "normal~":"images/代理商分配授权码/u10.png"}}, +{ + "id":"aad9dda5463b4052a95cf0d7150a2216", + "label":"", + "type":"buttonShape", + "styleType":"h1", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "fontSize":"14px", + "location":{ + "x":70, + "y":203}, + "size":{ + "width":86, + "height":27}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"1db5c9d3f3ac46c1a29ded870037805a", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "fontSize":"14px", + "location":{ + "x":70, + "y":203}, + "size":{ + "width":86, + "height":27}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"6786bc08897f43dca202fba764bada41", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":80, + "y":530}, + "size":{ + "width":70, + "height":70}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"f018be1a54e845d2a732bb339fb4dca3", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":80, + "y":530}, + "size":{ + "width":70, + "height":70}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/代理商分配授权码/u10.png"}}, +{ + "id":"4af8caad95934a36a0c4aca205dc4fb4", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":150, + "y":530}, + "size":{ + "width":70, + "height":70}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ab7ffb3f67554249b54caf77cc42a92b", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":150, + "y":530}, + "size":{ + "width":70, + "height":70}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/代理商分配授权码/u10.png"}}, +{ + "id":"529483374baa4d37814ea6c976d3d5c4", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":220, + "y":530}, + "size":{ + "width":70, + "height":70}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"e21607a05c5f42eabd819b72f29005ea", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":220, + "y":530}, + "size":{ + "width":70, + "height":70}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/代理商分配授权码/u10.png"}}, +{ + "id":"08b1981241a24894b19b909c120f109e", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":290, + "y":530}, + "size":{ + "width":70, + "height":70}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"fc9565fa3ea548b0b1afa8fbfa5b2bf8", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":290, + "y":530}, + "size":{ + "width":70, + "height":70}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/代理商分配授权码/u10.png"}}]}}, + "masters":{ +}, + "objectPaths":{ + "f2224b1254594005929e32f48cf35d30":{ + "scriptId":"u0"}, + "ef034a122cfb405c87bd012bf8e5b6be":{ + "scriptId":"u1"}, + "f8a00e8ba35d4fff9cfa58fb26884bbf":{ + "scriptId":"u2"}, + "a96cf75000e24ad58a071749db203cc6":{ + "scriptId":"u3"}, + "891c19ecfe1f4f6387c5602196b4b503":{ + "scriptId":"u4"}, + "3746b5eb27604bedb7a97472e26cecd2":{ + "scriptId":"u5"}, + "f897b0b3addc4464b40e362dc4f731e1":{ + "scriptId":"u6"}, + "f666b06c6d674f19b78529eca7fe8944":{ + "scriptId":"u7"}, + "ff651c157d32449fb4a81d92e4670c72":{ + "scriptId":"u8"}, + "c994f250d6fd426e9cfc22b2ad9fd43b":{ + "scriptId":"u9"}, + "b7b4c32b35654af788786603c612ee61":{ + "scriptId":"u10"}, + "d9cd443640ed462fad966a4e39420781":{ + "scriptId":"u11"}, + "03109b7cfe7b423f81ceb30e04dba598":{ + "scriptId":"u12"}, + "5f2f1bebc8154b0586b38f73b01b421e":{ + "scriptId":"u13"}, + "36199fb767fa4ca3a796116eea1ca2d1":{ + "scriptId":"u14"}, + "3d373267ed6d4a2aa3cc12f1215e4103":{ + "scriptId":"u15"}, + "082886b4966b4647af7386758258e310":{ + "scriptId":"u16"}, + "fc433715859b485db3c261293354dc38":{ + "scriptId":"u17"}, + "e4801d354766499a9c3dda9c03bc77bc":{ + "scriptId":"u18"}, + "aad9dda5463b4052a95cf0d7150a2216":{ + "scriptId":"u19"}, + "1db5c9d3f3ac46c1a29ded870037805a":{ + "scriptId":"u20"}, + "6786bc08897f43dca202fba764bada41":{ + "scriptId":"u21"}, + "f018be1a54e845d2a732bb339fb4dca3":{ + "scriptId":"u22"}, + "4af8caad95934a36a0c4aca205dc4fb4":{ + "scriptId":"u23"}, + "ab7ffb3f67554249b54caf77cc42a92b":{ + "scriptId":"u24"}, + "529483374baa4d37814ea6c976d3d5c4":{ + "scriptId":"u25"}, + "e21607a05c5f42eabd819b72f29005ea":{ + "scriptId":"u26"}, + "08b1981241a24894b19b909c120f109e":{ + "scriptId":"u27"}, + "fc9565fa3ea548b0b1afa8fbfa5b2bf8":{ + "scriptId":"u28"}}}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\344\273\243\347\220\206\345\225\206\345\210\206\351\205\215\346\216\210\346\235\203\347\240\201/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\344\273\243\347\220\206\345\225\206\345\210\206\351\205\215\346\216\210\346\235\203\347\240\201/styles.css" new file mode 100644 index 0000000..a4d5200 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\344\273\243\347\220\206\345\225\206\345\210\206\351\205\215\346\216\210\346\235\203\347\240\201/styles.css" @@ -0,0 +1,341 @@ +body { + margin:0px; + background-image:none; + position:static; + left:auto; + width:410px; + margin-left:0; + margin-right:0; + text-align:left; +} +#base { + position:absolute; + z-index:0; +} +#u0 { + position:absolute; + left:30px; + top:20px; + width:380px; + height:744px; +} +#u0_img { + position:absolute; + left:0px; + top:0px; + width:380px; + height:744px; +} +#u1 { + position:absolute; + left:2px; + top:364px; + width:376px; + visibility:hidden; + word-wrap:break-word; +} +#u2 { + position:absolute; + left:62px; + top:163px; + width:308px; + height:13px; +} +#u2_img { + position:absolute; + left:0px; + top:0px; + width:308px; + height:13px; +} +#u3 { + position:absolute; + left:2px; + top:-2px; + width:304px; + visibility:hidden; + word-wrap:break-word; +} +#u4 { + position:absolute; + left:166px; + top:193px; + width:177px; + height:37px; +} +#u4_img { + position:absolute; + left:0px; + top:0px; + width:177px; + height:37px; +} +#u5 { + position:absolute; + left:0px; + top:0px; + width:177px; + word-wrap:break-word; +} +#u6 { + position:absolute; + left:70px; + top:360px; + width:300px; + height:70px; + text-align:left; +} +#u6_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:70px; +} +#u7 { + position:absolute; + left:2px; + top:19px; + width:296px; + word-wrap:break-word; +} +#u8 { + position:absolute; + left:70px; + top:263px; + width:300px; + height:87px; + text-align:left; +} +#u8_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:87px; +} +#u9 { + position:absolute; + left:2px; + top:4px; + width:296px; + word-wrap:break-word; +} +#u10 { + position:absolute; + left:80px; + top:460px; + width:70px; + height:70px; +} +#u10_img { + position:absolute; + left:0px; + top:0px; + width:70px; + height:70px; +} +#u11 { + position:absolute; + left:2px; + top:27px; + width:66px; + word-wrap:break-word; +} +#u12 { + position:absolute; + left:70px; + top:440px; + width:300px; + height:10px; +} +#u12_start { + position:absolute; + left:0px; + top:-5px; + width:18px; + height:20px; +} +#u12_end { + position:absolute; + left:283px; + top:-5px; + width:18px; + height:20px; +} +#u12_line { + position:absolute; + left:0px; + top:5px; + width:300px; + height:1px; +} +#u13 { + position:absolute; + left:150px; + top:460px; + width:70px; + height:70px; +} +#u13_img { + position:absolute; + left:0px; + top:0px; + width:70px; + height:70px; +} +#u14 { + position:absolute; + left:2px; + top:27px; + width:66px; + word-wrap:break-word; +} +#u15 { + position:absolute; + left:220px; + top:460px; + width:70px; + height:70px; +} +#u15_img { + position:absolute; + left:0px; + top:0px; + width:70px; + height:70px; +} +#u16 { + position:absolute; + left:2px; + top:27px; + width:66px; + word-wrap:break-word; +} +#u17 { + position:absolute; + left:290px; + top:460px; + width:70px; + height:70px; +} +#u17_img { + position:absolute; + left:0px; + top:0px; + width:70px; + height:70px; +} +#u18 { + position:absolute; + left:2px; + top:27px; + width:66px; + word-wrap:break-word; +} +#u19 { + position:absolute; + left:70px; + top:203px; + width:86px; + height:27px; + font-size:14px; +} +#u19_img { + position:absolute; + left:0px; + top:0px; + width:86px; + height:27px; +} +#u20 { + position:absolute; + left:0px; + top:0px; + width:86px; + word-wrap:break-word; +} +#u21 { + position:absolute; + left:80px; + top:530px; + width:70px; + height:70px; +} +#u21_img { + position:absolute; + left:0px; + top:0px; + width:70px; + height:70px; +} +#u22 { + position:absolute; + left:2px; + top:27px; + width:66px; + word-wrap:break-word; +} +#u23 { + position:absolute; + left:150px; + top:530px; + width:70px; + height:70px; +} +#u23_img { + position:absolute; + left:0px; + top:0px; + width:70px; + height:70px; +} +#u24 { + position:absolute; + left:2px; + top:27px; + width:66px; + word-wrap:break-word; +} +#u25 { + position:absolute; + left:220px; + top:530px; + width:70px; + height:70px; +} +#u25_img { + position:absolute; + left:0px; + top:0px; + width:70px; + height:70px; +} +#u26 { + position:absolute; + left:2px; + top:27px; + width:66px; + word-wrap:break-word; +} +#u27 { + position:absolute; + left:290px; + top:530px; + width:70px; + height:70px; +} +#u27_img { + position:absolute; + left:0px; + top:0px; + width:70px; + height:70px; +} +#u28 { + position:absolute; + left:2px; + top:27px; + width:66px; + word-wrap:break-word; +} diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\346\234\252\350\264\255\344\271\260\357\274\211/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/data.js" similarity index 67% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\346\234\252\350\264\255\344\271\260\357\274\211/data.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/data.js" index 5802590..200d2ef 100644 --- "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\346\234\252\350\264\255\344\271\260\357\274\211/data.js" +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/data.js" @@ -1,12 +1,12 @@ $axure.loadCurrentPage({ - "url":"我的授权码(未购买).html", - "generationDate":new Date(1413868503781.25), + "url":"刷卡器获取授权码.html", + "generationDate":new Date(1416631106843.75), "isCanvasEnabled":false, "variables":["OnLoadVariable"], "page":{ "packageId":"7fd33a96dfa74f528325d5097faa084a", "type":"Axure:Page", - "name":"我的授权码(未购买)", + "name":"刷卡器获取授权码", "notes":{ }, "style":{ @@ -160,8 +160,8 @@ "fontName":"'Applied Font Regular', 'Applied Font'", "horizontalAlignment":"left", "location":{ - "x":90, - "y":320}, + "x":86, + "y":260}, "size":{ "width":260, "height":40}}, @@ -178,15 +178,15 @@ "fontName":"'Applied Font Regular', 'Applied Font'", "horizontalAlignment":"left", "location":{ - "x":90, - "y":320}, + "x":86, + "y":260}, "size":{ "width":260, "height":40}}, "adaptiveStyles":{ }}], "images":{ - "normal~":"images/我的授权码(绑定验证)/u6.png"}}, + "normal~":"images/刷卡器获取授权码/u6.png"}}, { "id":"2a82e9880a4c4104a50a96cbddbd322b", "label":"", @@ -238,7 +238,7 @@ "linkType":"current"}]}]}}, "tabbable":true, "images":{ - "normal~":"images/购买授权码/u23.png"}}, + "normal~":"images/购买授权码/u21.png"}}, { "id":"63fb7a1a60f7420494884067bb5041ac", "label":"", @@ -248,8 +248,8 @@ "style":{ "fontName":"'Applied Font Regular', 'Applied Font'", "location":{ - "x":250, - "y":390}, + "x":170, + "y":377}, "size":{ "width":100, "height":30}}, @@ -265,8 +265,8 @@ "style":{ "fontName":"'Applied Font Regular', 'Applied Font'", "location":{ - "x":250, - "y":390}, + "x":170, + "y":377}, "size":{ "width":100, "height":30}}, @@ -288,7 +288,7 @@ "linkType":"current"}]}]}}, "tabbable":true, "images":{ - "normal~":"images/我的授权码(未购买)/u10.png"}}, + "normal~":"images/刷卡器获取授权码/u10.png"}}, { "id":"4242ae44e99d45c49dd4f1b1ee015b15", "label":"", @@ -299,10 +299,10 @@ "fontName":"'Applied Font Regular', 'Applied Font'", "horizontalAlignment":"left", "location":{ - "x":90, - "y":390}, + "x":86, + "y":320}, "size":{ - "width":140, + "width":180, "height":30}}, "adaptiveStyles":{ }, @@ -317,17 +317,52 @@ "fontName":"'Applied Font Regular', 'Applied Font'", "horizontalAlignment":"left", "location":{ - "x":90, - "y":390}, + "x":86, + "y":320}, + "size":{ + "width":180, + "height":30}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/刷卡器获取授权码/u12.png"}}, +{ + "id":"6085a16a236d404a8bf481a2a3c1a432", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":280, + "y":320}, + "size":{ + "width":70, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"35d4126c600a4d1c9a005c927d2ff0ed", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":280, + "y":320}, "size":{ - "width":140, + "width":70, "height":30}}, "adaptiveStyles":{ }}], "images":{ - "normal~":"images/我的授权码(未购买)/u12.png"}}, + "normal~":"images/刷卡器获取授权码/u14.png"}}, { - "id":"4b314a6a350f44069fa2b195dfbe095c", + "id":"54f8aeeeb67a4496a9bd6ebf937373db", "label":"", "type":"buttonShape", "styleType":"buttonShape", @@ -336,15 +371,15 @@ "fontName":"'Applied Font Regular', 'Applied Font'", "horizontalAlignment":"left", "location":{ - "x":420, - "y":350}, + "x":430, + "y":260}, "size":{ - "width":320, - "height":96}}, + "width":250, + "height":40}}, "adaptiveStyles":{ }, "objects":[{ - "id":"2c837d72601e43aebbfd0460d551ef6a", + "id":"c28f04e761154110ae53df51e0c3f578", "label":"", "isContained":true, "type":"richTextPanel", @@ -354,17 +389,17 @@ "fontName":"'Applied Font Regular', 'Applied Font'", "horizontalAlignment":"left", "location":{ - "x":420, - "y":350}, + "x":430, + "y":260}, "size":{ - "width":320, - "height":96}}, + "width":250, + "height":40}}, "adaptiveStyles":{ }}], "images":{ - "normal~":"images/我的授权码(未购买)/u14.png"}}, + "normal~":"images/刷卡器获取授权码/u16.png"}}, { - "id":"729ad89c7a6644669e6ba0d9516498fa", + "id":"670a1c57fc66473fa8e8076201e39358", "label":"", "type":"buttonShape", "styleType":"buttonShape", @@ -373,15 +408,15 @@ "fontName":"'Applied Font Regular', 'Applied Font'", "horizontalAlignment":"left", "location":{ - "x":420, - "y":252}, + "x":430, + "y":320}, "size":{ - "width":320, - "height":62}}, + "width":250, + "height":100}}, "adaptiveStyles":{ }, "objects":[{ - "id":"ee27751489964515add9baac02b41d25", + "id":"1de0c4ee0d844fb984484ddbbaf13dd9", "label":"", "isContained":true, "type":"richTextPanel", @@ -391,17 +426,17 @@ "fontName":"'Applied Font Regular', 'Applied Font'", "horizontalAlignment":"left", "location":{ - "x":420, - "y":252}, + "x":430, + "y":320}, "size":{ - "width":320, - "height":62}}, + "width":250, + "height":100}}, "adaptiveStyles":{ }}], "images":{ - "normal~":"images/我的授权码(未购买)/u16.png"}}, + "normal~":"images/刷卡器获取授权码/u18.png"}}, { - "id":"e0a1849b090f4fbca1496807bd4baf98", + "id":"9da2a6afcefe4536ab2d2c5e8600893b", "label":"", "type":"buttonShape", "styleType":"buttonShape", @@ -410,15 +445,15 @@ "fontName":"'Applied Font Regular', 'Applied Font'", "horizontalAlignment":"left", "location":{ - "x":90, - "y":252}, + "x":430, + "y":430}, "size":{ - "width":260, - "height":40}}, + "width":250, + "height":80}}, "adaptiveStyles":{ }, "objects":[{ - "id":"f5998549ddd54a3498a0bc63111e3c8a", + "id":"a5322dcebf1a44e68906dc26da9f0e74", "label":"", "isContained":true, "type":"richTextPanel", @@ -428,15 +463,102 @@ "fontName":"'Applied Font Regular', 'Applied Font'", "horizontalAlignment":"left", "location":{ - "x":90, - "y":252}, + "x":430, + "y":430}, "size":{ - "width":260, - "height":40}}, + "width":250, + "height":80}}, "adaptiveStyles":{ }}], "images":{ - "normal~":"images/我的授权码(绑定验证)/u6.png"}}]}}, + "normal~":"images/刷卡器获取授权码/u20.png"}}, +{ + "id":"73867276e4404ead8528270b107a4156", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":430, + "y":530}, + "size":{ + "width":250, + "height":90}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"bffbf980c8504944bcee43724f4bd1bb", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":430, + "y":530}, + "size":{ + "width":250, + "height":90}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/刷卡器获取授权码/u22.png"}}, +{ + "id":"4049f868163f42178d19dd5f117ecd98", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":520, + "y":580}, + "size":{ + "width":70, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"bc23f8b46227459b95584207f7267232", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":520, + "y":580}, + "size":{ + "width":70, + "height":30}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 用户信息登记", + "target":{ + "targetType":"page", + "url":"用户信息登记.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true, + "images":{ + "normal~":"images/刷卡器获取授权码/u14.png"}}]}}, "masters":{ }, "objectPaths":{ @@ -468,15 +590,27 @@ "scriptId":"u12"}, "3d9f214d8d8040058bb9aef8fbdbd727":{ "scriptId":"u13"}, - "4b314a6a350f44069fa2b195dfbe095c":{ + "6085a16a236d404a8bf481a2a3c1a432":{ "scriptId":"u14"}, - "2c837d72601e43aebbfd0460d551ef6a":{ + "35d4126c600a4d1c9a005c927d2ff0ed":{ "scriptId":"u15"}, - "729ad89c7a6644669e6ba0d9516498fa":{ + "54f8aeeeb67a4496a9bd6ebf937373db":{ "scriptId":"u16"}, - "ee27751489964515add9baac02b41d25":{ + "c28f04e761154110ae53df51e0c3f578":{ "scriptId":"u17"}, - "e0a1849b090f4fbca1496807bd4baf98":{ + "670a1c57fc66473fa8e8076201e39358":{ "scriptId":"u18"}, - "f5998549ddd54a3498a0bc63111e3c8a":{ - "scriptId":"u19"}}}); \ No newline at end of file + "1de0c4ee0d844fb984484ddbbaf13dd9":{ + "scriptId":"u19"}, + "9da2a6afcefe4536ab2d2c5e8600893b":{ + "scriptId":"u20"}, + "a5322dcebf1a44e68906dc26da9f0e74":{ + "scriptId":"u21"}, + "73867276e4404ead8528270b107a4156":{ + "scriptId":"u22"}, + "bffbf980c8504944bcee43724f4bd1bb":{ + "scriptId":"u23"}, + "4049f868163f42178d19dd5f117ecd98":{ + "scriptId":"u24"}, + "bc23f8b46227459b95584207f7267232":{ + "scriptId":"u25"}}}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/styles.css" new file mode 100644 index 0000000..26db72c --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/styles.css" @@ -0,0 +1,296 @@ +body { + margin:0px; + background-image:none; + position:static; + left:auto; + width:680px; + margin-left:0; + margin-right:0; + text-align:left; +} +#base { + position:absolute; + z-index:0; +} +#u0 { + position:absolute; + left:30px; + top:20px; + width:380px; + height:744px; +} +#u0_img { + position:absolute; + left:0px; + top:0px; + width:380px; + height:744px; +} +#u1 { + position:absolute; + left:2px; + top:364px; + width:376px; + visibility:hidden; + word-wrap:break-word; +} +#u2 { + position:absolute; + left:62px; + top:163px; + width:308px; + height:13px; +} +#u2_img { + position:absolute; + left:0px; + top:0px; + width:308px; + height:13px; +} +#u3 { + position:absolute; + left:2px; + top:-2px; + width:304px; + visibility:hidden; + word-wrap:break-word; +} +#u4 { + position:absolute; + left:150px; + top:194px; + width:177px; + height:37px; +} +#u4_img { + position:absolute; + left:0px; + top:0px; + width:177px; + height:37px; +} +#u5 { + position:absolute; + left:0px; + top:0px; + width:177px; + word-wrap:break-word; +} +#u6 { + position:absolute; + left:86px; + top:260px; + width:260px; + height:40px; + text-align:left; +} +#u6_img { + position:absolute; + left:0px; + top:0px; + width:260px; + height:40px; +} +#u7 { + position:absolute; + left:2px; + top:12px; + width:256px; + word-wrap:break-word; +} +#u8 { + position:absolute; + left:90px; + top:198px; + width:30px; + height:29px; + text-align:left; +} +#u8_img { + position:absolute; + left:0px; + top:0px; + width:30px; + height:29px; +} +#u9 { + position:absolute; + left:2px; + top:6px; + width:26px; + word-wrap:break-word; +} +#u10 { + position:absolute; + left:170px; + top:377px; + width:100px; + height:30px; +} +#u10_img { + position:absolute; + left:0px; + top:0px; + width:100px; + height:30px; +} +#u11 { + position:absolute; + left:2px; + top:7px; + width:96px; + word-wrap:break-word; +} +#u12 { + position:absolute; + left:86px; + top:320px; + width:180px; + height:30px; + text-align:left; +} +#u12_img { + position:absolute; + left:0px; + top:0px; + width:180px; + height:30px; +} +#u13 { + position:absolute; + left:2px; + top:7px; + width:176px; + word-wrap:break-word; +} +#u14 { + position:absolute; + left:280px; + top:320px; + width:70px; + height:30px; +} +#u14_img { + position:absolute; + left:0px; + top:0px; + width:70px; + height:30px; +} +#u15 { + position:absolute; + left:2px; + top:7px; + width:66px; + word-wrap:break-word; +} +#u16 { + position:absolute; + left:430px; + top:260px; + width:250px; + height:40px; + text-align:left; +} +#u16_img { + position:absolute; + left:0px; + top:0px; + width:250px; + height:40px; +} +#u17 { + position:absolute; + left:2px; + top:12px; + width:246px; + word-wrap:break-word; +} +#u18 { + position:absolute; + left:430px; + top:320px; + width:250px; + height:100px; + text-align:left; +} +#u18_img { + position:absolute; + left:0px; + top:0px; + width:250px; + height:100px; +} +#u19 { + position:absolute; + left:2px; + top:18px; + width:246px; + word-wrap:break-word; +} +#u20 { + position:absolute; + left:430px; + top:430px; + width:250px; + height:80px; + text-align:left; +} +#u20_img { + position:absolute; + left:0px; + top:0px; + width:250px; + height:80px; +} +#u21 { + position:absolute; + left:2px; + top:8px; + width:246px; + word-wrap:break-word; +} +#u22 { + position:absolute; + left:430px; + top:530px; + width:250px; + height:90px; + text-align:left; +} +#u22_img { + position:absolute; + left:0px; + top:0px; + width:250px; + height:90px; +} +#u23 { + position:absolute; + left:2px; + top:5px; + width:246px; + word-wrap:break-word; +} +#u24 { + position:absolute; + left:520px; + top:580px; + width:70px; + height:30px; +} +#u24_img { + position:absolute; + left:0px; + top:0px; + width:70px; + height:30px; +} +#u25 { + position:absolute; + left:2px; + top:7px; + width:66px; + word-wrap:break-word; +} diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\345\267\262\345\210\206\351\205\215\350\256\260\345\275\225/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\345\267\262\345\210\206\351\205\215\350\256\260\345\275\225/data.js" new file mode 100644 index 0000000..83e2126 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\345\267\262\345\210\206\351\205\215\350\256\260\345\275\225/data.js" @@ -0,0 +1,266 @@ +$axure.loadCurrentPage({ + "url":"已分配记录.html", + "generationDate":new Date(1416631107484.38), + "isCanvasEnabled":false, + "variables":["OnLoadVariable"], + "page":{ + "packageId":"1db664a85c65441badd4e3b339a186b8", + "type":"Axure:Page", + "name":"已分配记录", + "notes":{ +}, + "style":{ + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "pageAlignment":"near", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "image":null, + "imageHorizontalAlignment":"near", + "imageVerticalAlignment":"near", + "imageRepeat":"auto", + "favicon":null, + "sketchFactor":"0", + "colorStyle":"appliedColor", + "fontName":"Applied Font", + "borderWidth":"0"}, + "adaptiveStyles":{ +}, + "interactionMap":{ +}, + "diagram":{ + "objects":[{ + "id":"6c05684279ab47a4bf87490560311406", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":30, + "y":20}, + "size":{ + "width":380, + "height":744}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"b7e7ccc5f7c54849bbefe7c2ae1dadc1", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":30, + "y":20}, + "size":{ + "width":380, + "height":744}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/购买授权码/u0.png"}}, +{ + "id":"891ad7159616494484f2df686ffe4cc3", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":62, + "y":163}, + "size":{ + "width":308, + "height":13}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d8594de556804259b3729795702210d5", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":62, + "y":163}, + "size":{ + "width":308, + "height":13}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/购买授权码/u2.png"}}, +{ + "id":"d7a4156fdb3846bbaa425640d3444270", + "label":"", + "type":"buttonShape", + "styleType":"h1", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "fontSize":"28px", + "location":{ + "x":166, + "y":193}, + "size":{ + "width":154, + "height":33}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"cb2266b99f7546e28e327e113f9022b2", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "fontSize":"28px", + "location":{ + "x":166, + "y":193}, + "size":{ + "width":154, + "height":33}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"b8a7383dcc9146a197619e54d26b7644", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":70, + "y":236}, + "size":{ + "width":300, + "height":134}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"455f77f1f32c4f93b45c33b08a167115", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":70, + "y":236}, + "size":{ + "width":300, + "height":134}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/已分配记录/u6.png"}}, +{ + "id":"30be1fcc331c48d08086721d819227d9", + "label":"", + "type":"buttonShape", + "styleType":"h1", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "fontSize":"14px", + "location":{ + "x":70, + "y":203}, + "size":{ + "width":60, + "height":27}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"acdd890abe084ffba40f0fa8fdc31a28", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "fontSize":"14px", + "location":{ + "x":70, + "y":203}, + "size":{ + "width":60, + "height":27}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 授权码出售", + "target":{ + "targetType":"page", + "url":"授权码出售.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true, + "images":{ + "normal~":"resources/images/transparent.gif"}}]}}, + "masters":{ +}, + "objectPaths":{ + "6c05684279ab47a4bf87490560311406":{ + "scriptId":"u0"}, + "b7e7ccc5f7c54849bbefe7c2ae1dadc1":{ + "scriptId":"u1"}, + "891ad7159616494484f2df686ffe4cc3":{ + "scriptId":"u2"}, + "d8594de556804259b3729795702210d5":{ + "scriptId":"u3"}, + "d7a4156fdb3846bbaa425640d3444270":{ + "scriptId":"u4"}, + "cb2266b99f7546e28e327e113f9022b2":{ + "scriptId":"u5"}, + "b8a7383dcc9146a197619e54d26b7644":{ + "scriptId":"u6"}, + "455f77f1f32c4f93b45c33b08a167115":{ + "scriptId":"u7"}, + "30be1fcc331c48d08086721d819227d9":{ + "scriptId":"u8"}, + "acdd890abe084ffba40f0fa8fdc31a28":{ + "scriptId":"u9"}}}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\345\267\262\345\210\206\351\205\215\350\256\260\345\275\225/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\345\267\262\345\210\206\351\205\215\350\256\260\345\275\225/styles.css" new file mode 100644 index 0000000..dcf6755 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\345\267\262\345\210\206\351\205\215\350\256\260\345\275\225/styles.css" @@ -0,0 +1,124 @@ +body { + margin:0px; + background-image:none; + position:static; + left:auto; + width:410px; + margin-left:0; + margin-right:0; + text-align:left; +} +#base { + position:absolute; + z-index:0; +} +#u0 { + position:absolute; + left:30px; + top:20px; + width:380px; + height:744px; +} +#u0_img { + position:absolute; + left:0px; + top:0px; + width:380px; + height:744px; +} +#u1 { + position:absolute; + left:2px; + top:364px; + width:376px; + visibility:hidden; + word-wrap:break-word; +} +#u2 { + position:absolute; + left:62px; + top:163px; + width:308px; + height:13px; +} +#u2_img { + position:absolute; + left:0px; + top:0px; + width:308px; + height:13px; +} +#u3 { + position:absolute; + left:2px; + top:-2px; + width:304px; + visibility:hidden; + word-wrap:break-word; +} +#u4 { + position:absolute; + left:166px; + top:193px; + width:154px; + height:33px; + font-size:28px; +} +#u4_img { + position:absolute; + left:0px; + top:0px; + width:154px; + height:33px; +} +#u5 { + position:absolute; + left:0px; + top:0px; + width:154px; + word-wrap:break-word; +} +#u6 { + position:absolute; + left:70px; + top:236px; + width:300px; + height:134px; + text-align:left; +} +#u6_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:134px; +} +#u7 { + position:absolute; + left:2px; + top:11px; + width:296px; + word-wrap:break-word; +} +#u8 { + position:absolute; + left:70px; + top:203px; + width:60px; + height:27px; + font-size:14px; +} +#u8_img { + position:absolute; + left:0px; + top:0px; + width:60px; + height:27px; +} +#u9 { + position:absolute; + left:0px; + top:0px; + width:60px; + word-wrap:break-word; +} diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201/data.js" new file mode 100644 index 0000000..b425dd9 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201/data.js" @@ -0,0 +1,301 @@ +$axure.loadCurrentPage({ + "url":"我的授权码.html", + "generationDate":new Date(1416631106703.13), + "isCanvasEnabled":false, + "variables":["OnLoadVariable"], + "page":{ + "packageId":"54dc0a273ca14ae7be3fb97c7698a77b", + "type":"Axure:Page", + "name":"我的授权码", + "notes":{ +}, + "style":{ + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "pageAlignment":"near", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "image":null, + "imageHorizontalAlignment":"near", + "imageVerticalAlignment":"near", + "imageRepeat":"auto", + "favicon":null, + "sketchFactor":"0", + "colorStyle":"appliedColor", + "fontName":"Applied Font", + "borderWidth":"0"}, + "adaptiveStyles":{ +}, + "interactionMap":{ +}, + "diagram":{ + "objects":[{ + "id":"dd5a9da2b3e6420ebdd9b0d99f56c911", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":30, + "y":20}, + "size":{ + "width":380, + "height":744}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"11c34f3d5fd84340a25bf7ccb5101199", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":30, + "y":20}, + "size":{ + "width":380, + "height":744}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/购买授权码/u0.png"}}, +{ + "id":"7bc8d26a9edc485e80bea32115963ff0", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":62, + "y":163}, + "size":{ + "width":308, + "height":13}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c0f4aa884d194b5b895439a54eb4f2dc", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":62, + "y":163}, + "size":{ + "width":308, + "height":13}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/购买授权码/u2.png"}}, +{ + "id":"c70317f3bea7496a80ebe93f15d58f0a", + "label":"", + "type":"buttonShape", + "styleType":"h1", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":143, + "y":194}, + "size":{ + "width":177, + "height":37}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"175a0e558c3643df8da1f4bfde2c42a1", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":143, + "y":194}, + "size":{ + "width":177, + "height":37}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"4c26824c71a54c6288265cdc0452896f", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":90, + "y":250}, + "size":{ + "width":260, + "height":70}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"0595aa2ebcda4fc381b1494a75b7bd86", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":90, + "y":250}, + "size":{ + "width":260, + "height":70}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我的授权码/u6.png"}}, +{ + "id":"a9cb2ac2cc0c4f5c8c3f5e206a3f5fe9", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":198}, + "size":{ + "width":30, + "height":29}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"82f288f17cd445d7a52618ebd1dc6caf", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":198}, + "size":{ + "width":30, + "height":29}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 购买授权码", + "target":{ + "targetType":"page", + "url":"购买授权码.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true, + "images":{ + "normal~":"images/购买授权码/u21.png"}}, +{ + "id":"c4b6abbe3b674e6da15bf5dd1f79b2f7", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":420, + "y":265}, + "size":{ + "width":300, + "height":40}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"036b05867bc642be975a80886a7253ea", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":420, + "y":265}, + "size":{ + "width":300, + "height":40}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/购买授权码/u14.png"}}]}}, + "masters":{ +}, + "objectPaths":{ + "dd5a9da2b3e6420ebdd9b0d99f56c911":{ + "scriptId":"u0"}, + "11c34f3d5fd84340a25bf7ccb5101199":{ + "scriptId":"u1"}, + "7bc8d26a9edc485e80bea32115963ff0":{ + "scriptId":"u2"}, + "c0f4aa884d194b5b895439a54eb4f2dc":{ + "scriptId":"u3"}, + "c70317f3bea7496a80ebe93f15d58f0a":{ + "scriptId":"u4"}, + "175a0e558c3643df8da1f4bfde2c42a1":{ + "scriptId":"u5"}, + "4c26824c71a54c6288265cdc0452896f":{ + "scriptId":"u6"}, + "0595aa2ebcda4fc381b1494a75b7bd86":{ + "scriptId":"u7"}, + "a9cb2ac2cc0c4f5c8c3f5e206a3f5fe9":{ + "scriptId":"u8"}, + "82f288f17cd445d7a52618ebd1dc6caf":{ + "scriptId":"u9"}, + "c4b6abbe3b674e6da15bf5dd1f79b2f7":{ + "scriptId":"u10"}, + "036b05867bc642be975a80886a7253ea":{ + "scriptId":"u11"}}}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201/styles.css" new file mode 100644 index 0000000..2bcd924 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201/styles.css" @@ -0,0 +1,143 @@ +body { + margin:0px; + background-image:none; + position:static; + left:auto; + width:720px; + margin-left:0; + margin-right:0; + text-align:left; +} +#base { + position:absolute; + z-index:0; +} +#u0 { + position:absolute; + left:30px; + top:20px; + width:380px; + height:744px; +} +#u0_img { + position:absolute; + left:0px; + top:0px; + width:380px; + height:744px; +} +#u1 { + position:absolute; + left:2px; + top:364px; + width:376px; + visibility:hidden; + word-wrap:break-word; +} +#u2 { + position:absolute; + left:62px; + top:163px; + width:308px; + height:13px; +} +#u2_img { + position:absolute; + left:0px; + top:0px; + width:308px; + height:13px; +} +#u3 { + position:absolute; + left:2px; + top:-2px; + width:304px; + visibility:hidden; + word-wrap:break-word; +} +#u4 { + position:absolute; + left:143px; + top:194px; + width:177px; + height:37px; +} +#u4_img { + position:absolute; + left:0px; + top:0px; + width:177px; + height:37px; +} +#u5 { + position:absolute; + left:0px; + top:0px; + width:177px; + word-wrap:break-word; +} +#u6 { + position:absolute; + left:90px; + top:250px; + width:260px; + height:70px; +} +#u6_img { + position:absolute; + left:0px; + top:0px; + width:260px; + height:70px; +} +#u7 { + position:absolute; + left:2px; + top:27px; + width:256px; + word-wrap:break-word; +} +#u8 { + position:absolute; + left:90px; + top:198px; + width:30px; + height:29px; + text-align:left; +} +#u8_img { + position:absolute; + left:0px; + top:0px; + width:30px; + height:29px; +} +#u9 { + position:absolute; + left:2px; + top:6px; + width:26px; + word-wrap:break-word; +} +#u10 { + position:absolute; + left:420px; + top:265px; + width:300px; + height:40px; +} +#u10_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:40px; +} +#u11 { + position:absolute; + left:2px; + top:12px; + width:296px; + word-wrap:break-word; +} diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\345\267\262\347\273\221\345\256\232\350\256\276\345\244\207\357\274\211/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\345\267\262\347\273\221\345\256\232\350\256\276\345\244\207\357\274\211/data.js" index 30f3581..e222e83 100644 --- "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\345\267\262\347\273\221\345\256\232\350\256\276\345\244\207\357\274\211/data.js" +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\345\267\262\347\273\221\345\256\232\350\256\276\345\244\207\357\274\211/data.js" @@ -1,6 +1,6 @@ $axure.loadCurrentPage({ "url":"我的授权码(已绑定设备).html", - "generationDate":new Date(1413868503625), + "generationDate":new Date(1416631107703.13), "isCanvasEnabled":false, "variables":["OnLoadVariable"], "page":{ @@ -238,7 +238,7 @@ "linkType":"current"}]}]}}, "tabbable":true, "images":{ - "normal~":"images/购买授权码/u23.png"}}, + "normal~":"images/购买授权码/u21.png"}}, { "id":"d4225a64a0564d669814c64042af52ef", "label":"", diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\346\234\252\347\273\221\345\256\232\350\256\276\345\244\207\357\274\211/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\346\234\252\347\273\221\345\256\232\350\256\276\345\244\207\357\274\211/data.js" index e843081..07133ba 100644 --- "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\346\234\252\347\273\221\345\256\232\350\256\276\345\244\207\357\274\211/data.js" +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\346\234\252\347\273\221\345\256\232\350\256\276\345\244\207\357\274\211/data.js" @@ -1,6 +1,6 @@ $axure.loadCurrentPage({ "url":"我的授权码(未绑定设备).html", - "generationDate":new Date(1413868503671.88), + "generationDate":new Date(1416631107734.38), "isCanvasEnabled":false, "variables":["OnLoadVariable"], "page":{ @@ -238,7 +238,7 @@ "linkType":"current"}]}]}}, "tabbable":true, "images":{ - "normal~":"images/购买授权码/u23.png"}}, + "normal~":"images/购买授权码/u21.png"}}, { "id":"8fef253961ec4e40aa2b4815a8cd754e", "label":"", diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\347\273\221\345\256\232\351\252\214\350\257\201\357\274\211/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\347\273\221\345\256\232\351\252\214\350\257\201\357\274\211/data.js" index 2cd1485..419689b 100644 --- "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\347\273\221\345\256\232\351\252\214\350\257\201\357\274\211/data.js" +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\347\273\221\345\256\232\351\252\214\350\257\201\357\274\211/data.js" @@ -1,6 +1,6 @@ $axure.loadCurrentPage({ "url":"我的授权码(绑定验证).html", - "generationDate":new Date(1413868503718.75), + "generationDate":new Date(1416631107796.88), "isCanvasEnabled":false, "variables":["OnLoadVariable"], "page":{ @@ -186,7 +186,7 @@ "adaptiveStyles":{ }}], "images":{ - "normal~":"images/我的授权码(绑定验证)/u6.png"}}, + "normal~":"images/刷卡器获取授权码/u6.png"}}, { "id":"54326ae72b324365ac15160bb5a0f332", "label":"", @@ -238,7 +238,7 @@ "linkType":"current"}]}]}}, "tabbable":true, "images":{ - "normal~":"images/购买授权码/u23.png"}}, + "normal~":"images/购买授权码/u21.png"}}, { "id":"a32653e4988a4213bc8667242d70ae80", "label":"", diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\227\240\346\216\210\346\235\203\347\240\201\357\274\211/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\227\240\346\216\210\346\235\203\347\240\201\357\274\211/data.js" index abd5469..e11c0b7 100644 --- "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\227\240\346\216\210\346\235\203\347\240\201\357\274\211/data.js" +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\227\240\346\216\210\346\235\203\347\240\201\357\274\211/data.js" @@ -1,6 +1,6 @@ $axure.loadCurrentPage({ "url":"授权码使用界面(无授权码).html", - "generationDate":new Date(1413868504062.5), + "generationDate":new Date(1416631107640.63), "isCanvasEnabled":false, "variables":["OnLoadVariable"], "page":{ @@ -349,7 +349,7 @@ "y":310}, "size":{ "width":260, - "height":70}}, + "height":117}}, "adaptiveStyles":{ }, "objects":[{ @@ -367,7 +367,7 @@ "y":310}, "size":{ "width":260, - "height":70}}, + "height":117}}, "adaptiveStyles":{ }}], "images":{ @@ -381,10 +381,10 @@ "style":{ "fontName":"'Applied Font Regular', 'Applied Font'", "location":{ - "x":70, + "x":180, "y":351}, "size":{ - "width":140, + "width":80, "height":29}}, "adaptiveStyles":{ }, @@ -398,10 +398,10 @@ "style":{ "fontName":"'Applied Font Regular', 'Applied Font'", "location":{ - "x":70, + "x":180, "y":351}, "size":{ - "width":140, + "width":80, "height":29}}, "adaptiveStyles":{ }}], @@ -431,10 +431,10 @@ "style":{ "fontName":"'Applied Font Regular', 'Applied Font'", "location":{ - "x":230, + "x":280, "y":351}, "size":{ - "width":140, + "width":90, "height":29}}, "adaptiveStyles":{ }, @@ -448,10 +448,10 @@ "style":{ "fontName":"'Applied Font Regular', 'Applied Font'", "location":{ - "x":230, + "x":280, "y":351}, "size":{ - "width":140, + "width":90, "height":29}}, "adaptiveStyles":{ }}], @@ -471,7 +471,166 @@ "linkType":"current"}]}]}}, "tabbable":true, "images":{ - "normal~":"images/授权码使用界面(无授权码)/u18.png"}}]}}, + "normal~":"images/授权码使用界面(无授权码)/u20.png"}}, +{ + "id":"18a977c9bc5e4b5b930d4150c8b147d4", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":70, + "y":351}, + "size":{ + "width":80, + "height":29}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"5c11088769b941c1a536e7169f132790", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":70, + "y":351}, + "size":{ + "width":80, + "height":29}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/授权码使用界面(无授权码)/u18.png"}}, +{ + "id":"97d1272e47144bed818a3ff82ae9fb15", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":435, + "y":427}, + "size":{ + "width":250, + "height":90}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"7141747da0884486a5c0ffbb391c8404", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":435, + "y":427}, + "size":{ + "width":250, + "height":90}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/刷卡器获取授权码/u22.png"}}, +{ + "id":"662c758c5ddb46cb9197be1682403a8c", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":525, + "y":477}, + "size":{ + "width":70, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"905bbab757934520a813d0b63a9bf230", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":525, + "y":477}, + "size":{ + "width":70, + "height":30}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 用户信息登记", + "target":{ + "targetType":"page", + "url":"用户信息登记.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true, + "images":{ + "normal~":"images/刷卡器获取授权码/u14.png"}}, +{ + "id":"9d699dc2889f41159588b92591a03e8c", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":430, + "y":517}, + "size":{ + "width":260, + "height":83}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"3b6f2483d5ca4399af6954b5e5ec3850", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":430, + "y":517}, + "size":{ + "width":260, + "height":83}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/授权码使用界面(无授权码)/u28.png"}}]}}, "masters":{ }, "objectPaths":{ @@ -518,4 +677,20 @@ "61269b0b1c4a4e3e96160cdcd7065051":{ "scriptId":"u20"}, "35dda7f88bac4e538d7d924830388fe1":{ - "scriptId":"u21"}}}); \ No newline at end of file + "scriptId":"u21"}, + "18a977c9bc5e4b5b930d4150c8b147d4":{ + "scriptId":"u22"}, + "5c11088769b941c1a536e7169f132790":{ + "scriptId":"u23"}, + "97d1272e47144bed818a3ff82ae9fb15":{ + "scriptId":"u24"}, + "7141747da0884486a5c0ffbb391c8404":{ + "scriptId":"u25"}, + "662c758c5ddb46cb9197be1682403a8c":{ + "scriptId":"u26"}, + "905bbab757934520a813d0b63a9bf230":{ + "scriptId":"u27"}, + "9d699dc2889f41159588b92591a03e8c":{ + "scriptId":"u28"}, + "3b6f2483d5ca4399af6954b5e5ec3850":{ + "scriptId":"u29"}}}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\227\240\346\216\210\346\235\203\347\240\201\357\274\211/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\227\240\346\216\210\346\235\203\347\240\201\357\274\211/styles.css" index c94f926..2e8b79a 100644 --- "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\227\240\346\216\210\346\235\203\347\240\201\357\274\211/styles.css" +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\227\240\346\216\210\346\235\203\347\240\201\357\274\211/styles.css" @@ -192,7 +192,7 @@ left:430px; top:310px; width:260px; - height:70px; + height:117px; text-align:left; } #u16_img { @@ -200,54 +200,140 @@ left:0px; top:0px; width:260px; - height:70px; + height:117px; } #u17 { position:absolute; left:2px; - top:11px; + top:18px; width:256px; word-wrap:break-word; } #u18 { position:absolute; - left:70px; + left:180px; top:351px; - width:140px; + width:80px; height:29px; } #u18_img { position:absolute; left:0px; top:0px; - width:140px; + width:80px; height:29px; } #u19 { position:absolute; left:2px; top:6px; - width:136px; + width:76px; word-wrap:break-word; } #u20 { position:absolute; - left:230px; + left:280px; top:351px; - width:140px; + width:90px; height:29px; } #u20_img { position:absolute; left:0px; top:0px; - width:140px; + width:90px; height:29px; } #u21 { position:absolute; left:2px; top:6px; - width:136px; + width:86px; + word-wrap:break-word; +} +#u22 { + position:absolute; + left:70px; + top:351px; + width:80px; + height:29px; +} +#u22_img { + position:absolute; + left:0px; + top:0px; + width:80px; + height:29px; +} +#u23 { + position:absolute; + left:2px; + top:6px; + width:76px; + word-wrap:break-word; +} +#u24 { + position:absolute; + left:435px; + top:427px; + width:250px; + height:90px; + text-align:left; +} +#u24_img { + position:absolute; + left:0px; + top:0px; + width:250px; + height:90px; +} +#u25 { + position:absolute; + left:2px; + top:5px; + width:246px; + word-wrap:break-word; +} +#u26 { + position:absolute; + left:525px; + top:477px; + width:70px; + height:30px; +} +#u26_img { + position:absolute; + left:0px; + top:0px; + width:70px; + height:30px; +} +#u27 { + position:absolute; + left:2px; + top:7px; + width:66px; + word-wrap:break-word; +} +#u28 { + position:absolute; + left:430px; + top:517px; + width:260px; + height:83px; + text-align:left; +} +#u28_img { + position:absolute; + left:0px; + top:0px; + width:260px; + height:83px; +} +#u29 { + position:absolute; + left:2px; + top:18px; + width:256px; word-wrap:break-word; } diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\234\211\346\216\210\346\235\203\347\240\201\357\274\211/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\234\211\346\216\210\346\235\203\347\240\201\357\274\211/data.js" index 7894329..f6c3065 100644 --- "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\234\211\346\216\210\346\235\203\347\240\201\357\274\211/data.js" +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\234\211\346\216\210\346\235\203\347\240\201\357\274\211/data.js" @@ -1,6 +1,6 @@ $axure.loadCurrentPage({ "url":"授权码使用界面(有授权码).html", - "generationDate":new Date(1413868504015.63), + "generationDate":new Date(1416631107546.88), "isCanvasEnabled":false, "variables":["OnLoadVariable"], "page":{ @@ -346,7 +346,7 @@ "horizontalAlignment":"left", "location":{ "x":430, - "y":350}, + "y":340}, "size":{ "width":260, "height":46}}, @@ -364,14 +364,14 @@ "horizontalAlignment":"left", "location":{ "x":430, - "y":350}, + "y":340}, "size":{ "width":260, "height":46}}, "adaptiveStyles":{ }}], "images":{ - "normal~":"images/购买授权码/u16.png"}}]}}, + "normal~":"images/授权码使用界面(有授权码)/u16.png"}}]}}, "masters":{ }, "objectPaths":{ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\234\211\346\216\210\346\235\203\347\240\201\357\274\211/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\234\211\346\216\210\346\235\203\347\240\201\357\274\211/styles.css" index 27b1e91..6431df3 100644 --- "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\234\211\346\216\210\346\235\203\347\240\201\357\274\211/styles.css" +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\234\211\346\216\210\346\235\203\347\240\201\357\274\211/styles.css" @@ -190,7 +190,7 @@ #u16 { position:absolute; left:430px; - top:350px; + top:340px; width:260px; height:46px; text-align:left; diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\216\210\346\235\203\347\240\201\345\207\272\345\224\256/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\216\210\346\235\203\347\240\201\345\207\272\345\224\256/data.js" new file mode 100644 index 0000000..b6d0d2b --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\216\210\346\235\203\347\240\201\345\207\272\345\224\256/data.js" @@ -0,0 +1,601 @@ +$axure.loadCurrentPage({ + "url":"授权码出售.html", + "generationDate":new Date(1416631107453.13), + "isCanvasEnabled":false, + "variables":["OnLoadVariable"], + "page":{ + "packageId":"7b47b2c5c018492b81d1832e2c2b66c0", + "type":"Axure:Page", + "name":"授权码出售", + "notes":{ +}, + "style":{ + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "pageAlignment":"near", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "image":null, + "imageHorizontalAlignment":"near", + "imageVerticalAlignment":"near", + "imageRepeat":"auto", + "favicon":null, + "sketchFactor":"0", + "colorStyle":"appliedColor", + "fontName":"Applied Font", + "borderWidth":"0"}, + "adaptiveStyles":{ +}, + "interactionMap":{ +}, + "diagram":{ + "objects":[{ + "id":"5a82cffa0c714609ab4e5f6a59dad51c", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":30, + "y":20}, + "size":{ + "width":380, + "height":744}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ae8a8fd7edae42099767dba803d3de9c", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":30, + "y":20}, + "size":{ + "width":380, + "height":744}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/购买授权码/u0.png"}}, +{ + "id":"a3dc4ba907884c03be379030f5675bf8", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":62, + "y":163}, + "size":{ + "width":308, + "height":13}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a47f119b7aac4ebc89375dc0956ad290", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":62, + "y":163}, + "size":{ + "width":308, + "height":13}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/购买授权码/u2.png"}}, +{ + "id":"2ff2dd873ca04ebb8dbc3d0eb571ee92", + "label":"", + "type":"buttonShape", + "styleType":"h1", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "fontSize":"28px", + "location":{ + "x":156, + "y":193}, + "size":{ + "width":154, + "height":33}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c576667327ff4539a54fc192676f5947", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "fontSize":"28px", + "location":{ + "x":156, + "y":193}, + "size":{ + "width":154, + "height":33}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"9e17a4ee6c584cd187bc7d311136056e", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":70, + "y":320}, + "size":{ + "width":300, + "height":170}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ba03bbf3c90c442d8d01e94f6c259978", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":70, + "y":320}, + "size":{ + "width":300, + "height":170}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/授权码出售/u6.png"}}, +{ + "id":"142f349c982f401fa4ac127e6238710d", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":70, + "y":250}, + "size":{ + "width":300, + "height":37}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"05b0ad70df054e9ab3cbe672d602fe8a", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":70, + "y":250}, + "size":{ + "width":300, + "height":37}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/授权码出售/u8.png"}}, +{ + "id":"0634da42dce540d197f0d540e2ac4f34", + "label":"", + "type":"buttonShape", + "styleType":"h1", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "fontSize":"14px", + "location":{ + "x":70, + "y":203}, + "size":{ + "width":60, + "height":27}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"fa92a2ecbd1842f896d2513aab3e0532", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "fontSize":"14px", + "location":{ + "x":70, + "y":203}, + "size":{ + "width":60, + "height":27}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 代理商分配授权码", + "target":{ + "targetType":"page", + "url":"代理商分配授权码.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true, + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"86e02e0d5de245a5ab81e6363aa15294", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":310, + "y":197.5}, + "size":{ + "width":70, + "height":28}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"37bcf89629384568bbf7fdc97e64fcdc", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":310, + "y":197.5}, + "size":{ + "width":70, + "height":28}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 已分配记录", + "target":{ + "targetType":"page", + "url":"已分配记录.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true, + "images":{ + "normal~":"images/授权码出售/u12.png"}}, +{ + "id":"9e677bce76884373a4e76c55ae374be6", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":161, + "y":391}, + "size":{ + "width":110, + "height":23}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"4b137109fb134e73b9e146bdf8834bfa", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":161, + "y":391}, + "size":{ + "width":110, + "height":23}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/授权码出售/u14.png"}}, +{ + "id":"2fdf36cd04a548dc9d6b5b12cd4e7059", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":161, + "y":424}, + "size":{ + "width":110, + "height":23}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"211cb5d7e2434208afce8ae81bc76eda", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":161, + "y":424}, + "size":{ + "width":110, + "height":23}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/授权码出售/u14.png"}}, +{ + "id":"426321dcebb2461ebd1773d865f286c8", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":161, + "y":457}, + "size":{ + "width":110, + "height":23}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"fd47e4e95ca143939964d56ed9ee3ac5", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":161, + "y":457}, + "size":{ + "width":110, + "height":23}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/授权码出售/u14.png"}}, +{ + "id":"032bbcb1e653404bb88bd3623d236041", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":300, + "y":391}, + "size":{ + "width":50, + "height":23}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"aaaf83fdc28f4d7e9072de958124f304", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":300, + "y":391}, + "size":{ + "width":50, + "height":23}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/授权码出售/u20.png"}}, +{ + "id":"0fcc068b7e0c4fddbbcc30856881e9f1", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":300, + "y":424}, + "size":{ + "width":50, + "height":23}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"4081ea64f57947cba178976a3112a383", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":300, + "y":424}, + "size":{ + "width":50, + "height":23}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/授权码出售/u20.png"}}, +{ + "id":"f8f5e9a498e54b3d986a489eba958a74", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":300, + "y":457}, + "size":{ + "width":50, + "height":23}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"5d23072c19224cf2b78ceaff641df0b6", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":300, + "y":457}, + "size":{ + "width":50, + "height":23}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/授权码出售/u20.png"}}]}}, + "masters":{ +}, + "objectPaths":{ + "5a82cffa0c714609ab4e5f6a59dad51c":{ + "scriptId":"u0"}, + "ae8a8fd7edae42099767dba803d3de9c":{ + "scriptId":"u1"}, + "a3dc4ba907884c03be379030f5675bf8":{ + "scriptId":"u2"}, + "a47f119b7aac4ebc89375dc0956ad290":{ + "scriptId":"u3"}, + "2ff2dd873ca04ebb8dbc3d0eb571ee92":{ + "scriptId":"u4"}, + "c576667327ff4539a54fc192676f5947":{ + "scriptId":"u5"}, + "9e17a4ee6c584cd187bc7d311136056e":{ + "scriptId":"u6"}, + "ba03bbf3c90c442d8d01e94f6c259978":{ + "scriptId":"u7"}, + "142f349c982f401fa4ac127e6238710d":{ + "scriptId":"u8"}, + "05b0ad70df054e9ab3cbe672d602fe8a":{ + "scriptId":"u9"}, + "0634da42dce540d197f0d540e2ac4f34":{ + "scriptId":"u10"}, + "fa92a2ecbd1842f896d2513aab3e0532":{ + "scriptId":"u11"}, + "86e02e0d5de245a5ab81e6363aa15294":{ + "scriptId":"u12"}, + "37bcf89629384568bbf7fdc97e64fcdc":{ + "scriptId":"u13"}, + "9e677bce76884373a4e76c55ae374be6":{ + "scriptId":"u14"}, + "4b137109fb134e73b9e146bdf8834bfa":{ + "scriptId":"u15"}, + "2fdf36cd04a548dc9d6b5b12cd4e7059":{ + "scriptId":"u16"}, + "211cb5d7e2434208afce8ae81bc76eda":{ + "scriptId":"u17"}, + "426321dcebb2461ebd1773d865f286c8":{ + "scriptId":"u18"}, + "fd47e4e95ca143939964d56ed9ee3ac5":{ + "scriptId":"u19"}, + "032bbcb1e653404bb88bd3623d236041":{ + "scriptId":"u20"}, + "aaaf83fdc28f4d7e9072de958124f304":{ + "scriptId":"u21"}, + "0fcc068b7e0c4fddbbcc30856881e9f1":{ + "scriptId":"u22"}, + "4081ea64f57947cba178976a3112a383":{ + "scriptId":"u23"}, + "f8f5e9a498e54b3d986a489eba958a74":{ + "scriptId":"u24"}, + "5d23072c19224cf2b78ceaff641df0b6":{ + "scriptId":"u25"}}}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\216\210\346\235\203\347\240\201\345\207\272\345\224\256/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\216\210\346\235\203\347\240\201\345\207\272\345\224\256/styles.css" new file mode 100644 index 0000000..df4a2ee --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\216\210\346\235\203\347\240\201\345\207\272\345\224\256/styles.css" @@ -0,0 +1,299 @@ +body { + margin:0px; + background-image:none; + position:static; + left:auto; + width:410px; + margin-left:0; + margin-right:0; + text-align:left; +} +#base { + position:absolute; + z-index:0; +} +#u0 { + position:absolute; + left:30px; + top:20px; + width:380px; + height:744px; +} +#u0_img { + position:absolute; + left:0px; + top:0px; + width:380px; + height:744px; +} +#u1 { + position:absolute; + left:2px; + top:364px; + width:376px; + visibility:hidden; + word-wrap:break-word; +} +#u2 { + position:absolute; + left:62px; + top:163px; + width:308px; + height:13px; +} +#u2_img { + position:absolute; + left:0px; + top:0px; + width:308px; + height:13px; +} +#u3 { + position:absolute; + left:2px; + top:-2px; + width:304px; + visibility:hidden; + word-wrap:break-word; +} +#u4 { + position:absolute; + left:156px; + top:193px; + width:154px; + height:33px; + font-size:28px; +} +#u4_img { + position:absolute; + left:0px; + top:0px; + width:154px; + height:33px; +} +#u5 { + position:absolute; + left:0px; + top:0px; + width:154px; + word-wrap:break-word; +} +#u6 { + position:absolute; + left:70px; + top:320px; + width:300px; + height:170px; +} +#u6_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:170px; +} +#u7 { + position:absolute; + left:2px; + top:13px; + width:296px; + word-wrap:break-word; +} +#u8 { + position:absolute; + left:70px; + top:250px; + width:300px; + height:37px; + text-align:left; +} +#u8_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:37px; +} +#u9 { + position:absolute; + left:2px; + top:10px; + width:296px; + word-wrap:break-word; +} +#u10 { + position:absolute; + left:70px; + top:203px; + width:60px; + height:27px; + font-size:14px; +} +#u10_img { + position:absolute; + left:0px; + top:0px; + width:60px; + height:27px; +} +#u11 { + position:absolute; + left:0px; + top:0px; + width:60px; + word-wrap:break-word; +} +#u12 { + position:absolute; + left:310px; + top:198px; + width:70px; + height:28px; + text-align:left; +} +#u12_img { + position:absolute; + left:0px; + top:0px; + width:70px; + height:28px; +} +#u13 { + position:absolute; + left:2px; + top:6px; + width:66px; + word-wrap:break-word; +} +#u14 { + position:absolute; + left:161px; + top:391px; + width:110px; + height:23px; + text-align:left; +} +#u14_img { + position:absolute; + left:0px; + top:0px; + width:110px; + height:23px; +} +#u15 { + position:absolute; + left:2px; + top:4px; + width:106px; + visibility:hidden; + word-wrap:break-word; +} +#u16 { + position:absolute; + left:161px; + top:424px; + width:110px; + height:23px; + text-align:left; +} +#u16_img { + position:absolute; + left:0px; + top:0px; + width:110px; + height:23px; +} +#u17 { + position:absolute; + left:2px; + top:4px; + width:106px; + visibility:hidden; + word-wrap:break-word; +} +#u18 { + position:absolute; + left:161px; + top:457px; + width:110px; + height:23px; + text-align:left; +} +#u18_img { + position:absolute; + left:0px; + top:0px; + width:110px; + height:23px; +} +#u19 { + position:absolute; + left:2px; + top:4px; + width:106px; + visibility:hidden; + word-wrap:break-word; +} +#u20 { + position:absolute; + left:300px; + top:391px; + width:50px; + height:23px; +} +#u20_img { + position:absolute; + left:0px; + top:0px; + width:50px; + height:23px; +} +#u21 { + position:absolute; + left:2px; + top:4px; + width:46px; + word-wrap:break-word; +} +#u22 { + position:absolute; + left:300px; + top:424px; + width:50px; + height:23px; +} +#u22_img { + position:absolute; + left:0px; + top:0px; + width:50px; + height:23px; +} +#u23 { + position:absolute; + left:2px; + top:4px; + width:46px; + word-wrap:break-word; +} +#u24 { + position:absolute; + left:300px; + top:457px; + width:50px; + height:23px; +} +#u24_img { + position:absolute; + left:0px; + top:0px; + width:50px; + height:23px; +} +#u25 { + position:absolute; + left:2px; + top:4px; + width:46px; + word-wrap:break-word; +} diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\216\210\346\235\203\347\240\201\347\273\221\345\256\232\350\256\276\345\244\207\357\274\210\346\232\202\346\227\266\345\272\237\345\274\203\357\274\211/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\216\210\346\235\203\347\240\201\347\273\221\345\256\232\350\256\276\345\244\207\357\274\210\346\232\202\346\227\266\345\272\237\345\274\203\357\274\211/data.js" new file mode 100644 index 0000000..31f2d6d --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\216\210\346\235\203\347\240\201\347\273\221\345\256\232\350\256\276\345\244\207\357\274\210\346\232\202\346\227\266\345\272\237\345\274\203\357\274\211/data.js" @@ -0,0 +1,36 @@ +$axure.loadCurrentPage({ + "url":"授权码绑定设备(暂时废弃).html", + "generationDate":new Date(1416631107671.88), + "isCanvasEnabled":false, + "variables":["OnLoadVariable"], + "page":{ + "packageId":"c8e8b43008e04eacb61ee6e11c6e823b", + "type":"Axure:Page", + "name":"授权码绑定设备(暂时废弃)", + "notes":{ +}, + "style":{ + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "pageAlignment":"near", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "image":null, + "imageHorizontalAlignment":"near", + "imageVerticalAlignment":"near", + "imageRepeat":"auto", + "favicon":null, + "sketchFactor":"0", + "colorStyle":"appliedColor", + "fontName":"Applied Font", + "borderWidth":"0"}, + "adaptiveStyles":{ +}, + "interactionMap":{ +}, + "diagram":{ + "objects":[]}}, + "masters":{ +}, + "objectPaths":{ +}}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\216\210\346\235\203\347\240\201\347\273\221\345\256\232\350\256\276\345\244\207\357\274\210\346\232\202\346\227\266\345\272\237\345\274\203\357\274\211/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\216\210\346\235\203\347\240\201\347\273\221\345\256\232\350\256\276\345\244\207\357\274\210\346\232\202\346\227\266\345\272\237\345\274\203\357\274\211/styles.css" new file mode 100644 index 0000000..59a81a5 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\216\210\346\235\203\347\240\201\347\273\221\345\256\232\350\256\276\345\244\207\357\274\210\346\232\202\346\227\266\345\272\237\345\274\203\357\274\211/styles.css" @@ -0,0 +1,14 @@ +body { + margin:0px; + background-image:none; + position:static; + left:auto; + width:0px; + margin-left:0; + margin-right:0; + text-align:left; +} +#base { + position:absolute; + z-index:0; +} diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\224\266\351\223\266\345\217\260\344\273\230\346\254\276/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\224\266\351\223\266\345\217\260\344\273\230\346\254\276/data.js" index e68ff93..a6e07a5 100644 --- "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\224\266\351\223\266\345\217\260\344\273\230\346\254\276/data.js" +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\224\266\351\223\266\345\217\260\344\273\230\346\254\276/data.js" @@ -1,6 +1,6 @@ $axure.loadCurrentPage({ "url":"收银台付款.html", - "generationDate":new Date(1413868503859.38), + "generationDate":new Date(1416631106937.5), "isCanvasEnabled":false, "variables":["OnLoadVariable"], "page":{ @@ -201,7 +201,7 @@ "linkType":"current"}]}]}}, "tabbable":true, "images":{ - "normal~":"images/我的授权码(绑定验证)/u6.png"}}, + "normal~":"images/刷卡器获取授权码/u6.png"}}, { "id":"3ab43b21a8e646289cfe73dde2a29c9b", "label":"", @@ -381,41 +381,6 @@ }}], "images":{ "normal~":"resources/images/transparent.gif"}}, -{ - "id":"cd0e93257b6545e586e883b2c615f4e8", - "label":"", - "type":"buttonShape", - "styleType":"paragraph", - "visible":true, - "style":{ - "fontName":"'Applied Font Regular', 'Applied Font'", - "location":{ - "x":90, - "y":530}, - "size":{ - "width":140, - "height":20}}, - "adaptiveStyles":{ -}, - "objects":[{ - "id":"cf1a374d29984552adaa6c50851b0b53", - "label":"", - "isContained":true, - "type":"richTextPanel", - "styleType":"paragraph", - "visible":true, - "style":{ - "fontName":"'Applied Font Regular', 'Applied Font'", - "location":{ - "x":90, - "y":530}, - "size":{ - "width":140, - "height":20}}, - "adaptiveStyles":{ -}}], - "images":{ - "normal~":"resources/images/transparent.gif"}}, { "id":"fec105a900db4d4eb5b95a3efbb634ed", "label":"", @@ -425,8 +390,8 @@ "style":{ "fontName":"'Applied Font Regular', 'Applied Font'", "location":{ - "x":450, - "y":430}, + "x":440, + "y":470}, "size":{ "width":260, "height":40}}, @@ -442,15 +407,15 @@ "style":{ "fontName":"'Applied Font Regular', 'Applied Font'", "location":{ - "x":450, - "y":430}, + "x":440, + "y":470}, "size":{ "width":260, "height":40}}, "adaptiveStyles":{ }}], "images":{ - "normal~":"images/我的授权码(绑定验证)/u6.png"}}, + "normal~":"images/刷卡器获取授权码/u6.png"}}, { "id":"7357ccf0e30f4967ba39dc4e10a72970", "label":"", @@ -502,7 +467,44 @@ "linkType":"current"}]}]}}, "tabbable":true, "images":{ - "normal~":"images/购买授权码/u23.png"}}]}}, + "normal~":"images/购买授权码/u21.png"}}, +{ + "id":"5d6dc64658114e97a169498b4337dad0", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":440, + "y":243}, + "size":{ + "width":260, + "height":137}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ad21833f57384939b3c39c63e23daee7", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":440, + "y":243}, + "size":{ + "width":260, + "height":137}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/收银台付款/u22.png"}}]}}, "masters":{ }, "objectPaths":{ @@ -542,15 +544,15 @@ "scriptId":"u16"}, "b75e6cbf4e7f4347b22418a382ec48af":{ "scriptId":"u17"}, - "cd0e93257b6545e586e883b2c615f4e8":{ + "fec105a900db4d4eb5b95a3efbb634ed":{ "scriptId":"u18"}, - "cf1a374d29984552adaa6c50851b0b53":{ + "a2552e40a2214c9698b86ef075a29473":{ "scriptId":"u19"}, - "fec105a900db4d4eb5b95a3efbb634ed":{ + "7357ccf0e30f4967ba39dc4e10a72970":{ "scriptId":"u20"}, - "a2552e40a2214c9698b86ef075a29473":{ + "64167004aac64def9fd0b7b4209ec346":{ "scriptId":"u21"}, - "7357ccf0e30f4967ba39dc4e10a72970":{ + "5d6dc64658114e97a169498b4337dad0":{ "scriptId":"u22"}, - "64167004aac64def9fd0b7b4209ec346":{ + "ad21833f57384939b3c39c63e23daee7":{ "scriptId":"u23"}}}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\224\266\351\223\266\345\217\260\344\273\230\346\254\276/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\224\266\351\223\266\345\217\260\344\273\230\346\254\276/styles.css" index 6df14b7..1b85f16 100644 --- "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\224\266\351\223\266\345\217\260\344\273\230\346\254\276/styles.css" +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\224\266\351\223\266\345\217\260\344\273\230\346\254\276/styles.css" @@ -3,7 +3,7 @@ background-image:none; position:static; left:auto; - width:710px; + width:700px; margin-left:0; margin-right:0; text-align:left; @@ -208,65 +208,66 @@ } #u18 { position:absolute; - left:90px; - top:530px; - width:140px; - height:20px; + left:440px; + top:470px; + width:260px; + height:40px; } #u18_img { position:absolute; left:0px; top:0px; - width:140px; - height:20px; + width:260px; + height:40px; } #u19 { position:absolute; - left:0px; - top:0px; - width:140px; + left:2px; + top:12px; + width:256px; word-wrap:break-word; } #u20 { position:absolute; - left:450px; - top:430px; - width:260px; - height:40px; + left:80px; + top:204px; + width:30px; + height:29px; + text-align:left; } #u20_img { position:absolute; left:0px; top:0px; - width:260px; - height:40px; + width:30px; + height:29px; } #u21 { position:absolute; left:2px; - top:12px; - width:256px; + top:6px; + width:26px; word-wrap:break-word; } #u22 { position:absolute; - left:80px; - top:204px; - width:30px; - height:29px; + left:440px; + top:243px; + width:260px; + height:137px; text-align:left; } #u22_img { position:absolute; left:0px; top:0px; - width:30px; - height:29px; + width:260px; + height:137px; } #u23 { position:absolute; left:2px; - top:6px; - width:26px; + top:12px; + width:256px; word-wrap:break-word; } diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/data.js" new file mode 100644 index 0000000..590f965 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/data.js" @@ -0,0 +1,760 @@ +$axure.loadCurrentPage({ + "url":"用户信息登记.html", + "generationDate":new Date(1416631107187.5), + "isCanvasEnabled":false, + "variables":["OnLoadVariable"], + "page":{ + "packageId":"96134f47cbd9489ca58135ac38957127", + "type":"Axure:Page", + "name":"用户信息登记", + "notes":{ +}, + "style":{ + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "pageAlignment":"near", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "image":null, + "imageHorizontalAlignment":"near", + "imageVerticalAlignment":"near", + "imageRepeat":"auto", + "favicon":null, + "sketchFactor":"0", + "colorStyle":"appliedColor", + "fontName":"Applied Font", + "borderWidth":"0"}, + "adaptiveStyles":{ +}, + "interactionMap":{ +}, + "diagram":{ + "objects":[{ + "id":"b12f6d77f28e4d5fab1777623e20539c", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":20, + "y":26}, + "size":{ + "width":380, + "height":744}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d2dae44d72c346d4b0ff3356d4e57196", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":20, + "y":26}, + "size":{ + "width":380, + "height":744}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/购买授权码/u0.png"}}, +{ + "id":"ec7333d8ce564e39b495ac7e197535a2", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":51, + "y":178}, + "size":{ + "width":320, + "height":46}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a50cceabd444466d9d1d6ec62d2ad28a", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":51, + "y":178}, + "size":{ + "width":320, + "height":46}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/用户信息登记/u2.png"}}, +{ + "id":"4121ddd2f4a14f6e8e4f1e1f3c8d8efd", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":62, + "y":163}, + "size":{ + "width":308, + "height":13}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"1519ae0f4e754f2cb64faacd127b2603", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":62, + "y":163}, + "size":{ + "width":308, + "height":13}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/购买授权码/u2.png"}}, +{ + "id":"094a98fbc128403e9570259137ab3267", + "label":"", + "type":"buttonShape", + "styleType":"h1", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":90, + "y":182}, + "size":{ + "width":228, + "height":37}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c434a3248fe649689ddfd46fead4c4bb", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":90, + "y":182}, + "size":{ + "width":228, + "height":37}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"70268ac75ecb4ed89712749561c50c51", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":270}, + "size":{ + "width":260, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ec5a7eba0d0d40b9b40a356b4cd4f561", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":270}, + "size":{ + "width":260, + "height":30}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 用户级别示意", + "target":{ + "targetType":"page", + "url":"用户级别示意.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true, + "images":{ + "normal~":"images/用户信息登记/u8.png"}}, +{ + "id":"331caf8171d94744ba3eb029d4702db8", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":290, + "y":186}, + "size":{ + "width":70, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"525251cf34144b7695e8506d022a1963", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":290, + "y":186}, + "size":{ + "width":70, + "height":30}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/刷卡器获取授权码/u14.png"}}, +{ + "id":"bf69d35690b04eaea74fc373b7dbed21", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":310}, + "size":{ + "width":260, + "height":40}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"941c4af8b1134fb7acedfe72bb02150e", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":310}, + "size":{ + "width":260, + "height":40}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/刷卡器获取授权码/u6.png"}}, +{ + "id":"f07c2eeaf5854c378ec430eaff30d5c4", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":350}, + "size":{ + "width":260, + "height":37}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"2cf63736148742cda45ddff57b14d0f9", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":350}, + "size":{ + "width":260, + "height":37}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/用户信息登记/u14.png"}}, +{ + "id":"f847898e5b444351af49099842a2fcb6", + "label":"", + "type":"buttonShape", + "styleType":"h1", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "fontSize":"16px", + "location":{ + "x":90, + "y":241}, + "size":{ + "width":177, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"408736d938a648318420f7518a0301b1", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "fontSize":"16px", + "location":{ + "x":90, + "y":241}, + "size":{ + "width":177, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"bcfad8a670d043098505b7925f58f88c", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":387}, + "size":{ + "width":260, + "height":37}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d67739c0b42b479e9ddbf5d61749ad18", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":387}, + "size":{ + "width":260, + "height":37}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/用户信息登记/u14.png"}}, +{ + "id":"f67529f22f0246e2a60d37242a3886a5", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":420}, + "size":{ + "width":260, + "height":37}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"71e124007f7f47a1936fa6c7d2b8cccd", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":420}, + "size":{ + "width":260, + "height":37}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/用户信息登记/u14.png"}}, +{ + "id":"4d2626c90e8e442fb81ff8ad7fc1096c", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":590}, + "size":{ + "width":260, + "height":40}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"206202df0c464396939244070d57c5b0", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":590}, + "size":{ + "width":260, + "height":40}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/刷卡器获取授权码/u6.png"}}, +{ + "id":"573fe065db4a4eb195234101101fef1f", + "label":"", + "type":"buttonShape", + "styleType":"h1", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "fontSize":"16px", + "location":{ + "x":90, + "y":471}, + "size":{ + "width":187, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"fd2220f419e2487e99059561c2d26b51", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "fontSize":"16px", + "location":{ + "x":90, + "y":471}, + "size":{ + "width":187, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"ad500ff2a86d472dbe1ec19476e29a00", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":550}, + "size":{ + "width":260, + "height":40}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"8598923dcdcf405e8b1ac63da414503c", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":550}, + "size":{ + "width":260, + "height":40}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/刷卡器获取授权码/u6.png"}}, +{ + "id":"2a0ae3c7941b4fb48a3e8e110b3518bd", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":510}, + "size":{ + "width":260, + "height":40}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c14ae7aba2af4d4c8042a6bcb23cb1d8", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":510}, + "size":{ + "width":260, + "height":40}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/刷卡器获取授权码/u6.png"}}, +{ + "id":"4b43890aa4e8415d9585e315235aa5bb", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":420, + "y":186}, + "size":{ + "width":270, + "height":54}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c797f18d9a914abbaad6c2904230ab18", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":420, + "y":186}, + "size":{ + "width":270, + "height":54}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/用户信息登记/u30.png"}}, +{ + "id":"e974950eea464336b6aad070d38c3c6e", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":420, + "y":250}, + "size":{ + "width":270, + "height":80}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"0908e9e624444114b03ef1127c85d4ae", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":420, + "y":250}, + "size":{ + "width":270, + "height":80}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/用户信息登记/u32.png"}}]}}, + "masters":{ +}, + "objectPaths":{ + "b12f6d77f28e4d5fab1777623e20539c":{ + "scriptId":"u0"}, + "d2dae44d72c346d4b0ff3356d4e57196":{ + "scriptId":"u1"}, + "ec7333d8ce564e39b495ac7e197535a2":{ + "scriptId":"u2"}, + "a50cceabd444466d9d1d6ec62d2ad28a":{ + "scriptId":"u3"}, + "4121ddd2f4a14f6e8e4f1e1f3c8d8efd":{ + "scriptId":"u4"}, + "1519ae0f4e754f2cb64faacd127b2603":{ + "scriptId":"u5"}, + "094a98fbc128403e9570259137ab3267":{ + "scriptId":"u6"}, + "c434a3248fe649689ddfd46fead4c4bb":{ + "scriptId":"u7"}, + "70268ac75ecb4ed89712749561c50c51":{ + "scriptId":"u8"}, + "ec5a7eba0d0d40b9b40a356b4cd4f561":{ + "scriptId":"u9"}, + "331caf8171d94744ba3eb029d4702db8":{ + "scriptId":"u10"}, + "525251cf34144b7695e8506d022a1963":{ + "scriptId":"u11"}, + "bf69d35690b04eaea74fc373b7dbed21":{ + "scriptId":"u12"}, + "941c4af8b1134fb7acedfe72bb02150e":{ + "scriptId":"u13"}, + "f07c2eeaf5854c378ec430eaff30d5c4":{ + "scriptId":"u14"}, + "2cf63736148742cda45ddff57b14d0f9":{ + "scriptId":"u15"}, + "f847898e5b444351af49099842a2fcb6":{ + "scriptId":"u16"}, + "408736d938a648318420f7518a0301b1":{ + "scriptId":"u17"}, + "bcfad8a670d043098505b7925f58f88c":{ + "scriptId":"u18"}, + "d67739c0b42b479e9ddbf5d61749ad18":{ + "scriptId":"u19"}, + "f67529f22f0246e2a60d37242a3886a5":{ + "scriptId":"u20"}, + "71e124007f7f47a1936fa6c7d2b8cccd":{ + "scriptId":"u21"}, + "4d2626c90e8e442fb81ff8ad7fc1096c":{ + "scriptId":"u22"}, + "206202df0c464396939244070d57c5b0":{ + "scriptId":"u23"}, + "573fe065db4a4eb195234101101fef1f":{ + "scriptId":"u24"}, + "fd2220f419e2487e99059561c2d26b51":{ + "scriptId":"u25"}, + "ad500ff2a86d472dbe1ec19476e29a00":{ + "scriptId":"u26"}, + "8598923dcdcf405e8b1ac63da414503c":{ + "scriptId":"u27"}, + "2a0ae3c7941b4fb48a3e8e110b3518bd":{ + "scriptId":"u28"}, + "c14ae7aba2af4d4c8042a6bcb23cb1d8":{ + "scriptId":"u29"}, + "4b43890aa4e8415d9585e315235aa5bb":{ + "scriptId":"u30"}, + "c797f18d9a914abbaad6c2904230ab18":{ + "scriptId":"u31"}, + "e974950eea464336b6aad070d38c3c6e":{ + "scriptId":"u32"}, + "0908e9e624444114b03ef1127c85d4ae":{ + "scriptId":"u33"}}}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/styles.css" new file mode 100644 index 0000000..3848217 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/styles.css" @@ -0,0 +1,386 @@ +body { + margin:0px; + background-image:none; + position:static; + left:auto; + width:690px; + margin-left:0; + margin-right:0; + text-align:left; +} +#base { + position:absolute; + z-index:0; +} +#u0 { + position:absolute; + left:20px; + top:26px; + width:380px; + height:744px; +} +#u0_img { + position:absolute; + left:0px; + top:0px; + width:380px; + height:744px; +} +#u1 { + position:absolute; + left:2px; + top:364px; + width:376px; + visibility:hidden; + word-wrap:break-word; +} +#u2 { + position:absolute; + left:51px; + top:178px; + width:320px; + height:46px; +} +#u2_img { + position:absolute; + left:0px; + top:0px; + width:320px; + height:46px; +} +#u3 { + position:absolute; + left:2px; + top:15px; + width:316px; + visibility:hidden; + word-wrap:break-word; +} +#u4 { + position:absolute; + left:62px; + top:163px; + width:308px; + height:13px; +} +#u4_img { + position:absolute; + left:0px; + top:0px; + width:308px; + height:13px; +} +#u5 { + position:absolute; + left:2px; + top:-2px; + width:304px; + visibility:hidden; + word-wrap:break-word; +} +#u6 { + position:absolute; + left:90px; + top:182px; + width:228px; + height:37px; +} +#u6_img { + position:absolute; + left:0px; + top:0px; + width:228px; + height:37px; +} +#u7 { + position:absolute; + left:0px; + top:0px; + width:228px; + word-wrap:break-word; +} +#u8 { + position:absolute; + left:90px; + top:270px; + width:260px; + height:30px; + text-align:left; +} +#u8_img { + position:absolute; + left:0px; + top:0px; + width:260px; + height:30px; +} +#u9 { + position:absolute; + left:2px; + top:7px; + width:256px; + word-wrap:break-word; +} +#u10 { + position:absolute; + left:290px; + top:186px; + width:70px; + height:30px; +} +#u10_img { + position:absolute; + left:0px; + top:0px; + width:70px; + height:30px; +} +#u11 { + position:absolute; + left:2px; + top:7px; + width:66px; + word-wrap:break-word; +} +#u12 { + position:absolute; + left:90px; + top:310px; + width:260px; + height:40px; + text-align:left; +} +#u12_img { + position:absolute; + left:0px; + top:0px; + width:260px; + height:40px; +} +#u13 { + position:absolute; + left:2px; + top:4px; + width:256px; + word-wrap:break-word; +} +#u14 { + position:absolute; + left:90px; + top:350px; + width:260px; + height:37px; + text-align:left; +} +#u14_img { + position:absolute; + left:0px; + top:0px; + width:260px; + height:37px; +} +#u15 { + position:absolute; + left:2px; + top:10px; + width:256px; + word-wrap:break-word; +} +#u16 { + position:absolute; + left:90px; + top:241px; + width:177px; + height:19px; + font-size:16px; +} +#u16_img { + position:absolute; + left:0px; + top:0px; + width:177px; + height:19px; +} +#u17 { + position:absolute; + left:0px; + top:0px; + width:177px; + white-space:nowrap; +} +#u18 { + position:absolute; + left:90px; + top:387px; + width:260px; + height:37px; + text-align:left; +} +#u18_img { + position:absolute; + left:0px; + top:0px; + width:260px; + height:37px; +} +#u19 { + position:absolute; + left:2px; + top:10px; + width:256px; + word-wrap:break-word; +} +#u20 { + position:absolute; + left:90px; + top:420px; + width:260px; + height:37px; + text-align:left; +} +#u20_img { + position:absolute; + left:0px; + top:0px; + width:260px; + height:37px; +} +#u21 { + position:absolute; + left:2px; + top:10px; + width:256px; + word-wrap:break-word; +} +#u22 { + position:absolute; + left:90px; + top:590px; + width:260px; + height:40px; + text-align:left; +} +#u22_img { + position:absolute; + left:0px; + top:0px; + width:260px; + height:40px; +} +#u23 { + position:absolute; + left:2px; + top:12px; + width:256px; + word-wrap:break-word; +} +#u24 { + position:absolute; + left:90px; + top:471px; + width:187px; + height:19px; + font-size:16px; +} +#u24_img { + position:absolute; + left:0px; + top:0px; + width:187px; + height:19px; +} +#u25 { + position:absolute; + left:0px; + top:0px; + width:187px; + white-space:nowrap; +} +#u26 { + position:absolute; + left:90px; + top:550px; + width:260px; + height:40px; + text-align:left; +} +#u26_img { + position:absolute; + left:0px; + top:0px; + width:260px; + height:40px; +} +#u27 { + position:absolute; + left:2px; + top:12px; + width:256px; + word-wrap:break-word; +} +#u28 { + position:absolute; + left:90px; + top:510px; + width:260px; + height:40px; + text-align:left; +} +#u28_img { + position:absolute; + left:0px; + top:0px; + width:260px; + height:40px; +} +#u29 { + position:absolute; + left:2px; + top:12px; + width:256px; + word-wrap:break-word; +} +#u30 { + position:absolute; + left:420px; + top:186px; + width:270px; + height:54px; + text-align:left; +} +#u30_img { + position:absolute; + left:0px; + top:0px; + width:270px; + height:54px; +} +#u31 { + position:absolute; + left:2px; + top:3px; + width:266px; + word-wrap:break-word; +} +#u32 { + position:absolute; + left:420px; + top:250px; + width:270px; + height:80px; + text-align:left; +} +#u32_img { + position:absolute; + left:0px; + top:0px; + width:270px; + height:80px; +} +#u33 { + position:absolute; + left:2px; + top:8px; + width:266px; + word-wrap:break-word; +} diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\347\224\250\346\210\267\347\272\247\345\210\253\347\244\272\346\204\217/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\347\224\250\346\210\267\347\272\247\345\210\253\347\244\272\346\204\217/data.js" new file mode 100644 index 0000000..802e6f0 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\347\224\250\346\210\267\347\272\247\345\210\253\347\244\272\346\204\217/data.js" @@ -0,0 +1,348 @@ +$axure.loadCurrentPage({ + "url":"用户级别示意.html", + "generationDate":new Date(1416631107281.25), + "isCanvasEnabled":false, + "variables":["OnLoadVariable"], + "page":{ + "packageId":"5d8e14813a3c47548c9a2f530de4b50c", + "type":"Axure:Page", + "name":"用户级别示意", + "notes":{ +}, + "style":{ + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "pageAlignment":"near", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "image":null, + "imageHorizontalAlignment":"near", + "imageVerticalAlignment":"near", + "imageRepeat":"auto", + "favicon":null, + "sketchFactor":"0", + "colorStyle":"appliedColor", + "fontName":"Applied Font", + "borderWidth":"0"}, + "adaptiveStyles":{ +}, + "interactionMap":{ +}, + "diagram":{ + "objects":[{ + "id":"aa95675ba7f9462799e68c2d119a0fbb", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":26, + "y":20}, + "size":{ + "width":674, + "height":744}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a04ebc591bb44cd386092fac57782306", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":26, + "y":20}, + "size":{ + "width":674, + "height":744}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/购买授权码/u0.png"}}, +{ + "id":"ddf2023f36684dc383c9b0a4a44a4d38", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":265, + "y":178}, + "size":{ + "width":190, + "height":46}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"373fb163b08d4a898c9dea1181c9a562", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":265, + "y":178}, + "size":{ + "width":190, + "height":46}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/用户信息登记/u2.png"}}, +{ + "id":"8023ec09ee1b46ca918b251a3a11fef1", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":190, + "y":159}, + "size":{ + "width":308, + "height":13}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"5b180b1e87e64fb7950307233d628743", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":190, + "y":159}, + "size":{ + "width":308, + "height":13}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/购买授权码/u2.png"}}, +{ + "id":"d97afe1aab6b454586f2085044e9d364", + "label":"", + "type":"buttonShape", + "styleType":"h1", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":300, + "y":182}, + "size":{ + "width":177, + "height":37}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"b96728b9b2214569ae61aa0bd90f17a4", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":300, + "y":182}, + "size":{ + "width":177, + "height":37}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"9bb84bc8bd7a4e2d8f61e96d408118f3", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":176}, + "size":{ + "width":50, + "height":40}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"010279a8a2d54e1b8fb634ea7616ff8b", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":176}, + "size":{ + "width":50, + "height":40}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 购买授权码", + "target":{ + "targetType":"page", + "url":"购买授权码.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true, + "images":{ + "normal~":"images/用户级别示意/u8.png"}}, +{ + "id":"bc5bbae20abb49dc97bc8fe729c60021", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":90, + "y":252}, + "size":{ + "width":540, + "height":138}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"b26884152b4c4635bcd13ff296688805", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":90, + "y":252}, + "size":{ + "width":540, + "height":138}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"35d435d8023c4dda914c93898ca34dfe", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":90, + "y":416}, + "size":{ + "width":540, + "height":44}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a5295272e4814f558da37f58e0cbddb1", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":90, + "y":416}, + "size":{ + "width":540, + "height":44}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}]}}, + "masters":{ +}, + "objectPaths":{ + "aa95675ba7f9462799e68c2d119a0fbb":{ + "scriptId":"u0"}, + "a04ebc591bb44cd386092fac57782306":{ + "scriptId":"u1"}, + "ddf2023f36684dc383c9b0a4a44a4d38":{ + "scriptId":"u2"}, + "373fb163b08d4a898c9dea1181c9a562":{ + "scriptId":"u3"}, + "8023ec09ee1b46ca918b251a3a11fef1":{ + "scriptId":"u4"}, + "5b180b1e87e64fb7950307233d628743":{ + "scriptId":"u5"}, + "d97afe1aab6b454586f2085044e9d364":{ + "scriptId":"u6"}, + "b96728b9b2214569ae61aa0bd90f17a4":{ + "scriptId":"u7"}, + "9bb84bc8bd7a4e2d8f61e96d408118f3":{ + "scriptId":"u8"}, + "010279a8a2d54e1b8fb634ea7616ff8b":{ + "scriptId":"u9"}, + "bc5bbae20abb49dc97bc8fe729c60021":{ + "scriptId":"u10"}, + "b26884152b4c4635bcd13ff296688805":{ + "scriptId":"u11"}, + "35d435d8023c4dda914c93898ca34dfe":{ + "scriptId":"u12"}, + "a5295272e4814f558da37f58e0cbddb1":{ + "scriptId":"u13"}}}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\347\224\250\346\210\267\347\272\247\345\210\253\347\244\272\346\204\217/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\347\224\250\346\210\267\347\272\247\345\210\253\347\244\272\346\204\217/styles.css" new file mode 100644 index 0000000..98a2cb0 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\347\224\250\346\210\267\347\272\247\345\210\253\347\244\272\346\204\217/styles.css" @@ -0,0 +1,165 @@ +body { + margin:0px; + background-image:none; + position:static; + left:auto; + width:700px; + margin-left:0; + margin-right:0; + text-align:left; +} +#base { + position:absolute; + z-index:0; +} +#u0 { + position:absolute; + left:26px; + top:20px; + width:674px; + height:744px; +} +#u0_img { + position:absolute; + left:0px; + top:0px; + width:674px; + height:744px; +} +#u1 { + position:absolute; + left:2px; + top:364px; + width:670px; + visibility:hidden; + word-wrap:break-word; +} +#u2 { + position:absolute; + left:265px; + top:178px; + width:190px; + height:46px; +} +#u2_img { + position:absolute; + left:0px; + top:0px; + width:190px; + height:46px; +} +#u3 { + position:absolute; + left:2px; + top:15px; + width:186px; + visibility:hidden; + word-wrap:break-word; +} +#u4 { + position:absolute; + left:190px; + top:159px; + width:308px; + height:13px; +} +#u4_img { + position:absolute; + left:0px; + top:0px; + width:308px; + height:13px; +} +#u5 { + position:absolute; + left:2px; + top:-2px; + width:304px; + visibility:hidden; + word-wrap:break-word; +} +#u6 { + position:absolute; + left:300px; + top:182px; + width:177px; + height:37px; +} +#u6_img { + position:absolute; + left:0px; + top:0px; + width:177px; + height:37px; +} +#u7 { + position:absolute; + left:0px; + top:0px; + width:177px; + word-wrap:break-word; +} +#u8 { + position:absolute; + left:90px; + top:176px; + width:50px; + height:40px; + text-align:left; +} +#u8_img { + position:absolute; + left:0px; + top:0px; + width:50px; + height:40px; +} +#u9 { + position:absolute; + left:2px; + top:12px; + width:46px; + word-wrap:break-word; +} +#u10 { + position:absolute; + left:90px; + top:252px; + width:540px; + height:138px; +} +#u10_img { + position:absolute; + left:0px; + top:0px; + width:540px; + height:138px; +} +#u11 { + position:absolute; + left:0px; + top:0px; + width:540px; + word-wrap:break-word; +} +#u12 { + position:absolute; + left:90px; + top:416px; + width:540px; + height:44px; +} +#u12_img { + position:absolute; + left:0px; + top:0px; + width:540px; + height:44px; +} +#u13 { + position:absolute; + left:0px; + top:0px; + width:540px; + word-wrap:break-word; +} diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\350\216\267\345\276\227\346\216\210\346\235\203\347\240\201/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\350\216\267\345\276\227\346\216\210\346\235\203\347\240\201/data.js" index ec93872..1e748e5 100644 --- "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\350\216\267\345\276\227\346\216\210\346\235\203\347\240\201/data.js" +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\350\216\267\345\276\227\346\216\210\346\235\203\347\240\201/data.js" @@ -1,6 +1,6 @@ $axure.loadCurrentPage({ "url":"获得授权码.html", - "generationDate":new Date(1413868503906.25), + "generationDate":new Date(1416631107062.5), "isCanvasEnabled":false, "variables":["OnLoadVariable"], "page":{ @@ -196,10 +196,10 @@ "style":{ "fontName":"'Applied Font Regular', 'Applied Font'", "location":{ - "x":95, - "y":372}, + "x":70, + "y":380}, "size":{ - "width":260, + "width":135, "height":40}}, "adaptiveStyles":{ }, @@ -213,30 +213,15 @@ "style":{ "fontName":"'Applied Font Regular', 'Applied Font'", "location":{ - "x":95, - "y":372}, + "x":70, + "y":380}, "size":{ - "width":260, + "width":135, "height":40}}, "adaptiveStyles":{ }}], - "interactionMap":{ - "onClick":{ - "description":"OnClick", - "cases":[{ - "description":"用例 1", - "isNewIfGroup":false, - "actions":[{ - "action":"linkWindow", - "description":"在 当前窗口 打开 购买授权码", - "target":{ - "targetType":"page", - "url":"购买授权码.html", - "includeVariables":true}, - "linkType":"current"}]}]}}, - "tabbable":true, "images":{ - "normal~":"images/我的授权码(绑定验证)/u6.png"}}, + "normal~":"images/获得授权码/u8.png"}}, { "id":"27c87b9dd3c04d128d9187d88b8e55df", "label":"", @@ -271,7 +256,79 @@ "width":30, "height":16}}, "adaptiveStyles":{ -}}]}]}}, +}}]}, +{ + "id":"46eab98219bc42baa76742c3ba6ab82d", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":245, + "y":380}, + "size":{ + "width":135, + "height":40}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"2aecec26f77a41f7bcb62a5e9bbd0aef", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":245, + "y":380}, + "size":{ + "width":135, + "height":40}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/获得授权码/u8.png"}}, +{ + "id":"9b2abcdcba974a2f9317db54c9091994", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":430, + "y":380}, + "size":{ + "width":275, + "height":70}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c63d85bbb76b4c29b46c5f433123a955", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":430, + "y":380}, + "size":{ + "width":275, + "height":70}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/获得授权码/u14.png"}}]}}, "masters":{ }, "objectPaths":{ @@ -298,4 +355,12 @@ "27c87b9dd3c04d128d9187d88b8e55df":{ "scriptId":"u10"}, "e9554a7a80074e3cbf72038fce43ec99":{ - "scriptId":"u11"}}}); \ No newline at end of file + "scriptId":"u11"}, + "46eab98219bc42baa76742c3ba6ab82d":{ + "scriptId":"u12"}, + "2aecec26f77a41f7bcb62a5e9bbd0aef":{ + "scriptId":"u13"}, + "9b2abcdcba974a2f9317db54c9091994":{ + "scriptId":"u14"}, + "c63d85bbb76b4c29b46c5f433123a955":{ + "scriptId":"u15"}}}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\350\216\267\345\276\227\346\216\210\346\235\203\347\240\201/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\350\216\267\345\276\227\346\216\210\346\235\203\347\240\201/styles.css" index 7f7afe7..246037f 100644 --- "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\350\216\267\345\276\227\346\216\210\346\235\203\347\240\201/styles.css" +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\350\216\267\345\276\227\346\216\210\346\235\203\347\240\201/styles.css" @@ -3,7 +3,7 @@ background-image:none; position:static; left:auto; - width:420px; + width:705px; margin-left:0; margin-right:0; text-align:left; @@ -101,23 +101,23 @@ } #u8 { position:absolute; - left:95px; - top:372px; - width:260px; + left:70px; + top:380px; + width:135px; height:40px; } #u8_img { position:absolute; left:0px; top:0px; - width:260px; + width:135px; height:40px; } #u9 { position:absolute; left:2px; top:12px; - width:256px; + width:131px; word-wrap:break-word; } #u10 { @@ -141,3 +141,46 @@ left:-3px; top:-2px; } +#u12 { + position:absolute; + left:245px; + top:380px; + width:135px; + height:40px; +} +#u12_img { + position:absolute; + left:0px; + top:0px; + width:135px; + height:40px; +} +#u13 { + position:absolute; + left:2px; + top:12px; + width:131px; + word-wrap:break-word; +} +#u14 { + position:absolute; + left:430px; + top:380px; + width:275px; + height:70px; + text-align:left; +} +#u14_img { + position:absolute; + left:0px; + top:0px; + width:275px; + height:70px; +} +#u15 { + position:absolute; + left:2px; + top:19px; + width:271px; + word-wrap:break-word; +} diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/data.js" index a51a956..4a25cf8 100644 --- "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/data.js" +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/data.js" @@ -1,6 +1,6 @@ $axure.loadCurrentPage({ "url":"购买授权码.html", - "generationDate":new Date(1413868503515.63), + "generationDate":new Date(1416631106171.88), "isCanvasEnabled":false, "variables":["OnLoadVariable"], "page":{ @@ -348,43 +348,6 @@ "tabbable":true, "images":{ "normal~":"images/购买授权码/u14.png"}}, -{ - "id":"0293229ee5194f2182359ea01762990f", - "label":"", - "type":"buttonShape", - "styleType":"buttonShape", - "visible":true, - "style":{ - "fontName":"'Applied Font Regular', 'Applied Font'", - "horizontalAlignment":"left", - "location":{ - "x":430, - "y":196}, - "size":{ - "width":260, - "height":46}}, - "adaptiveStyles":{ -}, - "objects":[{ - "id":"1ebd2b0762b742cdbdfb79c6d716f220", - "label":"", - "isContained":true, - "type":"richTextPanel", - "styleType":"paragraph", - "visible":true, - "style":{ - "fontName":"'Applied Font Regular', 'Applied Font'", - "horizontalAlignment":"left", - "location":{ - "x":430, - "y":196}, - "size":{ - "width":260, - "height":46}}, - "adaptiveStyles":{ -}}], - "images":{ - "normal~":"images/购买授权码/u16.png"}}, { "id":"da685df324ee41e38617b982c745fadc", "label":"", @@ -396,14 +359,14 @@ "x":90, "y":350}, "size":{ - "width":90, + "width":60, "height":10}}, "adaptiveStyles":{ }, "images":{ "start~":"resources/images/transparent.gif", "end~":"resources/images/transparent.gif", - "line~":"images/购买授权码/u18_line.png"}}, + "line~":"images/购买授权码/u16_line.png"}}, { "id":"68d2d316216945e1a5cba8a7bf65b6da", "label":"", @@ -440,7 +403,7 @@ "adaptiveStyles":{ }}], "images":{ - "normal~":"images/购买授权码/u19.png"}}, + "normal~":"images/购买授权码/u17.png"}}, { "id":"6b29a9eaef074169afbed7d87d6274ee", "label":"", @@ -492,7 +455,7 @@ "linkType":"current"}]}]}}, "tabbable":true, "images":{ - "normal~":"images/购买授权码/u21.png"}}, + "normal~":"images/购买授权码/u19.png"}}, { "id":"2aa88fd783eb4998a9682f64917f5f8b", "label":"", @@ -529,7 +492,7 @@ "adaptiveStyles":{ }}], "images":{ - "normal~":"images/购买授权码/u23.png"}}, + "normal~":"images/购买授权码/u21.png"}}, { "id":"0be5ba191de24864bd4ab7bf528397df", "label":"", @@ -573,15 +536,15 @@ "isNewIfGroup":false, "actions":[{ "action":"linkWindow", - "description":"在 当前窗口 打开 我的授权码(未购买)", + "description":"在 当前窗口 打开 刷卡器获取授权码", "target":{ "targetType":"page", - "url":"我的授权码(未购买).html", + "url":"刷卡器获取授权码.html", "includeVariables":true}, "linkType":"current"}]}]}}, "tabbable":true, "images":{ - "normal~":"images/购买授权码/u25.png"}}, + "normal~":"images/购买授权码/u23.png"}}, { "id":"c97a0d0d87fa4832b6ffe5fd3e8d743c", "label":"", @@ -618,7 +581,7 @@ "adaptiveStyles":{ }}], "images":{ - "normal~":"images/购买授权码/u25.png"}}]}}, + "normal~":"images/购买授权码/u23.png"}}]}}, "masters":{ }, "objectPaths":{ @@ -654,29 +617,25 @@ "scriptId":"u14"}, "33f4b0cd17fa4b579d282ebeba6f9310":{ "scriptId":"u15"}, - "0293229ee5194f2182359ea01762990f":{ - "scriptId":"u16"}, - "1ebd2b0762b742cdbdfb79c6d716f220":{ - "scriptId":"u17"}, "da685df324ee41e38617b982c745fadc":{ - "scriptId":"u18"}, + "scriptId":"u16"}, "68d2d316216945e1a5cba8a7bf65b6da":{ - "scriptId":"u19"}, + "scriptId":"u17"}, "e54d9dde05514ef180ad55ffb82680da":{ - "scriptId":"u20"}, + "scriptId":"u18"}, "6b29a9eaef074169afbed7d87d6274ee":{ - "scriptId":"u21"}, + "scriptId":"u19"}, "851452cafea8421eb6721ecc328e626f":{ - "scriptId":"u22"}, + "scriptId":"u20"}, "2aa88fd783eb4998a9682f64917f5f8b":{ - "scriptId":"u23"}, + "scriptId":"u21"}, "044a27d198be492ca14cf42563ca14f9":{ - "scriptId":"u24"}, + "scriptId":"u22"}, "0be5ba191de24864bd4ab7bf528397df":{ - "scriptId":"u25"}, + "scriptId":"u23"}, "b42bc2e0125b4b94be69bb5277431fe3":{ - "scriptId":"u26"}, + "scriptId":"u24"}, "c97a0d0d87fa4832b6ffe5fd3e8d743c":{ - "scriptId":"u27"}, + "scriptId":"u25"}, "a8beefb2d8834a4193d48c28f7ce9016":{ - "scriptId":"u28"}}}); \ No newline at end of file + "scriptId":"u26"}}}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/styles.css" index ca4f7b4..0ada7a3 100644 --- "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/styles.css" +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/styles.css" @@ -187,56 +187,34 @@ word-wrap:break-word; } #u16 { - position:absolute; - left:430px; - top:196px; - width:260px; - height:46px; - text-align:left; -} -#u16_img { - position:absolute; - left:0px; - top:0px; - width:260px; - height:46px; -} -#u17 { - position:absolute; - left:2px; - top:7px; - width:256px; - word-wrap:break-word; -} -#u18 { position:absolute; left:90px; top:350px; - width:90px; + width:60px; height:10px; } -#u18_start { +#u16_start { position:absolute; left:0px; top:-5px; width:18px; height:20px; } -#u18_end { +#u16_end { position:absolute; - left:73px; + left:43px; top:-5px; width:18px; height:20px; } -#u18_line { +#u16_line { position:absolute; left:0px; top:5px; - width:90px; + width:60px; height:1px; } -#u19 { +#u17 { position:absolute; left:430px; top:252px; @@ -244,21 +222,21 @@ height:74px; text-align:left; } -#u19_img { +#u17_img { position:absolute; left:0px; top:0px; width:260px; height:74px; } -#u20 { +#u18 { position:absolute; left:2px; top:13px; width:256px; word-wrap:break-word; } -#u21 { +#u19 { position:absolute; left:300px; top:198px; @@ -266,21 +244,21 @@ height:33px; text-align:left; } -#u21_img { +#u19_img { position:absolute; left:0px; top:0px; width:70px; height:33px; } -#u22 { +#u20 { position:absolute; left:2px; top:8px; width:66px; word-wrap:break-word; } -#u23 { +#u21 { position:absolute; left:70px; top:198px; @@ -288,21 +266,21 @@ height:29px; text-align:left; } -#u23_img { +#u21_img { position:absolute; left:0px; top:0px; width:30px; height:29px; } -#u24 { +#u22 { position:absolute; left:2px; top:6px; width:26px; word-wrap:break-word; } -#u25 { +#u23 { position:absolute; left:270px; top:349px; @@ -310,21 +288,21 @@ height:29px; text-align:left; } -#u25_img { +#u23_img { position:absolute; left:0px; top:0px; width:100px; height:29px; } -#u26 { +#u24 { position:absolute; left:2px; top:6px; width:96px; word-wrap:break-word; } -#u27 { +#u25 { position:absolute; left:270px; top:320px; @@ -332,14 +310,14 @@ height:29px; text-align:left; } -#u27_img { +#u25_img { position:absolute; left:0px; top:0px; width:100px; height:29px; } -#u28 { +#u26 { position:absolute; left:2px; top:6px; diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\344\273\243\347\220\206\345\225\206\345\210\206\351\205\215\346\216\210\346\235\203\347\240\201/u10.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\344\273\243\347\220\206\345\225\206\345\210\206\351\205\215\346\216\210\346\235\203\347\240\201/u10.png" new file mode 100644 index 0000000..9815cac Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\344\273\243\347\220\206\345\225\206\345\210\206\351\205\215\346\216\210\346\235\203\347\240\201/u10.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\344\273\243\347\220\206\345\225\206\345\210\206\351\205\215\346\216\210\346\235\203\347\240\201/u12_line.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\344\273\243\347\220\206\345\225\206\345\210\206\351\205\215\346\216\210\346\235\203\347\240\201/u12_line.png" new file mode 100644 index 0000000..049948a Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\344\273\243\347\220\206\345\225\206\345\210\206\351\205\215\346\216\210\346\235\203\347\240\201/u12_line.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\344\273\243\347\220\206\345\225\206\345\210\206\351\205\215\346\216\210\346\235\203\347\240\201/u6.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\344\273\243\347\220\206\345\225\206\345\210\206\351\205\215\346\216\210\346\235\203\347\240\201/u6.png" new file mode 100644 index 0000000..39e8657 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\344\273\243\347\220\206\345\225\206\345\210\206\351\205\215\346\216\210\346\235\203\347\240\201/u6.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\344\273\243\347\220\206\345\225\206\345\210\206\351\205\215\346\216\210\346\235\203\347\240\201/u8.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\344\273\243\347\220\206\345\225\206\345\210\206\351\205\215\346\216\210\346\235\203\347\240\201/u8.png" new file mode 100644 index 0000000..5ebca40 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\344\273\243\347\220\206\345\225\206\345\210\206\351\205\215\346\216\210\346\235\203\347\240\201/u8.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\346\234\252\350\264\255\344\271\260\357\274\211/u10.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/u10.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\346\234\252\350\264\255\344\271\260\357\274\211/u10.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/u10.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/u12.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/u12.png" new file mode 100644 index 0000000..347ba49 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/u12.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/u14.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/u14.png" new file mode 100644 index 0000000..c158ba2 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/u14.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/u16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/u16.png" new file mode 100644 index 0000000..09dd7d3 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/u16.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/u18.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/u18.png" new file mode 100644 index 0000000..2b453c8 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/u18.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/u20.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/u20.png" new file mode 100644 index 0000000..8eb5963 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/u20.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/u22.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/u22.png" new file mode 100644 index 0000000..3ae492f Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/u22.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\347\273\221\345\256\232\351\252\214\350\257\201\357\274\211/u6.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/u6.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\347\273\221\345\256\232\351\252\214\350\257\201\357\274\211/u6.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/u6.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\345\267\262\345\210\206\351\205\215\350\256\260\345\275\225/u6.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\345\267\262\345\210\206\351\205\215\350\256\260\345\275\225/u6.png" new file mode 100644 index 0000000..e10bae1 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\345\267\262\345\210\206\351\205\215\350\256\260\345\275\225/u6.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201/u6.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201/u6.png" new file mode 100644 index 0000000..1d8fe46 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201/u6.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\346\234\252\350\264\255\344\271\260\357\274\211/u12.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\346\234\252\350\264\255\344\271\260\357\274\211/u12.png" deleted file mode 100644 index b3e4560..0000000 Binary files "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\346\234\252\350\264\255\344\271\260\357\274\211/u12.png" and /dev/null differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\346\234\252\350\264\255\344\271\260\357\274\211/u16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\346\234\252\350\264\255\344\271\260\357\274\211/u16.png" deleted file mode 100644 index 2050fe7..0000000 Binary files "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\346\234\252\350\264\255\344\271\260\357\274\211/u16.png" and /dev/null differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\227\240\346\216\210\346\235\203\347\240\201\357\274\211/u16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\227\240\346\216\210\346\235\203\347\240\201\357\274\211/u16.png" index 1d8fe46..4476696 100644 Binary files "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\227\240\346\216\210\346\235\203\347\240\201\357\274\211/u16.png" and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\227\240\346\216\210\346\235\203\347\240\201\357\274\211/u16.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\227\240\346\216\210\346\235\203\347\240\201\357\274\211/u18.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\227\240\346\216\210\346\235\203\347\240\201\357\274\211/u18.png" index ccf66c8..7242fb9 100644 Binary files "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\227\240\346\216\210\346\235\203\347\240\201\357\274\211/u18.png" and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\227\240\346\216\210\346\235\203\347\240\201\357\274\211/u18.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\227\240\346\216\210\346\235\203\347\240\201\357\274\211/u20.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\227\240\346\216\210\346\235\203\347\240\201\357\274\211/u20.png" new file mode 100644 index 0000000..d8513f7 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\227\240\346\216\210\346\235\203\347\240\201\357\274\211/u20.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\227\240\346\216\210\346\235\203\347\240\201\357\274\211/u28.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\227\240\346\216\210\346\235\203\347\240\201\357\274\211/u28.png" new file mode 100644 index 0000000..e6944ca Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\227\240\346\216\210\346\235\203\347\240\201\357\274\211/u28.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\234\211\346\216\210\346\235\203\347\240\201\357\274\211/u16.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u16.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\234\211\346\216\210\346\235\203\347\240\201\357\274\211/u16.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\345\207\272\345\224\256/u12.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\345\207\272\345\224\256/u12.png" new file mode 100644 index 0000000..df7d1ae Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\345\207\272\345\224\256/u12.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\345\207\272\345\224\256/u14.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\345\207\272\345\224\256/u14.png" new file mode 100644 index 0000000..9d99293 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\345\207\272\345\224\256/u14.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\345\207\272\345\224\256/u20.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\345\207\272\345\224\256/u20.png" new file mode 100644 index 0000000..a9b5982 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\345\207\272\345\224\256/u20.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\345\207\272\345\224\256/u6.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\345\207\272\345\224\256/u6.png" new file mode 100644 index 0000000..4987fad Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\345\207\272\345\224\256/u6.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\345\207\272\345\224\256/u8.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\345\207\272\345\224\256/u8.png" new file mode 100644 index 0000000..ec59ebf Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\345\207\272\345\224\256/u8.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\224\266\351\223\266\345\217\260\344\273\230\346\254\276/u22.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\224\266\351\223\266\345\217\260\344\273\230\346\254\276/u22.png" new file mode 100644 index 0000000..ebfd26f Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\224\266\351\223\266\345\217\260\344\273\230\346\254\276/u22.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/u14.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/u14.png" new file mode 100644 index 0000000..9077086 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/u14.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\217\221\346\224\276\345\267\245\350\265\204/u2.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/u2.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\217\221\346\224\276\345\267\245\350\265\204/u2.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/u2.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/u30.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/u30.png" new file mode 100644 index 0000000..109bc43 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/u30.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/u32.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/u32.png" new file mode 100644 index 0000000..660dd55 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/u32.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/u8.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/u8.png" new file mode 100644 index 0000000..2d02693 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/u8.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\347\224\250\346\210\267\347\272\247\345\210\253\347\244\272\346\204\217/u8.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\347\224\250\346\210\267\347\272\247\345\210\253\347\244\272\346\204\217/u8.png" new file mode 100644 index 0000000..8a0b393 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\347\224\250\346\210\267\347\272\247\345\210\253\347\244\272\346\204\217/u8.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\216\267\345\276\227\346\216\210\346\235\203\347\240\201/u14.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\216\267\345\276\227\346\216\210\346\235\203\347\240\201/u14.png" new file mode 100644 index 0000000..7294b9e Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\216\267\345\276\227\346\216\210\346\235\203\347\240\201/u14.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\216\267\345\276\227\346\216\210\346\235\203\347\240\201/u8.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\216\267\345\276\227\346\216\210\346\235\203\347\240\201/u8.png" new file mode 100644 index 0000000..356583a Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\216\267\345\276\227\346\216\210\346\235\203\347\240\201/u8.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u16_line.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u16_line.png" new file mode 100644 index 0000000..63428e8 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u16_line.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u17.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u17.png" new file mode 100644 index 0000000..1898f59 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u17.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u18_line.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u18_line.png" deleted file mode 100644 index 4c8fdeb..0000000 Binary files "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u18_line.png" and /dev/null differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u19.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u19.png" index 1898f59..0622912 100644 Binary files "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u19.png" and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u19.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u21.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u21.png" index 0622912..52cb0d9 100644 Binary files "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u21.png" and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u21.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u23.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u23.png" index 52cb0d9..730cf9f 100644 Binary files "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u23.png" and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u23.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\344\273\243\347\220\206\345\225\206\345\210\206\351\205\215\346\216\210\346\235\203\347\240\201.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\344\273\243\347\220\206\345\225\206\345\210\206\351\205\215\346\216\210\346\235\203\347\240\201.html" new file mode 100644 index 0000000..4e77507 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\344\273\243\347\220\206\345\225\206\345\210\206\351\205\215\346\216\210\346\235\203\347\240\201.html" @@ -0,0 +1,181 @@ + + + + 代理商分配授权码 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+

通付宝 代理版

+
+
+ + +
+ + +
+

本区用户数    1000

本区刷卡器    100

+
+
+ + +
+ + +
+

您今天的收益(元)

 

100

 

本区历史收益10000.00元

+
+
+ + +
+ + +
+

……

+
+
+ + +
+ u12_start + u12_end + u12_line +
+ + +
+ + +
+

……

+
+
+ + +
+ + +
+

……

+
+
+ + +
+ + +
+

授权码分配

+
+
+ + +
+ + +
+

<进入通付宝

+
+
+ + +
+ + +
+

……

+
+
+ + +
+ + +
+

....

+
+
+ + +
+ + +
+

....

+
+
+ + +
+ + +
+

....

+
+
+
+ + diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201.html" new file mode 100644 index 0000000..84a1ad2 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201.html" @@ -0,0 +1,165 @@ + + + + 刷卡器获取授权码 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+

获取授权码

+
+
+ + +
+ + +
+

请插入您的刷卡器进行一次刷卡:

+
+
+ + +
+ + +
+

<

+
+
+ + +
+ + +
+

确认

+
+
+ + +
+ + +
+

请刷卡获取刷卡器编号

+
+
+ + +
+ + +
+

刷卡器图标

+
+
+ + +
+ + +
+

1、刷卡后显示出刷卡器编号进行填充

+
+
+ + +
+ + +
+

2、未刷卡点击“确认”,提示“请先进行一次刷卡”;

刷卡完点击“确认”,调用后台接口进行授权码获取及绑定,然后提示“获取授权码成功”

+
+
+ + +
+ + +
+

3、分配授权码的接口中,后台需要先校验用户是否已经填写好个人资料信息,若不完善,弹出下面提示框,点击“马上补充”转入用户信息登记页面:

+
+
+ + +
+ + +
+

您的用户信息不全,请先补充完整后再获取授权码。

 

 

 

+
+
+ + +
+ + +
+

马上补充

+
+
+
+ + diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\345\267\262\345\210\206\351\205\215\350\256\260\345\275\225.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\345\267\262\345\210\206\351\205\215\350\256\260\345\275\225.html" new file mode 100644 index 0000000..2faa146 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\345\267\262\345\210\206\351\205\215\350\256\260\345\275\225.html" @@ -0,0 +1,93 @@ + + + + 已分配记录 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+

已分配记录

+
+
+ + +
+ + +
+

已分配****个授权码

 

授权码                    分配账户             分配时间

162342****          1380*******             2014-11-03

 

 

 

+
+
+ + +
+ + +
+

<

+
+
+
+ + diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201.html" new file mode 100644 index 0000000..99c6c8f --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201.html" @@ -0,0 +1,102 @@ + + + + 我的授权码 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+

我的授权码

+
+
+ + +
+ + +
+

您的授权码为:13640070005

+
+
+ + +
+ + +
+

<

+
+
+ + +
+ + +
+

若该账户没有授权码,提示“您还没获得授权码”

+
+
+
+ + diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\345\267\262\347\273\221\345\256\232\350\256\276\345\244\207\357\274\211.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\345\267\262\347\273\221\345\256\232\350\256\276\345\244\207\357\274\211.html" index ba553c5..da50412 100644 --- "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\345\267\262\347\273\221\345\256\232\350\256\276\345\244\207\357\274\211.html" +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\345\267\262\347\273\221\345\256\232\350\256\276\345\244\207\357\274\211.html" @@ -82,7 +82,7 @@
- +

<

diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\346\234\252\347\273\221\345\256\232\350\256\276\345\244\207\357\274\211.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\346\234\252\347\273\221\345\256\232\350\256\276\345\244\207\357\274\211.html" index bf7f006..0695493 100644 --- "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\346\234\252\347\273\221\345\256\232\350\256\276\345\244\207\357\274\211.html" +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\346\234\252\347\273\221\345\256\232\350\256\276\345\244\207\357\274\211.html" @@ -82,7 +82,7 @@
- +

<

diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\347\273\221\345\256\232\351\252\214\350\257\201\357\274\211.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\347\273\221\345\256\232\351\252\214\350\257\201\357\274\211.html" index 51c9fc6..4f2b569 100644 --- "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\347\273\221\345\256\232\351\252\214\350\257\201\357\274\211.html" +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\347\273\221\345\256\232\351\252\214\350\257\201\357\274\211.html" @@ -73,7 +73,7 @@
- +

请输入您的登录密码以更改授权码绑定:

@@ -82,7 +82,7 @@
- +

<

diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\227\240\346\216\210\346\235\203\347\240\201\357\274\211.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\227\240\346\216\210\346\235\203\347\240\201\357\274\211.html" index 1f5342c..bdbd581 100644 --- "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\227\240\346\216\210\346\235\203\347\240\201\357\274\211.html" +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\227\240\346\216\210\346\235\203\347\240\201\357\274\211.html" @@ -121,7 +121,7 @@
-

点击“租用一次”后,下面的账户变成可以手工输入,支付金额加上租用手续费,租用手续费可后台配置。

+

1、点击“购买刷卡器”进入刷卡器购买页;

2、点击“购买授权码”进入授权码购买页;

3、点击“租用授权码”时候,如果用户信息不全,弹出下面提示框,点击“马上补充”转入用户信息登记页面:

@@ -130,16 +130,52 @@
-

立即购买

+

购买授权码

- +
-

租用一次

+

租用授权码

+
+
+ + +
+ + +
+

购买刷卡器

+
+
+ + +
+ + +
+

您的用户信息不全,请先补充完整后再获取授权码。

 

 

 

+
+
+ + +
+ + +
+

马上补充

+
+
+ + +
+ + +
+

4、用户信息完整时,点击“租用授权码”后,下面的账户变成可以手工输入,支付金额加上租用手续费,租用手续费可后台配置。

diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\234\211\346\216\210\346\235\203\347\240\201\357\274\211.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\234\211\346\216\210\346\235\203\347\240\201\357\274\211.html" index ff26740..6407d08 100644 --- "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\234\211\346\216\210\346\235\203\347\240\201\357\274\211.html" +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\234\211\346\216\210\346\235\203\347\240\201\357\274\211.html" @@ -112,13 +112,13 @@
-

您的授权码为:16*********

+

您的授权码为:13640070005

- +

输入卡号后,需要类似刷卡时调用接口加载已登记的卡信息自动填充

diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\216\210\346\235\203\347\240\201\345\207\272\345\224\256.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\216\210\346\235\203\347\240\201\345\207\272\345\224\256.html" new file mode 100644 index 0000000..bc97036 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\216\210\346\235\203\347\240\201\345\207\272\345\224\256.html" @@ -0,0 +1,159 @@ + + + + 授权码出售 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+

授权码分配

+
+
+ + +
+ + +
+

未分配清单

 

授权码                    分配账户                操作

 

16******               

 

16****** 

 

16****** 

+
+
+ + +
+ + +
+

剩余可分配授权码个数:720个

+
+
+ + +
+ + +
+

<

+
+
+ + +
+ + +
+

已分配记录

+
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+

分配

+
+
+ + +
+ + +
+

分配

+
+
+ + +
+ + +
+

分配

+
+
+
+ + diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\216\210\346\235\203\347\240\201\347\273\221\345\256\232\350\256\276\345\244\207\357\274\210\346\232\202\346\227\266\345\272\237\345\274\203\357\274\211.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\216\210\346\235\203\347\240\201\347\273\221\345\256\232\350\256\276\345\244\207\357\274\210\346\232\202\346\227\266\345\272\237\345\274\203\357\274\211.html" new file mode 100644 index 0000000..3e82cb4 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\216\210\346\235\203\347\240\201\347\273\221\345\256\232\350\256\276\345\244\207\357\274\210\346\232\202\346\227\266\345\272\237\345\274\203\357\274\211.html" @@ -0,0 +1,52 @@ + + + + 授权码绑定设备(暂时废弃) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\224\266\351\223\266\345\217\260\344\273\230\346\254\276.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\224\266\351\223\266\345\217\260\344\273\230\346\254\276.html" index cab2684..ed2ffd4 100644 --- "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\224\266\351\223\266\345\217\260\344\273\230\346\254\276.html" +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\224\266\351\223\266\345\217\260\344\273\230\346\254\276.html" @@ -73,7 +73,7 @@
- +

下一步

@@ -85,7 +85,7 @@
-

支付信息:

 

授权账户:13*********

支付金额:298.00

+

支付信息:

 

授权账户:13*********

支付金额:100.00

@@ -126,29 +126,29 @@
-
- +
+
-

优惠卡支付>  

+

支付过程界面省略,遵照收银台支付过程

- +
-

支付过程界面省略,遵照收银台支付过程

+

<

- +
-

<

+

1、授权码的支付要求按照“收银台”的统一支付模式进行后台设计,但可以分两个阶段完成,第一阶段可只实现授权码这个业务类型的订单信息结构、支付渠道控制

2、第二阶段根据传入的业务标识控制支付方式渠道的选择方式,支付额度,频率等风控机制。

diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260.html" new file mode 100644 index 0000000..52b190d --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260.html" @@ -0,0 +1,199 @@ + + + + 用户信息登记 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+

用户信息登记

+
+
+ + +
+ + +
+

>>了解各级别用户权限及资质要求

+
+
+ + +
+ + +
+

提交审核

+
+
+ + +
+ + +
+

身份证照片             +                +

                           正面            反面       

+
+
+ + +
+ + +
+

姓名                   请输入本人真实姓名

+
+
+ + +
+ + +
+

您当前的级别:普通用户

+
+
+ + +
+ + +
+

身份证号             请输入本人身份证号

+
+
+ + +
+ + +
+

电子邮箱             请输入本人联系邮箱

+
+
+ + +
+ + +
+

营业执照扫描件                          +

+
+
+ + +
+ + +
+

以下信息VIP用户需要填写

+
+
+ + +
+ + +
+

营业执照号          请输入营业执照号

+
+
+ + +
+ + +
+

带身份证自拍照                          +   

+
+
+ + +
+ + +
+

1、点击"提交审核"后提示“资料提交成功,我们将在一个工作日内完成审核”,点击“我知道了”后回到通付宝首页。

+
+
+ + +
+ + +
+

2、对于资料审核过程中的用户,该界面禁止信息录入,若点击“提交审核”提示“您的资料正在审核中,我们将在一个工作日内完成审核,请耐心等待。”

+
+
+
+ + diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\347\224\250\346\210\267\347\272\247\345\210\253\347\244\272\346\204\217.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\347\224\250\346\210\267\347\272\247\345\210\253\347\244\272\346\204\217.html" new file mode 100644 index 0000000..9f835ec --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\347\224\250\346\210\267\347\272\247\345\210\253\347\244\272\346\204\217.html" @@ -0,0 +1,109 @@ + + + + 用户级别示意 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+

用户级别

+
+
+ + +
+ + +
+

<返回

+
+
+ + +
+ + +
+

用户级别          普通用户     高级用户                             VIP用户

信息登记要求     手机号        手机号                                手机号

                                            姓名                                    姓名

                                身份证及身份证正反图片   身份证号及身份证正反图片

                                                                               带身份证自拍照

                                                                        营业执照号及原件扫描件

用户交易权           V1             V2                                       V3

月度限额              5w            20w                                     100w

 

+
+
+ + +
+ + +
+

各业务单笔交易限额,单笔交易次数,将根据通付宝最新政策决定,如需了解请拨打400-6868-956客服热线咨询。

+
+
+
+ + diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\350\216\267\345\276\227\346\216\210\346\235\203\347\240\201.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\350\216\267\345\276\227\346\216\210\346\235\203\347\240\201.html" index 8627707..3380c0d 100644 --- "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\350\216\267\345\276\227\346\216\210\346\235\203\347\240\201.html" +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\350\216\267\345\276\227\346\216\210\346\235\203\347\240\201.html" @@ -76,13 +76,13 @@
-

支付成功

 

您的授权码为:16101005483

 

已绑定当前登录帐号和本设备

+

支付成功

 

您的授权码为:13640070005

 

已获得通付宝授权码的相关交易权限

- +

我知道了

@@ -97,6 +97,24 @@
+ + +
+ + +
+

马上体验转账

+
+
+ + +
+ + +
+

1、点击“我知道了”回到通付宝首页

2、点击“马上体验转账”进入转账汇款首页

+
+
diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201.html" index 08d871d..f6ba9cb 100644 --- "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201.html" +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201.html" @@ -103,7 +103,7 @@
-

优惠价:298.00

原价:478.00

+

优惠价:100.00

原价:278.00

@@ -116,28 +116,28 @@
+ +
+ u16_start + u16_end + u16_line +
+ -
- +
+ -
-

原“购买刷卡器”改为这个模块

废除刷卡器在线购买

+
+

情景图指示出原来只能刷卡的业务中,增加了授权码之后就可以直接选择登记的银行卡(没有登记过则登记后进行选卡)

- -
- u18_start - u18_end - u18_line -
-
-

情景图指示出原来只能刷卡的业务中,增加了授权码之后就可以直接选择登记的银行卡(没有登记过则登记后进行选卡)

+

我的授权码

@@ -146,7 +146,7 @@
-

我的授权码

+

<

@@ -155,24 +155,15 @@
-

<

+

>>立即绑定

- +
-

>>立即绑定

-
-
- - -
- - -

已拥有刷卡器?

diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\265\213\350\257\225\344\275\223\347\263\273/\346\265\213\350\257\225\346\264\273\345\212\250/05.\346\265\213\350\257\225\346\200\273\347\273\223/\351\234\200\346\261\202\347\274\226\345\217\267-\351\234\200\346\261\202\345\220\215\347\247\260-\346\212\200\346\234\257\346\265\213\350\257\225\346\212\245\345\221\212\357\274\210\346\250\241\346\235\277\357\274\211.doc" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\265\213\350\257\225\344\275\223\347\263\273/\346\265\213\350\257\225\346\264\273\345\212\250/05.\346\265\213\350\257\225\346\200\273\347\273\223/\351\234\200\346\261\202\347\274\226\345\217\267-\351\234\200\346\261\202\345\220\215\347\247\260-\346\212\200\346\234\257\346\265\213\350\257\225\346\212\245\345\221\212\357\274\210\346\250\241\346\235\277\357\274\211.doc" new file mode 100644 index 0000000..9046e60 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\265\213\350\257\225\344\275\223\347\263\273/\346\265\213\350\257\225\346\264\273\345\212\250/05.\346\265\213\350\257\225\346\200\273\347\273\223/\351\234\200\346\261\202\347\274\226\345\217\267-\351\234\200\346\261\202\345\220\215\347\247\260-\346\212\200\346\234\257\346\265\213\350\257\225\346\212\245\345\221\212\357\274\210\346\250\241\346\235\277\357\274\211.doc" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[02]\347\263\273\347\273\237\350\256\276\350\256\241/\346\216\245\345\217\243\350\256\276\350\256\241/\351\200\232\344\273\230\345\256\235\346\211\213\346\234\272\346\224\257\344\273\230\346\216\245\345\217\243\346\240\207\345\207\206\350\247\204\350\214\203\346\226\207\346\241\243-20141121_\350\241\245\345\205\205\346\211\271\346\263\250\345\217\267\343\200\2203.4.0_20141121\343\200\221.docx" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[02]\347\263\273\347\273\237\350\256\276\350\256\241/\346\216\245\345\217\243\350\256\276\350\256\241/\351\200\232\344\273\230\345\256\235\346\211\213\346\234\272\346\224\257\344\273\230\346\216\245\345\217\243\346\240\207\345\207\206\350\247\204\350\214\203\346\226\207\346\241\243-20141121_\350\241\245\345\205\205\346\211\271\346\263\250\345\217\267\343\200\2203.4.0_20141121\343\200\221.docx" new file mode 100644 index 0000000..dc40529 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[02]\347\263\273\347\273\237\350\256\276\350\256\241/\346\216\245\345\217\243\350\256\276\350\256\241/\351\200\232\344\273\230\345\256\235\346\211\213\346\234\272\346\224\257\344\273\230\346\216\245\345\217\243\346\240\207\345\207\206\350\247\204\350\214\203\346\226\207\346\241\243-20141121_\350\241\245\345\205\205\346\211\271\346\263\250\345\217\267\343\200\2203.4.0_20141121\343\200\221.docx" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[02]\347\263\273\347\273\237\350\256\276\350\256\241/\346\216\245\345\217\243\350\256\276\350\256\241/\351\200\232\344\273\230\345\256\235\346\211\213\346\234\272\346\224\257\344\273\230\346\216\245\345\217\243\346\240\207\345\207\206\350\247\204\350\214\203\346\226\207\346\241\243-20141126_\350\241\245\345\205\205\346\211\271\346\263\250\345\217\267\343\200\2203.4.0_20141126\343\200\221.docx" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[02]\347\263\273\347\273\237\350\256\276\350\256\241/\346\216\245\345\217\243\350\256\276\350\256\241/\351\200\232\344\273\230\345\256\235\346\211\213\346\234\272\346\224\257\344\273\230\346\216\245\345\217\243\346\240\207\345\207\206\350\247\204\350\214\203\346\226\207\346\241\243-20141126_\350\241\245\345\205\205\346\211\271\346\263\250\345\217\267\343\200\2203.4.0_20141126\343\200\221.docx" new file mode 100644 index 0000000..340cf77 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[02]\347\263\273\347\273\237\350\256\276\350\256\241/\346\216\245\345\217\243\350\256\276\350\256\241/\351\200\232\344\273\230\345\256\235\346\211\213\346\234\272\346\224\257\344\273\230\346\216\245\345\217\243\346\240\207\345\207\206\350\247\204\350\214\203\346\226\207\346\241\243-20141126_\350\241\245\345\205\205\346\211\271\346\263\250\345\217\267\343\200\2203.4.0_20141126\343\200\221.docx" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[05]\344\272\247\345\223\201\350\277\220\350\220\245/\344\272\247\345\223\201\344\275\223\351\252\214/\351\200\232\344\273\230\345\256\235APP\344\275\223\351\252\214\346\212\245\345\221\212_V3.4.0 11\346\234\21025\346\227\245.docx" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[05]\344\272\247\345\223\201\350\277\220\350\220\245/\344\272\247\345\223\201\344\275\223\351\252\214/\351\200\232\344\273\230\345\256\235APP\344\275\223\351\252\214\346\212\245\345\221\212_V3.4.0 11\346\234\21025\346\227\245.docx" new file mode 100644 index 0000000..64b63d5 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[05]\344\272\247\345\223\201\350\277\220\350\220\245/\344\272\247\345\223\201\344\275\223\351\252\214/\351\200\232\344\273\230\345\256\235APP\344\275\223\351\252\214\346\212\245\345\221\212_V3.4.0 11\346\234\21025\346\227\245.docx" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[05]\344\272\247\345\223\201\350\277\220\350\220\245/\344\272\247\345\223\201\344\275\223\351\252\214/\351\200\232\344\273\230\345\256\235APP\344\275\223\351\252\214\346\212\245\345\221\212_V3.4.0.docx" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[05]\344\272\247\345\223\201\350\277\220\350\220\245/\344\272\247\345\223\201\344\275\223\351\252\214/\351\200\232\344\273\230\345\256\235APP\344\275\223\351\252\214\346\212\245\345\221\212_V3.4.0.docx" new file mode 100644 index 0000000..21afb78 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[05]\344\272\247\345\223\201\350\277\220\350\220\245/\344\272\247\345\223\201\344\275\223\351\252\214/\351\200\232\344\273\230\345\256\235APP\344\275\223\351\252\214\346\212\245\345\221\212_V3.4.0.docx" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[05]\344\272\247\345\223\201\350\277\220\350\220\245/\345\217\215\351\246\210\346\204\217\350\247\201/\346\230\223\345\256\235\344\273\243\346\224\266\350\277\220\350\220\245\345\274\202\345\270\270\350\256\260\345\275\2252014\345\271\26411\346\234\210.docx" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[05]\344\272\247\345\223\201\350\277\220\350\220\245/\345\217\215\351\246\210\346\204\217\350\247\201/\346\230\223\345\256\235\344\273\243\346\224\266\350\277\220\350\220\245\345\274\202\345\270\270\350\256\260\345\275\2252014\345\271\26411\346\234\210.docx" new file mode 100644 index 0000000..af57d47 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[05]\344\272\247\345\223\201\350\277\220\350\220\245/\345\217\215\351\246\210\346\204\217\350\247\201/\346\230\223\345\256\235\344\273\243\346\224\266\350\277\220\350\220\245\345\274\202\345\270\270\350\256\260\345\275\2252014\345\271\26411\346\234\210.docx" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[05]\344\272\247\345\223\201\350\277\220\350\220\245/\345\256\211\350\243\205\345\214\205/3.3.3/TongFubao.ipa" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[05]\344\272\247\345\223\201\350\277\220\350\220\245/\345\256\211\350\243\205\345\214\205/3.3.3/TongFubao.ipa" new file mode 100644 index 0000000..1f6651a Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[05]\344\272\247\345\223\201\350\277\220\350\220\245/\345\256\211\350\243\205\345\214\205/3.3.3/TongFubao.ipa" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\346\234\272\347\245\250\351\242\204\350\256\242/\345\274\200\345\217\221\346\226\207\346\241\243/14\345\271\26410\346\234\210\346\220\272\347\250\213\350\256\241\344\275\243\350\256\260\345\275\225.xls" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\346\234\272\347\245\250\351\242\204\350\256\242/\345\274\200\345\217\221\346\226\207\346\241\243/14\345\271\26410\346\234\210\346\220\272\347\250\213\350\256\241\344\275\243\350\256\260\345\275\225.xls" new file mode 100644 index 0000000..bffaa79 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\346\234\272\347\245\250\351\242\204\350\256\242/\345\274\200\345\217\221\346\226\207\346\241\243/14\345\271\26410\346\234\210\346\220\272\347\250\213\350\256\241\344\275\243\350\256\260\345\275\225.xls" @@ -0,0 +1 @@ +
ӶԤɽƷվλЧӶȫ״̬OUIDObooking˺
11275421092014-10-292014-10-292014-10-29Ʊͨ-ƶ캽1()784.00007.8400ѳɽ000401app-
11026586392014-10-252014-10-242014-10-24Ʊͨ-ƶ캽1()350.00001.7500ѳɽ
11014922812014-10-212014-10-202014-10-20Ʊͨ-ƶ캽2()1696.00008.4800ѳɽ
10979825962014-10-102014-10-092014-10-09Ʊͨ-ƶ캽2()838.00004.1900ѳɽ
Ӷͳ ӶӶ
ɽ 4 22.26
˵ 0 0.00
\ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\346\234\272\347\245\250\351\242\204\350\256\242/\345\274\200\345\217\221\346\226\207\346\241\243/API\346\216\210\346\235\203\345\215\217\350\256\256.docx" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\346\234\272\347\245\250\351\242\204\350\256\242/\345\274\200\345\217\221\346\226\207\346\241\243/API\346\216\210\346\235\203\345\215\217\350\256\256.docx" new file mode 100644 index 0000000..129f305 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\346\234\272\347\245\250\351\242\204\350\256\242/\345\274\200\345\217\221\346\226\207\346\241\243/API\346\216\210\346\235\203\345\215\217\350\256\256.docx" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\346\234\272\347\245\250\351\242\204\350\256\242/\345\274\200\345\217\221\346\226\207\346\241\243/\345\210\206\351\224\200\350\267\263\350\275\254\350\247\204\345\210\231\345\256\214\346\225\264\347\211\210V2.5.doc" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\346\234\272\347\245\250\351\242\204\350\256\242/\345\274\200\345\217\221\346\226\207\346\241\243/\345\210\206\351\224\200\350\267\263\350\275\254\350\247\204\345\210\231\345\256\214\346\225\264\347\211\210V2.5.doc" new file mode 100644 index 0000000..314c9e8 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\346\234\272\347\245\250\351\242\204\350\256\242/\345\274\200\345\217\221\346\226\207\346\241\243/\345\210\206\351\224\200\350\267\263\350\275\254\350\247\204\345\210\231\345\256\214\346\225\264\347\211\210V2.5.doc" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\346\234\272\347\245\250\351\242\204\350\256\242/\345\274\200\345\217\221\346\226\207\346\241\243/\345\220\210\344\275\234\345\215\217\350\256\256.docx" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\346\234\272\347\245\250\351\242\204\350\256\242/\345\274\200\345\217\221\346\226\207\346\241\243/\345\220\210\344\275\234\345\215\217\350\256\256.docx" new file mode 100644 index 0000000..617075e Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\346\234\272\347\245\250\351\242\204\350\256\242/\345\274\200\345\217\221\346\226\207\346\241\243/\345\220\210\344\275\234\345\215\217\350\256\256.docx" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\346\234\272\347\245\250\351\242\204\350\256\242/\345\274\200\345\217\221\346\226\207\346\241\243/\345\220\210\344\275\234\345\234\260\345\235\200.txt" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\346\234\272\347\245\250\351\242\204\350\256\242/\345\274\200\345\217\221\346\226\207\346\241\243/\345\220\210\344\275\234\345\234\260\345\235\200.txt" new file mode 100644 index 0000000..a3dc896 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\346\234\272\347\245\250\351\242\204\350\256\242/\345\274\200\345\217\221\346\226\207\346\241\243/\345\220\210\344\275\234\345\234\260\345\235\200.txt" @@ -0,0 +1,13 @@ +http://u.ctrip.com/union/ + +http://open.ctrip.com/help/CommonParams2.aspx +зֲϢ + +ƹӣ +http://u.ctrip.com/union/CtripRedirect.aspx?TypeID=2&Allianceid=20230&sid=451200&OUID=&jumpUrl=http://www.ctrip.com + +http://u.ctrip.com +û +2308023766 +룺 +tfbpay.cn diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\346\234\272\347\245\250\351\242\204\350\256\242/\345\274\200\345\217\221\346\226\207\346\241\243/\346\220\272\347\250\213\345\220\210\344\275\234\346\224\277\347\255\226.docx" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\346\234\272\347\245\250\351\242\204\350\256\242/\345\274\200\345\217\221\346\226\207\346\241\243/\346\220\272\347\250\213\345\220\210\344\275\234\346\224\277\347\255\226.docx" new file mode 100644 index 0000000..74dc350 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\346\234\272\347\245\250\351\242\204\350\256\242/\345\274\200\345\217\221\346\226\207\346\241\243/\346\220\272\347\250\213\345\220\210\344\275\234\346\224\277\347\255\226.docx" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\346\234\272\347\245\250\351\242\204\350\256\242/\345\274\200\345\217\221\346\226\207\346\241\243/\346\220\272\347\250\213\347\275\221\347\253\231\350\201\224\347\233\237OPENAPI2.0(\347\201\253\350\275\246\347\245\250)\346\216\245\345\217\243\350\257\264\346\230\216.doc" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\346\234\272\347\245\250\351\242\204\350\256\242/\345\274\200\345\217\221\346\226\207\346\241\243/\346\220\272\347\250\213\347\275\221\347\253\231\350\201\224\347\233\237OPENAPI2.0(\347\201\253\350\275\246\347\245\250)\346\216\245\345\217\243\350\257\264\346\230\216.doc" new file mode 100644 index 0000000..3dab6e8 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\346\234\272\347\245\250\351\242\204\350\256\242/\345\274\200\345\217\221\346\226\207\346\241\243/\346\220\272\347\250\213\347\275\221\347\253\231\350\201\224\347\233\237OPENAPI2.0(\347\201\253\350\275\246\347\245\250)\346\216\245\345\217\243\350\257\264\346\230\216.doc" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\346\234\272\347\245\250\351\242\204\350\256\242/\345\274\200\345\217\221\346\226\207\346\241\243/\346\220\272\347\250\213\350\201\224\347\233\237\344\273\243\350\256\242\346\223\215\344\275\234\346\226\207\346\241\24320140418.doc" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\346\234\272\347\245\250\351\242\204\350\256\242/\345\274\200\345\217\221\346\226\207\346\241\243/\346\220\272\347\250\213\350\201\224\347\233\237\344\273\243\350\256\242\346\223\215\344\275\234\346\226\207\346\241\24320140418.doc" new file mode 100644 index 0000000..8414336 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\346\234\272\347\245\250\351\242\204\350\256\242/\345\274\200\345\217\221\346\226\207\346\241\243/\346\220\272\347\250\213\350\201\224\347\233\237\344\273\243\350\256\242\346\223\215\344\275\234\346\226\207\346\241\24320140418.doc" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\346\234\272\347\245\250\351\242\204\350\256\242/\345\274\200\345\217\221\346\226\207\346\241\243/\346\220\272\347\250\213\350\201\224\347\233\237\345\220\210\344\275\234\345\215\217\350\256\256-2014.doc" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\346\234\272\347\245\250\351\242\204\350\256\242/\345\274\200\345\217\221\346\226\207\346\241\243/\346\220\272\347\250\213\350\201\224\347\233\237\345\220\210\344\275\234\345\215\217\350\256\256-2014.doc" new file mode 100644 index 0000000..ea28b30 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\346\234\272\347\245\250\351\242\204\350\256\242/\345\274\200\345\217\221\346\226\207\346\241\243/\346\220\272\347\250\213\350\201\224\347\233\237\345\220\210\344\275\234\345\215\217\350\256\256-2014.doc" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\346\234\272\347\245\250\351\242\204\350\256\242/\345\274\200\345\217\221\346\226\207\346\241\243/\346\220\272\347\250\213\350\201\224\347\233\237\345\220\210\344\275\234\345\215\217\350\256\256-\344\273\230\351\200\232\345\256\235-6-25.doc" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\346\234\272\347\245\250\351\242\204\350\256\242/\345\274\200\345\217\221\346\226\207\346\241\243/\346\220\272\347\250\213\350\201\224\347\233\237\345\220\210\344\275\234\345\215\217\350\256\256-\344\273\230\351\200\232\345\256\235-6-25.doc" new file mode 100644 index 0000000..0d4b5bd Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\346\234\272\347\245\250\351\242\204\350\256\242/\345\274\200\345\217\221\346\226\207\346\241\243/\346\220\272\347\250\213\350\201\224\347\233\237\345\220\210\344\275\234\345\215\217\350\256\256-\344\273\230\351\200\232\345\256\235-6-25.doc" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\346\234\272\347\245\250\351\242\204\350\256\242/\345\274\200\345\217\221\346\226\207\346\241\243/\346\220\272\347\250\213\351\227\250\347\245\250\344\270\232\345\212\241Open API\346\216\245\345\217\243\357\274\210v0.4.9).docx" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\346\234\272\347\245\250\351\242\204\350\256\242/\345\274\200\345\217\221\346\226\207\346\241\243/\346\220\272\347\250\213\351\227\250\347\245\250\344\270\232\345\212\241Open API\346\216\245\345\217\243\357\274\210v0.4.9).docx" new file mode 100644 index 0000000..fc863b1 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\346\234\272\347\245\250\351\242\204\350\256\242/\345\274\200\345\217\221\346\226\207\346\241\243/\346\220\272\347\250\213\351\227\250\347\245\250\344\270\232\345\212\241Open API\346\216\245\345\217\243\357\274\210v0.4.9).docx" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\346\234\272\347\245\250\351\242\204\350\256\242/\345\274\200\345\217\221\346\226\207\346\241\243/\347\256\200\345\215\225\347\232\204\344\270\213\345\215\225\350\257\267\346\261\202\344\275\223Demo.txt" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\346\234\272\347\245\250\351\242\204\350\256\242/\345\274\200\345\217\221\346\226\207\346\241\243/\347\256\200\345\215\225\347\232\204\344\270\213\345\215\225\350\257\267\346\261\202\344\275\223Demo.txt" new file mode 100644 index 0000000..4427551 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\346\234\272\347\245\250\351\242\204\350\256\242/\345\274\200\345\217\221\346\226\207\346\241\243/\347\256\200\345\215\225\347\232\204\344\270\213\345\215\225\350\257\267\346\261\202\344\275\223Demo.txt" @@ -0,0 +1,98 @@ + +
+ + + 4184a1ca-9f5e-4916-9030-093bd548419e + ADU + 1750 + + + + 1 + 30 + SZX + PEK + CA + CACA1306 + Y + B + 2014-08-19T09:00:00 + 2014-08-19T12:05:00 + 0.9 + 1580 + 50 + 120.0000 + T + T + T + øġ + Ʊ + ǩת + yeyeؼ۲Ʒ^ + F + 2 + T + 77A + 10 + 0 + T + 1111 + 1111 + NORMAL + 1 + Fav + NormalPrice + false + + 0 + + + + + Զ + 1984-01-01 + 2 + 121212 + + M + + + + + Զ + TEL + 13800138000 + + + + test@ctrip.com + + + + PJN + 0 + + + + + + +
+ + + + + + MUPAY + + wwwww@ctrip.com + 1550 + + 2012121200000002 + + + + + + + \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\346\234\272\347\245\250\351\242\204\350\256\242/\345\274\200\345\217\221\346\226\207\346\241\243/\350\256\241\344\275\243\350\256\260\345\275\225.xls" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\346\234\272\347\245\250\351\242\204\350\256\242/\345\274\200\345\217\221\346\226\207\346\241\243/\350\256\241\344\275\243\350\256\260\345\275\225.xls" new file mode 100644 index 0000000..0b1eb1d --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\346\234\272\347\245\250\351\242\204\350\256\242/\345\274\200\345\217\221\346\226\207\346\241\243/\350\256\241\344\275\243\350\256\260\345\275\225.xls" @@ -0,0 +1 @@ +
ӶԤɽƷվλЧӶȫ״̬OUIDObooking˺
11275421092014-10-292014-10-292014-10-29Ʊͨ-ƶ캽1()784.00007.8400ѳɽ000401app-
11026586392014-10-252014-10-242014-10-24Ʊͨ-ƶ캽1()350.00001.7500ѳɽ
11014922812014-10-212014-10-202014-10-20Ʊͨ-ƶ캽2()1696.00008.4800ѳɽ
10979825962014-10-102014-10-092014-10-09Ʊͨ-ƶ캽2()838.00004.1900ѳɽ
11167538272014-09-162014-09-162014-09-16Ʊͨ-ƶ캽1()144.50001.4450ѳɽ000401app-
11142699462014-09-082014-09-072014-09-08Ʊͨ-ƶ캽2()957.00009.5700ѳɽ000401app-
11141138122014-09-072014-09-072014-09-07Ʊͨ-ƶ캽3()1435.500014.3550ѳɽ000401app-
11124543832014-09-022014-09-022014-09-02Ʊͨ-ƶ캽1()74.50000.7450ѳɽ000401app-
11118133562014-08-302014-08-292014-08-30Ʊͨ-ƶ캽2()1053.000010.5300ѳɽ000401app-
11118121222014-08-302014-08-292014-08-30Ʊͨ-ƶ캽1()526.50005.2650ѳɽ000401app-
11114929382014-08-282014-08-282014-08-28Ʊͨ-ƶ캽1()388.50003.8850ѳɽ000401app-
10838133352014-08-272014-08-262014-08-26Ʊͨ-ƶ캽2()648.00003.2400ѳɽ
2561819912014-08-202014-08-052014-08-06Ƶͨ-ƶ캽1(ҹ)178.00008.9000ѳɽ
11088338282014-08-172014-08-172014-08-17Ʊͨ-ƶ캽1()98.50000.9850ѳɽ000401app-
11086256862014-08-162014-08-162014-08-16Ʊͨ-ƶ캽1()149.50001.4950ѳɽ000401app-
10627049112014-08-162014-07-22Ʊͨ-ƶ캽-1()-740.0000-3.7000˵
10627049112014-08-162014-07-22Ʊͨ-ƶ캽-1()-740.0000-3.7000˵
10627049112014-08-162014-07-22Ʊͨ-ƶ캽-1()-740.0000-3.7000˵
10779533892014-08-132014-08-122014-08-12Ʊͨ-ƶ캽1()966.00004.8300ѳɽ
10779456732014-08-132014-08-122014-08-12Ʊͨ-ƶ캽1()330.00001.6500ѳɽ
10775661972014-08-122014-08-112014-08-11Ʊͨ-ƶ캽1()752.00003.7600ѳɽ
2528392522014-07-302014-07-272014-07-29Ƶͨ-ƶ캽1(ҹ)268.000013.4000ѳɽ
10627178782014-07-232014-07-222014-07-22Ʊͨ-ƶ캽2()1082.00005.4100ѳɽ
10627049112014-07-232014-07-222014-07-22Ʊͨ-ƶ캽3()2220.000011.1000ѳɽ
Ӷͳ ӶӶ
ɽ 21 122.82
˵ 3 -11.1
\ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\346\234\272\347\245\250\351\242\204\350\256\242/\345\274\200\345\217\221\346\226\207\346\241\243/\350\256\242\345\215\225\346\212\245\350\241\250.xlsx" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\346\234\272\347\245\250\351\242\204\350\256\242/\345\274\200\345\217\221\346\226\207\346\241\243/\350\256\242\345\215\225\346\212\245\350\241\250.xlsx" new file mode 100644 index 0000000..c8d7be0 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\346\234\272\347\245\250\351\242\204\350\256\242/\345\274\200\345\217\221\346\226\207\346\241\243/\350\256\242\345\215\225\346\212\245\350\241\250.xlsx" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\346\243\200\346\265\213\346\233\264\346\226\260/UI\346\226\207\346\241\243/\346\226\260\345\233\276\345\203\217.JPG" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\346\243\200\346\265\213\346\233\264\346\226\260/UI\346\226\207\346\241\243/\346\226\260\345\233\276\345\203\217.JPG" new file mode 100644 index 0000000..928bc20 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\346\243\200\346\265\213\346\233\264\346\226\260/UI\346\226\207\346\241\243/\346\226\260\345\233\276\345\203\217.JPG" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\346\243\200\346\265\213\346\233\264\346\226\260/\346\265\213\350\257\225\346\226\207\346\241\243/Screenshot_2014-11-24-14-32-13.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\346\243\200\346\265\213\346\233\264\346\226\260/\346\265\213\350\257\225\346\226\207\346\241\243/Screenshot_2014-11-24-14-32-13.png" new file mode 100644 index 0000000..b76302a Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\346\243\200\346\265\213\346\233\264\346\226\260/\346\265\213\350\257\225\346\226\207\346\241\243/Screenshot_2014-11-24-14-32-13.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\351\205\222\345\272\227\351\242\204\350\256\242/\351\234\200\346\261\202\346\226\207\346\241\243/\351\200\232\344\273\230\345\256\2353.X-\351\205\222\345\272\227\345\210\206\351\224\200\351\234\200\346\261\202\346\226\207\346\241\243.doc" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\351\205\222\345\272\227\351\242\204\350\256\242/\351\234\200\346\261\202\346\226\207\346\241\243/\351\200\232\344\273\230\345\256\2353.4.0-\351\205\222\345\272\227\345\210\206\351\224\200\351\234\200\346\261\202\346\226\207\346\241\243.doc" similarity index 90% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\351\205\222\345\272\227\351\242\204\350\256\242/\351\234\200\346\261\202\346\226\207\346\241\243/\351\200\232\344\273\230\345\256\2353.X-\351\205\222\345\272\227\345\210\206\351\224\200\351\234\200\346\261\202\346\226\207\346\241\243.doc" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\351\205\222\345\272\227\351\242\204\350\256\242/\351\234\200\346\261\202\346\226\207\346\241\243/\351\200\232\344\273\230\345\256\2353.4.0-\351\205\222\345\272\227\345\210\206\351\224\200\351\234\200\346\261\202\346\226\207\346\241\243.doc" index 3847ade..57d4769 100644 Binary files "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\351\205\222\345\272\227\351\242\204\350\256\242/\351\234\200\346\261\202\346\226\207\346\241\243/\351\200\232\344\273\230\345\256\2353.X-\351\205\222\345\272\227\345\210\206\351\224\200\351\234\200\346\261\202\346\226\207\346\241\243.doc" and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\351\205\222\345\272\227\351\242\204\350\256\242/\351\234\200\346\261\202\346\226\207\346\241\243/\351\200\232\344\273\230\345\256\2353.4.0-\351\205\222\345\272\227\345\210\206\351\224\200\351\234\200\346\261\202\346\226\207\346\241\243.doc" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/10\346\224\266\346\254\276\351\207\221\351\242\235\345\241\253\345\206\231\346\234\211\350\257\257\346\217\220\347\244\272.jpg" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/10\346\224\266\346\254\276\351\207\221\351\242\235\345\241\253\345\206\231\346\234\211\350\257\257\346\217\220\347\244\272.jpg" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/10\346\224\266\346\254\276\351\207\221\351\242\235\345\241\253\345\206\231\346\234\211\350\257\257\346\217\220\347\244\272.jpg" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/10\346\224\266\346\254\276\351\207\221\351\242\235\345\241\253\345\206\231\346\234\211\350\257\257\346\217\220\347\244\272.jpg" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/11\346\224\266\346\254\276\351\207\221\351\242\235\350\266\205\351\231\220\346\217\220\347\244\272.jpg" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/11\346\224\266\346\254\276\351\207\221\351\242\235\350\266\205\351\231\220\346\217\220\347\244\272.jpg" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/11\346\224\266\346\254\276\351\207\221\351\242\235\350\266\205\351\231\220\346\217\220\347\244\272.jpg" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/11\346\224\266\346\254\276\351\207\221\351\242\235\350\266\205\351\231\220\346\217\220\347\244\272.jpg" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/background@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/background@2x.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/background@2x.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/background@2x.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/bl_btn_nor@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/bl_btn_nor@2x.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/bl_btn_nor@2x.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/bl_btn_nor@2x.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/bl_btn_pre@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/bl_btn_pre@2x.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/bl_btn_pre@2x.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/bl_btn_pre@2x.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/cardicon@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/cardicon@2x.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/cardicon@2x.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/cardicon@2x.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/click@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/click@2x.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/click@2x.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/click@2x.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/click_norl4@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/click_norl4@2x.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/click_norl4@2x.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/click_norl4@2x.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/click_norl@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/click_norl@2x.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/click_norl@2x.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/click_norl@2x.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/historybtn_normal@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/historybtn_normal@2x.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/historybtn_normal@2x.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/historybtn_normal@2x.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/historybtn_pressed@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/historybtn_pressed@2x.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/historybtn_pressed@2x.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/historybtn_pressed@2x.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/input@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/input@2x.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/input@2x.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/input@2x.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/line@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/line@2x.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/line@2x.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/line@2x.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/patten1@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/patten1@2x.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/patten1@2x.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/patten1@2x.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/patten2@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/patten2@2x.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/patten2@2x.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/patten2@2x.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/phone_book@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/phone_book@2x.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/phone_book@2x.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/phone_book@2x.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank1.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank1.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank1.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank1.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank101.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank101.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank101.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank101.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank11.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank11.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank11.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank11.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank12.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank12.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank12.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank12.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank13.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank13.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank13.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank13.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank14.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank14.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank14.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank14.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank15.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank15.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank15.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank15.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank16.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank16.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank16.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank17.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank17.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank17.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank17.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank28.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank28.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank28.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank28.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank3.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank3.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank3.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank3.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank4.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank4.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank4.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank4.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank7.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank7.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank7.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank7.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank8.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank8.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank8.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank8.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank90.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank90.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank90.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank90.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank97.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank97.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank97.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/bank97.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/\346\267\261\345\234\263\345\217\221\345\261\225\351\223\266\350\241\214.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/\346\267\261\345\234\263\345\217\221\345\261\225\351\223\266\350\241\214.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/\346\267\261\345\234\263\345\217\221\345\261\225\351\223\266\350\241\214.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/small/\346\267\261\345\234\263\345\217\221\345\261\225\351\223\266\350\241\214.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/success@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/success@2x.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/success@2x.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/success@2x.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/warning@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/warning@2x.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/warning@2x.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/warning@2x.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/ye_btn_nor@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/ye_btn_nor@2x.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/ye_btn_nor@2x.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/ye_btn_nor@2x.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/ye_btn_pre@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/ye_btn_pre@2x.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/ye_btn_pre@2x.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/ye_btn_pre@2x.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/yellowbtn@2x@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/yellowbtn@2x@2x.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/yellowbtn@2x@2x.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/yellowbtn@2x@2x.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/yellowbtn_selected@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/yellowbtn_selected@2x.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/yellowbtn_selected@2x.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/yellowbtn_selected@2x.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/\346\224\266\346\254\276\350\264\246\345\217\267A@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/\346\224\266\346\254\276\350\264\246\345\217\267A@2x.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/\346\224\266\346\254\276\350\264\246\345\217\267A@2x.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/\346\224\266\346\254\276\350\264\246\345\217\267A@2x.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/\347\237\255\344\277\241\346\224\266\346\254\276-28.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/\347\237\255\344\277\241\346\224\266\346\254\276-28.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/\347\237\255\344\277\241\346\224\266\346\254\276-28.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/\347\237\255\344\277\241\346\224\266\346\254\276-28.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/\347\237\255\344\277\241\346\224\266\346\254\276B2@2X.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/\347\237\255\344\277\241\346\224\266\346\254\276B2@2X.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/\347\237\255\344\277\241\346\224\266\346\254\276B2@2X.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1accessory/\347\237\255\344\277\241\346\224\266\346\254\276B2@2X.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1\344\270\232\345\212\241\345\217\227\347\220\206\351\241\265\351\235\242.jpg" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1\344\270\232\345\212\241\345\217\227\347\220\206\351\241\265\351\235\242.jpg" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1\344\270\232\345\212\241\345\217\227\347\220\206\351\241\265\351\235\242.jpg" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1\344\270\232\345\212\241\345\217\227\347\220\206\351\241\265\351\235\242.jpg" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1\344\270\232\345\212\241\345\217\227\347\220\206\351\241\265\351\235\242_MarkMan.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1\344\270\232\345\212\241\345\217\227\347\220\206\351\241\265\351\235\242_MarkMan.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1\344\270\232\345\212\241\345\217\227\347\220\206\351\241\265\351\235\242_MarkMan.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1\344\270\232\345\212\241\345\217\227\347\220\206\351\241\265\351\235\242_MarkMan.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1\344\270\232\345\212\241\345\217\227\347\220\206\351\241\265\351\235\242_MarkMan2.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1\344\270\232\345\212\241\345\217\227\347\220\206\351\241\265\351\235\242_MarkMan2.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1\344\270\232\345\212\241\345\217\227\347\220\206\351\241\265\351\235\242_MarkMan2.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1\344\270\232\345\212\241\345\217\227\347\220\206\351\241\265\351\235\242_MarkMan2.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1\350\256\276\345\256\232\346\224\266\346\254\276\350\264\246\345\217\267\346\217\220\347\244\272\347\225\214\351\235\242.jpg" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1\350\256\276\345\256\232\346\224\266\346\254\276\350\264\246\345\217\267\346\217\220\347\244\272\347\225\214\351\235\242.jpg" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1\350\256\276\345\256\232\346\224\266\346\254\276\350\264\246\345\217\267\346\217\220\347\244\272\347\225\214\351\235\242.jpg" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/1\350\256\276\345\256\232\346\224\266\346\254\276\350\264\246\345\217\267\346\217\220\347\244\272\347\225\214\351\235\242.jpg" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/2\347\273\223\346\236\234\351\200\232\347\237\245\347\225\214\351\235\242.jpg" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/2\347\273\223\346\236\234\351\200\232\347\237\245\347\225\214\351\235\242.jpg" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/2\347\273\223\346\236\234\351\200\232\347\237\245\347\225\214\351\235\242.jpg" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/2\347\273\223\346\236\234\351\200\232\347\237\245\347\225\214\351\235\242.jpg" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/3\350\256\276\347\275\256\351\273\230\350\256\244\346\224\266\346\254\276\350\264\246\346\210\267.jpg" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/3\350\256\276\347\275\256\351\273\230\350\256\244\346\224\266\346\254\276\350\264\246\346\210\267.jpg" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/3\350\256\276\347\275\256\351\273\230\350\256\244\346\224\266\346\254\276\350\264\246\346\210\267.jpg" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/3\350\256\276\347\275\256\351\273\230\350\256\244\346\224\266\346\254\276\350\264\246\346\210\267.jpg" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/4\346\267\273\345\212\240\351\223\266\350\241\214\345\215\241A.jpg" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/4\346\267\273\345\212\240\351\223\266\350\241\214\345\215\241A.jpg" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/4\346\267\273\345\212\240\351\223\266\350\241\214\345\215\241A.jpg" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/4\346\267\273\345\212\240\351\223\266\350\241\214\345\215\241A.jpg" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/4\346\267\273\345\212\240\351\223\266\350\241\214\345\215\241B.jpg" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/4\346\267\273\345\212\240\351\223\266\350\241\214\345\215\241B.jpg" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/4\346\267\273\345\212\240\351\223\266\350\241\214\345\215\241B.jpg" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/4\346\267\273\345\212\240\351\223\266\350\241\214\345\215\241B.jpg" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/6\346\224\266\346\254\276\344\270\215\346\210\220\345\212\237\346\217\220\347\244\272\347\225\214\351\235\242.jpg" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/6\346\224\266\346\254\276\344\270\215\346\210\220\345\212\237\346\217\220\347\244\272\347\225\214\351\235\242.jpg" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/6\346\224\266\346\254\276\344\270\215\346\210\220\345\212\237\346\217\220\347\244\272\347\225\214\351\235\242.jpg" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/6\346\224\266\346\254\276\344\270\215\346\210\220\345\212\237\346\217\220\347\244\272\347\225\214\351\235\242.jpg" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/7\346\211\213\346\234\272\345\217\267\347\240\201\344\270\215\346\255\243\347\241\256\346\217\220\347\244\272.jpg" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/7\346\211\213\346\234\272\345\217\267\347\240\201\344\270\215\346\255\243\347\241\256\346\217\220\347\244\272.jpg" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/7\346\211\213\346\234\272\345\217\267\347\240\201\344\270\215\346\255\243\347\241\256\346\217\220\347\244\272.jpg" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/7\346\211\213\346\234\272\345\217\267\347\240\201\344\270\215\346\255\243\347\241\256\346\217\220\347\244\272.jpg" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/8\347\225\231\350\250\200\350\266\205\351\225\277\346\217\220\347\244\272.jpg" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/8\347\225\231\350\250\200\350\266\205\351\225\277\346\217\220\347\244\272.jpg" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/8\347\225\231\350\250\200\350\266\205\351\225\277\346\217\220\347\244\272.jpg" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/8\347\225\231\350\250\200\350\266\205\351\225\277\346\217\220\347\244\272.jpg" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/9\347\225\231\350\250\200\345\206\205\345\256\271\346\255\247\344\271\211\346\217\220\347\244\272.jpg" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/9\347\225\231\350\250\200\345\206\205\345\256\271\346\255\247\344\271\211\346\217\220\347\244\272.jpg" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/9\347\225\231\350\250\200\345\206\205\345\256\271\346\255\247\344\271\211\346\217\220\347\244\272.jpg" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/9\347\225\231\350\250\200\345\206\205\345\256\271\346\255\247\344\271\211\346\217\220\347\244\272.jpg" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/mcb@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/mcb@2x.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/mcb@2x.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/mcb@2x.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/\345\216\206\345\217\262\350\256\260\345\275\225.jpg" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/\345\216\206\345\217\262\350\256\260\345\275\225.jpg" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/\345\216\206\345\217\262\350\256\260\345\275\225.jpg" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/\345\216\206\345\217\262\350\256\260\345\275\225.jpg" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/\351\231\204\351\223\266\350\241\214\345\215\241\346\250\241\345\235\227\344\277\256\346\224\271\346\225\210\346\236\234\345\233\276/click@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/\351\231\204\351\223\266\350\241\214\345\215\241\346\250\241\345\235\227\344\277\256\346\224\271\346\225\210\346\236\234\345\233\276/click@2x.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/\351\231\204\351\223\266\350\241\214\345\215\241\346\250\241\345\235\227\344\277\256\346\224\271\346\225\210\346\236\234\345\233\276/click@2x.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/\351\231\204\351\223\266\350\241\214\345\215\241\346\250\241\345\235\227\344\277\256\346\224\271\346\225\210\346\236\234\345\233\276/click@2x.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/\351\231\204\351\223\266\350\241\214\345\215\241\346\250\241\345\235\227\344\277\256\346\224\271\346\225\210\346\236\234\345\233\276/click_norl@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/\351\231\204\351\223\266\350\241\214\345\215\241\346\250\241\345\235\227\344\277\256\346\224\271\346\225\210\346\236\234\345\233\276/click_norl@2x.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/\351\231\204\351\223\266\350\241\214\345\215\241\346\250\241\345\235\227\344\277\256\346\224\271\346\225\210\346\236\234\345\233\276/click_norl@2x.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/\351\231\204\351\223\266\350\241\214\345\215\241\346\250\241\345\235\227\344\277\256\346\224\271\346\225\210\346\236\234\345\233\276/click_norl@2x.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/\351\231\204\351\223\266\350\241\214\345\215\241\346\250\241\345\235\227\344\277\256\346\224\271\346\225\210\346\236\234\345\233\276/\347\237\255\344\277\241\346\224\266\346\254\276-28.jpg" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/\351\231\204\351\223\266\350\241\214\345\215\241\346\250\241\345\235\227\344\277\256\346\224\271\346\225\210\346\236\234\345\233\276/\347\237\255\344\277\241\346\224\266\346\254\276-28.jpg" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/\351\231\204\351\223\266\350\241\214\345\215\241\346\250\241\345\235\227\344\277\256\346\224\271\346\225\210\346\236\234\345\233\276/\347\237\255\344\277\241\346\224\266\346\254\276-28.jpg" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/\351\231\204\351\223\266\350\241\214\345\215\241\346\250\241\345\235\227\344\277\256\346\224\271\346\225\210\346\236\234\345\233\276/\347\237\255\344\277\241\346\224\266\346\254\276-28.jpg" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/\351\231\204\351\223\266\350\241\214\345\215\241\346\250\241\345\235\227\344\277\256\346\224\271\346\225\210\346\236\234\345\233\276/\347\237\255\344\277\241\346\224\266\346\254\276-29.jpg" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/\351\231\204\351\223\266\350\241\214\345\215\241\346\250\241\345\235\227\344\277\256\346\224\271\346\225\210\346\236\234\345\233\276/\347\237\255\344\277\241\346\224\266\346\254\276-29.jpg" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/\351\231\204\351\223\266\350\241\214\345\215\241\346\250\241\345\235\227\344\277\256\346\224\271\346\225\210\346\236\234\345\233\276/\347\237\255\344\277\241\346\224\266\346\254\276-29.jpg" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/\351\231\204\351\223\266\350\241\214\345\215\241\346\250\241\345\235\227\344\277\256\346\224\271\346\225\210\346\236\234\345\233\276/\347\237\255\344\277\241\346\224\266\346\254\276-29.jpg" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/\351\231\204\351\223\266\350\241\214\345\215\241\346\250\241\345\235\227\344\277\256\346\224\271\346\225\210\346\236\234\345\233\276/\347\237\255\344\277\241\346\224\266\346\254\276-30.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/\351\231\204\351\223\266\350\241\214\345\215\241\346\250\241\345\235\227\344\277\256\346\224\271\346\225\210\346\236\234\345\233\276/\347\237\255\344\277\241\346\224\266\346\254\276-30.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/\351\231\204\351\223\266\350\241\214\345\215\241\346\250\241\345\235\227\344\277\256\346\224\271\346\225\210\346\236\234\345\233\276/\347\237\255\344\277\241\346\224\266\346\254\276-30.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/\351\231\204\351\223\266\350\241\214\345\215\241\346\250\241\345\235\227\344\277\256\346\224\271\346\225\210\346\236\234\345\233\276/\347\237\255\344\277\241\346\224\266\346\254\276-30.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/\351\231\204\351\223\266\350\241\214\345\215\241\346\250\241\345\235\227\344\277\256\346\224\271\346\225\210\346\236\234\345\233\276/\347\237\255\344\277\241\346\224\266\346\254\276-31.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/\351\231\204\351\223\266\350\241\214\345\215\241\346\250\241\345\235\227\344\277\256\346\224\271\346\225\210\346\236\234\345\233\276/\347\237\255\344\277\241\346\224\266\346\254\276-31.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/\351\231\204\351\223\266\350\241\214\345\215\241\346\250\241\345\235\227\344\277\256\346\224\271\346\225\210\346\236\234\345\233\276/\347\237\255\344\277\241\346\224\266\346\254\276-31.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/\351\231\204\351\223\266\350\241\214\345\215\241\346\250\241\345\235\227\344\277\256\346\224\271\346\225\210\346\236\234\345\233\276/\347\237\255\344\277\241\346\224\266\346\254\276-31.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/\351\231\204\351\223\266\350\241\214\345\215\241\346\250\241\345\235\227\344\277\256\346\224\271\346\225\210\346\236\234\345\233\276/\347\274\226\350\276\221\351\223\266\350\241\214\345\215\241.jpg" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/\351\231\204\351\223\266\350\241\214\345\215\241\346\250\241\345\235\227\344\277\256\346\224\271\346\225\210\346\236\234\345\233\276/\347\274\226\350\276\221\351\223\266\350\241\214\345\215\241.jpg" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/\351\231\204\351\223\266\350\241\214\345\215\241\346\250\241\345\235\227\344\277\256\346\224\271\346\225\210\346\236\234\345\233\276/\347\274\226\350\276\221\351\223\266\350\241\214\345\215\241.jpg" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/UI\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276/\351\231\204\351\223\266\350\241\214\345\215\241\346\250\241\345\235\227\344\277\256\346\224\271\346\225\210\346\236\234\345\233\276/\347\274\226\350\276\221\351\223\266\350\241\214\345\215\241.jpg" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/chm_start.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/chm_start.html" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/chm_start.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/chm_start.html" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/data/document.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/data/document.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/data/document.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/data/document.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/data/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/data/styles.css" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/data/styles.css" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/data/styles.css" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/home/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/home/data.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/home/data.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/home/data.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/home/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/home/styles.css" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/home/styles.css" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/home/styles.css" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\344\270\232\345\212\241\351\241\265/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\344\270\232\345\212\241\351\241\265/data.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\344\270\232\345\212\241\351\241\265/data.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\344\270\232\345\212\241\351\241\265/data.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\344\270\232\345\212\241\351\241\265/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\344\270\232\345\212\241\351\241\265/styles.css" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\344\270\232\345\212\241\351\241\265/styles.css" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\344\270\232\345\212\241\351\241\265/styles.css" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257/data.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257/data.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257/data.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257/styles.css" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257/styles.css" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257/styles.css" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\346\224\266\346\254\276\350\264\246\346\210\267\345\217\230\346\233\264/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\346\224\266\346\254\276\350\264\246\346\210\267\345\217\230\346\233\264/data.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\346\224\266\346\254\276\350\264\246\346\210\267\345\217\230\346\233\264/data.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\346\224\266\346\254\276\350\264\246\346\210\267\345\217\230\346\233\264/data.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\346\224\266\346\254\276\350\264\246\346\210\267\345\217\230\346\233\264/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\346\224\266\346\254\276\350\264\246\346\210\267\345\217\230\346\233\264/styles.css" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\346\224\266\346\254\276\350\264\246\346\210\267\345\217\230\346\233\264/styles.css" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\346\224\266\346\254\276\350\264\246\346\210\267\345\217\230\346\233\264/styles.css" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\346\226\260\345\242\236\351\273\230\350\256\244\346\224\266\346\254\276\350\264\246\346\210\267/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\346\226\260\345\242\236\351\273\230\350\256\244\346\224\266\346\254\276\350\264\246\346\210\267/data.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\346\226\260\345\242\236\351\273\230\350\256\244\346\224\266\346\254\276\350\264\246\346\210\267/data.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\346\226\260\345\242\236\351\273\230\350\256\244\346\224\266\346\254\276\350\264\246\346\210\267/data.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\346\226\260\345\242\236\351\273\230\350\256\244\346\224\266\346\254\276\350\264\246\346\210\267/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\346\226\260\345\242\236\351\273\230\350\256\244\346\224\266\346\254\276\350\264\246\346\210\267/styles.css" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\346\226\260\345\242\236\351\273\230\350\256\244\346\224\266\346\254\276\350\264\246\346\210\267/styles.css" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\346\226\260\345\242\236\351\273\230\350\256\244\346\224\266\346\254\276\350\264\246\346\210\267/styles.css" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\347\273\223\346\236\234\351\200\232\347\237\245\351\241\265/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\347\273\223\346\236\234\351\200\232\347\237\245\351\241\265/data.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\347\273\223\346\236\234\351\200\232\347\237\245\351\241\265/data.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\347\273\223\346\236\234\351\200\232\347\237\245\351\241\265/data.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\347\273\223\346\236\234\351\200\232\347\237\245\351\241\265/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\347\273\223\346\236\234\351\200\232\347\237\245\351\241\265/styles.css" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\347\273\223\346\236\234\351\200\232\347\237\245\351\241\265/styles.css" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\347\273\223\346\236\234\351\200\232\347\237\245\351\241\265/styles.css" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\351\200\211\346\213\251\351\273\230\350\256\244\346\224\266\346\254\276\350\264\246\346\210\267/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\351\200\211\346\213\251\351\273\230\350\256\244\346\224\266\346\254\276\350\264\246\346\210\267/data.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\351\200\211\346\213\251\351\273\230\350\256\244\346\224\266\346\254\276\350\264\246\346\210\267/data.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\351\200\211\346\213\251\351\273\230\350\256\244\346\224\266\346\254\276\350\264\246\346\210\267/data.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\351\200\211\346\213\251\351\273\230\350\256\244\346\224\266\346\254\276\350\264\246\346\210\267/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\351\200\211\346\213\251\351\273\230\350\256\244\346\224\266\346\254\276\350\264\246\346\210\267/styles.css" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\351\200\211\346\213\251\351\273\230\350\256\244\346\224\266\346\254\276\350\264\246\346\210\267/styles.css" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\351\200\211\346\213\251\351\273\230\350\256\244\346\224\266\346\254\276\350\264\246\346\210\267/styles.css" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\351\223\266\350\241\214\345\215\241\345\210\227\350\241\250\351\241\265/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\351\223\266\350\241\214\345\215\241\345\210\227\350\241\250\351\241\265/data.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\351\223\266\350\241\214\345\215\241\345\210\227\350\241\250\351\241\265/data.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\351\223\266\350\241\214\345\215\241\345\210\227\350\241\250\351\241\265/data.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\351\223\266\350\241\214\345\215\241\345\210\227\350\241\250\351\241\265/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\351\223\266\350\241\214\345\215\241\345\210\227\350\241\250\351\241\265/styles.css" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\351\223\266\350\241\214\345\215\241\345\210\227\350\241\250\351\241\265/styles.css" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\351\223\266\350\241\214\345\215\241\345\210\227\350\241\250\351\241\265/styles.css" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\351\246\226\351\241\265\351\235\242/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\351\246\226\351\241\265\351\235\242/data.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\351\246\226\351\241\265\351\235\242/data.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\351\246\226\351\241\265\351\235\242/data.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\351\246\226\351\241\265\351\235\242/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\351\246\226\351\241\265\351\235\242/styles.css" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\351\246\226\351\241\265\351\235\242/styles.css" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/files/\351\246\226\351\241\265\351\235\242/styles.css" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/home.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/home.html" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/home.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/home.html" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265/keyboard1_u51.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265/keyboard1_u51.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265/keyboard1_u51.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265/keyboard1_u51.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265/keyboard_u53.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265/keyboard_u53.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265/keyboard_u53.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265/keyboard_u53.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265/u10_line.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265/u10_line.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265/u10_line.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265/u10_line.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265/u15.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265/u15.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265/u15.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265/u15.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265/u24.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265/u24.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265/u24.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265/u24.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265/u33.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265/u33.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265/u33.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265/u33.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\217\221\346\224\276\345\267\245\350\265\204/u4.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265/u4.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\217\221\346\224\276\345\267\245\350\265\204/u4.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265/u4.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265/u58.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265/u58.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265/u58.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265/u58.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265/u6.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265/u6.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265/u6.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265/u6.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257/u10_line.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257/u10_line.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257/u10_line.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257/u10_line.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257/u15.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257/u15.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257/u15.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257/u15.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257/u24.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257/u24.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257/u24.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257/u24.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257/u33.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257/u33.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257/u33.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257/u33.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\346\224\266\345\217\221/u4.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257/u4.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\346\224\266\345\217\221/u4.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257/u4.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257/u54.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257/u54.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257/u54.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257/u54.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257/u57.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257/u57.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257/u57.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257/u57.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257/u59.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257/u59.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257/u59.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257/u59.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257/u6.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257/u6.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257/u6.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257/u6.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257/u61.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257/u61.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257/u61.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257/u61.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257/u65.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257/u65.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257/u65.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257/u65.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\346\224\266\346\254\276\350\264\246\346\210\267\345\217\230\346\233\264/u4.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\346\224\266\346\254\276\350\264\246\346\210\267\345\217\230\346\233\264/u4.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\346\224\266\346\254\276\350\264\246\346\210\267\345\217\230\346\233\264/u4.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\346\224\266\346\254\276\350\264\246\346\210\267\345\217\230\346\233\264/u4.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\346\226\260\345\242\236\351\273\230\350\256\244\346\224\266\346\254\276\350\264\246\346\210\267/u11.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\346\226\260\345\242\236\351\273\230\350\256\244\346\224\266\346\254\276\350\264\246\346\210\267/u11.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\346\226\260\345\242\236\351\273\230\350\256\244\346\224\266\346\254\276\350\264\246\346\210\267/u11.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\346\226\260\345\242\236\351\273\230\350\256\244\346\224\266\346\254\276\350\264\246\346\210\267/u11.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\346\226\260\345\242\236\351\273\230\350\256\244\346\224\266\346\254\276\350\264\246\346\210\267/u21.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\346\226\260\345\242\236\351\273\230\350\256\244\346\224\266\346\254\276\350\264\246\346\210\267/u21.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\346\226\260\345\242\236\351\273\230\350\256\244\346\224\266\346\254\276\350\264\246\346\210\267/u21.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\346\226\260\345\242\236\351\273\230\350\256\244\346\224\266\346\254\276\350\264\246\346\210\267/u21.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\346\226\260\345\242\236\351\273\230\350\256\244\346\224\266\346\254\276\350\264\246\346\210\267/u23.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\346\226\260\345\242\236\351\273\230\350\256\244\346\224\266\346\254\276\350\264\246\346\210\267/u23.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\346\226\260\345\242\236\351\273\230\350\256\244\346\224\266\346\254\276\350\264\246\346\210\267/u23.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\346\226\260\345\242\236\351\273\230\350\256\244\346\224\266\346\254\276\350\264\246\346\210\267/u23.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\351\200\211\346\213\251\351\273\230\350\256\244\346\224\266\346\254\276\350\264\246\346\210\267/u18.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\351\200\211\346\213\251\351\273\230\350\256\244\346\224\266\346\254\276\350\264\246\346\210\267/u18.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\351\200\211\346\213\251\351\273\230\350\256\244\346\224\266\346\254\276\350\264\246\346\210\267/u18.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\351\200\211\346\213\251\351\273\230\350\256\244\346\224\266\346\254\276\350\264\246\346\210\267/u18.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\351\200\211\346\213\251\351\273\230\350\256\244\346\224\266\346\254\276\350\264\246\346\210\267/u28.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\351\200\211\346\213\251\351\273\230\350\256\244\346\224\266\346\254\276\350\264\246\346\210\267/u28.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\351\200\211\346\213\251\351\273\230\350\256\244\346\224\266\346\254\276\350\264\246\346\210\267/u28.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\351\200\211\346\213\251\351\273\230\350\256\244\346\224\266\346\254\276\350\264\246\346\210\267/u28.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\351\223\266\350\241\214\345\215\241\345\210\227\350\241\250\351\241\265/u15.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\351\223\266\350\241\214\345\215\241\345\210\227\350\241\250\351\241\265/u15.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\351\223\266\350\241\214\345\215\241\345\210\227\350\241\250\351\241\265/u15.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\351\223\266\350\241\214\345\215\241\345\210\227\350\241\250\351\241\265/u15.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\351\223\266\350\241\214\345\215\241\345\210\227\350\241\250\351\241\265/u25.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\351\223\266\350\241\214\345\215\241\345\210\227\350\241\250\351\241\265/u25.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\351\223\266\350\241\214\345\215\241\345\210\227\350\241\250\351\241\265/u25.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\351\223\266\350\241\214\345\215\241\345\210\227\350\241\250\351\241\265/u25.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\351\246\226\351\241\265\351\235\242/u0.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\351\246\226\351\241\265\351\235\242/u0.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\351\246\226\351\241\265\351\235\242/u0.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\351\246\226\351\241\265\351\235\242/u0.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\351\246\226\351\241\265\351\235\242/u2.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\351\246\226\351\241\265\351\235\242/u2.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\351\246\226\351\241\265\351\235\242/u2.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\351\246\226\351\241\265\351\235\242/u2.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\351\246\226\351\241\265\351\235\242/u4.jpg" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\351\246\226\351\241\265\351\235\242/u4.jpg" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\351\246\226\351\241\265\351\235\242/u4.jpg" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\351\246\226\351\241\265\351\235\242/u4.jpg" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\351\246\226\351\241\265\351\235\242/u6.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\351\246\226\351\241\265\351\235\242/u6.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\351\246\226\351\241\265\351\235\242/u6.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\351\246\226\351\241\265\351\235\242/u6.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/index.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/index.html" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/index.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/index.html" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/page_notes/page_notes.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/page_notes/page_notes.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/page_notes/page_notes.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/page_notes/page_notes.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/page_notes/styles/page_notes.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/page_notes/styles/page_notes.css" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/page_notes/styles/page_notes.css" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/page_notes/styles/page_notes.css" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/sitemap.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/sitemap.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/sitemap.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/sitemap.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/079_page_16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/079_page_16.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/079_page_16.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/079_page_16.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/086_case_16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/086_case_16.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/086_case_16.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/086_case_16.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/225_responsive_16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/225_responsive_16.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/225_responsive_16.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/225_responsive_16.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/228_togglenotes_16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/228_togglenotes_16.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/228_togglenotes_16.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/228_togglenotes_16.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/229_variables_16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/229_variables_16.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/229_variables_16.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/229_variables_16.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/231_event_16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/231_event_16.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/231_event_16.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/231_event_16.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/232_search_16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/232_search_16.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/232_search_16.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/232_search_16.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/233_hyperlink_16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/233_hyperlink_16.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/233_hyperlink_16.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/233_hyperlink_16.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/235_folderclosed_16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/235_folderclosed_16.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/235_folderclosed_16.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/235_folderclosed_16.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/236_folderopen_16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/236_folderopen_16.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/236_folderopen_16.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/236_folderopen_16.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/adaptivecheck.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/adaptivecheck.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/adaptivecheck.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/adaptivecheck.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/images.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/images.html" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/images.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/images.html" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/minus.gif" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/minus.gif" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/minus.gif" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/minus.gif" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/plus.gif" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/plus.gif" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/plus.gif" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/plus.gif" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/sitemap.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/sitemap.css" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/sitemap.css" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/sitemap.css" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/Other.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/Other.html" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/Other.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/Other.html" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/chrome/allow_access.gif" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/chrome/allow_access.gif" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/chrome/allow_access.gif" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/chrome/allow_access.gif" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/chrome/axure-chrome-extension.crx" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/chrome/axure-chrome-extension.crx" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/chrome/axure-chrome-extension.crx" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/chrome/axure-chrome-extension.crx" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/chrome/axure_logo.gif" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/chrome/axure_logo.gif" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/chrome/axure_logo.gif" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/chrome/axure_logo.gif" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/chrome/axure_logo.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/chrome/axure_logo.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/chrome/axure_logo.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/chrome/axure_logo.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/chrome/chrome.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/chrome/chrome.html" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/chrome/chrome.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/chrome/chrome.html" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/chrome/extensions_menu.gif" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/chrome/extensions_menu.gif" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/chrome/extensions_menu.gif" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/chrome/extensions_menu.gif" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/chrome/splitter.gif" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/chrome/splitter.gif" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/chrome/splitter.gif" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/chrome/splitter.gif" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/chrome/splitter.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/chrome/splitter.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/chrome/splitter.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/chrome/splitter.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/axure_rp_page.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/axure_rp_page.css" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/axure_rp_page.css" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/axure_rp_page.css" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/default.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/default.css" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/default.css" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/default.css" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/images.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/images.html" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/images.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/images.html" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/newwindow.gif" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/newwindow.gif" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/newwindow.gif" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/newwindow.gif" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/note.gif" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/note.gif" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/note.gif" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/note.gif" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-bg_flat_0_aaaaaa_40x100.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/ui-bg_flat_0_aaaaaa_40x100.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-bg_flat_0_aaaaaa_40x100.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/ui-bg_flat_0_aaaaaa_40x100.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-bg_glass_55_fbf9ee_1x400.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/ui-bg_glass_55_fbf9ee_1x400.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-bg_glass_55_fbf9ee_1x400.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/ui-bg_glass_55_fbf9ee_1x400.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-bg_glass_65_ffffff_1x400.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/ui-bg_glass_65_ffffff_1x400.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-bg_glass_65_ffffff_1x400.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/ui-bg_glass_65_ffffff_1x400.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-bg_glass_75_dadada_1x400.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/ui-bg_glass_75_dadada_1x400.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-bg_glass_75_dadada_1x400.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/ui-bg_glass_75_dadada_1x400.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-bg_glass_75_e6e6e6_1x400.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/ui-bg_glass_75_e6e6e6_1x400.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-bg_glass_75_e6e6e6_1x400.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/ui-bg_glass_75_e6e6e6_1x400.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-bg_glass_75_ffffff_1x400.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/ui-bg_glass_75_ffffff_1x400.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-bg_glass_75_ffffff_1x400.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/ui-bg_glass_75_ffffff_1x400.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-bg_highlight-soft_75_cccccc_1x100.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/ui-bg_highlight-soft_75_cccccc_1x100.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-bg_highlight-soft_75_cccccc_1x100.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/ui-bg_highlight-soft_75_cccccc_1x100.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-bg_inset-soft_95_fef1ec_1x100.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/ui-bg_inset-soft_95_fef1ec_1x100.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-bg_inset-soft_95_fef1ec_1x100.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/ui-bg_inset-soft_95_fef1ec_1x100.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-icons_222222_256x240.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/ui-icons_222222_256x240.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-icons_222222_256x240.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/ui-icons_222222_256x240.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-icons_2e83ff_256x240.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/ui-icons_2e83ff_256x240.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-icons_2e83ff_256x240.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/ui-icons_2e83ff_256x240.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-icons_454545_256x240.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/ui-icons_454545_256x240.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-icons_454545_256x240.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/ui-icons_454545_256x240.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-icons_888888_256x240.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/ui-icons_888888_256x240.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-icons_888888_256x240.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/ui-icons_888888_256x240.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-icons_cd0a0a_256x240.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/ui-icons_cd0a0a_256x240.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-icons_cd0a0a_256x240.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/ui-icons_cd0a0a_256x240.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/jquery-ui-themes.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/jquery-ui-themes.css" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/jquery-ui-themes.css" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/jquery-ui-themes.css" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/reset.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/reset.css" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/reset.css" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/reset.css" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/expand.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/expand.html" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/expand.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/expand.html" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/images/259_close_12rollover1.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/images/259_close_12rollover1.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/images/259_close_12rollover1.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/images/259_close_12rollover1.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/images/259_close_12rollover2.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/images/259_close_12rollover2.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/images/259_close_12rollover2.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/images/259_close_12rollover2.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/images/260_collapse_12rollover1.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/images/260_collapse_12rollover1.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/images/260_collapse_12rollover1.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/images/260_collapse_12rollover1.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/images/260_collapse_12rollover2.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/images/260_collapse_12rollover2.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/images/260_collapse_12rollover2.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/images/260_collapse_12rollover2.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/images/261_expand_12rollover1.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/images/261_expand_12rollover1.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/images/261_expand_12rollover1.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/images/261_expand_12rollover1.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/images/261_expand_12rollover2.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/images/261_expand_12rollover2.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/images/261_expand_12rollover2.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/images/261_expand_12rollover2.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/images/images.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/images/images.html" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/images/images.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/images/images.html" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/images/transparent.gif" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/images/transparent.gif" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/images/transparent.gif" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/images/transparent.gif" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/reload.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/reload.html" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/reload.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/reload.html" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/action.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/action.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/action.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/action.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/adaptive.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/adaptive.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/adaptive.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/adaptive.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/annotation.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/annotation.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/annotation.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/annotation.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/axQuery.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/axQuery.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/axQuery.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/axQuery.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/axQuery.std.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/axQuery.std.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/axQuery.std.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/axQuery.std.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/doc.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/doc.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/doc.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/doc.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/drag.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/drag.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/drag.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/drag.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/events.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/events.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/events.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/events.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/expr.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/expr.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/expr.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/expr.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/flyout.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/flyout.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/flyout.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/flyout.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/geometry.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/geometry.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/geometry.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/geometry.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/globals.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/globals.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/globals.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/globals.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/ie.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/ie.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/ie.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/ie.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/init.temp.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/init.temp.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/init.temp.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/init.temp.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/legacy.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/legacy.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/legacy.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/legacy.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/model.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/model.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/model.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/model.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/move.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/move.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/move.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/move.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/repeater.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/repeater.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/repeater.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/repeater.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/sto.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/sto.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/sto.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/sto.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/style.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/style.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/style.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/style.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/tree.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/tree.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/tree.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/tree.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/utils.temp.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/utils.temp.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/utils.temp.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/utils.temp.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/variables.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/variables.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/variables.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/variables.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/viewer.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/viewer.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/viewer.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/viewer.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/visibility.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/visibility.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/visibility.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/visibility.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axutils.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axutils.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axutils.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axutils.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/jquery-1.7.1.min.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/jquery-1.7.1.min.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/jquery-1.7.1.min.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/jquery-1.7.1.min.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/jquery-ui-1.8.10.custom.min.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/jquery-ui-1.8.10.custom.min.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/jquery-ui-1.8.10.custom.min.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/jquery-ui-1.8.10.custom.min.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/messagecenter.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/messagecenter.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/messagecenter.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/messagecenter.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/player/axplayer.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/player/axplayer.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/player/axplayer.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/player/axplayer.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/player/splitter.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/player/splitter.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/player/splitter.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/player/splitter.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/start.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/start.html" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/start.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/start.html" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/start_c_1.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/start_c_1.html" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/start_c_1.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/start_c_1.html" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/\344\270\232\345\212\241\351\241\265.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/\344\270\232\345\212\241\351\241\265.html" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/\344\270\232\345\212\241\351\241\265.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/\344\270\232\345\212\241\351\241\265.html" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257.html" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257.html" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/\346\224\266\346\254\276\350\264\246\346\210\267\345\217\230\346\233\264.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/\346\224\266\346\254\276\350\264\246\346\210\267\345\217\230\346\233\264.html" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/\346\224\266\346\254\276\350\264\246\346\210\267\345\217\230\346\233\264.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/\346\224\266\346\254\276\350\264\246\346\210\267\345\217\230\346\233\264.html" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/\346\226\260\345\242\236\351\273\230\350\256\244\346\224\266\346\254\276\350\264\246\346\210\267.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/\346\226\260\345\242\236\351\273\230\350\256\244\346\224\266\346\254\276\350\264\246\346\210\267.html" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/\346\226\260\345\242\236\351\273\230\350\256\244\346\224\266\346\254\276\350\264\246\346\210\267.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/\346\226\260\345\242\236\351\273\230\350\256\244\346\224\266\346\254\276\350\264\246\346\210\267.html" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/\347\273\223\346\236\234\351\200\232\347\237\245\351\241\265.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/\347\273\223\346\236\234\351\200\232\347\237\245\351\241\265.html" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/\347\273\223\346\236\234\351\200\232\347\237\245\351\241\265.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/\347\273\223\346\236\234\351\200\232\347\237\245\351\241\265.html" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/\351\200\211\346\213\251\351\273\230\350\256\244\346\224\266\346\254\276\350\264\246\346\210\267.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/\351\200\211\346\213\251\351\273\230\350\256\244\346\224\266\346\254\276\350\264\246\346\210\267.html" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/\351\200\211\346\213\251\351\273\230\350\256\244\346\224\266\346\254\276\350\264\246\346\210\267.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/\351\200\211\346\213\251\351\273\230\350\256\244\346\224\266\346\254\276\350\264\246\346\210\267.html" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/\351\223\266\350\241\214\345\215\241\345\210\227\350\241\250\351\241\265.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/\351\223\266\350\241\214\345\215\241\345\210\227\350\241\250\351\241\265.html" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/\351\223\266\350\241\214\345\215\241\345\210\227\350\241\250\351\241\265.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/\351\223\266\350\241\214\345\215\241\345\210\227\350\241\250\351\241\265.html" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/\351\246\226\351\241\265\351\235\242.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/\351\246\226\351\241\265\351\235\242.html" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/\351\246\226\351\241\265\351\235\242.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/\351\246\226\351\241\265\351\235\242.html" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\220\216\347\273\255\345\267\245\344\275\234&\347\211\210\346\234\254\350\256\241\345\210\222.txt" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\220\216\347\273\255\345\267\245\344\275\234&\347\211\210\346\234\254\350\256\241\345\210\222.txt" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\220\216\347\273\255\345\267\245\344\275\234&\347\211\210\346\234\254\350\256\241\345\210\222.txt" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\220\216\347\273\255\345\267\245\344\275\234&\347\211\210\346\234\254\350\256\241\345\210\222.txt" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\274\202\345\270\270\345\233\236\345\272\224\345\222\214\346\223\215\344\275\234\351\241\265\351\235\242\346\217\220\347\244\272.docx" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\274\202\345\270\270\345\233\236\345\272\224\345\222\214\346\223\215\344\275\234\351\241\265\351\235\242\346\217\220\347\244\272.docx" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\274\202\345\270\270\345\233\236\345\272\224\345\222\214\346\223\215\344\275\234\351\241\265\351\235\242\346\217\220\347\244\272.docx" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\274\202\345\270\270\345\233\236\345\272\224\345\222\214\346\223\215\344\275\234\351\241\265\351\235\242\346\217\220\347\244\272.docx" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\346\225\217\346\204\237\350\257\215\345\272\223\345\244\247\345\205\250.txt" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\346\225\217\346\204\237\350\257\215\345\272\223\345\244\247\345\205\250.txt" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\346\225\217\346\204\237\350\257\215\345\272\223\345\244\247\345\205\250.txt" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\346\225\217\346\204\237\350\257\215\345\272\223\345\244\247\345\205\250.txt" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276\342\200\224\351\273\230\350\256\244\350\264\246\346\210\267\350\256\276\347\275\256\345\222\214\345\217\230\346\233\264\346\265\201\347\250\213\345\233\276.vsd" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276\342\200\224\351\273\230\350\256\244\350\264\246\346\210\267\350\256\276\347\275\256\345\222\214\345\217\230\346\233\264\346\265\201\347\250\213\345\233\276.vsd" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276\342\200\224\351\273\230\350\256\244\350\264\246\346\210\267\350\256\276\347\275\256\345\222\214\345\217\230\346\233\264\346\265\201\347\250\213\345\233\276.vsd" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276\342\200\224\351\273\230\350\256\244\350\264\246\346\210\267\350\256\276\347\275\256\345\222\214\345\217\230\346\233\264\346\265\201\347\250\213\345\233\276.vsd" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276\344\270\232\345\212\241\346\234\215\345\212\241\345\215\217\350\256\256.docx" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276\344\270\232\345\212\241\346\234\215\345\212\241\345\215\217\350\256\256.docx" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276\344\270\232\345\212\241\346\234\215\345\212\241\345\215\217\350\256\256.docx" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276\344\270\232\345\212\241\346\234\215\345\212\241\345\215\217\350\256\256.docx" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276\344\270\232\345\212\241\346\265\201\347\250\213\345\233\276.vsd" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276\344\270\232\345\212\241\346\265\201\347\250\213\345\233\276.vsd" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276\344\270\232\345\212\241\346\265\201\347\250\213\345\233\276.vsd" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\347\237\255\344\277\241\346\224\266\346\254\276\344\270\232\345\212\241\346\265\201\347\250\213\345\233\276.vsd" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\351\200\232\344\273\230\345\256\2353.X-\346\224\266\346\254\276\350\264\246\346\210\267\350\256\276\345\256\232\351\234\200\346\261\202\346\226\207\346\241\243.doc" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\351\200\232\344\273\230\345\256\2353.X-\346\224\266\346\254\276\350\264\246\346\210\267\350\256\276\345\256\232\351\234\200\346\261\202\346\226\207\346\241\243.doc" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\351\200\232\344\273\230\345\256\2353.X-\346\224\266\346\254\276\350\264\246\346\210\267\350\256\276\345\256\232\351\234\200\346\261\202\346\226\207\346\241\243.doc" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\351\200\232\344\273\230\345\256\2353.X-\346\224\266\346\254\276\350\264\246\346\210\267\350\256\276\345\256\232\351\234\200\346\261\202\346\226\207\346\241\243.doc" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\351\200\232\344\273\230\345\256\2353.X\342\200\224\342\200\224\347\237\255\344\277\241\346\224\266\346\254\276\351\234\200\346\261\202\346\226\207\346\241\243\357\274\210\345\242\236\346\216\245\345\217\243\345\256\232\344\271\211\357\274\211.doc" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\351\200\232\344\273\230\345\256\2353.X\342\200\224\342\200\224\347\237\255\344\277\241\346\224\266\346\254\276\351\234\200\346\261\202\346\226\207\346\241\243\357\274\210\345\242\236\346\216\245\345\217\243\345\256\232\344\271\211\357\274\211.doc" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\351\200\232\344\273\230\345\256\2353.X\342\200\224\342\200\224\347\237\255\344\277\241\346\224\266\346\254\276\351\234\200\346\261\202\346\226\207\346\241\243\357\274\210\345\242\236\346\216\245\345\217\243\345\256\232\344\271\211\357\274\211.doc" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\351\200\232\344\273\230\345\256\2353.X\342\200\224\342\200\224\347\237\255\344\277\241\346\224\266\346\254\276\351\234\200\346\261\202\346\226\207\346\241\243\357\274\210\345\242\236\346\216\245\345\217\243\345\256\232\344\271\211\357\274\211.doc" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204 _ \351\203\255\346\225\217.rar" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204 _ \351\203\255\346\225\217.rar" new file mode 100644 index 0000000..e619005 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204 _ \351\203\255\346\225\217.rar" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/chm_start.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/chm_start.html" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/chm_start.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/chm_start.html" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/data/document.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/data/document.js" new file mode 100644 index 0000000..957584a --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/data/document.js" @@ -0,0 +1,1848 @@ +$axure.loadDocument({ + "configuration":{ + "showPageNotes":true, + "showPageNoteNames":false, + "showAnnotations":true, + "linkStyle":"b", + "linkFlowsToPages":true, + "linkFlowsToPagesNewWindow":true, + "hideAddress":false, + "preventScroll":false, + "useLabels":false, + "enabledViewIds":[], + "loadFeedbackPlugin":false}, + "sitemap":{ + "rootNodes":[{ + "pageName":"Home", + "type":"Wireframe", + "url":"home.html", + "children":[{ + "pageName":"发工资", + "type":"Wireframe", + "url":"发工资.html"}, +{ + "pageName":"我要发工资 - 引导页 - 首次进入", + "type":"Wireframe", + "url":"我要发工资_-_引导页_-_首次进入.html"}, +{ + "pageName":"我要发工资 - 引导页 - 非首次", + "type":"Wireframe", + "url":"我要发工资_-_引导页_-_非首次.html"}, +{ + "pageName":"我要发工资 - 引用订单记录", + "type":"Wireframe", + "url":"我要发工资_-_引用订单记录.html"}, +{ + "pageName":"我用发工资 - 手动登记", + "type":"Wireframe", + "url":"我用发工资_-_手动登记.html"}, +{ + "pageName":"非首次", + "type":"Wireframe", + "url":"非首次.html"}, +{ + "pageName":"编辑- 调用历史记录", + "type":"Wireframe", + "url":"编辑-_调用历史记录.html"}, +{ + "pageName":"支付", + "type":"Wireframe", + "url":"支付.html"}, +{ + "pageName":"订单详情 - 继续支付", + "type":"Wireframe", + "url":"订单详情_-_继续支付.html"}, +{ + "pageName":"付款", + "type":"Wireframe", + "url":"付款.html"}, +{ + "pageName":"审批页面", + "type":"Wireframe", + "url":"审批页面.html"}, +{ + "pageName":"我用发工资 - 调用历史记录 - 编辑", + "type":"Wireframe", + "url":"我用发工资_-_调用历史记录_-_编辑.html"}, +{ + "pageName":"发放历史", + "type":"Wireframe", + "url":"发放历史.html"}, +{ + "pageName":"订单详情 - 待审批", + "type":"Wireframe", + "url":"订单详情_-_待审批.html"}, +{ + "pageName":"订单详情 - 已发放", + "type":"Wireframe", + "url":"订单详情_-_已发放.html"}, +{ + "pageName":"订单详情 - 人", + "type":"Wireframe", + "url":"订单详情_-_人.html"}, +{ + "pageName":"订单详情 - 月度", + "type":"Wireframe", + "url":"订单详情_-_月度.html"}, +{ + "pageName":"收工资首页面", + "type":"Wireframe", + "url":"收工资首页面.html"}, +{ + "pageName":"编辑后页面 - 调用历史新增", + "type":"Wireframe", + "url":"编辑后页面_-_调用历史新增.html"}, +{ + "pageName":"我要发工资 - 引导页 - 首次返回", + "type":"Wireframe", + "url":"我要发工资_-_引导页_-_首次返回.html"}]}]}, + "globalVariables":{ + "onloadvariable":""}, + "defaultAdaptiveView":{ + "name":"", + "size":{ + "width":0, + "height":0}, + "condition":"<="}, + "adaptiveViews":[], + "stylesheet":{ + "defaultStyles":{ + "buttonShape":{ + "id":"71f39c918c53483283e8bbff7749f0e1", + "fontName":"'Arial Normal', 'Arial'", + "fontSize":"13px", + "fontWeight":"400", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"center", + "verticalAlignment":"middle", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF333333, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"2", + "paddingBottom":"2", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"1", + "borderFill":{ + "fillType":"solid", + "color":0xFF797979}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "paragraph":{ + "id":"4d38068c0fdb4e07be80f484d89fd54f", + "fontName":"'Arial Normal', 'Arial'", + "fontSize":"13px", + "fontWeight":"400", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"left", + "verticalAlignment":"top", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF333333, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"0", + "paddingBottom":"0", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "h1":{ + "id":"ca9e311d493d42bd9346b08e0e2f4fc7", + "fontName":"'Arial Negreta', 'Arial'", + "fontSize":"32px", + "fontWeight":"700", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"left", + "verticalAlignment":"top", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF333333, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"0", + "paddingBottom":"0", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "h2":{ + "id":"b7c2db76b4e344cfa5ba48bf69294bd9", + "fontName":"'Arial Negreta', 'Arial'", + "fontSize":"24px", + "fontWeight":"700", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"left", + "verticalAlignment":"top", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF333333, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"0", + "paddingBottom":"0", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "h3":{ + "id":"4fb093636a5b4ed2a13b11bb49558fdb", + "fontName":"'Arial Negreta', 'Arial'", + "fontSize":"18px", + "fontWeight":"700", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"left", + "verticalAlignment":"top", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF333333, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"0", + "paddingBottom":"0", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "h4":{ + "id":"6c1eb2d7093e4f43b5e1b8434bc5554a", + "fontName":"'Arial Negreta', 'Arial'", + "fontSize":"14px", + "fontWeight":"700", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"left", + "verticalAlignment":"top", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF333333, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"0", + "paddingBottom":"0", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "h5":{ + "id":"168b8422d0ed4d9988b9dcfca9c07d81", + "fontName":"'Arial Negreta', 'Arial'", + "fontSize":"13px", + "fontWeight":"700", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"left", + "verticalAlignment":"top", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF333333, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"0", + "paddingBottom":"0", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "h6":{ + "id":"3b1a4b26545a4d06a5949324119b1a65", + "fontName":"'Arial Negreta', 'Arial'", + "fontSize":"10px", + "fontWeight":"700", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"left", + "verticalAlignment":"top", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF333333, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"0", + "paddingBottom":"0", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "imageBox":{ + "id":"85124f2f5210419595524f5b343be8ff", + "fontName":"'Arial Normal', 'Arial'", + "fontSize":"13px", + "fontWeight":"400", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"center", + "verticalAlignment":"middle", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF000000, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"2", + "paddingBottom":"2", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF797979}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "hyperlink":{ + "id":"8692f38938de4390818c785b9a74e4bc", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF0000FF, + "opacity":1}, + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false}, + "hyperlinkMouseOver":{ + "id":"be68cdb2588e4fcbafd0c4a7c55fb8eb", + "underline":true}, + "hyperlinkMouseDown":{ + "id":"bc5b50305efc464a9238d8dd72e5bfd5"}, + "textBox":{ + "id":"0872297de54943e2806480ff8ca6a127", + "fontName":"'Arial Normal', 'Arial'", + "fontSize":"13px", + "fontWeight":"400", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"left", + "verticalAlignment":"middle", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF000000, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"2", + "paddingBottom":"2", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"1", + "borderFill":{ + "fillType":"solid", + "color":0xFF797979}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "textArea":{ + "id":"308bfc0bb0ca41c295c0fc3b2f7576a5", + "fontName":"'Arial Normal', 'Arial'", + "fontSize":"13px", + "fontWeight":"400", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"left", + "verticalAlignment":"top", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF000000, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"2", + "paddingBottom":"2", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"1", + "borderFill":{ + "fillType":"solid", + "color":0xFF797979}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "comboBox":{ + "id":"64e260319e994cf0aff60a43fd31788f", + "fontName":"'Arial Normal', 'Arial'", + "fontSize":"13px", + "fontWeight":"400", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"left", + "verticalAlignment":"top", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF000000, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"2", + "paddingBottom":"2", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"1", + "borderFill":{ + "fillType":"solid", + "color":0xFF797979}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "listBox":{ + "id":"6ebd449a2334459aa5b0dca51815d3df", + "fontName":"'Arial Normal', 'Arial'", + "fontSize":"13px", + "fontWeight":"400", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"left", + "verticalAlignment":"top", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF000000, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"2", + "paddingBottom":"2", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"1", + "borderFill":{ + "fillType":"solid", + "color":0xFF797979}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "checkbox":{ + "id":"ec8ab6079c144b4a8e4e9b96c14bb5af", + "fontName":"'Arial Normal', 'Arial'", + "fontSize":"13px", + "fontWeight":"400", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"left", + "verticalAlignment":"top", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF333333, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"2", + "paddingBottom":"2", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF797979}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "radioButton":{ + "id":"c2858f066acb42dfb122eca484d6bba0", + "fontName":"'Arial Normal', 'Arial'", + "fontSize":"13px", + "fontWeight":"400", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"left", + "verticalAlignment":"top", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF333333, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"2", + "paddingBottom":"2", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF797979}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "flowShape":{ + "id":"6dadee3651e14613b4ed27082ad99cbf", + "fontName":"'Arial Normal', 'Arial'", + "fontSize":"13px", + "fontWeight":"400", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"center", + "verticalAlignment":"middle", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF333333, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"linearGradient", + "colors":[{ + "color":0xFFFFFFFF}, +{ + "color":0xFFF2F2F2}, +{ + "color":0xFFE4E4E4}, +{ + "color":0xFFFFFFFF}]}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"2", + "paddingBottom":"2", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"1", + "borderFill":{ + "fillType":"solid", + "color":0xFF797979}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "treeNodeObject":{ + "id":"b709b83d672b4b9786633d1939b61923", + "fontName":"'Arial Normal', 'Arial'", + "fontSize":"13px", + "fontWeight":"400", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"left", + "verticalAlignment":"middle", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF333333, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"2", + "paddingBottom":"2", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF797979}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "button":{ + "id":"4f260a7c4fd6491ea10fe243336f50fe", + "fontName":"'Arial Normal', 'Arial'", + "fontSize":"13px", + "fontWeight":"400", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"center", + "verticalAlignment":"middle", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF000000, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"2", + "paddingBottom":"2", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"1", + "borderFill":{ + "fillType":"solid", + "color":0xFF797979}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "imageMapRegion":{ + "id":"11ed7eb84f51430fa7e90533fa42fffb", + "fontName":"'Arial Normal', 'Arial'", + "fontSize":"13px", + "fontWeight":"400", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"center", + "verticalAlignment":"middle", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF333333, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"2", + "paddingBottom":"2", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF797979}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "inlineFrame":{ + "id":"98fac3bda4a147d5a8ec49442c260001", + "fontName":"'Arial Normal', 'Arial'", + "fontSize":"13px", + "fontWeight":"400", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"center", + "verticalAlignment":"middle", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF333333, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"2", + "paddingBottom":"2", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF797979}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "dynamicPanel":{ + "id":"ff35a25d4e6f4b9b984a835c22387c44", + "fontName":"'Arial Normal', 'Arial'", + "fontSize":"13px", + "fontWeight":"400", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"center", + "verticalAlignment":"middle", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF333333, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"2", + "paddingBottom":"2", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF797979}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "referenceDiagramObject":{ + "id":"9cc903e9240c4ac1af2e24c18b60f0d1", + "fontName":"'Arial Normal', 'Arial'", + "fontSize":"13px", + "fontWeight":"400", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"center", + "verticalAlignment":"middle", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF333333, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"2", + "paddingBottom":"2", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF797979}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "repeater":{ + "id":"d82e4736657f4deeabce88ea97810d19", + "fontName":"'Arial Normal', 'Arial'", + "fontSize":"13px", + "fontWeight":"400", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"center", + "verticalAlignment":"middle", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF333333, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"2", + "paddingBottom":"2", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF797979}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "table":{ + "id":"c7bbcaabe9ff4d9d9d3bc4eea1927e1c", + "fontName":"'Arial Normal', 'Arial'", + "fontSize":"13px", + "fontWeight":"400", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"center", + "verticalAlignment":"middle", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF333333, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"2", + "paddingBottom":"2", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"1", + "borderFill":{ + "fillType":"solid", + "color":0xFF797979}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "tableCell":{ + "id":"0785bfa5ec21494b96169f7aff62494f", + "fontName":"'Arial Normal', 'Arial'", + "fontSize":"13px", + "fontWeight":"400", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"left", + "verticalAlignment":"top", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF333333, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"2", + "paddingBottom":"2", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"1", + "borderFill":{ + "fillType":"solid", + "color":0xFF797979}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "menuObject":{ + "id":"e1ef133fa32e4e8a858dc2cfb4a4ffc6", + "fontName":"'Arial Normal', 'Arial'", + "fontSize":"13px", + "fontWeight":"400", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"center", + "verticalAlignment":"middle", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF000000, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"2", + "paddingBottom":"2", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"1", + "borderFill":{ + "fillType":"solid", + "color":0xFF797979}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "horizontalLine":{ + "id":"70b6b0b7f6434d1a889aee0830ad0c62", + "fontName":"'Arial Normal', 'Arial'", + "fontSize":"13px", + "fontWeight":"400", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"center", + "verticalAlignment":"middle", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF333333, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"2", + "paddingBottom":"2", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "verticalLine":{ + "id":"ee5ff361e5364c098a1afdf9f760e1b2", + "fontName":"'Arial Normal', 'Arial'", + "fontSize":"13px", + "fontWeight":"400", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"center", + "verticalAlignment":"middle", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF333333, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"2", + "paddingBottom":"2", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "connector":{ + "id":"47341734b2ad468d8a23ac3d7b650c3e", + "fontName":"'Arial Normal', 'Arial'", + "fontSize":"13px", + "fontWeight":"400", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"center", + "verticalAlignment":"middle", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF333333, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"2", + "paddingBottom":"2", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"1", + "borderFill":{ + "fillType":"solid", + "color":0xFF0099CC}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}}, + "customStyles":{ +}}}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/data/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/data/styles.css" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/data/styles.css" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/data/styles.css" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/home/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/home/data.js" new file mode 100644 index 0000000..7cd0178 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/home/data.js" @@ -0,0 +1,522 @@ +$axure.loadCurrentPage({ + "url":"home.html", + "generationDate":new Date(1416993070718.75), + "isCanvasEnabled":false, + "variables":["OnLoadVariable"], + "page":{ + "packageId":"12d0caf1dd554e3fa9aa05d22eb329c9", + "type":"Axure:Page", + "name":"Home", + "notes":{ +}, + "style":{ + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "pageAlignment":"near", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "image":null, + "imageHorizontalAlignment":"near", + "imageVerticalAlignment":"near", + "imageRepeat":"auto", + "favicon":null, + "sketchFactor":"0", + "colorStyle":"appliedColor", + "fontName":"应用字体", + "borderWidth":"0"}, + "adaptiveStyles":{ +}, + "interactionMap":{ +}, + "diagram":{ + "objects":[{ + "id":"65c3fedb55b842509720d8cd87f10df2", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":116}, + "size":{ + "width":8, + "height":36}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"8d936450ccee4deab363558862606b0c", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":116}, + "size":{ + "width":8, + "height":36}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u0.png"}}, +{ + "id":"874f349716c44af5a458725b389a9a45", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":192}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d044fc320e324d58a29a74f253f31147", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":192}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u2.png"}}, +{ + "id":"0ef434397f144b76b4ea5c1ff4c1e6f3", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":255}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"cea3f7acf9f84cfb8e9756e54dbbb4de", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":255}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u2.png"}}, +{ + "id":"21b9ce86564847e386a9fb43c56337f7", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":259, + "y":0}, + "size":{ + "width":60, + "height":10}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ecaa26d566d948e29b57852658007f7e", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":259, + "y":0}, + "size":{ + "width":60, + "height":10}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u6.png"}}, +{ + "id":"014798b8981b4cdfb178da8f298a0abd", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":6, + "y":6}, + "size":{ + "width":372, + "height":796}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"52"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"67c9dc657eac4389ab076fd3d327769e", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":6, + "y":6}, + "size":{ + "width":372, + "height":796}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"52"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u8.png"}}, +{ + "id":"b49affb3bdcd496f8ee65155069ed08d", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":32, + "y":120}, + "size":{ + "width":320, + "height":568}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"7ecd9abb90a1414099cd49e3bd3bbb41", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":32, + "y":120}, + "size":{ + "width":320, + "height":568}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u10.png"}}, +{ + "id":"c03bdce1a78243dcb25faa57dd2a0482", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":157, + "y":66}, + "size":{ + "width":70, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"46b314b6b81145adbd84949e3d83917e", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":157, + "y":66}, + "size":{ + "width":70, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u12.png"}}, +{ + "id":"c0e380d248f247f0b145a3e895fc7010", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":185, + "y":40}, + "size":{ + "width":14, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"0c5ff8bbf1934fd296e821bbb8989ee5", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":185, + "y":40}, + "size":{ + "width":14, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u14.png"}}, +{ + "id":"be45ab146be4441787689e87e95707f8", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":156, + "y":704}, + "size":{ + "width":72, + "height":72}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"e3bbb5779f7d42e99b098664ee82d8ff", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":156, + "y":704}, + "size":{ + "width":72, + "height":72}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u16.png"}}, +{ + "id":"f071370840c24c3bac3f0f54aeecd858", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":500, + "y":860}, + "size":{ + "width":50, + "height":50}, + "borderFill":{ + "fillType":"solid", + "color":0xFFFFFFFF}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"b35c4f884a1f46c69617a14a6a7cd2f8", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":500, + "y":860}, + "size":{ + "width":50, + "height":50}, + "borderFill":{ + "fillType":"solid", + "color":0xFFFFFFFF}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u18.png"}}]}}, + "masters":{ +}, + "objectPaths":{ + "65c3fedb55b842509720d8cd87f10df2":{ + "scriptId":"u0"}, + "8d936450ccee4deab363558862606b0c":{ + "scriptId":"u1"}, + "874f349716c44af5a458725b389a9a45":{ + "scriptId":"u2"}, + "d044fc320e324d58a29a74f253f31147":{ + "scriptId":"u3"}, + "0ef434397f144b76b4ea5c1ff4c1e6f3":{ + "scriptId":"u4"}, + "cea3f7acf9f84cfb8e9756e54dbbb4de":{ + "scriptId":"u5"}, + "21b9ce86564847e386a9fb43c56337f7":{ + "scriptId":"u6"}, + "ecaa26d566d948e29b57852658007f7e":{ + "scriptId":"u7"}, + "014798b8981b4cdfb178da8f298a0abd":{ + "scriptId":"u8"}, + "67c9dc657eac4389ab076fd3d327769e":{ + "scriptId":"u9"}, + "b49affb3bdcd496f8ee65155069ed08d":{ + "scriptId":"u10"}, + "7ecd9abb90a1414099cd49e3bd3bbb41":{ + "scriptId":"u11"}, + "c03bdce1a78243dcb25faa57dd2a0482":{ + "scriptId":"u12"}, + "46b314b6b81145adbd84949e3d83917e":{ + "scriptId":"u13"}, + "c0e380d248f247f0b145a3e895fc7010":{ + "scriptId":"u14"}, + "0c5ff8bbf1934fd296e821bbb8989ee5":{ + "scriptId":"u15"}, + "be45ab146be4441787689e87e95707f8":{ + "scriptId":"u16"}, + "e3bbb5779f7d42e99b098664ee82d8ff":{ + "scriptId":"u17"}, + "f071370840c24c3bac3f0f54aeecd858":{ + "scriptId":"u18"}, + "b35c4f884a1f46c69617a14a6a7cd2f8":{ + "scriptId":"u19"}}}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/home/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/home/styles.css" new file mode 100644 index 0000000..832bb51 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/home/styles.css" @@ -0,0 +1,234 @@ +body { + margin:0px; + background-image:none; + position:static; + left:auto; + width:550px; + margin-left:0; + margin-right:0; + text-align:left; +} +#base { + position:absolute; + z-index:0; +} +#u0 { + position:absolute; + left:0px; + top:116px; + width:8px; + height:36px; +} +#u0_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:36px; +} +#u1 { + position:absolute; + left:2px; + top:10px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u2 { + position:absolute; + left:0px; + top:192px; + width:8px; + height:27px; +} +#u2_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:27px; +} +#u3 { + position:absolute; + left:2px; + top:6px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u4 { + position:absolute; + left:0px; + top:255px; + width:8px; + height:27px; +} +#u4_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:27px; +} +#u5 { + position:absolute; + left:2px; + top:6px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u6 { + position:absolute; + left:259px; + top:0px; + width:60px; + height:10px; +} +#u6_img { + position:absolute; + left:0px; + top:0px; + width:60px; + height:10px; +} +#u7 { + position:absolute; + left:2px; + top:-3px; + width:56px; + visibility:hidden; + word-wrap:break-word; +} +#u8 { + position:absolute; + left:6px; + top:6px; + width:372px; + height:796px; +} +#u8_img { + position:absolute; + left:0px; + top:0px; + width:372px; + height:796px; +} +#u9 { + position:absolute; + left:2px; + top:390px; + width:368px; + visibility:hidden; + word-wrap:break-word; +} +#u10 { + position:absolute; + left:32px; + top:120px; + width:320px; + height:568px; +} +#u10_img { + position:absolute; + left:0px; + top:0px; + width:320px; + height:568px; +} +#u11 { + position:absolute; + left:2px; + top:276px; + width:316px; + visibility:hidden; + word-wrap:break-word; +} +#u12 { + position:absolute; + left:157px; + top:66px; + width:70px; + height:14px; +} +#u12_img { + position:absolute; + left:0px; + top:0px; + width:70px; + height:14px; +} +#u13 { + position:absolute; + left:2px; + top:-1px; + width:66px; + visibility:hidden; + word-wrap:break-word; +} +#u14 { + position:absolute; + left:185px; + top:40px; + width:14px; + height:14px; +} +#u14_img { + position:absolute; + left:0px; + top:0px; + width:14px; + height:14px; +} +#u15 { + position:absolute; + left:2px; + top:-1px; + width:10px; + visibility:hidden; + word-wrap:break-word; +} +#u16 { + position:absolute; + left:156px; + top:704px; + width:72px; + height:72px; +} +#u16_img { + position:absolute; + left:0px; + top:0px; + width:72px; + height:72px; +} +#u17 { + position:absolute; + left:2px; + top:28px; + width:68px; + visibility:hidden; + word-wrap:break-word; +} +#u18 { + position:absolute; + left:500px; + top:860px; + width:50px; + height:50px; +} +#u18_img { + position:absolute; + left:0px; + top:0px; + width:50px; + height:50px; +} +#u19 { + position:absolute; + left:2px; + top:17px; + width:46px; + visibility:hidden; + word-wrap:break-word; +} diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\344\273\230\346\254\276/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\344\273\230\346\254\276/data.js" new file mode 100644 index 0000000..f4a2c87 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\344\273\230\346\254\276/data.js" @@ -0,0 +1,1063 @@ +$axure.loadCurrentPage({ + "url":"付款.html", + "generationDate":new Date(1416993073281.25), + "isCanvasEnabled":false, + "variables":["OnLoadVariable"], + "page":{ + "packageId":"1ebae1ec08f1461abe827eb0573f06a5", + "type":"Axure:Page", + "name":"付款", + "notes":{ +}, + "style":{ + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "pageAlignment":"near", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "image":null, + "imageHorizontalAlignment":"near", + "imageVerticalAlignment":"near", + "imageRepeat":"auto", + "favicon":null, + "sketchFactor":"0", + "colorStyle":"appliedColor", + "fontName":"应用字体", + "borderWidth":"0"}, + "adaptiveStyles":{ +}, + "interactionMap":{ +}, + "diagram":{ + "objects":[{ + "id":"8366a14f7a004276ab53ed38fd9a34bf", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":116}, + "size":{ + "width":8, + "height":36}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ab6b5cc6aacf4908af0ad912b984fbb3", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":116}, + "size":{ + "width":8, + "height":36}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u0.png"}}, +{ + "id":"043d8cf21f9b416fa9b9423ea2369175", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":192}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"259871de951943669f996a5da8aa9d06", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":192}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u2.png"}}, +{ + "id":"08665d326d8f415eb3e6a72487fabcaa", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":255}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"366ab589d2f5426ca840e0e2b4a2db15", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":255}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u2.png"}}, +{ + "id":"23fc2ec22316478bbdfa5eda23bb0a01", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":259, + "y":0}, + "size":{ + "width":60, + "height":10}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"fa70d91dca3048d9b42379dba369030a", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":259, + "y":0}, + "size":{ + "width":60, + "height":10}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u6.png"}}, +{ + "id":"94684de8f0ba4268b849c50bc3a72911", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":6, + "y":6}, + "size":{ + "width":372, + "height":796}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"52"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"cc15d20cd39844a692db7033392f5041", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":6, + "y":6}, + "size":{ + "width":372, + "height":796}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"52"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u8.png"}}, +{ + "id":"a09f47c3c9894a4fadf79dd369f598b7", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":32, + "y":120}, + "size":{ + "width":320, + "height":568}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"9f30e0ddd89342e1928aaaca444a2c4e", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":32, + "y":120}, + "size":{ + "width":320, + "height":568}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u10.png"}}, +{ + "id":"c1b0012ef80840dca2e9bc2323244d97", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":157, + "y":66}, + "size":{ + "width":70, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"288c7804c2e4440d9bf12f8937b41013", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":157, + "y":66}, + "size":{ + "width":70, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u12.png"}}, +{ + "id":"3dead97fdd2f4f848feedfc659ade44e", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":185, + "y":40}, + "size":{ + "width":14, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"5af0a9a7fdd34430a0cda180fa6d99f6", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":185, + "y":40}, + "size":{ + "width":14, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u14.png"}}, +{ + "id":"dfb3359fb4ac49aeb66065733c75c0f4", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":156, + "y":704}, + "size":{ + "width":72, + "height":72}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d688fb0f1aed4128bba51c2472850a79", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":156, + "y":704}, + "size":{ + "width":72, + "height":72}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u16.png"}}, +{ + "id":"f25bd23698da4b9f88d658d215a07820", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":32, + "y":140}, + "size":{ + "width":319, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ba8675a1356744cc837b84de616fa374", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":32, + "y":140}, + "size":{ + "width":319, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_首次进入/u18.png"}}, +{ + "id":"2ef2da7f198a472392978cd88c2357f7", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "location":{ + "x":40, + "y":159}, + "size":{ + "width":22, + "height":22}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"e560062f8c3b4cc98ae7c9606f76062d", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":40, + "y":159}, + "size":{ + "width":22, + "height":22}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 支付", + "target":{ + "targetType":"page", + "url":"支付.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true, + "images":{ + "normal~":"images/我要发工资_-_引导页_-_首次进入/u20.png"}}, +{ + "id":"8b8d7a50753d4d14b18af192db596b89", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontSize":"20px", + "fontWeight":"700", + "location":{ + "x":141, + "y":158}, + "size":{ + "width":81, + "height":24}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"e1adbb9a3be94045b2ea9fbb3a1b6bf3", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontSize":"20px", + "fontWeight":"700", + "location":{ + "x":141, + "y":158}, + "size":{ + "width":81, + "height":24}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"9654852f34ae4a27891f090ce71e3522", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "fontSize":"18px", + "location":{ + "x":50, + "y":214}, + "size":{ + "width":73, + "height":24}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"e852393fdafe474095c1e7e0f31d1b7c", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "fontSize":"18px", + "location":{ + "x":50, + "y":214}, + "size":{ + "width":73, + "height":24}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"731caed7dbc34f68a5c0111fac3dea4a", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":256, + "y":218}, + "size":{ + "width":53, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"7056557fb765432193f151d79ada1cdf", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":256, + "y":218}, + "size":{ + "width":53, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"118e6e5d9e994140a6fbcfc902f6074b", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "fontSize":"18px", + "location":{ + "x":50, + "y":248}, + "size":{ + "width":73, + "height":24}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"790819a8f4ee41bf814581e465ceeb3a", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "fontSize":"18px", + "location":{ + "x":50, + "y":248}, + "size":{ + "width":73, + "height":24}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"6873a28a3fc84246ad199d2e2e626259", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":254, + "y":252}, + "size":{ + "width":58, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"b7218689c0b54e6796337889e1dbe52f", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":254, + "y":252}, + "size":{ + "width":58, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"5f6e2669c23946759a1963fa70fcb5d0", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":50, + "y":282}, + "size":{ + "width":186, + "height":24}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"10c073f4b78e4452b7e8ee8b35d553f3", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":50, + "y":282}, + "size":{ + "width":186, + "height":24}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"f1892c9e707c4dcdac8fc2c10021821b", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":272, + "y":286}, + "size":{ + "width":40, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"22a93ffca52f43bfa126f9cdfbc76405", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":272, + "y":286}, + "size":{ + "width":40, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"f2127c6ef14747c98b710607d70c4fdd", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "fontSize":"18px", + "location":{ + "x":50, + "y":316}, + "size":{ + "width":73, + "height":24}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"17858cb6dbb644d8b9cff09af40923f2", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "fontSize":"18px", + "location":{ + "x":50, + "y":316}, + "size":{ + "width":73, + "height":24}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"a40a321333b447af895a3ca78d0b9154", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":254, + "y":320}, + "size":{ + "width":58, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"60ca6e17300346968af859756a172862", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":254, + "y":320}, + "size":{ + "width":58, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"63534e206cca494c8fa3668f8bdf405b", + "label":"", + "type":"horizontalLine", + "styleType":"horizontalLine", + "visible":true, + "style":{ + "location":{ + "x":50, + "y":350}, + "size":{ + "width":280, + "height":10}, + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}}, + "adaptiveStyles":{ +}, + "images":{ + "start~":"resources/images/transparent.gif", + "end~":"resources/images/transparent.gif", + "line~":"images/付款/u40_line.png"}}, +{ + "id":"4b1289c8cdbc4a3f902de7bb6513a34e", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":50, + "y":370}, + "size":{ + "width":280, + "height":40}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"7e092a4417974650a646dd67c6851c91", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":50, + "y":370}, + "size":{ + "width":280, + "height":40}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/付款/u41.png"}}, +{ + "id":"7e56de585b2f46f7afbbff97017957c0", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"20px", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFCCCCCC, + "opacity":1}, + "location":{ + "x":50, + "y":378}, + "size":{ + "width":67, + "height":24}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"b4391dc0dde34a00995f39b7782b1ef4", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"20px", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFCCCCCC, + "opacity":1}, + "location":{ + "x":50, + "y":378}, + "size":{ + "width":67, + "height":24}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"6a45bf99c1dc45008308b5cd25824f2d", + "label":"", + "type":"button", + "styleType":"button", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":50, + "y":430}, + "size":{ + "width":280, + "height":40}}, + "adaptiveStyles":{ +}}]}}, + "masters":{ +}, + "objectPaths":{ + "8366a14f7a004276ab53ed38fd9a34bf":{ + "scriptId":"u0"}, + "ab6b5cc6aacf4908af0ad912b984fbb3":{ + "scriptId":"u1"}, + "043d8cf21f9b416fa9b9423ea2369175":{ + "scriptId":"u2"}, + "259871de951943669f996a5da8aa9d06":{ + "scriptId":"u3"}, + "08665d326d8f415eb3e6a72487fabcaa":{ + "scriptId":"u4"}, + "366ab589d2f5426ca840e0e2b4a2db15":{ + "scriptId":"u5"}, + "23fc2ec22316478bbdfa5eda23bb0a01":{ + "scriptId":"u6"}, + "fa70d91dca3048d9b42379dba369030a":{ + "scriptId":"u7"}, + "94684de8f0ba4268b849c50bc3a72911":{ + "scriptId":"u8"}, + "cc15d20cd39844a692db7033392f5041":{ + "scriptId":"u9"}, + "a09f47c3c9894a4fadf79dd369f598b7":{ + "scriptId":"u10"}, + "9f30e0ddd89342e1928aaaca444a2c4e":{ + "scriptId":"u11"}, + "c1b0012ef80840dca2e9bc2323244d97":{ + "scriptId":"u12"}, + "288c7804c2e4440d9bf12f8937b41013":{ + "scriptId":"u13"}, + "3dead97fdd2f4f848feedfc659ade44e":{ + "scriptId":"u14"}, + "5af0a9a7fdd34430a0cda180fa6d99f6":{ + "scriptId":"u15"}, + "dfb3359fb4ac49aeb66065733c75c0f4":{ + "scriptId":"u16"}, + "d688fb0f1aed4128bba51c2472850a79":{ + "scriptId":"u17"}, + "f25bd23698da4b9f88d658d215a07820":{ + "scriptId":"u18"}, + "ba8675a1356744cc837b84de616fa374":{ + "scriptId":"u19"}, + "2ef2da7f198a472392978cd88c2357f7":{ + "scriptId":"u20"}, + "e560062f8c3b4cc98ae7c9606f76062d":{ + "scriptId":"u21"}, + "8b8d7a50753d4d14b18af192db596b89":{ + "scriptId":"u22"}, + "e1adbb9a3be94045b2ea9fbb3a1b6bf3":{ + "scriptId":"u23"}, + "9654852f34ae4a27891f090ce71e3522":{ + "scriptId":"u24"}, + "e852393fdafe474095c1e7e0f31d1b7c":{ + "scriptId":"u25"}, + "731caed7dbc34f68a5c0111fac3dea4a":{ + "scriptId":"u26"}, + "7056557fb765432193f151d79ada1cdf":{ + "scriptId":"u27"}, + "118e6e5d9e994140a6fbcfc902f6074b":{ + "scriptId":"u28"}, + "790819a8f4ee41bf814581e465ceeb3a":{ + "scriptId":"u29"}, + "6873a28a3fc84246ad199d2e2e626259":{ + "scriptId":"u30"}, + "b7218689c0b54e6796337889e1dbe52f":{ + "scriptId":"u31"}, + "5f6e2669c23946759a1963fa70fcb5d0":{ + "scriptId":"u32"}, + "10c073f4b78e4452b7e8ee8b35d553f3":{ + "scriptId":"u33"}, + "f1892c9e707c4dcdac8fc2c10021821b":{ + "scriptId":"u34"}, + "22a93ffca52f43bfa126f9cdfbc76405":{ + "scriptId":"u35"}, + "f2127c6ef14747c98b710607d70c4fdd":{ + "scriptId":"u36"}, + "17858cb6dbb644d8b9cff09af40923f2":{ + "scriptId":"u37"}, + "a40a321333b447af895a3ca78d0b9154":{ + "scriptId":"u38"}, + "60ca6e17300346968af859756a172862":{ + "scriptId":"u39"}, + "63534e206cca494c8fa3668f8bdf405b":{ + "scriptId":"u40"}, + "4b1289c8cdbc4a3f902de7bb6513a34e":{ + "scriptId":"u41"}, + "7e092a4417974650a646dd67c6851c91":{ + "scriptId":"u42"}, + "7e56de585b2f46f7afbbff97017957c0":{ + "scriptId":"u43"}, + "b4391dc0dde34a00995f39b7782b1ef4":{ + "scriptId":"u44"}, + "6a45bf99c1dc45008308b5cd25824f2d":{ + "scriptId":"u45"}}}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\344\273\230\346\254\276/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\344\273\230\346\254\276/styles.css" new file mode 100644 index 0000000..e5811c1 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\344\273\230\346\254\276/styles.css" @@ -0,0 +1,551 @@ +body { + margin:0px; + background-image:none; + position:static; + left:auto; + width:378px; + margin-left:0; + margin-right:0; + text-align:left; +} +#base { + position:absolute; + z-index:0; +} +#u0 { + position:absolute; + left:0px; + top:116px; + width:8px; + height:36px; +} +#u0_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:36px; +} +#u1 { + position:absolute; + left:2px; + top:10px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u2 { + position:absolute; + left:0px; + top:192px; + width:8px; + height:27px; +} +#u2_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:27px; +} +#u3 { + position:absolute; + left:2px; + top:6px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u4 { + position:absolute; + left:0px; + top:255px; + width:8px; + height:27px; +} +#u4_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:27px; +} +#u5 { + position:absolute; + left:2px; + top:6px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u6 { + position:absolute; + left:259px; + top:0px; + width:60px; + height:10px; +} +#u6_img { + position:absolute; + left:0px; + top:0px; + width:60px; + height:10px; +} +#u7 { + position:absolute; + left:2px; + top:-3px; + width:56px; + visibility:hidden; + word-wrap:break-word; +} +#u8 { + position:absolute; + left:6px; + top:6px; + width:372px; + height:796px; +} +#u8_img { + position:absolute; + left:0px; + top:0px; + width:372px; + height:796px; +} +#u9 { + position:absolute; + left:2px; + top:390px; + width:368px; + visibility:hidden; + word-wrap:break-word; +} +#u10 { + position:absolute; + left:32px; + top:120px; + width:320px; + height:568px; +} +#u10_img { + position:absolute; + left:0px; + top:0px; + width:320px; + height:568px; +} +#u11 { + position:absolute; + left:2px; + top:276px; + width:316px; + visibility:hidden; + word-wrap:break-word; +} +#u12 { + position:absolute; + left:157px; + top:66px; + width:70px; + height:14px; +} +#u12_img { + position:absolute; + left:0px; + top:0px; + width:70px; + height:14px; +} +#u13 { + position:absolute; + left:2px; + top:-1px; + width:66px; + visibility:hidden; + word-wrap:break-word; +} +#u14 { + position:absolute; + left:185px; + top:40px; + width:14px; + height:14px; +} +#u14_img { + position:absolute; + left:0px; + top:0px; + width:14px; + height:14px; +} +#u15 { + position:absolute; + left:2px; + top:-1px; + width:10px; + visibility:hidden; + word-wrap:break-word; +} +#u16 { + position:absolute; + left:156px; + top:704px; + width:72px; + height:72px; +} +#u16_img { + position:absolute; + left:0px; + top:0px; + width:72px; + height:72px; +} +#u17 { + position:absolute; + left:2px; + top:28px; + width:68px; + visibility:hidden; + word-wrap:break-word; +} +#u18 { + position:absolute; + left:32px; + top:140px; + width:319px; + height:60px; +} +#u18_img { + position:absolute; + left:0px; + top:0px; + width:319px; + height:60px; +} +#u19 { + position:absolute; + left:2px; + top:22px; + width:315px; + visibility:hidden; + word-wrap:break-word; +} +#u20 { + position:absolute; + left:40px; + top:159px; + width:22px; + height:22px; +} +#u20_img { + position:absolute; + left:0px; + top:0px; + width:22px; + height:22px; +} +#u21 { + position:absolute; + left:2px; + top:3px; + width:18px; + visibility:hidden; + word-wrap:break-word; +} +#u22 { + position:absolute; + left:141px; + top:158px; + width:81px; + height:24px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + font-size:20px; +} +#u22_img { + position:absolute; + left:0px; + top:0px; + width:81px; + height:24px; +} +#u23 { + position:absolute; + left:0px; + top:0px; + width:81px; + white-space:nowrap; +} +#u24 { + position:absolute; + left:50px; + top:214px; + width:73px; + height:24px; + font-family:'微软雅黑 Regular', '微软雅黑'; + font-size:18px; +} +#u24_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:24px; +} +#u25 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u26 { + position:absolute; + left:256px; + top:218px; + width:53px; + height:16px; +} +#u26_img { + position:absolute; + left:0px; + top:0px; + width:53px; + height:16px; +} +#u27 { + position:absolute; + left:0px; + top:0px; + width:53px; + white-space:nowrap; +} +#u28 { + position:absolute; + left:50px; + top:248px; + width:73px; + height:24px; + font-family:'微软雅黑 Regular', '微软雅黑'; + font-size:18px; +} +#u28_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:24px; +} +#u29 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u30 { + position:absolute; + left:254px; + top:252px; + width:58px; + height:16px; +} +#u30_img { + position:absolute; + left:0px; + top:0px; + width:58px; + height:16px; +} +#u31 { + position:absolute; + left:0px; + top:0px; + width:58px; + white-space:nowrap; +} +#u32 { + position:absolute; + left:50px; + top:282px; + width:186px; + height:24px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u32_img { + position:absolute; + left:0px; + top:0px; + width:186px; + height:24px; +} +#u33 { + position:absolute; + left:0px; + top:0px; + width:186px; + white-space:nowrap; +} +#u34 { + position:absolute; + left:272px; + top:286px; + width:40px; + height:16px; +} +#u34_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:16px; +} +#u35 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u36 { + position:absolute; + left:50px; + top:316px; + width:73px; + height:24px; + font-family:'微软雅黑 Regular', '微软雅黑'; + font-size:18px; +} +#u36_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:24px; +} +#u37 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u38 { + position:absolute; + left:254px; + top:320px; + width:58px; + height:16px; + color:#FF0000; +} +#u38_img { + position:absolute; + left:0px; + top:0px; + width:58px; + height:16px; +} +#u39 { + position:absolute; + left:0px; + top:0px; + width:58px; + white-space:nowrap; +} +#u40 { + position:absolute; + left:50px; + top:350px; + width:280px; + height:10px; +} +#u40_start { + position:absolute; + left:0px; + top:-5px; + width:18px; + height:20px; +} +#u40_end { + position:absolute; + left:263px; + top:-5px; + width:18px; + height:20px; +} +#u40_line { + position:absolute; + left:0px; + top:5px; + width:280px; + height:1px; +} +#u41 { + position:absolute; + left:50px; + top:370px; + width:280px; + height:40px; +} +#u41_img { + position:absolute; + left:0px; + top:0px; + width:280px; + height:40px; +} +#u42 { + position:absolute; + left:2px; + top:12px; + width:276px; + visibility:hidden; + word-wrap:break-word; +} +#u43 { + position:absolute; + left:50px; + top:378px; + width:67px; + height:24px; + font-size:20px; + color:#CCCCCC; +} +#u43_img { + position:absolute; + left:0px; + top:0px; + width:67px; + height:24px; +} +#u44 { + position:absolute; + left:0px; + top:0px; + width:67px; + white-space:nowrap; +} +#u45 { + position:absolute; + left:50px; + top:430px; + width:280px; + height:40px; +} +#u45_input { + position:absolute; + left:0px; + top:0px; + width:280px; + height:40px; + background-image:url(../../resources/images/transparent.gif); + text-align:center; + font-family:'Arial'; + font-size:18px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\345\217\221\345\267\245\350\265\204/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\345\217\221\345\267\245\350\265\204/data.js" new file mode 100644 index 0000000..59fd2b2 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\345\217\221\345\267\245\350\265\204/data.js" @@ -0,0 +1,559 @@ +$axure.loadCurrentPage({ + "url":"发工资.html", + "generationDate":new Date(1416993070906.25), + "isCanvasEnabled":false, + "variables":["OnLoadVariable"], + "page":{ + "packageId":"03295cb37d6c4a39b6ba2accd840cc95", + "type":"Axure:Page", + "name":"发工资", + "notes":{ +}, + "style":{ + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "pageAlignment":"near", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "image":null, + "imageHorizontalAlignment":"near", + "imageVerticalAlignment":"near", + "imageRepeat":"auto", + "favicon":null, + "sketchFactor":"0", + "colorStyle":"appliedColor", + "fontName":"应用字体", + "borderWidth":"0"}, + "adaptiveStyles":{ +}, + "interactionMap":{ +}, + "diagram":{ + "objects":[{ + "id":"9ef6483d584f47969fc89354cd8e7c35", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":116}, + "size":{ + "width":8, + "height":36}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ccae4a1e342840c4a857a9a3c8b39c60", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":116}, + "size":{ + "width":8, + "height":36}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u0.png"}}, +{ + "id":"a60e1e9d92a143ea803309b8d1097088", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":192}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ab72d32389524128a7137f5a2c1726ac", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":192}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u2.png"}}, +{ + "id":"2e7942ea9f954db3be710596b0acfb7e", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":255}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"07db8fc4fc894ad2894e5b7b2d6d93ec", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":255}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u2.png"}}, +{ + "id":"a198a3b320fa4903994427223e5c5d5e", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":259, + "y":0}, + "size":{ + "width":60, + "height":10}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"cbab2eb8624644b1b655c783bc88a22d", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":259, + "y":0}, + "size":{ + "width":60, + "height":10}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u6.png"}}, +{ + "id":"ab6d6242d00047f8a243a8377b6c8356", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":6, + "y":6}, + "size":{ + "width":372, + "height":796}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"52"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"5f9cf5ec20dd41d48276de62d28a6642", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":6, + "y":6}, + "size":{ + "width":372, + "height":796}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"52"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u8.png"}}, +{ + "id":"18ad6eae1cdd49e79055084f7e96826b", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":32, + "y":120}, + "size":{ + "width":320, + "height":568}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"b968f448073144cab2f613b25e44ceb1", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":32, + "y":120}, + "size":{ + "width":320, + "height":568}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u10.png"}}, +{ + "id":"2b71272ca6814c0bbde2a6cfcb491837", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":157, + "y":66}, + "size":{ + "width":70, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"3fa1e303642141358ecc3406176ab44f", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":157, + "y":66}, + "size":{ + "width":70, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u12.png"}}, +{ + "id":"1da4bbac62794bedba77f7d31e11489a", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":185, + "y":40}, + "size":{ + "width":14, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"96700ada1c3d4fb492a0b39922f6e3cd", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":185, + "y":40}, + "size":{ + "width":14, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u14.png"}}, +{ + "id":"8779a999c0b44b9982f7c3b8a89faa52", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":156, + "y":704}, + "size":{ + "width":72, + "height":72}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"1fbb6ee86c49494fb5d8663876c4504b", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":156, + "y":704}, + "size":{ + "width":72, + "height":72}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u16.png"}}, +{ + "id":"e381e7da30e74b389656d7ecaf7bb098", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "location":{ + "x":32, + "y":120}, + "size":{ + "width":320, + "height":570}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"812d03e01fa04e9e953417097118810c", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":32, + "y":120}, + "size":{ + "width":320, + "height":570}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/发工资/u18.png"}}, +{ + "id":"246890324ed24ceca8ac814be55cb549", + "label":"", + "type":"imageMapRegion", + "styleType":"imageMapRegion", + "visible":true, + "style":{ + "location":{ + "x":60, + "y":490}, + "size":{ + "width":259, + "height":40}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 我要发工资 - 引导页 - 首次进入", + "target":{ + "targetType":"page", + "url":"我要发工资_-_引导页_-_首次进入.html", + "includeVariables":true}, + "linkType":"current"}]}, +{ + "description":"用例 2", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 我要发工资 - 引导页 - 非首次", + "target":{ + "targetType":"page", + "url":"我要发工资_-_引导页_-_非首次.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true}]}}, + "masters":{ +}, + "objectPaths":{ + "9ef6483d584f47969fc89354cd8e7c35":{ + "scriptId":"u0"}, + "ccae4a1e342840c4a857a9a3c8b39c60":{ + "scriptId":"u1"}, + "a60e1e9d92a143ea803309b8d1097088":{ + "scriptId":"u2"}, + "ab72d32389524128a7137f5a2c1726ac":{ + "scriptId":"u3"}, + "2e7942ea9f954db3be710596b0acfb7e":{ + "scriptId":"u4"}, + "07db8fc4fc894ad2894e5b7b2d6d93ec":{ + "scriptId":"u5"}, + "a198a3b320fa4903994427223e5c5d5e":{ + "scriptId":"u6"}, + "cbab2eb8624644b1b655c783bc88a22d":{ + "scriptId":"u7"}, + "ab6d6242d00047f8a243a8377b6c8356":{ + "scriptId":"u8"}, + "5f9cf5ec20dd41d48276de62d28a6642":{ + "scriptId":"u9"}, + "18ad6eae1cdd49e79055084f7e96826b":{ + "scriptId":"u10"}, + "b968f448073144cab2f613b25e44ceb1":{ + "scriptId":"u11"}, + "2b71272ca6814c0bbde2a6cfcb491837":{ + "scriptId":"u12"}, + "3fa1e303642141358ecc3406176ab44f":{ + "scriptId":"u13"}, + "1da4bbac62794bedba77f7d31e11489a":{ + "scriptId":"u14"}, + "96700ada1c3d4fb492a0b39922f6e3cd":{ + "scriptId":"u15"}, + "8779a999c0b44b9982f7c3b8a89faa52":{ + "scriptId":"u16"}, + "1fbb6ee86c49494fb5d8663876c4504b":{ + "scriptId":"u17"}, + "e381e7da30e74b389656d7ecaf7bb098":{ + "scriptId":"u18"}, + "812d03e01fa04e9e953417097118810c":{ + "scriptId":"u19"}, + "246890324ed24ceca8ac814be55cb549":{ + "scriptId":"u20"}}}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\345\217\221\345\267\245\350\265\204/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\345\217\221\345\267\245\350\265\204/styles.css" new file mode 100644 index 0000000..df485ae --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\345\217\221\345\267\245\350\265\204/styles.css" @@ -0,0 +1,243 @@ +body { + margin:0px; + background-image:none; + position:static; + left:auto; + width:378px; + margin-left:0; + margin-right:0; + text-align:left; +} +#base { + position:absolute; + z-index:0; +} +#u0 { + position:absolute; + left:0px; + top:116px; + width:8px; + height:36px; +} +#u0_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:36px; +} +#u1 { + position:absolute; + left:2px; + top:10px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u2 { + position:absolute; + left:0px; + top:192px; + width:8px; + height:27px; +} +#u2_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:27px; +} +#u3 { + position:absolute; + left:2px; + top:6px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u4 { + position:absolute; + left:0px; + top:255px; + width:8px; + height:27px; +} +#u4_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:27px; +} +#u5 { + position:absolute; + left:2px; + top:6px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u6 { + position:absolute; + left:259px; + top:0px; + width:60px; + height:10px; +} +#u6_img { + position:absolute; + left:0px; + top:0px; + width:60px; + height:10px; +} +#u7 { + position:absolute; + left:2px; + top:-3px; + width:56px; + visibility:hidden; + word-wrap:break-word; +} +#u8 { + position:absolute; + left:6px; + top:6px; + width:372px; + height:796px; +} +#u8_img { + position:absolute; + left:0px; + top:0px; + width:372px; + height:796px; +} +#u9 { + position:absolute; + left:2px; + top:390px; + width:368px; + visibility:hidden; + word-wrap:break-word; +} +#u10 { + position:absolute; + left:32px; + top:120px; + width:320px; + height:568px; +} +#u10_img { + position:absolute; + left:0px; + top:0px; + width:320px; + height:568px; +} +#u11 { + position:absolute; + left:2px; + top:276px; + width:316px; + visibility:hidden; + word-wrap:break-word; +} +#u12 { + position:absolute; + left:157px; + top:66px; + width:70px; + height:14px; +} +#u12_img { + position:absolute; + left:0px; + top:0px; + width:70px; + height:14px; +} +#u13 { + position:absolute; + left:2px; + top:-1px; + width:66px; + visibility:hidden; + word-wrap:break-word; +} +#u14 { + position:absolute; + left:185px; + top:40px; + width:14px; + height:14px; +} +#u14_img { + position:absolute; + left:0px; + top:0px; + width:14px; + height:14px; +} +#u15 { + position:absolute; + left:2px; + top:-1px; + width:10px; + visibility:hidden; + word-wrap:break-word; +} +#u16 { + position:absolute; + left:156px; + top:704px; + width:72px; + height:72px; +} +#u16_img { + position:absolute; + left:0px; + top:0px; + width:72px; + height:72px; +} +#u17 { + position:absolute; + left:2px; + top:28px; + width:68px; + visibility:hidden; + word-wrap:break-word; +} +#u18 { + position:absolute; + left:32px; + top:120px; + width:320px; + height:570px; +} +#u18_img { + position:absolute; + left:0px; + top:0px; + width:320px; + height:570px; +} +#u19 { + position:absolute; + left:2px; + top:277px; + width:316px; + visibility:hidden; + word-wrap:break-word; +} +#u20 { + position:absolute; + left:60px; + top:490px; + width:259px; + height:40px; + overflow:hidden; + background-image:url('../../resources/images/transparent.gif'); +} diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\345\217\221\346\224\276\345\216\206\345\217\262/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\345\217\221\346\224\276\345\216\206\345\217\262/data.js" new file mode 100644 index 0000000..95bc275 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\345\217\221\346\224\276\345\216\206\345\217\262/data.js" @@ -0,0 +1,8388 @@ +$axure.loadCurrentPage({ + "url":"发放历史.html", + "generationDate":new Date(1416993074328.13), + "isCanvasEnabled":false, + "variables":["OnLoadVariable"], + "page":{ + "packageId":"4cb7f96e8a1f4f6ea56bc97843ffddf6", + "type":"Axure:Page", + "name":"发放历史", + "notes":{ +}, + "style":{ + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "pageAlignment":"near", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "image":null, + "imageHorizontalAlignment":"near", + "imageVerticalAlignment":"near", + "imageRepeat":"auto", + "favicon":null, + "sketchFactor":"0", + "colorStyle":"appliedColor", + "fontName":"应用字体", + "borderWidth":"0"}, + "adaptiveStyles":{ +}, + "interactionMap":{ +}, + "diagram":{ + "objects":[{ + "id":"7bc377c959664812924f32be59d2a5ab", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":116}, + "size":{ + "width":8, + "height":36}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"da32b6e849194ee6a05abb03e7d9d61f", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":116}, + "size":{ + "width":8, + "height":36}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u0.png"}}, +{ + "id":"43d78d13ec41462f8b99d39d339a9bf6", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":192}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"edad6c0e387744a79a1757a17c5f5ecb", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":192}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u2.png"}}, +{ + "id":"9bc311a321c040a996f0a86cb34be6da", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":255}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"38cdc02c923a47398ac1174a2c366231", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":255}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u2.png"}}, +{ + "id":"f6fe025ca7934e458bf49e089bb2318c", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":259, + "y":0}, + "size":{ + "width":60, + "height":10}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"fcfb8b26bbb74c5898fc4ed2925e9c8c", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":259, + "y":0}, + "size":{ + "width":60, + "height":10}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u6.png"}}, +{ + "id":"f3d73da014db40159c8d634e7c6a52fa", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":6, + "y":6}, + "size":{ + "width":372, + "height":796}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"52"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"76387ab62d934ac9ba2cae847bf113cd", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":6, + "y":6}, + "size":{ + "width":372, + "height":796}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"52"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u8.png"}}, +{ + "id":"0fcdef3270a94230804b49c496d43b12", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":32, + "y":120}, + "size":{ + "width":320, + "height":568}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"83dc38aaebbc49f78054bf125c17a0a0", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":32, + "y":120}, + "size":{ + "width":320, + "height":568}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u10.png"}}, +{ + "id":"456358342284451c8ad1133633473349", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":157, + "y":66}, + "size":{ + "width":70, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"3f240373eae84271a31eabf16c477517", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":157, + "y":66}, + "size":{ + "width":70, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u12.png"}}, +{ + "id":"1bf21dc955c44f389c59598fc35b6d29", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":185, + "y":40}, + "size":{ + "width":14, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"7220f6fd15bd497eb3ed90504d4e3b1a", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":185, + "y":40}, + "size":{ + "width":14, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u14.png"}}, +{ + "id":"e4e81fd0091f43c2a476727c2d4d3fac", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":156, + "y":704}, + "size":{ + "width":72, + "height":72}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"43e6226648244edbba12006f52143480", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":156, + "y":704}, + "size":{ + "width":72, + "height":72}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u16.png"}}, +{ + "id":"36f04037aa2b468c890b6d89f7eb4a8e", + "label":"发放历史切换", + "type":"dynamicPanel", + "styleType":"dynamicPanel", + "visible":true, + "style":{ + "location":{ + "x":32, + "y":120}, + "size":{ + "width":320, + "height":568}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onSwipeLeft":{ + "description":"OnSwipeLeft", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"setPanelState", + "description":"设置 发放历史切换 to 月度工资表 向左滑动 in 500ms", + "panelsToStates":[{ + "panelPath":["36f04037aa2b468c890b6d89f7eb4a8e"], + "stateInfo":{ + "setStateType":"diagram", + "stateNumber":2, + "stateValue":{ + "exprType":"stringLiteral", + "value":"1", + "stos":[]}, + "loop":false, + "showWhenSet":false, + "options":{ + "animateIn":{ + "easing":"slideLeft", + "duration":500}, + "compress":false}}}]}]}]}}, + "scrollbars":"none", + "fitToContent":false, + "propagate":false, + "diagrams":[{ + "id":"24aa2e5d37d44238984a62a8a94a78e9", + "label":"订单历史", + "type":"Axure:PanelDiagram", + "objects":[{ + "id":"07dfc6961e9043b583cc3e492917922d", + "label":"", + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":18}, + "size":{ + "width":319, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"be46eb5b25d44f379708d01687835c4f", + "label":"", + "isContained":true, + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":18}, + "size":{ + "width":319, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_首次进入/u18.png"}}, +{ + "id":"afff7e57fa04446db90e67008faa1cc1", + "label":"", + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "location":{ + "x":8, + "y":37}, + "size":{ + "width":22, + "height":22}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"3b563a649e5947358c893a5c26f70077", + "label":"", + "isContained":true, + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":8, + "y":37}, + "size":{ + "width":22, + "height":22}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 发工资", + "target":{ + "targetType":"page", + "url":"发工资.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true, + "images":{ + "normal~":"images/我要发工资_-_引导页_-_首次进入/u20.png"}}, +{ + "id":"70357f7bbe83497f99a16c0fd745b148", + "label":"", + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontSize":"20px", + "fontWeight":"700", + "location":{ + "x":70, + "y":36}, + "size":{ + "width":179, + "height":24}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"be182e57db0c4bcfabe56e918fdbaba9", + "label":"", + "isContained":true, + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontSize":"20px", + "fontWeight":"700", + "location":{ + "x":70, + "y":36}, + "size":{ + "width":179, + "height":24}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"c6901740b24b450796faf6f5f122ac52", + "label":"历史记录显示", + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"dynamicPanel", + "styleType":"dynamicPanel", + "visible":true, + "style":{ + "location":{ + "x":10, + "y":133}, + "size":{ + "width":300, + "height":425}}, + "adaptiveStyles":{ +}, + "scrollbars":"none", + "fitToContent":false, + "propagate":false, + "diagrams":[{ + "id":"370f8cfbed2d4c95b2346d39c870879b", + "label":"State1", + "type":"Axure:PanelDiagram", + "objects":[{ + "id":"5601d0f009f4457c876cb285b9c5edc7", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":255}, + "size":{ + "width":300, + "height":45}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"fbef92cc12374bd2b2b1511182fe3c1e", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":255}, + "size":{ + "width":300, + "height":45}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/发放历史/u26.png"}}, +{ + "id":"42e7ed1c56af4c0d96c83029e5387ade", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":310}, + "size":{ + "width":300, + "height":45}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"49b7013f92c44911af75357022d9e866", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":310}, + "size":{ + "width":300, + "height":45}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/发放历史/u26.png"}}, +{ + "id":"19be4211a40d4cd6beec8e65630b6c79", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":10, + "y":264}, + "size":{ + "width":115, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d053df0ff32f4d60be6b6a19c6b3d807", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":10, + "y":264}, + "size":{ + "width":115, + "height":30}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"d3a906a9b98046269bf684dd7b8a0777", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":154, + "y":280}, + "size":{ + "width":30, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"7e401e7ae2694e238b62bd96400fabf6", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":154, + "y":280}, + "size":{ + "width":30, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"719f83581e5f46c2a022a6273eaa01b2", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":202, + "y":280}, + "size":{ + "width":88, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"456362811429489d8ec7a16f9afb821b", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":202, + "y":280}, + "size":{ + "width":88, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"a7d00ca446e347c98405b6ae6ec467ac", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":10, + "y":319}, + "size":{ + "width":115, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"17e6fe27257d415196b2f4848242d861", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":10, + "y":319}, + "size":{ + "width":115, + "height":30}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"08cdb0791e7740148c617ceb4d26808d", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":154, + "y":333}, + "size":{ + "width":30, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"5edfa556bd764391944ad25b1c60b9ec", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":154, + "y":333}, + "size":{ + "width":30, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"cf053ef5a708456d89d827238c38590f", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":202, + "y":333}, + "size":{ + "width":88, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a9e285547afe44299351d5f8acb25e03", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":202, + "y":333}, + "size":{ + "width":88, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"114c962bbeb04843936a62a5e6a4fd62", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":154, + "y":261}, + "size":{ + "width":40, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"39392d742b9042c88a32b0b66ca02b76", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":154, + "y":261}, + "size":{ + "width":40, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"50b64e459a6f4ec2954f1ba855d8d9cf", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":154, + "y":316}, + "size":{ + "width":40, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"7b45e5be1b7f4a54a1176bcdeb9bbdc7", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":154, + "y":316}, + "size":{ + "width":40, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"de3d1f5d34eb4329a0663fbd0b3e872d", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":145}, + "size":{ + "width":300, + "height":45}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d62962f1a5f9467bbbf13368b950c97e", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":145}, + "size":{ + "width":300, + "height":45}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/发放历史/u26.png"}}, +{ + "id":"5e6bacefe20a475c8893fb81c702503c", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":10, + "y":154}, + "size":{ + "width":129, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a5ffb2cf66e64f46a191e56731cbe5f4", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":10, + "y":154}, + "size":{ + "width":129, + "height":30}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"dd08eae6b499490fa80a28fd2dcfafc0", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":154, + "y":168}, + "size":{ + "width":30, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c5ca1385d1d1419495eaa3a7ce2fe85d", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":154, + "y":168}, + "size":{ + "width":30, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"5ca056b11b9648f68a4ef2eb7114d173", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":202, + "y":168}, + "size":{ + "width":88, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"f1e9a07bf2f74c09a7960be959eec30b", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":202, + "y":168}, + "size":{ + "width":88, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"0b39e1f493a944c1883a22a689a2fb9a", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":154, + "y":151}, + "size":{ + "width":40, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"95bd1fe0dde341f7836248f1d4b78402", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":154, + "y":151}, + "size":{ + "width":40, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"d144150fc185428f938c9a4831c9b2bb", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":204, + "y":152}, + "size":{ + "width":47, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"7a70537b3f0d4bb384f4a891f5972dd4", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":204, + "y":152}, + "size":{ + "width":47, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"5ec7e91393d14b86b8897434b8e35233", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":204, + "y":261}, + "size":{ + "width":47, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"4491194622424e56b2d840739732c122", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":204, + "y":261}, + "size":{ + "width":47, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"42eb7678045048108d080e5548e13098", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":204, + "y":316}, + "size":{ + "width":47, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"5c544e0cdee34999a47e4fdc4ae0ff09", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":204, + "y":316}, + "size":{ + "width":47, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"5f9b7556b85a47c187ffb31c1c8bf260", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":200}, + "size":{ + "width":300, + "height":45}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ffcb844d7f774a0b8153b4db70874689", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":200}, + "size":{ + "width":300, + "height":45}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/发放历史/u26.png"}}, +{ + "id":"d972dfbd2be1483aa8b79c0f9a8bd4c4", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":10, + "y":209}, + "size":{ + "width":115, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"6cb8fe72e0e241b0a5c6042d0450fa5e", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":10, + "y":209}, + "size":{ + "width":115, + "height":30}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"8296c696b3dd4e248fdb8b60d2f99f08", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":154, + "y":225}, + "size":{ + "width":30, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ebaf8d7f81614a56bebfcb64d28d1e0b", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":154, + "y":225}, + "size":{ + "width":30, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"d6c2c7ef464448b296106cbd491960e7", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":202, + "y":225}, + "size":{ + "width":88, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"e07cd2d4cc6a4053a422b5e8ed65df9c", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":202, + "y":225}, + "size":{ + "width":88, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"9373fa0474d94aa09ef8aa3b3423a6f7", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":154, + "y":206}, + "size":{ + "width":40, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"2139c596765c4a969ddce83f20ff9fa4", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":154, + "y":206}, + "size":{ + "width":40, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"c90484f915044ee79a0c94f31590b1fc", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":204, + "y":206}, + "size":{ + "width":47, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c90febee832d4430aec7533ab7f3a0f8", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":204, + "y":206}, + "size":{ + "width":47, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"372c1a7c955e4002a32780dec202a830", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":365}, + "size":{ + "width":300, + "height":45}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"3394ae839c7f4d9180f3c267e5199925", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":365}, + "size":{ + "width":300, + "height":45}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/发放历史/u26.png"}}, +{ + "id":"b26957a1880d44ae9220670505ea04d5", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":10, + "y":374}, + "size":{ + "width":115, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"0dfda9fb2ecb492aaa16fed11c3562b3", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":10, + "y":374}, + "size":{ + "width":115, + "height":30}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"80b921af306847dfb668c0caf90b7cc3", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":154, + "y":388}, + "size":{ + "width":30, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"903a36ad6cad45799919d6afd7a7d1d6", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":154, + "y":388}, + "size":{ + "width":30, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"5998d60a89b04479b6c5d7d2e12dbd04", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":202, + "y":388}, + "size":{ + "width":88, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"0f0629b45cfc4debb38d61287716c2be", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":202, + "y":388}, + "size":{ + "width":88, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"5e2a4734e3194bfd89604128a23e56db", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":154, + "y":371}, + "size":{ + "width":40, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"124cf3eb715a46cb8a256859c02a3ac4", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":154, + "y":371}, + "size":{ + "width":40, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"c0118dbc42cb46c49ae9f6d23cfc7172", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":204, + "y":371}, + "size":{ + "width":47, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"57ce669221364c098a401793bc9332f6", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":204, + "y":371}, + "size":{ + "width":47, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"bda6b7b28a9a498fa1ac664e539cef15", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"imageMapRegion", + "styleType":"imageMapRegion", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":147.5}, + "size":{ + "width":300, + "height":40}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 订单详情 - 已发放", + "target":{ + "targetType":"page", + "url":"订单详情_-_已发放.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true}]}, +{ + "id":"6042deae46fb495393d598b76bbe9805", + "label":"显示", + "type":"Axure:PanelDiagram", + "objects":[{ + "id":"638cfad9ce204845a5512b2f25c88e00", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":120}, + "size":{ + "width":300, + "height":45}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"2f0991fa8a6f4b2883a8098246cfd289", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":120}, + "size":{ + "width":300, + "height":45}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/发放历史/u26.png"}}, +{ + "id":"161191328c8d417ba79332f8320628a4", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":175}, + "size":{ + "width":300, + "height":45}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"189d88ae9174453a961b673642de763e", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":175}, + "size":{ + "width":300, + "height":45}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/发放历史/u26.png"}}, +{ + "id":"c3a5c5a94d1548d6a3217964b99aa15d", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":10, + "y":129}, + "size":{ + "width":115, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"fddaac1a12d74dcfb5daaf6648d310a6", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":10, + "y":129}, + "size":{ + "width":115, + "height":30}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"7d8cb3b75926492b8ecdee24a21a39f1", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":154, + "y":145}, + "size":{ + "width":30, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"72e140688be14bbaa38580cc1b2f633b", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":154, + "y":145}, + "size":{ + "width":30, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"31386a212f7c4c87a7a36a598c09476f", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":202, + "y":145}, + "size":{ + "width":88, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"4acabd27c3b641eeb46f549afe0d8b63", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":202, + "y":145}, + "size":{ + "width":88, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"eecd2091b02944989b44bd9518b60e73", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":10, + "y":184}, + "size":{ + "width":115, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"3d883e560553403cb81de32a98226d59", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":10, + "y":184}, + "size":{ + "width":115, + "height":30}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"24c1b77f1ef54059a5e2ea502d9d838b", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":154, + "y":198}, + "size":{ + "width":30, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d9fa60a093754c3ea7e3b69687b0bcf5", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":154, + "y":198}, + "size":{ + "width":30, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"015d7cea180543268fa50131cf26c4e1", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":202, + "y":198}, + "size":{ + "width":88, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"03cc26cd77f54102b8fb9c1d5e5265bf", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":202, + "y":198}, + "size":{ + "width":88, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"388012ee4230474e95f0fb8c248af7f7", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":154, + "y":126}, + "size":{ + "width":40, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"e5eb62e3044549e2a98cd4343017b973", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":154, + "y":126}, + "size":{ + "width":40, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"b86d1039d0ea4aac8adcd420670683af", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":154, + "y":181}, + "size":{ + "width":40, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"981d2b19d4a740d9a946ce98e492cad8", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":154, + "y":181}, + "size":{ + "width":40, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"aef5dab0f1b546c29ef0517336df7878", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":10}, + "size":{ + "width":300, + "height":45}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"386e466f3ac4465a8642732b2e73a891", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":10}, + "size":{ + "width":300, + "height":45}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/发放历史/u26.png"}}, +{ + "id":"b2dd620ca1c644ac89b387492edd479e", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":10, + "y":19}, + "size":{ + "width":129, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"be37f7974d414826bf039b1bea81a261", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":10, + "y":19}, + "size":{ + "width":129, + "height":30}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"49e472f77f5e4807a0a80a0e48ff0c1f", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":154, + "y":33}, + "size":{ + "width":30, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"8802dc8ec46e45e9969e8ad7eb28393a", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":154, + "y":33}, + "size":{ + "width":30, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"8fc2f179c9f448ca8fc0c838ee81c81e", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":202, + "y":33}, + "size":{ + "width":88, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"5caeb469bd814eeea78667e01d617415", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":202, + "y":33}, + "size":{ + "width":88, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"deb1f06494b9417ea52baf3a56fe9ec3", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":154, + "y":16}, + "size":{ + "width":40, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"6c311fcb13e24699beb5bbda15334900", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":154, + "y":16}, + "size":{ + "width":40, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"353fed6f90004cc69df34c5fbf4776e3", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":204, + "y":17}, + "size":{ + "width":47, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"68c473e21b3045ebbc8f88ecca3d6294", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":204, + "y":17}, + "size":{ + "width":47, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"bc728bd9a4714a14a0f6f84c6b3de0bf", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":204, + "y":126}, + "size":{ + "width":47, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ca8d66ead9cc46958a65198ddab3b883", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":204, + "y":126}, + "size":{ + "width":47, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"5c4a79afbdbd44ca980228a3cabeb76b", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":204, + "y":181}, + "size":{ + "width":47, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ac3ba83407e94b6eb3b71c88de33110b", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":204, + "y":181}, + "size":{ + "width":47, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"5cb8fe554f1342c987480fb2553960e8", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":65}, + "size":{ + "width":300, + "height":45}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ec1e2423fdb947f6a3e3caee8337fa78", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":65}, + "size":{ + "width":300, + "height":45}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/发放历史/u26.png"}}, +{ + "id":"7bd6b9e523d4417da1c62ebbf1759b77", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":10, + "y":74}, + "size":{ + "width":115, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"fb626f152b8943c3b2a67590472612b7", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":10, + "y":74}, + "size":{ + "width":115, + "height":30}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"c096fbc29d6845a8837e9417459fb458", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":154, + "y":90}, + "size":{ + "width":30, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d25599bec57348b5993f8d66085c1e93", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":154, + "y":90}, + "size":{ + "width":30, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"8908087bfcfe403b82928d50c7dc11e4", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":202, + "y":90}, + "size":{ + "width":88, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"fc50082e5d634a14ae165dcba5acfbee", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":202, + "y":90}, + "size":{ + "width":88, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"f2490fb80d2c450ea10367d5c6d5d30a", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":154, + "y":71}, + "size":{ + "width":40, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"be7499686b854ce5acbdd1628264b7fb", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":154, + "y":71}, + "size":{ + "width":40, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"1740353ca33f499ab30ccfc887f4ce32", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":204, + "y":71}, + "size":{ + "width":47, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"67514559a7be40f18c378ded6e518544", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":204, + "y":71}, + "size":{ + "width":47, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"67fb1470f2ed49298aa6e9f651669209", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":230}, + "size":{ + "width":300, + "height":45}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"4802b94024d94bfbb040423d9af17516", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":230}, + "size":{ + "width":300, + "height":45}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/发放历史/u26.png"}}, +{ + "id":"b74f2c2ebc8a45d89861c3f32f21039c", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":10, + "y":239}, + "size":{ + "width":115, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"6d5df70664c44fc09deb0fe21cdd2fa6", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":10, + "y":239}, + "size":{ + "width":115, + "height":30}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"3de54408042541e6a401575c377a78e9", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":154, + "y":253}, + "size":{ + "width":30, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"f060cef26d5442ba9d6c7b0932d0d939", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":154, + "y":253}, + "size":{ + "width":30, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"edf43b4020f54da69f76f62bd27cf4de", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":202, + "y":253}, + "size":{ + "width":88, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"8d7b72e37ef9491a9fdd5a042c44706c", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":202, + "y":253}, + "size":{ + "width":88, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"1a881cb8787d4d3a99b4b789bd43840c", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":154, + "y":236}, + "size":{ + "width":40, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d71ff6c733124084abd78ce8022876a9", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":154, + "y":236}, + "size":{ + "width":40, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"14b62542f4bc4dec9bf5eede3c2b0bc1", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":204, + "y":236}, + "size":{ + "width":47, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"6822d3c5b0f3489eb8c91bd5323ab1ea", + "label":"", + "isContained":true, + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":204, + "y":236}, + "size":{ + "width":47, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"2a910ea8b35e44a9b31c788318089e87", + "label":"", + "parentDynamicPanel":"c6901740b24b450796faf6f5f122ac52", + "type":"imageMapRegion", + "styleType":"imageMapRegion", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":12.5}, + "size":{ + "width":300, + "height":40}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 订单详情 - 已发放", + "target":{ + "targetType":"page", + "url":"订单详情_-_已发放.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true}]}]}, +{ + "id":"b98db90555d34a1b9f338b413268ae6f", + "label":"日期表", + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"dynamicPanel", + "styleType":"dynamicPanel", + "visible":true, + "style":{ + "location":{ + "x":10, + "y":133}, + "size":{ + "width":290, + "height":135}}, + "adaptiveStyles":{ +}, + "scrollbars":"none", + "fitToContent":false, + "propagate":false, + "diagrams":[{ + "id":"926b137021cb4dfebc79f6e406c59a42", + "label":"展开状态", + "type":"Axure:PanelDiagram", + "objects":[{ + "id":"4fd3da38c88342cb9dda718d077ef9e8", + "label":"", + "parentDynamicPanel":"b98db90555d34a1b9f338b413268ae6f", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFCCCCCC}, + "size":{ + "width":290, + "height":45}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"1a5907f560484f85bf66aaec86c13f3b", + "label":"", + "isContained":true, + "parentDynamicPanel":"b98db90555d34a1b9f338b413268ae6f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFCCCCCC}, + "size":{ + "width":290, + "height":45}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/发放历史/u149.png"}}, +{ + "id":"0072d44e5c984d39b4f2b05aa60303b8", + "label":"", + "parentDynamicPanel":"b98db90555d34a1b9f338b413268ae6f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "fill":{ + "fillType":"solid", + "color":0xFFCCCCCC}, + "location":{ + "x":10, + "y":9}, + "size":{ + "width":37, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"4333d3313a73407c8b3faf3c41b05864", + "label":"", + "isContained":true, + "parentDynamicPanel":"b98db90555d34a1b9f338b413268ae6f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "fill":{ + "fillType":"solid", + "color":0xFFCCCCCC}, + "location":{ + "x":10, + "y":9}, + "size":{ + "width":37, + "height":30}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/发放历史/u151.png"}}, +{ + "id":"08340c6e1ae3458fad7f975b629f3044", + "label":"", + "parentDynamicPanel":"b98db90555d34a1b9f338b413268ae6f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "fill":{ + "fillType":"solid", + "color":0xFFCCCCCC}, + "location":{ + "x":149, + "y":25}, + "size":{ + "width":30, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"4fb3039feb2d4d2492898a7453a63f62", + "label":"", + "isContained":true, + "parentDynamicPanel":"b98db90555d34a1b9f338b413268ae6f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "fill":{ + "fillType":"solid", + "color":0xFFCCCCCC}, + "location":{ + "x":149, + "y":25}, + "size":{ + "width":30, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/发放历史/u153.png"}}, +{ + "id":"08946eac149c41608020148e5e181a06", + "label":"", + "parentDynamicPanel":"b98db90555d34a1b9f338b413268ae6f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "fill":{ + "fillType":"solid", + "color":0xFFCCCCCC}, + "location":{ + "x":195, + "y":25}, + "size":{ + "width":88, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"1c7c2eef5855444681d6293e57d9b9ce", + "label":"", + "isContained":true, + "parentDynamicPanel":"b98db90555d34a1b9f338b413268ae6f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "fill":{ + "fillType":"solid", + "color":0xFFCCCCCC}, + "location":{ + "x":195, + "y":25}, + "size":{ + "width":88, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/发放历史/u155.png"}}, +{ + "id":"529c0c87e07e4259bc1858947b303203", + "label":"", + "parentDynamicPanel":"b98db90555d34a1b9f338b413268ae6f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "fill":{ + "fillType":"solid", + "color":0xFFCCCCCC}, + "location":{ + "x":149, + "y":6}, + "size":{ + "width":40, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"656198e4381846b1afcbccf9e4dc8480", + "label":"", + "isContained":true, + "parentDynamicPanel":"b98db90555d34a1b9f338b413268ae6f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "fill":{ + "fillType":"solid", + "color":0xFFCCCCCC}, + "location":{ + "x":149, + "y":6}, + "size":{ + "width":40, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/发放历史/u157.png"}}, +{ + "id":"509fd2bb717f4eca91a6f4235667930a", + "label":"", + "parentDynamicPanel":"b98db90555d34a1b9f338b413268ae6f", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFCCCCCC}, + "location":{ + "x":0, + "y":45}, + "size":{ + "width":290, + "height":45}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"0c623d6ee1db4977a7402d542c081767", + "label":"", + "isContained":true, + "parentDynamicPanel":"b98db90555d34a1b9f338b413268ae6f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFCCCCCC}, + "location":{ + "x":0, + "y":45}, + "size":{ + "width":290, + "height":45}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/发放历史/u149.png"}}, +{ + "id":"45b9f8a9befc4419b3a6313c3b09d428", + "label":"", + "parentDynamicPanel":"b98db90555d34a1b9f338b413268ae6f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "fill":{ + "fillType":"solid", + "color":0xFFCCCCCC}, + "location":{ + "x":10, + "y":54}, + "size":{ + "width":51, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"cce40a8524d545ebad7718dd9233eabd", + "label":"", + "isContained":true, + "parentDynamicPanel":"b98db90555d34a1b9f338b413268ae6f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "fill":{ + "fillType":"solid", + "color":0xFFCCCCCC}, + "location":{ + "x":10, + "y":54}, + "size":{ + "width":51, + "height":30}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/发放历史/u161.png"}}, +{ + "id":"d47cfaea1a484a7dbdb81d5e73084ada", + "label":"", + "parentDynamicPanel":"b98db90555d34a1b9f338b413268ae6f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "fill":{ + "fillType":"solid", + "color":0xFFCCCCCC}, + "location":{ + "x":149, + "y":70}, + "size":{ + "width":30, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c86cff2a9a6a44f285598a6bfe066554", + "label":"", + "isContained":true, + "parentDynamicPanel":"b98db90555d34a1b9f338b413268ae6f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "fill":{ + "fillType":"solid", + "color":0xFFCCCCCC}, + "location":{ + "x":149, + "y":70}, + "size":{ + "width":30, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/发放历史/u153.png"}}, +{ + "id":"306581a824c449d58d9bc5ac78273fdd", + "label":"", + "parentDynamicPanel":"b98db90555d34a1b9f338b413268ae6f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "fill":{ + "fillType":"solid", + "color":0xFFCCCCCC}, + "location":{ + "x":195, + "y":70}, + "size":{ + "width":88, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"21d6e07c7ae346158ee28f60f69863ba", + "label":"", + "isContained":true, + "parentDynamicPanel":"b98db90555d34a1b9f338b413268ae6f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "fill":{ + "fillType":"solid", + "color":0xFFCCCCCC}, + "location":{ + "x":195, + "y":70}, + "size":{ + "width":88, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/发放历史/u155.png"}}, +{ + "id":"3e92bf7129f7454fb21fa9f1aff3766f", + "label":"", + "parentDynamicPanel":"b98db90555d34a1b9f338b413268ae6f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF0000FF, + "opacity":1}, + "fill":{ + "fillType":"solid", + "color":0xFFCCCCCC}, + "location":{ + "x":149, + "y":51}, + "size":{ + "width":40, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"821749f886dd4789b0212bb5fd9e5e37", + "label":"", + "isContained":true, + "parentDynamicPanel":"b98db90555d34a1b9f338b413268ae6f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF0000FF, + "opacity":1}, + "fill":{ + "fillType":"solid", + "color":0xFFCCCCCC}, + "location":{ + "x":149, + "y":51}, + "size":{ + "width":40, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/发放历史/u157.png"}}, +{ + "id":"4e5bad1b50424369ab717a538d862834", + "label":"", + "parentDynamicPanel":"b98db90555d34a1b9f338b413268ae6f", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFCCCCCC}, + "location":{ + "x":0, + "y":90}, + "size":{ + "width":290, + "height":45}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"dd166992478c49d7aaa766f3d20c06b9", + "label":"", + "isContained":true, + "parentDynamicPanel":"b98db90555d34a1b9f338b413268ae6f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFCCCCCC}, + "location":{ + "x":0, + "y":90}, + "size":{ + "width":290, + "height":45}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/发放历史/u149.png"}}, +{ + "id":"a98cfe8f77b34ea38ffdd7157f1360b6", + "label":"", + "parentDynamicPanel":"b98db90555d34a1b9f338b413268ae6f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "fill":{ + "fillType":"solid", + "color":0xFFCCCCCC}, + "location":{ + "x":10, + "y":99}, + "size":{ + "width":51, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"8d7f8bafe35e40948b11c7a493dea3a3", + "label":"", + "isContained":true, + "parentDynamicPanel":"b98db90555d34a1b9f338b413268ae6f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "fill":{ + "fillType":"solid", + "color":0xFFCCCCCC}, + "location":{ + "x":10, + "y":99}, + "size":{ + "width":51, + "height":30}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/发放历史/u161.png"}}, +{ + "id":"78e58848c9c8493984237c2d81c9293b", + "label":"", + "parentDynamicPanel":"b98db90555d34a1b9f338b413268ae6f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "fill":{ + "fillType":"solid", + "color":0xFFCCCCCC}, + "location":{ + "x":149, + "y":115}, + "size":{ + "width":30, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"33a65bd4a80f4f6785cd1590f3dbdb0e", + "label":"", + "isContained":true, + "parentDynamicPanel":"b98db90555d34a1b9f338b413268ae6f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "fill":{ + "fillType":"solid", + "color":0xFFCCCCCC}, + "location":{ + "x":149, + "y":115}, + "size":{ + "width":30, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/发放历史/u153.png"}}, +{ + "id":"c5f73abe013241ad93d39f3dcd321e01", + "label":"", + "parentDynamicPanel":"b98db90555d34a1b9f338b413268ae6f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "fill":{ + "fillType":"solid", + "color":0xFFCCCCCC}, + "location":{ + "x":195, + "y":115}, + "size":{ + "width":88, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"8f492bda1dbc49fc98a107c59342fe23", + "label":"", + "isContained":true, + "parentDynamicPanel":"b98db90555d34a1b9f338b413268ae6f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "fill":{ + "fillType":"solid", + "color":0xFFCCCCCC}, + "location":{ + "x":195, + "y":115}, + "size":{ + "width":88, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/发放历史/u155.png"}}, +{ + "id":"ef099b1797a04971a62b055cf9fe6eba", + "label":"", + "parentDynamicPanel":"b98db90555d34a1b9f338b413268ae6f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF0000FF, + "opacity":1}, + "fill":{ + "fillType":"solid", + "color":0xFFCCCCCC}, + "location":{ + "x":149, + "y":96}, + "size":{ + "width":40, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"08eca53762024653818cae32c3fe5d41", + "label":"", + "isContained":true, + "parentDynamicPanel":"b98db90555d34a1b9f338b413268ae6f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF0000FF, + "opacity":1}, + "fill":{ + "fillType":"solid", + "color":0xFFCCCCCC}, + "location":{ + "x":149, + "y":96}, + "size":{ + "width":40, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/发放历史/u157.png"}}, +{ + "id":"a218372e1b0e4ce8833337b6879c06c0", + "label":"", + "parentDynamicPanel":"b98db90555d34a1b9f338b413268ae6f", + "type":"imageMapRegion", + "styleType":"imageMapRegion", + "visible":true, + "style":{ + "size":{ + "width":290, + "height":45}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 订单详情 - 继续支付", + "target":{ + "targetType":"page", + "url":"订单详情_-_继续支付.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true}, +{ + "id":"7be42cacdd154bc59d5c90d5d006e98b", + "label":"", + "parentDynamicPanel":"b98db90555d34a1b9f338b413268ae6f", + "type":"imageMapRegion", + "styleType":"imageMapRegion", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":45}, + "size":{ + "width":290, + "height":45}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 订单详情 - 待审批", + "target":{ + "targetType":"page", + "url":"订单详情_-_待审批.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true}]}, +{ + "id":"628120d16e054fd98a0bb21a3735e96a", + "label":"收起状态", + "type":"Axure:PanelDiagram", + "objects":[]}]}, +{ + "id":"72b1f7fc29a84cfdb2cb60dd8b4db78b", + "label":"", + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":10, + "y":88}, + "size":{ + "width":300, + "height":45}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"e27f182982f547898af556e8ea9b8cff", + "label":"", + "isContained":true, + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":10, + "y":88}, + "size":{ + "width":300, + "height":45}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/发放历史/u26.png"}}, +{ + "id":"b7f5a013834d4d829dbfab90d129e700", + "label":"", + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":20, + "y":98}, + "size":{ + "width":129, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"1029f6d167fa4a2ebc805f4b7e333cf2", + "label":"", + "isContained":true, + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":20, + "y":98}, + "size":{ + "width":129, + "height":30}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"1dc6db751cfe4faea923760ac081d4f7", + "label":"", + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"imageMapRegion", + "styleType":"imageMapRegion", + "visible":true, + "style":{ + "location":{ + "x":10, + "y":88}, + "size":{ + "width":300, + "height":45}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"setPanelState", + "description":"设置 日期表 to 收起状态", + "panelsToStates":[{ + "panelPath":["b98db90555d34a1b9f338b413268ae6f"], + "stateInfo":{ + "setStateType":"diagram", + "stateNumber":2, + "stateValue":{ + "exprType":"stringLiteral", + "value":"1", + "stos":[]}, + "loop":false, + "showWhenSet":false, + "options":{ + "compress":false}}}]}, +{ + "action":"setPanelState", + "description":"设置 历史记录显示 to 显示 向上滑动 in 500ms", + "panelsToStates":[{ + "panelPath":["c6901740b24b450796faf6f5f122ac52"], + "stateInfo":{ + "setStateType":"diagram", + "stateNumber":2, + "stateValue":{ + "exprType":"stringLiteral", + "value":"1", + "stos":[]}, + "loop":false, + "showWhenSet":false, + "options":{ + "animateIn":{ + "easing":"slideUp", + "duration":500}, + "compress":false}}}]}]}]}}, + "tabbable":true}]}, +{ + "id":"d9a3ac0fd5a244db92f818f77fb4b966", + "label":"月度工资表", + "type":"Axure:PanelDiagram", + "objects":[{ + "id":"3eeda2436da9457ca7195de5d97938bf", + "label":"月度工资表", + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"dynamicPanel", + "styleType":"dynamicPanel", + "visible":true, + "style":{ + "size":{ + "width":319, + "height":570}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onSwipeLeft":{ + "description":"OnSwipeLeft", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"setPanelState", + "description":"设置 月度工资表 to 人的工资 向左滑动 in 500ms", + "panelsToStates":[{ + "panelPath":["3eeda2436da9457ca7195de5d97938bf"], + "stateInfo":{ + "setStateType":"diagram", + "stateNumber":2, + "stateValue":{ + "exprType":"stringLiteral", + "value":"1", + "stos":[]}, + "loop":false, + "showWhenSet":false, + "options":{ + "animateIn":{ + "easing":"slideLeft", + "duration":500}, + "compress":false}}}]}]}]}}, + "scrollbars":"none", + "fitToContent":false, + "propagate":false, + "diagrams":[{ + "id":"350f07a3f3fc405ca2b92c6b40df1a24", + "label":"月度工资", + "type":"Axure:PanelDiagram", + "objects":[{ + "id":"84fee3dd3e724110824c0a772bc3de97", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":18}, + "size":{ + "width":319, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"eeb8653ef0954f4190cdabc70fbc71ec", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":18}, + "size":{ + "width":319, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_首次进入/u18.png"}}, +{ + "id":"41717948539047958bc8b7055606ff05", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "location":{ + "x":8, + "y":37}, + "size":{ + "width":22, + "height":22}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"66c37cf95c544d1fb53f88a70cea06de", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":8, + "y":37}, + "size":{ + "width":22, + "height":22}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_首次进入/u20.png"}}, +{ + "id":"96175bd355ca4f18a67e60a8e6d12998", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontSize":"20px", + "fontWeight":"700", + "location":{ + "x":60, + "y":35}, + "size":{ + "width":199, + "height":24}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"8fbaec72f4914ee4b232ce4382e4784a", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontSize":"20px", + "fontWeight":"700", + "location":{ + "x":60, + "y":35}, + "size":{ + "width":199, + "height":24}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"e913763d084846e09e839d8d448b7cb7", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":8, + "y":198}, + "size":{ + "width":300, + "height":45}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"633feda9aeab43e7b2263c391e703623", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":8, + "y":198}, + "size":{ + "width":300, + "height":45}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/发放历史/u26.png"}}, +{ + "id":"23efc8c3dd5b4a728cc5483a8f571b49", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":8, + "y":253}, + "size":{ + "width":300, + "height":45}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"03603e7844df41489d02d8bf51e08aa7", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":8, + "y":253}, + "size":{ + "width":300, + "height":45}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/发放历史/u26.png"}}, +{ + "id":"317a376c60974ab68974f4ba13988a40", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":18, + "y":207}, + "size":{ + "width":115, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d32829c7ba69438b9fc8d1f2a5228f29", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":18, + "y":207}, + "size":{ + "width":115, + "height":30}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"82d2d75d8aa840ba97f41a4373f4e623", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":162, + "y":223}, + "size":{ + "width":30, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"2b1281fd1e0c49779f2dd09e1ea84635", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":162, + "y":223}, + "size":{ + "width":30, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"14a254b57998444382431a0cdb61c0e9", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":210, + "y":223}, + "size":{ + "width":88, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"3a9b737a0ff140f4839c1d1229d77d4f", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":210, + "y":223}, + "size":{ + "width":88, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"55e2da81496d41819cca77d9766f5044", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":18, + "y":262}, + "size":{ + "width":115, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"5f56c4c142694968be7cbcaca631709e", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":18, + "y":262}, + "size":{ + "width":115, + "height":30}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"216f3da4f641418aa49acfc931bab0e5", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":162, + "y":276}, + "size":{ + "width":30, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"6f495b2017c240b68eb43b97b2f68311", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":162, + "y":276}, + "size":{ + "width":30, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"67a2c12f43c449628b004391425a9115", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":210, + "y":276}, + "size":{ + "width":88, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"e6b5bb7ea966488e96be1038b21f4721", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":210, + "y":276}, + "size":{ + "width":88, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"9b50d43a53bf43cfa4a7917730426cfb", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":8, + "y":88}, + "size":{ + "width":300, + "height":45}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"35bf8d2a745946e7a0c1f7e47cd3e9b2", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":8, + "y":88}, + "size":{ + "width":300, + "height":45}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/发放历史/u26.png"}}, +{ + "id":"515a63b9682348739da9c31e804b87b9", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":18, + "y":97}, + "size":{ + "width":129, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"267b06f77a7f48f4ad1f73cd5608c210", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":18, + "y":97}, + "size":{ + "width":129, + "height":30}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"e2a7be535be44ec9a9a13db11234ac84", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":162, + "y":111}, + "size":{ + "width":30, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"98bd0d7385934fdea2d86a91be74bfef", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":162, + "y":111}, + "size":{ + "width":30, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"803ac91164214b93bb5c1e412600a2f7", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":210, + "y":111}, + "size":{ + "width":88, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"96e04a2fae524da6ae21976d7d66da2d", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":210, + "y":111}, + "size":{ + "width":88, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"25477eda14034e48b9b96ab1c5a4f61e", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":8, + "y":143}, + "size":{ + "width":300, + "height":45}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"e76c71042464444da4094fcf80bb6dba", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":8, + "y":143}, + "size":{ + "width":300, + "height":45}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/发放历史/u26.png"}}, +{ + "id":"7200ec5886c4419781281651085ad0f0", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":18, + "y":152}, + "size":{ + "width":115, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"484337becadf46b1a21c16b79229b624", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":18, + "y":152}, + "size":{ + "width":115, + "height":30}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"49ebaf077355486bb60f628a0610c94b", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":162, + "y":168}, + "size":{ + "width":30, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"bc29c3f76f6e43a39305f4fe4909d9b8", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":162, + "y":168}, + "size":{ + "width":30, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"164de75d44fe4a2d849bcfeb9663b871", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":210, + "y":168}, + "size":{ + "width":88, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"1195fd974889431f8591a335960dafd2", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":210, + "y":168}, + "size":{ + "width":88, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"4b08d867c3ed49de90e0afc5cd979fa1", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":8, + "y":308}, + "size":{ + "width":300, + "height":45}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"7e98b064757a4e55a0081b7cf9f6da98", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":8, + "y":308}, + "size":{ + "width":300, + "height":45}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/发放历史/u26.png"}}, +{ + "id":"2f95dff9d5754e679f9353f05821297e", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":18, + "y":317}, + "size":{ + "width":115, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"94dea33970b04e56a84872c0d5821f8e", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":18, + "y":317}, + "size":{ + "width":115, + "height":30}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"263a22d4648c4057a23edf3c59c132f1", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":162, + "y":331}, + "size":{ + "width":30, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"da17a9ab61f24b26beda29ed585db06a", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":162, + "y":331}, + "size":{ + "width":30, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"e8171607716045608180c4ddec3871ff", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":210, + "y":331}, + "size":{ + "width":88, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a434d86eefb4401cbcdb30cde55d4b45", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":210, + "y":331}, + "size":{ + "width":88, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"ab51b1f3388344e2996a4a5eab7b6c44", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":8, + "y":363}, + "size":{ + "width":300, + "height":45}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"6d5f19a33b3a4bbebb6c4ae19c8025b0", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":8, + "y":363}, + "size":{ + "width":300, + "height":45}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/发放历史/u26.png"}}, +{ + "id":"b826ed983df84a9697ffb6b8264f1b9e", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":18, + "y":372}, + "size":{ + "width":115, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"7923ee9544eb4a9984e12c220c134862", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":18, + "y":372}, + "size":{ + "width":115, + "height":30}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"14a0868ce2394da7aca78ff9426a42bc", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":162, + "y":386}, + "size":{ + "width":30, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ea61cb013c40491a9f4e30f2abc495f2", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":162, + "y":386}, + "size":{ + "width":30, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"5430b2c3d9b141509ab9c34235cf51c8", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":210, + "y":386}, + "size":{ + "width":88, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"40544851941b41d38f33693465536102", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":210, + "y":386}, + "size":{ + "width":88, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"6563b0a2dae3424fbb20de7e371c2423", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"imageMapRegion", + "styleType":"imageMapRegion", + "visible":true, + "style":{ + "location":{ + "x":8, + "y":88}, + "size":{ + "width":300, + "height":45}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 订单详情 - 月度", + "target":{ + "targetType":"page", + "url":"订单详情_-_月度.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true}]}, +{ + "id":"98fd1e96265c48dd8a5cfe1bcc5a157d", + "label":"人的工资", + "type":"Axure:PanelDiagram", + "objects":[{ + "id":"91284c3bae9e43558848a7588f1a00f5", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":18}, + "size":{ + "width":319, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"9ee28906fb014403a7fc028f452e05dd", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":18}, + "size":{ + "width":319, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_首次进入/u18.png"}}, +{ + "id":"f9741f9ad3a94187bcdf3a3c9cbc6b42", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "location":{ + "x":8, + "y":37}, + "size":{ + "width":22, + "height":22}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c0db4a0b29094269831b0b66d1e0a0ea", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":8, + "y":37}, + "size":{ + "width":22, + "height":22}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_首次进入/u20.png"}}, +{ + "id":"4fd3dddd48e341d39e1bea34aa114415", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontSize":"20px", + "fontWeight":"700", + "location":{ + "x":60, + "y":35}, + "size":{ + "width":199, + "height":24}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c14c9bc3418d4fcfbcb0caace0630b60", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontSize":"20px", + "fontWeight":"700", + "location":{ + "x":60, + "y":35}, + "size":{ + "width":199, + "height":24}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"54c170ccfa3a445a8add813e67d7c845", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":10, + "y":200}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c196add687074d66b853ed9f802d6401", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":10, + "y":200}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"b23597565e4a47c39ed377dfecd99818", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":20, + "y":207}, + "size":{ + "width":67, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"35f39ad905984e318c231382d447aad3", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":20, + "y":207}, + "size":{ + "width":67, + "height":30}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"860ac7dd030a4d36bc7b235240d39196", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":20, + "y":237}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"decb052dc1cc45ce825adb2076df97de", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":20, + "y":237}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"04f618dff2c44c47bce95d0f8c26c672", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":170, + "y":207}, + "size":{ + "width":130, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d813330faf5c4511b36fff09e12950ba", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":170, + "y":207}, + "size":{ + "width":130, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"cb8ba49978604400a2bb852a8191ffc7", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"horizontalLine", + "styleType":"horizontalLine", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":120}, + "size":{ + "width":319, + "height":10}, + "borderFill":{ + "fillType":"solid", + "color":0xFFCCCCCC}}, + "adaptiveStyles":{ +}, + "images":{ + "start~":"resources/images/transparent.gif", + "end~":"resources/images/transparent.gif", + "line~":"images/我用发工资_-_手动登记/u27_line.png"}}, +{ + "id":"db40e74b677f483daf4b197988dd1c3f", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "location":{ + "x":275, + "y":88}, + "size":{ + "width":25, + "height":25}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"f696482e173f41eca557c4bdfd7b9d92", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":275, + "y":88}, + "size":{ + "width":25, + "height":25}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/发放历史/u257.png"}}, +{ + "id":"f4f45dd679d146b496588fca3a26f9e9", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"textBox", + "styleType":"textBox", + "visible":true, + "style":{ + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFCCCCCC, + "opacity":1}, + "location":{ + "x":10, + "y":89}, + "size":{ + "width":255, + "height":25}}, + "adaptiveStyles":{ +}}, +{ + "id":"bb53a1c1fa3e4056a0f9922254d410ac", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":170, + "y":238}, + "size":{ + "width":123, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"68e85b486d7c4d7880dd28503aa44019", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":170, + "y":238}, + "size":{ + "width":123, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"c7d846aa555b4698941009f85aa259a1", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":10, + "y":270}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"b2ed8844ba154494a74090be69468f62", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":10, + "y":270}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"07e279f4c5f34f20af90e3fd5ec60cd5", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":20, + "y":277}, + "size":{ + "width":67, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"b0d2f2ca77a14271863458442e412c71", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":20, + "y":277}, + "size":{ + "width":67, + "height":30}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"c46ce6819d53484b824aa29facc7d402", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":20, + "y":307}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"2cd70f53869747f6820df88cc49badec", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":20, + "y":307}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"2012f7a622da41d4858317bf355da4e5", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":170, + "y":277}, + "size":{ + "width":130, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"bc0338bcd1ef45069683b8a480f9aa69", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":170, + "y":277}, + "size":{ + "width":130, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"91c2f9e5807448a0ad367f660f391ae5", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":170, + "y":308}, + "size":{ + "width":123, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"4f6b5fea06c74ea4acc7ad827c70d9ab", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":170, + "y":308}, + "size":{ + "width":123, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"a656da15e38f4ef78e2b4ac67ca9560c", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":10, + "y":340}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"e83f6822495843cab099a19d185c7ef8", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":10, + "y":340}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"2f87171a56db4668a9e7d239a18cb9f7", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":20, + "y":347}, + "size":{ + "width":67, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d16722ae580f4178b445467591237f5a", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":20, + "y":347}, + "size":{ + "width":67, + "height":30}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"6605a131467d4f2ea61e51dc03283ca4", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":20, + "y":377}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"61862a38083a43fa9607cf872f0ef853", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":20, + "y":377}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"7ea794ee0b964bc6b9d1cb809db12987", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":170, + "y":347}, + "size":{ + "width":130, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d9de9102dabc4df386bd22b3930b8cca", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":170, + "y":347}, + "size":{ + "width":130, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"c6bc1d7500dd42adab3e0b8a2e2182b6", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":170, + "y":378}, + "size":{ + "width":123, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"9842873df3424161b3f753affcad1ab9", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":170, + "y":378}, + "size":{ + "width":123, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"ef4241b9677940ca84543697a8946e54", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":10, + "y":410}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"8c701ada7d92402eb79064fb7cfc99af", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":10, + "y":410}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"a4cac08889ab4da0947a2919c5fe11bb", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":20, + "y":417}, + "size":{ + "width":67, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"9368c74ef5ad4965bc7c58ee176537ae", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":20, + "y":417}, + "size":{ + "width":67, + "height":30}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"8bdfc2946d644da88517b9b470e414c7", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":20, + "y":447}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"7c0258cc08a14c52b6f1eb60eb74a0c3", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":20, + "y":447}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"c48e0b43061244f9b9b5aeb0486d6cda", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":170, + "y":417}, + "size":{ + "width":130, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"4445e5e9f6bb4ef4b9f73198b990a18a", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":170, + "y":417}, + "size":{ + "width":130, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"55f40dc466714348a3c2d734f0aa0f60", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":170, + "y":448}, + "size":{ + "width":123, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"9b46e3416d8447a697efc12ec318564e", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":170, + "y":448}, + "size":{ + "width":123, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"6920bdad0cd14948844e255bb9a75198", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":10, + "y":480}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"33dcccbfdfb44771a82d2abe500327a2", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":10, + "y":480}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"ed73a33288c84835b1bdcb2c4c2f9ff5", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":20, + "y":487}, + "size":{ + "width":67, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"946770a1a74e43beb3091f49b151a89a", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":20, + "y":487}, + "size":{ + "width":67, + "height":30}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"a6136eaba5f94173b6b56d5d99df1cfc", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":20, + "y":517}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"f321b95e05a2402e8619b4ae0864bde4", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":20, + "y":517}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"f03d8a37c3204095930dc50f2d11a57d", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":170, + "y":487}, + "size":{ + "width":130, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c3e8d473791a473caae5f1c5705fa657", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":170, + "y":487}, + "size":{ + "width":130, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"2e2bad0e44e84e7aaf0dc68976d3717e", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":170, + "y":518}, + "size":{ + "width":123, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"bfcabb153c4b4ef2b195c17fb3ae28d5", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":170, + "y":518}, + "size":{ + "width":123, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"4356eb5b19ce4737ae81d9b3aed53bce", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":10, + "y":130}, + "size":{ + "width":257, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"cfc96e7fb384471494c22b33c816c07c", + "label":"", + "isContained":true, + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":10, + "y":130}, + "size":{ + "width":257, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"8285f3137c16474faa4e1558517a80d3", + "label":"", + "parentDynamicPanel":"3eeda2436da9457ca7195de5d97938bf", + "type":"imageMapRegion", + "styleType":"imageMapRegion", + "visible":true, + "style":{ + "location":{ + "x":10, + "y":200}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 订单详情 - 人", + "target":{ + "targetType":"page", + "url":"订单详情_-_人.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true}]}]}]}, +{ + "id":"272f0ab991d843f38374062574cfe9c0", + "label":"人工资表", + "type":"Axure:PanelDiagram", + "objects":[{ + "id":"2b756a180b074a718dfa071ff2f740b5", + "label":"", + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":18}, + "size":{ + "width":319, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ec9eb059e85247999f4426eb665829d8", + "label":"", + "isContained":true, + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":18}, + "size":{ + "width":319, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_首次进入/u18.png"}}, +{ + "id":"4091da4d7fc14d5b95e655350064e6f0", + "label":"", + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "location":{ + "x":8, + "y":37}, + "size":{ + "width":22, + "height":22}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"e7b82640183046489b2906cedde67383", + "label":"", + "isContained":true, + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":8, + "y":37}, + "size":{ + "width":22, + "height":22}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_首次进入/u20.png"}}, +{ + "id":"0bba05adf1fa426baa5cb0205b5a6794", + "label":"", + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontSize":"20px", + "fontWeight":"700", + "location":{ + "x":60, + "y":35}, + "size":{ + "width":199, + "height":24}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"671df81cd3dd40b18fa8471cf71b38fe", + "label":"", + "isContained":true, + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontSize":"20px", + "fontWeight":"700", + "location":{ + "x":60, + "y":35}, + "size":{ + "width":199, + "height":24}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"91808dcfcc934c19aea966dd0ffb017a", + "label":"", + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":10, + "y":200}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"f99ba794817e43f6906c293bc3dcb356", + "label":"", + "isContained":true, + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":10, + "y":200}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"f554c3ecae944a2b90181878c0569d20", + "label":"", + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":20, + "y":207}, + "size":{ + "width":67, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"b04d56669afc4984a281a7cdb2a0bedf", + "label":"", + "isContained":true, + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":20, + "y":207}, + "size":{ + "width":67, + "height":30}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"ed0efd6e2c2f44038e07f31b3bbd3392", + "label":"", + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":20, + "y":237}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"aea0ab29cd524e16b781bc3e49b8ee0d", + "label":"", + "isContained":true, + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":20, + "y":237}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"f31607a23adb4aca9a72ad0e42045b8d", + "label":"", + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":170, + "y":207}, + "size":{ + "width":130, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"fb51f7b6aff3470f9886489a40e7ef59", + "label":"", + "isContained":true, + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":170, + "y":207}, + "size":{ + "width":130, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"49396a3166c744d89bd5ae22463d32ba", + "label":"", + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"horizontalLine", + "styleType":"horizontalLine", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":120}, + "size":{ + "width":319, + "height":10}, + "borderFill":{ + "fillType":"solid", + "color":0xFFCCCCCC}}, + "adaptiveStyles":{ +}, + "images":{ + "start~":"resources/images/transparent.gif", + "end~":"resources/images/transparent.gif", + "line~":"images/我用发工资_-_手动登记/u27_line.png"}}, +{ + "id":"e9cfbd4cd65049afa519b485257ffb2d", + "label":"", + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "location":{ + "x":275, + "y":88}, + "size":{ + "width":25, + "height":25}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"af368bc2da4144568e84b1238bde1002", + "label":"", + "isContained":true, + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":275, + "y":88}, + "size":{ + "width":25, + "height":25}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/发放历史/u257.png"}}, +{ + "id":"4f2cb859b3184a2fb59141400b89efcf", + "label":"", + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"textBox", + "styleType":"textBox", + "visible":true, + "style":{ + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFCCCCCC, + "opacity":1}, + "location":{ + "x":10, + "y":89}, + "size":{ + "width":255, + "height":25}}, + "adaptiveStyles":{ +}}, +{ + "id":"94ba2e41867d454a85062e82b03ef0ac", + "label":"", + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":170, + "y":238}, + "size":{ + "width":123, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"2286c0e62eaf415f83bd80ff5eafe800", + "label":"", + "isContained":true, + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":170, + "y":238}, + "size":{ + "width":123, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"cc126cb338b3498fbac2c31c31141081", + "label":"", + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":10, + "y":270}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"af9732aa6f284c92a155bfb9e84c1d06", + "label":"", + "isContained":true, + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":10, + "y":270}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"56518f9f0dd243978d2abbda83051ff0", + "label":"", + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":20, + "y":277}, + "size":{ + "width":67, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"dcd025e4ce3c4b94a80366d6fea09a6b", + "label":"", + "isContained":true, + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":20, + "y":277}, + "size":{ + "width":67, + "height":30}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"8b43b269b03d4505a7504479d07df309", + "label":"", + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":20, + "y":307}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"93ca86d6f4884d21a6c35670930ab912", + "label":"", + "isContained":true, + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":20, + "y":307}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"01371f18a1734f17b5df09be45b8c174", + "label":"", + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":170, + "y":277}, + "size":{ + "width":130, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"eb60bd95da204dfa8f4502dc96ae58a7", + "label":"", + "isContained":true, + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":170, + "y":277}, + "size":{ + "width":130, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"f54a29799ac34faabaf4e8584f143f7a", + "label":"", + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":170, + "y":308}, + "size":{ + "width":123, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ec4d87f1acb04d739a46a6359463840c", + "label":"", + "isContained":true, + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":170, + "y":308}, + "size":{ + "width":123, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"47c4d9f86be84ae4961c7f20190414ff", + "label":"", + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":10, + "y":340}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"add69071ce614187aa6b341b13dd1e65", + "label":"", + "isContained":true, + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":10, + "y":340}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"f82c5effece243eeb8363ba620ac96b6", + "label":"", + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":20, + "y":347}, + "size":{ + "width":67, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"bac9cddb7bd640d691c1ed33cc5c2dfe", + "label":"", + "isContained":true, + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":20, + "y":347}, + "size":{ + "width":67, + "height":30}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"20f8f909d1264a63af107b260f6c324e", + "label":"", + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":20, + "y":377}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"69a06b74384143aea814ded7199d0ec7", + "label":"", + "isContained":true, + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":20, + "y":377}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"7bd623919b0746ad89aecc2f6838b7ae", + "label":"", + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":170, + "y":347}, + "size":{ + "width":130, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"6a9134db1d1b487aa25fb616af7a8214", + "label":"", + "isContained":true, + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":170, + "y":347}, + "size":{ + "width":130, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"f4e6787d6fb54e519fec16b7e0ca9fbc", + "label":"", + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":170, + "y":378}, + "size":{ + "width":123, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"7169aeb196204e54977f5b8e668f7f83", + "label":"", + "isContained":true, + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":170, + "y":378}, + "size":{ + "width":123, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"300b2e2d7397407fa34a08ce6d0ee269", + "label":"", + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":10, + "y":410}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"42702248b02742c5a10d081a09a093d1", + "label":"", + "isContained":true, + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":10, + "y":410}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"a3898eb6070b4595bf12114f846b62d7", + "label":"", + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":20, + "y":417}, + "size":{ + "width":67, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"7712576961b045b5b74a95474b3a47d4", + "label":"", + "isContained":true, + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":20, + "y":417}, + "size":{ + "width":67, + "height":30}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"130ac70a9db54df9b3d132c71921f461", + "label":"", + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":20, + "y":447}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"933840e3fde54746b63558bb644b1c5b", + "label":"", + "isContained":true, + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":20, + "y":447}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"030d69165d1a403d8ce545adf6e7e481", + "label":"", + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":170, + "y":417}, + "size":{ + "width":130, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"0fda334e5def4f68887a6a031240d37b", + "label":"", + "isContained":true, + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":170, + "y":417}, + "size":{ + "width":130, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"9dd481eb03a14905a7e0d64a816c94ec", + "label":"", + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":170, + "y":448}, + "size":{ + "width":123, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"9a459a7d57244155bfb53ab01ac2caac", + "label":"", + "isContained":true, + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":170, + "y":448}, + "size":{ + "width":123, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"131afc3a002e42198ddaf9b6232d21bb", + "label":"", + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":10, + "y":480}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"cc0eeeddee3e4399bfda847c8b525fec", + "label":"", + "isContained":true, + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":10, + "y":480}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"56301a1d5d9a4805be33a7a28032f95e", + "label":"", + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":20, + "y":487}, + "size":{ + "width":67, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"6900e1b45c5a49908e87170ff27cf641", + "label":"", + "isContained":true, + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":20, + "y":487}, + "size":{ + "width":67, + "height":30}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"ef777c51da484ae689d6c4bc6db37698", + "label":"", + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":20, + "y":517}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"89c80cf23988428c8de119a7f4eaf840", + "label":"", + "isContained":true, + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":20, + "y":517}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"c9f42794574d4a0e983909f942a6322c", + "label":"", + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":170, + "y":487}, + "size":{ + "width":130, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"35f0929714f04d3f810969d6d86b8b8f", + "label":"", + "isContained":true, + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":170, + "y":487}, + "size":{ + "width":130, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"cc77ff95a4a04bd0b7a89473404f156e", + "label":"", + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":170, + "y":518}, + "size":{ + "width":123, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"8cf202542cfe488eb6cf37372c902322", + "label":"", + "isContained":true, + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":170, + "y":518}, + "size":{ + "width":123, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"2151124994ab4a1c8a015dd989bcd3a5", + "label":"", + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":10, + "y":130}, + "size":{ + "width":257, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"f10b85725aac4f50a78c00136443611f", + "label":"", + "isContained":true, + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":10, + "y":130}, + "size":{ + "width":257, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"813dd856080847b5bb893cb89c27738b", + "label":"", + "parentDynamicPanel":"36f04037aa2b468c890b6d89f7eb4a8e", + "type":"imageMapRegion", + "styleType":"imageMapRegion", + "visible":true, + "style":{ + "location":{ + "x":10, + "y":200}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 订单详情 - 人", + "target":{ + "targetType":"page", + "url":"订单详情_-_人.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true}]}]}]}}, + "masters":{ +}, + "objectPaths":{ + "7bc377c959664812924f32be59d2a5ab":{ + "scriptId":"u0"}, + "da32b6e849194ee6a05abb03e7d9d61f":{ + "scriptId":"u1"}, + "43d78d13ec41462f8b99d39d339a9bf6":{ + "scriptId":"u2"}, + "edad6c0e387744a79a1757a17c5f5ecb":{ + "scriptId":"u3"}, + "9bc311a321c040a996f0a86cb34be6da":{ + "scriptId":"u4"}, + "38cdc02c923a47398ac1174a2c366231":{ + "scriptId":"u5"}, + "f6fe025ca7934e458bf49e089bb2318c":{ + "scriptId":"u6"}, + "fcfb8b26bbb74c5898fc4ed2925e9c8c":{ + "scriptId":"u7"}, + "f3d73da014db40159c8d634e7c6a52fa":{ + "scriptId":"u8"}, + "76387ab62d934ac9ba2cae847bf113cd":{ + "scriptId":"u9"}, + "0fcdef3270a94230804b49c496d43b12":{ + "scriptId":"u10"}, + "83dc38aaebbc49f78054bf125c17a0a0":{ + "scriptId":"u11"}, + "456358342284451c8ad1133633473349":{ + "scriptId":"u12"}, + "3f240373eae84271a31eabf16c477517":{ + "scriptId":"u13"}, + "1bf21dc955c44f389c59598fc35b6d29":{ + "scriptId":"u14"}, + "7220f6fd15bd497eb3ed90504d4e3b1a":{ + "scriptId":"u15"}, + "e4e81fd0091f43c2a476727c2d4d3fac":{ + "scriptId":"u16"}, + "43e6226648244edbba12006f52143480":{ + "scriptId":"u17"}, + "36f04037aa2b468c890b6d89f7eb4a8e":{ + "scriptId":"u18"}, + "07dfc6961e9043b583cc3e492917922d":{ + "scriptId":"u19"}, + "be46eb5b25d44f379708d01687835c4f":{ + "scriptId":"u20"}, + "afff7e57fa04446db90e67008faa1cc1":{ + "scriptId":"u21"}, + "3b563a649e5947358c893a5c26f70077":{ + "scriptId":"u22"}, + "70357f7bbe83497f99a16c0fd745b148":{ + "scriptId":"u23"}, + "be182e57db0c4bcfabe56e918fdbaba9":{ + "scriptId":"u24"}, + "c6901740b24b450796faf6f5f122ac52":{ + "scriptId":"u25"}, + "5601d0f009f4457c876cb285b9c5edc7":{ + "scriptId":"u26"}, + "fbef92cc12374bd2b2b1511182fe3c1e":{ + "scriptId":"u27"}, + "42e7ed1c56af4c0d96c83029e5387ade":{ + "scriptId":"u28"}, + "49b7013f92c44911af75357022d9e866":{ + "scriptId":"u29"}, + "19be4211a40d4cd6beec8e65630b6c79":{ + "scriptId":"u30"}, + "d053df0ff32f4d60be6b6a19c6b3d807":{ + "scriptId":"u31"}, + "d3a906a9b98046269bf684dd7b8a0777":{ + "scriptId":"u32"}, + "7e401e7ae2694e238b62bd96400fabf6":{ + "scriptId":"u33"}, + "719f83581e5f46c2a022a6273eaa01b2":{ + "scriptId":"u34"}, + "456362811429489d8ec7a16f9afb821b":{ + "scriptId":"u35"}, + "a7d00ca446e347c98405b6ae6ec467ac":{ + "scriptId":"u36"}, + "17e6fe27257d415196b2f4848242d861":{ + "scriptId":"u37"}, + "08cdb0791e7740148c617ceb4d26808d":{ + "scriptId":"u38"}, + "5edfa556bd764391944ad25b1c60b9ec":{ + "scriptId":"u39"}, + "cf053ef5a708456d89d827238c38590f":{ + "scriptId":"u40"}, + "a9e285547afe44299351d5f8acb25e03":{ + "scriptId":"u41"}, + "114c962bbeb04843936a62a5e6a4fd62":{ + "scriptId":"u42"}, + "39392d742b9042c88a32b0b66ca02b76":{ + "scriptId":"u43"}, + "50b64e459a6f4ec2954f1ba855d8d9cf":{ + "scriptId":"u44"}, + "7b45e5be1b7f4a54a1176bcdeb9bbdc7":{ + "scriptId":"u45"}, + "de3d1f5d34eb4329a0663fbd0b3e872d":{ + "scriptId":"u46"}, + "d62962f1a5f9467bbbf13368b950c97e":{ + "scriptId":"u47"}, + "5e6bacefe20a475c8893fb81c702503c":{ + "scriptId":"u48"}, + "a5ffb2cf66e64f46a191e56731cbe5f4":{ + "scriptId":"u49"}, + "dd08eae6b499490fa80a28fd2dcfafc0":{ + "scriptId":"u50"}, + "c5ca1385d1d1419495eaa3a7ce2fe85d":{ + "scriptId":"u51"}, + "5ca056b11b9648f68a4ef2eb7114d173":{ + "scriptId":"u52"}, + "f1e9a07bf2f74c09a7960be959eec30b":{ + "scriptId":"u53"}, + "0b39e1f493a944c1883a22a689a2fb9a":{ + "scriptId":"u54"}, + "95bd1fe0dde341f7836248f1d4b78402":{ + "scriptId":"u55"}, + "d144150fc185428f938c9a4831c9b2bb":{ + "scriptId":"u56"}, + "7a70537b3f0d4bb384f4a891f5972dd4":{ + "scriptId":"u57"}, + "5ec7e91393d14b86b8897434b8e35233":{ + "scriptId":"u58"}, + "4491194622424e56b2d840739732c122":{ + "scriptId":"u59"}, + "42eb7678045048108d080e5548e13098":{ + "scriptId":"u60"}, + "5c544e0cdee34999a47e4fdc4ae0ff09":{ + "scriptId":"u61"}, + "5f9b7556b85a47c187ffb31c1c8bf260":{ + "scriptId":"u62"}, + "ffcb844d7f774a0b8153b4db70874689":{ + "scriptId":"u63"}, + "d972dfbd2be1483aa8b79c0f9a8bd4c4":{ + "scriptId":"u64"}, + "6cb8fe72e0e241b0a5c6042d0450fa5e":{ + "scriptId":"u65"}, + "8296c696b3dd4e248fdb8b60d2f99f08":{ + "scriptId":"u66"}, + "ebaf8d7f81614a56bebfcb64d28d1e0b":{ + "scriptId":"u67"}, + "d6c2c7ef464448b296106cbd491960e7":{ + "scriptId":"u68"}, + "e07cd2d4cc6a4053a422b5e8ed65df9c":{ + "scriptId":"u69"}, + "9373fa0474d94aa09ef8aa3b3423a6f7":{ + "scriptId":"u70"}, + "2139c596765c4a969ddce83f20ff9fa4":{ + "scriptId":"u71"}, + "c90484f915044ee79a0c94f31590b1fc":{ + "scriptId":"u72"}, + "c90febee832d4430aec7533ab7f3a0f8":{ + "scriptId":"u73"}, + "372c1a7c955e4002a32780dec202a830":{ + "scriptId":"u74"}, + "3394ae839c7f4d9180f3c267e5199925":{ + "scriptId":"u75"}, + "b26957a1880d44ae9220670505ea04d5":{ + "scriptId":"u76"}, + "0dfda9fb2ecb492aaa16fed11c3562b3":{ + "scriptId":"u77"}, + "80b921af306847dfb668c0caf90b7cc3":{ + "scriptId":"u78"}, + "903a36ad6cad45799919d6afd7a7d1d6":{ + "scriptId":"u79"}, + "5998d60a89b04479b6c5d7d2e12dbd04":{ + "scriptId":"u80"}, + "0f0629b45cfc4debb38d61287716c2be":{ + "scriptId":"u81"}, + "5e2a4734e3194bfd89604128a23e56db":{ + "scriptId":"u82"}, + "124cf3eb715a46cb8a256859c02a3ac4":{ + "scriptId":"u83"}, + "c0118dbc42cb46c49ae9f6d23cfc7172":{ + "scriptId":"u84"}, + "57ce669221364c098a401793bc9332f6":{ + "scriptId":"u85"}, + "bda6b7b28a9a498fa1ac664e539cef15":{ + "scriptId":"u86"}, + "638cfad9ce204845a5512b2f25c88e00":{ + "scriptId":"u87"}, + "2f0991fa8a6f4b2883a8098246cfd289":{ + "scriptId":"u88"}, + "161191328c8d417ba79332f8320628a4":{ + "scriptId":"u89"}, + "189d88ae9174453a961b673642de763e":{ + "scriptId":"u90"}, + "c3a5c5a94d1548d6a3217964b99aa15d":{ + "scriptId":"u91"}, + "fddaac1a12d74dcfb5daaf6648d310a6":{ + "scriptId":"u92"}, + "7d8cb3b75926492b8ecdee24a21a39f1":{ + "scriptId":"u93"}, + "72e140688be14bbaa38580cc1b2f633b":{ + "scriptId":"u94"}, + "31386a212f7c4c87a7a36a598c09476f":{ + "scriptId":"u95"}, + "4acabd27c3b641eeb46f549afe0d8b63":{ + "scriptId":"u96"}, + "eecd2091b02944989b44bd9518b60e73":{ + "scriptId":"u97"}, + "3d883e560553403cb81de32a98226d59":{ + "scriptId":"u98"}, + "24c1b77f1ef54059a5e2ea502d9d838b":{ + "scriptId":"u99"}, + "d9fa60a093754c3ea7e3b69687b0bcf5":{ + "scriptId":"u100"}, + "015d7cea180543268fa50131cf26c4e1":{ + "scriptId":"u101"}, + "03cc26cd77f54102b8fb9c1d5e5265bf":{ + "scriptId":"u102"}, + "388012ee4230474e95f0fb8c248af7f7":{ + "scriptId":"u103"}, + "e5eb62e3044549e2a98cd4343017b973":{ + "scriptId":"u104"}, + "b86d1039d0ea4aac8adcd420670683af":{ + "scriptId":"u105"}, + "981d2b19d4a740d9a946ce98e492cad8":{ + "scriptId":"u106"}, + "aef5dab0f1b546c29ef0517336df7878":{ + "scriptId":"u107"}, + "386e466f3ac4465a8642732b2e73a891":{ + "scriptId":"u108"}, + "b2dd620ca1c644ac89b387492edd479e":{ + "scriptId":"u109"}, + "be37f7974d414826bf039b1bea81a261":{ + "scriptId":"u110"}, + "49e472f77f5e4807a0a80a0e48ff0c1f":{ + "scriptId":"u111"}, + "8802dc8ec46e45e9969e8ad7eb28393a":{ + "scriptId":"u112"}, + "8fc2f179c9f448ca8fc0c838ee81c81e":{ + "scriptId":"u113"}, + "5caeb469bd814eeea78667e01d617415":{ + "scriptId":"u114"}, + "deb1f06494b9417ea52baf3a56fe9ec3":{ + "scriptId":"u115"}, + "6c311fcb13e24699beb5bbda15334900":{ + "scriptId":"u116"}, + "353fed6f90004cc69df34c5fbf4776e3":{ + "scriptId":"u117"}, + "68c473e21b3045ebbc8f88ecca3d6294":{ + "scriptId":"u118"}, + "bc728bd9a4714a14a0f6f84c6b3de0bf":{ + "scriptId":"u119"}, + "ca8d66ead9cc46958a65198ddab3b883":{ + "scriptId":"u120"}, + "5c4a79afbdbd44ca980228a3cabeb76b":{ + "scriptId":"u121"}, + "ac3ba83407e94b6eb3b71c88de33110b":{ + "scriptId":"u122"}, + "5cb8fe554f1342c987480fb2553960e8":{ + "scriptId":"u123"}, + "ec1e2423fdb947f6a3e3caee8337fa78":{ + "scriptId":"u124"}, + "7bd6b9e523d4417da1c62ebbf1759b77":{ + "scriptId":"u125"}, + "fb626f152b8943c3b2a67590472612b7":{ + "scriptId":"u126"}, + "c096fbc29d6845a8837e9417459fb458":{ + "scriptId":"u127"}, + "d25599bec57348b5993f8d66085c1e93":{ + "scriptId":"u128"}, + "8908087bfcfe403b82928d50c7dc11e4":{ + "scriptId":"u129"}, + "fc50082e5d634a14ae165dcba5acfbee":{ + "scriptId":"u130"}, + "f2490fb80d2c450ea10367d5c6d5d30a":{ + "scriptId":"u131"}, + "be7499686b854ce5acbdd1628264b7fb":{ + "scriptId":"u132"}, + "1740353ca33f499ab30ccfc887f4ce32":{ + "scriptId":"u133"}, + "67514559a7be40f18c378ded6e518544":{ + "scriptId":"u134"}, + "67fb1470f2ed49298aa6e9f651669209":{ + "scriptId":"u135"}, + "4802b94024d94bfbb040423d9af17516":{ + "scriptId":"u136"}, + "b74f2c2ebc8a45d89861c3f32f21039c":{ + "scriptId":"u137"}, + "6d5df70664c44fc09deb0fe21cdd2fa6":{ + "scriptId":"u138"}, + "3de54408042541e6a401575c377a78e9":{ + "scriptId":"u139"}, + "f060cef26d5442ba9d6c7b0932d0d939":{ + "scriptId":"u140"}, + "edf43b4020f54da69f76f62bd27cf4de":{ + "scriptId":"u141"}, + "8d7b72e37ef9491a9fdd5a042c44706c":{ + "scriptId":"u142"}, + "1a881cb8787d4d3a99b4b789bd43840c":{ + "scriptId":"u143"}, + "d71ff6c733124084abd78ce8022876a9":{ + "scriptId":"u144"}, + "14b62542f4bc4dec9bf5eede3c2b0bc1":{ + "scriptId":"u145"}, + "6822d3c5b0f3489eb8c91bd5323ab1ea":{ + "scriptId":"u146"}, + "2a910ea8b35e44a9b31c788318089e87":{ + "scriptId":"u147"}, + "b98db90555d34a1b9f338b413268ae6f":{ + "scriptId":"u148"}, + "4fd3da38c88342cb9dda718d077ef9e8":{ + "scriptId":"u149"}, + "1a5907f560484f85bf66aaec86c13f3b":{ + "scriptId":"u150"}, + "0072d44e5c984d39b4f2b05aa60303b8":{ + "scriptId":"u151"}, + "4333d3313a73407c8b3faf3c41b05864":{ + "scriptId":"u152"}, + "08340c6e1ae3458fad7f975b629f3044":{ + "scriptId":"u153"}, + "4fb3039feb2d4d2492898a7453a63f62":{ + "scriptId":"u154"}, + "08946eac149c41608020148e5e181a06":{ + "scriptId":"u155"}, + "1c7c2eef5855444681d6293e57d9b9ce":{ + "scriptId":"u156"}, + "529c0c87e07e4259bc1858947b303203":{ + "scriptId":"u157"}, + "656198e4381846b1afcbccf9e4dc8480":{ + "scriptId":"u158"}, + "509fd2bb717f4eca91a6f4235667930a":{ + "scriptId":"u159"}, + "0c623d6ee1db4977a7402d542c081767":{ + "scriptId":"u160"}, + "45b9f8a9befc4419b3a6313c3b09d428":{ + "scriptId":"u161"}, + "cce40a8524d545ebad7718dd9233eabd":{ + "scriptId":"u162"}, + "d47cfaea1a484a7dbdb81d5e73084ada":{ + "scriptId":"u163"}, + "c86cff2a9a6a44f285598a6bfe066554":{ + "scriptId":"u164"}, + "306581a824c449d58d9bc5ac78273fdd":{ + "scriptId":"u165"}, + "21d6e07c7ae346158ee28f60f69863ba":{ + "scriptId":"u166"}, + "3e92bf7129f7454fb21fa9f1aff3766f":{ + "scriptId":"u167"}, + "821749f886dd4789b0212bb5fd9e5e37":{ + "scriptId":"u168"}, + "4e5bad1b50424369ab717a538d862834":{ + "scriptId":"u169"}, + "dd166992478c49d7aaa766f3d20c06b9":{ + "scriptId":"u170"}, + "a98cfe8f77b34ea38ffdd7157f1360b6":{ + "scriptId":"u171"}, + "8d7f8bafe35e40948b11c7a493dea3a3":{ + "scriptId":"u172"}, + "78e58848c9c8493984237c2d81c9293b":{ + "scriptId":"u173"}, + "33a65bd4a80f4f6785cd1590f3dbdb0e":{ + "scriptId":"u174"}, + "c5f73abe013241ad93d39f3dcd321e01":{ + "scriptId":"u175"}, + "8f492bda1dbc49fc98a107c59342fe23":{ + "scriptId":"u176"}, + "ef099b1797a04971a62b055cf9fe6eba":{ + "scriptId":"u177"}, + "08eca53762024653818cae32c3fe5d41":{ + "scriptId":"u178"}, + "a218372e1b0e4ce8833337b6879c06c0":{ + "scriptId":"u179"}, + "7be42cacdd154bc59d5c90d5d006e98b":{ + "scriptId":"u180"}, + "72b1f7fc29a84cfdb2cb60dd8b4db78b":{ + "scriptId":"u181"}, + "e27f182982f547898af556e8ea9b8cff":{ + "scriptId":"u182"}, + "b7f5a013834d4d829dbfab90d129e700":{ + "scriptId":"u183"}, + "1029f6d167fa4a2ebc805f4b7e333cf2":{ + "scriptId":"u184"}, + "1dc6db751cfe4faea923760ac081d4f7":{ + "scriptId":"u185"}, + "3eeda2436da9457ca7195de5d97938bf":{ + "scriptId":"u186"}, + "84fee3dd3e724110824c0a772bc3de97":{ + "scriptId":"u187"}, + "eeb8653ef0954f4190cdabc70fbc71ec":{ + "scriptId":"u188"}, + "41717948539047958bc8b7055606ff05":{ + "scriptId":"u189"}, + "66c37cf95c544d1fb53f88a70cea06de":{ + "scriptId":"u190"}, + "96175bd355ca4f18a67e60a8e6d12998":{ + "scriptId":"u191"}, + "8fbaec72f4914ee4b232ce4382e4784a":{ + "scriptId":"u192"}, + "e913763d084846e09e839d8d448b7cb7":{ + "scriptId":"u193"}, + "633feda9aeab43e7b2263c391e703623":{ + "scriptId":"u194"}, + "23efc8c3dd5b4a728cc5483a8f571b49":{ + "scriptId":"u195"}, + "03603e7844df41489d02d8bf51e08aa7":{ + "scriptId":"u196"}, + "317a376c60974ab68974f4ba13988a40":{ + "scriptId":"u197"}, + "d32829c7ba69438b9fc8d1f2a5228f29":{ + "scriptId":"u198"}, + "82d2d75d8aa840ba97f41a4373f4e623":{ + "scriptId":"u199"}, + "2b1281fd1e0c49779f2dd09e1ea84635":{ + "scriptId":"u200"}, + "14a254b57998444382431a0cdb61c0e9":{ + "scriptId":"u201"}, + "3a9b737a0ff140f4839c1d1229d77d4f":{ + "scriptId":"u202"}, + "55e2da81496d41819cca77d9766f5044":{ + "scriptId":"u203"}, + "5f56c4c142694968be7cbcaca631709e":{ + "scriptId":"u204"}, + "216f3da4f641418aa49acfc931bab0e5":{ + "scriptId":"u205"}, + "6f495b2017c240b68eb43b97b2f68311":{ + "scriptId":"u206"}, + "67a2c12f43c449628b004391425a9115":{ + "scriptId":"u207"}, + "e6b5bb7ea966488e96be1038b21f4721":{ + "scriptId":"u208"}, + "9b50d43a53bf43cfa4a7917730426cfb":{ + "scriptId":"u209"}, + "35bf8d2a745946e7a0c1f7e47cd3e9b2":{ + "scriptId":"u210"}, + "515a63b9682348739da9c31e804b87b9":{ + "scriptId":"u211"}, + "267b06f77a7f48f4ad1f73cd5608c210":{ + "scriptId":"u212"}, + "e2a7be535be44ec9a9a13db11234ac84":{ + "scriptId":"u213"}, + "98bd0d7385934fdea2d86a91be74bfef":{ + "scriptId":"u214"}, + "803ac91164214b93bb5c1e412600a2f7":{ + "scriptId":"u215"}, + "96e04a2fae524da6ae21976d7d66da2d":{ + "scriptId":"u216"}, + "25477eda14034e48b9b96ab1c5a4f61e":{ + "scriptId":"u217"}, + "e76c71042464444da4094fcf80bb6dba":{ + "scriptId":"u218"}, + "7200ec5886c4419781281651085ad0f0":{ + "scriptId":"u219"}, + "484337becadf46b1a21c16b79229b624":{ + "scriptId":"u220"}, + "49ebaf077355486bb60f628a0610c94b":{ + "scriptId":"u221"}, + "bc29c3f76f6e43a39305f4fe4909d9b8":{ + "scriptId":"u222"}, + "164de75d44fe4a2d849bcfeb9663b871":{ + "scriptId":"u223"}, + "1195fd974889431f8591a335960dafd2":{ + "scriptId":"u224"}, + "4b08d867c3ed49de90e0afc5cd979fa1":{ + "scriptId":"u225"}, + "7e98b064757a4e55a0081b7cf9f6da98":{ + "scriptId":"u226"}, + "2f95dff9d5754e679f9353f05821297e":{ + "scriptId":"u227"}, + "94dea33970b04e56a84872c0d5821f8e":{ + "scriptId":"u228"}, + "263a22d4648c4057a23edf3c59c132f1":{ + "scriptId":"u229"}, + "da17a9ab61f24b26beda29ed585db06a":{ + "scriptId":"u230"}, + "e8171607716045608180c4ddec3871ff":{ + "scriptId":"u231"}, + "a434d86eefb4401cbcdb30cde55d4b45":{ + "scriptId":"u232"}, + "ab51b1f3388344e2996a4a5eab7b6c44":{ + "scriptId":"u233"}, + "6d5f19a33b3a4bbebb6c4ae19c8025b0":{ + "scriptId":"u234"}, + "b826ed983df84a9697ffb6b8264f1b9e":{ + "scriptId":"u235"}, + "7923ee9544eb4a9984e12c220c134862":{ + "scriptId":"u236"}, + "14a0868ce2394da7aca78ff9426a42bc":{ + "scriptId":"u237"}, + "ea61cb013c40491a9f4e30f2abc495f2":{ + "scriptId":"u238"}, + "5430b2c3d9b141509ab9c34235cf51c8":{ + "scriptId":"u239"}, + "40544851941b41d38f33693465536102":{ + "scriptId":"u240"}, + "6563b0a2dae3424fbb20de7e371c2423":{ + "scriptId":"u241"}, + "91284c3bae9e43558848a7588f1a00f5":{ + "scriptId":"u242"}, + "9ee28906fb014403a7fc028f452e05dd":{ + "scriptId":"u243"}, + "f9741f9ad3a94187bcdf3a3c9cbc6b42":{ + "scriptId":"u244"}, + "c0db4a0b29094269831b0b66d1e0a0ea":{ + "scriptId":"u245"}, + "4fd3dddd48e341d39e1bea34aa114415":{ + "scriptId":"u246"}, + "c14c9bc3418d4fcfbcb0caace0630b60":{ + "scriptId":"u247"}, + "54c170ccfa3a445a8add813e67d7c845":{ + "scriptId":"u248"}, + "c196add687074d66b853ed9f802d6401":{ + "scriptId":"u249"}, + "b23597565e4a47c39ed377dfecd99818":{ + "scriptId":"u250"}, + "35f39ad905984e318c231382d447aad3":{ + "scriptId":"u251"}, + "860ac7dd030a4d36bc7b235240d39196":{ + "scriptId":"u252"}, + "decb052dc1cc45ce825adb2076df97de":{ + "scriptId":"u253"}, + "04f618dff2c44c47bce95d0f8c26c672":{ + "scriptId":"u254"}, + "d813330faf5c4511b36fff09e12950ba":{ + "scriptId":"u255"}, + "cb8ba49978604400a2bb852a8191ffc7":{ + "scriptId":"u256"}, + "db40e74b677f483daf4b197988dd1c3f":{ + "scriptId":"u257"}, + "f696482e173f41eca557c4bdfd7b9d92":{ + "scriptId":"u258"}, + "f4f45dd679d146b496588fca3a26f9e9":{ + "scriptId":"u259"}, + "bb53a1c1fa3e4056a0f9922254d410ac":{ + "scriptId":"u260"}, + "68e85b486d7c4d7880dd28503aa44019":{ + "scriptId":"u261"}, + "c7d846aa555b4698941009f85aa259a1":{ + "scriptId":"u262"}, + "b2ed8844ba154494a74090be69468f62":{ + "scriptId":"u263"}, + "07e279f4c5f34f20af90e3fd5ec60cd5":{ + "scriptId":"u264"}, + "b0d2f2ca77a14271863458442e412c71":{ + "scriptId":"u265"}, + "c46ce6819d53484b824aa29facc7d402":{ + "scriptId":"u266"}, + "2cd70f53869747f6820df88cc49badec":{ + "scriptId":"u267"}, + "2012f7a622da41d4858317bf355da4e5":{ + "scriptId":"u268"}, + "bc0338bcd1ef45069683b8a480f9aa69":{ + "scriptId":"u269"}, + "91c2f9e5807448a0ad367f660f391ae5":{ + "scriptId":"u270"}, + "4f6b5fea06c74ea4acc7ad827c70d9ab":{ + "scriptId":"u271"}, + "a656da15e38f4ef78e2b4ac67ca9560c":{ + "scriptId":"u272"}, + "e83f6822495843cab099a19d185c7ef8":{ + "scriptId":"u273"}, + "2f87171a56db4668a9e7d239a18cb9f7":{ + "scriptId":"u274"}, + "d16722ae580f4178b445467591237f5a":{ + "scriptId":"u275"}, + "6605a131467d4f2ea61e51dc03283ca4":{ + "scriptId":"u276"}, + "61862a38083a43fa9607cf872f0ef853":{ + "scriptId":"u277"}, + "7ea794ee0b964bc6b9d1cb809db12987":{ + "scriptId":"u278"}, + "d9de9102dabc4df386bd22b3930b8cca":{ + "scriptId":"u279"}, + "c6bc1d7500dd42adab3e0b8a2e2182b6":{ + "scriptId":"u280"}, + "9842873df3424161b3f753affcad1ab9":{ + "scriptId":"u281"}, + "ef4241b9677940ca84543697a8946e54":{ + "scriptId":"u282"}, + "8c701ada7d92402eb79064fb7cfc99af":{ + "scriptId":"u283"}, + "a4cac08889ab4da0947a2919c5fe11bb":{ + "scriptId":"u284"}, + "9368c74ef5ad4965bc7c58ee176537ae":{ + "scriptId":"u285"}, + "8bdfc2946d644da88517b9b470e414c7":{ + "scriptId":"u286"}, + "7c0258cc08a14c52b6f1eb60eb74a0c3":{ + "scriptId":"u287"}, + "c48e0b43061244f9b9b5aeb0486d6cda":{ + "scriptId":"u288"}, + "4445e5e9f6bb4ef4b9f73198b990a18a":{ + "scriptId":"u289"}, + "55f40dc466714348a3c2d734f0aa0f60":{ + "scriptId":"u290"}, + "9b46e3416d8447a697efc12ec318564e":{ + "scriptId":"u291"}, + "6920bdad0cd14948844e255bb9a75198":{ + "scriptId":"u292"}, + "33dcccbfdfb44771a82d2abe500327a2":{ + "scriptId":"u293"}, + "ed73a33288c84835b1bdcb2c4c2f9ff5":{ + "scriptId":"u294"}, + "946770a1a74e43beb3091f49b151a89a":{ + "scriptId":"u295"}, + "a6136eaba5f94173b6b56d5d99df1cfc":{ + "scriptId":"u296"}, + "f321b95e05a2402e8619b4ae0864bde4":{ + "scriptId":"u297"}, + "f03d8a37c3204095930dc50f2d11a57d":{ + "scriptId":"u298"}, + "c3e8d473791a473caae5f1c5705fa657":{ + "scriptId":"u299"}, + "2e2bad0e44e84e7aaf0dc68976d3717e":{ + "scriptId":"u300"}, + "bfcabb153c4b4ef2b195c17fb3ae28d5":{ + "scriptId":"u301"}, + "4356eb5b19ce4737ae81d9b3aed53bce":{ + "scriptId":"u302"}, + "cfc96e7fb384471494c22b33c816c07c":{ + "scriptId":"u303"}, + "8285f3137c16474faa4e1558517a80d3":{ + "scriptId":"u304"}, + "2b756a180b074a718dfa071ff2f740b5":{ + "scriptId":"u305"}, + "ec9eb059e85247999f4426eb665829d8":{ + "scriptId":"u306"}, + "4091da4d7fc14d5b95e655350064e6f0":{ + "scriptId":"u307"}, + "e7b82640183046489b2906cedde67383":{ + "scriptId":"u308"}, + "0bba05adf1fa426baa5cb0205b5a6794":{ + "scriptId":"u309"}, + "671df81cd3dd40b18fa8471cf71b38fe":{ + "scriptId":"u310"}, + "91808dcfcc934c19aea966dd0ffb017a":{ + "scriptId":"u311"}, + "f99ba794817e43f6906c293bc3dcb356":{ + "scriptId":"u312"}, + "f554c3ecae944a2b90181878c0569d20":{ + "scriptId":"u313"}, + "b04d56669afc4984a281a7cdb2a0bedf":{ + "scriptId":"u314"}, + "ed0efd6e2c2f44038e07f31b3bbd3392":{ + "scriptId":"u315"}, + "aea0ab29cd524e16b781bc3e49b8ee0d":{ + "scriptId":"u316"}, + "f31607a23adb4aca9a72ad0e42045b8d":{ + "scriptId":"u317"}, + "fb51f7b6aff3470f9886489a40e7ef59":{ + "scriptId":"u318"}, + "49396a3166c744d89bd5ae22463d32ba":{ + "scriptId":"u319"}, + "e9cfbd4cd65049afa519b485257ffb2d":{ + "scriptId":"u320"}, + "af368bc2da4144568e84b1238bde1002":{ + "scriptId":"u321"}, + "4f2cb859b3184a2fb59141400b89efcf":{ + "scriptId":"u322"}, + "94ba2e41867d454a85062e82b03ef0ac":{ + "scriptId":"u323"}, + "2286c0e62eaf415f83bd80ff5eafe800":{ + "scriptId":"u324"}, + "cc126cb338b3498fbac2c31c31141081":{ + "scriptId":"u325"}, + "af9732aa6f284c92a155bfb9e84c1d06":{ + "scriptId":"u326"}, + "56518f9f0dd243978d2abbda83051ff0":{ + "scriptId":"u327"}, + "dcd025e4ce3c4b94a80366d6fea09a6b":{ + "scriptId":"u328"}, + "8b43b269b03d4505a7504479d07df309":{ + "scriptId":"u329"}, + "93ca86d6f4884d21a6c35670930ab912":{ + "scriptId":"u330"}, + "01371f18a1734f17b5df09be45b8c174":{ + "scriptId":"u331"}, + "eb60bd95da204dfa8f4502dc96ae58a7":{ + "scriptId":"u332"}, + "f54a29799ac34faabaf4e8584f143f7a":{ + "scriptId":"u333"}, + "ec4d87f1acb04d739a46a6359463840c":{ + "scriptId":"u334"}, + "47c4d9f86be84ae4961c7f20190414ff":{ + "scriptId":"u335"}, + "add69071ce614187aa6b341b13dd1e65":{ + "scriptId":"u336"}, + "f82c5effece243eeb8363ba620ac96b6":{ + "scriptId":"u337"}, + "bac9cddb7bd640d691c1ed33cc5c2dfe":{ + "scriptId":"u338"}, + "20f8f909d1264a63af107b260f6c324e":{ + "scriptId":"u339"}, + "69a06b74384143aea814ded7199d0ec7":{ + "scriptId":"u340"}, + "7bd623919b0746ad89aecc2f6838b7ae":{ + "scriptId":"u341"}, + "6a9134db1d1b487aa25fb616af7a8214":{ + "scriptId":"u342"}, + "f4e6787d6fb54e519fec16b7e0ca9fbc":{ + "scriptId":"u343"}, + "7169aeb196204e54977f5b8e668f7f83":{ + "scriptId":"u344"}, + "300b2e2d7397407fa34a08ce6d0ee269":{ + "scriptId":"u345"}, + "42702248b02742c5a10d081a09a093d1":{ + "scriptId":"u346"}, + "a3898eb6070b4595bf12114f846b62d7":{ + "scriptId":"u347"}, + "7712576961b045b5b74a95474b3a47d4":{ + "scriptId":"u348"}, + "130ac70a9db54df9b3d132c71921f461":{ + "scriptId":"u349"}, + "933840e3fde54746b63558bb644b1c5b":{ + "scriptId":"u350"}, + "030d69165d1a403d8ce545adf6e7e481":{ + "scriptId":"u351"}, + "0fda334e5def4f68887a6a031240d37b":{ + "scriptId":"u352"}, + "9dd481eb03a14905a7e0d64a816c94ec":{ + "scriptId":"u353"}, + "9a459a7d57244155bfb53ab01ac2caac":{ + "scriptId":"u354"}, + "131afc3a002e42198ddaf9b6232d21bb":{ + "scriptId":"u355"}, + "cc0eeeddee3e4399bfda847c8b525fec":{ + "scriptId":"u356"}, + "56301a1d5d9a4805be33a7a28032f95e":{ + "scriptId":"u357"}, + "6900e1b45c5a49908e87170ff27cf641":{ + "scriptId":"u358"}, + "ef777c51da484ae689d6c4bc6db37698":{ + "scriptId":"u359"}, + "89c80cf23988428c8de119a7f4eaf840":{ + "scriptId":"u360"}, + "c9f42794574d4a0e983909f942a6322c":{ + "scriptId":"u361"}, + "35f0929714f04d3f810969d6d86b8b8f":{ + "scriptId":"u362"}, + "cc77ff95a4a04bd0b7a89473404f156e":{ + "scriptId":"u363"}, + "8cf202542cfe488eb6cf37372c902322":{ + "scriptId":"u364"}, + "2151124994ab4a1c8a015dd989bcd3a5":{ + "scriptId":"u365"}, + "f10b85725aac4f50a78c00136443611f":{ + "scriptId":"u366"}, + "813dd856080847b5bb893cb89c27738b":{ + "scriptId":"u367"}}}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\345\217\221\346\224\276\345\216\206\345\217\262/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\345\217\221\346\224\276\345\216\206\345\217\262/styles.css" new file mode 100644 index 0000000..5eead6a --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\345\217\221\346\224\276\345\216\206\345\217\262/styles.css" @@ -0,0 +1,4390 @@ +body { + margin:0px; + background-image:none; + position:static; + left:auto; + width:378px; + margin-left:0; + margin-right:0; + text-align:left; +} +#base { + position:absolute; + z-index:0; +} +#u0 { + position:absolute; + left:0px; + top:116px; + width:8px; + height:36px; +} +#u0_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:36px; +} +#u1 { + position:absolute; + left:2px; + top:10px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u2 { + position:absolute; + left:0px; + top:192px; + width:8px; + height:27px; +} +#u2_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:27px; +} +#u3 { + position:absolute; + left:2px; + top:6px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u4 { + position:absolute; + left:0px; + top:255px; + width:8px; + height:27px; +} +#u4_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:27px; +} +#u5 { + position:absolute; + left:2px; + top:6px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u6 { + position:absolute; + left:259px; + top:0px; + width:60px; + height:10px; +} +#u6_img { + position:absolute; + left:0px; + top:0px; + width:60px; + height:10px; +} +#u7 { + position:absolute; + left:2px; + top:-3px; + width:56px; + visibility:hidden; + word-wrap:break-word; +} +#u8 { + position:absolute; + left:6px; + top:6px; + width:372px; + height:796px; +} +#u8_img { + position:absolute; + left:0px; + top:0px; + width:372px; + height:796px; +} +#u9 { + position:absolute; + left:2px; + top:390px; + width:368px; + visibility:hidden; + word-wrap:break-word; +} +#u10 { + position:absolute; + left:32px; + top:120px; + width:320px; + height:568px; +} +#u10_img { + position:absolute; + left:0px; + top:0px; + width:320px; + height:568px; +} +#u11 { + position:absolute; + left:2px; + top:276px; + width:316px; + visibility:hidden; + word-wrap:break-word; +} +#u12 { + position:absolute; + left:157px; + top:66px; + width:70px; + height:14px; +} +#u12_img { + position:absolute; + left:0px; + top:0px; + width:70px; + height:14px; +} +#u13 { + position:absolute; + left:2px; + top:-1px; + width:66px; + visibility:hidden; + word-wrap:break-word; +} +#u14 { + position:absolute; + left:185px; + top:40px; + width:14px; + height:14px; +} +#u14_img { + position:absolute; + left:0px; + top:0px; + width:14px; + height:14px; +} +#u15 { + position:absolute; + left:2px; + top:-1px; + width:10px; + visibility:hidden; + word-wrap:break-word; +} +#u16 { + position:absolute; + left:156px; + top:704px; + width:72px; + height:72px; +} +#u16_img { + position:absolute; + left:0px; + top:0px; + width:72px; + height:72px; +} +#u17 { + position:absolute; + left:2px; + top:28px; + width:68px; + visibility:hidden; + word-wrap:break-word; +} +#u18 { + position:absolute; + left:32px; + top:120px; + width:320px; + height:568px; + overflow:hidden; +} +#u18_state0 { + position:absolute; + left:0px; + top:0px; + width:320px; + height:568px; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; +} +#u18_state0_content { + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u19 { + position:absolute; + left:0px; + top:18px; + width:319px; + height:60px; +} +#u19_img { + position:absolute; + left:0px; + top:0px; + width:319px; + height:60px; +} +#u20 { + position:absolute; + left:2px; + top:22px; + width:315px; + visibility:hidden; + word-wrap:break-word; +} +#u21 { + position:absolute; + left:8px; + top:37px; + width:22px; + height:22px; +} +#u21_img { + position:absolute; + left:0px; + top:0px; + width:22px; + height:22px; +} +#u22 { + position:absolute; + left:2px; + top:3px; + width:18px; + visibility:hidden; + word-wrap:break-word; +} +#u23 { + position:absolute; + left:70px; + top:36px; + width:179px; + height:24px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + font-size:20px; +} +#u23_img { + position:absolute; + left:0px; + top:0px; + width:179px; + height:24px; +} +#u24 { + position:absolute; + left:0px; + top:0px; + width:179px; + white-space:nowrap; +} +#u25 { + position:absolute; + left:10px; + top:133px; + width:300px; + height:425px; + overflow:hidden; +} +#u25_state0 { + position:absolute; + left:0px; + top:0px; + width:300px; + height:425px; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; +} +#u25_state0_content { + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u26 { + position:absolute; + left:0px; + top:255px; + width:300px; + height:45px; +} +#u26_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:45px; +} +#u27 { + position:absolute; + left:2px; + top:14px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u28 { + position:absolute; + left:0px; + top:310px; + width:300px; + height:45px; +} +#u28_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:45px; +} +#u29 { + position:absolute; + left:2px; + top:14px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u30 { + position:absolute; + left:10px; + top:264px; + width:115px; + height:30px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; + font-size:22px; +} +#u30_img { + position:absolute; + left:0px; + top:0px; + width:115px; + height:30px; +} +#u31 { + position:absolute; + left:0px; + top:0px; + width:115px; + white-space:nowrap; +} +#u32 { + position:absolute; + left:154px; + top:280px; + width:30px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u32_img { + position:absolute; + left:0px; + top:0px; + width:30px; + height:19px; +} +#u33 { + position:absolute; + left:0px; + top:0px; + width:30px; + white-space:nowrap; +} +#u34 { + position:absolute; + left:202px; + top:280px; + width:88px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u34_img { + position:absolute; + left:0px; + top:0px; + width:88px; + height:19px; +} +#u35 { + position:absolute; + left:0px; + top:0px; + width:88px; + white-space:nowrap; +} +#u36 { + position:absolute; + left:10px; + top:319px; + width:115px; + height:30px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; + font-size:22px; +} +#u36_img { + position:absolute; + left:0px; + top:0px; + width:115px; + height:30px; +} +#u37 { + position:absolute; + left:0px; + top:0px; + width:115px; + white-space:nowrap; +} +#u38 { + position:absolute; + left:154px; + top:333px; + width:30px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u38_img { + position:absolute; + left:0px; + top:0px; + width:30px; + height:19px; +} +#u39 { + position:absolute; + left:0px; + top:0px; + width:30px; + white-space:nowrap; +} +#u40 { + position:absolute; + left:202px; + top:333px; + width:88px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u40_img { + position:absolute; + left:0px; + top:0px; + width:88px; + height:19px; +} +#u41 { + position:absolute; + left:0px; + top:0px; + width:88px; + white-space:nowrap; +} +#u42 { + position:absolute; + left:154px; + top:261px; + width:40px; + height:16px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + color:#009900; +} +#u42_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:16px; +} +#u43 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u44 { + position:absolute; + left:154px; + top:316px; + width:40px; + height:16px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + color:#009900; +} +#u44_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:16px; +} +#u45 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u46 { + position:absolute; + left:0px; + top:145px; + width:300px; + height:45px; +} +#u46_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:45px; +} +#u47 { + position:absolute; + left:2px; + top:14px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u48 { + position:absolute; + left:10px; + top:154px; + width:129px; + height:30px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; + font-size:22px; +} +#u48_img { + position:absolute; + left:0px; + top:0px; + width:129px; + height:30px; +} +#u49 { + position:absolute; + left:0px; + top:0px; + width:129px; + white-space:nowrap; +} +#u50 { + position:absolute; + left:154px; + top:168px; + width:30px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u50_img { + position:absolute; + left:0px; + top:0px; + width:30px; + height:19px; +} +#u51 { + position:absolute; + left:0px; + top:0px; + width:30px; + white-space:nowrap; +} +#u52 { + position:absolute; + left:202px; + top:168px; + width:88px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u52_img { + position:absolute; + left:0px; + top:0px; + width:88px; + height:19px; +} +#u53 { + position:absolute; + left:0px; + top:0px; + width:88px; + white-space:nowrap; +} +#u54 { + position:absolute; + left:154px; + top:151px; + width:40px; + height:16px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + color:#009900; +} +#u54_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:16px; +} +#u55 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u56 { + position:absolute; + left:204px; + top:152px; + width:47px; + height:16px; +} +#u56_img { + position:absolute; + left:0px; + top:0px; + width:47px; + height:16px; +} +#u57 { + position:absolute; + left:0px; + top:0px; + width:47px; + white-space:nowrap; +} +#u58 { + position:absolute; + left:204px; + top:261px; + width:47px; + height:16px; +} +#u58_img { + position:absolute; + left:0px; + top:0px; + width:47px; + height:16px; +} +#u59 { + position:absolute; + left:0px; + top:0px; + width:47px; + white-space:nowrap; +} +#u60 { + position:absolute; + left:204px; + top:316px; + width:47px; + height:16px; +} +#u60_img { + position:absolute; + left:0px; + top:0px; + width:47px; + height:16px; +} +#u61 { + position:absolute; + left:0px; + top:0px; + width:47px; + white-space:nowrap; +} +#u62 { + position:absolute; + left:0px; + top:200px; + width:300px; + height:45px; +} +#u62_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:45px; +} +#u63 { + position:absolute; + left:2px; + top:14px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u64 { + position:absolute; + left:10px; + top:209px; + width:115px; + height:30px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; + font-size:22px; +} +#u64_img { + position:absolute; + left:0px; + top:0px; + width:115px; + height:30px; +} +#u65 { + position:absolute; + left:0px; + top:0px; + width:115px; + white-space:nowrap; +} +#u66 { + position:absolute; + left:154px; + top:225px; + width:30px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u66_img { + position:absolute; + left:0px; + top:0px; + width:30px; + height:19px; +} +#u67 { + position:absolute; + left:0px; + top:0px; + width:30px; + white-space:nowrap; +} +#u68 { + position:absolute; + left:202px; + top:225px; + width:88px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u68_img { + position:absolute; + left:0px; + top:0px; + width:88px; + height:19px; +} +#u69 { + position:absolute; + left:0px; + top:0px; + width:88px; + white-space:nowrap; +} +#u70 { + position:absolute; + left:154px; + top:206px; + width:40px; + height:16px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + color:#009900; +} +#u70_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:16px; +} +#u71 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u72 { + position:absolute; + left:204px; + top:206px; + width:47px; + height:16px; +} +#u72_img { + position:absolute; + left:0px; + top:0px; + width:47px; + height:16px; +} +#u73 { + position:absolute; + left:0px; + top:0px; + width:47px; + white-space:nowrap; +} +#u74 { + position:absolute; + left:0px; + top:365px; + width:300px; + height:45px; +} +#u74_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:45px; +} +#u75 { + position:absolute; + left:2px; + top:14px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u76 { + position:absolute; + left:10px; + top:374px; + width:115px; + height:30px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; + font-size:22px; +} +#u76_img { + position:absolute; + left:0px; + top:0px; + width:115px; + height:30px; +} +#u77 { + position:absolute; + left:0px; + top:0px; + width:115px; + white-space:nowrap; +} +#u78 { + position:absolute; + left:154px; + top:388px; + width:30px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u78_img { + position:absolute; + left:0px; + top:0px; + width:30px; + height:19px; +} +#u79 { + position:absolute; + left:0px; + top:0px; + width:30px; + white-space:nowrap; +} +#u80 { + position:absolute; + left:202px; + top:388px; + width:88px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u80_img { + position:absolute; + left:0px; + top:0px; + width:88px; + height:19px; +} +#u81 { + position:absolute; + left:0px; + top:0px; + width:88px; + white-space:nowrap; +} +#u82 { + position:absolute; + left:154px; + top:371px; + width:40px; + height:16px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + color:#009900; +} +#u82_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:16px; +} +#u83 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u84 { + position:absolute; + left:204px; + top:371px; + width:47px; + height:16px; +} +#u84_img { + position:absolute; + left:0px; + top:0px; + width:47px; + height:16px; +} +#u85 { + position:absolute; + left:0px; + top:0px; + width:47px; + white-space:nowrap; +} +#u86 { + position:absolute; + left:0px; + top:148px; + width:300px; + height:40px; + overflow:hidden; + background-image:url('../../resources/images/transparent.gif'); +} +#u25_state1 { + position:absolute; + left:0px; + top:0px; + width:300px; + height:425px; + visibility:hidden; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; +} +#u25_state1_content { + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u87 { + position:absolute; + left:0px; + top:120px; + width:300px; + height:45px; +} +#u87_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:45px; +} +#u88 { + position:absolute; + left:2px; + top:14px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u89 { + position:absolute; + left:0px; + top:175px; + width:300px; + height:45px; +} +#u89_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:45px; +} +#u90 { + position:absolute; + left:2px; + top:14px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u91 { + position:absolute; + left:10px; + top:129px; + width:115px; + height:30px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; + font-size:22px; +} +#u91_img { + position:absolute; + left:0px; + top:0px; + width:115px; + height:30px; +} +#u92 { + position:absolute; + left:0px; + top:0px; + width:115px; + white-space:nowrap; +} +#u93 { + position:absolute; + left:154px; + top:145px; + width:30px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u93_img { + position:absolute; + left:0px; + top:0px; + width:30px; + height:19px; +} +#u94 { + position:absolute; + left:0px; + top:0px; + width:30px; + white-space:nowrap; +} +#u95 { + position:absolute; + left:202px; + top:145px; + width:88px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u95_img { + position:absolute; + left:0px; + top:0px; + width:88px; + height:19px; +} +#u96 { + position:absolute; + left:0px; + top:0px; + width:88px; + white-space:nowrap; +} +#u97 { + position:absolute; + left:10px; + top:184px; + width:115px; + height:30px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; + font-size:22px; +} +#u97_img { + position:absolute; + left:0px; + top:0px; + width:115px; + height:30px; +} +#u98 { + position:absolute; + left:0px; + top:0px; + width:115px; + white-space:nowrap; +} +#u99 { + position:absolute; + left:154px; + top:198px; + width:30px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u99_img { + position:absolute; + left:0px; + top:0px; + width:30px; + height:19px; +} +#u100 { + position:absolute; + left:0px; + top:0px; + width:30px; + white-space:nowrap; +} +#u101 { + position:absolute; + left:202px; + top:198px; + width:88px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u101_img { + position:absolute; + left:0px; + top:0px; + width:88px; + height:19px; +} +#u102 { + position:absolute; + left:0px; + top:0px; + width:88px; + white-space:nowrap; +} +#u103 { + position:absolute; + left:154px; + top:126px; + width:40px; + height:16px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + color:#009900; +} +#u103_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:16px; +} +#u104 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u105 { + position:absolute; + left:154px; + top:181px; + width:40px; + height:16px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + color:#009900; +} +#u105_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:16px; +} +#u106 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u107 { + position:absolute; + left:0px; + top:10px; + width:300px; + height:45px; +} +#u107_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:45px; +} +#u108 { + position:absolute; + left:2px; + top:14px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u109 { + position:absolute; + left:10px; + top:19px; + width:129px; + height:30px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; + font-size:22px; +} +#u109_img { + position:absolute; + left:0px; + top:0px; + width:129px; + height:30px; +} +#u110 { + position:absolute; + left:0px; + top:0px; + width:129px; + white-space:nowrap; +} +#u111 { + position:absolute; + left:154px; + top:33px; + width:30px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u111_img { + position:absolute; + left:0px; + top:0px; + width:30px; + height:19px; +} +#u112 { + position:absolute; + left:0px; + top:0px; + width:30px; + white-space:nowrap; +} +#u113 { + position:absolute; + left:202px; + top:33px; + width:88px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u113_img { + position:absolute; + left:0px; + top:0px; + width:88px; + height:19px; +} +#u114 { + position:absolute; + left:0px; + top:0px; + width:88px; + white-space:nowrap; +} +#u115 { + position:absolute; + left:154px; + top:16px; + width:40px; + height:16px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + color:#009900; +} +#u115_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:16px; +} +#u116 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u117 { + position:absolute; + left:204px; + top:17px; + width:47px; + height:16px; +} +#u117_img { + position:absolute; + left:0px; + top:0px; + width:47px; + height:16px; +} +#u118 { + position:absolute; + left:0px; + top:0px; + width:47px; + white-space:nowrap; +} +#u119 { + position:absolute; + left:204px; + top:126px; + width:47px; + height:16px; +} +#u119_img { + position:absolute; + left:0px; + top:0px; + width:47px; + height:16px; +} +#u120 { + position:absolute; + left:0px; + top:0px; + width:47px; + white-space:nowrap; +} +#u121 { + position:absolute; + left:204px; + top:181px; + width:47px; + height:16px; +} +#u121_img { + position:absolute; + left:0px; + top:0px; + width:47px; + height:16px; +} +#u122 { + position:absolute; + left:0px; + top:0px; + width:47px; + white-space:nowrap; +} +#u123 { + position:absolute; + left:0px; + top:65px; + width:300px; + height:45px; +} +#u123_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:45px; +} +#u124 { + position:absolute; + left:2px; + top:14px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u125 { + position:absolute; + left:10px; + top:74px; + width:115px; + height:30px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; + font-size:22px; +} +#u125_img { + position:absolute; + left:0px; + top:0px; + width:115px; + height:30px; +} +#u126 { + position:absolute; + left:0px; + top:0px; + width:115px; + white-space:nowrap; +} +#u127 { + position:absolute; + left:154px; + top:90px; + width:30px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u127_img { + position:absolute; + left:0px; + top:0px; + width:30px; + height:19px; +} +#u128 { + position:absolute; + left:0px; + top:0px; + width:30px; + white-space:nowrap; +} +#u129 { + position:absolute; + left:202px; + top:90px; + width:88px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u129_img { + position:absolute; + left:0px; + top:0px; + width:88px; + height:19px; +} +#u130 { + position:absolute; + left:0px; + top:0px; + width:88px; + white-space:nowrap; +} +#u131 { + position:absolute; + left:154px; + top:71px; + width:40px; + height:16px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + color:#009900; +} +#u131_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:16px; +} +#u132 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u133 { + position:absolute; + left:204px; + top:71px; + width:47px; + height:16px; +} +#u133_img { + position:absolute; + left:0px; + top:0px; + width:47px; + height:16px; +} +#u134 { + position:absolute; + left:0px; + top:0px; + width:47px; + white-space:nowrap; +} +#u135 { + position:absolute; + left:0px; + top:230px; + width:300px; + height:45px; +} +#u135_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:45px; +} +#u136 { + position:absolute; + left:2px; + top:14px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u137 { + position:absolute; + left:10px; + top:239px; + width:115px; + height:30px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; + font-size:22px; +} +#u137_img { + position:absolute; + left:0px; + top:0px; + width:115px; + height:30px; +} +#u138 { + position:absolute; + left:0px; + top:0px; + width:115px; + white-space:nowrap; +} +#u139 { + position:absolute; + left:154px; + top:253px; + width:30px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u139_img { + position:absolute; + left:0px; + top:0px; + width:30px; + height:19px; +} +#u140 { + position:absolute; + left:0px; + top:0px; + width:30px; + white-space:nowrap; +} +#u141 { + position:absolute; + left:202px; + top:253px; + width:88px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u141_img { + position:absolute; + left:0px; + top:0px; + width:88px; + height:19px; +} +#u142 { + position:absolute; + left:0px; + top:0px; + width:88px; + white-space:nowrap; +} +#u143 { + position:absolute; + left:154px; + top:236px; + width:40px; + height:16px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + color:#009900; +} +#u143_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:16px; +} +#u144 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u145 { + position:absolute; + left:204px; + top:236px; + width:47px; + height:16px; +} +#u145_img { + position:absolute; + left:0px; + top:0px; + width:47px; + height:16px; +} +#u146 { + position:absolute; + left:0px; + top:0px; + width:47px; + white-space:nowrap; +} +#u147 { + position:absolute; + left:0px; + top:12px; + width:300px; + height:40px; + overflow:hidden; + background-image:url('../../resources/images/transparent.gif'); +} +#u148 { + position:absolute; + left:10px; + top:133px; + width:290px; + height:135px; + overflow:hidden; +} +#u148_state0 { + position:absolute; + left:0px; + top:0px; + width:290px; + height:135px; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; +} +#u148_state0_content { + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u149 { + position:absolute; + left:0px; + top:0px; + width:290px; + height:45px; +} +#u149_img { + position:absolute; + left:0px; + top:0px; + width:290px; + height:45px; +} +#u150 { + position:absolute; + left:2px; + top:14px; + width:286px; + visibility:hidden; + word-wrap:break-word; +} +#u151 { + position:absolute; + left:10px; + top:9px; + width:37px; + height:30px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; + font-size:22px; +} +#u151_img { + position:absolute; + left:0px; + top:0px; + width:37px; + height:30px; +} +#u152 { + position:absolute; + left:0px; + top:0px; + width:37px; + white-space:nowrap; +} +#u153 { + position:absolute; + left:149px; + top:25px; + width:30px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u153_img { + position:absolute; + left:0px; + top:0px; + width:30px; + height:19px; +} +#u154 { + position:absolute; + left:0px; + top:0px; + width:30px; + white-space:nowrap; +} +#u155 { + position:absolute; + left:195px; + top:25px; + width:88px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u155_img { + position:absolute; + left:0px; + top:0px; + width:88px; + height:19px; +} +#u156 { + position:absolute; + left:0px; + top:0px; + width:88px; + white-space:nowrap; +} +#u157 { + position:absolute; + left:149px; + top:6px; + width:40px; + height:16px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + color:#FF0000; +} +#u157_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:16px; +} +#u158 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u159 { + position:absolute; + left:0px; + top:45px; + width:290px; + height:45px; +} +#u159_img { + position:absolute; + left:0px; + top:0px; + width:290px; + height:45px; +} +#u160 { + position:absolute; + left:2px; + top:14px; + width:286px; + visibility:hidden; + word-wrap:break-word; +} +#u161 { + position:absolute; + left:10px; + top:54px; + width:51px; + height:30px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; + font-size:22px; +} +#u161_img { + position:absolute; + left:0px; + top:0px; + width:51px; + height:30px; +} +#u162 { + position:absolute; + left:0px; + top:0px; + width:51px; + white-space:nowrap; +} +#u163 { + position:absolute; + left:149px; + top:70px; + width:30px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u163_img { + position:absolute; + left:0px; + top:0px; + width:30px; + height:19px; +} +#u164 { + position:absolute; + left:0px; + top:0px; + width:30px; + white-space:nowrap; +} +#u165 { + position:absolute; + left:195px; + top:70px; + width:88px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u165_img { + position:absolute; + left:0px; + top:0px; + width:88px; + height:19px; +} +#u166 { + position:absolute; + left:0px; + top:0px; + width:88px; + white-space:nowrap; +} +#u167 { + position:absolute; + left:149px; + top:51px; + width:40px; + height:16px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + color:#0000FF; +} +#u167_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:16px; +} +#u168 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u169 { + position:absolute; + left:0px; + top:90px; + width:290px; + height:45px; +} +#u169_img { + position:absolute; + left:0px; + top:0px; + width:290px; + height:45px; +} +#u170 { + position:absolute; + left:2px; + top:14px; + width:286px; + visibility:hidden; + word-wrap:break-word; +} +#u171 { + position:absolute; + left:10px; + top:99px; + width:51px; + height:30px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; + font-size:22px; +} +#u171_img { + position:absolute; + left:0px; + top:0px; + width:51px; + height:30px; +} +#u172 { + position:absolute; + left:0px; + top:0px; + width:51px; + white-space:nowrap; +} +#u173 { + position:absolute; + left:149px; + top:115px; + width:30px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u173_img { + position:absolute; + left:0px; + top:0px; + width:30px; + height:19px; +} +#u174 { + position:absolute; + left:0px; + top:0px; + width:30px; + white-space:nowrap; +} +#u175 { + position:absolute; + left:195px; + top:115px; + width:88px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u175_img { + position:absolute; + left:0px; + top:0px; + width:88px; + height:19px; +} +#u176 { + position:absolute; + left:0px; + top:0px; + width:88px; + white-space:nowrap; +} +#u177 { + position:absolute; + left:149px; + top:96px; + width:40px; + height:16px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + color:#0000FF; +} +#u177_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:16px; +} +#u178 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u179 { + position:absolute; + left:0px; + top:0px; + width:290px; + height:45px; + overflow:hidden; + background-image:url('../../resources/images/transparent.gif'); +} +#u180 { + position:absolute; + left:0px; + top:45px; + width:290px; + height:45px; + overflow:hidden; + background-image:url('../../resources/images/transparent.gif'); +} +#u148_state1 { + position:absolute; + left:0px; + top:0px; + width:290px; + height:135px; + visibility:hidden; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; +} +#u148_state1_content { + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u181 { + position:absolute; + left:10px; + top:88px; + width:300px; + height:45px; +} +#u181_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:45px; +} +#u182 { + position:absolute; + left:2px; + top:14px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u183 { + position:absolute; + left:20px; + top:98px; + width:129px; + height:30px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; + font-size:22px; +} +#u183_img { + position:absolute; + left:0px; + top:0px; + width:129px; + height:30px; +} +#u184 { + position:absolute; + left:0px; + top:0px; + width:129px; + white-space:nowrap; +} +#u185 { + position:absolute; + left:10px; + top:88px; + width:300px; + height:45px; + overflow:hidden; + background-image:url('../../resources/images/transparent.gif'); +} +#u18_state1 { + position:absolute; + left:0px; + top:0px; + width:320px; + height:568px; + visibility:hidden; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; +} +#u18_state1_content { + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u186 { + position:absolute; + left:0px; + top:0px; + width:319px; + height:570px; + overflow:hidden; +} +#u186_state0 { + position:absolute; + left:0px; + top:0px; + width:319px; + height:570px; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; +} +#u186_state0_content { + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u187 { + position:absolute; + left:0px; + top:18px; + width:319px; + height:60px; +} +#u187_img { + position:absolute; + left:0px; + top:0px; + width:319px; + height:60px; +} +#u188 { + position:absolute; + left:2px; + top:22px; + width:315px; + visibility:hidden; + word-wrap:break-word; +} +#u189 { + position:absolute; + left:8px; + top:37px; + width:22px; + height:22px; +} +#u189_img { + position:absolute; + left:0px; + top:0px; + width:22px; + height:22px; +} +#u190 { + position:absolute; + left:2px; + top:3px; + width:18px; + visibility:hidden; + word-wrap:break-word; +} +#u191 { + position:absolute; + left:60px; + top:35px; + width:199px; + height:24px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + font-size:20px; +} +#u191_img { + position:absolute; + left:0px; + top:0px; + width:199px; + height:24px; +} +#u192 { + position:absolute; + left:0px; + top:0px; + width:199px; + white-space:nowrap; +} +#u193 { + position:absolute; + left:8px; + top:198px; + width:300px; + height:45px; +} +#u193_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:45px; +} +#u194 { + position:absolute; + left:2px; + top:14px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u195 { + position:absolute; + left:8px; + top:253px; + width:300px; + height:45px; +} +#u195_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:45px; +} +#u196 { + position:absolute; + left:2px; + top:14px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u197 { + position:absolute; + left:18px; + top:207px; + width:115px; + height:30px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; + font-size:22px; +} +#u197_img { + position:absolute; + left:0px; + top:0px; + width:115px; + height:30px; +} +#u198 { + position:absolute; + left:0px; + top:0px; + width:115px; + white-space:nowrap; +} +#u199 { + position:absolute; + left:162px; + top:223px; + width:30px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u199_img { + position:absolute; + left:0px; + top:0px; + width:30px; + height:19px; +} +#u200 { + position:absolute; + left:0px; + top:0px; + width:30px; + white-space:nowrap; +} +#u201 { + position:absolute; + left:210px; + top:223px; + width:88px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u201_img { + position:absolute; + left:0px; + top:0px; + width:88px; + height:19px; +} +#u202 { + position:absolute; + left:0px; + top:0px; + width:88px; + white-space:nowrap; +} +#u203 { + position:absolute; + left:18px; + top:262px; + width:115px; + height:30px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; + font-size:22px; +} +#u203_img { + position:absolute; + left:0px; + top:0px; + width:115px; + height:30px; +} +#u204 { + position:absolute; + left:0px; + top:0px; + width:115px; + white-space:nowrap; +} +#u205 { + position:absolute; + left:162px; + top:276px; + width:30px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u205_img { + position:absolute; + left:0px; + top:0px; + width:30px; + height:19px; +} +#u206 { + position:absolute; + left:0px; + top:0px; + width:30px; + white-space:nowrap; +} +#u207 { + position:absolute; + left:210px; + top:276px; + width:88px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u207_img { + position:absolute; + left:0px; + top:0px; + width:88px; + height:19px; +} +#u208 { + position:absolute; + left:0px; + top:0px; + width:88px; + white-space:nowrap; +} +#u209 { + position:absolute; + left:8px; + top:88px; + width:300px; + height:45px; +} +#u209_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:45px; +} +#u210 { + position:absolute; + left:2px; + top:14px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u211 { + position:absolute; + left:18px; + top:97px; + width:129px; + height:30px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; + font-size:22px; +} +#u211_img { + position:absolute; + left:0px; + top:0px; + width:129px; + height:30px; +} +#u212 { + position:absolute; + left:0px; + top:0px; + width:129px; + white-space:nowrap; +} +#u213 { + position:absolute; + left:162px; + top:111px; + width:30px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u213_img { + position:absolute; + left:0px; + top:0px; + width:30px; + height:19px; +} +#u214 { + position:absolute; + left:0px; + top:0px; + width:30px; + white-space:nowrap; +} +#u215 { + position:absolute; + left:210px; + top:111px; + width:88px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u215_img { + position:absolute; + left:0px; + top:0px; + width:88px; + height:19px; +} +#u216 { + position:absolute; + left:0px; + top:0px; + width:88px; + white-space:nowrap; +} +#u217 { + position:absolute; + left:8px; + top:143px; + width:300px; + height:45px; +} +#u217_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:45px; +} +#u218 { + position:absolute; + left:2px; + top:14px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u219 { + position:absolute; + left:18px; + top:152px; + width:115px; + height:30px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; + font-size:22px; +} +#u219_img { + position:absolute; + left:0px; + top:0px; + width:115px; + height:30px; +} +#u220 { + position:absolute; + left:0px; + top:0px; + width:115px; + white-space:nowrap; +} +#u221 { + position:absolute; + left:162px; + top:168px; + width:30px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u221_img { + position:absolute; + left:0px; + top:0px; + width:30px; + height:19px; +} +#u222 { + position:absolute; + left:0px; + top:0px; + width:30px; + white-space:nowrap; +} +#u223 { + position:absolute; + left:210px; + top:168px; + width:88px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u223_img { + position:absolute; + left:0px; + top:0px; + width:88px; + height:19px; +} +#u224 { + position:absolute; + left:0px; + top:0px; + width:88px; + white-space:nowrap; +} +#u225 { + position:absolute; + left:8px; + top:308px; + width:300px; + height:45px; +} +#u225_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:45px; +} +#u226 { + position:absolute; + left:2px; + top:14px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u227 { + position:absolute; + left:18px; + top:317px; + width:115px; + height:30px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; + font-size:22px; +} +#u227_img { + position:absolute; + left:0px; + top:0px; + width:115px; + height:30px; +} +#u228 { + position:absolute; + left:0px; + top:0px; + width:115px; + white-space:nowrap; +} +#u229 { + position:absolute; + left:162px; + top:331px; + width:30px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u229_img { + position:absolute; + left:0px; + top:0px; + width:30px; + height:19px; +} +#u230 { + position:absolute; + left:0px; + top:0px; + width:30px; + white-space:nowrap; +} +#u231 { + position:absolute; + left:210px; + top:331px; + width:88px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u231_img { + position:absolute; + left:0px; + top:0px; + width:88px; + height:19px; +} +#u232 { + position:absolute; + left:0px; + top:0px; + width:88px; + white-space:nowrap; +} +#u233 { + position:absolute; + left:8px; + top:363px; + width:300px; + height:45px; +} +#u233_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:45px; +} +#u234 { + position:absolute; + left:2px; + top:14px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u235 { + position:absolute; + left:18px; + top:372px; + width:115px; + height:30px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; + font-size:22px; +} +#u235_img { + position:absolute; + left:0px; + top:0px; + width:115px; + height:30px; +} +#u236 { + position:absolute; + left:0px; + top:0px; + width:115px; + white-space:nowrap; +} +#u237 { + position:absolute; + left:162px; + top:386px; + width:30px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u237_img { + position:absolute; + left:0px; + top:0px; + width:30px; + height:19px; +} +#u238 { + position:absolute; + left:0px; + top:0px; + width:30px; + white-space:nowrap; +} +#u239 { + position:absolute; + left:210px; + top:386px; + width:88px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u239_img { + position:absolute; + left:0px; + top:0px; + width:88px; + height:19px; +} +#u240 { + position:absolute; + left:0px; + top:0px; + width:88px; + white-space:nowrap; +} +#u241 { + position:absolute; + left:8px; + top:88px; + width:300px; + height:45px; + overflow:hidden; + background-image:url('../../resources/images/transparent.gif'); +} +#u186_state1 { + position:absolute; + left:0px; + top:0px; + width:319px; + height:570px; + visibility:hidden; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; +} +#u186_state1_content { + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u242 { + position:absolute; + left:0px; + top:18px; + width:319px; + height:60px; +} +#u242_img { + position:absolute; + left:0px; + top:0px; + width:319px; + height:60px; +} +#u243 { + position:absolute; + left:2px; + top:22px; + width:315px; + visibility:hidden; + word-wrap:break-word; +} +#u244 { + position:absolute; + left:8px; + top:37px; + width:22px; + height:22px; +} +#u244_img { + position:absolute; + left:0px; + top:0px; + width:22px; + height:22px; +} +#u245 { + position:absolute; + left:2px; + top:3px; + width:18px; + visibility:hidden; + word-wrap:break-word; +} +#u246 { + position:absolute; + left:60px; + top:35px; + width:199px; + height:24px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + font-size:20px; +} +#u246_img { + position:absolute; + left:0px; + top:0px; + width:199px; + height:24px; +} +#u247 { + position:absolute; + left:0px; + top:0px; + width:199px; + white-space:nowrap; +} +#u248 { + position:absolute; + left:10px; + top:200px; + width:300px; + height:60px; +} +#u248_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u249 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u250 { + position:absolute; + left:20px; + top:207px; + width:67px; + height:30px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; + font-size:22px; +} +#u250_img { + position:absolute; + left:0px; + top:0px; + width:67px; + height:30px; +} +#u251 { + position:absolute; + left:0px; + top:0px; + width:67px; + white-space:nowrap; +} +#u252 { + position:absolute; + left:20px; + top:237px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u252_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u253 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u254 { + position:absolute; + left:170px; + top:207px; + width:130px; + height:16px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + color:#009900; +} +#u254_img { + position:absolute; + left:0px; + top:0px; + width:130px; + height:16px; +} +#u255 { + position:absolute; + left:0px; + top:0px; + width:130px; + white-space:nowrap; +} +#u256 { + position:absolute; + left:0px; + top:120px; + width:319px; + height:10px; +} +#u256_start { + position:absolute; + left:0px; + top:-5px; + width:18px; + height:20px; +} +#u256_end { + position:absolute; + left:302px; + top:-5px; + width:18px; + height:20px; +} +#u256_line { + position:absolute; + left:0px; + top:5px; + width:319px; + height:1px; +} +#u257 { + position:absolute; + left:275px; + top:88px; + width:25px; + height:25px; +} +#u257_img { + position:absolute; + left:0px; + top:0px; + width:25px; + height:25px; +} +#u258 { + position:absolute; + left:2px; + top:4px; + width:21px; + visibility:hidden; + word-wrap:break-word; +} +#u259 { + position:absolute; + left:10px; + top:89px; + width:255px; + height:25px; +} +#u259_input { + position:absolute; + left:0px; + top:0px; + width:255px; + height:25px; + background-image:; + text-align:left; + font-family:'Arial'; + font-size:13px; + color:#CCCCCC; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u260 { + position:absolute; + left:170px; + top:238px; + width:123px; + height:16px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + color:#009900; +} +#u260_img { + position:absolute; + left:0px; + top:0px; + width:123px; + height:16px; +} +#u261 { + position:absolute; + left:0px; + top:0px; + width:123px; + white-space:nowrap; +} +#u262 { + position:absolute; + left:10px; + top:270px; + width:300px; + height:60px; +} +#u262_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u263 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u264 { + position:absolute; + left:20px; + top:277px; + width:67px; + height:30px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; + font-size:22px; +} +#u264_img { + position:absolute; + left:0px; + top:0px; + width:67px; + height:30px; +} +#u265 { + position:absolute; + left:0px; + top:0px; + width:67px; + white-space:nowrap; +} +#u266 { + position:absolute; + left:20px; + top:307px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u266_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u267 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u268 { + position:absolute; + left:170px; + top:277px; + width:130px; + height:16px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + color:#009900; +} +#u268_img { + position:absolute; + left:0px; + top:0px; + width:130px; + height:16px; +} +#u269 { + position:absolute; + left:0px; + top:0px; + width:130px; + white-space:nowrap; +} +#u270 { + position:absolute; + left:170px; + top:308px; + width:123px; + height:16px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + color:#009900; +} +#u270_img { + position:absolute; + left:0px; + top:0px; + width:123px; + height:16px; +} +#u271 { + position:absolute; + left:0px; + top:0px; + width:123px; + white-space:nowrap; +} +#u272 { + position:absolute; + left:10px; + top:340px; + width:300px; + height:60px; +} +#u272_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u273 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u274 { + position:absolute; + left:20px; + top:347px; + width:67px; + height:30px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; + font-size:22px; +} +#u274_img { + position:absolute; + left:0px; + top:0px; + width:67px; + height:30px; +} +#u275 { + position:absolute; + left:0px; + top:0px; + width:67px; + white-space:nowrap; +} +#u276 { + position:absolute; + left:20px; + top:377px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u276_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u277 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u278 { + position:absolute; + left:170px; + top:347px; + width:130px; + height:16px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + color:#009900; +} +#u278_img { + position:absolute; + left:0px; + top:0px; + width:130px; + height:16px; +} +#u279 { + position:absolute; + left:0px; + top:0px; + width:130px; + white-space:nowrap; +} +#u280 { + position:absolute; + left:170px; + top:378px; + width:123px; + height:16px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + color:#009900; +} +#u280_img { + position:absolute; + left:0px; + top:0px; + width:123px; + height:16px; +} +#u281 { + position:absolute; + left:0px; + top:0px; + width:123px; + white-space:nowrap; +} +#u282 { + position:absolute; + left:10px; + top:410px; + width:300px; + height:60px; +} +#u282_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u283 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u284 { + position:absolute; + left:20px; + top:417px; + width:67px; + height:30px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; + font-size:22px; +} +#u284_img { + position:absolute; + left:0px; + top:0px; + width:67px; + height:30px; +} +#u285 { + position:absolute; + left:0px; + top:0px; + width:67px; + white-space:nowrap; +} +#u286 { + position:absolute; + left:20px; + top:447px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u286_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u287 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u288 { + position:absolute; + left:170px; + top:417px; + width:130px; + height:16px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + color:#009900; +} +#u288_img { + position:absolute; + left:0px; + top:0px; + width:130px; + height:16px; +} +#u289 { + position:absolute; + left:0px; + top:0px; + width:130px; + white-space:nowrap; +} +#u290 { + position:absolute; + left:170px; + top:448px; + width:123px; + height:16px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + color:#009900; +} +#u290_img { + position:absolute; + left:0px; + top:0px; + width:123px; + height:16px; +} +#u291 { + position:absolute; + left:0px; + top:0px; + width:123px; + white-space:nowrap; +} +#u292 { + position:absolute; + left:10px; + top:480px; + width:300px; + height:60px; +} +#u292_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u293 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u294 { + position:absolute; + left:20px; + top:487px; + width:67px; + height:30px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; + font-size:22px; +} +#u294_img { + position:absolute; + left:0px; + top:0px; + width:67px; + height:30px; +} +#u295 { + position:absolute; + left:0px; + top:0px; + width:67px; + white-space:nowrap; +} +#u296 { + position:absolute; + left:20px; + top:517px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u296_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u297 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u298 { + position:absolute; + left:170px; + top:487px; + width:130px; + height:16px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + color:#009900; +} +#u298_img { + position:absolute; + left:0px; + top:0px; + width:130px; + height:16px; +} +#u299 { + position:absolute; + left:0px; + top:0px; + width:130px; + white-space:nowrap; +} +#u300 { + position:absolute; + left:170px; + top:518px; + width:123px; + height:16px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + color:#009900; +} +#u300_img { + position:absolute; + left:0px; + top:0px; + width:123px; + height:16px; +} +#u301 { + position:absolute; + left:0px; + top:0px; + width:123px; + white-space:nowrap; +} +#u302 { + position:absolute; + left:10px; + top:130px; + width:257px; + height:60px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u302_img { + position:absolute; + left:0px; + top:0px; + width:257px; + height:60px; +} +#u303 { + position:absolute; + left:0px; + top:0px; + width:257px; + white-space:nowrap; +} +#u304 { + position:absolute; + left:10px; + top:200px; + width:300px; + height:60px; + overflow:hidden; + background-image:url('../../resources/images/transparent.gif'); +} +#u18_state2 { + position:absolute; + left:0px; + top:0px; + width:320px; + height:568px; + visibility:hidden; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; +} +#u18_state2_content { + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u305 { + position:absolute; + left:0px; + top:18px; + width:319px; + height:60px; +} +#u305_img { + position:absolute; + left:0px; + top:0px; + width:319px; + height:60px; +} +#u306 { + position:absolute; + left:2px; + top:22px; + width:315px; + visibility:hidden; + word-wrap:break-word; +} +#u307 { + position:absolute; + left:8px; + top:37px; + width:22px; + height:22px; +} +#u307_img { + position:absolute; + left:0px; + top:0px; + width:22px; + height:22px; +} +#u308 { + position:absolute; + left:2px; + top:3px; + width:18px; + visibility:hidden; + word-wrap:break-word; +} +#u309 { + position:absolute; + left:60px; + top:35px; + width:199px; + height:24px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + font-size:20px; +} +#u309_img { + position:absolute; + left:0px; + top:0px; + width:199px; + height:24px; +} +#u310 { + position:absolute; + left:0px; + top:0px; + width:199px; + white-space:nowrap; +} +#u311 { + position:absolute; + left:10px; + top:200px; + width:300px; + height:60px; +} +#u311_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u312 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u313 { + position:absolute; + left:20px; + top:207px; + width:67px; + height:30px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; + font-size:22px; +} +#u313_img { + position:absolute; + left:0px; + top:0px; + width:67px; + height:30px; +} +#u314 { + position:absolute; + left:0px; + top:0px; + width:67px; + white-space:nowrap; +} +#u315 { + position:absolute; + left:20px; + top:237px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u315_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u316 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u317 { + position:absolute; + left:170px; + top:207px; + width:130px; + height:16px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + color:#009900; +} +#u317_img { + position:absolute; + left:0px; + top:0px; + width:130px; + height:16px; +} +#u318 { + position:absolute; + left:0px; + top:0px; + width:130px; + white-space:nowrap; +} +#u319 { + position:absolute; + left:0px; + top:120px; + width:319px; + height:10px; +} +#u319_start { + position:absolute; + left:0px; + top:-5px; + width:18px; + height:20px; +} +#u319_end { + position:absolute; + left:302px; + top:-5px; + width:18px; + height:20px; +} +#u319_line { + position:absolute; + left:0px; + top:5px; + width:319px; + height:1px; +} +#u320 { + position:absolute; + left:275px; + top:88px; + width:25px; + height:25px; +} +#u320_img { + position:absolute; + left:0px; + top:0px; + width:25px; + height:25px; +} +#u321 { + position:absolute; + left:2px; + top:4px; + width:21px; + visibility:hidden; + word-wrap:break-word; +} +#u322 { + position:absolute; + left:10px; + top:89px; + width:255px; + height:25px; +} +#u322_input { + position:absolute; + left:0px; + top:0px; + width:255px; + height:25px; + background-image:; + text-align:left; + font-family:'Arial'; + font-size:13px; + color:#CCCCCC; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u323 { + position:absolute; + left:170px; + top:238px; + width:123px; + height:16px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + color:#009900; +} +#u323_img { + position:absolute; + left:0px; + top:0px; + width:123px; + height:16px; +} +#u324 { + position:absolute; + left:0px; + top:0px; + width:123px; + white-space:nowrap; +} +#u325 { + position:absolute; + left:10px; + top:270px; + width:300px; + height:60px; +} +#u325_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u326 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u327 { + position:absolute; + left:20px; + top:277px; + width:67px; + height:30px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; + font-size:22px; +} +#u327_img { + position:absolute; + left:0px; + top:0px; + width:67px; + height:30px; +} +#u328 { + position:absolute; + left:0px; + top:0px; + width:67px; + white-space:nowrap; +} +#u329 { + position:absolute; + left:20px; + top:307px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u329_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u330 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u331 { + position:absolute; + left:170px; + top:277px; + width:130px; + height:16px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + color:#009900; +} +#u331_img { + position:absolute; + left:0px; + top:0px; + width:130px; + height:16px; +} +#u332 { + position:absolute; + left:0px; + top:0px; + width:130px; + white-space:nowrap; +} +#u333 { + position:absolute; + left:170px; + top:308px; + width:123px; + height:16px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + color:#009900; +} +#u333_img { + position:absolute; + left:0px; + top:0px; + width:123px; + height:16px; +} +#u334 { + position:absolute; + left:0px; + top:0px; + width:123px; + white-space:nowrap; +} +#u335 { + position:absolute; + left:10px; + top:340px; + width:300px; + height:60px; +} +#u335_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u336 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u337 { + position:absolute; + left:20px; + top:347px; + width:67px; + height:30px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; + font-size:22px; +} +#u337_img { + position:absolute; + left:0px; + top:0px; + width:67px; + height:30px; +} +#u338 { + position:absolute; + left:0px; + top:0px; + width:67px; + white-space:nowrap; +} +#u339 { + position:absolute; + left:20px; + top:377px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u339_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u340 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u341 { + position:absolute; + left:170px; + top:347px; + width:130px; + height:16px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + color:#009900; +} +#u341_img { + position:absolute; + left:0px; + top:0px; + width:130px; + height:16px; +} +#u342 { + position:absolute; + left:0px; + top:0px; + width:130px; + white-space:nowrap; +} +#u343 { + position:absolute; + left:170px; + top:378px; + width:123px; + height:16px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + color:#009900; +} +#u343_img { + position:absolute; + left:0px; + top:0px; + width:123px; + height:16px; +} +#u344 { + position:absolute; + left:0px; + top:0px; + width:123px; + white-space:nowrap; +} +#u345 { + position:absolute; + left:10px; + top:410px; + width:300px; + height:60px; +} +#u345_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u346 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u347 { + position:absolute; + left:20px; + top:417px; + width:67px; + height:30px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; + font-size:22px; +} +#u347_img { + position:absolute; + left:0px; + top:0px; + width:67px; + height:30px; +} +#u348 { + position:absolute; + left:0px; + top:0px; + width:67px; + white-space:nowrap; +} +#u349 { + position:absolute; + left:20px; + top:447px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u349_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u350 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u351 { + position:absolute; + left:170px; + top:417px; + width:130px; + height:16px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + color:#009900; +} +#u351_img { + position:absolute; + left:0px; + top:0px; + width:130px; + height:16px; +} +#u352 { + position:absolute; + left:0px; + top:0px; + width:130px; + white-space:nowrap; +} +#u353 { + position:absolute; + left:170px; + top:448px; + width:123px; + height:16px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + color:#009900; +} +#u353_img { + position:absolute; + left:0px; + top:0px; + width:123px; + height:16px; +} +#u354 { + position:absolute; + left:0px; + top:0px; + width:123px; + white-space:nowrap; +} +#u355 { + position:absolute; + left:10px; + top:480px; + width:300px; + height:60px; +} +#u355_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u356 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u357 { + position:absolute; + left:20px; + top:487px; + width:67px; + height:30px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; + font-size:22px; +} +#u357_img { + position:absolute; + left:0px; + top:0px; + width:67px; + height:30px; +} +#u358 { + position:absolute; + left:0px; + top:0px; + width:67px; + white-space:nowrap; +} +#u359 { + position:absolute; + left:20px; + top:517px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u359_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u360 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u361 { + position:absolute; + left:170px; + top:487px; + width:130px; + height:16px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + color:#009900; +} +#u361_img { + position:absolute; + left:0px; + top:0px; + width:130px; + height:16px; +} +#u362 { + position:absolute; + left:0px; + top:0px; + width:130px; + white-space:nowrap; +} +#u363 { + position:absolute; + left:170px; + top:518px; + width:123px; + height:16px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + color:#009900; +} +#u363_img { + position:absolute; + left:0px; + top:0px; + width:123px; + height:16px; +} +#u364 { + position:absolute; + left:0px; + top:0px; + width:123px; + white-space:nowrap; +} +#u365 { + position:absolute; + left:10px; + top:130px; + width:257px; + height:60px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u365_img { + position:absolute; + left:0px; + top:0px; + width:257px; + height:60px; +} +#u366 { + position:absolute; + left:0px; + top:0px; + width:257px; + white-space:nowrap; +} +#u367 { + position:absolute; + left:10px; + top:200px; + width:300px; + height:60px; + overflow:hidden; + background-image:url('../../resources/images/transparent.gif'); +} diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\345\256\241\346\211\271\351\241\265\351\235\242/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\345\256\241\346\211\271\351\241\265\351\235\242/data.js" new file mode 100644 index 0000000..f6d876b --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\345\256\241\346\211\271\351\241\265\351\235\242/data.js" @@ -0,0 +1,3197 @@ +$axure.loadCurrentPage({ + "url":"审批页面.html", + "generationDate":new Date(1416993073515.63), + "isCanvasEnabled":false, + "variables":["OnLoadVariable"], + "page":{ + "packageId":"00be1c1e43554e04ab0e2c4956a88a5a", + "type":"Axure:Page", + "name":"审批页面", + "notes":{ +}, + "style":{ + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "pageAlignment":"near", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "image":null, + "imageHorizontalAlignment":"near", + "imageVerticalAlignment":"near", + "imageRepeat":"auto", + "favicon":null, + "sketchFactor":"0", + "colorStyle":"appliedColor", + "fontName":"应用字体", + "borderWidth":"0"}, + "adaptiveStyles":{ +}, + "interactionMap":{ +}, + "diagram":{ + "objects":[{ + "id":"a77074e2850246d88dc1453b4fdd218e", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":116}, + "size":{ + "width":8, + "height":36}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c0bf7b0196b141899fb3b2850689db59", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":116}, + "size":{ + "width":8, + "height":36}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u0.png"}}, +{ + "id":"6f151afe59f447178437dedd0fdd6e45", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":192}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a3c5a43392994c55a874abb4751b7b8d", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":192}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u2.png"}}, +{ + "id":"9a083dcb403441a8a0b74560ad3147e4", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":255}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"5ad17b4834124345874aa3d9520fd529", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":255}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u2.png"}}, +{ + "id":"9f888c43705f4d429fe212660563c6b8", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":259, + "y":0}, + "size":{ + "width":60, + "height":10}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"b1abdf3ea7fd4c209fdd6d8e5f23f098", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":259, + "y":0}, + "size":{ + "width":60, + "height":10}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u6.png"}}, +{ + "id":"825f1d538faf4b589b849e851a2310c5", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":6, + "y":6}, + "size":{ + "width":372, + "height":796}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"52"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"24389ae60a41457ab0451531761aab28", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":6, + "y":6}, + "size":{ + "width":372, + "height":796}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"52"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u8.png"}}, +{ + "id":"d9acf23ec2614eb88f35d54cb5282538", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":32, + "y":120}, + "size":{ + "width":320, + "height":568}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"25e507bfe7ca4a878f8b5b7d4d6e6282", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":32, + "y":120}, + "size":{ + "width":320, + "height":568}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u10.png"}}, +{ + "id":"5c58c3ef1393447ca1df955e2511ca00", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":157, + "y":66}, + "size":{ + "width":70, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"6af10c340d164befb8bce879d26cd416", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":157, + "y":66}, + "size":{ + "width":70, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u12.png"}}, +{ + "id":"e302185212de41e79c1c1613c63b51ca", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":185, + "y":40}, + "size":{ + "width":14, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"653b2ae8182d4c8c9943d7e98ecbc49e", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":185, + "y":40}, + "size":{ + "width":14, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u14.png"}}, +{ + "id":"b378346f08e544fbb1d87077d602636e", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":156, + "y":704}, + "size":{ + "width":72, + "height":72}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a215dc122cb04a028c5d7b377696dfcc", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":156, + "y":704}, + "size":{ + "width":72, + "height":72}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u16.png"}}, +{ + "id":"e8a3681bcadf4915a5e34d840064ac97", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":500, + "y":860}, + "size":{ + "width":50, + "height":50}, + "borderFill":{ + "fillType":"solid", + "color":0xFFFFFFFF}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ed9fe7756ae84c07b289124e8a664bc9", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":500, + "y":860}, + "size":{ + "width":50, + "height":50}, + "borderFill":{ + "fillType":"solid", + "color":0xFFFFFFFF}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u18.png"}}, +{ + "id":"38d7237eff23421d9a66115c9475dc2d", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":33, + "y":140}, + "size":{ + "width":318, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"fb99e6a058ee42de966c40cc22964804", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":33, + "y":140}, + "size":{ + "width":318, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/支付/u20.png"}}, +{ + "id":"bc21eaf38d5e4c00a5b81dcf32ed457a", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "location":{ + "x":40, + "y":159}, + "size":{ + "width":22, + "height":22}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ae93a5239cc8443e9cbd9b8216fd9965", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":40, + "y":159}, + "size":{ + "width":22, + "height":22}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 发工资", + "target":{ + "targetType":"page", + "url":"发工资.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true, + "images":{ + "normal~":"images/我要发工资_-_引导页_-_首次进入/u20.png"}}, +{ + "id":"ff467e1da6df4435b113c4a123c57501", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontSize":"20px", + "fontWeight":"700", + "location":{ + "x":152, + "y":157}, + "size":{ + "width":81, + "height":24}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"b0476b1087b44900a648ebf6e0e490c8", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontSize":"20px", + "fontWeight":"700", + "location":{ + "x":152, + "y":157}, + "size":{ + "width":81, + "height":24}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"5dd809039a7a4d34a1e79fa1e6a98a84", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":42, + "y":275}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"cc130be2061642869e4f21fbc53115ab", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":42, + "y":275}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"0a420830e9844a1081f71e4e02b67bbd", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":50, + "y":275}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"e4b72e244e594695b6a105094c141c6c", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":50, + "y":275}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"bcec2c4b97c24b7ab72c9d1e8aeac194", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":275, + "y":275}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"acc16abd995b4c7891d26c69c955580b", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":275, + "y":275}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"a5a56db1298d4abd92f10b947f1e4226", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":50, + "y":316}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"89ea993b5c0c4fb8a9debb45cfdddece", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":50, + "y":316}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"6f329ceae4ab4890a4652fa04537dd0f", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":249, + "y":316}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"2e4299b181f64d6cabb4e97070e180c8", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":249, + "y":316}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"43aae4962b1c48a78f49d29c3ab9030b", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":299, + "y":296}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"f2912b08fc394c55826be4df6af5cc10", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":299, + "y":296}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"a3493b130bf74b33b51cc6364448e0b2", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":68, + "y":204}, + "size":{ + "width":247, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"243469d3f8f045df8ad4433c8e545e49", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":68, + "y":204}, + "size":{ + "width":247, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"ef940206de0c4477b693a33afb5c6c64", + "label":"", + "type":"horizontalLine", + "styleType":"horizontalLine", + "visible":true, + "style":{ + "location":{ + "x":42, + "y":259}, + "size":{ + "width":300, + "height":10}, + "borderFill":{ + "fillType":"solid", + "color":0xFFCCCCCC}}, + "adaptiveStyles":{ +}, + "images":{ + "start~":"resources/images/transparent.gif", + "end~":"resources/images/transparent.gif", + "line~":"images/支付/u28_line.png"}}, +{ + "id":"2d166ab2defb44d99acc0a688cf8acc5", + "label":"", + "type":"button", + "styleType":"button", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "fontSize":"20px", + "location":{ + "x":40, + "y":640}, + "size":{ + "width":120, + "height":40}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 支付", + "target":{ + "targetType":"page", + "url":"支付.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true}, +{ + "id":"8cecef90d4724e96ae963679d5d6c985", + "label":"", + "type":"button", + "styleType":"button", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "fontSize":"20px", + "location":{ + "x":222, + "y":640}, + "size":{ + "width":120, + "height":40}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 发工资", + "target":{ + "targetType":"page", + "url":"发工资.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true}, +{ + "id":"d8551ec28e6145ad9f5ff1290963458d", + "label":"", + "type":"imageMapRegion", + "styleType":"imageMapRegion", + "visible":true, + "style":{ + "location":{ + "x":42, + "y":275}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 我用发工资 - 调用历史记录 - 编辑", + "target":{ + "targetType":"page", + "url":"我用发工资_-_调用历史记录_-_编辑.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true}, +{ + "id":"15e30f52c6724f5d92513aecb975d892", + "label":"待提交工资表", + "type":"dynamicPanel", + "styleType":"dynamicPanel", + "visible":true, + "style":{ + "location":{ + "x":42, + "y":335}, + "size":{ + "width":300, + "height":305}}, + "adaptiveStyles":{ +}, + "scrollbars":"none", + "fitToContent":false, + "propagate":false, + "diagrams":[{ + "id":"bc42ca7b8b634efc83999e089671bffe", + "label":"准备状态", + "type":"Axure:PanelDiagram", + "objects":[{ + "id":"c90ae8e315b1440e9acd8ee97789eaee", + "label":"", + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"84d1fde42a4d49e5a86b07d2e2d5af81", + "label":"", + "isContained":true, + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"062d486d80294cdcb07fa433eb5b8c34", + "label":"", + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":0}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"1f849f4b6ff6401b9cf1a47fbc2bddf4", + "label":"", + "isContained":true, + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":0}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"1c899ce5161d42fc80e34bc297811c15", + "label":"", + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":41}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"1f448ff75f604a35a35f54d0f175b07a", + "label":"", + "isContained":true, + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":41}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"9e7e1cea16ae4de19ad8a2c7a785412a", + "label":"", + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":207, + "y":41}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"89d6f0b9c00842c7906738584fede5ba", + "label":"", + "isContained":true, + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":207, + "y":41}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"ee25e6558dc441218e01e387f4701c4b", + "label":"", + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":257, + "y":21}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"e32f139b2d1b415494d56e10dd55c502", + "label":"", + "isContained":true, + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":257, + "y":21}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"5483f8035868435eaf118d37b58288d1", + "label":"", + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":60}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"05cb45b00e92479a9df99dd683218e4c", + "label":"", + "isContained":true, + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":60}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"775ea7af1bda492d9da7803df54d6045", + "label":"", + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":60}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"e245519fe4324c988e7f80030f4ee4f9", + "label":"", + "isContained":true, + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":60}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"3d985d58aada40e39de4700ad095cacd", + "label":"", + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":233, + "y":60}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c1c6951491964f3ea6bcd153959c0e72", + "label":"", + "isContained":true, + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":233, + "y":60}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"9a7c7d1c91014dee8d87f0e8af826497", + "label":"", + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":101}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"836c89598f94437fb4057c7f56155395", + "label":"", + "isContained":true, + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":101}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"9930b743e71247399d8d500934a6c1b9", + "label":"", + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":207, + "y":101}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"7a394c697f2c4080a2234f9ed827a597", + "label":"", + "isContained":true, + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":207, + "y":101}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"caeff2097bdf4b77a864ce3c2dba08ef", + "label":"", + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":257, + "y":81}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a0c9c0896db9494183a5ddcdd16f09c1", + "label":"", + "isContained":true, + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":257, + "y":81}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"c2c5961ec6e44c759dc3e995e901731c", + "label":"", + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":120}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"4267569d170b44edb3aa16b5f005f8ea", + "label":"", + "isContained":true, + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":120}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"0253e62d8db44e30ae67b52e7c148f3b", + "label":"", + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":120}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"99412ebcd4a04f8da77eb5f830b371be", + "label":"", + "isContained":true, + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":120}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"179f9f7a3d864122b29cb1f971d7def1", + "label":"", + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":161}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ab6c8052146d49f19124b4174c246d58", + "label":"", + "isContained":true, + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":161}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"80dda7531a0c4bf38cbb0f0f45e6fc03", + "label":"", + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":207, + "y":161}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"8d28617c466544d5a7cb9407624453ef", + "label":"", + "isContained":true, + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":207, + "y":161}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"fcc55c82317e458d997da1c248298245", + "label":"", + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":257, + "y":141}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"9e9eba2370e14c34828dba1cba24c270", + "label":"", + "isContained":true, + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":257, + "y":141}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"04d23444ce4849b3a3bf8f88d154292c", + "label":"", + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":180}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"4f2258c1120d4e0aa864ab42aa55fffc", + "label":"", + "isContained":true, + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":180}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"7911e1652a1a4c7a9cbf343d31ed4394", + "label":"", + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":180}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"0a044840302b4de2b5cff207502a7109", + "label":"", + "isContained":true, + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":180}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"15385acc0003488d9a8ea81f401b42fb", + "label":"", + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":221}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"1f6e553cc5bc434182369299812853e7", + "label":"", + "isContained":true, + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":221}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"8b0febab0b7744d4a1b2093352da97b0", + "label":"", + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":207, + "y":221}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"f5cb772aaa2540dabd871a63bf9c40e5", + "label":"", + "isContained":true, + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":207, + "y":221}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"c3b3024b8efa4b8388a5db84f5e34311", + "label":"", + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":257, + "y":201}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"0e8566af99794c6e9a40f7531d4f2445", + "label":"", + "isContained":true, + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":257, + "y":201}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"f5f0f914cc9d43179857abaf247eabb8", + "label":"", + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":229, + "y":182}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"cadfd36f19c4446588b8db083b287da4", + "label":"", + "isContained":true, + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":229, + "y":182}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"77768b98e9c64a6ab26721a05d36dba3", + "label":"", + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":240}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"444e6c4c037b433691ae478c5f8fd8fb", + "label":"", + "isContained":true, + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":240}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"631eaf5c450d4d78b953713bac7686e6", + "label":"", + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "location":{ + "x":243, + "y":248}, + "size":{ + "width":45, + "height":45}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d74a65a3446f40c7900146e3fa1913f0", + "label":"", + "isContained":true, + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":243, + "y":248}, + "size":{ + "width":45, + "height":45}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"setPanelState", + "description":"设置 待提交工资表 to 新增一条状态 向上滑动 in 500ms", + "panelsToStates":[{ + "panelPath":["15e30f52c6724f5d92513aecb975d892"], + "stateInfo":{ + "setStateType":"diagram", + "stateNumber":2, + "stateValue":{ + "exprType":"stringLiteral", + "value":"1", + "stos":[]}, + "loop":false, + "showWhenSet":false, + "options":{ + "animateIn":{ + "easing":"slideUp", + "duration":500}, + "compress":false}}}]}]}]}}, + "tabbable":true, + "images":{ + "normal~":"images/支付/u78.png"}}, +{ + "id":"6a068e6095774d36939c0544f76db87a", + "label":"", + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":229, + "y":122}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a7e97f36fc9745348115918ecf60193a", + "label":"", + "isContained":true, + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":229, + "y":122}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"2185d2b0e40b4184acc54dbc7b17dd5f", + "label":"", + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":233, + "y":0}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"21c85e1ba12d4bbcab4ba8e5bff9e7cf", + "label":"", + "isContained":true, + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":233, + "y":0}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}]}, +{ + "id":"519f9463bce74641ba4da428b983c4b6", + "label":"新增一条状态", + "type":"Axure:PanelDiagram", + "objects":[{ + "id":"28791d8de846423d9463af3d903a0851", + "label":"", + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":11, + "y":99}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"9b8c2a744b82423ea7e41d58ed3966dd", + "label":"", + "isContained":true, + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":11, + "y":99}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"f721c7d5d5de41bbaa7de4f634fa689e", + "label":"", + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"textBox", + "styleType":"textBox", + "visible":true, + "style":{ + "location":{ + "x":95, + "y":96}, + "size":{ + "width":200, + "height":25}}, + "adaptiveStyles":{ +}}, +{ + "id":"63f7374f912147b79f7a1fa3c4aa21b5", + "label":"", + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":11, + "y":134}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"abc9142ed19b4ce4b4cbe63d0fae3610", + "label":"", + "isContained":true, + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":11, + "y":134}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"4600880a4e0a452aa2010aa4239de79e", + "label":"", + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"textBox", + "styleType":"textBox", + "visible":true, + "style":{ + "location":{ + "x":95, + "y":131}, + "size":{ + "width":200, + "height":25}}, + "adaptiveStyles":{ +}}, +{ + "id":"b91a529c020a4d54896e187774f0c0aa", + "label":"", + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"button", + "styleType":"button", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"18px", + "fontWeight":"700", + "location":{ + "x":11, + "y":202}, + "size":{ + "width":132, + "height":30}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"setPanelState", + "description":"设置 待提交工资表 to 新增二条状态 向上滑动 in 500ms", + "panelsToStates":[{ + "panelPath":["15e30f52c6724f5d92513aecb975d892"], + "stateInfo":{ + "setStateType":"diagram", + "stateNumber":3, + "stateValue":{ + "exprType":"stringLiteral", + "value":"1", + "stos":[]}, + "loop":false, + "showWhenSet":false, + "options":{ + "animateIn":{ + "easing":"slideUp", + "duration":500}, + "compress":false}}}]}]}]}}, + "tabbable":true}, +{ + "id":"6b146b9e626042988e73c82617923ea1", + "label":"", + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":11, + "y":67}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"88918300dbfe4fbcacad93ed9f02abf6", + "label":"", + "isContained":true, + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":11, + "y":67}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"51b42687a03748f694fbf57707c354ed", + "label":"", + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"textBox", + "styleType":"textBox", + "visible":true, + "style":{ + "location":{ + "x":95, + "y":64}, + "size":{ + "width":200, + "height":25}}, + "adaptiveStyles":{ +}}, +{ + "id":"4a53d986f7524afe92aea427b09113e4", + "label":"", + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":11, + "y":169}, + "size":{ + "width":72, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"b932ff3ae8f94729a1ed317d9a25d8f4", + "label":"", + "isContained":true, + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":11, + "y":169}, + "size":{ + "width":72, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"dbc7929c98dd431abe5254406c291df3", + "label":"", + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"comboBox", + "styleType":"comboBox", + "visible":true, + "style":{ + "location":{ + "x":95, + "y":164}, + "size":{ + "width":200, + "height":27}}, + "adaptiveStyles":{ +}}, +{ + "id":"d6f0e8c867e1433c9701e547e0a1b9af", + "label":"", + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":11, + "y":15}, + "size":{ + "width":79, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"1b6c7a81718440318a049d0fd4727eda", + "label":"", + "isContained":true, + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":11, + "y":15}, + "size":{ + "width":79, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"515eed53b3ef45908d47185bb6bb3935", + "label":"", + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":9, + "y":39}, + "size":{ + "width":53, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"318ebb49ccf243a38f547161fb4da6eb", + "label":"", + "isContained":true, + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":9, + "y":39}, + "size":{ + "width":53, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"0bfa2e5bdbf04a37a667b0aa17ae847d", + "label":"", + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":119, + "y":15}, + "size":{ + "width":28, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"9c72b0c1803741319c8f21bd0c7a334e", + "label":"", + "isContained":true, + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":119, + "y":15}, + "size":{ + "width":28, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"ed25a0cf4e33480a962346ee96f1a573", + "label":"", + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"button", + "styleType":"button", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"18px", + "fontWeight":"700", + "location":{ + "x":163, + "y":202}, + "size":{ + "width":132, + "height":30}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"setPanelState", + "description":"设置 待提交工资表 to 准备状态 向下滑动 in 500ms", + "panelsToStates":[{ + "panelPath":["15e30f52c6724f5d92513aecb975d892"], + "stateInfo":{ + "setStateType":"diagram", + "stateNumber":1, + "stateValue":{ + "exprType":"stringLiteral", + "value":"1", + "stos":[]}, + "loop":false, + "showWhenSet":false, + "options":{ + "animateIn":{ + "easing":"slideDown", + "duration":500}, + "compress":false}}}]}]}]}}, + "tabbable":true}, +{ + "id":"48b25b433323449da5940acf7a5e0fef", + "label":"", + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":119, + "y":38}, + "size":{ + "width":92, + "height":21}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"223f7b351e674991bf9a721dc61c9395", + "label":"", + "isContained":true, + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":119, + "y":38}, + "size":{ + "width":92, + "height":21}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}]}, +{ + "id":"93fdf832d87e4dd1811bfa99fbaf9dc9", + "label":"新增二条状态", + "type":"Axure:PanelDiagram", + "objects":[{ + "id":"fa5589d562ca453f9f1dc23228da1f13", + "label":"", + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":11, + "y":99}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"9df060124ea0447bb9a1d93dc8a32d20", + "label":"", + "isContained":true, + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":11, + "y":99}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"766dab5aa32c4c6eb6adef5029c99178", + "label":"", + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"textBox", + "styleType":"textBox", + "visible":true, + "style":{ + "location":{ + "x":95, + "y":96}, + "size":{ + "width":200, + "height":25}}, + "adaptiveStyles":{ +}}, +{ + "id":"dde4951a699f4eb7b20325e10cee73cc", + "label":"", + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":11, + "y":134}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"6d790541d7de4e3db61c31d2c75510a1", + "label":"", + "isContained":true, + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":11, + "y":134}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"105f1d44e4e14d2499a07c188201adb3", + "label":"", + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"textBox", + "styleType":"textBox", + "visible":true, + "style":{ + "location":{ + "x":95, + "y":131}, + "size":{ + "width":200, + "height":25}}, + "adaptiveStyles":{ +}}, +{ + "id":"dcc883b5ff654818a98bcc7387ec53b8", + "label":"", + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"button", + "styleType":"button", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"18px", + "fontWeight":"700", + "location":{ + "x":11, + "y":202}, + "size":{ + "width":132, + "height":30}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"setPanelState", + "description":"设置 待提交工资表 to 新增一条状态 向上滑动 in 500ms", + "panelsToStates":[{ + "panelPath":["15e30f52c6724f5d92513aecb975d892"], + "stateInfo":{ + "setStateType":"diagram", + "stateNumber":2, + "stateValue":{ + "exprType":"stringLiteral", + "value":"1", + "stos":[]}, + "loop":false, + "showWhenSet":false, + "options":{ + "animateIn":{ + "easing":"slideUp", + "duration":500}, + "compress":false}}}]}]}]}}, + "tabbable":true}, +{ + "id":"adf026d3096c4840bf5c666af42d88fb", + "label":"", + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":11, + "y":67}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"6b03d3be18aa4e368b7f8806b7e8e5f6", + "label":"", + "isContained":true, + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":11, + "y":67}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"ba1bd02d5422482caed781a7d5997dda", + "label":"", + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"textBox", + "styleType":"textBox", + "visible":true, + "style":{ + "location":{ + "x":95, + "y":64}, + "size":{ + "width":200, + "height":25}}, + "adaptiveStyles":{ +}}, +{ + "id":"0b01e39250a84e00bf1a46bff09c3684", + "label":"", + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":11, + "y":169}, + "size":{ + "width":72, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"70748f814739447abdd6b1fd7a16e7fc", + "label":"", + "isContained":true, + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":11, + "y":169}, + "size":{ + "width":72, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"9bebe787a4f5437791de8a1c91da0c9b", + "label":"", + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"comboBox", + "styleType":"comboBox", + "visible":true, + "style":{ + "location":{ + "x":95, + "y":164}, + "size":{ + "width":200, + "height":27}}, + "adaptiveStyles":{ +}}, +{ + "id":"e87e9543f0d44bf2a798998678834173", + "label":"", + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":11, + "y":15}, + "size":{ + "width":79, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"0b579fc4f2d5458db4d47299a1d85104", + "label":"", + "isContained":true, + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":11, + "y":15}, + "size":{ + "width":79, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"1ded7d7690e040218f170b19d9a8a497", + "label":"", + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":9, + "y":39}, + "size":{ + "width":53, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"13af1f7d85e44a8a90591d36119c6e35", + "label":"", + "isContained":true, + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":9, + "y":39}, + "size":{ + "width":53, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"eb0bc287f0824e93a341888742a4483d", + "label":"", + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":119, + "y":15}, + "size":{ + "width":28, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"4c264968900d44f4baef5e3b5a6a2564", + "label":"", + "isContained":true, + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":119, + "y":15}, + "size":{ + "width":28, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"81a30c6cf9054ea09c8b69d25f72aa1f", + "label":"", + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"button", + "styleType":"button", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"18px", + "fontWeight":"700", + "location":{ + "x":163, + "y":202}, + "size":{ + "width":132, + "height":30}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"setPanelState", + "description":"设置 待提交工资表 to 准备状态 向下滑动 in 500ms", + "panelsToStates":[{ + "panelPath":["15e30f52c6724f5d92513aecb975d892"], + "stateInfo":{ + "setStateType":"diagram", + "stateNumber":1, + "stateValue":{ + "exprType":"stringLiteral", + "value":"1", + "stos":[]}, + "loop":false, + "showWhenSet":false, + "options":{ + "animateIn":{ + "easing":"slideDown", + "duration":500}, + "compress":false}}}]}]}]}}, + "tabbable":true}, +{ + "id":"8f78fef7f0ce4fd694c743f09e932b49", + "label":"", + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":119, + "y":38}, + "size":{ + "width":92, + "height":21}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c6cf118b91894bc9abc6d7c6af954c05", + "label":"", + "isContained":true, + "parentDynamicPanel":"15e30f52c6724f5d92513aecb975d892", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":119, + "y":38}, + "size":{ + "width":92, + "height":21}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}]}]}]}}, + "masters":{ +}, + "objectPaths":{ + "a77074e2850246d88dc1453b4fdd218e":{ + "scriptId":"u0"}, + "c0bf7b0196b141899fb3b2850689db59":{ + "scriptId":"u1"}, + "6f151afe59f447178437dedd0fdd6e45":{ + "scriptId":"u2"}, + "a3c5a43392994c55a874abb4751b7b8d":{ + "scriptId":"u3"}, + "9a083dcb403441a8a0b74560ad3147e4":{ + "scriptId":"u4"}, + "5ad17b4834124345874aa3d9520fd529":{ + "scriptId":"u5"}, + "9f888c43705f4d429fe212660563c6b8":{ + "scriptId":"u6"}, + "b1abdf3ea7fd4c209fdd6d8e5f23f098":{ + "scriptId":"u7"}, + "825f1d538faf4b589b849e851a2310c5":{ + "scriptId":"u8"}, + "24389ae60a41457ab0451531761aab28":{ + "scriptId":"u9"}, + "d9acf23ec2614eb88f35d54cb5282538":{ + "scriptId":"u10"}, + "25e507bfe7ca4a878f8b5b7d4d6e6282":{ + "scriptId":"u11"}, + "5c58c3ef1393447ca1df955e2511ca00":{ + "scriptId":"u12"}, + "6af10c340d164befb8bce879d26cd416":{ + "scriptId":"u13"}, + "e302185212de41e79c1c1613c63b51ca":{ + "scriptId":"u14"}, + "653b2ae8182d4c8c9943d7e98ecbc49e":{ + "scriptId":"u15"}, + "b378346f08e544fbb1d87077d602636e":{ + "scriptId":"u16"}, + "a215dc122cb04a028c5d7b377696dfcc":{ + "scriptId":"u17"}, + "e8a3681bcadf4915a5e34d840064ac97":{ + "scriptId":"u18"}, + "ed9fe7756ae84c07b289124e8a664bc9":{ + "scriptId":"u19"}, + "38d7237eff23421d9a66115c9475dc2d":{ + "scriptId":"u20"}, + "fb99e6a058ee42de966c40cc22964804":{ + "scriptId":"u21"}, + "bc21eaf38d5e4c00a5b81dcf32ed457a":{ + "scriptId":"u22"}, + "ae93a5239cc8443e9cbd9b8216fd9965":{ + "scriptId":"u23"}, + "ff467e1da6df4435b113c4a123c57501":{ + "scriptId":"u24"}, + "b0476b1087b44900a648ebf6e0e490c8":{ + "scriptId":"u25"}, + "5dd809039a7a4d34a1e79fa1e6a98a84":{ + "scriptId":"u26"}, + "cc130be2061642869e4f21fbc53115ab":{ + "scriptId":"u27"}, + "0a420830e9844a1081f71e4e02b67bbd":{ + "scriptId":"u28"}, + "e4b72e244e594695b6a105094c141c6c":{ + "scriptId":"u29"}, + "bcec2c4b97c24b7ab72c9d1e8aeac194":{ + "scriptId":"u30"}, + "acc16abd995b4c7891d26c69c955580b":{ + "scriptId":"u31"}, + "a5a56db1298d4abd92f10b947f1e4226":{ + "scriptId":"u32"}, + "89ea993b5c0c4fb8a9debb45cfdddece":{ + "scriptId":"u33"}, + "6f329ceae4ab4890a4652fa04537dd0f":{ + "scriptId":"u34"}, + "2e4299b181f64d6cabb4e97070e180c8":{ + "scriptId":"u35"}, + "43aae4962b1c48a78f49d29c3ab9030b":{ + "scriptId":"u36"}, + "f2912b08fc394c55826be4df6af5cc10":{ + "scriptId":"u37"}, + "a3493b130bf74b33b51cc6364448e0b2":{ + "scriptId":"u38"}, + "243469d3f8f045df8ad4433c8e545e49":{ + "scriptId":"u39"}, + "ef940206de0c4477b693a33afb5c6c64":{ + "scriptId":"u40"}, + "2d166ab2defb44d99acc0a688cf8acc5":{ + "scriptId":"u41"}, + "8cecef90d4724e96ae963679d5d6c985":{ + "scriptId":"u42"}, + "d8551ec28e6145ad9f5ff1290963458d":{ + "scriptId":"u43"}, + "15e30f52c6724f5d92513aecb975d892":{ + "scriptId":"u44"}, + "c90ae8e315b1440e9acd8ee97789eaee":{ + "scriptId":"u45"}, + "84d1fde42a4d49e5a86b07d2e2d5af81":{ + "scriptId":"u46"}, + "062d486d80294cdcb07fa433eb5b8c34":{ + "scriptId":"u47"}, + "1f849f4b6ff6401b9cf1a47fbc2bddf4":{ + "scriptId":"u48"}, + "1c899ce5161d42fc80e34bc297811c15":{ + "scriptId":"u49"}, + "1f448ff75f604a35a35f54d0f175b07a":{ + "scriptId":"u50"}, + "9e7e1cea16ae4de19ad8a2c7a785412a":{ + "scriptId":"u51"}, + "89d6f0b9c00842c7906738584fede5ba":{ + "scriptId":"u52"}, + "ee25e6558dc441218e01e387f4701c4b":{ + "scriptId":"u53"}, + "e32f139b2d1b415494d56e10dd55c502":{ + "scriptId":"u54"}, + "5483f8035868435eaf118d37b58288d1":{ + "scriptId":"u55"}, + "05cb45b00e92479a9df99dd683218e4c":{ + "scriptId":"u56"}, + "775ea7af1bda492d9da7803df54d6045":{ + "scriptId":"u57"}, + "e245519fe4324c988e7f80030f4ee4f9":{ + "scriptId":"u58"}, + "3d985d58aada40e39de4700ad095cacd":{ + "scriptId":"u59"}, + "c1c6951491964f3ea6bcd153959c0e72":{ + "scriptId":"u60"}, + "9a7c7d1c91014dee8d87f0e8af826497":{ + "scriptId":"u61"}, + "836c89598f94437fb4057c7f56155395":{ + "scriptId":"u62"}, + "9930b743e71247399d8d500934a6c1b9":{ + "scriptId":"u63"}, + "7a394c697f2c4080a2234f9ed827a597":{ + "scriptId":"u64"}, + "caeff2097bdf4b77a864ce3c2dba08ef":{ + "scriptId":"u65"}, + "a0c9c0896db9494183a5ddcdd16f09c1":{ + "scriptId":"u66"}, + "c2c5961ec6e44c759dc3e995e901731c":{ + "scriptId":"u67"}, + "4267569d170b44edb3aa16b5f005f8ea":{ + "scriptId":"u68"}, + "0253e62d8db44e30ae67b52e7c148f3b":{ + "scriptId":"u69"}, + "99412ebcd4a04f8da77eb5f830b371be":{ + "scriptId":"u70"}, + "179f9f7a3d864122b29cb1f971d7def1":{ + "scriptId":"u71"}, + "ab6c8052146d49f19124b4174c246d58":{ + "scriptId":"u72"}, + "80dda7531a0c4bf38cbb0f0f45e6fc03":{ + "scriptId":"u73"}, + "8d28617c466544d5a7cb9407624453ef":{ + "scriptId":"u74"}, + "fcc55c82317e458d997da1c248298245":{ + "scriptId":"u75"}, + "9e9eba2370e14c34828dba1cba24c270":{ + "scriptId":"u76"}, + "04d23444ce4849b3a3bf8f88d154292c":{ + "scriptId":"u77"}, + "4f2258c1120d4e0aa864ab42aa55fffc":{ + "scriptId":"u78"}, + "7911e1652a1a4c7a9cbf343d31ed4394":{ + "scriptId":"u79"}, + "0a044840302b4de2b5cff207502a7109":{ + "scriptId":"u80"}, + "15385acc0003488d9a8ea81f401b42fb":{ + "scriptId":"u81"}, + "1f6e553cc5bc434182369299812853e7":{ + "scriptId":"u82"}, + "8b0febab0b7744d4a1b2093352da97b0":{ + "scriptId":"u83"}, + "f5cb772aaa2540dabd871a63bf9c40e5":{ + "scriptId":"u84"}, + "c3b3024b8efa4b8388a5db84f5e34311":{ + "scriptId":"u85"}, + "0e8566af99794c6e9a40f7531d4f2445":{ + "scriptId":"u86"}, + "f5f0f914cc9d43179857abaf247eabb8":{ + "scriptId":"u87"}, + "cadfd36f19c4446588b8db083b287da4":{ + "scriptId":"u88"}, + "77768b98e9c64a6ab26721a05d36dba3":{ + "scriptId":"u89"}, + "444e6c4c037b433691ae478c5f8fd8fb":{ + "scriptId":"u90"}, + "631eaf5c450d4d78b953713bac7686e6":{ + "scriptId":"u91"}, + "d74a65a3446f40c7900146e3fa1913f0":{ + "scriptId":"u92"}, + "6a068e6095774d36939c0544f76db87a":{ + "scriptId":"u93"}, + "a7e97f36fc9745348115918ecf60193a":{ + "scriptId":"u94"}, + "2185d2b0e40b4184acc54dbc7b17dd5f":{ + "scriptId":"u95"}, + "21c85e1ba12d4bbcab4ba8e5bff9e7cf":{ + "scriptId":"u96"}, + "28791d8de846423d9463af3d903a0851":{ + "scriptId":"u97"}, + "9b8c2a744b82423ea7e41d58ed3966dd":{ + "scriptId":"u98"}, + "f721c7d5d5de41bbaa7de4f634fa689e":{ + "scriptId":"u99"}, + "63f7374f912147b79f7a1fa3c4aa21b5":{ + "scriptId":"u100"}, + "abc9142ed19b4ce4b4cbe63d0fae3610":{ + "scriptId":"u101"}, + "4600880a4e0a452aa2010aa4239de79e":{ + "scriptId":"u102"}, + "b91a529c020a4d54896e187774f0c0aa":{ + "scriptId":"u103"}, + "6b146b9e626042988e73c82617923ea1":{ + "scriptId":"u104"}, + "88918300dbfe4fbcacad93ed9f02abf6":{ + "scriptId":"u105"}, + "51b42687a03748f694fbf57707c354ed":{ + "scriptId":"u106"}, + "4a53d986f7524afe92aea427b09113e4":{ + "scriptId":"u107"}, + "b932ff3ae8f94729a1ed317d9a25d8f4":{ + "scriptId":"u108"}, + "dbc7929c98dd431abe5254406c291df3":{ + "scriptId":"u109"}, + "d6f0e8c867e1433c9701e547e0a1b9af":{ + "scriptId":"u110"}, + "1b6c7a81718440318a049d0fd4727eda":{ + "scriptId":"u111"}, + "515eed53b3ef45908d47185bb6bb3935":{ + "scriptId":"u112"}, + "318ebb49ccf243a38f547161fb4da6eb":{ + "scriptId":"u113"}, + "0bfa2e5bdbf04a37a667b0aa17ae847d":{ + "scriptId":"u114"}, + "9c72b0c1803741319c8f21bd0c7a334e":{ + "scriptId":"u115"}, + "ed25a0cf4e33480a962346ee96f1a573":{ + "scriptId":"u116"}, + "48b25b433323449da5940acf7a5e0fef":{ + "scriptId":"u117"}, + "223f7b351e674991bf9a721dc61c9395":{ + "scriptId":"u118"}, + "fa5589d562ca453f9f1dc23228da1f13":{ + "scriptId":"u119"}, + "9df060124ea0447bb9a1d93dc8a32d20":{ + "scriptId":"u120"}, + "766dab5aa32c4c6eb6adef5029c99178":{ + "scriptId":"u121"}, + "dde4951a699f4eb7b20325e10cee73cc":{ + "scriptId":"u122"}, + "6d790541d7de4e3db61c31d2c75510a1":{ + "scriptId":"u123"}, + "105f1d44e4e14d2499a07c188201adb3":{ + "scriptId":"u124"}, + "dcc883b5ff654818a98bcc7387ec53b8":{ + "scriptId":"u125"}, + "adf026d3096c4840bf5c666af42d88fb":{ + "scriptId":"u126"}, + "6b03d3be18aa4e368b7f8806b7e8e5f6":{ + "scriptId":"u127"}, + "ba1bd02d5422482caed781a7d5997dda":{ + "scriptId":"u128"}, + "0b01e39250a84e00bf1a46bff09c3684":{ + "scriptId":"u129"}, + "70748f814739447abdd6b1fd7a16e7fc":{ + "scriptId":"u130"}, + "9bebe787a4f5437791de8a1c91da0c9b":{ + "scriptId":"u131"}, + "e87e9543f0d44bf2a798998678834173":{ + "scriptId":"u132"}, + "0b579fc4f2d5458db4d47299a1d85104":{ + "scriptId":"u133"}, + "1ded7d7690e040218f170b19d9a8a497":{ + "scriptId":"u134"}, + "13af1f7d85e44a8a90591d36119c6e35":{ + "scriptId":"u135"}, + "eb0bc287f0824e93a341888742a4483d":{ + "scriptId":"u136"}, + "4c264968900d44f4baef5e3b5a6a2564":{ + "scriptId":"u137"}, + "81a30c6cf9054ea09c8b69d25f72aa1f":{ + "scriptId":"u138"}, + "8f78fef7f0ce4fd694c743f09e932b49":{ + "scriptId":"u139"}, + "c6cf118b91894bc9abc6d7c6af954c05":{ + "scriptId":"u140"}}}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\345\256\241\346\211\271\351\241\265\351\235\242/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\345\256\241\346\211\271\351\241\265\351\235\242/styles.css" new file mode 100644 index 0000000..81d2a8c --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\345\256\241\346\211\271\351\241\265\351\235\242/styles.css" @@ -0,0 +1,1794 @@ +body { + margin:0px; + background-image:none; + position:static; + left:auto; + width:550px; + margin-left:0; + margin-right:0; + text-align:left; +} +#base { + position:absolute; + z-index:0; +} +#u0 { + position:absolute; + left:0px; + top:116px; + width:8px; + height:36px; +} +#u0_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:36px; +} +#u1 { + position:absolute; + left:2px; + top:10px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u2 { + position:absolute; + left:0px; + top:192px; + width:8px; + height:27px; +} +#u2_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:27px; +} +#u3 { + position:absolute; + left:2px; + top:6px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u4 { + position:absolute; + left:0px; + top:255px; + width:8px; + height:27px; +} +#u4_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:27px; +} +#u5 { + position:absolute; + left:2px; + top:6px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u6 { + position:absolute; + left:259px; + top:0px; + width:60px; + height:10px; +} +#u6_img { + position:absolute; + left:0px; + top:0px; + width:60px; + height:10px; +} +#u7 { + position:absolute; + left:2px; + top:-3px; + width:56px; + visibility:hidden; + word-wrap:break-word; +} +#u8 { + position:absolute; + left:6px; + top:6px; + width:372px; + height:796px; +} +#u8_img { + position:absolute; + left:0px; + top:0px; + width:372px; + height:796px; +} +#u9 { + position:absolute; + left:2px; + top:390px; + width:368px; + visibility:hidden; + word-wrap:break-word; +} +#u10 { + position:absolute; + left:32px; + top:120px; + width:320px; + height:568px; +} +#u10_img { + position:absolute; + left:0px; + top:0px; + width:320px; + height:568px; +} +#u11 { + position:absolute; + left:2px; + top:276px; + width:316px; + visibility:hidden; + word-wrap:break-word; +} +#u12 { + position:absolute; + left:157px; + top:66px; + width:70px; + height:14px; +} +#u12_img { + position:absolute; + left:0px; + top:0px; + width:70px; + height:14px; +} +#u13 { + position:absolute; + left:2px; + top:-1px; + width:66px; + visibility:hidden; + word-wrap:break-word; +} +#u14 { + position:absolute; + left:185px; + top:40px; + width:14px; + height:14px; +} +#u14_img { + position:absolute; + left:0px; + top:0px; + width:14px; + height:14px; +} +#u15 { + position:absolute; + left:2px; + top:-1px; + width:10px; + visibility:hidden; + word-wrap:break-word; +} +#u16 { + position:absolute; + left:156px; + top:704px; + width:72px; + height:72px; +} +#u16_img { + position:absolute; + left:0px; + top:0px; + width:72px; + height:72px; +} +#u17 { + position:absolute; + left:2px; + top:28px; + width:68px; + visibility:hidden; + word-wrap:break-word; +} +#u18 { + position:absolute; + left:500px; + top:860px; + width:50px; + height:50px; +} +#u18_img { + position:absolute; + left:0px; + top:0px; + width:50px; + height:50px; +} +#u19 { + position:absolute; + left:2px; + top:17px; + width:46px; + visibility:hidden; + word-wrap:break-word; +} +#u20 { + position:absolute; + left:33px; + top:140px; + width:318px; + height:60px; +} +#u20_img { + position:absolute; + left:0px; + top:0px; + width:318px; + height:60px; +} +#u21 { + position:absolute; + left:2px; + top:22px; + width:314px; + visibility:hidden; + word-wrap:break-word; +} +#u22 { + position:absolute; + left:40px; + top:159px; + width:22px; + height:22px; +} +#u22_img { + position:absolute; + left:0px; + top:0px; + width:22px; + height:22px; +} +#u23 { + position:absolute; + left:2px; + top:3px; + width:18px; + visibility:hidden; + word-wrap:break-word; +} +#u24 { + position:absolute; + left:152px; + top:157px; + width:81px; + height:24px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + font-size:20px; +} +#u24_img { + position:absolute; + left:0px; + top:0px; + width:81px; + height:24px; +} +#u25 { + position:absolute; + left:0px; + top:0px; + width:81px; + white-space:nowrap; +} +#u26 { + position:absolute; + left:42px; + top:275px; + width:300px; + height:60px; +} +#u26_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u27 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u28 { + position:absolute; + left:50px; + top:275px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u28_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u29 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u30 { + position:absolute; + left:275px; + top:275px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u30_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u31 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u32 { + position:absolute; + left:50px; + top:316px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u32_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u33 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u34 { + position:absolute; + left:249px; + top:316px; + width:77px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u34_img { + position:absolute; + left:0px; + top:0px; + width:77px; + height:19px; +} +#u35 { + position:absolute; + left:0px; + top:0px; + width:77px; + white-space:nowrap; +} +#u36 { + position:absolute; + left:299px; + top:296px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u36_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u37 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u38 { + position:absolute; + left:68px; + top:204px; + width:247px; + height:60px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u38_img { + position:absolute; + left:0px; + top:0px; + width:247px; + height:60px; +} +#u39 { + position:absolute; + left:0px; + top:0px; + width:247px; + white-space:nowrap; +} +#u40 { + position:absolute; + left:42px; + top:259px; + width:300px; + height:10px; +} +#u40_start { + position:absolute; + left:0px; + top:-5px; + width:18px; + height:20px; +} +#u40_end { + position:absolute; + left:283px; + top:-5px; + width:18px; + height:20px; +} +#u40_line { + position:absolute; + left:0px; + top:5px; + width:300px; + height:1px; +} +#u41 { + position:absolute; + left:40px; + top:640px; + width:120px; + height:40px; +} +#u41_input { + position:absolute; + left:0px; + top:0px; + width:120px; + height:40px; + background-image:url(../../resources/images/transparent.gif); + text-align:center; + font-family:'微软雅黑'; + font-size:20px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u42 { + position:absolute; + left:222px; + top:640px; + width:120px; + height:40px; +} +#u42_input { + position:absolute; + left:0px; + top:0px; + width:120px; + height:40px; + background-image:url(../../resources/images/transparent.gif); + text-align:center; + font-family:'微软雅黑'; + font-size:20px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u43 { + position:absolute; + left:42px; + top:275px; + width:300px; + height:60px; + overflow:hidden; + background-image:url('../../resources/images/transparent.gif'); +} +#u44 { + position:absolute; + left:42px; + top:335px; + width:300px; + height:305px; + overflow:hidden; +} +#u44_state0 { + position:absolute; + left:0px; + top:0px; + width:300px; + height:305px; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; +} +#u44_state0_content { + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u45 { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u45_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u46 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u47 { + position:absolute; + left:8px; + top:0px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u47_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u48 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u49 { + position:absolute; + left:8px; + top:41px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u49_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u50 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u51 { + position:absolute; + left:207px; + top:41px; + width:77px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u51_img { + position:absolute; + left:0px; + top:0px; + width:77px; + height:19px; +} +#u52 { + position:absolute; + left:0px; + top:0px; + width:77px; + white-space:nowrap; +} +#u53 { + position:absolute; + left:257px; + top:21px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u53_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u54 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u55 { + position:absolute; + left:0px; + top:60px; + width:300px; + height:60px; +} +#u55_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u56 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u57 { + position:absolute; + left:8px; + top:60px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u57_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u58 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u59 { + position:absolute; + left:233px; + top:60px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u59_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u60 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u61 { + position:absolute; + left:8px; + top:101px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u61_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u62 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u63 { + position:absolute; + left:207px; + top:101px; + width:77px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u63_img { + position:absolute; + left:0px; + top:0px; + width:77px; + height:19px; +} +#u64 { + position:absolute; + left:0px; + top:0px; + width:77px; + white-space:nowrap; +} +#u65 { + position:absolute; + left:257px; + top:81px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u65_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u66 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u67 { + position:absolute; + left:0px; + top:120px; + width:300px; + height:60px; +} +#u67_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u68 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u69 { + position:absolute; + left:8px; + top:120px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u69_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u70 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u71 { + position:absolute; + left:8px; + top:161px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u71_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u72 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u73 { + position:absolute; + left:207px; + top:161px; + width:77px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u73_img { + position:absolute; + left:0px; + top:0px; + width:77px; + height:19px; +} +#u74 { + position:absolute; + left:0px; + top:0px; + width:77px; + white-space:nowrap; +} +#u75 { + position:absolute; + left:257px; + top:141px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u75_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u76 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u77 { + position:absolute; + left:0px; + top:180px; + width:300px; + height:60px; +} +#u77_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u78 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u79 { + position:absolute; + left:8px; + top:180px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u79_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u80 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u81 { + position:absolute; + left:8px; + top:221px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u81_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u82 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u83 { + position:absolute; + left:207px; + top:221px; + width:77px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u83_img { + position:absolute; + left:0px; + top:0px; + width:77px; + height:19px; +} +#u84 { + position:absolute; + left:0px; + top:0px; + width:77px; + white-space:nowrap; +} +#u85 { + position:absolute; + left:257px; + top:201px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u85_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u86 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u87 { + position:absolute; + left:229px; + top:182px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u87_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u88 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u89 { + position:absolute; + left:0px; + top:240px; + width:300px; + height:60px; +} +#u89_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u90 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u91 { + position:absolute; + left:243px; + top:248px; + width:45px; + height:45px; +} +#u91_img { + position:absolute; + left:0px; + top:0px; + width:45px; + height:45px; +} +#u92 { + position:absolute; + left:2px; + top:14px; + width:41px; + visibility:hidden; + word-wrap:break-word; +} +#u93 { + position:absolute; + left:229px; + top:122px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u93_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u94 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u95 { + position:absolute; + left:233px; + top:0px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u95_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u96 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u44_state1 { + position:absolute; + left:0px; + top:0px; + width:300px; + height:305px; + visibility:hidden; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; +} +#u44_state1_content { + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u97 { + position:absolute; + left:11px; + top:99px; + width:73px; + height:22px; + font-size:18px; +} +#u97_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u98 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u99 { + position:absolute; + left:95px; + top:96px; + width:200px; + height:25px; +} +#u99_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:25px; + background-image:; + text-align:left; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u100 { + position:absolute; + left:11px; + top:134px; + width:73px; + height:22px; + font-size:18px; +} +#u100_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u101 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u102 { + position:absolute; + left:95px; + top:131px; + width:200px; + height:25px; +} +#u102_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:25px; + background-image:; + text-align:left; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u103 { + position:absolute; + left:11px; + top:202px; + width:132px; + height:30px; +} +#u103_input { + position:absolute; + left:0px; + top:0px; + width:132px; + height:30px; + background-image:url(../../resources/images/transparent.gif); + text-align:center; + font-family:'微软雅黑'; + font-size:18px; + color:#000000; + font-weight:bold; + font-style:normal; + text-decoration:none; +} +#u104 { + position:absolute; + left:11px; + top:67px; + width:73px; + height:22px; + font-size:18px; +} +#u104_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u105 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u106 { + position:absolute; + left:95px; + top:64px; + width:200px; + height:25px; +} +#u106_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:25px; + background-image:; + text-align:left; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u107 { + position:absolute; + left:11px; + top:169px; + width:72px; + height:22px; + font-size:18px; +} +#u107_img { + position:absolute; + left:0px; + top:0px; + width:72px; + height:22px; +} +#u108 { + position:absolute; + left:0px; + top:0px; + width:72px; + white-space:nowrap; +} +#u109 { + position:absolute; + left:95px; + top:164px; + width:200px; + height:27px; +} +#u109_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:27px; + background-image:; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u110 { + position:absolute; + left:11px; + top:15px; + width:79px; + height:16px; +} +#u110_img { + position:absolute; + left:0px; + top:0px; + width:79px; + height:16px; +} +#u111 { + position:absolute; + left:0px; + top:0px; + width:79px; + white-space:nowrap; +} +#u112 { + position:absolute; + left:9px; + top:39px; + width:53px; + height:16px; +} +#u112_img { + position:absolute; + left:0px; + top:0px; + width:53px; + height:16px; +} +#u113 { + position:absolute; + left:0px; + top:0px; + width:53px; + white-space:nowrap; +} +#u114 { + position:absolute; + left:119px; + top:15px; + width:28px; + height:16px; +} +#u114_img { + position:absolute; + left:0px; + top:0px; + width:28px; + height:16px; +} +#u115 { + position:absolute; + left:0px; + top:0px; + width:28px; + white-space:nowrap; +} +#u116 { + position:absolute; + left:163px; + top:202px; + width:132px; + height:30px; +} +#u116_input { + position:absolute; + left:0px; + top:0px; + width:132px; + height:30px; + background-image:url(../../resources/images/transparent.gif); + text-align:center; + font-family:'微软雅黑'; + font-size:18px; + color:#000000; + font-weight:bold; + font-style:normal; + text-decoration:none; +} +#u117 { + position:absolute; + left:119px; + top:38px; + width:92px; + height:21px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u117_img { + position:absolute; + left:0px; + top:0px; + width:92px; + height:21px; +} +#u118 { + position:absolute; + left:0px; + top:0px; + width:92px; + white-space:nowrap; +} +#u44_state2 { + position:absolute; + left:0px; + top:0px; + width:300px; + height:305px; + visibility:hidden; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; +} +#u44_state2_content { + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u119 { + position:absolute; + left:11px; + top:99px; + width:73px; + height:22px; + font-size:18px; +} +#u119_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u120 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u121 { + position:absolute; + left:95px; + top:96px; + width:200px; + height:25px; +} +#u121_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:25px; + background-image:; + text-align:left; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u122 { + position:absolute; + left:11px; + top:134px; + width:73px; + height:22px; + font-size:18px; +} +#u122_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u123 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u124 { + position:absolute; + left:95px; + top:131px; + width:200px; + height:25px; +} +#u124_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:25px; + background-image:; + text-align:left; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u125 { + position:absolute; + left:11px; + top:202px; + width:132px; + height:30px; +} +#u125_input { + position:absolute; + left:0px; + top:0px; + width:132px; + height:30px; + background-image:url(../../resources/images/transparent.gif); + text-align:center; + font-family:'微软雅黑'; + font-size:18px; + color:#000000; + font-weight:bold; + font-style:normal; + text-decoration:none; +} +#u126 { + position:absolute; + left:11px; + top:67px; + width:73px; + height:22px; + font-size:18px; +} +#u126_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u127 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u128 { + position:absolute; + left:95px; + top:64px; + width:200px; + height:25px; +} +#u128_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:25px; + background-image:; + text-align:left; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u129 { + position:absolute; + left:11px; + top:169px; + width:72px; + height:22px; + font-size:18px; +} +#u129_img { + position:absolute; + left:0px; + top:0px; + width:72px; + height:22px; +} +#u130 { + position:absolute; + left:0px; + top:0px; + width:72px; + white-space:nowrap; +} +#u131 { + position:absolute; + left:95px; + top:164px; + width:200px; + height:27px; +} +#u131_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:27px; + background-image:; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u132 { + position:absolute; + left:11px; + top:15px; + width:79px; + height:16px; +} +#u132_img { + position:absolute; + left:0px; + top:0px; + width:79px; + height:16px; +} +#u133 { + position:absolute; + left:0px; + top:0px; + width:79px; + white-space:nowrap; +} +#u134 { + position:absolute; + left:9px; + top:39px; + width:53px; + height:16px; +} +#u134_img { + position:absolute; + left:0px; + top:0px; + width:53px; + height:16px; +} +#u135 { + position:absolute; + left:0px; + top:0px; + width:53px; + white-space:nowrap; +} +#u136 { + position:absolute; + left:119px; + top:15px; + width:28px; + height:16px; +} +#u136_img { + position:absolute; + left:0px; + top:0px; + width:28px; + height:16px; +} +#u137 { + position:absolute; + left:0px; + top:0px; + width:28px; + white-space:nowrap; +} +#u138 { + position:absolute; + left:163px; + top:202px; + width:132px; + height:30px; +} +#u138_input { + position:absolute; + left:0px; + top:0px; + width:132px; + height:30px; + background-image:url(../../resources/images/transparent.gif); + text-align:center; + font-family:'微软雅黑'; + font-size:18px; + color:#000000; + font-weight:bold; + font-style:normal; + text-decoration:none; +} +#u139 { + position:absolute; + left:119px; + top:38px; + width:92px; + height:21px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u139_img { + position:absolute; + left:0px; + top:0px; + width:92px; + height:21px; +} +#u140 { + position:absolute; + left:0px; + top:0px; + width:92px; + white-space:nowrap; +} diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\346\210\221\347\224\250\345\217\221\345\267\245\350\265\204_-_\346\211\213\345\212\250\347\231\273\350\256\260/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\346\210\221\347\224\250\345\217\221\345\267\245\350\265\204_-_\346\211\213\345\212\250\347\231\273\350\256\260/data.js" new file mode 100644 index 0000000..d2ca34b --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\346\210\221\347\224\250\345\217\221\345\267\245\350\265\204_-_\346\211\213\345\212\250\347\231\273\350\256\260/data.js" @@ -0,0 +1,1841 @@ +$axure.loadCurrentPage({ + "url":"我用发工资_-_手动登记.html", + "generationDate":new Date(1416993072234.38), + "isCanvasEnabled":false, + "variables":["OnLoadVariable"], + "page":{ + "packageId":"82162bf06c0142429640bafa4b187853", + "type":"Axure:Page", + "name":"我用发工资 - 手动登记", + "notes":{ +}, + "style":{ + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "pageAlignment":"near", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "image":null, + "imageHorizontalAlignment":"near", + "imageVerticalAlignment":"near", + "imageRepeat":"auto", + "favicon":null, + "sketchFactor":"0", + "colorStyle":"appliedColor", + "fontName":"应用字体", + "borderWidth":"0"}, + "adaptiveStyles":{ +}, + "interactionMap":{ +}, + "diagram":{ + "objects":[{ + "id":"9ef6483d584f47969fc89354cd8e7c35", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":116}, + "size":{ + "width":8, + "height":36}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ccae4a1e342840c4a857a9a3c8b39c60", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":116}, + "size":{ + "width":8, + "height":36}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u0.png"}}, +{ + "id":"a60e1e9d92a143ea803309b8d1097088", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":192}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ab72d32389524128a7137f5a2c1726ac", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":192}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u2.png"}}, +{ + "id":"2e7942ea9f954db3be710596b0acfb7e", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":255}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"07db8fc4fc894ad2894e5b7b2d6d93ec", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":255}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u2.png"}}, +{ + "id":"a198a3b320fa4903994427223e5c5d5e", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":259, + "y":0}, + "size":{ + "width":60, + "height":10}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"cbab2eb8624644b1b655c783bc88a22d", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":259, + "y":0}, + "size":{ + "width":60, + "height":10}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u6.png"}}, +{ + "id":"ab6d6242d00047f8a243a8377b6c8356", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":6, + "y":6}, + "size":{ + "width":372, + "height":796}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"52"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"5f9cf5ec20dd41d48276de62d28a6642", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":6, + "y":6}, + "size":{ + "width":372, + "height":796}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"52"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u8.png"}}, +{ + "id":"18ad6eae1cdd49e79055084f7e96826b", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":32, + "y":120}, + "size":{ + "width":320, + "height":568}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"b968f448073144cab2f613b25e44ceb1", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":32, + "y":120}, + "size":{ + "width":320, + "height":568}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u10.png"}}, +{ + "id":"2b71272ca6814c0bbde2a6cfcb491837", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":157, + "y":66}, + "size":{ + "width":70, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"3fa1e303642141358ecc3406176ab44f", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":157, + "y":66}, + "size":{ + "width":70, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u12.png"}}, +{ + "id":"1da4bbac62794bedba77f7d31e11489a", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":185, + "y":40}, + "size":{ + "width":14, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"96700ada1c3d4fb492a0b39922f6e3cd", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":185, + "y":40}, + "size":{ + "width":14, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u14.png"}}, +{ + "id":"8779a999c0b44b9982f7c3b8a89faa52", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":156, + "y":704}, + "size":{ + "width":72, + "height":72}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"1fbb6ee86c49494fb5d8663876c4504b", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":156, + "y":704}, + "size":{ + "width":72, + "height":72}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u16.png"}}, +{ + "id":"c5a1814559cc471ab0c8395befe7ceff", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":32, + "y":140}, + "size":{ + "width":319, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"7072ade4578a49e6a0acaad20d139359", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":32, + "y":140}, + "size":{ + "width":319, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_首次进入/u18.png"}}, +{ + "id":"39c4c49b0c034888b383a47830405a46", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "location":{ + "x":40, + "y":159}, + "size":{ + "width":22, + "height":22}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"24bf41c651b8492b94f94e1f798ed8e2", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":40, + "y":159}, + "size":{ + "width":22, + "height":22}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 我要发工资 - 引导页 - 首次返回", + "target":{ + "targetType":"page", + "url":"我要发工资_-_引导页_-_首次返回.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true, + "images":{ + "normal~":"images/我要发工资_-_引导页_-_首次进入/u20.png"}}, +{ + "id":"88f63e08f45d4bd2b5a006d17cb2d636", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontSize":"20px", + "fontWeight":"700", + "location":{ + "x":141, + "y":156}, + "size":{ + "width":101, + "height":24}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"feca665753df4b06aac429ab4f26dd3f", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontSize":"20px", + "fontWeight":"700", + "location":{ + "x":141, + "y":156}, + "size":{ + "width":101, + "height":24}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"332c621973b54353a44fc9e423578f3f", + "label":"手动登记工资表", + "type":"dynamicPanel", + "styleType":"dynamicPanel", + "visible":true, + "style":{ + "location":{ + "x":32, + "y":210}, + "size":{ + "width":319, + "height":280}}, + "adaptiveStyles":{ +}, + "scrollbars":"none", + "fitToContent":false, + "propagate":false, + "diagrams":[{ + "id":"a3e6bd8e70284b69baf3c623094f6d50", + "label":"初始状态", + "type":"Axure:PanelDiagram", + "objects":[{ + "id":"46ca3dbcc8d44dfc898063ba030d6f9d", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":26, + "y":9}, + "size":{ + "width":219, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"dafb210b758c4bdb82ef6bf940b07d58", + "label":"", + "isContained":true, + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":26, + "y":9}, + "size":{ + "width":219, + "height":30}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"6908dd77647644ceb521e2184a9c09fe", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"horizontalLine", + "styleType":"horizontalLine", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":39}, + "size":{ + "width":319, + "height":10}, + "borderFill":{ + "fillType":"solid", + "color":0xFFCCCCCC}}, + "adaptiveStyles":{ +}, + "images":{ + "start~":"resources/images/transparent.gif", + "end~":"resources/images/transparent.gif", + "line~":"images/我用发工资_-_手动登记/u27_line.png"}}, +{ + "id":"e4454f9d109149d69a95a575126b9f86", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":62}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"6aef9d17e98d4dedafa448fc3c9ddb90", + "label":"", + "isContained":true, + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":62}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"4a0cbe1901b0488ca6f8c246c035b006", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"textBox", + "styleType":"textBox", + "visible":true, + "style":{ + "location":{ + "x":101.5, + "y":59}, + "size":{ + "width":200, + "height":25}}, + "adaptiveStyles":{ +}}, +{ + "id":"bea0349cbfee47b1bf292c02ca09078e", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":97}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d2a0b380d1134ffbaf3305bc083d5395", + "label":"", + "isContained":true, + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":97}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"d2c1c34bcbf74f0f88d57f58fae5669d", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"textBox", + "styleType":"textBox", + "visible":true, + "style":{ + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFCCCCCC, + "opacity":1}, + "location":{ + "x":101.5, + "y":94}, + "size":{ + "width":200, + "height":25}}, + "adaptiveStyles":{ +}}, +{ + "id":"42588ea6e25d44f6a914dc1f4be03326", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":131}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"777ce4f2940e4d8eb927cbbfa2b25da0", + "label":"", + "isContained":true, + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":131}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"f83ae1e9b31044908e509bfb6074f586", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"textBox", + "styleType":"textBox", + "visible":true, + "style":{ + "location":{ + "x":102, + "y":128}, + "size":{ + "width":200, + "height":25}}, + "adaptiveStyles":{ +}}, +{ + "id":"81e6b8616e674617a1be96df46a1f56b", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":168}, + "size":{ + "width":72, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a5915e643adf475583bca8ef02043c55", + "label":"", + "isContained":true, + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":168}, + "size":{ + "width":72, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"aeaec9643579436791091c68b92661e4", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"comboBox", + "styleType":"comboBox", + "visible":true, + "style":{ + "location":{ + "x":102, + "y":163}, + "size":{ + "width":200, + "height":27}}, + "adaptiveStyles":{ +}}, +{ + "id":"6585b1420e4546279fbe62e174bb2bd6", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"button", + "styleType":"button", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"18px", + "fontWeight":"700", + "location":{ + "x":18, + "y":200}, + "size":{ + "width":132, + "height":30}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"setPanelState", + "description":"设置 手动登记工资表 to 添加记录状态 向下滑动 in 1500ms", + "panelsToStates":[{ + "panelPath":["332c621973b54353a44fc9e423578f3f"], + "stateInfo":{ + "setStateType":"diagram", + "stateNumber":2, + "stateValue":{ + "exprType":"stringLiteral", + "value":"1", + "stos":[]}, + "loop":false, + "showWhenSet":false, + "options":{ + "animateIn":{ + "easing":"slideDown", + "duration":1500}, + "compress":false}}}]}]}]}}, + "tabbable":true}, +{ + "id":"99d5b744c6e045a798da88e2ede45e1a", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"button", + "styleType":"button", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"18px", + "fontWeight":"700", + "location":{ + "x":170, + "y":200}, + "size":{ + "width":132, + "height":30}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 支付", + "target":{ + "targetType":"page", + "url":"支付.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true}]}, +{ + "id":"cbd2637cad7244bba77400ba3c07526d", + "label":"添加记录状态", + "type":"Axure:PanelDiagram", + "objects":[{ + "id":"b63d1cc5a8374db6822d4256d20aa011", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":26, + "y":9}, + "size":{ + "width":255, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"abc2014471b94b2bbac8eb78da62667e", + "label":"", + "isContained":true, + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":26, + "y":9}, + "size":{ + "width":255, + "height":30}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"591a1763a6cb45d19d12a5623c657089", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"horizontalLine", + "styleType":"horizontalLine", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":39}, + "size":{ + "width":319, + "height":10}, + "borderFill":{ + "fillType":"solid", + "color":0xFFCCCCCC}}, + "adaptiveStyles":{ +}, + "images":{ + "start~":"resources/images/transparent.gif", + "end~":"resources/images/transparent.gif", + "line~":"images/我用发工资_-_手动登记/u27_line.png"}}, +{ + "id":"1fcf81beebf841a599fb41080e564973", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":133}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"2a96ff1d43204e698323dac8ea16b2b8", + "label":"", + "isContained":true, + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":133}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"ccc89d72ccb047b6b564b5da4f773475", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"textBox", + "styleType":"textBox", + "visible":true, + "style":{ + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFCCCCCC, + "opacity":1}, + "location":{ + "x":102, + "y":130}, + "size":{ + "width":200, + "height":25}}, + "adaptiveStyles":{ +}}, +{ + "id":"669820eb54514edaacd92d8059210d28", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":168}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"6b1f22e966b641f58e2721cb55efb5a4", + "label":"", + "isContained":true, + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":168}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"473e981bfb94458289da9901415be99a", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"textBox", + "styleType":"textBox", + "visible":true, + "style":{ + "location":{ + "x":102, + "y":165}, + "size":{ + "width":200, + "height":25}}, + "adaptiveStyles":{ +}}, +{ + "id":"cf8ff86444264d34831652824dd02921", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"button", + "styleType":"button", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"18px", + "fontWeight":"700", + "location":{ + "x":18, + "y":236}, + "size":{ + "width":132, + "height":30}}, + "adaptiveStyles":{ +}}, +{ + "id":"26bc2232e1e84a81ad8c3786873ab69e", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":101}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"83b3d580f7124c82b3ead46ebb682435", + "label":"", + "isContained":true, + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":101}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"4c033a66971b489ca91d9558c5cad625", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"textBox", + "styleType":"textBox", + "visible":true, + "style":{ + "location":{ + "x":102, + "y":98}, + "size":{ + "width":200, + "height":25}}, + "adaptiveStyles":{ +}}, +{ + "id":"3e33e024b27147db9c94d5bd53aaa0e5", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":203}, + "size":{ + "width":72, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"06e530bc3fb24dce965d232b9650dad7", + "label":"", + "isContained":true, + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":203}, + "size":{ + "width":72, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"2e45780b518c47a6a95acc346084ac10", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"comboBox", + "styleType":"comboBox", + "visible":true, + "style":{ + "location":{ + "x":102, + "y":198}, + "size":{ + "width":200, + "height":27}}, + "adaptiveStyles":{ +}}, +{ + "id":"05d7e2685a344e469b6141c60301e435", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":18, + "y":49}, + "size":{ + "width":40, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"b62d200ea174485d9a6d99a476d2d365", + "label":"", + "isContained":true, + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":18, + "y":49}, + "size":{ + "width":40, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"f5ed5123cdea44748a67413e6471121b", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":16, + "y":73}, + "size":{ + "width":78, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d4928470889d4beb9b003bdfe1946abc", + "label":"", + "isContained":true, + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":16, + "y":73}, + "size":{ + "width":78, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"8755ec948474444fa171e3b1ababe5ac", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":126, + "y":49}, + "size":{ + "width":68, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"497f33f8e14b4371bdc574d06ac74cfe", + "label":"", + "isContained":true, + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":126, + "y":49}, + "size":{ + "width":68, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"43d5ae359662480489f1cc6e239ea865", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":262, + "y":49}, + "size":{ + "width":27, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"3d36bd6a721c488aaed2622f42a673c4", + "label":"", + "isContained":true, + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":262, + "y":49}, + "size":{ + "width":27, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"3c3074693b154c3280d94cf4c8871c5e", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"horizontalLine", + "styleType":"horizontalLine", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":86}, + "size":{ + "width":319, + "height":10}, + "borderFill":{ + "fillType":"solid", + "color":0xFFCCCCCC}}, + "adaptiveStyles":{ +}, + "images":{ + "start~":"resources/images/transparent.gif", + "end~":"resources/images/transparent.gif", + "line~":"images/我用发工资_-_手动登记/u27_line.png"}}, +{ + "id":"d4535173d35241e1998c44d6be2b767b", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"button", + "styleType":"button", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"18px", + "fontWeight":"700", + "location":{ + "x":170, + "y":236}, + "size":{ + "width":132, + "height":30}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 支付", + "target":{ + "targetType":"page", + "url":"支付.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true}]}, +{ + "id":"1d81c224dc334659ba6bd4bbb65217bd", + "label":"编辑状态", + "type":"Axure:PanelDiagram", + "objects":[{ + "id":"4c9cce93b83142d0a93ff667054ced0e", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":16, + "y":47}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c97846e7e4584635b7cc9f743f1ff11d", + "label":"", + "isContained":true, + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":16, + "y":47}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"2bcbf93a10254a84bdfc9b72c1ea54ab", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"textBox", + "styleType":"textBox", + "visible":true, + "style":{ + "location":{ + "x":100, + "y":44}, + "size":{ + "width":200, + "height":25}}, + "adaptiveStyles":{ +}}, +{ + "id":"41d003d4b4164f3abe919c1ea41a5f2e", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":16, + "y":82}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"b8cebda7ba2e40b8ae35d3125a5c2eb6", + "label":"", + "isContained":true, + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":16, + "y":82}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"2f64232dedc14ca3b1934564ef0e4f1f", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"textBox", + "styleType":"textBox", + "visible":true, + "style":{ + "location":{ + "x":100, + "y":79}, + "size":{ + "width":200, + "height":25}}, + "adaptiveStyles":{ +}}, +{ + "id":"7440e3514c874752aad9946b2997e24f", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"button", + "styleType":"button", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"20px", + "fontWeight":"700", + "location":{ + "x":16, + "y":150}, + "size":{ + "width":284, + "height":30}}, + "adaptiveStyles":{ +}}, +{ + "id":"4eaee00259354f7f889c30c7fb3e2460", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":16, + "y":15}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"8230f4c410124a1da654074465429829", + "label":"", + "isContained":true, + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":16, + "y":15}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"2057374bc7d1449783cad43f2f5aa933", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"textBox", + "styleType":"textBox", + "visible":true, + "style":{ + "location":{ + "x":100, + "y":12}, + "size":{ + "width":200, + "height":25}}, + "adaptiveStyles":{ +}}, +{ + "id":"95509c72f97f48fa947f8230099801fe", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":16, + "y":117}, + "size":{ + "width":72, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"db0be5f2c27a48ffa95ea33ea511cc8d", + "label":"", + "isContained":true, + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":16, + "y":117}, + "size":{ + "width":72, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"16b63c9034454f85afe7fbcf87d31ecd", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"comboBox", + "styleType":"comboBox", + "visible":true, + "style":{ + "location":{ + "x":100, + "y":112}, + "size":{ + "width":200, + "height":27}}, + "adaptiveStyles":{ +}}]}]}]}}, + "masters":{ +}, + "objectPaths":{ + "9ef6483d584f47969fc89354cd8e7c35":{ + "scriptId":"u0"}, + "ccae4a1e342840c4a857a9a3c8b39c60":{ + "scriptId":"u1"}, + "a60e1e9d92a143ea803309b8d1097088":{ + "scriptId":"u2"}, + "ab72d32389524128a7137f5a2c1726ac":{ + "scriptId":"u3"}, + "2e7942ea9f954db3be710596b0acfb7e":{ + "scriptId":"u4"}, + "07db8fc4fc894ad2894e5b7b2d6d93ec":{ + "scriptId":"u5"}, + "a198a3b320fa4903994427223e5c5d5e":{ + "scriptId":"u6"}, + "cbab2eb8624644b1b655c783bc88a22d":{ + "scriptId":"u7"}, + "ab6d6242d00047f8a243a8377b6c8356":{ + "scriptId":"u8"}, + "5f9cf5ec20dd41d48276de62d28a6642":{ + "scriptId":"u9"}, + "18ad6eae1cdd49e79055084f7e96826b":{ + "scriptId":"u10"}, + "b968f448073144cab2f613b25e44ceb1":{ + "scriptId":"u11"}, + "2b71272ca6814c0bbde2a6cfcb491837":{ + "scriptId":"u12"}, + "3fa1e303642141358ecc3406176ab44f":{ + "scriptId":"u13"}, + "1da4bbac62794bedba77f7d31e11489a":{ + "scriptId":"u14"}, + "96700ada1c3d4fb492a0b39922f6e3cd":{ + "scriptId":"u15"}, + "8779a999c0b44b9982f7c3b8a89faa52":{ + "scriptId":"u16"}, + "1fbb6ee86c49494fb5d8663876c4504b":{ + "scriptId":"u17"}, + "c5a1814559cc471ab0c8395befe7ceff":{ + "scriptId":"u18"}, + "7072ade4578a49e6a0acaad20d139359":{ + "scriptId":"u19"}, + "39c4c49b0c034888b383a47830405a46":{ + "scriptId":"u20"}, + "24bf41c651b8492b94f94e1f798ed8e2":{ + "scriptId":"u21"}, + "88f63e08f45d4bd2b5a006d17cb2d636":{ + "scriptId":"u22"}, + "feca665753df4b06aac429ab4f26dd3f":{ + "scriptId":"u23"}, + "332c621973b54353a44fc9e423578f3f":{ + "scriptId":"u24"}, + "46ca3dbcc8d44dfc898063ba030d6f9d":{ + "scriptId":"u25"}, + "dafb210b758c4bdb82ef6bf940b07d58":{ + "scriptId":"u26"}, + "6908dd77647644ceb521e2184a9c09fe":{ + "scriptId":"u27"}, + "e4454f9d109149d69a95a575126b9f86":{ + "scriptId":"u28"}, + "6aef9d17e98d4dedafa448fc3c9ddb90":{ + "scriptId":"u29"}, + "4a0cbe1901b0488ca6f8c246c035b006":{ + "scriptId":"u30"}, + "bea0349cbfee47b1bf292c02ca09078e":{ + "scriptId":"u31"}, + "d2a0b380d1134ffbaf3305bc083d5395":{ + "scriptId":"u32"}, + "d2c1c34bcbf74f0f88d57f58fae5669d":{ + "scriptId":"u33"}, + "42588ea6e25d44f6a914dc1f4be03326":{ + "scriptId":"u34"}, + "777ce4f2940e4d8eb927cbbfa2b25da0":{ + "scriptId":"u35"}, + "f83ae1e9b31044908e509bfb6074f586":{ + "scriptId":"u36"}, + "81e6b8616e674617a1be96df46a1f56b":{ + "scriptId":"u37"}, + "a5915e643adf475583bca8ef02043c55":{ + "scriptId":"u38"}, + "aeaec9643579436791091c68b92661e4":{ + "scriptId":"u39"}, + "6585b1420e4546279fbe62e174bb2bd6":{ + "scriptId":"u40"}, + "99d5b744c6e045a798da88e2ede45e1a":{ + "scriptId":"u41"}, + "b63d1cc5a8374db6822d4256d20aa011":{ + "scriptId":"u42"}, + "abc2014471b94b2bbac8eb78da62667e":{ + "scriptId":"u43"}, + "591a1763a6cb45d19d12a5623c657089":{ + "scriptId":"u44"}, + "1fcf81beebf841a599fb41080e564973":{ + "scriptId":"u45"}, + "2a96ff1d43204e698323dac8ea16b2b8":{ + "scriptId":"u46"}, + "ccc89d72ccb047b6b564b5da4f773475":{ + "scriptId":"u47"}, + "669820eb54514edaacd92d8059210d28":{ + "scriptId":"u48"}, + "6b1f22e966b641f58e2721cb55efb5a4":{ + "scriptId":"u49"}, + "473e981bfb94458289da9901415be99a":{ + "scriptId":"u50"}, + "cf8ff86444264d34831652824dd02921":{ + "scriptId":"u51"}, + "26bc2232e1e84a81ad8c3786873ab69e":{ + "scriptId":"u52"}, + "83b3d580f7124c82b3ead46ebb682435":{ + "scriptId":"u53"}, + "4c033a66971b489ca91d9558c5cad625":{ + "scriptId":"u54"}, + "3e33e024b27147db9c94d5bd53aaa0e5":{ + "scriptId":"u55"}, + "06e530bc3fb24dce965d232b9650dad7":{ + "scriptId":"u56"}, + "2e45780b518c47a6a95acc346084ac10":{ + "scriptId":"u57"}, + "05d7e2685a344e469b6141c60301e435":{ + "scriptId":"u58"}, + "b62d200ea174485d9a6d99a476d2d365":{ + "scriptId":"u59"}, + "f5ed5123cdea44748a67413e6471121b":{ + "scriptId":"u60"}, + "d4928470889d4beb9b003bdfe1946abc":{ + "scriptId":"u61"}, + "8755ec948474444fa171e3b1ababe5ac":{ + "scriptId":"u62"}, + "497f33f8e14b4371bdc574d06ac74cfe":{ + "scriptId":"u63"}, + "43d5ae359662480489f1cc6e239ea865":{ + "scriptId":"u64"}, + "3d36bd6a721c488aaed2622f42a673c4":{ + "scriptId":"u65"}, + "3c3074693b154c3280d94cf4c8871c5e":{ + "scriptId":"u66"}, + "d4535173d35241e1998c44d6be2b767b":{ + "scriptId":"u67"}, + "4c9cce93b83142d0a93ff667054ced0e":{ + "scriptId":"u68"}, + "c97846e7e4584635b7cc9f743f1ff11d":{ + "scriptId":"u69"}, + "2bcbf93a10254a84bdfc9b72c1ea54ab":{ + "scriptId":"u70"}, + "41d003d4b4164f3abe919c1ea41a5f2e":{ + "scriptId":"u71"}, + "b8cebda7ba2e40b8ae35d3125a5c2eb6":{ + "scriptId":"u72"}, + "2f64232dedc14ca3b1934564ef0e4f1f":{ + "scriptId":"u73"}, + "7440e3514c874752aad9946b2997e24f":{ + "scriptId":"u74"}, + "4eaee00259354f7f889c30c7fb3e2460":{ + "scriptId":"u75"}, + "8230f4c410124a1da654074465429829":{ + "scriptId":"u76"}, + "2057374bc7d1449783cad43f2f5aa933":{ + "scriptId":"u77"}, + "95509c72f97f48fa947f8230099801fe":{ + "scriptId":"u78"}, + "db0be5f2c27a48ffa95ea33ea511cc8d":{ + "scriptId":"u79"}, + "16b63c9034454f85afe7fbcf87d31ecd":{ + "scriptId":"u80"}}}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\346\210\221\347\224\250\345\217\221\345\267\245\350\265\204_-_\346\211\213\345\212\250\347\231\273\350\256\260/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\346\210\221\347\224\250\345\217\221\345\267\245\350\265\204_-_\346\211\213\345\212\250\347\231\273\350\256\260/styles.css" new file mode 100644 index 0000000..b5310b4 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\346\210\221\347\224\250\345\217\221\345\267\245\350\265\204_-_\346\211\213\345\212\250\347\231\273\350\256\260/styles.css" @@ -0,0 +1,1194 @@ +body { + margin:0px; + background-image:none; + position:static; + left:auto; + width:378px; + margin-left:0; + margin-right:0; + text-align:left; +} +#base { + position:absolute; + z-index:0; +} +#u0 { + position:absolute; + left:0px; + top:116px; + width:8px; + height:36px; +} +#u0_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:36px; +} +#u1 { + position:absolute; + left:2px; + top:10px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u2 { + position:absolute; + left:0px; + top:192px; + width:8px; + height:27px; +} +#u2_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:27px; +} +#u3 { + position:absolute; + left:2px; + top:6px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u4 { + position:absolute; + left:0px; + top:255px; + width:8px; + height:27px; +} +#u4_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:27px; +} +#u5 { + position:absolute; + left:2px; + top:6px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u6 { + position:absolute; + left:259px; + top:0px; + width:60px; + height:10px; +} +#u6_img { + position:absolute; + left:0px; + top:0px; + width:60px; + height:10px; +} +#u7 { + position:absolute; + left:2px; + top:-3px; + width:56px; + visibility:hidden; + word-wrap:break-word; +} +#u8 { + position:absolute; + left:6px; + top:6px; + width:372px; + height:796px; +} +#u8_img { + position:absolute; + left:0px; + top:0px; + width:372px; + height:796px; +} +#u9 { + position:absolute; + left:2px; + top:390px; + width:368px; + visibility:hidden; + word-wrap:break-word; +} +#u10 { + position:absolute; + left:32px; + top:120px; + width:320px; + height:568px; +} +#u10_img { + position:absolute; + left:0px; + top:0px; + width:320px; + height:568px; +} +#u11 { + position:absolute; + left:2px; + top:276px; + width:316px; + visibility:hidden; + word-wrap:break-word; +} +#u12 { + position:absolute; + left:157px; + top:66px; + width:70px; + height:14px; +} +#u12_img { + position:absolute; + left:0px; + top:0px; + width:70px; + height:14px; +} +#u13 { + position:absolute; + left:2px; + top:-1px; + width:66px; + visibility:hidden; + word-wrap:break-word; +} +#u14 { + position:absolute; + left:185px; + top:40px; + width:14px; + height:14px; +} +#u14_img { + position:absolute; + left:0px; + top:0px; + width:14px; + height:14px; +} +#u15 { + position:absolute; + left:2px; + top:-1px; + width:10px; + visibility:hidden; + word-wrap:break-word; +} +#u16 { + position:absolute; + left:156px; + top:704px; + width:72px; + height:72px; +} +#u16_img { + position:absolute; + left:0px; + top:0px; + width:72px; + height:72px; +} +#u17 { + position:absolute; + left:2px; + top:28px; + width:68px; + visibility:hidden; + word-wrap:break-word; +} +#u18 { + position:absolute; + left:32px; + top:140px; + width:319px; + height:60px; +} +#u18_img { + position:absolute; + left:0px; + top:0px; + width:319px; + height:60px; +} +#u19 { + position:absolute; + left:2px; + top:22px; + width:315px; + visibility:hidden; + word-wrap:break-word; +} +#u20 { + position:absolute; + left:40px; + top:159px; + width:22px; + height:22px; +} +#u20_img { + position:absolute; + left:0px; + top:0px; + width:22px; + height:22px; +} +#u21 { + position:absolute; + left:2px; + top:3px; + width:18px; + visibility:hidden; + word-wrap:break-word; +} +#u22 { + position:absolute; + left:141px; + top:156px; + width:101px; + height:24px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + font-size:20px; +} +#u22_img { + position:absolute; + left:0px; + top:0px; + width:101px; + height:24px; +} +#u23 { + position:absolute; + left:0px; + top:0px; + width:101px; + white-space:nowrap; +} +#u24 { + position:absolute; + left:32px; + top:210px; + width:319px; + height:280px; + overflow:hidden; +} +#u24_state0 { + position:absolute; + left:0px; + top:0px; + width:319px; + height:280px; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; +} +#u24_state0_content { + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u25 { + position:absolute; + left:26px; + top:9px; + width:219px; + height:30px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u25_img { + position:absolute; + left:0px; + top:0px; + width:219px; + height:30px; +} +#u26 { + position:absolute; + left:0px; + top:0px; + width:219px; + white-space:nowrap; +} +#u27 { + position:absolute; + left:0px; + top:39px; + width:319px; + height:10px; +} +#u27_start { + position:absolute; + left:0px; + top:-5px; + width:18px; + height:20px; +} +#u27_end { + position:absolute; + left:302px; + top:-5px; + width:18px; + height:20px; +} +#u27_line { + position:absolute; + left:0px; + top:5px; + width:319px; + height:1px; +} +#u28 { + position:absolute; + left:18px; + top:62px; + width:73px; + height:22px; + font-size:18px; +} +#u28_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u29 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u30 { + position:absolute; + left:102px; + top:59px; + width:200px; + height:25px; +} +#u30_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:25px; + background-image:; + text-align:left; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u31 { + position:absolute; + left:18px; + top:97px; + width:73px; + height:22px; + font-size:18px; +} +#u31_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u32 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u33 { + position:absolute; + left:102px; + top:94px; + width:200px; + height:25px; +} +#u33_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:25px; + background-image:; + text-align:left; + font-family:'Arial'; + font-size:13px; + color:#CCCCCC; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u34 { + position:absolute; + left:18px; + top:131px; + width:73px; + height:22px; + font-size:18px; +} +#u34_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u35 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u36 { + position:absolute; + left:102px; + top:128px; + width:200px; + height:25px; +} +#u36_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:25px; + background-image:; + text-align:left; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u37 { + position:absolute; + left:18px; + top:168px; + width:72px; + height:22px; + font-size:18px; +} +#u37_img { + position:absolute; + left:0px; + top:0px; + width:72px; + height:22px; +} +#u38 { + position:absolute; + left:0px; + top:0px; + width:72px; + white-space:nowrap; +} +#u39 { + position:absolute; + left:102px; + top:163px; + width:200px; + height:27px; +} +#u39_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:27px; + background-image:; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u40 { + position:absolute; + left:18px; + top:200px; + width:132px; + height:30px; +} +#u40_input { + position:absolute; + left:0px; + top:0px; + width:132px; + height:30px; + background-image:url(../../resources/images/transparent.gif); + text-align:center; + font-family:'微软雅黑'; + font-size:18px; + color:#000000; + font-weight:bold; + font-style:normal; + text-decoration:none; +} +#u41 { + position:absolute; + left:170px; + top:200px; + width:132px; + height:30px; +} +#u41_input { + position:absolute; + left:0px; + top:0px; + width:132px; + height:30px; + background-image:url(../../resources/images/transparent.gif); + text-align:center; + font-family:'微软雅黑'; + font-size:18px; + color:#000000; + font-weight:bold; + font-style:normal; + text-decoration:none; +} +#u24_state1 { + position:absolute; + left:0px; + top:0px; + width:319px; + height:280px; + visibility:hidden; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; +} +#u24_state1_content { + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u42 { + position:absolute; + left:26px; + top:9px; + width:255px; + height:30px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u42_img { + position:absolute; + left:0px; + top:0px; + width:255px; + height:30px; +} +#u43 { + position:absolute; + left:0px; + top:0px; + width:255px; + white-space:nowrap; +} +#u44 { + position:absolute; + left:0px; + top:39px; + width:319px; + height:10px; +} +#u44_start { + position:absolute; + left:0px; + top:-5px; + width:18px; + height:20px; +} +#u44_end { + position:absolute; + left:302px; + top:-5px; + width:18px; + height:20px; +} +#u44_line { + position:absolute; + left:0px; + top:5px; + width:319px; + height:1px; +} +#u45 { + position:absolute; + left:18px; + top:133px; + width:73px; + height:22px; + font-size:18px; +} +#u45_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u46 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u47 { + position:absolute; + left:102px; + top:130px; + width:200px; + height:25px; +} +#u47_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:25px; + background-image:; + text-align:left; + font-family:'Arial'; + font-size:13px; + color:#CCCCCC; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u48 { + position:absolute; + left:18px; + top:168px; + width:73px; + height:22px; + font-size:18px; +} +#u48_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u49 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u50 { + position:absolute; + left:102px; + top:165px; + width:200px; + height:25px; +} +#u50_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:25px; + background-image:; + text-align:left; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u51 { + position:absolute; + left:18px; + top:236px; + width:132px; + height:30px; +} +#u51_input { + position:absolute; + left:0px; + top:0px; + width:132px; + height:30px; + background-image:url(../../resources/images/transparent.gif); + text-align:center; + font-family:'微软雅黑'; + font-size:18px; + color:#000000; + font-weight:bold; + font-style:normal; + text-decoration:none; +} +#u52 { + position:absolute; + left:18px; + top:101px; + width:73px; + height:22px; + font-size:18px; +} +#u52_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u53 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u54 { + position:absolute; + left:102px; + top:98px; + width:200px; + height:25px; +} +#u54_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:25px; + background-image:; + text-align:left; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u55 { + position:absolute; + left:18px; + top:203px; + width:72px; + height:22px; + font-size:18px; +} +#u55_img { + position:absolute; + left:0px; + top:0px; + width:72px; + height:22px; +} +#u56 { + position:absolute; + left:0px; + top:0px; + width:72px; + white-space:nowrap; +} +#u57 { + position:absolute; + left:102px; + top:198px; + width:200px; + height:27px; +} +#u57_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:27px; + background-image:; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u58 { + position:absolute; + left:18px; + top:49px; + width:40px; + height:16px; +} +#u58_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:16px; +} +#u59 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u60 { + position:absolute; + left:16px; + top:73px; + width:78px; + height:16px; +} +#u60_img { + position:absolute; + left:0px; + top:0px; + width:78px; + height:16px; +} +#u61 { + position:absolute; + left:0px; + top:0px; + width:78px; + white-space:nowrap; +} +#u62 { + position:absolute; + left:126px; + top:49px; + width:68px; + height:16px; +} +#u62_img { + position:absolute; + left:0px; + top:0px; + width:68px; + height:16px; +} +#u63 { + position:absolute; + left:0px; + top:0px; + width:68px; + white-space:nowrap; +} +#u64 { + position:absolute; + left:262px; + top:49px; + width:27px; + height:16px; +} +#u64_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:16px; +} +#u65 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u66 { + position:absolute; + left:0px; + top:86px; + width:319px; + height:10px; +} +#u66_start { + position:absolute; + left:0px; + top:-5px; + width:18px; + height:20px; +} +#u66_end { + position:absolute; + left:302px; + top:-5px; + width:18px; + height:20px; +} +#u66_line { + position:absolute; + left:0px; + top:5px; + width:319px; + height:1px; +} +#u67 { + position:absolute; + left:170px; + top:236px; + width:132px; + height:30px; +} +#u67_input { + position:absolute; + left:0px; + top:0px; + width:132px; + height:30px; + background-image:url(../../resources/images/transparent.gif); + text-align:center; + font-family:'微软雅黑'; + font-size:18px; + color:#000000; + font-weight:bold; + font-style:normal; + text-decoration:none; +} +#u24_state2 { + position:absolute; + left:0px; + top:0px; + width:319px; + height:280px; + visibility:hidden; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; +} +#u24_state2_content { + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u68 { + position:absolute; + left:16px; + top:47px; + width:73px; + height:22px; + font-size:18px; +} +#u68_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u69 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u70 { + position:absolute; + left:100px; + top:44px; + width:200px; + height:25px; +} +#u70_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:25px; + background-image:; + text-align:left; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u71 { + position:absolute; + left:16px; + top:82px; + width:73px; + height:22px; + font-size:18px; +} +#u71_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u72 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u73 { + position:absolute; + left:100px; + top:79px; + width:200px; + height:25px; +} +#u73_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:25px; + background-image:; + text-align:left; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u74 { + position:absolute; + left:16px; + top:150px; + width:284px; + height:30px; +} +#u74_input { + position:absolute; + left:0px; + top:0px; + width:284px; + height:30px; + background-image:url(../../resources/images/transparent.gif); + text-align:center; + font-family:'微软雅黑'; + font-size:20px; + color:#000000; + font-weight:bold; + font-style:normal; + text-decoration:none; +} +#u75 { + position:absolute; + left:16px; + top:15px; + width:73px; + height:22px; + font-size:18px; +} +#u75_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u76 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u77 { + position:absolute; + left:100px; + top:12px; + width:200px; + height:25px; +} +#u77_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:25px; + background-image:; + text-align:left; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u78 { + position:absolute; + left:16px; + top:117px; + width:72px; + height:22px; + font-size:18px; +} +#u78_img { + position:absolute; + left:0px; + top:0px; + width:72px; + height:22px; +} +#u79 { + position:absolute; + left:0px; + top:0px; + width:72px; + white-space:nowrap; +} +#u80 { + position:absolute; + left:100px; + top:112px; + width:200px; + height:27px; +} +#u80_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:27px; + background-image:; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\346\210\221\347\224\250\345\217\221\345\267\245\350\265\204_-_\350\260\203\347\224\250\345\216\206\345\217\262\350\256\260\345\275\225_-_\347\274\226\350\276\221/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\346\210\221\347\224\250\345\217\221\345\267\245\350\265\204_-_\350\260\203\347\224\250\345\216\206\345\217\262\350\256\260\345\275\225_-_\347\274\226\350\276\221/data.js" new file mode 100644 index 0000000..b386fbd --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\346\210\221\347\224\250\345\217\221\345\267\245\350\265\204_-_\350\260\203\347\224\250\345\216\206\345\217\262\350\256\260\345\275\225_-_\347\274\226\350\276\221/data.js" @@ -0,0 +1,1821 @@ +$axure.loadCurrentPage({ + "url":"我用发工资_-_调用历史记录_-_编辑.html", + "generationDate":new Date(1416993073734.38), + "isCanvasEnabled":false, + "variables":["OnLoadVariable"], + "page":{ + "packageId":"f1b5807b34964fa9ac9b8e145a6c3482", + "type":"Axure:Page", + "name":"我用发工资 - 调用历史记录 - 编辑", + "notes":{ +}, + "style":{ + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "pageAlignment":"near", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "image":null, + "imageHorizontalAlignment":"near", + "imageVerticalAlignment":"near", + "imageRepeat":"auto", + "favicon":null, + "sketchFactor":"0", + "colorStyle":"appliedColor", + "fontName":"应用字体", + "borderWidth":"0"}, + "adaptiveStyles":{ +}, + "interactionMap":{ +}, + "diagram":{ + "objects":[{ + "id":"9ef6483d584f47969fc89354cd8e7c35", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":116}, + "size":{ + "width":8, + "height":36}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ccae4a1e342840c4a857a9a3c8b39c60", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":116}, + "size":{ + "width":8, + "height":36}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u0.png"}}, +{ + "id":"a60e1e9d92a143ea803309b8d1097088", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":192}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ab72d32389524128a7137f5a2c1726ac", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":192}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u2.png"}}, +{ + "id":"2e7942ea9f954db3be710596b0acfb7e", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":255}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"07db8fc4fc894ad2894e5b7b2d6d93ec", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":255}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u2.png"}}, +{ + "id":"a198a3b320fa4903994427223e5c5d5e", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":259, + "y":0}, + "size":{ + "width":60, + "height":10}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"cbab2eb8624644b1b655c783bc88a22d", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":259, + "y":0}, + "size":{ + "width":60, + "height":10}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u6.png"}}, +{ + "id":"ab6d6242d00047f8a243a8377b6c8356", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":6, + "y":6}, + "size":{ + "width":372, + "height":796}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"52"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"5f9cf5ec20dd41d48276de62d28a6642", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":6, + "y":6}, + "size":{ + "width":372, + "height":796}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"52"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u8.png"}}, +{ + "id":"18ad6eae1cdd49e79055084f7e96826b", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":32, + "y":120}, + "size":{ + "width":320, + "height":568}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"b968f448073144cab2f613b25e44ceb1", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":32, + "y":120}, + "size":{ + "width":320, + "height":568}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u10.png"}}, +{ + "id":"2b71272ca6814c0bbde2a6cfcb491837", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":157, + "y":66}, + "size":{ + "width":70, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"3fa1e303642141358ecc3406176ab44f", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":157, + "y":66}, + "size":{ + "width":70, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u12.png"}}, +{ + "id":"1da4bbac62794bedba77f7d31e11489a", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":185, + "y":40}, + "size":{ + "width":14, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"96700ada1c3d4fb492a0b39922f6e3cd", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":185, + "y":40}, + "size":{ + "width":14, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u14.png"}}, +{ + "id":"8779a999c0b44b9982f7c3b8a89faa52", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":156, + "y":704}, + "size":{ + "width":72, + "height":72}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"1fbb6ee86c49494fb5d8663876c4504b", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":156, + "y":704}, + "size":{ + "width":72, + "height":72}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u16.png"}}, +{ + "id":"c5a1814559cc471ab0c8395befe7ceff", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":32, + "y":140}, + "size":{ + "width":319, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"7072ade4578a49e6a0acaad20d139359", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":32, + "y":140}, + "size":{ + "width":319, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_首次进入/u18.png"}}, +{ + "id":"39c4c49b0c034888b383a47830405a46", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "location":{ + "x":40, + "y":159}, + "size":{ + "width":22, + "height":22}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"24bf41c651b8492b94f94e1f798ed8e2", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":40, + "y":159}, + "size":{ + "width":22, + "height":22}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_首次进入/u20.png"}}, +{ + "id":"88f63e08f45d4bd2b5a006d17cb2d636", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontSize":"20px", + "fontWeight":"700", + "location":{ + "x":141, + "y":156}, + "size":{ + "width":101, + "height":24}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"feca665753df4b06aac429ab4f26dd3f", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontSize":"20px", + "fontWeight":"700", + "location":{ + "x":141, + "y":156}, + "size":{ + "width":101, + "height":24}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"332c621973b54353a44fc9e423578f3f", + "label":"手动登记工资表", + "type":"dynamicPanel", + "styleType":"dynamicPanel", + "visible":true, + "style":{ + "location":{ + "x":32, + "y":210}, + "size":{ + "width":319, + "height":280}}, + "adaptiveStyles":{ +}, + "scrollbars":"none", + "fitToContent":false, + "propagate":false, + "diagrams":[{ + "id":"1d81c224dc334659ba6bd4bbb65217bd", + "label":"编辑状态", + "type":"Axure:PanelDiagram", + "objects":[{ + "id":"4c9cce93b83142d0a93ff667054ced0e", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":16, + "y":47}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c97846e7e4584635b7cc9f743f1ff11d", + "label":"", + "isContained":true, + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":16, + "y":47}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"2bcbf93a10254a84bdfc9b72c1ea54ab", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"textBox", + "styleType":"textBox", + "visible":true, + "style":{ + "location":{ + "x":100, + "y":44}, + "size":{ + "width":200, + "height":25}}, + "adaptiveStyles":{ +}}, +{ + "id":"41d003d4b4164f3abe919c1ea41a5f2e", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":16, + "y":82}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"b8cebda7ba2e40b8ae35d3125a5c2eb6", + "label":"", + "isContained":true, + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":16, + "y":82}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"2f64232dedc14ca3b1934564ef0e4f1f", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"textBox", + "styleType":"textBox", + "visible":true, + "style":{ + "location":{ + "x":100, + "y":79}, + "size":{ + "width":200, + "height":25}}, + "adaptiveStyles":{ +}}, +{ + "id":"7440e3514c874752aad9946b2997e24f", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"button", + "styleType":"button", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"20px", + "fontWeight":"700", + "location":{ + "x":16, + "y":150}, + "size":{ + "width":284, + "height":30}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 审批页面", + "target":{ + "targetType":"page", + "url":"审批页面.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true}, +{ + "id":"4eaee00259354f7f889c30c7fb3e2460", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":16, + "y":15}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"8230f4c410124a1da654074465429829", + "label":"", + "isContained":true, + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":16, + "y":15}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"2057374bc7d1449783cad43f2f5aa933", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"textBox", + "styleType":"textBox", + "visible":true, + "style":{ + "location":{ + "x":100, + "y":12}, + "size":{ + "width":200, + "height":25}}, + "adaptiveStyles":{ +}}, +{ + "id":"95509c72f97f48fa947f8230099801fe", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":16, + "y":117}, + "size":{ + "width":72, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"db0be5f2c27a48ffa95ea33ea511cc8d", + "label":"", + "isContained":true, + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":16, + "y":117}, + "size":{ + "width":72, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"16b63c9034454f85afe7fbcf87d31ecd", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"comboBox", + "styleType":"comboBox", + "visible":true, + "style":{ + "location":{ + "x":100, + "y":112}, + "size":{ + "width":200, + "height":27}}, + "adaptiveStyles":{ +}}]}, +{ + "id":"a3e6bd8e70284b69baf3c623094f6d50", + "label":"初始状态", + "type":"Axure:PanelDiagram", + "objects":[{ + "id":"46ca3dbcc8d44dfc898063ba030d6f9d", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":26, + "y":9}, + "size":{ + "width":219, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"dafb210b758c4bdb82ef6bf940b07d58", + "label":"", + "isContained":true, + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":26, + "y":9}, + "size":{ + "width":219, + "height":30}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"6908dd77647644ceb521e2184a9c09fe", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"horizontalLine", + "styleType":"horizontalLine", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":39}, + "size":{ + "width":319, + "height":10}, + "borderFill":{ + "fillType":"solid", + "color":0xFFCCCCCC}}, + "adaptiveStyles":{ +}, + "images":{ + "start~":"resources/images/transparent.gif", + "end~":"resources/images/transparent.gif", + "line~":"images/我用发工资_-_手动登记/u27_line.png"}}, +{ + "id":"e4454f9d109149d69a95a575126b9f86", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":62}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"6aef9d17e98d4dedafa448fc3c9ddb90", + "label":"", + "isContained":true, + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":62}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"4a0cbe1901b0488ca6f8c246c035b006", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"textBox", + "styleType":"textBox", + "visible":true, + "style":{ + "location":{ + "x":101.5, + "y":59}, + "size":{ + "width":200, + "height":25}}, + "adaptiveStyles":{ +}}, +{ + "id":"bea0349cbfee47b1bf292c02ca09078e", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":97}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d2a0b380d1134ffbaf3305bc083d5395", + "label":"", + "isContained":true, + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":97}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"d2c1c34bcbf74f0f88d57f58fae5669d", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"textBox", + "styleType":"textBox", + "visible":true, + "style":{ + "location":{ + "x":101.5, + "y":94}, + "size":{ + "width":200, + "height":25}}, + "adaptiveStyles":{ +}}, +{ + "id":"42588ea6e25d44f6a914dc1f4be03326", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":131}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"777ce4f2940e4d8eb927cbbfa2b25da0", + "label":"", + "isContained":true, + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":131}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"f83ae1e9b31044908e509bfb6074f586", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"textBox", + "styleType":"textBox", + "visible":true, + "style":{ + "location":{ + "x":102, + "y":128}, + "size":{ + "width":200, + "height":25}}, + "adaptiveStyles":{ +}}, +{ + "id":"81e6b8616e674617a1be96df46a1f56b", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":168}, + "size":{ + "width":72, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a5915e643adf475583bca8ef02043c55", + "label":"", + "isContained":true, + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":168}, + "size":{ + "width":72, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"aeaec9643579436791091c68b92661e4", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"comboBox", + "styleType":"comboBox", + "visible":true, + "style":{ + "location":{ + "x":102, + "y":163}, + "size":{ + "width":200, + "height":27}}, + "adaptiveStyles":{ +}}, +{ + "id":"6585b1420e4546279fbe62e174bb2bd6", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"button", + "styleType":"button", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"18px", + "fontWeight":"700", + "location":{ + "x":18, + "y":200}, + "size":{ + "width":132, + "height":30}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"setPanelState", + "description":"设置 手动登记工资表 to 添加记录状态 向下滑动 in 1500ms", + "panelsToStates":[{ + "panelPath":["332c621973b54353a44fc9e423578f3f"], + "stateInfo":{ + "setStateType":"diagram", + "stateNumber":3, + "stateValue":{ + "exprType":"stringLiteral", + "value":"1", + "stos":[]}, + "loop":false, + "showWhenSet":false, + "options":{ + "animateIn":{ + "easing":"slideDown", + "duration":1500}, + "compress":false}}}]}]}]}}, + "tabbable":true}, +{ + "id":"99d5b744c6e045a798da88e2ede45e1a", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"button", + "styleType":"button", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"18px", + "fontWeight":"700", + "location":{ + "x":170, + "y":200}, + "size":{ + "width":132, + "height":30}}, + "adaptiveStyles":{ +}}]}, +{ + "id":"cbd2637cad7244bba77400ba3c07526d", + "label":"添加记录状态", + "type":"Axure:PanelDiagram", + "objects":[{ + "id":"b63d1cc5a8374db6822d4256d20aa011", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":26, + "y":9}, + "size":{ + "width":255, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"abc2014471b94b2bbac8eb78da62667e", + "label":"", + "isContained":true, + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":26, + "y":9}, + "size":{ + "width":255, + "height":30}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"591a1763a6cb45d19d12a5623c657089", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"horizontalLine", + "styleType":"horizontalLine", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":39}, + "size":{ + "width":319, + "height":10}, + "borderFill":{ + "fillType":"solid", + "color":0xFFCCCCCC}}, + "adaptiveStyles":{ +}, + "images":{ + "start~":"resources/images/transparent.gif", + "end~":"resources/images/transparent.gif", + "line~":"images/我用发工资_-_手动登记/u27_line.png"}}, +{ + "id":"1fcf81beebf841a599fb41080e564973", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":133}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"2a96ff1d43204e698323dac8ea16b2b8", + "label":"", + "isContained":true, + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":133}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"ccc89d72ccb047b6b564b5da4f773475", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"textBox", + "styleType":"textBox", + "visible":true, + "style":{ + "location":{ + "x":102, + "y":130}, + "size":{ + "width":200, + "height":25}}, + "adaptiveStyles":{ +}}, +{ + "id":"669820eb54514edaacd92d8059210d28", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":168}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"6b1f22e966b641f58e2721cb55efb5a4", + "label":"", + "isContained":true, + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":168}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"473e981bfb94458289da9901415be99a", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"textBox", + "styleType":"textBox", + "visible":true, + "style":{ + "location":{ + "x":102, + "y":165}, + "size":{ + "width":200, + "height":25}}, + "adaptiveStyles":{ +}}, +{ + "id":"cf8ff86444264d34831652824dd02921", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"button", + "styleType":"button", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"18px", + "fontWeight":"700", + "location":{ + "x":18, + "y":236}, + "size":{ + "width":132, + "height":30}}, + "adaptiveStyles":{ +}}, +{ + "id":"26bc2232e1e84a81ad8c3786873ab69e", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":101}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"83b3d580f7124c82b3ead46ebb682435", + "label":"", + "isContained":true, + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":101}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"4c033a66971b489ca91d9558c5cad625", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"textBox", + "styleType":"textBox", + "visible":true, + "style":{ + "location":{ + "x":102, + "y":98}, + "size":{ + "width":200, + "height":25}}, + "adaptiveStyles":{ +}}, +{ + "id":"3e33e024b27147db9c94d5bd53aaa0e5", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":203}, + "size":{ + "width":72, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"06e530bc3fb24dce965d232b9650dad7", + "label":"", + "isContained":true, + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":203}, + "size":{ + "width":72, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"2e45780b518c47a6a95acc346084ac10", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"comboBox", + "styleType":"comboBox", + "visible":true, + "style":{ + "location":{ + "x":102, + "y":198}, + "size":{ + "width":200, + "height":27}}, + "adaptiveStyles":{ +}}, +{ + "id":"05d7e2685a344e469b6141c60301e435", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":18, + "y":49}, + "size":{ + "width":40, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"b62d200ea174485d9a6d99a476d2d365", + "label":"", + "isContained":true, + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":18, + "y":49}, + "size":{ + "width":40, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"f5ed5123cdea44748a67413e6471121b", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":16, + "y":73}, + "size":{ + "width":78, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d4928470889d4beb9b003bdfe1946abc", + "label":"", + "isContained":true, + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":16, + "y":73}, + "size":{ + "width":78, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"8755ec948474444fa171e3b1ababe5ac", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":126, + "y":49}, + "size":{ + "width":68, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"497f33f8e14b4371bdc574d06ac74cfe", + "label":"", + "isContained":true, + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":126, + "y":49}, + "size":{ + "width":68, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"43d5ae359662480489f1cc6e239ea865", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":262, + "y":49}, + "size":{ + "width":27, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"3d36bd6a721c488aaed2622f42a673c4", + "label":"", + "isContained":true, + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":262, + "y":49}, + "size":{ + "width":27, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"3c3074693b154c3280d94cf4c8871c5e", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"horizontalLine", + "styleType":"horizontalLine", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":86}, + "size":{ + "width":319, + "height":10}, + "borderFill":{ + "fillType":"solid", + "color":0xFFCCCCCC}}, + "adaptiveStyles":{ +}, + "images":{ + "start~":"resources/images/transparent.gif", + "end~":"resources/images/transparent.gif", + "line~":"images/我用发工资_-_手动登记/u27_line.png"}}, +{ + "id":"67627fa5ef4544bc923a9fe0210b8378", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"imageMapRegion", + "styleType":"imageMapRegion", + "visible":true, + "style":{ + "location":{ + "x":18, + "y":49}, + "size":{ + "width":284, + "height":42}}, + "adaptiveStyles":{ +}}, +{ + "id":"d4535173d35241e1998c44d6be2b767b", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"button", + "styleType":"button", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"18px", + "fontWeight":"700", + "location":{ + "x":170, + "y":236}, + "size":{ + "width":132, + "height":30}}, + "adaptiveStyles":{ +}}]}]}]}}, + "masters":{ +}, + "objectPaths":{ + "9ef6483d584f47969fc89354cd8e7c35":{ + "scriptId":"u0"}, + "ccae4a1e342840c4a857a9a3c8b39c60":{ + "scriptId":"u1"}, + "a60e1e9d92a143ea803309b8d1097088":{ + "scriptId":"u2"}, + "ab72d32389524128a7137f5a2c1726ac":{ + "scriptId":"u3"}, + "2e7942ea9f954db3be710596b0acfb7e":{ + "scriptId":"u4"}, + "07db8fc4fc894ad2894e5b7b2d6d93ec":{ + "scriptId":"u5"}, + "a198a3b320fa4903994427223e5c5d5e":{ + "scriptId":"u6"}, + "cbab2eb8624644b1b655c783bc88a22d":{ + "scriptId":"u7"}, + "ab6d6242d00047f8a243a8377b6c8356":{ + "scriptId":"u8"}, + "5f9cf5ec20dd41d48276de62d28a6642":{ + "scriptId":"u9"}, + "18ad6eae1cdd49e79055084f7e96826b":{ + "scriptId":"u10"}, + "b968f448073144cab2f613b25e44ceb1":{ + "scriptId":"u11"}, + "2b71272ca6814c0bbde2a6cfcb491837":{ + "scriptId":"u12"}, + "3fa1e303642141358ecc3406176ab44f":{ + "scriptId":"u13"}, + "1da4bbac62794bedba77f7d31e11489a":{ + "scriptId":"u14"}, + "96700ada1c3d4fb492a0b39922f6e3cd":{ + "scriptId":"u15"}, + "8779a999c0b44b9982f7c3b8a89faa52":{ + "scriptId":"u16"}, + "1fbb6ee86c49494fb5d8663876c4504b":{ + "scriptId":"u17"}, + "c5a1814559cc471ab0c8395befe7ceff":{ + "scriptId":"u18"}, + "7072ade4578a49e6a0acaad20d139359":{ + "scriptId":"u19"}, + "39c4c49b0c034888b383a47830405a46":{ + "scriptId":"u20"}, + "24bf41c651b8492b94f94e1f798ed8e2":{ + "scriptId":"u21"}, + "88f63e08f45d4bd2b5a006d17cb2d636":{ + "scriptId":"u22"}, + "feca665753df4b06aac429ab4f26dd3f":{ + "scriptId":"u23"}, + "332c621973b54353a44fc9e423578f3f":{ + "scriptId":"u24"}, + "4c9cce93b83142d0a93ff667054ced0e":{ + "scriptId":"u25"}, + "c97846e7e4584635b7cc9f743f1ff11d":{ + "scriptId":"u26"}, + "2bcbf93a10254a84bdfc9b72c1ea54ab":{ + "scriptId":"u27"}, + "41d003d4b4164f3abe919c1ea41a5f2e":{ + "scriptId":"u28"}, + "b8cebda7ba2e40b8ae35d3125a5c2eb6":{ + "scriptId":"u29"}, + "2f64232dedc14ca3b1934564ef0e4f1f":{ + "scriptId":"u30"}, + "7440e3514c874752aad9946b2997e24f":{ + "scriptId":"u31"}, + "4eaee00259354f7f889c30c7fb3e2460":{ + "scriptId":"u32"}, + "8230f4c410124a1da654074465429829":{ + "scriptId":"u33"}, + "2057374bc7d1449783cad43f2f5aa933":{ + "scriptId":"u34"}, + "95509c72f97f48fa947f8230099801fe":{ + "scriptId":"u35"}, + "db0be5f2c27a48ffa95ea33ea511cc8d":{ + "scriptId":"u36"}, + "16b63c9034454f85afe7fbcf87d31ecd":{ + "scriptId":"u37"}, + "46ca3dbcc8d44dfc898063ba030d6f9d":{ + "scriptId":"u38"}, + "dafb210b758c4bdb82ef6bf940b07d58":{ + "scriptId":"u39"}, + "6908dd77647644ceb521e2184a9c09fe":{ + "scriptId":"u40"}, + "e4454f9d109149d69a95a575126b9f86":{ + "scriptId":"u41"}, + "6aef9d17e98d4dedafa448fc3c9ddb90":{ + "scriptId":"u42"}, + "4a0cbe1901b0488ca6f8c246c035b006":{ + "scriptId":"u43"}, + "bea0349cbfee47b1bf292c02ca09078e":{ + "scriptId":"u44"}, + "d2a0b380d1134ffbaf3305bc083d5395":{ + "scriptId":"u45"}, + "d2c1c34bcbf74f0f88d57f58fae5669d":{ + "scriptId":"u46"}, + "42588ea6e25d44f6a914dc1f4be03326":{ + "scriptId":"u47"}, + "777ce4f2940e4d8eb927cbbfa2b25da0":{ + "scriptId":"u48"}, + "f83ae1e9b31044908e509bfb6074f586":{ + "scriptId":"u49"}, + "81e6b8616e674617a1be96df46a1f56b":{ + "scriptId":"u50"}, + "a5915e643adf475583bca8ef02043c55":{ + "scriptId":"u51"}, + "aeaec9643579436791091c68b92661e4":{ + "scriptId":"u52"}, + "6585b1420e4546279fbe62e174bb2bd6":{ + "scriptId":"u53"}, + "99d5b744c6e045a798da88e2ede45e1a":{ + "scriptId":"u54"}, + "b63d1cc5a8374db6822d4256d20aa011":{ + "scriptId":"u55"}, + "abc2014471b94b2bbac8eb78da62667e":{ + "scriptId":"u56"}, + "591a1763a6cb45d19d12a5623c657089":{ + "scriptId":"u57"}, + "1fcf81beebf841a599fb41080e564973":{ + "scriptId":"u58"}, + "2a96ff1d43204e698323dac8ea16b2b8":{ + "scriptId":"u59"}, + "ccc89d72ccb047b6b564b5da4f773475":{ + "scriptId":"u60"}, + "669820eb54514edaacd92d8059210d28":{ + "scriptId":"u61"}, + "6b1f22e966b641f58e2721cb55efb5a4":{ + "scriptId":"u62"}, + "473e981bfb94458289da9901415be99a":{ + "scriptId":"u63"}, + "cf8ff86444264d34831652824dd02921":{ + "scriptId":"u64"}, + "26bc2232e1e84a81ad8c3786873ab69e":{ + "scriptId":"u65"}, + "83b3d580f7124c82b3ead46ebb682435":{ + "scriptId":"u66"}, + "4c033a66971b489ca91d9558c5cad625":{ + "scriptId":"u67"}, + "3e33e024b27147db9c94d5bd53aaa0e5":{ + "scriptId":"u68"}, + "06e530bc3fb24dce965d232b9650dad7":{ + "scriptId":"u69"}, + "2e45780b518c47a6a95acc346084ac10":{ + "scriptId":"u70"}, + "05d7e2685a344e469b6141c60301e435":{ + "scriptId":"u71"}, + "b62d200ea174485d9a6d99a476d2d365":{ + "scriptId":"u72"}, + "f5ed5123cdea44748a67413e6471121b":{ + "scriptId":"u73"}, + "d4928470889d4beb9b003bdfe1946abc":{ + "scriptId":"u74"}, + "8755ec948474444fa171e3b1ababe5ac":{ + "scriptId":"u75"}, + "497f33f8e14b4371bdc574d06ac74cfe":{ + "scriptId":"u76"}, + "43d5ae359662480489f1cc6e239ea865":{ + "scriptId":"u77"}, + "3d36bd6a721c488aaed2622f42a673c4":{ + "scriptId":"u78"}, + "3c3074693b154c3280d94cf4c8871c5e":{ + "scriptId":"u79"}, + "67627fa5ef4544bc923a9fe0210b8378":{ + "scriptId":"u80"}, + "d4535173d35241e1998c44d6be2b767b":{ + "scriptId":"u81"}}}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\346\210\221\347\224\250\345\217\221\345\267\245\350\265\204_-_\350\260\203\347\224\250\345\216\206\345\217\262\350\256\260\345\275\225_-_\347\274\226\350\276\221/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\346\210\221\347\224\250\345\217\221\345\267\245\350\265\204_-_\350\260\203\347\224\250\345\216\206\345\217\262\350\256\260\345\275\225_-_\347\274\226\350\276\221/styles.css" new file mode 100644 index 0000000..7e4f6be --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\346\210\221\347\224\250\345\217\221\345\267\245\350\265\204_-_\350\260\203\347\224\250\345\216\206\345\217\262\350\256\260\345\275\225_-_\347\274\226\350\276\221/styles.css" @@ -0,0 +1,1203 @@ +body { + margin:0px; + background-image:none; + position:static; + left:auto; + width:378px; + margin-left:0; + margin-right:0; + text-align:left; +} +#base { + position:absolute; + z-index:0; +} +#u0 { + position:absolute; + left:0px; + top:116px; + width:8px; + height:36px; +} +#u0_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:36px; +} +#u1 { + position:absolute; + left:2px; + top:10px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u2 { + position:absolute; + left:0px; + top:192px; + width:8px; + height:27px; +} +#u2_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:27px; +} +#u3 { + position:absolute; + left:2px; + top:6px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u4 { + position:absolute; + left:0px; + top:255px; + width:8px; + height:27px; +} +#u4_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:27px; +} +#u5 { + position:absolute; + left:2px; + top:6px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u6 { + position:absolute; + left:259px; + top:0px; + width:60px; + height:10px; +} +#u6_img { + position:absolute; + left:0px; + top:0px; + width:60px; + height:10px; +} +#u7 { + position:absolute; + left:2px; + top:-3px; + width:56px; + visibility:hidden; + word-wrap:break-word; +} +#u8 { + position:absolute; + left:6px; + top:6px; + width:372px; + height:796px; +} +#u8_img { + position:absolute; + left:0px; + top:0px; + width:372px; + height:796px; +} +#u9 { + position:absolute; + left:2px; + top:390px; + width:368px; + visibility:hidden; + word-wrap:break-word; +} +#u10 { + position:absolute; + left:32px; + top:120px; + width:320px; + height:568px; +} +#u10_img { + position:absolute; + left:0px; + top:0px; + width:320px; + height:568px; +} +#u11 { + position:absolute; + left:2px; + top:276px; + width:316px; + visibility:hidden; + word-wrap:break-word; +} +#u12 { + position:absolute; + left:157px; + top:66px; + width:70px; + height:14px; +} +#u12_img { + position:absolute; + left:0px; + top:0px; + width:70px; + height:14px; +} +#u13 { + position:absolute; + left:2px; + top:-1px; + width:66px; + visibility:hidden; + word-wrap:break-word; +} +#u14 { + position:absolute; + left:185px; + top:40px; + width:14px; + height:14px; +} +#u14_img { + position:absolute; + left:0px; + top:0px; + width:14px; + height:14px; +} +#u15 { + position:absolute; + left:2px; + top:-1px; + width:10px; + visibility:hidden; + word-wrap:break-word; +} +#u16 { + position:absolute; + left:156px; + top:704px; + width:72px; + height:72px; +} +#u16_img { + position:absolute; + left:0px; + top:0px; + width:72px; + height:72px; +} +#u17 { + position:absolute; + left:2px; + top:28px; + width:68px; + visibility:hidden; + word-wrap:break-word; +} +#u18 { + position:absolute; + left:32px; + top:140px; + width:319px; + height:60px; +} +#u18_img { + position:absolute; + left:0px; + top:0px; + width:319px; + height:60px; +} +#u19 { + position:absolute; + left:2px; + top:22px; + width:315px; + visibility:hidden; + word-wrap:break-word; +} +#u20 { + position:absolute; + left:40px; + top:159px; + width:22px; + height:22px; +} +#u20_img { + position:absolute; + left:0px; + top:0px; + width:22px; + height:22px; +} +#u21 { + position:absolute; + left:2px; + top:3px; + width:18px; + visibility:hidden; + word-wrap:break-word; +} +#u22 { + position:absolute; + left:141px; + top:156px; + width:101px; + height:24px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + font-size:20px; +} +#u22_img { + position:absolute; + left:0px; + top:0px; + width:101px; + height:24px; +} +#u23 { + position:absolute; + left:0px; + top:0px; + width:101px; + white-space:nowrap; +} +#u24 { + position:absolute; + left:32px; + top:210px; + width:319px; + height:280px; + overflow:hidden; +} +#u24_state0 { + position:absolute; + left:0px; + top:0px; + width:319px; + height:280px; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; +} +#u24_state0_content { + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u25 { + position:absolute; + left:16px; + top:47px; + width:73px; + height:22px; + font-size:18px; +} +#u25_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u26 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u27 { + position:absolute; + left:100px; + top:44px; + width:200px; + height:25px; +} +#u27_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:25px; + background-image:; + text-align:left; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u28 { + position:absolute; + left:16px; + top:82px; + width:73px; + height:22px; + font-size:18px; +} +#u28_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u29 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u30 { + position:absolute; + left:100px; + top:79px; + width:200px; + height:25px; +} +#u30_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:25px; + background-image:; + text-align:left; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u31 { + position:absolute; + left:16px; + top:150px; + width:284px; + height:30px; +} +#u31_input { + position:absolute; + left:0px; + top:0px; + width:284px; + height:30px; + background-image:url(../../resources/images/transparent.gif); + text-align:center; + font-family:'微软雅黑'; + font-size:20px; + color:#000000; + font-weight:bold; + font-style:normal; + text-decoration:none; +} +#u32 { + position:absolute; + left:16px; + top:15px; + width:73px; + height:22px; + font-size:18px; +} +#u32_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u33 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u34 { + position:absolute; + left:100px; + top:12px; + width:200px; + height:25px; +} +#u34_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:25px; + background-image:; + text-align:left; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u35 { + position:absolute; + left:16px; + top:117px; + width:72px; + height:22px; + font-size:18px; +} +#u35_img { + position:absolute; + left:0px; + top:0px; + width:72px; + height:22px; +} +#u36 { + position:absolute; + left:0px; + top:0px; + width:72px; + white-space:nowrap; +} +#u37 { + position:absolute; + left:100px; + top:112px; + width:200px; + height:27px; +} +#u37_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:27px; + background-image:; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u24_state1 { + position:absolute; + left:0px; + top:0px; + width:319px; + height:280px; + visibility:hidden; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; +} +#u24_state1_content { + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u38 { + position:absolute; + left:26px; + top:9px; + width:219px; + height:30px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u38_img { + position:absolute; + left:0px; + top:0px; + width:219px; + height:30px; +} +#u39 { + position:absolute; + left:0px; + top:0px; + width:219px; + white-space:nowrap; +} +#u40 { + position:absolute; + left:0px; + top:39px; + width:319px; + height:10px; +} +#u40_start { + position:absolute; + left:0px; + top:-5px; + width:18px; + height:20px; +} +#u40_end { + position:absolute; + left:302px; + top:-5px; + width:18px; + height:20px; +} +#u40_line { + position:absolute; + left:0px; + top:5px; + width:319px; + height:1px; +} +#u41 { + position:absolute; + left:18px; + top:62px; + width:73px; + height:22px; + font-size:18px; +} +#u41_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u42 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u43 { + position:absolute; + left:102px; + top:59px; + width:200px; + height:25px; +} +#u43_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:25px; + background-image:; + text-align:left; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u44 { + position:absolute; + left:18px; + top:97px; + width:73px; + height:22px; + font-size:18px; +} +#u44_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u45 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u46 { + position:absolute; + left:102px; + top:94px; + width:200px; + height:25px; +} +#u46_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:25px; + background-image:; + text-align:left; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u47 { + position:absolute; + left:18px; + top:131px; + width:73px; + height:22px; + font-size:18px; +} +#u47_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u48 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u49 { + position:absolute; + left:102px; + top:128px; + width:200px; + height:25px; +} +#u49_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:25px; + background-image:; + text-align:left; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u50 { + position:absolute; + left:18px; + top:168px; + width:72px; + height:22px; + font-size:18px; +} +#u50_img { + position:absolute; + left:0px; + top:0px; + width:72px; + height:22px; +} +#u51 { + position:absolute; + left:0px; + top:0px; + width:72px; + white-space:nowrap; +} +#u52 { + position:absolute; + left:102px; + top:163px; + width:200px; + height:27px; +} +#u52_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:27px; + background-image:; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u53 { + position:absolute; + left:18px; + top:200px; + width:132px; + height:30px; +} +#u53_input { + position:absolute; + left:0px; + top:0px; + width:132px; + height:30px; + background-image:url(../../resources/images/transparent.gif); + text-align:center; + font-family:'微软雅黑'; + font-size:18px; + color:#000000; + font-weight:bold; + font-style:normal; + text-decoration:none; +} +#u54 { + position:absolute; + left:170px; + top:200px; + width:132px; + height:30px; +} +#u54_input { + position:absolute; + left:0px; + top:0px; + width:132px; + height:30px; + background-image:url(../../resources/images/transparent.gif); + text-align:center; + font-family:'微软雅黑'; + font-size:18px; + color:#000000; + font-weight:bold; + font-style:normal; + text-decoration:none; +} +#u24_state2 { + position:absolute; + left:0px; + top:0px; + width:319px; + height:280px; + visibility:hidden; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; +} +#u24_state2_content { + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u55 { + position:absolute; + left:26px; + top:9px; + width:255px; + height:30px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u55_img { + position:absolute; + left:0px; + top:0px; + width:255px; + height:30px; +} +#u56 { + position:absolute; + left:0px; + top:0px; + width:255px; + white-space:nowrap; +} +#u57 { + position:absolute; + left:0px; + top:39px; + width:319px; + height:10px; +} +#u57_start { + position:absolute; + left:0px; + top:-5px; + width:18px; + height:20px; +} +#u57_end { + position:absolute; + left:302px; + top:-5px; + width:18px; + height:20px; +} +#u57_line { + position:absolute; + left:0px; + top:5px; + width:319px; + height:1px; +} +#u58 { + position:absolute; + left:18px; + top:133px; + width:73px; + height:22px; + font-size:18px; +} +#u58_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u59 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u60 { + position:absolute; + left:102px; + top:130px; + width:200px; + height:25px; +} +#u60_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:25px; + background-image:; + text-align:left; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u61 { + position:absolute; + left:18px; + top:168px; + width:73px; + height:22px; + font-size:18px; +} +#u61_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u62 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u63 { + position:absolute; + left:102px; + top:165px; + width:200px; + height:25px; +} +#u63_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:25px; + background-image:; + text-align:left; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u64 { + position:absolute; + left:18px; + top:236px; + width:132px; + height:30px; +} +#u64_input { + position:absolute; + left:0px; + top:0px; + width:132px; + height:30px; + background-image:url(../../resources/images/transparent.gif); + text-align:center; + font-family:'微软雅黑'; + font-size:18px; + color:#000000; + font-weight:bold; + font-style:normal; + text-decoration:none; +} +#u65 { + position:absolute; + left:18px; + top:101px; + width:73px; + height:22px; + font-size:18px; +} +#u65_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u66 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u67 { + position:absolute; + left:102px; + top:98px; + width:200px; + height:25px; +} +#u67_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:25px; + background-image:; + text-align:left; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u68 { + position:absolute; + left:18px; + top:203px; + width:72px; + height:22px; + font-size:18px; +} +#u68_img { + position:absolute; + left:0px; + top:0px; + width:72px; + height:22px; +} +#u69 { + position:absolute; + left:0px; + top:0px; + width:72px; + white-space:nowrap; +} +#u70 { + position:absolute; + left:102px; + top:198px; + width:200px; + height:27px; +} +#u70_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:27px; + background-image:; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u71 { + position:absolute; + left:18px; + top:49px; + width:40px; + height:16px; +} +#u71_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:16px; +} +#u72 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u73 { + position:absolute; + left:16px; + top:73px; + width:78px; + height:16px; +} +#u73_img { + position:absolute; + left:0px; + top:0px; + width:78px; + height:16px; +} +#u74 { + position:absolute; + left:0px; + top:0px; + width:78px; + white-space:nowrap; +} +#u75 { + position:absolute; + left:126px; + top:49px; + width:68px; + height:16px; +} +#u75_img { + position:absolute; + left:0px; + top:0px; + width:68px; + height:16px; +} +#u76 { + position:absolute; + left:0px; + top:0px; + width:68px; + white-space:nowrap; +} +#u77 { + position:absolute; + left:262px; + top:49px; + width:27px; + height:16px; +} +#u77_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:16px; +} +#u78 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u79 { + position:absolute; + left:0px; + top:86px; + width:319px; + height:10px; +} +#u79_start { + position:absolute; + left:0px; + top:-5px; + width:18px; + height:20px; +} +#u79_end { + position:absolute; + left:302px; + top:-5px; + width:18px; + height:20px; +} +#u79_line { + position:absolute; + left:0px; + top:5px; + width:319px; + height:1px; +} +#u80 { + position:absolute; + left:18px; + top:49px; + width:284px; + height:42px; + overflow:hidden; + background-image:url('../../resources/images/transparent.gif'); +} +#u81 { + position:absolute; + left:170px; + top:236px; + width:132px; + height:30px; +} +#u81_input { + position:absolute; + left:0px; + top:0px; + width:132px; + height:30px; + background-image:url(../../resources/images/transparent.gif); + text-align:center; + font-family:'微软雅黑'; + font-size:18px; + color:#000000; + font-weight:bold; + font-style:normal; + text-decoration:none; +} diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\346\210\221\350\246\201\345\217\221\345\267\245\350\265\204_-_\345\274\225\345\257\274\351\241\265_-_\351\235\236\351\246\226\346\254\241/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\346\210\221\350\246\201\345\217\221\345\267\245\350\265\204_-_\345\274\225\345\257\274\351\241\265_-_\351\235\236\351\246\226\346\254\241/data.js" new file mode 100644 index 0000000..4136cc5 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\346\210\221\350\246\201\345\217\221\345\267\245\350\265\204_-_\345\274\225\345\257\274\351\241\265_-_\351\235\236\351\246\226\346\254\241/data.js" @@ -0,0 +1,4599 @@ +$axure.loadCurrentPage({ + "url":"我要发工资_-_引导页_-_非首次.html", + "generationDate":new Date(1416993071515.63), + "isCanvasEnabled":false, + "variables":["OnLoadVariable"], + "page":{ + "packageId":"b4139f3df4484d78a9acdf729627e757", + "type":"Axure:Page", + "name":"我要发工资 - 引导页 - 非首次", + "notes":{ +}, + "style":{ + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "pageAlignment":"near", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "image":null, + "imageHorizontalAlignment":"near", + "imageVerticalAlignment":"near", + "imageRepeat":"auto", + "favicon":null, + "sketchFactor":"0", + "colorStyle":"appliedColor", + "fontName":"应用字体", + "borderWidth":"0"}, + "adaptiveStyles":{ +}, + "interactionMap":{ +}, + "diagram":{ + "objects":[{ + "id":"db4d7009166c489e84813f0de820482d", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":116}, + "size":{ + "width":8, + "height":36}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"7ae61cb339ec404f8c9eeffdb1cad956", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":116}, + "size":{ + "width":8, + "height":36}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u0.png"}}, +{ + "id":"feef0277060c46b7950647d339789cd7", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":192}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"4f6c450dbf7543648443130e398dbb1b", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":192}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u2.png"}}, +{ + "id":"4346a7d29377478084b0e7e83b1e590f", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":255}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"4e9753b1f68448408ec4fa56d2654b5c", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":255}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u2.png"}}, +{ + "id":"04b1ed1725614393a3d2862b6b4ac972", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":259, + "y":0}, + "size":{ + "width":60, + "height":10}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d4eea12e64404934a03e473b33ee3905", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":259, + "y":0}, + "size":{ + "width":60, + "height":10}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u6.png"}}, +{ + "id":"452b1eeadeb44900a9416b515f8a743c", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":6, + "y":6}, + "size":{ + "width":372, + "height":796}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"52"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ac531ffe5eee46c9b7f75b025ee5b195", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":6, + "y":6}, + "size":{ + "width":372, + "height":796}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"52"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u8.png"}}, +{ + "id":"a7992993efda4a41864960ca03bbf88b", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":32, + "y":120}, + "size":{ + "width":320, + "height":568}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"07f1f0f4b9254c26b9f22e82699de94d", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":32, + "y":120}, + "size":{ + "width":320, + "height":568}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u10.png"}}, +{ + "id":"4ccc16675faf4ec99fb598a427d1cede", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":157, + "y":66}, + "size":{ + "width":70, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"1f871c6140034155afd46388daf0bfff", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":157, + "y":66}, + "size":{ + "width":70, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u12.png"}}, +{ + "id":"fddb68c6ed614b1e8734b64ba2ed7b1a", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":185, + "y":40}, + "size":{ + "width":14, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"404539c8fd1643108ff3085640177bfe", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":185, + "y":40}, + "size":{ + "width":14, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u14.png"}}, +{ + "id":"debc308134654e54837c543589afdfa6", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":156, + "y":704}, + "size":{ + "width":72, + "height":72}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"55d429974b7f4d568bce45b2a1dfd6e3", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":156, + "y":704}, + "size":{ + "width":72, + "height":72}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u16.png"}}, +{ + "id":"e1cc7fc2183d46e8b79eab5070f674bd", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":32, + "y":140}, + "size":{ + "width":319, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"6e9b804847574deaa6fad7c88cb9eaef", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":32, + "y":140}, + "size":{ + "width":319, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_首次进入/u18.png"}}, +{ + "id":"c9a7fb68654c4e00979c12eaaf063fe5", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "location":{ + "x":40, + "y":159}, + "size":{ + "width":22, + "height":22}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"84972ef9e0684e83b78531c24931e452", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":40, + "y":159}, + "size":{ + "width":22, + "height":22}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 发工资", + "target":{ + "targetType":"page", + "url":"发工资.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true, + "images":{ + "normal~":"images/我要发工资_-_引导页_-_首次进入/u20.png"}}, +{ + "id":"11e3a5bc1f964b4186f0b3304251961a", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontSize":"20px", + "fontWeight":"700", + "location":{ + "x":141, + "y":156}, + "size":{ + "width":101, + "height":24}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"8af505b32091400da909f63b78f0908c", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontSize":"20px", + "fontWeight":"700", + "location":{ + "x":141, + "y":156}, + "size":{ + "width":101, + "height":24}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"de63c0637df14e60a32ac3507f1c9f69", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"16px", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFCCCCCC, + "opacity":1}, + "location":{ + "x":270, + "y":161}, + "size":{ + "width":65, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a4c61ddf31e44801998ae878522f127a", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"16px", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFCCCCCC, + "opacity":1}, + "location":{ + "x":270, + "y":161}, + "size":{ + "width":65, + "height":19}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 发放历史", + "target":{ + "targetType":"page", + "url":"发放历史.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true, + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"a3adeffac3ad4d22a3534d3e64075e0b", + "label":"", + "type":"button", + "styleType":"button", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "fontSize":"20px", + "location":{ + "x":62, + "y":610}, + "size":{ + "width":267, + "height":40}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 非首次", + "target":{ + "targetType":"page", + "url":"非首次.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true}, +{ + "id":"dc327e888abf4970ba322e68ce137948", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":48, + "y":210}, + "size":{ + "width":151, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"bc06d15f51a04ed6aab4590cf6247323", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":48, + "y":210}, + "size":{ + "width":151, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"6bfd069881764b5a9e1196574ce3f47f", + "label":"历史记录调整", + "type":"dynamicPanel", + "styleType":"dynamicPanel", + "visible":true, + "style":{ + "location":{ + "x":46, + "y":233}, + "size":{ + "width":300, + "height":344}}, + "adaptiveStyles":{ +}, + "scrollbars":"none", + "fitToContent":false, + "propagate":false, + "diagrams":[{ + "id":"991b1c9b73264b0e962a1cdc437cd910", + "label":"初始状态", + "type":"Axure:PanelDiagram", + "objects":[{ + "id":"f84864c3fb604a22ba68ed06dfe445e1", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":180}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"6a0615c40ca742e5a187eeae195a148d", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":180}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"d2980c24dcb644e8bf39caaef1ed8e92", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"41fc49f62f0c4c0db0e6f5ef4d1259a9", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"af50025f3bd848168add4bc9a8266ead", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":0}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"6670687828bc4cb3b6508d05800b9d0d", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":0}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"69947fc5fb7b40ffa67113ae48574b19", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":0}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"14116ff0aa6f4b2994fc8ec2aff619eb", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":0}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"409e9dc5600c4c459abe7e9d4ee463f4", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":41}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"85f8dce85e5a48e99e786d4ebf17e96a", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":41}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"64de7c338ff6408bb62bedc317aff990", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":41}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"f5e5aac77d4a45fc9d4b6cc9c3ac6f77", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":41}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"7631751df55a4ab3ba52bba1656bb61d", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":60}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"531750a52e904ee2863ccaa0f3980c50", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":60}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"847bdc5678ae463e9e0c5bf6344eeec6", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":60}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"69e00457061045c7ac4c8de1124623b5", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":60}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"b19d30e2f45d4c919532cbccd8d5a527", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":60}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"fc64a442bf9841b9a09e2e1d96790dc8", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":60}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"5ac1df068bbb41b692a7c12bbb9aac3c", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":101}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"e74783be79dd4b648d969cd92c9be34c", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":101}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"256311d070544419933dfc0c9628dc25", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":260, + "y":101}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"e59f3be1c97f475ba12899a1cdfd69cd", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":260, + "y":101}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"28f4bf059ac545b79fcb0349f607ef03", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":120}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"cbf5cdf362474d449ebf1b88d26f062e", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":120}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"66984c380bfb4dbd9d3010992bfb5118", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":120}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"247d54da70ff4a36ac7ff42c152e9a01", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":120}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"62b8a96d13c94ba39e5b16a74bc826fc", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":120}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"149698a8882f4ed3bf9f73f023314018", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":120}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"f47b7e2b7b534e3eb75ff804bfc9cc86", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":161}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"9b8339682c284718bec50c0473b953ca", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":161}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"5569546d8b6d40c4a6c7d68652a0fc66", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":161}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"188f1736d0ba4d53887b914774e026d5", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":161}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"74b4ef518a6f4960b349ae240b7a53b0", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":180}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"0992569808b94e31abd5dfda19b7a5b3", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":180}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"8718b0689b0241aab474af4231072c6f", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":221}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"fc0be95362664106a1f3934748e7ff02", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":221}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"c36188fd0405429684b4baffa4584efc", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":221}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ab72836d717c4f288f18812b7e96ad75", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":221}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"869b44de41aa48fd9496ffd018f723f9", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":182}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d2f50463bfeb4d4d8fb91e1206a67bd7", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":182}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"08094b3e818d40b3ae045e3b8aa93c6f", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"button", + "styleType":"button", + "visible":true, + "style":{ + "location":{ + "x":8, + "y":255}, + "size":{ + "width":100, + "height":25}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 编辑- 调用历史记录", + "target":{ + "targetType":"page", + "url":"编辑-_调用历史记录.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true}, +{ + "id":"c0db8fddf58744228ecf8f823bf7992d", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"imageMapRegion", + "styleType":"imageMapRegion", + "visible":true, + "style":{ + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"setPanelState", + "description":"设置 历史记录调整 to 选中编辑状态 向上滑动 in 1500ms", + "panelsToStates":[{ + "panelPath":["6bfd069881764b5a9e1196574ce3f47f"], + "stateInfo":{ + "setStateType":"diagram", + "stateNumber":2, + "stateValue":{ + "exprType":"stringLiteral", + "value":"1", + "stos":[]}, + "loop":false, + "showWhenSet":false, + "options":{ + "animateIn":{ + "easing":"slideUp", + "duration":1500}, + "compress":false}}}]}]}, +{ + "description":"用例 2", + "isNewIfGroup":false, + "actions":[{ + "action":"setPanelState", + "description":"设置 历史记录调整 to 长摁编辑状态 显示隐藏 push/pull widgets below 摆动 500ms", + "panelsToStates":[{ + "panelPath":["6bfd069881764b5a9e1196574ce3f47f"], + "stateInfo":{ + "setStateType":"diagram", + "stateNumber":3, + "stateValue":{ + "exprType":"stringLiteral", + "value":"1", + "stos":[]}, + "loop":false, + "showWhenSet":true, + "options":{ + "compress":true, + "vertical":true, + "compressEasing":"swing", + "compressDuration":500}}}]}]}]}}, + "tabbable":true}]}, +{ + "id":"2cc77ec7b1ea437992fc55d115aa35f8", + "label":"选中编辑状态", + "type":"Axure:PanelDiagram", + "objects":[{ + "id":"911a92c8af1648bab41cae1a2ad37022", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":8, + "y":41}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ac59a30f2f5c44b1b41b8dc3b11faf38", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":8, + "y":41}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"9aafa732c59244e4950920c702b2fb57", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":8, + "y":76}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"93a56a33a66c4b2fa6f73ea380b1d562", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":8, + "y":76}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"dff5bd8ab0134b3ca7badb1df645ac8e", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"textBox", + "styleType":"textBox", + "visible":true, + "style":{ + "location":{ + "x":92, + "y":73}, + "size":{ + "width":200, + "height":25}}, + "adaptiveStyles":{ +}}, +{ + "id":"a108693869444f45ba52312da22f375d", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"button", + "styleType":"button", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"20px", + "fontWeight":"700", + "location":{ + "x":8, + "y":144}, + "size":{ + "width":284, + "height":30}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"setPanelState", + "description":"设置 历史记录调整 to 初始状态 向下滑动 in 1500ms", + "panelsToStates":[{ + "panelPath":["6bfd069881764b5a9e1196574ce3f47f"], + "stateInfo":{ + "setStateType":"diagram", + "stateNumber":1, + "stateValue":{ + "exprType":"stringLiteral", + "value":"1", + "stos":[]}, + "loop":false, + "showWhenSet":false, + "options":{ + "animateIn":{ + "easing":"slideDown", + "duration":1500}, + "compress":false}}}]}]}]}}, + "tabbable":true}, +{ + "id":"e5a71d7336324815873a3c30805a53ea", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":8, + "y":9}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c4b6f6fbbba4409a812f45b186d5ff26", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":8, + "y":9}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"294f9a0eee3e4d69b4382665d7da733e", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":8, + "y":111}, + "size":{ + "width":72, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"47ece8e54dbe4b27a38506ea711c6c7b", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":8, + "y":111}, + "size":{ + "width":72, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"ca22bfd010af481dbce48ea282c0e2a5", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"comboBox", + "styleType":"comboBox", + "visible":true, + "style":{ + "location":{ + "x":92, + "y":106}, + "size":{ + "width":200, + "height":27}}, + "adaptiveStyles":{ +}}, +{ + "id":"1cf92b882f9c40b7be49cd14b4bc3f73", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":180}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"7b864be13b0a4a668216b20c7d4d9145", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":180}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"714e077676a744399d1dcfb3ee87134d", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":180}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"240c5489b8294e85b222bab8cfcfff0a", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":180}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"200b5a2790b74de2858f1f279c177f97", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":221}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ed2fc28bc4304256bf94d1869df981e4", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":221}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"f3d61219aa8c48279da7786eaedc8314", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":220}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"39db80847c02454993a764397ff1b49c", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":220}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"7e30cc3504544ce3a1360348bec7c28b", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":182}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"df6a047de4e14b8b9e0ceed3e35169da", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":182}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"c55062ad35b841218d0650bba0c3d6be", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":240}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"31b78be7881045b6a131ac3723610f33", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":240}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"68220ce18b534c838467c3fa1f54628f", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":240}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"07ba2353c6eb44a88540875a9219bbb7", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":240}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"51986eb0177c4ffa8c41edf9f2993933", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":281}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"241c6aeb43b74e7fa738d5e79d9ab69f", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":281}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"1379f3b175324363ace1c58ef7ea1583", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":278}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"267ad0b728a04ba39a8a334293385b66", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":278}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"d734a61ab66a4caaacc3849ff02ce23d", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":242}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"0a9d6c714b7845ddb34bea541dd0b6ed", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":242}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"f481afae9b3f419abc47224e6b9fa6a3", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":300}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d515c00237cf49ce9a7f567e6f38168b", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":300}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"aee0f6f09f8f4e6a8caadad529bcab2b", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":300}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"7faea74042684282bfeff15730dd8fc1", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":300}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"e8f41e18d26d4e78ae699b34364bb901", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":341}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"cc2f7e2a5cd94dc2b2af9889ca0c08ca", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":341}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"b2ea4900f5004187bda9a5e07dec3038", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":339}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a9c05bd711ab4418b2f0b0743abfe817", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":339}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"272eeafc8a53404eac4940f6848a1334", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":302}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"899eea9142704be7a39491eeefe4fb8c", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":302}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"307631eaea7c4f218897dfded5a62e32", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":91, + "y":12}, + "size":{ + "width":40, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"dc919a9fe1704202a4598a74fb2cbaad", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":91, + "y":12}, + "size":{ + "width":40, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"8fdcc1bad71648f79f47d8028cd6937b", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":91, + "y":44}, + "size":{ + "width":85, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"5a7ac66d9d2247a0a56b58411d68a313", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":91, + "y":44}, + "size":{ + "width":85, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}]}, +{ + "id":"7b846becffda4b4e8e102aced4e8744b", + "label":"长摁编辑状态", + "type":"Axure:PanelDiagram", + "objects":[{ + "id":"0906fb39c01e4e82b23e2adde1cbdd8d", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":180}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"31502a4a71804d428d2ab973682a61c3", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":180}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"cc51498eb79c4775adfbfe9bb49480ed", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"0f0cac67be8a4b15933103bf47f74fc9", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"97b3ced1ca0b460e8850f9ab4bf55891", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":0}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"7dde2b2e6de847e4beea21b8eb335f44", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":0}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"3caa4bf4ce884b26a22f1ed98b3c026f", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":186, + "y":0}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"47ae82919d514a55b410e422a0336c8c", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":186, + "y":0}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"85e95380b18e48659e673a15535a7b80", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":41}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"837881c79df54fe7852e059b3f0b2a3e", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":41}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"04d68ba55ac64e569f06af0d5f692db4", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":160, + "y":41}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"3e06cf2f51bf47a6b602bb22a3a19f9e", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":160, + "y":41}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"f5db33bdfd444b8ca037ae114eece9c4", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":210, + "y":21}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d0e2cbab61254b8e8d082f50143a07c6", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":210, + "y":21}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"0b0083f0261b4dc9a72284e9d9aabfbf", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":60}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ea2b4d67567e4b95b91ec88edbe63e20", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":60}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"20217fbea97449719f467c4e49d29a9d", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":60}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c808b9b969584ccd80cf28a1d2ae7e2d", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":60}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"803b1f9132ee4e0d9259b7e6b37ee885", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":60}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"484eb8c825cc44d3919b950db6537259", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":60}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"d834f3b8502740be937ee8363c6a63b8", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":101}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"4747a0df9f2b42098a26207dd65befc0", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":101}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"efeee076c442404c96789b2f078b2b59", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":206, + "y":101}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"dc2672e55ee74645a5fa7a6eccf4f8c9", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":206, + "y":101}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"d627b9e03e654be79be87d748c70ff3d", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":81}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"f35cf7dd15964e858764a747198f67b0", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":81}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"b6b55b10ce3f4059b7bfbe4b005290dd", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":120}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"056ff1a64fd14ecea984818c3b87f04f", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":120}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"1c0080a521ec4867ab38e1be2ade538c", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":120}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d8c56ef2a33c42e1bfafeb946d200634", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":120}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"550fb9d97d064ee6a0c2b0486e30bd79", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":120}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ef0a993838eb4029b5b1d61ac29f809b", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":120}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"969fa3bb0df74632a9ef074105635584", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":161}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"b18a0d7b6a014a74b60580b08f2dc02f", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":161}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"5a7d286aac4a4c24adf47e2e21ddbbda", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":206, + "y":161}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"e79a4608a12b4d69b373b6c45cb4be99", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":206, + "y":161}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"a62b8ea881b44b1284fa06d2a297150a", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":141}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a94eec71c1e94136b21fbc969fa6b4b0", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":141}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"49d954ff8cd24fedad8295dd58c061f9", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":180}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"87a7c1a0637a4fa2aa40b11f601a5514", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":180}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"7229df6d656a4e24ab03a591210bce9b", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":221}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"e33388f967c24fa4b95898d8a7a2e167", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":221}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"bdcd036e65ab4c1d9962660d24b7504c", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":206, + "y":221}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c76dd66428884bc4beeee960fbf0e6b0", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":206, + "y":221}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"fbdcd4b854fa47e2a8d526f9b1358304", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":201}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"8d139f74534e4e428b0652f84eb16645", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":201}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"0f8100264f1b42e1bd2416d1185c8481", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":182}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"38476bc5d59a4d2a9968c81a7963835c", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":182}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"5bb2dde30af447cf86b75611214d9614", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"button", + "styleType":"button", + "visible":true, + "style":{ + "location":{ + "x":8, + "y":255}, + "size":{ + "width":100, + "height":25}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 编辑- 调用历史记录", + "target":{ + "targetType":"page", + "url":"编辑-_调用历史记录.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true}, +{ + "id":"2c3916a0a50e400dbad561308531a0d5", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "location":{ + "x":256, + "y":19}, + "size":{ + "width":35, + "height":30}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"9be54af800a547248b7dae27e00dbab9", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":256, + "y":19}, + "size":{ + "width":35, + "height":30}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"setPanelState", + "description":"设置 历史记录调整 to 长摁编辑后 向左滑动 in 500ms", + "panelsToStates":[{ + "panelPath":["6bfd069881764b5a9e1196574ce3f47f"], + "stateInfo":{ + "setStateType":"diagram", + "stateNumber":4, + "stateValue":{ + "exprType":"stringLiteral", + "value":"1", + "stos":[]}, + "loop":false, + "showWhenSet":false, + "options":{ + "animateIn":{ + "easing":"slideLeft", + "duration":500}, + "compress":false}}}]}]}]}}, + "tabbable":true, + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u166.png"}}]}, +{ + "id":"51229cf37a694930b2f398a6370ae971", + "label":"长摁编辑后", + "type":"Axure:PanelDiagram", + "objects":[{ + "id":"5ffca1bf326b4771b3d89244dc5b62ba", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c8786b1af5d341008539ef2d75be9372", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"c1c45e19d5de46f8a45f0f2ff34556b8", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":0}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"2c37bc2f0ac74b6294b0e04a277c74c5", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":0}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"b3886854167f4073b30cb5e0553956fb", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":0}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a6556a2cf25e43619cc0c53d8e3a8ce8", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":0}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"9e1a8a5326c740a89f28d26743270b52", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":41}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"7c7e1610ff254d3487133358b103fe41", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":41}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"697b0f4d156c4340952978f4d18806fd", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":206, + "y":41}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"b3007fa0509745c7af8fca588cd868e5", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":206, + "y":41}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"efb094665245425d8fc202597649e13f", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":21}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"e34610b75b594eaebb408c5f9b67ccb3", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":21}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"6c37714580824902b30735fc8984d45c", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":60}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d00f5ceab4ad4a6fbf6267a1c583618a", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":60}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"366d8c2122f247aa823ef1004f7f7cb9", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":60}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"7ece00b814ae40d7801514b4aa1282ce", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":60}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"7d0412336c8d4ccab3bf8da05730143d", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":60}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"06200cb1c28646d58f8f64d8e851ee94", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":60}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"c762ebd4740c4bf98837bceba2559e0f", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":101}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"e55902a0ba114b68ba5d0707b6db51bb", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":101}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"9bcda36f8716465ab9ad7eb87985049f", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":206, + "y":101}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"fbc678b280ce4e74840900dfbd0a5ce7", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":206, + "y":101}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"6e84387227254d419c104162dccde441", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":81}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"47e561b8bfa6464baf249d75d9da106a", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":81}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"b9ca6b86111d49f48944c0e6661f5a1b", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":120}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"5ce7a0cf283146138c1484bebaa306ac", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":120}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"0d755c4af6e8434892970cc2118eaf93", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":120}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"0fcb06e80d1c4a55a03888edc5c70b72", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":120}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"ef18107a08dc41879a71710b1053cc15", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":120}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"4a0f1aee2b934107a290a8a36410b832", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":120}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"0907a4f8317b481fbfa70f0047a2c311", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":161}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"44919e5d6ba644d7ad435240c7449159", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":161}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"dbe4ecf853c947c7b5d86b8fa931a8d4", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":206, + "y":161}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"37332e57daf54efc9ad52e465c9beed7", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":206, + "y":161}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"992215bac6974c50976d119c2b81e0da", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":141}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"568198853a0446f49f75a80f8ac5fbc1", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":141}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"202ec578ead14697b451f79381ea3c8a", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"button", + "styleType":"button", + "visible":true, + "style":{ + "location":{ + "x":8, + "y":190}, + "size":{ + "width":100, + "height":25}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 编辑- 调用历史记录", + "target":{ + "targetType":"page", + "url":"编辑-_调用历史记录.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true}]}]}]}}, + "masters":{ +}, + "objectPaths":{ + "db4d7009166c489e84813f0de820482d":{ + "scriptId":"u0"}, + "7ae61cb339ec404f8c9eeffdb1cad956":{ + "scriptId":"u1"}, + "feef0277060c46b7950647d339789cd7":{ + "scriptId":"u2"}, + "4f6c450dbf7543648443130e398dbb1b":{ + "scriptId":"u3"}, + "4346a7d29377478084b0e7e83b1e590f":{ + "scriptId":"u4"}, + "4e9753b1f68448408ec4fa56d2654b5c":{ + "scriptId":"u5"}, + "04b1ed1725614393a3d2862b6b4ac972":{ + "scriptId":"u6"}, + "d4eea12e64404934a03e473b33ee3905":{ + "scriptId":"u7"}, + "452b1eeadeb44900a9416b515f8a743c":{ + "scriptId":"u8"}, + "ac531ffe5eee46c9b7f75b025ee5b195":{ + "scriptId":"u9"}, + "a7992993efda4a41864960ca03bbf88b":{ + "scriptId":"u10"}, + "07f1f0f4b9254c26b9f22e82699de94d":{ + "scriptId":"u11"}, + "4ccc16675faf4ec99fb598a427d1cede":{ + "scriptId":"u12"}, + "1f871c6140034155afd46388daf0bfff":{ + "scriptId":"u13"}, + "fddb68c6ed614b1e8734b64ba2ed7b1a":{ + "scriptId":"u14"}, + "404539c8fd1643108ff3085640177bfe":{ + "scriptId":"u15"}, + "debc308134654e54837c543589afdfa6":{ + "scriptId":"u16"}, + "55d429974b7f4d568bce45b2a1dfd6e3":{ + "scriptId":"u17"}, + "e1cc7fc2183d46e8b79eab5070f674bd":{ + "scriptId":"u18"}, + "6e9b804847574deaa6fad7c88cb9eaef":{ + "scriptId":"u19"}, + "c9a7fb68654c4e00979c12eaaf063fe5":{ + "scriptId":"u20"}, + "84972ef9e0684e83b78531c24931e452":{ + "scriptId":"u21"}, + "11e3a5bc1f964b4186f0b3304251961a":{ + "scriptId":"u22"}, + "8af505b32091400da909f63b78f0908c":{ + "scriptId":"u23"}, + "de63c0637df14e60a32ac3507f1c9f69":{ + "scriptId":"u24"}, + "a4c61ddf31e44801998ae878522f127a":{ + "scriptId":"u25"}, + "a3adeffac3ad4d22a3534d3e64075e0b":{ + "scriptId":"u26"}, + "dc327e888abf4970ba322e68ce137948":{ + "scriptId":"u27"}, + "bc06d15f51a04ed6aab4590cf6247323":{ + "scriptId":"u28"}, + "6bfd069881764b5a9e1196574ce3f47f":{ + "scriptId":"u29"}, + "f84864c3fb604a22ba68ed06dfe445e1":{ + "scriptId":"u30"}, + "6a0615c40ca742e5a187eeae195a148d":{ + "scriptId":"u31"}, + "d2980c24dcb644e8bf39caaef1ed8e92":{ + "scriptId":"u32"}, + "41fc49f62f0c4c0db0e6f5ef4d1259a9":{ + "scriptId":"u33"}, + "af50025f3bd848168add4bc9a8266ead":{ + "scriptId":"u34"}, + "6670687828bc4cb3b6508d05800b9d0d":{ + "scriptId":"u35"}, + "69947fc5fb7b40ffa67113ae48574b19":{ + "scriptId":"u36"}, + "14116ff0aa6f4b2994fc8ec2aff619eb":{ + "scriptId":"u37"}, + "409e9dc5600c4c459abe7e9d4ee463f4":{ + "scriptId":"u38"}, + "85f8dce85e5a48e99e786d4ebf17e96a":{ + "scriptId":"u39"}, + "64de7c338ff6408bb62bedc317aff990":{ + "scriptId":"u40"}, + "f5e5aac77d4a45fc9d4b6cc9c3ac6f77":{ + "scriptId":"u41"}, + "7631751df55a4ab3ba52bba1656bb61d":{ + "scriptId":"u42"}, + "531750a52e904ee2863ccaa0f3980c50":{ + "scriptId":"u43"}, + "847bdc5678ae463e9e0c5bf6344eeec6":{ + "scriptId":"u44"}, + "69e00457061045c7ac4c8de1124623b5":{ + "scriptId":"u45"}, + "b19d30e2f45d4c919532cbccd8d5a527":{ + "scriptId":"u46"}, + "fc64a442bf9841b9a09e2e1d96790dc8":{ + "scriptId":"u47"}, + "5ac1df068bbb41b692a7c12bbb9aac3c":{ + "scriptId":"u48"}, + "e74783be79dd4b648d969cd92c9be34c":{ + "scriptId":"u49"}, + "256311d070544419933dfc0c9628dc25":{ + "scriptId":"u50"}, + "e59f3be1c97f475ba12899a1cdfd69cd":{ + "scriptId":"u51"}, + "28f4bf059ac545b79fcb0349f607ef03":{ + "scriptId":"u52"}, + "cbf5cdf362474d449ebf1b88d26f062e":{ + "scriptId":"u53"}, + "66984c380bfb4dbd9d3010992bfb5118":{ + "scriptId":"u54"}, + "247d54da70ff4a36ac7ff42c152e9a01":{ + "scriptId":"u55"}, + "62b8a96d13c94ba39e5b16a74bc826fc":{ + "scriptId":"u56"}, + "149698a8882f4ed3bf9f73f023314018":{ + "scriptId":"u57"}, + "f47b7e2b7b534e3eb75ff804bfc9cc86":{ + "scriptId":"u58"}, + "9b8339682c284718bec50c0473b953ca":{ + "scriptId":"u59"}, + "5569546d8b6d40c4a6c7d68652a0fc66":{ + "scriptId":"u60"}, + "188f1736d0ba4d53887b914774e026d5":{ + "scriptId":"u61"}, + "74b4ef518a6f4960b349ae240b7a53b0":{ + "scriptId":"u62"}, + "0992569808b94e31abd5dfda19b7a5b3":{ + "scriptId":"u63"}, + "8718b0689b0241aab474af4231072c6f":{ + "scriptId":"u64"}, + "fc0be95362664106a1f3934748e7ff02":{ + "scriptId":"u65"}, + "c36188fd0405429684b4baffa4584efc":{ + "scriptId":"u66"}, + "ab72836d717c4f288f18812b7e96ad75":{ + "scriptId":"u67"}, + "869b44de41aa48fd9496ffd018f723f9":{ + "scriptId":"u68"}, + "d2f50463bfeb4d4d8fb91e1206a67bd7":{ + "scriptId":"u69"}, + "08094b3e818d40b3ae045e3b8aa93c6f":{ + "scriptId":"u70"}, + "c0db8fddf58744228ecf8f823bf7992d":{ + "scriptId":"u71"}, + "911a92c8af1648bab41cae1a2ad37022":{ + "scriptId":"u72"}, + "ac59a30f2f5c44b1b41b8dc3b11faf38":{ + "scriptId":"u73"}, + "9aafa732c59244e4950920c702b2fb57":{ + "scriptId":"u74"}, + "93a56a33a66c4b2fa6f73ea380b1d562":{ + "scriptId":"u75"}, + "dff5bd8ab0134b3ca7badb1df645ac8e":{ + "scriptId":"u76"}, + "a108693869444f45ba52312da22f375d":{ + "scriptId":"u77"}, + "e5a71d7336324815873a3c30805a53ea":{ + "scriptId":"u78"}, + "c4b6f6fbbba4409a812f45b186d5ff26":{ + "scriptId":"u79"}, + "294f9a0eee3e4d69b4382665d7da733e":{ + "scriptId":"u80"}, + "47ece8e54dbe4b27a38506ea711c6c7b":{ + "scriptId":"u81"}, + "ca22bfd010af481dbce48ea282c0e2a5":{ + "scriptId":"u82"}, + "1cf92b882f9c40b7be49cd14b4bc3f73":{ + "scriptId":"u83"}, + "7b864be13b0a4a668216b20c7d4d9145":{ + "scriptId":"u84"}, + "714e077676a744399d1dcfb3ee87134d":{ + "scriptId":"u85"}, + "240c5489b8294e85b222bab8cfcfff0a":{ + "scriptId":"u86"}, + "200b5a2790b74de2858f1f279c177f97":{ + "scriptId":"u87"}, + "ed2fc28bc4304256bf94d1869df981e4":{ + "scriptId":"u88"}, + "f3d61219aa8c48279da7786eaedc8314":{ + "scriptId":"u89"}, + "39db80847c02454993a764397ff1b49c":{ + "scriptId":"u90"}, + "7e30cc3504544ce3a1360348bec7c28b":{ + "scriptId":"u91"}, + "df6a047de4e14b8b9e0ceed3e35169da":{ + "scriptId":"u92"}, + "c55062ad35b841218d0650bba0c3d6be":{ + "scriptId":"u93"}, + "31b78be7881045b6a131ac3723610f33":{ + "scriptId":"u94"}, + "68220ce18b534c838467c3fa1f54628f":{ + "scriptId":"u95"}, + "07ba2353c6eb44a88540875a9219bbb7":{ + "scriptId":"u96"}, + "51986eb0177c4ffa8c41edf9f2993933":{ + "scriptId":"u97"}, + "241c6aeb43b74e7fa738d5e79d9ab69f":{ + "scriptId":"u98"}, + "1379f3b175324363ace1c58ef7ea1583":{ + "scriptId":"u99"}, + "267ad0b728a04ba39a8a334293385b66":{ + "scriptId":"u100"}, + "d734a61ab66a4caaacc3849ff02ce23d":{ + "scriptId":"u101"}, + "0a9d6c714b7845ddb34bea541dd0b6ed":{ + "scriptId":"u102"}, + "f481afae9b3f419abc47224e6b9fa6a3":{ + "scriptId":"u103"}, + "d515c00237cf49ce9a7f567e6f38168b":{ + "scriptId":"u104"}, + "aee0f6f09f8f4e6a8caadad529bcab2b":{ + "scriptId":"u105"}, + "7faea74042684282bfeff15730dd8fc1":{ + "scriptId":"u106"}, + "e8f41e18d26d4e78ae699b34364bb901":{ + "scriptId":"u107"}, + "cc2f7e2a5cd94dc2b2af9889ca0c08ca":{ + "scriptId":"u108"}, + "b2ea4900f5004187bda9a5e07dec3038":{ + "scriptId":"u109"}, + "a9c05bd711ab4418b2f0b0743abfe817":{ + "scriptId":"u110"}, + "272eeafc8a53404eac4940f6848a1334":{ + "scriptId":"u111"}, + "899eea9142704be7a39491eeefe4fb8c":{ + "scriptId":"u112"}, + "307631eaea7c4f218897dfded5a62e32":{ + "scriptId":"u113"}, + "dc919a9fe1704202a4598a74fb2cbaad":{ + "scriptId":"u114"}, + "8fdcc1bad71648f79f47d8028cd6937b":{ + "scriptId":"u115"}, + "5a7ac66d9d2247a0a56b58411d68a313":{ + "scriptId":"u116"}, + "0906fb39c01e4e82b23e2adde1cbdd8d":{ + "scriptId":"u117"}, + "31502a4a71804d428d2ab973682a61c3":{ + "scriptId":"u118"}, + "cc51498eb79c4775adfbfe9bb49480ed":{ + "scriptId":"u119"}, + "0f0cac67be8a4b15933103bf47f74fc9":{ + "scriptId":"u120"}, + "97b3ced1ca0b460e8850f9ab4bf55891":{ + "scriptId":"u121"}, + "7dde2b2e6de847e4beea21b8eb335f44":{ + "scriptId":"u122"}, + "3caa4bf4ce884b26a22f1ed98b3c026f":{ + "scriptId":"u123"}, + "47ae82919d514a55b410e422a0336c8c":{ + "scriptId":"u124"}, + "85e95380b18e48659e673a15535a7b80":{ + "scriptId":"u125"}, + "837881c79df54fe7852e059b3f0b2a3e":{ + "scriptId":"u126"}, + "04d68ba55ac64e569f06af0d5f692db4":{ + "scriptId":"u127"}, + "3e06cf2f51bf47a6b602bb22a3a19f9e":{ + "scriptId":"u128"}, + "f5db33bdfd444b8ca037ae114eece9c4":{ + "scriptId":"u129"}, + "d0e2cbab61254b8e8d082f50143a07c6":{ + "scriptId":"u130"}, + "0b0083f0261b4dc9a72284e9d9aabfbf":{ + "scriptId":"u131"}, + "ea2b4d67567e4b95b91ec88edbe63e20":{ + "scriptId":"u132"}, + "20217fbea97449719f467c4e49d29a9d":{ + "scriptId":"u133"}, + "c808b9b969584ccd80cf28a1d2ae7e2d":{ + "scriptId":"u134"}, + "803b1f9132ee4e0d9259b7e6b37ee885":{ + "scriptId":"u135"}, + "484eb8c825cc44d3919b950db6537259":{ + "scriptId":"u136"}, + "d834f3b8502740be937ee8363c6a63b8":{ + "scriptId":"u137"}, + "4747a0df9f2b42098a26207dd65befc0":{ + "scriptId":"u138"}, + "efeee076c442404c96789b2f078b2b59":{ + "scriptId":"u139"}, + "dc2672e55ee74645a5fa7a6eccf4f8c9":{ + "scriptId":"u140"}, + "d627b9e03e654be79be87d748c70ff3d":{ + "scriptId":"u141"}, + "f35cf7dd15964e858764a747198f67b0":{ + "scriptId":"u142"}, + "b6b55b10ce3f4059b7bfbe4b005290dd":{ + "scriptId":"u143"}, + "056ff1a64fd14ecea984818c3b87f04f":{ + "scriptId":"u144"}, + "1c0080a521ec4867ab38e1be2ade538c":{ + "scriptId":"u145"}, + "d8c56ef2a33c42e1bfafeb946d200634":{ + "scriptId":"u146"}, + "550fb9d97d064ee6a0c2b0486e30bd79":{ + "scriptId":"u147"}, + "ef0a993838eb4029b5b1d61ac29f809b":{ + "scriptId":"u148"}, + "969fa3bb0df74632a9ef074105635584":{ + "scriptId":"u149"}, + "b18a0d7b6a014a74b60580b08f2dc02f":{ + "scriptId":"u150"}, + "5a7d286aac4a4c24adf47e2e21ddbbda":{ + "scriptId":"u151"}, + "e79a4608a12b4d69b373b6c45cb4be99":{ + "scriptId":"u152"}, + "a62b8ea881b44b1284fa06d2a297150a":{ + "scriptId":"u153"}, + "a94eec71c1e94136b21fbc969fa6b4b0":{ + "scriptId":"u154"}, + "49d954ff8cd24fedad8295dd58c061f9":{ + "scriptId":"u155"}, + "87a7c1a0637a4fa2aa40b11f601a5514":{ + "scriptId":"u156"}, + "7229df6d656a4e24ab03a591210bce9b":{ + "scriptId":"u157"}, + "e33388f967c24fa4b95898d8a7a2e167":{ + "scriptId":"u158"}, + "bdcd036e65ab4c1d9962660d24b7504c":{ + "scriptId":"u159"}, + "c76dd66428884bc4beeee960fbf0e6b0":{ + "scriptId":"u160"}, + "fbdcd4b854fa47e2a8d526f9b1358304":{ + "scriptId":"u161"}, + "8d139f74534e4e428b0652f84eb16645":{ + "scriptId":"u162"}, + "0f8100264f1b42e1bd2416d1185c8481":{ + "scriptId":"u163"}, + "38476bc5d59a4d2a9968c81a7963835c":{ + "scriptId":"u164"}, + "5bb2dde30af447cf86b75611214d9614":{ + "scriptId":"u165"}, + "2c3916a0a50e400dbad561308531a0d5":{ + "scriptId":"u166"}, + "9be54af800a547248b7dae27e00dbab9":{ + "scriptId":"u167"}, + "5ffca1bf326b4771b3d89244dc5b62ba":{ + "scriptId":"u168"}, + "c8786b1af5d341008539ef2d75be9372":{ + "scriptId":"u169"}, + "c1c45e19d5de46f8a45f0f2ff34556b8":{ + "scriptId":"u170"}, + "2c37bc2f0ac74b6294b0e04a277c74c5":{ + "scriptId":"u171"}, + "b3886854167f4073b30cb5e0553956fb":{ + "scriptId":"u172"}, + "a6556a2cf25e43619cc0c53d8e3a8ce8":{ + "scriptId":"u173"}, + "9e1a8a5326c740a89f28d26743270b52":{ + "scriptId":"u174"}, + "7c7e1610ff254d3487133358b103fe41":{ + "scriptId":"u175"}, + "697b0f4d156c4340952978f4d18806fd":{ + "scriptId":"u176"}, + "b3007fa0509745c7af8fca588cd868e5":{ + "scriptId":"u177"}, + "efb094665245425d8fc202597649e13f":{ + "scriptId":"u178"}, + "e34610b75b594eaebb408c5f9b67ccb3":{ + "scriptId":"u179"}, + "6c37714580824902b30735fc8984d45c":{ + "scriptId":"u180"}, + "d00f5ceab4ad4a6fbf6267a1c583618a":{ + "scriptId":"u181"}, + "366d8c2122f247aa823ef1004f7f7cb9":{ + "scriptId":"u182"}, + "7ece00b814ae40d7801514b4aa1282ce":{ + "scriptId":"u183"}, + "7d0412336c8d4ccab3bf8da05730143d":{ + "scriptId":"u184"}, + "06200cb1c28646d58f8f64d8e851ee94":{ + "scriptId":"u185"}, + "c762ebd4740c4bf98837bceba2559e0f":{ + "scriptId":"u186"}, + "e55902a0ba114b68ba5d0707b6db51bb":{ + "scriptId":"u187"}, + "9bcda36f8716465ab9ad7eb87985049f":{ + "scriptId":"u188"}, + "fbc678b280ce4e74840900dfbd0a5ce7":{ + "scriptId":"u189"}, + "6e84387227254d419c104162dccde441":{ + "scriptId":"u190"}, + "47e561b8bfa6464baf249d75d9da106a":{ + "scriptId":"u191"}, + "b9ca6b86111d49f48944c0e6661f5a1b":{ + "scriptId":"u192"}, + "5ce7a0cf283146138c1484bebaa306ac":{ + "scriptId":"u193"}, + "0d755c4af6e8434892970cc2118eaf93":{ + "scriptId":"u194"}, + "0fcb06e80d1c4a55a03888edc5c70b72":{ + "scriptId":"u195"}, + "ef18107a08dc41879a71710b1053cc15":{ + "scriptId":"u196"}, + "4a0f1aee2b934107a290a8a36410b832":{ + "scriptId":"u197"}, + "0907a4f8317b481fbfa70f0047a2c311":{ + "scriptId":"u198"}, + "44919e5d6ba644d7ad435240c7449159":{ + "scriptId":"u199"}, + "dbe4ecf853c947c7b5d86b8fa931a8d4":{ + "scriptId":"u200"}, + "37332e57daf54efc9ad52e465c9beed7":{ + "scriptId":"u201"}, + "992215bac6974c50976d119c2b81e0da":{ + "scriptId":"u202"}, + "568198853a0446f49f75a80f8ac5fbc1":{ + "scriptId":"u203"}, + "202ec578ead14697b451f79381ea3c8a":{ + "scriptId":"u204"}}}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\346\210\221\350\246\201\345\217\221\345\267\245\350\265\204_-_\345\274\225\345\257\274\351\241\265_-_\351\235\236\351\246\226\346\254\241/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\346\210\221\350\246\201\345\217\221\345\267\245\350\265\204_-_\345\274\225\345\257\274\351\241\265_-_\351\235\236\351\246\226\346\254\241/styles.css" new file mode 100644 index 0000000..66b3ea8 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\346\210\221\350\246\201\345\217\221\345\267\245\350\265\204_-_\345\274\225\345\257\274\351\241\265_-_\351\235\236\351\246\226\346\254\241/styles.css" @@ -0,0 +1,2447 @@ +body { + margin:0px; + background-image:none; + position:static; + left:auto; + width:378px; + margin-left:0; + margin-right:0; + text-align:left; +} +#base { + position:absolute; + z-index:0; +} +#u0 { + position:absolute; + left:0px; + top:116px; + width:8px; + height:36px; +} +#u0_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:36px; +} +#u1 { + position:absolute; + left:2px; + top:10px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u2 { + position:absolute; + left:0px; + top:192px; + width:8px; + height:27px; +} +#u2_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:27px; +} +#u3 { + position:absolute; + left:2px; + top:6px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u4 { + position:absolute; + left:0px; + top:255px; + width:8px; + height:27px; +} +#u4_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:27px; +} +#u5 { + position:absolute; + left:2px; + top:6px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u6 { + position:absolute; + left:259px; + top:0px; + width:60px; + height:10px; +} +#u6_img { + position:absolute; + left:0px; + top:0px; + width:60px; + height:10px; +} +#u7 { + position:absolute; + left:2px; + top:-3px; + width:56px; + visibility:hidden; + word-wrap:break-word; +} +#u8 { + position:absolute; + left:6px; + top:6px; + width:372px; + height:796px; +} +#u8_img { + position:absolute; + left:0px; + top:0px; + width:372px; + height:796px; +} +#u9 { + position:absolute; + left:2px; + top:390px; + width:368px; + visibility:hidden; + word-wrap:break-word; +} +#u10 { + position:absolute; + left:32px; + top:120px; + width:320px; + height:568px; +} +#u10_img { + position:absolute; + left:0px; + top:0px; + width:320px; + height:568px; +} +#u11 { + position:absolute; + left:2px; + top:276px; + width:316px; + visibility:hidden; + word-wrap:break-word; +} +#u12 { + position:absolute; + left:157px; + top:66px; + width:70px; + height:14px; +} +#u12_img { + position:absolute; + left:0px; + top:0px; + width:70px; + height:14px; +} +#u13 { + position:absolute; + left:2px; + top:-1px; + width:66px; + visibility:hidden; + word-wrap:break-word; +} +#u14 { + position:absolute; + left:185px; + top:40px; + width:14px; + height:14px; +} +#u14_img { + position:absolute; + left:0px; + top:0px; + width:14px; + height:14px; +} +#u15 { + position:absolute; + left:2px; + top:-1px; + width:10px; + visibility:hidden; + word-wrap:break-word; +} +#u16 { + position:absolute; + left:156px; + top:704px; + width:72px; + height:72px; +} +#u16_img { + position:absolute; + left:0px; + top:0px; + width:72px; + height:72px; +} +#u17 { + position:absolute; + left:2px; + top:28px; + width:68px; + visibility:hidden; + word-wrap:break-word; +} +#u18 { + position:absolute; + left:32px; + top:140px; + width:319px; + height:60px; +} +#u18_img { + position:absolute; + left:0px; + top:0px; + width:319px; + height:60px; +} +#u19 { + position:absolute; + left:2px; + top:22px; + width:315px; + visibility:hidden; + word-wrap:break-word; +} +#u20 { + position:absolute; + left:40px; + top:159px; + width:22px; + height:22px; +} +#u20_img { + position:absolute; + left:0px; + top:0px; + width:22px; + height:22px; +} +#u21 { + position:absolute; + left:2px; + top:3px; + width:18px; + visibility:hidden; + word-wrap:break-word; +} +#u22 { + position:absolute; + left:141px; + top:156px; + width:101px; + height:24px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + font-size:20px; +} +#u22_img { + position:absolute; + left:0px; + top:0px; + width:101px; + height:24px; +} +#u23 { + position:absolute; + left:0px; + top:0px; + width:101px; + white-space:nowrap; +} +#u24 { + position:absolute; + left:270px; + top:161px; + width:65px; + height:19px; + font-size:16px; + color:#CCCCCC; +} +#u24_img { + position:absolute; + left:0px; + top:0px; + width:65px; + height:19px; +} +#u25 { + position:absolute; + left:0px; + top:0px; + width:65px; + white-space:nowrap; +} +#u26 { + position:absolute; + left:62px; + top:610px; + width:267px; + height:40px; +} +#u26_input { + position:absolute; + left:0px; + top:0px; + width:267px; + height:40px; + background-image:url(../../resources/images/transparent.gif); + text-align:center; + font-family:'微软雅黑'; + font-size:20px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u27 { + position:absolute; + left:48px; + top:210px; + width:151px; + height:16px; +} +#u27_img { + position:absolute; + left:0px; + top:0px; + width:151px; + height:16px; +} +#u28 { + position:absolute; + left:0px; + top:0px; + width:151px; + white-space:nowrap; +} +#u29 { + position:absolute; + left:46px; + top:233px; + width:300px; + height:344px; + overflow:hidden; +} +#u29_state0 { + position:absolute; + left:0px; + top:0px; + width:300px; + height:344px; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; +} +#u29_state0_content { + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u30 { + position:absolute; + left:0px; + top:180px; + width:300px; + height:60px; +} +#u30_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u31 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u32 { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u32_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u33 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u34 { + position:absolute; + left:8px; + top:0px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u34_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u35 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u36 { + position:absolute; + left:232px; + top:0px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u36_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u37 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u38 { + position:absolute; + left:8px; + top:41px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u38_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u39 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u40 { + position:absolute; + left:256px; + top:41px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u40_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u41 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u42 { + position:absolute; + left:0px; + top:60px; + width:300px; + height:60px; +} +#u42_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u43 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u44 { + position:absolute; + left:8px; + top:60px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u44_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u45 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u46 { + position:absolute; + left:232px; + top:60px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u46_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u47 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u48 { + position:absolute; + left:8px; + top:101px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u48_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u49 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u50 { + position:absolute; + left:260px; + top:101px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u50_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u51 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u52 { + position:absolute; + left:0px; + top:120px; + width:300px; + height:60px; +} +#u52_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u53 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u54 { + position:absolute; + left:8px; + top:120px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u54_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u55 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u56 { + position:absolute; + left:232px; + top:120px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u56_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u57 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u58 { + position:absolute; + left:8px; + top:161px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u58_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u59 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u60 { + position:absolute; + left:256px; + top:161px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u60_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u61 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u62 { + position:absolute; + left:8px; + top:180px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u62_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u63 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u64 { + position:absolute; + left:8px; + top:221px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u64_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u65 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u66 { + position:absolute; + left:256px; + top:221px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u66_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u67 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u68 { + position:absolute; + left:232px; + top:182px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u68_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u69 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u70 { + position:absolute; + left:8px; + top:255px; + width:100px; + height:25px; +} +#u70_input { + position:absolute; + left:0px; + top:0px; + width:100px; + height:25px; + background-image:url(../../resources/images/transparent.gif); + text-align:center; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u71 { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; + overflow:hidden; + background-image:url('../../resources/images/transparent.gif'); +} +#u29_state1 { + position:absolute; + left:0px; + top:0px; + width:300px; + height:344px; + visibility:hidden; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; +} +#u29_state1_content { + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u72 { + position:absolute; + left:8px; + top:41px; + width:73px; + height:22px; + font-size:18px; +} +#u72_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u73 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u74 { + position:absolute; + left:8px; + top:76px; + width:73px; + height:22px; + font-size:18px; +} +#u74_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u75 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u76 { + position:absolute; + left:92px; + top:73px; + width:200px; + height:25px; +} +#u76_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:25px; + background-image:; + text-align:left; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u77 { + position:absolute; + left:8px; + top:144px; + width:284px; + height:30px; +} +#u77_input { + position:absolute; + left:0px; + top:0px; + width:284px; + height:30px; + background-image:url(../../resources/images/transparent.gif); + text-align:center; + font-family:'微软雅黑'; + font-size:20px; + color:#000000; + font-weight:bold; + font-style:normal; + text-decoration:none; +} +#u78 { + position:absolute; + left:8px; + top:9px; + width:73px; + height:22px; + font-size:18px; +} +#u78_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u79 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u80 { + position:absolute; + left:8px; + top:111px; + width:72px; + height:22px; + font-size:18px; +} +#u80_img { + position:absolute; + left:0px; + top:0px; + width:72px; + height:22px; +} +#u81 { + position:absolute; + left:0px; + top:0px; + width:72px; + white-space:nowrap; +} +#u82 { + position:absolute; + left:92px; + top:106px; + width:200px; + height:27px; +} +#u82_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:27px; + background-image:; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u83 { + position:absolute; + left:0px; + top:180px; + width:300px; + height:60px; +} +#u83_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u84 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u85 { + position:absolute; + left:8px; + top:180px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u85_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u86 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u87 { + position:absolute; + left:8px; + top:221px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u87_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u88 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u89 { + position:absolute; + left:256px; + top:220px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u89_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u90 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u91 { + position:absolute; + left:232px; + top:182px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u91_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u92 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u93 { + position:absolute; + left:0px; + top:240px; + width:300px; + height:60px; +} +#u93_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u94 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u95 { + position:absolute; + left:8px; + top:240px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u95_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u96 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u97 { + position:absolute; + left:8px; + top:281px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u97_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u98 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u99 { + position:absolute; + left:256px; + top:278px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u99_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u100 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u101 { + position:absolute; + left:232px; + top:242px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u101_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u102 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u103 { + position:absolute; + left:0px; + top:300px; + width:300px; + height:60px; +} +#u103_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u104 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u105 { + position:absolute; + left:8px; + top:300px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u105_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u106 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u107 { + position:absolute; + left:8px; + top:341px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u107_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u108 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u109 { + position:absolute; + left:256px; + top:339px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u109_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u110 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u111 { + position:absolute; + left:232px; + top:302px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u111_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u112 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u113 { + position:absolute; + left:91px; + top:12px; + width:40px; + height:16px; +} +#u113_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:16px; +} +#u114 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u115 { + position:absolute; + left:91px; + top:44px; + width:85px; + height:16px; +} +#u115_img { + position:absolute; + left:0px; + top:0px; + width:85px; + height:16px; +} +#u116 { + position:absolute; + left:0px; + top:0px; + width:85px; + white-space:nowrap; +} +#u29_state2 { + position:absolute; + left:0px; + top:0px; + width:300px; + height:344px; + visibility:hidden; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; +} +#u29_state2_content { + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u117 { + position:absolute; + left:0px; + top:180px; + width:300px; + height:60px; +} +#u117_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u118 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u119 { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u119_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u120 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u121 { + position:absolute; + left:8px; + top:0px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u121_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u122 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u123 { + position:absolute; + left:186px; + top:0px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u123_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u124 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u125 { + position:absolute; + left:8px; + top:41px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u125_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u126 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u127 { + position:absolute; + left:160px; + top:41px; + width:77px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u127_img { + position:absolute; + left:0px; + top:0px; + width:77px; + height:19px; +} +#u128 { + position:absolute; + left:0px; + top:0px; + width:77px; + white-space:nowrap; +} +#u129 { + position:absolute; + left:210px; + top:21px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u129_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u130 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u131 { + position:absolute; + left:0px; + top:60px; + width:300px; + height:60px; +} +#u131_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u132 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u133 { + position:absolute; + left:8px; + top:60px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u133_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u134 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u135 { + position:absolute; + left:232px; + top:60px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u135_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u136 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u137 { + position:absolute; + left:8px; + top:101px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u137_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u138 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u139 { + position:absolute; + left:206px; + top:101px; + width:77px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u139_img { + position:absolute; + left:0px; + top:0px; + width:77px; + height:19px; +} +#u140 { + position:absolute; + left:0px; + top:0px; + width:77px; + white-space:nowrap; +} +#u141 { + position:absolute; + left:256px; + top:81px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u141_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u142 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u143 { + position:absolute; + left:0px; + top:120px; + width:300px; + height:60px; +} +#u143_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u144 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u145 { + position:absolute; + left:8px; + top:120px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u145_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u146 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u147 { + position:absolute; + left:232px; + top:120px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u147_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u148 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u149 { + position:absolute; + left:8px; + top:161px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u149_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u150 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u151 { + position:absolute; + left:206px; + top:161px; + width:77px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u151_img { + position:absolute; + left:0px; + top:0px; + width:77px; + height:19px; +} +#u152 { + position:absolute; + left:0px; + top:0px; + width:77px; + white-space:nowrap; +} +#u153 { + position:absolute; + left:256px; + top:141px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u153_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u154 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u155 { + position:absolute; + left:8px; + top:180px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u155_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u156 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u157 { + position:absolute; + left:8px; + top:221px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u157_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u158 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u159 { + position:absolute; + left:206px; + top:221px; + width:77px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u159_img { + position:absolute; + left:0px; + top:0px; + width:77px; + height:19px; +} +#u160 { + position:absolute; + left:0px; + top:0px; + width:77px; + white-space:nowrap; +} +#u161 { + position:absolute; + left:256px; + top:201px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u161_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u162 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u163 { + position:absolute; + left:232px; + top:182px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u163_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u164 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u165 { + position:absolute; + left:8px; + top:255px; + width:100px; + height:25px; +} +#u165_input { + position:absolute; + left:0px; + top:0px; + width:100px; + height:25px; + background-image:url(../../resources/images/transparent.gif); + text-align:center; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u166 { + position:absolute; + left:256px; + top:19px; + width:35px; + height:30px; +} +#u166_img { + position:absolute; + left:0px; + top:0px; + width:35px; + height:30px; +} +#u167 { + position:absolute; + left:2px; + top:7px; + width:31px; + visibility:hidden; + word-wrap:break-word; +} +#u29_state3 { + position:absolute; + left:0px; + top:0px; + width:300px; + height:344px; + visibility:hidden; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; +} +#u29_state3_content { + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u168 { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u168_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u169 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u170 { + position:absolute; + left:8px; + top:0px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u170_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u171 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u172 { + position:absolute; + left:232px; + top:0px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u172_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u173 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u174 { + position:absolute; + left:8px; + top:41px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u174_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u175 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u176 { + position:absolute; + left:206px; + top:41px; + width:77px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u176_img { + position:absolute; + left:0px; + top:0px; + width:77px; + height:19px; +} +#u177 { + position:absolute; + left:0px; + top:0px; + width:77px; + white-space:nowrap; +} +#u178 { + position:absolute; + left:256px; + top:21px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u178_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u179 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u180 { + position:absolute; + left:0px; + top:60px; + width:300px; + height:60px; +} +#u180_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u181 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u182 { + position:absolute; + left:8px; + top:60px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u182_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u183 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u184 { + position:absolute; + left:232px; + top:60px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u184_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u185 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u186 { + position:absolute; + left:8px; + top:101px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u186_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u187 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u188 { + position:absolute; + left:206px; + top:101px; + width:77px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u188_img { + position:absolute; + left:0px; + top:0px; + width:77px; + height:19px; +} +#u189 { + position:absolute; + left:0px; + top:0px; + width:77px; + white-space:nowrap; +} +#u190 { + position:absolute; + left:256px; + top:81px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u190_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u191 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u192 { + position:absolute; + left:0px; + top:120px; + width:300px; + height:60px; +} +#u192_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u193 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u194 { + position:absolute; + left:8px; + top:120px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u194_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u195 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u196 { + position:absolute; + left:232px; + top:120px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u196_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u197 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u198 { + position:absolute; + left:8px; + top:161px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u198_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u199 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u200 { + position:absolute; + left:206px; + top:161px; + width:77px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u200_img { + position:absolute; + left:0px; + top:0px; + width:77px; + height:19px; +} +#u201 { + position:absolute; + left:0px; + top:0px; + width:77px; + white-space:nowrap; +} +#u202 { + position:absolute; + left:256px; + top:141px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u202_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u203 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u204 { + position:absolute; + left:8px; + top:190px; + width:100px; + height:25px; +} +#u204_input { + position:absolute; + left:0px; + top:0px; + width:100px; + height:25px; + background-image:url(../../resources/images/transparent.gif); + text-align:center; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\346\210\221\350\246\201\345\217\221\345\267\245\350\265\204_-_\345\274\225\345\257\274\351\241\265_-_\351\246\226\346\254\241\350\277\224\345\233\236/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\346\210\221\350\246\201\345\217\221\345\267\245\350\265\204_-_\345\274\225\345\257\274\351\241\265_-_\351\246\226\346\254\241\350\277\224\345\233\236/data.js" new file mode 100644 index 0000000..31e373f --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\346\210\221\350\246\201\345\217\221\345\267\245\350\265\204_-_\345\274\225\345\257\274\351\241\265_-_\351\246\226\346\254\241\350\277\224\345\233\236/data.js" @@ -0,0 +1,732 @@ +$axure.loadCurrentPage({ + "url":"我要发工资_-_引导页_-_首次返回.html", + "generationDate":new Date(1416993075906.25), + "isCanvasEnabled":false, + "variables":["OnLoadVariable"], + "page":{ + "packageId":"210970bda7b942859a03c676e2d0c58d", + "type":"Axure:Page", + "name":"我要发工资 - 引导页 - 首次返回", + "notes":{ +}, + "style":{ + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "pageAlignment":"near", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "image":null, + "imageHorizontalAlignment":"near", + "imageVerticalAlignment":"near", + "imageRepeat":"auto", + "favicon":null, + "sketchFactor":"0", + "colorStyle":"appliedColor", + "fontName":"应用字体", + "borderWidth":"0"}, + "adaptiveStyles":{ +}, + "interactionMap":{ +}, + "diagram":{ + "objects":[{ + "id":"db4d7009166c489e84813f0de820482d", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":116}, + "size":{ + "width":8, + "height":36}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"7ae61cb339ec404f8c9eeffdb1cad956", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":116}, + "size":{ + "width":8, + "height":36}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u0.png"}}, +{ + "id":"feef0277060c46b7950647d339789cd7", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":192}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"4f6c450dbf7543648443130e398dbb1b", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":192}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u2.png"}}, +{ + "id":"4346a7d29377478084b0e7e83b1e590f", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":255}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"4e9753b1f68448408ec4fa56d2654b5c", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":255}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u2.png"}}, +{ + "id":"04b1ed1725614393a3d2862b6b4ac972", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":259, + "y":0}, + "size":{ + "width":60, + "height":10}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d4eea12e64404934a03e473b33ee3905", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":259, + "y":0}, + "size":{ + "width":60, + "height":10}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u6.png"}}, +{ + "id":"452b1eeadeb44900a9416b515f8a743c", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":6, + "y":6}, + "size":{ + "width":372, + "height":796}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"52"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ac531ffe5eee46c9b7f75b025ee5b195", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":6, + "y":6}, + "size":{ + "width":372, + "height":796}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"52"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u8.png"}}, +{ + "id":"a7992993efda4a41864960ca03bbf88b", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":32, + "y":120}, + "size":{ + "width":320, + "height":568}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"07f1f0f4b9254c26b9f22e82699de94d", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":32, + "y":120}, + "size":{ + "width":320, + "height":568}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u10.png"}}, +{ + "id":"4ccc16675faf4ec99fb598a427d1cede", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":157, + "y":66}, + "size":{ + "width":70, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"1f871c6140034155afd46388daf0bfff", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":157, + "y":66}, + "size":{ + "width":70, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u12.png"}}, +{ + "id":"fddb68c6ed614b1e8734b64ba2ed7b1a", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":185, + "y":40}, + "size":{ + "width":14, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"404539c8fd1643108ff3085640177bfe", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":185, + "y":40}, + "size":{ + "width":14, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u14.png"}}, +{ + "id":"debc308134654e54837c543589afdfa6", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":156, + "y":704}, + "size":{ + "width":72, + "height":72}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"55d429974b7f4d568bce45b2a1dfd6e3", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":156, + "y":704}, + "size":{ + "width":72, + "height":72}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u16.png"}}, +{ + "id":"e1cc7fc2183d46e8b79eab5070f674bd", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":32, + "y":140}, + "size":{ + "width":319, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"6e9b804847574deaa6fad7c88cb9eaef", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":32, + "y":140}, + "size":{ + "width":319, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_首次进入/u18.png"}}, +{ + "id":"c9a7fb68654c4e00979c12eaaf063fe5", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "location":{ + "x":40, + "y":159}, + "size":{ + "width":22, + "height":22}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"84972ef9e0684e83b78531c24931e452", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":40, + "y":159}, + "size":{ + "width":22, + "height":22}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_首次进入/u20.png"}}, +{ + "id":"11e3a5bc1f964b4186f0b3304251961a", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontSize":"20px", + "fontWeight":"700", + "location":{ + "x":141, + "y":156}, + "size":{ + "width":101, + "height":24}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"8af505b32091400da909f63b78f0908c", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontSize":"20px", + "fontWeight":"700", + "location":{ + "x":141, + "y":156}, + "size":{ + "width":101, + "height":24}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"de63c0637df14e60a32ac3507f1c9f69", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"16px", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFCCCCCC, + "opacity":1}, + "location":{ + "x":270, + "y":161}, + "size":{ + "width":65, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a4c61ddf31e44801998ae878522f127a", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"16px", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFCCCCCC, + "opacity":1}, + "location":{ + "x":270, + "y":161}, + "size":{ + "width":65, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"a3adeffac3ad4d22a3534d3e64075e0b", + "label":"", + "type":"button", + "styleType":"button", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "fontSize":"20px", + "location":{ + "x":62, + "y":610}, + "size":{ + "width":267, + "height":40}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 我用发工资 - 手动登记", + "target":{ + "targetType":"page", + "url":"我用发工资_-_手动登记.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true}, +{ + "id":"dc327e888abf4970ba322e68ce137948", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"20px", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFCCCCCC, + "opacity":1}, + "location":{ + "x":131, + "y":210}, + "size":{ + "width":121, + "height":24}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"bc06d15f51a04ed6aab4590cf6247323", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"20px", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFCCCCCC, + "opacity":1}, + "location":{ + "x":131, + "y":210}, + "size":{ + "width":121, + "height":24}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}]}}, + "masters":{ +}, + "objectPaths":{ + "db4d7009166c489e84813f0de820482d":{ + "scriptId":"u0"}, + "7ae61cb339ec404f8c9eeffdb1cad956":{ + "scriptId":"u1"}, + "feef0277060c46b7950647d339789cd7":{ + "scriptId":"u2"}, + "4f6c450dbf7543648443130e398dbb1b":{ + "scriptId":"u3"}, + "4346a7d29377478084b0e7e83b1e590f":{ + "scriptId":"u4"}, + "4e9753b1f68448408ec4fa56d2654b5c":{ + "scriptId":"u5"}, + "04b1ed1725614393a3d2862b6b4ac972":{ + "scriptId":"u6"}, + "d4eea12e64404934a03e473b33ee3905":{ + "scriptId":"u7"}, + "452b1eeadeb44900a9416b515f8a743c":{ + "scriptId":"u8"}, + "ac531ffe5eee46c9b7f75b025ee5b195":{ + "scriptId":"u9"}, + "a7992993efda4a41864960ca03bbf88b":{ + "scriptId":"u10"}, + "07f1f0f4b9254c26b9f22e82699de94d":{ + "scriptId":"u11"}, + "4ccc16675faf4ec99fb598a427d1cede":{ + "scriptId":"u12"}, + "1f871c6140034155afd46388daf0bfff":{ + "scriptId":"u13"}, + "fddb68c6ed614b1e8734b64ba2ed7b1a":{ + "scriptId":"u14"}, + "404539c8fd1643108ff3085640177bfe":{ + "scriptId":"u15"}, + "debc308134654e54837c543589afdfa6":{ + "scriptId":"u16"}, + "55d429974b7f4d568bce45b2a1dfd6e3":{ + "scriptId":"u17"}, + "e1cc7fc2183d46e8b79eab5070f674bd":{ + "scriptId":"u18"}, + "6e9b804847574deaa6fad7c88cb9eaef":{ + "scriptId":"u19"}, + "c9a7fb68654c4e00979c12eaaf063fe5":{ + "scriptId":"u20"}, + "84972ef9e0684e83b78531c24931e452":{ + "scriptId":"u21"}, + "11e3a5bc1f964b4186f0b3304251961a":{ + "scriptId":"u22"}, + "8af505b32091400da909f63b78f0908c":{ + "scriptId":"u23"}, + "de63c0637df14e60a32ac3507f1c9f69":{ + "scriptId":"u24"}, + "a4c61ddf31e44801998ae878522f127a":{ + "scriptId":"u25"}, + "a3adeffac3ad4d22a3534d3e64075e0b":{ + "scriptId":"u26"}, + "dc327e888abf4970ba322e68ce137948":{ + "scriptId":"u27"}, + "bc06d15f51a04ed6aab4590cf6247323":{ + "scriptId":"u28"}}}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\346\210\221\350\246\201\345\217\221\345\267\245\350\265\204_-_\345\274\225\345\257\274\351\241\265_-_\351\246\226\346\254\241\350\277\224\345\233\236/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\346\210\221\350\246\201\345\217\221\345\267\245\350\265\204_-_\345\274\225\345\257\274\351\241\265_-_\351\246\226\346\254\241\350\277\224\345\233\236/styles.css" new file mode 100644 index 0000000..a33cc14 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\346\210\221\350\246\201\345\217\221\345\267\245\350\265\204_-_\345\274\225\345\257\274\351\241\265_-_\351\246\226\346\254\241\350\277\224\345\233\236/styles.css" @@ -0,0 +1,348 @@ +body { + margin:0px; + background-image:none; + position:static; + left:auto; + width:378px; + margin-left:0; + margin-right:0; + text-align:left; +} +#base { + position:absolute; + z-index:0; +} +#u0 { + position:absolute; + left:0px; + top:116px; + width:8px; + height:36px; +} +#u0_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:36px; +} +#u1 { + position:absolute; + left:2px; + top:10px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u2 { + position:absolute; + left:0px; + top:192px; + width:8px; + height:27px; +} +#u2_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:27px; +} +#u3 { + position:absolute; + left:2px; + top:6px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u4 { + position:absolute; + left:0px; + top:255px; + width:8px; + height:27px; +} +#u4_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:27px; +} +#u5 { + position:absolute; + left:2px; + top:6px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u6 { + position:absolute; + left:259px; + top:0px; + width:60px; + height:10px; +} +#u6_img { + position:absolute; + left:0px; + top:0px; + width:60px; + height:10px; +} +#u7 { + position:absolute; + left:2px; + top:-3px; + width:56px; + visibility:hidden; + word-wrap:break-word; +} +#u8 { + position:absolute; + left:6px; + top:6px; + width:372px; + height:796px; +} +#u8_img { + position:absolute; + left:0px; + top:0px; + width:372px; + height:796px; +} +#u9 { + position:absolute; + left:2px; + top:390px; + width:368px; + visibility:hidden; + word-wrap:break-word; +} +#u10 { + position:absolute; + left:32px; + top:120px; + width:320px; + height:568px; +} +#u10_img { + position:absolute; + left:0px; + top:0px; + width:320px; + height:568px; +} +#u11 { + position:absolute; + left:2px; + top:276px; + width:316px; + visibility:hidden; + word-wrap:break-word; +} +#u12 { + position:absolute; + left:157px; + top:66px; + width:70px; + height:14px; +} +#u12_img { + position:absolute; + left:0px; + top:0px; + width:70px; + height:14px; +} +#u13 { + position:absolute; + left:2px; + top:-1px; + width:66px; + visibility:hidden; + word-wrap:break-word; +} +#u14 { + position:absolute; + left:185px; + top:40px; + width:14px; + height:14px; +} +#u14_img { + position:absolute; + left:0px; + top:0px; + width:14px; + height:14px; +} +#u15 { + position:absolute; + left:2px; + top:-1px; + width:10px; + visibility:hidden; + word-wrap:break-word; +} +#u16 { + position:absolute; + left:156px; + top:704px; + width:72px; + height:72px; +} +#u16_img { + position:absolute; + left:0px; + top:0px; + width:72px; + height:72px; +} +#u17 { + position:absolute; + left:2px; + top:28px; + width:68px; + visibility:hidden; + word-wrap:break-word; +} +#u18 { + position:absolute; + left:32px; + top:140px; + width:319px; + height:60px; +} +#u18_img { + position:absolute; + left:0px; + top:0px; + width:319px; + height:60px; +} +#u19 { + position:absolute; + left:2px; + top:22px; + width:315px; + visibility:hidden; + word-wrap:break-word; +} +#u20 { + position:absolute; + left:40px; + top:159px; + width:22px; + height:22px; +} +#u20_img { + position:absolute; + left:0px; + top:0px; + width:22px; + height:22px; +} +#u21 { + position:absolute; + left:2px; + top:3px; + width:18px; + visibility:hidden; + word-wrap:break-word; +} +#u22 { + position:absolute; + left:141px; + top:156px; + width:101px; + height:24px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + font-size:20px; +} +#u22_img { + position:absolute; + left:0px; + top:0px; + width:101px; + height:24px; +} +#u23 { + position:absolute; + left:0px; + top:0px; + width:101px; + white-space:nowrap; +} +#u24 { + position:absolute; + left:270px; + top:161px; + width:65px; + height:19px; + font-size:16px; + color:#CCCCCC; +} +#u24_img { + position:absolute; + left:0px; + top:0px; + width:65px; + height:19px; +} +#u25 { + position:absolute; + left:0px; + top:0px; + width:65px; + white-space:nowrap; +} +#u26 { + position:absolute; + left:62px; + top:610px; + width:267px; + height:40px; +} +#u26_input { + position:absolute; + left:0px; + top:0px; + width:267px; + height:40px; + background-image:url(../../resources/images/transparent.gif); + text-align:center; + font-family:'微软雅黑'; + font-size:20px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u27 { + position:absolute; + left:131px; + top:210px; + width:121px; + height:24px; + font-size:20px; + color:#CCCCCC; +} +#u27_img { + position:absolute; + left:0px; + top:0px; + width:121px; + height:24px; +} +#u28 { + position:absolute; + left:0px; + top:0px; + width:121px; + white-space:nowrap; +} diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\346\210\221\350\246\201\345\217\221\345\267\245\350\265\204_-_\345\274\225\345\257\274\351\241\265_-_\351\246\226\346\254\241\350\277\233\345\205\245/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\346\210\221\350\246\201\345\217\221\345\267\245\350\265\204_-_\345\274\225\345\257\274\351\241\265_-_\351\246\226\346\254\241\350\277\233\345\205\245/data.js" new file mode 100644 index 0000000..4cc3551 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\346\210\221\350\246\201\345\217\221\345\267\245\350\265\204_-_\345\274\225\345\257\274\351\241\265_-_\351\246\226\346\254\241\350\277\233\345\205\245/data.js" @@ -0,0 +1,928 @@ +$axure.loadCurrentPage({ + "url":"我要发工资_-_引导页_-_首次进入.html", + "generationDate":new Date(1416993071156.25), + "isCanvasEnabled":false, + "variables":["OnLoadVariable"], + "page":{ + "packageId":"b0369e10b27c494ebbc40efbfd5f1482", + "type":"Axure:Page", + "name":"我要发工资 - 引导页 - 首次进入", + "notes":{ +}, + "style":{ + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "pageAlignment":"near", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "image":null, + "imageHorizontalAlignment":"near", + "imageVerticalAlignment":"near", + "imageRepeat":"auto", + "favicon":null, + "sketchFactor":"0", + "colorStyle":"appliedColor", + "fontName":"应用字体", + "borderWidth":"0"}, + "adaptiveStyles":{ +}, + "interactionMap":{ +}, + "diagram":{ + "objects":[{ + "id":"db4d7009166c489e84813f0de820482d", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":116}, + "size":{ + "width":8, + "height":36}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"7ae61cb339ec404f8c9eeffdb1cad956", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":116}, + "size":{ + "width":8, + "height":36}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u0.png"}}, +{ + "id":"feef0277060c46b7950647d339789cd7", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":192}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"4f6c450dbf7543648443130e398dbb1b", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":192}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u2.png"}}, +{ + "id":"4346a7d29377478084b0e7e83b1e590f", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":255}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"4e9753b1f68448408ec4fa56d2654b5c", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":255}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u2.png"}}, +{ + "id":"04b1ed1725614393a3d2862b6b4ac972", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":259, + "y":0}, + "size":{ + "width":60, + "height":10}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d4eea12e64404934a03e473b33ee3905", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":259, + "y":0}, + "size":{ + "width":60, + "height":10}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u6.png"}}, +{ + "id":"452b1eeadeb44900a9416b515f8a743c", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":6, + "y":6}, + "size":{ + "width":372, + "height":796}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"52"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ac531ffe5eee46c9b7f75b025ee5b195", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":6, + "y":6}, + "size":{ + "width":372, + "height":796}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"52"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u8.png"}}, +{ + "id":"a7992993efda4a41864960ca03bbf88b", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":32, + "y":120}, + "size":{ + "width":320, + "height":568}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"07f1f0f4b9254c26b9f22e82699de94d", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":32, + "y":120}, + "size":{ + "width":320, + "height":568}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u10.png"}}, +{ + "id":"4ccc16675faf4ec99fb598a427d1cede", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":157, + "y":66}, + "size":{ + "width":70, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"1f871c6140034155afd46388daf0bfff", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":157, + "y":66}, + "size":{ + "width":70, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u12.png"}}, +{ + "id":"fddb68c6ed614b1e8734b64ba2ed7b1a", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":185, + "y":40}, + "size":{ + "width":14, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"404539c8fd1643108ff3085640177bfe", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":185, + "y":40}, + "size":{ + "width":14, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u14.png"}}, +{ + "id":"debc308134654e54837c543589afdfa6", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":156, + "y":704}, + "size":{ + "width":72, + "height":72}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"55d429974b7f4d568bce45b2a1dfd6e3", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":156, + "y":704}, + "size":{ + "width":72, + "height":72}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u16.png"}}, +{ + "id":"e1cc7fc2183d46e8b79eab5070f674bd", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":32, + "y":140}, + "size":{ + "width":319, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"6e9b804847574deaa6fad7c88cb9eaef", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":32, + "y":140}, + "size":{ + "width":319, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_首次进入/u18.png"}}, +{ + "id":"c9a7fb68654c4e00979c12eaaf063fe5", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "location":{ + "x":40, + "y":159}, + "size":{ + "width":22, + "height":22}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"84972ef9e0684e83b78531c24931e452", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":40, + "y":159}, + "size":{ + "width":22, + "height":22}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 发工资", + "target":{ + "targetType":"page", + "url":"发工资.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true, + "images":{ + "normal~":"images/我要发工资_-_引导页_-_首次进入/u20.png"}}, +{ + "id":"11e3a5bc1f964b4186f0b3304251961a", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontSize":"20px", + "fontWeight":"700", + "location":{ + "x":141, + "y":158}, + "size":{ + "width":101, + "height":24}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"8af505b32091400da909f63b78f0908c", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontSize":"20px", + "fontWeight":"700", + "location":{ + "x":141, + "y":158}, + "size":{ + "width":101, + "height":24}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"c35bf1956d074b17bae9d777bd54f164", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFCCCCCC}, + "location":{ + "x":43, + "y":210}, + "size":{ + "width":297, + "height":390}, + "cornerRadiusTopLeft":"10"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"3588a8821f2b4d54a84e47a7af6042be", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFCCCCCC}, + "location":{ + "x":43, + "y":210}, + "size":{ + "width":297, + "height":390}, + "cornerRadiusTopLeft":"10"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_首次进入/u24.png"}}, +{ + "id":"646db220bb6d4a22a3803cfdc706c1a3", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":58, + "y":260}, + "size":{ + "width":275, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"0fbbf8e274de4b2db7ba57ae162d49e4", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":58, + "y":260}, + "size":{ + "width":275, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"2f412019419c4631bdde8afeb003bdc1", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":58, + "y":285}, + "size":{ + "width":275, + "height":38}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"09a66a9139df4fdf9b3a6f3b7903822f", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":58, + "y":285}, + "size":{ + "width":275, + "height":38}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"651a0e076b834bd3b5768d85bdeec473", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":58, + "y":329}, + "size":{ + "width":279, + "height":38}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"488d6df4e5c94150b6dbfee17716bbb7", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":58, + "y":329}, + "size":{ + "width":279, + "height":38}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"1a62498b702646c490df2aad4562633c", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":58, + "y":372}, + "size":{ + "width":279, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"7ce29b6b559b4e59a91063e00c911558", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":58, + "y":372}, + "size":{ + "width":279, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"a92ff81044604ab5bf8ccff40c811b85", + "label":"", + "type":"checkbox", + "styleType":"checkbox", + "visible":true, + "style":{ + "location":{ + "x":58, + "y":440}, + "size":{ + "width":267, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"02243a2c57cb4859ac239f57bcaab175", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":58, + "y":440}, + "size":{ + "width":267, + "height":16}}, + "adaptiveStyles":{ +}}]}, +{ + "id":"a3adeffac3ad4d22a3534d3e64075e0b", + "label":"", + "type":"button", + "styleType":"button", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "fontSize":"20px", + "location":{ + "x":62, + "y":610}, + "size":{ + "width":267, + "height":40}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 我用发工资 - 手动登记", + "target":{ + "targetType":"page", + "url":"我用发工资_-_手动登记.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true}, +{ + "id":"568e8b61ec5844038c46b4277b621470", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":58, + "y":393}, + "size":{ + "width":210, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a28c0809cb264b2ba4c5bb657e278161", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":58, + "y":393}, + "size":{ + "width":210, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}]}}, + "masters":{ +}, + "objectPaths":{ + "db4d7009166c489e84813f0de820482d":{ + "scriptId":"u0"}, + "7ae61cb339ec404f8c9eeffdb1cad956":{ + "scriptId":"u1"}, + "feef0277060c46b7950647d339789cd7":{ + "scriptId":"u2"}, + "4f6c450dbf7543648443130e398dbb1b":{ + "scriptId":"u3"}, + "4346a7d29377478084b0e7e83b1e590f":{ + "scriptId":"u4"}, + "4e9753b1f68448408ec4fa56d2654b5c":{ + "scriptId":"u5"}, + "04b1ed1725614393a3d2862b6b4ac972":{ + "scriptId":"u6"}, + "d4eea12e64404934a03e473b33ee3905":{ + "scriptId":"u7"}, + "452b1eeadeb44900a9416b515f8a743c":{ + "scriptId":"u8"}, + "ac531ffe5eee46c9b7f75b025ee5b195":{ + "scriptId":"u9"}, + "a7992993efda4a41864960ca03bbf88b":{ + "scriptId":"u10"}, + "07f1f0f4b9254c26b9f22e82699de94d":{ + "scriptId":"u11"}, + "4ccc16675faf4ec99fb598a427d1cede":{ + "scriptId":"u12"}, + "1f871c6140034155afd46388daf0bfff":{ + "scriptId":"u13"}, + "fddb68c6ed614b1e8734b64ba2ed7b1a":{ + "scriptId":"u14"}, + "404539c8fd1643108ff3085640177bfe":{ + "scriptId":"u15"}, + "debc308134654e54837c543589afdfa6":{ + "scriptId":"u16"}, + "55d429974b7f4d568bce45b2a1dfd6e3":{ + "scriptId":"u17"}, + "e1cc7fc2183d46e8b79eab5070f674bd":{ + "scriptId":"u18"}, + "6e9b804847574deaa6fad7c88cb9eaef":{ + "scriptId":"u19"}, + "c9a7fb68654c4e00979c12eaaf063fe5":{ + "scriptId":"u20"}, + "84972ef9e0684e83b78531c24931e452":{ + "scriptId":"u21"}, + "11e3a5bc1f964b4186f0b3304251961a":{ + "scriptId":"u22"}, + "8af505b32091400da909f63b78f0908c":{ + "scriptId":"u23"}, + "c35bf1956d074b17bae9d777bd54f164":{ + "scriptId":"u24"}, + "3588a8821f2b4d54a84e47a7af6042be":{ + "scriptId":"u25"}, + "646db220bb6d4a22a3803cfdc706c1a3":{ + "scriptId":"u26"}, + "0fbbf8e274de4b2db7ba57ae162d49e4":{ + "scriptId":"u27"}, + "2f412019419c4631bdde8afeb003bdc1":{ + "scriptId":"u28"}, + "09a66a9139df4fdf9b3a6f3b7903822f":{ + "scriptId":"u29"}, + "651a0e076b834bd3b5768d85bdeec473":{ + "scriptId":"u30"}, + "488d6df4e5c94150b6dbfee17716bbb7":{ + "scriptId":"u31"}, + "1a62498b702646c490df2aad4562633c":{ + "scriptId":"u32"}, + "7ce29b6b559b4e59a91063e00c911558":{ + "scriptId":"u33"}, + "a92ff81044604ab5bf8ccff40c811b85":{ + "scriptId":"u34"}, + "02243a2c57cb4859ac239f57bcaab175":{ + "scriptId":"u35"}, + "a3adeffac3ad4d22a3534d3e64075e0b":{ + "scriptId":"u36"}, + "568e8b61ec5844038c46b4277b621470":{ + "scriptId":"u37"}, + "a28c0809cb264b2ba4c5bb657e278161":{ + "scriptId":"u38"}}}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\346\210\221\350\246\201\345\217\221\345\267\245\350\265\204_-_\345\274\225\345\257\274\351\241\265_-_\351\246\226\346\254\241\350\277\233\345\205\245/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\346\210\221\350\246\201\345\217\221\345\267\245\350\265\204_-_\345\274\225\345\257\274\351\241\265_-_\351\246\226\346\254\241\350\277\233\345\205\245/styles.css" new file mode 100644 index 0000000..b45e290 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\346\210\221\350\246\201\345\217\221\345\267\245\350\265\204_-_\345\274\225\345\257\274\351\241\265_-_\351\246\226\346\254\241\350\277\233\345\205\245/styles.css" @@ -0,0 +1,453 @@ +body { + margin:0px; + background-image:none; + position:static; + left:auto; + width:378px; + margin-left:0; + margin-right:0; + text-align:left; +} +#base { + position:absolute; + z-index:0; +} +#u0 { + position:absolute; + left:0px; + top:116px; + width:8px; + height:36px; +} +#u0_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:36px; +} +#u1 { + position:absolute; + left:2px; + top:10px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u2 { + position:absolute; + left:0px; + top:192px; + width:8px; + height:27px; +} +#u2_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:27px; +} +#u3 { + position:absolute; + left:2px; + top:6px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u4 { + position:absolute; + left:0px; + top:255px; + width:8px; + height:27px; +} +#u4_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:27px; +} +#u5 { + position:absolute; + left:2px; + top:6px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u6 { + position:absolute; + left:259px; + top:0px; + width:60px; + height:10px; +} +#u6_img { + position:absolute; + left:0px; + top:0px; + width:60px; + height:10px; +} +#u7 { + position:absolute; + left:2px; + top:-3px; + width:56px; + visibility:hidden; + word-wrap:break-word; +} +#u8 { + position:absolute; + left:6px; + top:6px; + width:372px; + height:796px; +} +#u8_img { + position:absolute; + left:0px; + top:0px; + width:372px; + height:796px; +} +#u9 { + position:absolute; + left:2px; + top:390px; + width:368px; + visibility:hidden; + word-wrap:break-word; +} +#u10 { + position:absolute; + left:32px; + top:120px; + width:320px; + height:568px; +} +#u10_img { + position:absolute; + left:0px; + top:0px; + width:320px; + height:568px; +} +#u11 { + position:absolute; + left:2px; + top:276px; + width:316px; + visibility:hidden; + word-wrap:break-word; +} +#u12 { + position:absolute; + left:157px; + top:66px; + width:70px; + height:14px; +} +#u12_img { + position:absolute; + left:0px; + top:0px; + width:70px; + height:14px; +} +#u13 { + position:absolute; + left:2px; + top:-1px; + width:66px; + visibility:hidden; + word-wrap:break-word; +} +#u14 { + position:absolute; + left:185px; + top:40px; + width:14px; + height:14px; +} +#u14_img { + position:absolute; + left:0px; + top:0px; + width:14px; + height:14px; +} +#u15 { + position:absolute; + left:2px; + top:-1px; + width:10px; + visibility:hidden; + word-wrap:break-word; +} +#u16 { + position:absolute; + left:156px; + top:704px; + width:72px; + height:72px; +} +#u16_img { + position:absolute; + left:0px; + top:0px; + width:72px; + height:72px; +} +#u17 { + position:absolute; + left:2px; + top:28px; + width:68px; + visibility:hidden; + word-wrap:break-word; +} +#u18 { + position:absolute; + left:32px; + top:140px; + width:319px; + height:60px; +} +#u18_img { + position:absolute; + left:0px; + top:0px; + width:319px; + height:60px; +} +#u19 { + position:absolute; + left:2px; + top:22px; + width:315px; + visibility:hidden; + word-wrap:break-word; +} +#u20 { + position:absolute; + left:40px; + top:159px; + width:22px; + height:22px; +} +#u20_img { + position:absolute; + left:0px; + top:0px; + width:22px; + height:22px; +} +#u21 { + position:absolute; + left:2px; + top:3px; + width:18px; + visibility:hidden; + word-wrap:break-word; +} +#u22 { + position:absolute; + left:141px; + top:158px; + width:101px; + height:24px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + font-size:20px; +} +#u22_img { + position:absolute; + left:0px; + top:0px; + width:101px; + height:24px; +} +#u23 { + position:absolute; + left:0px; + top:0px; + width:101px; + white-space:nowrap; +} +#u24 { + position:absolute; + left:43px; + top:210px; + width:297px; + height:390px; +} +#u24_img { + position:absolute; + left:0px; + top:0px; + width:297px; + height:390px; +} +#u25 { + position:absolute; + left:2px; + top:187px; + width:293px; + visibility:hidden; + word-wrap:break-word; +} +#u26 { + position:absolute; + left:58px; + top:260px; + width:275px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u26_img { + position:absolute; + left:0px; + top:0px; + width:275px; + height:19px; +} +#u27 { + position:absolute; + left:0px; + top:0px; + width:275px; + white-space:nowrap; +} +#u28 { + position:absolute; + left:58px; + top:285px; + width:275px; + height:38px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u28_img { + position:absolute; + left:0px; + top:0px; + width:275px; + height:38px; +} +#u29 { + position:absolute; + left:0px; + top:0px; + width:275px; + white-space:nowrap; +} +#u30 { + position:absolute; + left:58px; + top:329px; + width:279px; + height:38px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u30_img { + position:absolute; + left:0px; + top:0px; + width:279px; + height:38px; +} +#u31 { + position:absolute; + left:0px; + top:0px; + width:279px; + white-space:nowrap; +} +#u32 { + position:absolute; + left:58px; + top:372px; + width:279px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u32_img { + position:absolute; + left:0px; + top:0px; + width:279px; + height:19px; +} +#u33 { + position:absolute; + left:0px; + top:0px; + width:279px; + white-space:nowrap; +} +#u34 { + position:absolute; + left:58px; + top:440px; + width:267px; + height:16px; +} +#u35 { + position:absolute; + left:16px; + top:0px; + width:249px; + word-wrap:break-word; +} +#u34_input { + position:absolute; + left:-3px; + top:-2px; +} +#u36 { + position:absolute; + left:62px; + top:610px; + width:267px; + height:40px; +} +#u36_input { + position:absolute; + left:0px; + top:0px; + width:267px; + height:40px; + background-image:url(../../resources/images/transparent.gif); + text-align:center; + font-family:'微软雅黑'; + font-size:20px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u37 { + position:absolute; + left:58px; + top:393px; + width:210px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u37_img { + position:absolute; + left:0px; + top:0px; + width:210px; + height:19px; +} +#u38 { + position:absolute; + left:0px; + top:0px; + width:210px; + white-space:nowrap; +} diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\346\210\221\350\246\201\345\217\221\345\267\245\350\265\204_-_\345\274\225\347\224\250\350\256\242\345\215\225\350\256\260\345\275\225/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\346\210\221\350\246\201\345\217\221\345\267\245\350\265\204_-_\345\274\225\347\224\250\350\256\242\345\215\225\350\256\260\345\275\225/data.js" new file mode 100644 index 0000000..2f3b206 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\346\210\221\350\246\201\345\217\221\345\267\245\350\265\204_-_\345\274\225\347\224\250\350\256\242\345\215\225\350\256\260\345\275\225/data.js" @@ -0,0 +1,4599 @@ +$axure.loadCurrentPage({ + "url":"我要发工资_-_引用订单记录.html", + "generationDate":new Date(1416993071953.13), + "isCanvasEnabled":false, + "variables":["OnLoadVariable"], + "page":{ + "packageId":"af8a99435d3e4a86a4d916598d509581", + "type":"Axure:Page", + "name":"我要发工资 - 引用订单记录", + "notes":{ +}, + "style":{ + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "pageAlignment":"near", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "image":null, + "imageHorizontalAlignment":"near", + "imageVerticalAlignment":"near", + "imageRepeat":"auto", + "favicon":null, + "sketchFactor":"0", + "colorStyle":"appliedColor", + "fontName":"应用字体", + "borderWidth":"0"}, + "adaptiveStyles":{ +}, + "interactionMap":{ +}, + "diagram":{ + "objects":[{ + "id":"db4d7009166c489e84813f0de820482d", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":116}, + "size":{ + "width":8, + "height":36}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"7ae61cb339ec404f8c9eeffdb1cad956", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":116}, + "size":{ + "width":8, + "height":36}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u0.png"}}, +{ + "id":"feef0277060c46b7950647d339789cd7", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":192}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"4f6c450dbf7543648443130e398dbb1b", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":192}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u2.png"}}, +{ + "id":"4346a7d29377478084b0e7e83b1e590f", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":255}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"4e9753b1f68448408ec4fa56d2654b5c", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":255}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u2.png"}}, +{ + "id":"04b1ed1725614393a3d2862b6b4ac972", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":259, + "y":0}, + "size":{ + "width":60, + "height":10}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d4eea12e64404934a03e473b33ee3905", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":259, + "y":0}, + "size":{ + "width":60, + "height":10}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u6.png"}}, +{ + "id":"452b1eeadeb44900a9416b515f8a743c", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":6, + "y":6}, + "size":{ + "width":372, + "height":796}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"52"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ac531ffe5eee46c9b7f75b025ee5b195", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":6, + "y":6}, + "size":{ + "width":372, + "height":796}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"52"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u8.png"}}, +{ + "id":"a7992993efda4a41864960ca03bbf88b", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":32, + "y":120}, + "size":{ + "width":320, + "height":568}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"07f1f0f4b9254c26b9f22e82699de94d", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":32, + "y":120}, + "size":{ + "width":320, + "height":568}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u10.png"}}, +{ + "id":"4ccc16675faf4ec99fb598a427d1cede", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":157, + "y":66}, + "size":{ + "width":70, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"1f871c6140034155afd46388daf0bfff", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":157, + "y":66}, + "size":{ + "width":70, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u12.png"}}, +{ + "id":"fddb68c6ed614b1e8734b64ba2ed7b1a", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":185, + "y":40}, + "size":{ + "width":14, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"404539c8fd1643108ff3085640177bfe", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":185, + "y":40}, + "size":{ + "width":14, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u14.png"}}, +{ + "id":"debc308134654e54837c543589afdfa6", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":156, + "y":704}, + "size":{ + "width":72, + "height":72}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"55d429974b7f4d568bce45b2a1dfd6e3", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":156, + "y":704}, + "size":{ + "width":72, + "height":72}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u16.png"}}, +{ + "id":"e1cc7fc2183d46e8b79eab5070f674bd", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":32, + "y":140}, + "size":{ + "width":319, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"6e9b804847574deaa6fad7c88cb9eaef", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":32, + "y":140}, + "size":{ + "width":319, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_首次进入/u18.png"}}, +{ + "id":"c9a7fb68654c4e00979c12eaaf063fe5", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "location":{ + "x":40, + "y":159}, + "size":{ + "width":22, + "height":22}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"84972ef9e0684e83b78531c24931e452", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":40, + "y":159}, + "size":{ + "width":22, + "height":22}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 发工资", + "target":{ + "targetType":"page", + "url":"发工资.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true, + "images":{ + "normal~":"images/我要发工资_-_引导页_-_首次进入/u20.png"}}, +{ + "id":"11e3a5bc1f964b4186f0b3304251961a", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontSize":"20px", + "fontWeight":"700", + "location":{ + "x":141, + "y":156}, + "size":{ + "width":101, + "height":24}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"8af505b32091400da909f63b78f0908c", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontSize":"20px", + "fontWeight":"700", + "location":{ + "x":141, + "y":156}, + "size":{ + "width":101, + "height":24}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"de63c0637df14e60a32ac3507f1c9f69", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"16px", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFCCCCCC, + "opacity":1}, + "location":{ + "x":270, + "y":161}, + "size":{ + "width":65, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a4c61ddf31e44801998ae878522f127a", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"16px", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFCCCCCC, + "opacity":1}, + "location":{ + "x":270, + "y":161}, + "size":{ + "width":65, + "height":19}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 发放历史", + "target":{ + "targetType":"page", + "url":"发放历史.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true, + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"a3adeffac3ad4d22a3534d3e64075e0b", + "label":"", + "type":"button", + "styleType":"button", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "fontSize":"20px", + "location":{ + "x":62, + "y":610}, + "size":{ + "width":267, + "height":40}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 非首次", + "target":{ + "targetType":"page", + "url":"非首次.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true}, +{ + "id":"dc327e888abf4970ba322e68ce137948", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":48, + "y":210}, + "size":{ + "width":65, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"bc06d15f51a04ed6aab4590cf6247323", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":48, + "y":210}, + "size":{ + "width":65, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"6bfd069881764b5a9e1196574ce3f47f", + "label":"历史记录调整", + "type":"dynamicPanel", + "styleType":"dynamicPanel", + "visible":true, + "style":{ + "location":{ + "x":46, + "y":233}, + "size":{ + "width":300, + "height":344}}, + "adaptiveStyles":{ +}, + "scrollbars":"none", + "fitToContent":false, + "propagate":false, + "diagrams":[{ + "id":"991b1c9b73264b0e962a1cdc437cd910", + "label":"初始状态", + "type":"Axure:PanelDiagram", + "objects":[{ + "id":"f84864c3fb604a22ba68ed06dfe445e1", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":180}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"6a0615c40ca742e5a187eeae195a148d", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":180}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"d2980c24dcb644e8bf39caaef1ed8e92", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"41fc49f62f0c4c0db0e6f5ef4d1259a9", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"af50025f3bd848168add4bc9a8266ead", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":0}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"6670687828bc4cb3b6508d05800b9d0d", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":0}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"69947fc5fb7b40ffa67113ae48574b19", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":0}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"14116ff0aa6f4b2994fc8ec2aff619eb", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":0}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"409e9dc5600c4c459abe7e9d4ee463f4", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":41}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"85f8dce85e5a48e99e786d4ebf17e96a", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":41}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"64de7c338ff6408bb62bedc317aff990", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":41}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"f5e5aac77d4a45fc9d4b6cc9c3ac6f77", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":41}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"7631751df55a4ab3ba52bba1656bb61d", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":60}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"531750a52e904ee2863ccaa0f3980c50", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":60}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"847bdc5678ae463e9e0c5bf6344eeec6", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":60}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"69e00457061045c7ac4c8de1124623b5", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":60}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"b19d30e2f45d4c919532cbccd8d5a527", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":60}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"fc64a442bf9841b9a09e2e1d96790dc8", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":60}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"5ac1df068bbb41b692a7c12bbb9aac3c", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":101}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"e74783be79dd4b648d969cd92c9be34c", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":101}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"256311d070544419933dfc0c9628dc25", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":260, + "y":101}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"e59f3be1c97f475ba12899a1cdfd69cd", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":260, + "y":101}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"28f4bf059ac545b79fcb0349f607ef03", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":120}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"cbf5cdf362474d449ebf1b88d26f062e", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":120}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"66984c380bfb4dbd9d3010992bfb5118", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":120}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"247d54da70ff4a36ac7ff42c152e9a01", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":120}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"62b8a96d13c94ba39e5b16a74bc826fc", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":120}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"149698a8882f4ed3bf9f73f023314018", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":120}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"f47b7e2b7b534e3eb75ff804bfc9cc86", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":161}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"9b8339682c284718bec50c0473b953ca", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":161}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"5569546d8b6d40c4a6c7d68652a0fc66", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":161}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"188f1736d0ba4d53887b914774e026d5", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":161}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"74b4ef518a6f4960b349ae240b7a53b0", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":180}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"0992569808b94e31abd5dfda19b7a5b3", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":180}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"8718b0689b0241aab474af4231072c6f", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":221}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"fc0be95362664106a1f3934748e7ff02", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":221}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"c36188fd0405429684b4baffa4584efc", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":221}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ab72836d717c4f288f18812b7e96ad75", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":221}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"869b44de41aa48fd9496ffd018f723f9", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":182}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d2f50463bfeb4d4d8fb91e1206a67bd7", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":182}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"08094b3e818d40b3ae045e3b8aa93c6f", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"button", + "styleType":"button", + "visible":true, + "style":{ + "location":{ + "x":8, + "y":255}, + "size":{ + "width":100, + "height":25}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 编辑- 调用历史记录", + "target":{ + "targetType":"page", + "url":"编辑-_调用历史记录.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true}, +{ + "id":"c0db8fddf58744228ecf8f823bf7992d", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"imageMapRegion", + "styleType":"imageMapRegion", + "visible":true, + "style":{ + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"setPanelState", + "description":"设置 历史记录调整 to 选中编辑状态 向上滑动 in 1500ms", + "panelsToStates":[{ + "panelPath":["6bfd069881764b5a9e1196574ce3f47f"], + "stateInfo":{ + "setStateType":"diagram", + "stateNumber":2, + "stateValue":{ + "exprType":"stringLiteral", + "value":"1", + "stos":[]}, + "loop":false, + "showWhenSet":false, + "options":{ + "animateIn":{ + "easing":"slideUp", + "duration":1500}, + "compress":false}}}]}]}, +{ + "description":"用例 2", + "isNewIfGroup":false, + "actions":[{ + "action":"setPanelState", + "description":"设置 历史记录调整 to 长摁编辑状态 显示隐藏 push/pull widgets below 摆动 500ms", + "panelsToStates":[{ + "panelPath":["6bfd069881764b5a9e1196574ce3f47f"], + "stateInfo":{ + "setStateType":"diagram", + "stateNumber":3, + "stateValue":{ + "exprType":"stringLiteral", + "value":"1", + "stos":[]}, + "loop":false, + "showWhenSet":true, + "options":{ + "compress":true, + "vertical":true, + "compressEasing":"swing", + "compressDuration":500}}}]}]}]}}, + "tabbable":true}]}, +{ + "id":"2cc77ec7b1ea437992fc55d115aa35f8", + "label":"选中编辑状态", + "type":"Axure:PanelDiagram", + "objects":[{ + "id":"911a92c8af1648bab41cae1a2ad37022", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":8, + "y":41}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ac59a30f2f5c44b1b41b8dc3b11faf38", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":8, + "y":41}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"9aafa732c59244e4950920c702b2fb57", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":8, + "y":76}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"93a56a33a66c4b2fa6f73ea380b1d562", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":8, + "y":76}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"dff5bd8ab0134b3ca7badb1df645ac8e", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"textBox", + "styleType":"textBox", + "visible":true, + "style":{ + "location":{ + "x":92, + "y":73}, + "size":{ + "width":200, + "height":25}}, + "adaptiveStyles":{ +}}, +{ + "id":"a108693869444f45ba52312da22f375d", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"button", + "styleType":"button", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"20px", + "fontWeight":"700", + "location":{ + "x":8, + "y":144}, + "size":{ + "width":284, + "height":30}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"setPanelState", + "description":"设置 历史记录调整 to 初始状态 向下滑动 in 1500ms", + "panelsToStates":[{ + "panelPath":["6bfd069881764b5a9e1196574ce3f47f"], + "stateInfo":{ + "setStateType":"diagram", + "stateNumber":1, + "stateValue":{ + "exprType":"stringLiteral", + "value":"1", + "stos":[]}, + "loop":false, + "showWhenSet":false, + "options":{ + "animateIn":{ + "easing":"slideDown", + "duration":1500}, + "compress":false}}}]}]}]}}, + "tabbable":true}, +{ + "id":"e5a71d7336324815873a3c30805a53ea", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":8, + "y":9}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c4b6f6fbbba4409a812f45b186d5ff26", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":8, + "y":9}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"294f9a0eee3e4d69b4382665d7da733e", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":8, + "y":111}, + "size":{ + "width":72, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"47ece8e54dbe4b27a38506ea711c6c7b", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":8, + "y":111}, + "size":{ + "width":72, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"ca22bfd010af481dbce48ea282c0e2a5", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"comboBox", + "styleType":"comboBox", + "visible":true, + "style":{ + "location":{ + "x":92, + "y":106}, + "size":{ + "width":200, + "height":27}}, + "adaptiveStyles":{ +}}, +{ + "id":"1cf92b882f9c40b7be49cd14b4bc3f73", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":180}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"7b864be13b0a4a668216b20c7d4d9145", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":180}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"714e077676a744399d1dcfb3ee87134d", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":180}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"240c5489b8294e85b222bab8cfcfff0a", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":180}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"200b5a2790b74de2858f1f279c177f97", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":221}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ed2fc28bc4304256bf94d1869df981e4", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":221}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"f3d61219aa8c48279da7786eaedc8314", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":220}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"39db80847c02454993a764397ff1b49c", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":220}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"7e30cc3504544ce3a1360348bec7c28b", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":182}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"df6a047de4e14b8b9e0ceed3e35169da", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":182}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"c55062ad35b841218d0650bba0c3d6be", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":240}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"31b78be7881045b6a131ac3723610f33", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":240}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"68220ce18b534c838467c3fa1f54628f", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":240}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"07ba2353c6eb44a88540875a9219bbb7", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":240}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"51986eb0177c4ffa8c41edf9f2993933", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":281}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"241c6aeb43b74e7fa738d5e79d9ab69f", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":281}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"1379f3b175324363ace1c58ef7ea1583", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":278}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"267ad0b728a04ba39a8a334293385b66", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":278}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"d734a61ab66a4caaacc3849ff02ce23d", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":242}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"0a9d6c714b7845ddb34bea541dd0b6ed", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":242}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"f481afae9b3f419abc47224e6b9fa6a3", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":300}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d515c00237cf49ce9a7f567e6f38168b", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":300}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"aee0f6f09f8f4e6a8caadad529bcab2b", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":300}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"7faea74042684282bfeff15730dd8fc1", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":300}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"e8f41e18d26d4e78ae699b34364bb901", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":341}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"cc2f7e2a5cd94dc2b2af9889ca0c08ca", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":341}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"b2ea4900f5004187bda9a5e07dec3038", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":339}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a9c05bd711ab4418b2f0b0743abfe817", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":339}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"272eeafc8a53404eac4940f6848a1334", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":302}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"899eea9142704be7a39491eeefe4fb8c", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":302}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"307631eaea7c4f218897dfded5a62e32", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":91, + "y":12}, + "size":{ + "width":40, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"dc919a9fe1704202a4598a74fb2cbaad", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":91, + "y":12}, + "size":{ + "width":40, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"8fdcc1bad71648f79f47d8028cd6937b", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":91, + "y":44}, + "size":{ + "width":85, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"5a7ac66d9d2247a0a56b58411d68a313", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":91, + "y":44}, + "size":{ + "width":85, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}]}, +{ + "id":"7b846becffda4b4e8e102aced4e8744b", + "label":"长摁编辑状态", + "type":"Axure:PanelDiagram", + "objects":[{ + "id":"0906fb39c01e4e82b23e2adde1cbdd8d", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":180}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"31502a4a71804d428d2ab973682a61c3", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":180}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"cc51498eb79c4775adfbfe9bb49480ed", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"0f0cac67be8a4b15933103bf47f74fc9", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"97b3ced1ca0b460e8850f9ab4bf55891", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":0}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"7dde2b2e6de847e4beea21b8eb335f44", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":0}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"3caa4bf4ce884b26a22f1ed98b3c026f", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":186, + "y":0}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"47ae82919d514a55b410e422a0336c8c", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":186, + "y":0}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"85e95380b18e48659e673a15535a7b80", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":41}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"837881c79df54fe7852e059b3f0b2a3e", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":41}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"04d68ba55ac64e569f06af0d5f692db4", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":160, + "y":41}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"3e06cf2f51bf47a6b602bb22a3a19f9e", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":160, + "y":41}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"f5db33bdfd444b8ca037ae114eece9c4", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":210, + "y":21}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d0e2cbab61254b8e8d082f50143a07c6", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":210, + "y":21}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"0b0083f0261b4dc9a72284e9d9aabfbf", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":60}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ea2b4d67567e4b95b91ec88edbe63e20", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":60}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"20217fbea97449719f467c4e49d29a9d", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":60}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c808b9b969584ccd80cf28a1d2ae7e2d", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":60}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"803b1f9132ee4e0d9259b7e6b37ee885", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":60}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"484eb8c825cc44d3919b950db6537259", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":60}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"d834f3b8502740be937ee8363c6a63b8", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":101}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"4747a0df9f2b42098a26207dd65befc0", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":101}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"efeee076c442404c96789b2f078b2b59", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":206, + "y":101}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"dc2672e55ee74645a5fa7a6eccf4f8c9", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":206, + "y":101}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"d627b9e03e654be79be87d748c70ff3d", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":81}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"f35cf7dd15964e858764a747198f67b0", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":81}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"b6b55b10ce3f4059b7bfbe4b005290dd", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":120}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"056ff1a64fd14ecea984818c3b87f04f", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":120}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"1c0080a521ec4867ab38e1be2ade538c", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":120}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d8c56ef2a33c42e1bfafeb946d200634", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":120}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"550fb9d97d064ee6a0c2b0486e30bd79", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":120}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ef0a993838eb4029b5b1d61ac29f809b", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":120}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"969fa3bb0df74632a9ef074105635584", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":161}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"b18a0d7b6a014a74b60580b08f2dc02f", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":161}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"5a7d286aac4a4c24adf47e2e21ddbbda", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":206, + "y":161}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"e79a4608a12b4d69b373b6c45cb4be99", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":206, + "y":161}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"a62b8ea881b44b1284fa06d2a297150a", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":141}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a94eec71c1e94136b21fbc969fa6b4b0", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":141}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"49d954ff8cd24fedad8295dd58c061f9", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":180}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"87a7c1a0637a4fa2aa40b11f601a5514", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":180}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"7229df6d656a4e24ab03a591210bce9b", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":221}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"e33388f967c24fa4b95898d8a7a2e167", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":221}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"bdcd036e65ab4c1d9962660d24b7504c", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":206, + "y":221}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c76dd66428884bc4beeee960fbf0e6b0", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":206, + "y":221}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"fbdcd4b854fa47e2a8d526f9b1358304", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":201}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"8d139f74534e4e428b0652f84eb16645", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":201}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"0f8100264f1b42e1bd2416d1185c8481", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":182}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"38476bc5d59a4d2a9968c81a7963835c", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":182}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"5bb2dde30af447cf86b75611214d9614", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"button", + "styleType":"button", + "visible":true, + "style":{ + "location":{ + "x":8, + "y":255}, + "size":{ + "width":100, + "height":25}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 编辑- 调用历史记录", + "target":{ + "targetType":"page", + "url":"编辑-_调用历史记录.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true}, +{ + "id":"2c3916a0a50e400dbad561308531a0d5", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "location":{ + "x":256, + "y":19}, + "size":{ + "width":35, + "height":30}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"9be54af800a547248b7dae27e00dbab9", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":256, + "y":19}, + "size":{ + "width":35, + "height":30}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"setPanelState", + "description":"设置 历史记录调整 to 长摁编辑后 向左滑动 in 500ms", + "panelsToStates":[{ + "panelPath":["6bfd069881764b5a9e1196574ce3f47f"], + "stateInfo":{ + "setStateType":"diagram", + "stateNumber":4, + "stateValue":{ + "exprType":"stringLiteral", + "value":"1", + "stos":[]}, + "loop":false, + "showWhenSet":false, + "options":{ + "animateIn":{ + "easing":"slideLeft", + "duration":500}, + "compress":false}}}]}]}]}}, + "tabbable":true, + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u166.png"}}]}, +{ + "id":"51229cf37a694930b2f398a6370ae971", + "label":"长摁编辑后", + "type":"Axure:PanelDiagram", + "objects":[{ + "id":"5ffca1bf326b4771b3d89244dc5b62ba", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c8786b1af5d341008539ef2d75be9372", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"c1c45e19d5de46f8a45f0f2ff34556b8", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":0}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"2c37bc2f0ac74b6294b0e04a277c74c5", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":0}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"b3886854167f4073b30cb5e0553956fb", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":0}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a6556a2cf25e43619cc0c53d8e3a8ce8", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":0}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"9e1a8a5326c740a89f28d26743270b52", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":41}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"7c7e1610ff254d3487133358b103fe41", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":41}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"697b0f4d156c4340952978f4d18806fd", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":206, + "y":41}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"b3007fa0509745c7af8fca588cd868e5", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":206, + "y":41}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"efb094665245425d8fc202597649e13f", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":21}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"e34610b75b594eaebb408c5f9b67ccb3", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":21}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"6c37714580824902b30735fc8984d45c", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":60}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d00f5ceab4ad4a6fbf6267a1c583618a", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":60}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"366d8c2122f247aa823ef1004f7f7cb9", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":60}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"7ece00b814ae40d7801514b4aa1282ce", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":60}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"7d0412336c8d4ccab3bf8da05730143d", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":60}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"06200cb1c28646d58f8f64d8e851ee94", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":60}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"c762ebd4740c4bf98837bceba2559e0f", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":101}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"e55902a0ba114b68ba5d0707b6db51bb", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":101}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"9bcda36f8716465ab9ad7eb87985049f", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":206, + "y":101}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"fbc678b280ce4e74840900dfbd0a5ce7", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":206, + "y":101}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"6e84387227254d419c104162dccde441", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":81}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"47e561b8bfa6464baf249d75d9da106a", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":81}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"b9ca6b86111d49f48944c0e6661f5a1b", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":120}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"5ce7a0cf283146138c1484bebaa306ac", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":120}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"0d755c4af6e8434892970cc2118eaf93", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":120}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"0fcb06e80d1c4a55a03888edc5c70b72", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":120}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"ef18107a08dc41879a71710b1053cc15", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":120}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"4a0f1aee2b934107a290a8a36410b832", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":120}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"0907a4f8317b481fbfa70f0047a2c311", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":161}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"44919e5d6ba644d7ad435240c7449159", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":161}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"dbe4ecf853c947c7b5d86b8fa931a8d4", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":206, + "y":161}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"37332e57daf54efc9ad52e465c9beed7", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":206, + "y":161}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"992215bac6974c50976d119c2b81e0da", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":141}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"568198853a0446f49f75a80f8ac5fbc1", + "label":"", + "isContained":true, + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":141}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"202ec578ead14697b451f79381ea3c8a", + "label":"", + "parentDynamicPanel":"6bfd069881764b5a9e1196574ce3f47f", + "type":"button", + "styleType":"button", + "visible":true, + "style":{ + "location":{ + "x":8, + "y":190}, + "size":{ + "width":100, + "height":25}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 编辑- 调用历史记录", + "target":{ + "targetType":"page", + "url":"编辑-_调用历史记录.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true}]}]}]}}, + "masters":{ +}, + "objectPaths":{ + "db4d7009166c489e84813f0de820482d":{ + "scriptId":"u0"}, + "7ae61cb339ec404f8c9eeffdb1cad956":{ + "scriptId":"u1"}, + "feef0277060c46b7950647d339789cd7":{ + "scriptId":"u2"}, + "4f6c450dbf7543648443130e398dbb1b":{ + "scriptId":"u3"}, + "4346a7d29377478084b0e7e83b1e590f":{ + "scriptId":"u4"}, + "4e9753b1f68448408ec4fa56d2654b5c":{ + "scriptId":"u5"}, + "04b1ed1725614393a3d2862b6b4ac972":{ + "scriptId":"u6"}, + "d4eea12e64404934a03e473b33ee3905":{ + "scriptId":"u7"}, + "452b1eeadeb44900a9416b515f8a743c":{ + "scriptId":"u8"}, + "ac531ffe5eee46c9b7f75b025ee5b195":{ + "scriptId":"u9"}, + "a7992993efda4a41864960ca03bbf88b":{ + "scriptId":"u10"}, + "07f1f0f4b9254c26b9f22e82699de94d":{ + "scriptId":"u11"}, + "4ccc16675faf4ec99fb598a427d1cede":{ + "scriptId":"u12"}, + "1f871c6140034155afd46388daf0bfff":{ + "scriptId":"u13"}, + "fddb68c6ed614b1e8734b64ba2ed7b1a":{ + "scriptId":"u14"}, + "404539c8fd1643108ff3085640177bfe":{ + "scriptId":"u15"}, + "debc308134654e54837c543589afdfa6":{ + "scriptId":"u16"}, + "55d429974b7f4d568bce45b2a1dfd6e3":{ + "scriptId":"u17"}, + "e1cc7fc2183d46e8b79eab5070f674bd":{ + "scriptId":"u18"}, + "6e9b804847574deaa6fad7c88cb9eaef":{ + "scriptId":"u19"}, + "c9a7fb68654c4e00979c12eaaf063fe5":{ + "scriptId":"u20"}, + "84972ef9e0684e83b78531c24931e452":{ + "scriptId":"u21"}, + "11e3a5bc1f964b4186f0b3304251961a":{ + "scriptId":"u22"}, + "8af505b32091400da909f63b78f0908c":{ + "scriptId":"u23"}, + "de63c0637df14e60a32ac3507f1c9f69":{ + "scriptId":"u24"}, + "a4c61ddf31e44801998ae878522f127a":{ + "scriptId":"u25"}, + "a3adeffac3ad4d22a3534d3e64075e0b":{ + "scriptId":"u26"}, + "dc327e888abf4970ba322e68ce137948":{ + "scriptId":"u27"}, + "bc06d15f51a04ed6aab4590cf6247323":{ + "scriptId":"u28"}, + "6bfd069881764b5a9e1196574ce3f47f":{ + "scriptId":"u29"}, + "f84864c3fb604a22ba68ed06dfe445e1":{ + "scriptId":"u30"}, + "6a0615c40ca742e5a187eeae195a148d":{ + "scriptId":"u31"}, + "d2980c24dcb644e8bf39caaef1ed8e92":{ + "scriptId":"u32"}, + "41fc49f62f0c4c0db0e6f5ef4d1259a9":{ + "scriptId":"u33"}, + "af50025f3bd848168add4bc9a8266ead":{ + "scriptId":"u34"}, + "6670687828bc4cb3b6508d05800b9d0d":{ + "scriptId":"u35"}, + "69947fc5fb7b40ffa67113ae48574b19":{ + "scriptId":"u36"}, + "14116ff0aa6f4b2994fc8ec2aff619eb":{ + "scriptId":"u37"}, + "409e9dc5600c4c459abe7e9d4ee463f4":{ + "scriptId":"u38"}, + "85f8dce85e5a48e99e786d4ebf17e96a":{ + "scriptId":"u39"}, + "64de7c338ff6408bb62bedc317aff990":{ + "scriptId":"u40"}, + "f5e5aac77d4a45fc9d4b6cc9c3ac6f77":{ + "scriptId":"u41"}, + "7631751df55a4ab3ba52bba1656bb61d":{ + "scriptId":"u42"}, + "531750a52e904ee2863ccaa0f3980c50":{ + "scriptId":"u43"}, + "847bdc5678ae463e9e0c5bf6344eeec6":{ + "scriptId":"u44"}, + "69e00457061045c7ac4c8de1124623b5":{ + "scriptId":"u45"}, + "b19d30e2f45d4c919532cbccd8d5a527":{ + "scriptId":"u46"}, + "fc64a442bf9841b9a09e2e1d96790dc8":{ + "scriptId":"u47"}, + "5ac1df068bbb41b692a7c12bbb9aac3c":{ + "scriptId":"u48"}, + "e74783be79dd4b648d969cd92c9be34c":{ + "scriptId":"u49"}, + "256311d070544419933dfc0c9628dc25":{ + "scriptId":"u50"}, + "e59f3be1c97f475ba12899a1cdfd69cd":{ + "scriptId":"u51"}, + "28f4bf059ac545b79fcb0349f607ef03":{ + "scriptId":"u52"}, + "cbf5cdf362474d449ebf1b88d26f062e":{ + "scriptId":"u53"}, + "66984c380bfb4dbd9d3010992bfb5118":{ + "scriptId":"u54"}, + "247d54da70ff4a36ac7ff42c152e9a01":{ + "scriptId":"u55"}, + "62b8a96d13c94ba39e5b16a74bc826fc":{ + "scriptId":"u56"}, + "149698a8882f4ed3bf9f73f023314018":{ + "scriptId":"u57"}, + "f47b7e2b7b534e3eb75ff804bfc9cc86":{ + "scriptId":"u58"}, + "9b8339682c284718bec50c0473b953ca":{ + "scriptId":"u59"}, + "5569546d8b6d40c4a6c7d68652a0fc66":{ + "scriptId":"u60"}, + "188f1736d0ba4d53887b914774e026d5":{ + "scriptId":"u61"}, + "74b4ef518a6f4960b349ae240b7a53b0":{ + "scriptId":"u62"}, + "0992569808b94e31abd5dfda19b7a5b3":{ + "scriptId":"u63"}, + "8718b0689b0241aab474af4231072c6f":{ + "scriptId":"u64"}, + "fc0be95362664106a1f3934748e7ff02":{ + "scriptId":"u65"}, + "c36188fd0405429684b4baffa4584efc":{ + "scriptId":"u66"}, + "ab72836d717c4f288f18812b7e96ad75":{ + "scriptId":"u67"}, + "869b44de41aa48fd9496ffd018f723f9":{ + "scriptId":"u68"}, + "d2f50463bfeb4d4d8fb91e1206a67bd7":{ + "scriptId":"u69"}, + "08094b3e818d40b3ae045e3b8aa93c6f":{ + "scriptId":"u70"}, + "c0db8fddf58744228ecf8f823bf7992d":{ + "scriptId":"u71"}, + "911a92c8af1648bab41cae1a2ad37022":{ + "scriptId":"u72"}, + "ac59a30f2f5c44b1b41b8dc3b11faf38":{ + "scriptId":"u73"}, + "9aafa732c59244e4950920c702b2fb57":{ + "scriptId":"u74"}, + "93a56a33a66c4b2fa6f73ea380b1d562":{ + "scriptId":"u75"}, + "dff5bd8ab0134b3ca7badb1df645ac8e":{ + "scriptId":"u76"}, + "a108693869444f45ba52312da22f375d":{ + "scriptId":"u77"}, + "e5a71d7336324815873a3c30805a53ea":{ + "scriptId":"u78"}, + "c4b6f6fbbba4409a812f45b186d5ff26":{ + "scriptId":"u79"}, + "294f9a0eee3e4d69b4382665d7da733e":{ + "scriptId":"u80"}, + "47ece8e54dbe4b27a38506ea711c6c7b":{ + "scriptId":"u81"}, + "ca22bfd010af481dbce48ea282c0e2a5":{ + "scriptId":"u82"}, + "1cf92b882f9c40b7be49cd14b4bc3f73":{ + "scriptId":"u83"}, + "7b864be13b0a4a668216b20c7d4d9145":{ + "scriptId":"u84"}, + "714e077676a744399d1dcfb3ee87134d":{ + "scriptId":"u85"}, + "240c5489b8294e85b222bab8cfcfff0a":{ + "scriptId":"u86"}, + "200b5a2790b74de2858f1f279c177f97":{ + "scriptId":"u87"}, + "ed2fc28bc4304256bf94d1869df981e4":{ + "scriptId":"u88"}, + "f3d61219aa8c48279da7786eaedc8314":{ + "scriptId":"u89"}, + "39db80847c02454993a764397ff1b49c":{ + "scriptId":"u90"}, + "7e30cc3504544ce3a1360348bec7c28b":{ + "scriptId":"u91"}, + "df6a047de4e14b8b9e0ceed3e35169da":{ + "scriptId":"u92"}, + "c55062ad35b841218d0650bba0c3d6be":{ + "scriptId":"u93"}, + "31b78be7881045b6a131ac3723610f33":{ + "scriptId":"u94"}, + "68220ce18b534c838467c3fa1f54628f":{ + "scriptId":"u95"}, + "07ba2353c6eb44a88540875a9219bbb7":{ + "scriptId":"u96"}, + "51986eb0177c4ffa8c41edf9f2993933":{ + "scriptId":"u97"}, + "241c6aeb43b74e7fa738d5e79d9ab69f":{ + "scriptId":"u98"}, + "1379f3b175324363ace1c58ef7ea1583":{ + "scriptId":"u99"}, + "267ad0b728a04ba39a8a334293385b66":{ + "scriptId":"u100"}, + "d734a61ab66a4caaacc3849ff02ce23d":{ + "scriptId":"u101"}, + "0a9d6c714b7845ddb34bea541dd0b6ed":{ + "scriptId":"u102"}, + "f481afae9b3f419abc47224e6b9fa6a3":{ + "scriptId":"u103"}, + "d515c00237cf49ce9a7f567e6f38168b":{ + "scriptId":"u104"}, + "aee0f6f09f8f4e6a8caadad529bcab2b":{ + "scriptId":"u105"}, + "7faea74042684282bfeff15730dd8fc1":{ + "scriptId":"u106"}, + "e8f41e18d26d4e78ae699b34364bb901":{ + "scriptId":"u107"}, + "cc2f7e2a5cd94dc2b2af9889ca0c08ca":{ + "scriptId":"u108"}, + "b2ea4900f5004187bda9a5e07dec3038":{ + "scriptId":"u109"}, + "a9c05bd711ab4418b2f0b0743abfe817":{ + "scriptId":"u110"}, + "272eeafc8a53404eac4940f6848a1334":{ + "scriptId":"u111"}, + "899eea9142704be7a39491eeefe4fb8c":{ + "scriptId":"u112"}, + "307631eaea7c4f218897dfded5a62e32":{ + "scriptId":"u113"}, + "dc919a9fe1704202a4598a74fb2cbaad":{ + "scriptId":"u114"}, + "8fdcc1bad71648f79f47d8028cd6937b":{ + "scriptId":"u115"}, + "5a7ac66d9d2247a0a56b58411d68a313":{ + "scriptId":"u116"}, + "0906fb39c01e4e82b23e2adde1cbdd8d":{ + "scriptId":"u117"}, + "31502a4a71804d428d2ab973682a61c3":{ + "scriptId":"u118"}, + "cc51498eb79c4775adfbfe9bb49480ed":{ + "scriptId":"u119"}, + "0f0cac67be8a4b15933103bf47f74fc9":{ + "scriptId":"u120"}, + "97b3ced1ca0b460e8850f9ab4bf55891":{ + "scriptId":"u121"}, + "7dde2b2e6de847e4beea21b8eb335f44":{ + "scriptId":"u122"}, + "3caa4bf4ce884b26a22f1ed98b3c026f":{ + "scriptId":"u123"}, + "47ae82919d514a55b410e422a0336c8c":{ + "scriptId":"u124"}, + "85e95380b18e48659e673a15535a7b80":{ + "scriptId":"u125"}, + "837881c79df54fe7852e059b3f0b2a3e":{ + "scriptId":"u126"}, + "04d68ba55ac64e569f06af0d5f692db4":{ + "scriptId":"u127"}, + "3e06cf2f51bf47a6b602bb22a3a19f9e":{ + "scriptId":"u128"}, + "f5db33bdfd444b8ca037ae114eece9c4":{ + "scriptId":"u129"}, + "d0e2cbab61254b8e8d082f50143a07c6":{ + "scriptId":"u130"}, + "0b0083f0261b4dc9a72284e9d9aabfbf":{ + "scriptId":"u131"}, + "ea2b4d67567e4b95b91ec88edbe63e20":{ + "scriptId":"u132"}, + "20217fbea97449719f467c4e49d29a9d":{ + "scriptId":"u133"}, + "c808b9b969584ccd80cf28a1d2ae7e2d":{ + "scriptId":"u134"}, + "803b1f9132ee4e0d9259b7e6b37ee885":{ + "scriptId":"u135"}, + "484eb8c825cc44d3919b950db6537259":{ + "scriptId":"u136"}, + "d834f3b8502740be937ee8363c6a63b8":{ + "scriptId":"u137"}, + "4747a0df9f2b42098a26207dd65befc0":{ + "scriptId":"u138"}, + "efeee076c442404c96789b2f078b2b59":{ + "scriptId":"u139"}, + "dc2672e55ee74645a5fa7a6eccf4f8c9":{ + "scriptId":"u140"}, + "d627b9e03e654be79be87d748c70ff3d":{ + "scriptId":"u141"}, + "f35cf7dd15964e858764a747198f67b0":{ + "scriptId":"u142"}, + "b6b55b10ce3f4059b7bfbe4b005290dd":{ + "scriptId":"u143"}, + "056ff1a64fd14ecea984818c3b87f04f":{ + "scriptId":"u144"}, + "1c0080a521ec4867ab38e1be2ade538c":{ + "scriptId":"u145"}, + "d8c56ef2a33c42e1bfafeb946d200634":{ + "scriptId":"u146"}, + "550fb9d97d064ee6a0c2b0486e30bd79":{ + "scriptId":"u147"}, + "ef0a993838eb4029b5b1d61ac29f809b":{ + "scriptId":"u148"}, + "969fa3bb0df74632a9ef074105635584":{ + "scriptId":"u149"}, + "b18a0d7b6a014a74b60580b08f2dc02f":{ + "scriptId":"u150"}, + "5a7d286aac4a4c24adf47e2e21ddbbda":{ + "scriptId":"u151"}, + "e79a4608a12b4d69b373b6c45cb4be99":{ + "scriptId":"u152"}, + "a62b8ea881b44b1284fa06d2a297150a":{ + "scriptId":"u153"}, + "a94eec71c1e94136b21fbc969fa6b4b0":{ + "scriptId":"u154"}, + "49d954ff8cd24fedad8295dd58c061f9":{ + "scriptId":"u155"}, + "87a7c1a0637a4fa2aa40b11f601a5514":{ + "scriptId":"u156"}, + "7229df6d656a4e24ab03a591210bce9b":{ + "scriptId":"u157"}, + "e33388f967c24fa4b95898d8a7a2e167":{ + "scriptId":"u158"}, + "bdcd036e65ab4c1d9962660d24b7504c":{ + "scriptId":"u159"}, + "c76dd66428884bc4beeee960fbf0e6b0":{ + "scriptId":"u160"}, + "fbdcd4b854fa47e2a8d526f9b1358304":{ + "scriptId":"u161"}, + "8d139f74534e4e428b0652f84eb16645":{ + "scriptId":"u162"}, + "0f8100264f1b42e1bd2416d1185c8481":{ + "scriptId":"u163"}, + "38476bc5d59a4d2a9968c81a7963835c":{ + "scriptId":"u164"}, + "5bb2dde30af447cf86b75611214d9614":{ + "scriptId":"u165"}, + "2c3916a0a50e400dbad561308531a0d5":{ + "scriptId":"u166"}, + "9be54af800a547248b7dae27e00dbab9":{ + "scriptId":"u167"}, + "5ffca1bf326b4771b3d89244dc5b62ba":{ + "scriptId":"u168"}, + "c8786b1af5d341008539ef2d75be9372":{ + "scriptId":"u169"}, + "c1c45e19d5de46f8a45f0f2ff34556b8":{ + "scriptId":"u170"}, + "2c37bc2f0ac74b6294b0e04a277c74c5":{ + "scriptId":"u171"}, + "b3886854167f4073b30cb5e0553956fb":{ + "scriptId":"u172"}, + "a6556a2cf25e43619cc0c53d8e3a8ce8":{ + "scriptId":"u173"}, + "9e1a8a5326c740a89f28d26743270b52":{ + "scriptId":"u174"}, + "7c7e1610ff254d3487133358b103fe41":{ + "scriptId":"u175"}, + "697b0f4d156c4340952978f4d18806fd":{ + "scriptId":"u176"}, + "b3007fa0509745c7af8fca588cd868e5":{ + "scriptId":"u177"}, + "efb094665245425d8fc202597649e13f":{ + "scriptId":"u178"}, + "e34610b75b594eaebb408c5f9b67ccb3":{ + "scriptId":"u179"}, + "6c37714580824902b30735fc8984d45c":{ + "scriptId":"u180"}, + "d00f5ceab4ad4a6fbf6267a1c583618a":{ + "scriptId":"u181"}, + "366d8c2122f247aa823ef1004f7f7cb9":{ + "scriptId":"u182"}, + "7ece00b814ae40d7801514b4aa1282ce":{ + "scriptId":"u183"}, + "7d0412336c8d4ccab3bf8da05730143d":{ + "scriptId":"u184"}, + "06200cb1c28646d58f8f64d8e851ee94":{ + "scriptId":"u185"}, + "c762ebd4740c4bf98837bceba2559e0f":{ + "scriptId":"u186"}, + "e55902a0ba114b68ba5d0707b6db51bb":{ + "scriptId":"u187"}, + "9bcda36f8716465ab9ad7eb87985049f":{ + "scriptId":"u188"}, + "fbc678b280ce4e74840900dfbd0a5ce7":{ + "scriptId":"u189"}, + "6e84387227254d419c104162dccde441":{ + "scriptId":"u190"}, + "47e561b8bfa6464baf249d75d9da106a":{ + "scriptId":"u191"}, + "b9ca6b86111d49f48944c0e6661f5a1b":{ + "scriptId":"u192"}, + "5ce7a0cf283146138c1484bebaa306ac":{ + "scriptId":"u193"}, + "0d755c4af6e8434892970cc2118eaf93":{ + "scriptId":"u194"}, + "0fcb06e80d1c4a55a03888edc5c70b72":{ + "scriptId":"u195"}, + "ef18107a08dc41879a71710b1053cc15":{ + "scriptId":"u196"}, + "4a0f1aee2b934107a290a8a36410b832":{ + "scriptId":"u197"}, + "0907a4f8317b481fbfa70f0047a2c311":{ + "scriptId":"u198"}, + "44919e5d6ba644d7ad435240c7449159":{ + "scriptId":"u199"}, + "dbe4ecf853c947c7b5d86b8fa931a8d4":{ + "scriptId":"u200"}, + "37332e57daf54efc9ad52e465c9beed7":{ + "scriptId":"u201"}, + "992215bac6974c50976d119c2b81e0da":{ + "scriptId":"u202"}, + "568198853a0446f49f75a80f8ac5fbc1":{ + "scriptId":"u203"}, + "202ec578ead14697b451f79381ea3c8a":{ + "scriptId":"u204"}}}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\346\210\221\350\246\201\345\217\221\345\267\245\350\265\204_-_\345\274\225\347\224\250\350\256\242\345\215\225\350\256\260\345\275\225/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\346\210\221\350\246\201\345\217\221\345\267\245\350\265\204_-_\345\274\225\347\224\250\350\256\242\345\215\225\350\256\260\345\275\225/styles.css" new file mode 100644 index 0000000..9fdcaf7 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\346\210\221\350\246\201\345\217\221\345\267\245\350\265\204_-_\345\274\225\347\224\250\350\256\242\345\215\225\350\256\260\345\275\225/styles.css" @@ -0,0 +1,2447 @@ +body { + margin:0px; + background-image:none; + position:static; + left:auto; + width:378px; + margin-left:0; + margin-right:0; + text-align:left; +} +#base { + position:absolute; + z-index:0; +} +#u0 { + position:absolute; + left:0px; + top:116px; + width:8px; + height:36px; +} +#u0_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:36px; +} +#u1 { + position:absolute; + left:2px; + top:10px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u2 { + position:absolute; + left:0px; + top:192px; + width:8px; + height:27px; +} +#u2_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:27px; +} +#u3 { + position:absolute; + left:2px; + top:6px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u4 { + position:absolute; + left:0px; + top:255px; + width:8px; + height:27px; +} +#u4_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:27px; +} +#u5 { + position:absolute; + left:2px; + top:6px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u6 { + position:absolute; + left:259px; + top:0px; + width:60px; + height:10px; +} +#u6_img { + position:absolute; + left:0px; + top:0px; + width:60px; + height:10px; +} +#u7 { + position:absolute; + left:2px; + top:-3px; + width:56px; + visibility:hidden; + word-wrap:break-word; +} +#u8 { + position:absolute; + left:6px; + top:6px; + width:372px; + height:796px; +} +#u8_img { + position:absolute; + left:0px; + top:0px; + width:372px; + height:796px; +} +#u9 { + position:absolute; + left:2px; + top:390px; + width:368px; + visibility:hidden; + word-wrap:break-word; +} +#u10 { + position:absolute; + left:32px; + top:120px; + width:320px; + height:568px; +} +#u10_img { + position:absolute; + left:0px; + top:0px; + width:320px; + height:568px; +} +#u11 { + position:absolute; + left:2px; + top:276px; + width:316px; + visibility:hidden; + word-wrap:break-word; +} +#u12 { + position:absolute; + left:157px; + top:66px; + width:70px; + height:14px; +} +#u12_img { + position:absolute; + left:0px; + top:0px; + width:70px; + height:14px; +} +#u13 { + position:absolute; + left:2px; + top:-1px; + width:66px; + visibility:hidden; + word-wrap:break-word; +} +#u14 { + position:absolute; + left:185px; + top:40px; + width:14px; + height:14px; +} +#u14_img { + position:absolute; + left:0px; + top:0px; + width:14px; + height:14px; +} +#u15 { + position:absolute; + left:2px; + top:-1px; + width:10px; + visibility:hidden; + word-wrap:break-word; +} +#u16 { + position:absolute; + left:156px; + top:704px; + width:72px; + height:72px; +} +#u16_img { + position:absolute; + left:0px; + top:0px; + width:72px; + height:72px; +} +#u17 { + position:absolute; + left:2px; + top:28px; + width:68px; + visibility:hidden; + word-wrap:break-word; +} +#u18 { + position:absolute; + left:32px; + top:140px; + width:319px; + height:60px; +} +#u18_img { + position:absolute; + left:0px; + top:0px; + width:319px; + height:60px; +} +#u19 { + position:absolute; + left:2px; + top:22px; + width:315px; + visibility:hidden; + word-wrap:break-word; +} +#u20 { + position:absolute; + left:40px; + top:159px; + width:22px; + height:22px; +} +#u20_img { + position:absolute; + left:0px; + top:0px; + width:22px; + height:22px; +} +#u21 { + position:absolute; + left:2px; + top:3px; + width:18px; + visibility:hidden; + word-wrap:break-word; +} +#u22 { + position:absolute; + left:141px; + top:156px; + width:101px; + height:24px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + font-size:20px; +} +#u22_img { + position:absolute; + left:0px; + top:0px; + width:101px; + height:24px; +} +#u23 { + position:absolute; + left:0px; + top:0px; + width:101px; + white-space:nowrap; +} +#u24 { + position:absolute; + left:270px; + top:161px; + width:65px; + height:19px; + font-size:16px; + color:#CCCCCC; +} +#u24_img { + position:absolute; + left:0px; + top:0px; + width:65px; + height:19px; +} +#u25 { + position:absolute; + left:0px; + top:0px; + width:65px; + white-space:nowrap; +} +#u26 { + position:absolute; + left:62px; + top:610px; + width:267px; + height:40px; +} +#u26_input { + position:absolute; + left:0px; + top:0px; + width:267px; + height:40px; + background-image:url(../../resources/images/transparent.gif); + text-align:center; + font-family:'微软雅黑'; + font-size:20px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u27 { + position:absolute; + left:48px; + top:210px; + width:65px; + height:16px; +} +#u27_img { + position:absolute; + left:0px; + top:0px; + width:65px; + height:16px; +} +#u28 { + position:absolute; + left:0px; + top:0px; + width:65px; + white-space:nowrap; +} +#u29 { + position:absolute; + left:46px; + top:233px; + width:300px; + height:344px; + overflow:hidden; +} +#u29_state0 { + position:absolute; + left:0px; + top:0px; + width:300px; + height:344px; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; +} +#u29_state0_content { + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u30 { + position:absolute; + left:0px; + top:180px; + width:300px; + height:60px; +} +#u30_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u31 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u32 { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u32_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u33 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u34 { + position:absolute; + left:8px; + top:0px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u34_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u35 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u36 { + position:absolute; + left:232px; + top:0px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u36_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u37 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u38 { + position:absolute; + left:8px; + top:41px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u38_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u39 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u40 { + position:absolute; + left:256px; + top:41px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u40_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u41 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u42 { + position:absolute; + left:0px; + top:60px; + width:300px; + height:60px; +} +#u42_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u43 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u44 { + position:absolute; + left:8px; + top:60px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u44_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u45 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u46 { + position:absolute; + left:232px; + top:60px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u46_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u47 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u48 { + position:absolute; + left:8px; + top:101px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u48_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u49 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u50 { + position:absolute; + left:260px; + top:101px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u50_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u51 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u52 { + position:absolute; + left:0px; + top:120px; + width:300px; + height:60px; +} +#u52_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u53 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u54 { + position:absolute; + left:8px; + top:120px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u54_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u55 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u56 { + position:absolute; + left:232px; + top:120px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u56_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u57 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u58 { + position:absolute; + left:8px; + top:161px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u58_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u59 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u60 { + position:absolute; + left:256px; + top:161px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u60_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u61 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u62 { + position:absolute; + left:8px; + top:180px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u62_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u63 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u64 { + position:absolute; + left:8px; + top:221px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u64_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u65 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u66 { + position:absolute; + left:256px; + top:221px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u66_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u67 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u68 { + position:absolute; + left:232px; + top:182px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u68_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u69 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u70 { + position:absolute; + left:8px; + top:255px; + width:100px; + height:25px; +} +#u70_input { + position:absolute; + left:0px; + top:0px; + width:100px; + height:25px; + background-image:url(../../resources/images/transparent.gif); + text-align:center; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u71 { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; + overflow:hidden; + background-image:url('../../resources/images/transparent.gif'); +} +#u29_state1 { + position:absolute; + left:0px; + top:0px; + width:300px; + height:344px; + visibility:hidden; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; +} +#u29_state1_content { + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u72 { + position:absolute; + left:8px; + top:41px; + width:73px; + height:22px; + font-size:18px; +} +#u72_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u73 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u74 { + position:absolute; + left:8px; + top:76px; + width:73px; + height:22px; + font-size:18px; +} +#u74_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u75 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u76 { + position:absolute; + left:92px; + top:73px; + width:200px; + height:25px; +} +#u76_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:25px; + background-image:; + text-align:left; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u77 { + position:absolute; + left:8px; + top:144px; + width:284px; + height:30px; +} +#u77_input { + position:absolute; + left:0px; + top:0px; + width:284px; + height:30px; + background-image:url(../../resources/images/transparent.gif); + text-align:center; + font-family:'微软雅黑'; + font-size:20px; + color:#000000; + font-weight:bold; + font-style:normal; + text-decoration:none; +} +#u78 { + position:absolute; + left:8px; + top:9px; + width:73px; + height:22px; + font-size:18px; +} +#u78_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u79 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u80 { + position:absolute; + left:8px; + top:111px; + width:72px; + height:22px; + font-size:18px; +} +#u80_img { + position:absolute; + left:0px; + top:0px; + width:72px; + height:22px; +} +#u81 { + position:absolute; + left:0px; + top:0px; + width:72px; + white-space:nowrap; +} +#u82 { + position:absolute; + left:92px; + top:106px; + width:200px; + height:27px; +} +#u82_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:27px; + background-image:; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u83 { + position:absolute; + left:0px; + top:180px; + width:300px; + height:60px; +} +#u83_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u84 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u85 { + position:absolute; + left:8px; + top:180px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u85_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u86 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u87 { + position:absolute; + left:8px; + top:221px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u87_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u88 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u89 { + position:absolute; + left:256px; + top:220px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u89_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u90 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u91 { + position:absolute; + left:232px; + top:182px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u91_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u92 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u93 { + position:absolute; + left:0px; + top:240px; + width:300px; + height:60px; +} +#u93_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u94 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u95 { + position:absolute; + left:8px; + top:240px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u95_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u96 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u97 { + position:absolute; + left:8px; + top:281px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u97_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u98 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u99 { + position:absolute; + left:256px; + top:278px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u99_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u100 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u101 { + position:absolute; + left:232px; + top:242px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u101_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u102 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u103 { + position:absolute; + left:0px; + top:300px; + width:300px; + height:60px; +} +#u103_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u104 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u105 { + position:absolute; + left:8px; + top:300px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u105_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u106 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u107 { + position:absolute; + left:8px; + top:341px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u107_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u108 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u109 { + position:absolute; + left:256px; + top:339px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u109_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u110 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u111 { + position:absolute; + left:232px; + top:302px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u111_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u112 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u113 { + position:absolute; + left:91px; + top:12px; + width:40px; + height:16px; +} +#u113_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:16px; +} +#u114 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u115 { + position:absolute; + left:91px; + top:44px; + width:85px; + height:16px; +} +#u115_img { + position:absolute; + left:0px; + top:0px; + width:85px; + height:16px; +} +#u116 { + position:absolute; + left:0px; + top:0px; + width:85px; + white-space:nowrap; +} +#u29_state2 { + position:absolute; + left:0px; + top:0px; + width:300px; + height:344px; + visibility:hidden; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; +} +#u29_state2_content { + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u117 { + position:absolute; + left:0px; + top:180px; + width:300px; + height:60px; +} +#u117_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u118 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u119 { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u119_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u120 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u121 { + position:absolute; + left:8px; + top:0px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u121_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u122 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u123 { + position:absolute; + left:186px; + top:0px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u123_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u124 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u125 { + position:absolute; + left:8px; + top:41px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u125_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u126 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u127 { + position:absolute; + left:160px; + top:41px; + width:77px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u127_img { + position:absolute; + left:0px; + top:0px; + width:77px; + height:19px; +} +#u128 { + position:absolute; + left:0px; + top:0px; + width:77px; + white-space:nowrap; +} +#u129 { + position:absolute; + left:210px; + top:21px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u129_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u130 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u131 { + position:absolute; + left:0px; + top:60px; + width:300px; + height:60px; +} +#u131_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u132 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u133 { + position:absolute; + left:8px; + top:60px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u133_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u134 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u135 { + position:absolute; + left:232px; + top:60px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u135_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u136 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u137 { + position:absolute; + left:8px; + top:101px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u137_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u138 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u139 { + position:absolute; + left:206px; + top:101px; + width:77px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u139_img { + position:absolute; + left:0px; + top:0px; + width:77px; + height:19px; +} +#u140 { + position:absolute; + left:0px; + top:0px; + width:77px; + white-space:nowrap; +} +#u141 { + position:absolute; + left:256px; + top:81px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u141_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u142 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u143 { + position:absolute; + left:0px; + top:120px; + width:300px; + height:60px; +} +#u143_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u144 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u145 { + position:absolute; + left:8px; + top:120px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u145_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u146 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u147 { + position:absolute; + left:232px; + top:120px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u147_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u148 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u149 { + position:absolute; + left:8px; + top:161px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u149_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u150 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u151 { + position:absolute; + left:206px; + top:161px; + width:77px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u151_img { + position:absolute; + left:0px; + top:0px; + width:77px; + height:19px; +} +#u152 { + position:absolute; + left:0px; + top:0px; + width:77px; + white-space:nowrap; +} +#u153 { + position:absolute; + left:256px; + top:141px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u153_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u154 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u155 { + position:absolute; + left:8px; + top:180px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u155_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u156 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u157 { + position:absolute; + left:8px; + top:221px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u157_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u158 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u159 { + position:absolute; + left:206px; + top:221px; + width:77px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u159_img { + position:absolute; + left:0px; + top:0px; + width:77px; + height:19px; +} +#u160 { + position:absolute; + left:0px; + top:0px; + width:77px; + white-space:nowrap; +} +#u161 { + position:absolute; + left:256px; + top:201px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u161_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u162 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u163 { + position:absolute; + left:232px; + top:182px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u163_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u164 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u165 { + position:absolute; + left:8px; + top:255px; + width:100px; + height:25px; +} +#u165_input { + position:absolute; + left:0px; + top:0px; + width:100px; + height:25px; + background-image:url(../../resources/images/transparent.gif); + text-align:center; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u166 { + position:absolute; + left:256px; + top:19px; + width:35px; + height:30px; +} +#u166_img { + position:absolute; + left:0px; + top:0px; + width:35px; + height:30px; +} +#u167 { + position:absolute; + left:2px; + top:7px; + width:31px; + visibility:hidden; + word-wrap:break-word; +} +#u29_state3 { + position:absolute; + left:0px; + top:0px; + width:300px; + height:344px; + visibility:hidden; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; +} +#u29_state3_content { + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u168 { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u168_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u169 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u170 { + position:absolute; + left:8px; + top:0px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u170_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u171 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u172 { + position:absolute; + left:232px; + top:0px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u172_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u173 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u174 { + position:absolute; + left:8px; + top:41px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u174_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u175 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u176 { + position:absolute; + left:206px; + top:41px; + width:77px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u176_img { + position:absolute; + left:0px; + top:0px; + width:77px; + height:19px; +} +#u177 { + position:absolute; + left:0px; + top:0px; + width:77px; + white-space:nowrap; +} +#u178 { + position:absolute; + left:256px; + top:21px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u178_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u179 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u180 { + position:absolute; + left:0px; + top:60px; + width:300px; + height:60px; +} +#u180_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u181 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u182 { + position:absolute; + left:8px; + top:60px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u182_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u183 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u184 { + position:absolute; + left:232px; + top:60px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u184_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u185 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u186 { + position:absolute; + left:8px; + top:101px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u186_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u187 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u188 { + position:absolute; + left:206px; + top:101px; + width:77px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u188_img { + position:absolute; + left:0px; + top:0px; + width:77px; + height:19px; +} +#u189 { + position:absolute; + left:0px; + top:0px; + width:77px; + white-space:nowrap; +} +#u190 { + position:absolute; + left:256px; + top:81px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u190_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u191 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u192 { + position:absolute; + left:0px; + top:120px; + width:300px; + height:60px; +} +#u192_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u193 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u194 { + position:absolute; + left:8px; + top:120px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u194_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u195 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u196 { + position:absolute; + left:232px; + top:120px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u196_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u197 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u198 { + position:absolute; + left:8px; + top:161px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u198_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u199 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u200 { + position:absolute; + left:206px; + top:161px; + width:77px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u200_img { + position:absolute; + left:0px; + top:0px; + width:77px; + height:19px; +} +#u201 { + position:absolute; + left:0px; + top:0px; + width:77px; + white-space:nowrap; +} +#u202 { + position:absolute; + left:256px; + top:141px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u202_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u203 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u204 { + position:absolute; + left:8px; + top:190px; + width:100px; + height:25px; +} +#u204_input { + position:absolute; + left:0px; + top:0px; + width:100px; + height:25px; + background-image:url(../../resources/images/transparent.gif); + text-align:center; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\346\224\257\344\273\230/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\346\224\257\344\273\230/data.js" new file mode 100644 index 0000000..fd38c6c --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\346\224\257\344\273\230/data.js" @@ -0,0 +1,3097 @@ +$axure.loadCurrentPage({ + "url":"支付.html", + "generationDate":new Date(1416993072906.25), + "isCanvasEnabled":false, + "variables":["OnLoadVariable"], + "page":{ + "packageId":"6ccddf35290f470a89ded93c22fe000b", + "type":"Axure:Page", + "name":"支付", + "notes":{ +}, + "style":{ + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "pageAlignment":"near", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "image":null, + "imageHorizontalAlignment":"near", + "imageVerticalAlignment":"near", + "imageRepeat":"auto", + "favicon":null, + "sketchFactor":"0", + "colorStyle":"appliedColor", + "fontName":"应用字体", + "borderWidth":"0"}, + "adaptiveStyles":{ +}, + "interactionMap":{ +}, + "diagram":{ + "objects":[{ + "id":"6a5cbb68232f40acb5c3e0858733ca84", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":116}, + "size":{ + "width":8, + "height":36}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"b5769a3112234fb0b3761e3dd683afee", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":116}, + "size":{ + "width":8, + "height":36}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u0.png"}}, +{ + "id":"57756f4883d3441dbe796604299fd1f0", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":192}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"b7fe653f970e4e099081d556b145ed21", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":192}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u2.png"}}, +{ + "id":"dcf0de2d921d4f3b8083307025760ebf", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":255}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ffd63065ec2f4fb5b1c53f9a82e63dd5", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":255}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u2.png"}}, +{ + "id":"0c540222a88b4462af743bac61276ac9", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":259, + "y":0}, + "size":{ + "width":60, + "height":10}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"79b18fc3e3c740a093aab195f7b14350", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":259, + "y":0}, + "size":{ + "width":60, + "height":10}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u6.png"}}, +{ + "id":"c845e36f776d4dc8b48d3dc287689d54", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":6, + "y":6}, + "size":{ + "width":372, + "height":796}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"52"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"b936a4dfc06c4d9da3f0d9a810b88bab", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":6, + "y":6}, + "size":{ + "width":372, + "height":796}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"52"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u8.png"}}, +{ + "id":"b235dcfb44e94bcbaa8679772610c134", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":32, + "y":120}, + "size":{ + "width":320, + "height":568}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"f2b73ab907b148629083c75fde2b8136", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":32, + "y":120}, + "size":{ + "width":320, + "height":568}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u10.png"}}, +{ + "id":"306f6c6c38d64aa48e7c4dcd8bd4170b", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":157, + "y":66}, + "size":{ + "width":70, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"69656f9c9cab4ba3acd7f07c0afd6a9d", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":157, + "y":66}, + "size":{ + "width":70, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u12.png"}}, +{ + "id":"bbffcad0a67f4992b2abd6f6bea6fdc1", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":185, + "y":40}, + "size":{ + "width":14, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"3f1e1adc3f39478dbf44a845c540148d", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":185, + "y":40}, + "size":{ + "width":14, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u14.png"}}, +{ + "id":"7831f07b4024414985677565594a7538", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":156, + "y":704}, + "size":{ + "width":72, + "height":72}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"6e30630c6c9b441598986af2f8cd9bd4", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":156, + "y":704}, + "size":{ + "width":72, + "height":72}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u16.png"}}, +{ + "id":"5a65d55d0285424aa3e13abd37f20b91", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":500, + "y":860}, + "size":{ + "width":50, + "height":50}, + "borderFill":{ + "fillType":"solid", + "color":0xFFFFFFFF}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"5448c154777a42cda6a2daae482dfce3", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":500, + "y":860}, + "size":{ + "width":50, + "height":50}, + "borderFill":{ + "fillType":"solid", + "color":0xFFFFFFFF}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u18.png"}}, +{ + "id":"3381d777c31f40799b9e2070c1d2ada5", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":33, + "y":140}, + "size":{ + "width":318, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"0cf5adf501f442309b08dfdf6afec057", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":33, + "y":140}, + "size":{ + "width":318, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/支付/u20.png"}}, +{ + "id":"53a8942ac0fc4e0490d2e165d4a4d31d", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "location":{ + "x":40, + "y":159}, + "size":{ + "width":22, + "height":22}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"bb3954ba5cb5422598ea30b7c685368a", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":40, + "y":159}, + "size":{ + "width":22, + "height":22}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 发放历史", + "target":{ + "targetType":"page", + "url":"发放历史.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true, + "images":{ + "normal~":"images/我要发工资_-_引导页_-_首次进入/u20.png"}}, +{ + "id":"ccc31a295f244906b4f666387fa89bed", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontSize":"20px", + "fontWeight":"700", + "location":{ + "x":152, + "y":157}, + "size":{ + "width":81, + "height":24}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"70c0275d7dd242eb860f7584ede948d2", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontSize":"20px", + "fontWeight":"700", + "location":{ + "x":152, + "y":157}, + "size":{ + "width":81, + "height":24}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"ab1db93d1de8463b85221c765552b25f", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":68, + "y":204}, + "size":{ + "width":247, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"f3bcdb41b0b4478d8e9994d1b8c04b4a", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":68, + "y":204}, + "size":{ + "width":247, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"b277e65a7afc479da0e011fd10782abc", + "label":"", + "type":"horizontalLine", + "styleType":"horizontalLine", + "visible":true, + "style":{ + "location":{ + "x":42, + "y":259}, + "size":{ + "width":300, + "height":10}, + "borderFill":{ + "fillType":"solid", + "color":0xFFCCCCCC}}, + "adaptiveStyles":{ +}, + "images":{ + "start~":"resources/images/transparent.gif", + "end~":"resources/images/transparent.gif", + "line~":"images/支付/u28_line.png"}}, +{ + "id":"bb0295097d314b06ba6da895b9d00f28", + "label":"", + "type":"button", + "styleType":"button", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "fontSize":"20px", + "location":{ + "x":42, + "y":579}, + "size":{ + "width":300, + "height":40}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 付款", + "target":{ + "targetType":"page", + "url":"付款.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true}, +{ + "id":"044bf7c93a724ea5bd630f5f4de3c069", + "label":"", + "type":"button", + "styleType":"button", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "fontSize":"20px", + "location":{ + "x":222, + "y":629}, + "size":{ + "width":120, + "height":40}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"setPanelState", + "description":"设置 提示框 to 提示框 淡入淡出 out 3000ms 淡入淡出 in 500ms", + "panelsToStates":[{ + "panelPath":["e2c0d3d0a3504fde863ccffe8a5a4e34"], + "stateInfo":{ + "setStateType":"diagram", + "stateNumber":2, + "stateValue":{ + "exprType":"stringLiteral", + "value":"1", + "stos":[]}, + "loop":false, + "showWhenSet":false, + "options":{ + "animateOut":{ + "easing":"fade", + "duration":3000}, + "animateIn":{ + "easing":"fade", + "duration":500}, + "compress":false}}}]}, +{ + "action":"wait", + "description":"等待3000毫秒", + "waitTime":3000}, +{ + "action":"linkWindow", + "description":"在 当前窗口 打开 发放历史", + "target":{ + "targetType":"page", + "url":"发放历史.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true}, +{ + "id":"ce25b711d3624afda60e14dff45d17e5", + "label":"待提交工资表", + "type":"dynamicPanel", + "styleType":"dynamicPanel", + "visible":true, + "style":{ + "location":{ + "x":42, + "y":269}, + "size":{ + "width":300, + "height":310}}, + "adaptiveStyles":{ +}, + "scrollbars":"none", + "fitToContent":false, + "propagate":false, + "diagrams":[{ + "id":"32c79c5e1cf04aa6b17f31292b057123", + "label":"准备状态", + "type":"Axure:PanelDiagram", + "objects":[{ + "id":"f5714dd9bc0f4f1f8e01ab7b53e2f9be", + "label":"", + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"74e23ff5a2084fcab43e86c80f5083e6", + "label":"", + "isContained":true, + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"b00d23ce87e647b3a1a32265e57e9fb1", + "label":"", + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":0}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a016b7382b4840ec913aa6fcd00ae07c", + "label":"", + "isContained":true, + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":0}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"553015a487844ecdad6dfeeae26d24ff", + "label":"", + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":41}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"b59f1b6437b74a44a8eb25ee9af377d5", + "label":"", + "isContained":true, + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":41}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"6699481e722d43b1959d22e1609d679a", + "label":"", + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":207, + "y":41}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"5b4a85b799304d52b834e2f49cb126bd", + "label":"", + "isContained":true, + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":207, + "y":41}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"d066985928a0421ea8b7f0a00abfb2db", + "label":"", + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":257, + "y":21}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"3ff8508e26824138a9e46be498db1838", + "label":"", + "isContained":true, + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":257, + "y":21}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"1fc7eb7b70044d6f94cdda91c39a8e61", + "label":"", + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":60}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"99c0db89d6644132b1f1b2d3cf4158db", + "label":"", + "isContained":true, + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":60}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"756bf3132fa9466e9151d1ab5e7851e9", + "label":"", + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":60}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"594acdc3d45a4d18b77d6cdee8392df5", + "label":"", + "isContained":true, + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":60}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"f6dd2e41f0f74e918bebc2b380ad378b", + "label":"", + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":233, + "y":60}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"b51405784a9a4f24a64f117822db37c4", + "label":"", + "isContained":true, + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":233, + "y":60}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"d01c5dbe8b564803b1d82c4351cd9098", + "label":"", + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":101}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"2ce0e5834dd24803b7475e750b288c43", + "label":"", + "isContained":true, + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":101}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"2a7f220a157747e1aca3390600058535", + "label":"", + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":207, + "y":101}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"21a114a8b8fa444eaf785d38866152f6", + "label":"", + "isContained":true, + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":207, + "y":101}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"082c655760b74ab1a631d342dd0cb932", + "label":"", + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":257, + "y":81}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"57f4bf862ec141c89efe99b5aae9fcff", + "label":"", + "isContained":true, + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":257, + "y":81}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"e193ed9ebba84f9895f0c02d86360b5a", + "label":"", + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":120}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ac89a958bef142e0b3ea588fb3df50dd", + "label":"", + "isContained":true, + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":120}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"c80e26b370ee47e3a7a16ebef45fb04b", + "label":"", + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":120}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"29bba750b03640f6956dc9afcfad5a03", + "label":"", + "isContained":true, + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":120}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"ae7b758f67c94b5aa59cbdac0397242b", + "label":"", + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":161}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d36c91f7dbcd47019d923d7064faa405", + "label":"", + "isContained":true, + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":161}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"ce0690975348497987da6a7e1a58b031", + "label":"", + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":207, + "y":161}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"7f6a382f4f7248ba8d72d3a5ab8f9a9b", + "label":"", + "isContained":true, + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":207, + "y":161}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"131d263f42c64b398690e8dafb18a3c1", + "label":"", + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":257, + "y":141}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"3ee4bbbb187a42548384a6d8b809a351", + "label":"", + "isContained":true, + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":257, + "y":141}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"dfe72c0450044a66af9c78e79fe8de7c", + "label":"", + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":180}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"92e5597da4a54eb3adb552d6085715d4", + "label":"", + "isContained":true, + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":180}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"807715b77cd0415486c18af5c5bdea2e", + "label":"", + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":180}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"1795de6f45524d22a668cd2eafbafa16", + "label":"", + "isContained":true, + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":180}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"61c55b642dc9489e88b746d06ad97772", + "label":"", + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":221}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"0cfb1467ecd14627a8b6b5e4a190f172", + "label":"", + "isContained":true, + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":221}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"56547e9053c84832a603a3dec1204535", + "label":"", + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":207, + "y":221}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a65e4f76dabd429aba14446738085a6e", + "label":"", + "isContained":true, + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":207, + "y":221}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"fa9e53086594422face9dfca8aafb7b9", + "label":"", + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":257, + "y":201}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"330138bff0c04310b862b22065a520e1", + "label":"", + "isContained":true, + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":257, + "y":201}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"504a3d058dfc4371bca193764a0acf05", + "label":"", + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":229, + "y":182}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"1bb585a8d9af48eab7eb53af6176c850", + "label":"", + "isContained":true, + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":229, + "y":182}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"f969c3605e24430c86591591b001d31e", + "label":"", + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":240}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d2ae970e38ef4c0ea4a2c7862e6ff244", + "label":"", + "isContained":true, + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":240}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"066a63a5003b459a8a1357c4448d9cb4", + "label":"", + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "location":{ + "x":243, + "y":248}, + "size":{ + "width":45, + "height":45}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"2afd8258b185422896e6a905f4175650", + "label":"", + "isContained":true, + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":243, + "y":248}, + "size":{ + "width":45, + "height":45}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"setPanelState", + "description":"设置 待提交工资表 to 新增一条状态 向上滑动 in 500ms", + "panelsToStates":[{ + "panelPath":["ce25b711d3624afda60e14dff45d17e5"], + "stateInfo":{ + "setStateType":"diagram", + "stateNumber":2, + "stateValue":{ + "exprType":"stringLiteral", + "value":"1", + "stos":[]}, + "loop":false, + "showWhenSet":false, + "options":{ + "animateIn":{ + "easing":"slideUp", + "duration":500}, + "compress":false}}}]}]}]}}, + "tabbable":true, + "images":{ + "normal~":"images/支付/u78.png"}}, +{ + "id":"118377ec90b04ce4b04d45c98508347c", + "label":"", + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":229, + "y":122}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"3f84aa7a2f3e490fba3abafb5a94dfd6", + "label":"", + "isContained":true, + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":229, + "y":122}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"17eb82b4d1ae406ca25cc57cc79eee6e", + "label":"", + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":233, + "y":0}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"6c820658ece94270b43ffb07561a69e3", + "label":"", + "isContained":true, + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":233, + "y":0}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}]}, +{ + "id":"5ef168feb58c452e9e9542f0e0c3409f", + "label":"新增一条状态", + "type":"Axure:PanelDiagram", + "objects":[{ + "id":"1500004573bb4b3b8bfe1ff4472451f3", + "label":"", + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":11, + "y":99}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d3d57c2129c044088e37bb3a650ca46c", + "label":"", + "isContained":true, + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":11, + "y":99}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"e87acda27dd0446f993e6553985d8f09", + "label":"", + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"textBox", + "styleType":"textBox", + "visible":true, + "style":{ + "location":{ + "x":95, + "y":96}, + "size":{ + "width":200, + "height":25}}, + "adaptiveStyles":{ +}}, +{ + "id":"e07695e7012741f1bc5795c40e1cec33", + "label":"", + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":11, + "y":134}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"22fc201f64e843a3811919d9fd93de8b", + "label":"", + "isContained":true, + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":11, + "y":134}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"dc483fc79b0f4f1cbaa467cd8ffd6795", + "label":"", + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"textBox", + "styleType":"textBox", + "visible":true, + "style":{ + "location":{ + "x":95, + "y":131}, + "size":{ + "width":200, + "height":25}}, + "adaptiveStyles":{ +}}, +{ + "id":"d539cd2b337f4bd9983cddea031f9074", + "label":"", + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"button", + "styleType":"button", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"18px", + "fontWeight":"700", + "location":{ + "x":11, + "y":202}, + "size":{ + "width":132, + "height":30}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"setPanelState", + "description":"设置 待提交工资表 to 新增二条状态 向上滑动 in 500ms", + "panelsToStates":[{ + "panelPath":["ce25b711d3624afda60e14dff45d17e5"], + "stateInfo":{ + "setStateType":"diagram", + "stateNumber":3, + "stateValue":{ + "exprType":"stringLiteral", + "value":"1", + "stos":[]}, + "loop":false, + "showWhenSet":false, + "options":{ + "animateIn":{ + "easing":"slideUp", + "duration":500}, + "compress":false}}}]}]}]}}, + "tabbable":true}, +{ + "id":"da48a8afa14f4f9c9a006affd402607f", + "label":"", + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":11, + "y":67}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"2d57becd38e34f7ab7c0489f29cce2ce", + "label":"", + "isContained":true, + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":11, + "y":67}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"5682eda00f944dbd85a231e99a132660", + "label":"", + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"textBox", + "styleType":"textBox", + "visible":true, + "style":{ + "location":{ + "x":95, + "y":64}, + "size":{ + "width":200, + "height":25}}, + "adaptiveStyles":{ +}}, +{ + "id":"902e1c04f7364c77b5dfd722c88aa56a", + "label":"", + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":11, + "y":169}, + "size":{ + "width":72, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"9ee5111db403425f8e9ba5319ba64030", + "label":"", + "isContained":true, + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":11, + "y":169}, + "size":{ + "width":72, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"231e7592ca124d089d0848abfc7f8316", + "label":"", + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"comboBox", + "styleType":"comboBox", + "visible":true, + "style":{ + "location":{ + "x":95, + "y":164}, + "size":{ + "width":200, + "height":27}}, + "adaptiveStyles":{ +}}, +{ + "id":"abfd4677280f459d821ac70b089e6860", + "label":"", + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":11, + "y":15}, + "size":{ + "width":79, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"67720bb8d3784e4f872f7fe753e7ceb4", + "label":"", + "isContained":true, + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":11, + "y":15}, + "size":{ + "width":79, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"f81ebb166a09400cae91b92f8d719cf1", + "label":"", + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":9, + "y":39}, + "size":{ + "width":53, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"25c9ec9d7068454297c14558beec73e1", + "label":"", + "isContained":true, + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":9, + "y":39}, + "size":{ + "width":53, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"e66f7772d5614f3c8c9af13c263d754c", + "label":"", + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":119, + "y":15}, + "size":{ + "width":28, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"24b6f48529854f44876e8396f0d2a071", + "label":"", + "isContained":true, + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":119, + "y":15}, + "size":{ + "width":28, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"8adc0f53be004039b2d28022d13b0c5a", + "label":"", + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"button", + "styleType":"button", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"18px", + "fontWeight":"700", + "location":{ + "x":163, + "y":202}, + "size":{ + "width":132, + "height":30}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"setPanelState", + "description":"设置 待提交工资表 to 准备状态 向下滑动 in 500ms", + "panelsToStates":[{ + "panelPath":["ce25b711d3624afda60e14dff45d17e5"], + "stateInfo":{ + "setStateType":"diagram", + "stateNumber":1, + "stateValue":{ + "exprType":"stringLiteral", + "value":"1", + "stos":[]}, + "loop":false, + "showWhenSet":false, + "options":{ + "animateIn":{ + "easing":"slideDown", + "duration":500}, + "compress":false}}}]}]}]}}, + "tabbable":true}, +{ + "id":"4df04ba9c66a41278259abc4f34cede1", + "label":"", + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":119, + "y":38}, + "size":{ + "width":92, + "height":21}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a021b68fdaed4cf8b66746cebf6a200b", + "label":"", + "isContained":true, + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":119, + "y":38}, + "size":{ + "width":92, + "height":21}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}]}, +{ + "id":"a9be87a9c3a249f18de615e2cf1f1e41", + "label":"新增二条状态", + "type":"Axure:PanelDiagram", + "objects":[{ + "id":"ab6f7c1ac99e4ca2b8fc0fe00178c288", + "label":"", + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":11, + "y":99}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"09b0991d049d4494941ab1c5431dc0d0", + "label":"", + "isContained":true, + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":11, + "y":99}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"bad81fddd6b94f8e93d0eed5a81725b2", + "label":"", + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"textBox", + "styleType":"textBox", + "visible":true, + "style":{ + "location":{ + "x":95, + "y":96}, + "size":{ + "width":200, + "height":25}}, + "adaptiveStyles":{ +}}, +{ + "id":"49be0c1488d04ef4831b31ce1a3c7712", + "label":"", + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":11, + "y":134}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"bf5b4dbc1f8643fca37897721423d2cb", + "label":"", + "isContained":true, + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":11, + "y":134}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"2024af42170c4e8fa036d5ce95df68f5", + "label":"", + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"textBox", + "styleType":"textBox", + "visible":true, + "style":{ + "location":{ + "x":95, + "y":131}, + "size":{ + "width":200, + "height":25}}, + "adaptiveStyles":{ +}}, +{ + "id":"49bdb11cd73c47f8915df0b7617aac57", + "label":"", + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"button", + "styleType":"button", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"18px", + "fontWeight":"700", + "location":{ + "x":11, + "y":202}, + "size":{ + "width":132, + "height":30}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"setPanelState", + "description":"设置 待提交工资表 to 新增一条状态 向上滑动 in 500ms", + "panelsToStates":[{ + "panelPath":["ce25b711d3624afda60e14dff45d17e5"], + "stateInfo":{ + "setStateType":"diagram", + "stateNumber":2, + "stateValue":{ + "exprType":"stringLiteral", + "value":"1", + "stos":[]}, + "loop":false, + "showWhenSet":false, + "options":{ + "animateIn":{ + "easing":"slideUp", + "duration":500}, + "compress":false}}}]}]}]}}, + "tabbable":true}, +{ + "id":"8356692cdf3147fd9a66387d5c44677a", + "label":"", + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":11, + "y":67}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"cdc47ea0c86c416bb70438405a490947", + "label":"", + "isContained":true, + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":11, + "y":67}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"f9444668a7614a9db1c448bd718b4ff8", + "label":"", + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"textBox", + "styleType":"textBox", + "visible":true, + "style":{ + "location":{ + "x":95, + "y":64}, + "size":{ + "width":200, + "height":25}}, + "adaptiveStyles":{ +}}, +{ + "id":"f9a542f99fbc4280afd35e70a512c083", + "label":"", + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":11, + "y":169}, + "size":{ + "width":72, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"75b323b0a2224c60be48d629df592931", + "label":"", + "isContained":true, + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":11, + "y":169}, + "size":{ + "width":72, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"f18b13ffbf1046e18b4ca01eb8145f4f", + "label":"", + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"comboBox", + "styleType":"comboBox", + "visible":true, + "style":{ + "location":{ + "x":95, + "y":164}, + "size":{ + "width":200, + "height":27}}, + "adaptiveStyles":{ +}}, +{ + "id":"374d811d36ca413dae69d8238b85df93", + "label":"", + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":11, + "y":15}, + "size":{ + "width":79, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"4859a0b4e44c4acd823964952eea43a5", + "label":"", + "isContained":true, + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":11, + "y":15}, + "size":{ + "width":79, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"65881f6bbf754145874af1529020cad5", + "label":"", + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":9, + "y":39}, + "size":{ + "width":53, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"f4c125826a374ba98d33ccab3128b0fa", + "label":"", + "isContained":true, + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":9, + "y":39}, + "size":{ + "width":53, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"a4a3ac6e5879468492dcab4a9330a2ac", + "label":"", + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":119, + "y":15}, + "size":{ + "width":28, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"8e44bc39905e419ba4acff8e55d7a74a", + "label":"", + "isContained":true, + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":119, + "y":15}, + "size":{ + "width":28, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"1dcf04261d894ab8848cb333fa33151f", + "label":"", + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"button", + "styleType":"button", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"18px", + "fontWeight":"700", + "location":{ + "x":163, + "y":202}, + "size":{ + "width":132, + "height":30}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"setPanelState", + "description":"设置 待提交工资表 to 准备状态 向下滑动 in 500ms", + "panelsToStates":[{ + "panelPath":["ce25b711d3624afda60e14dff45d17e5"], + "stateInfo":{ + "setStateType":"diagram", + "stateNumber":1, + "stateValue":{ + "exprType":"stringLiteral", + "value":"1", + "stos":[]}, + "loop":false, + "showWhenSet":false, + "options":{ + "animateIn":{ + "easing":"slideDown", + "duration":500}, + "compress":false}}}]}]}]}}, + "tabbable":true}, +{ + "id":"837fb0a663df4be6b3523ff80b028d91", + "label":"", + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":119, + "y":38}, + "size":{ + "width":92, + "height":21}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c04c999a545b49459b758b4caebccc7b", + "label":"", + "isContained":true, + "parentDynamicPanel":"ce25b711d3624afda60e14dff45d17e5", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":119, + "y":38}, + "size":{ + "width":92, + "height":21}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}]}]}, +{ + "id":"e2c0d3d0a3504fde863ccffe8a5a4e34", + "label":"提示框", + "type":"dynamicPanel", + "styleType":"dynamicPanel", + "visible":true, + "style":{ + "location":{ + "x":52, + "y":350}, + "size":{ + "width":280, + "height":85}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onPanelStateChange":{ + "description":"OnPanelStateChange", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 发放历史", + "target":{ + "targetType":"page", + "url":"发放历史.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "scrollbars":"none", + "fitToContent":false, + "propagate":false, + "diagrams":[{ + "id":"e8e5af5357684395a9166aea4860d45f", + "label":"State1", + "type":"Axure:PanelDiagram", + "objects":[]}, +{ + "id":"bbb5335f2eba4e4e9c1c5ea42e8cc1f6", + "label":"提示框", + "type":"Axure:PanelDiagram", + "objects":[{ + "id":"ab9ffbcef79c4547adf17c5c9d12f47d", + "label":"审批提示2", + "parentDynamicPanel":"e2c0d3d0a3504fde863ccffe8a5a4e34", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFCCCCCC}, + "location":{ + "x":0, + "y":1}, + "size":{ + "width":280, + "height":87}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"3ba3b0000a9440a1882fc6e1c16cf481", + "label":"", + "isContained":true, + "parentDynamicPanel":"e2c0d3d0a3504fde863ccffe8a5a4e34", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFCCCCCC}, + "location":{ + "x":0, + "y":1}, + "size":{ + "width":280, + "height":87}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/支付/审批提示2_u129.png"}}, +{ + "id":"fb09e007017243df91f442d0e6c64a40", + "label":"审批提示1", + "parentDynamicPanel":"e2c0d3d0a3504fde863ccffe8a5a4e34", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":12, + "y":14}, + "size":{ + "width":256, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"7f945b76aa984bd095a2a65fb8d4f9f9", + "label":"", + "isContained":true, + "parentDynamicPanel":"e2c0d3d0a3504fde863ccffe8a5a4e34", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":12, + "y":14}, + "size":{ + "width":256, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}]}]}, +{ + "id":"f080f12a0bd14cefadb5ff49dd1396ff", + "label":"", + "type":"textBox", + "styleType":"textBox", + "visible":true, + "style":{ + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFCCCCCC, + "opacity":1}, + "location":{ + "x":42, + "y":629}, + "size":{ + "width":170, + "height":40}}, + "adaptiveStyles":{ +}}]}}, + "masters":{ +}, + "objectPaths":{ + "6a5cbb68232f40acb5c3e0858733ca84":{ + "scriptId":"u0"}, + "b5769a3112234fb0b3761e3dd683afee":{ + "scriptId":"u1"}, + "57756f4883d3441dbe796604299fd1f0":{ + "scriptId":"u2"}, + "b7fe653f970e4e099081d556b145ed21":{ + "scriptId":"u3"}, + "dcf0de2d921d4f3b8083307025760ebf":{ + "scriptId":"u4"}, + "ffd63065ec2f4fb5b1c53f9a82e63dd5":{ + "scriptId":"u5"}, + "0c540222a88b4462af743bac61276ac9":{ + "scriptId":"u6"}, + "79b18fc3e3c740a093aab195f7b14350":{ + "scriptId":"u7"}, + "c845e36f776d4dc8b48d3dc287689d54":{ + "scriptId":"u8"}, + "b936a4dfc06c4d9da3f0d9a810b88bab":{ + "scriptId":"u9"}, + "b235dcfb44e94bcbaa8679772610c134":{ + "scriptId":"u10"}, + "f2b73ab907b148629083c75fde2b8136":{ + "scriptId":"u11"}, + "306f6c6c38d64aa48e7c4dcd8bd4170b":{ + "scriptId":"u12"}, + "69656f9c9cab4ba3acd7f07c0afd6a9d":{ + "scriptId":"u13"}, + "bbffcad0a67f4992b2abd6f6bea6fdc1":{ + "scriptId":"u14"}, + "3f1e1adc3f39478dbf44a845c540148d":{ + "scriptId":"u15"}, + "7831f07b4024414985677565594a7538":{ + "scriptId":"u16"}, + "6e30630c6c9b441598986af2f8cd9bd4":{ + "scriptId":"u17"}, + "5a65d55d0285424aa3e13abd37f20b91":{ + "scriptId":"u18"}, + "5448c154777a42cda6a2daae482dfce3":{ + "scriptId":"u19"}, + "3381d777c31f40799b9e2070c1d2ada5":{ + "scriptId":"u20"}, + "0cf5adf501f442309b08dfdf6afec057":{ + "scriptId":"u21"}, + "53a8942ac0fc4e0490d2e165d4a4d31d":{ + "scriptId":"u22"}, + "bb3954ba5cb5422598ea30b7c685368a":{ + "scriptId":"u23"}, + "ccc31a295f244906b4f666387fa89bed":{ + "scriptId":"u24"}, + "70c0275d7dd242eb860f7584ede948d2":{ + "scriptId":"u25"}, + "ab1db93d1de8463b85221c765552b25f":{ + "scriptId":"u26"}, + "f3bcdb41b0b4478d8e9994d1b8c04b4a":{ + "scriptId":"u27"}, + "b277e65a7afc479da0e011fd10782abc":{ + "scriptId":"u28"}, + "bb0295097d314b06ba6da895b9d00f28":{ + "scriptId":"u29"}, + "044bf7c93a724ea5bd630f5f4de3c069":{ + "scriptId":"u30"}, + "ce25b711d3624afda60e14dff45d17e5":{ + "scriptId":"u31"}, + "f5714dd9bc0f4f1f8e01ab7b53e2f9be":{ + "scriptId":"u32"}, + "74e23ff5a2084fcab43e86c80f5083e6":{ + "scriptId":"u33"}, + "b00d23ce87e647b3a1a32265e57e9fb1":{ + "scriptId":"u34"}, + "a016b7382b4840ec913aa6fcd00ae07c":{ + "scriptId":"u35"}, + "553015a487844ecdad6dfeeae26d24ff":{ + "scriptId":"u36"}, + "b59f1b6437b74a44a8eb25ee9af377d5":{ + "scriptId":"u37"}, + "6699481e722d43b1959d22e1609d679a":{ + "scriptId":"u38"}, + "5b4a85b799304d52b834e2f49cb126bd":{ + "scriptId":"u39"}, + "d066985928a0421ea8b7f0a00abfb2db":{ + "scriptId":"u40"}, + "3ff8508e26824138a9e46be498db1838":{ + "scriptId":"u41"}, + "1fc7eb7b70044d6f94cdda91c39a8e61":{ + "scriptId":"u42"}, + "99c0db89d6644132b1f1b2d3cf4158db":{ + "scriptId":"u43"}, + "756bf3132fa9466e9151d1ab5e7851e9":{ + "scriptId":"u44"}, + "594acdc3d45a4d18b77d6cdee8392df5":{ + "scriptId":"u45"}, + "f6dd2e41f0f74e918bebc2b380ad378b":{ + "scriptId":"u46"}, + "b51405784a9a4f24a64f117822db37c4":{ + "scriptId":"u47"}, + "d01c5dbe8b564803b1d82c4351cd9098":{ + "scriptId":"u48"}, + "2ce0e5834dd24803b7475e750b288c43":{ + "scriptId":"u49"}, + "2a7f220a157747e1aca3390600058535":{ + "scriptId":"u50"}, + "21a114a8b8fa444eaf785d38866152f6":{ + "scriptId":"u51"}, + "082c655760b74ab1a631d342dd0cb932":{ + "scriptId":"u52"}, + "57f4bf862ec141c89efe99b5aae9fcff":{ + "scriptId":"u53"}, + "e193ed9ebba84f9895f0c02d86360b5a":{ + "scriptId":"u54"}, + "ac89a958bef142e0b3ea588fb3df50dd":{ + "scriptId":"u55"}, + "c80e26b370ee47e3a7a16ebef45fb04b":{ + "scriptId":"u56"}, + "29bba750b03640f6956dc9afcfad5a03":{ + "scriptId":"u57"}, + "ae7b758f67c94b5aa59cbdac0397242b":{ + "scriptId":"u58"}, + "d36c91f7dbcd47019d923d7064faa405":{ + "scriptId":"u59"}, + "ce0690975348497987da6a7e1a58b031":{ + "scriptId":"u60"}, + "7f6a382f4f7248ba8d72d3a5ab8f9a9b":{ + "scriptId":"u61"}, + "131d263f42c64b398690e8dafb18a3c1":{ + "scriptId":"u62"}, + "3ee4bbbb187a42548384a6d8b809a351":{ + "scriptId":"u63"}, + "dfe72c0450044a66af9c78e79fe8de7c":{ + "scriptId":"u64"}, + "92e5597da4a54eb3adb552d6085715d4":{ + "scriptId":"u65"}, + "807715b77cd0415486c18af5c5bdea2e":{ + "scriptId":"u66"}, + "1795de6f45524d22a668cd2eafbafa16":{ + "scriptId":"u67"}, + "61c55b642dc9489e88b746d06ad97772":{ + "scriptId":"u68"}, + "0cfb1467ecd14627a8b6b5e4a190f172":{ + "scriptId":"u69"}, + "56547e9053c84832a603a3dec1204535":{ + "scriptId":"u70"}, + "a65e4f76dabd429aba14446738085a6e":{ + "scriptId":"u71"}, + "fa9e53086594422face9dfca8aafb7b9":{ + "scriptId":"u72"}, + "330138bff0c04310b862b22065a520e1":{ + "scriptId":"u73"}, + "504a3d058dfc4371bca193764a0acf05":{ + "scriptId":"u74"}, + "1bb585a8d9af48eab7eb53af6176c850":{ + "scriptId":"u75"}, + "f969c3605e24430c86591591b001d31e":{ + "scriptId":"u76"}, + "d2ae970e38ef4c0ea4a2c7862e6ff244":{ + "scriptId":"u77"}, + "066a63a5003b459a8a1357c4448d9cb4":{ + "scriptId":"u78"}, + "2afd8258b185422896e6a905f4175650":{ + "scriptId":"u79"}, + "118377ec90b04ce4b04d45c98508347c":{ + "scriptId":"u80"}, + "3f84aa7a2f3e490fba3abafb5a94dfd6":{ + "scriptId":"u81"}, + "17eb82b4d1ae406ca25cc57cc79eee6e":{ + "scriptId":"u82"}, + "6c820658ece94270b43ffb07561a69e3":{ + "scriptId":"u83"}, + "1500004573bb4b3b8bfe1ff4472451f3":{ + "scriptId":"u84"}, + "d3d57c2129c044088e37bb3a650ca46c":{ + "scriptId":"u85"}, + "e87acda27dd0446f993e6553985d8f09":{ + "scriptId":"u86"}, + "e07695e7012741f1bc5795c40e1cec33":{ + "scriptId":"u87"}, + "22fc201f64e843a3811919d9fd93de8b":{ + "scriptId":"u88"}, + "dc483fc79b0f4f1cbaa467cd8ffd6795":{ + "scriptId":"u89"}, + "d539cd2b337f4bd9983cddea031f9074":{ + "scriptId":"u90"}, + "da48a8afa14f4f9c9a006affd402607f":{ + "scriptId":"u91"}, + "2d57becd38e34f7ab7c0489f29cce2ce":{ + "scriptId":"u92"}, + "5682eda00f944dbd85a231e99a132660":{ + "scriptId":"u93"}, + "902e1c04f7364c77b5dfd722c88aa56a":{ + "scriptId":"u94"}, + "9ee5111db403425f8e9ba5319ba64030":{ + "scriptId":"u95"}, + "231e7592ca124d089d0848abfc7f8316":{ + "scriptId":"u96"}, + "abfd4677280f459d821ac70b089e6860":{ + "scriptId":"u97"}, + "67720bb8d3784e4f872f7fe753e7ceb4":{ + "scriptId":"u98"}, + "f81ebb166a09400cae91b92f8d719cf1":{ + "scriptId":"u99"}, + "25c9ec9d7068454297c14558beec73e1":{ + "scriptId":"u100"}, + "e66f7772d5614f3c8c9af13c263d754c":{ + "scriptId":"u101"}, + "24b6f48529854f44876e8396f0d2a071":{ + "scriptId":"u102"}, + "8adc0f53be004039b2d28022d13b0c5a":{ + "scriptId":"u103"}, + "4df04ba9c66a41278259abc4f34cede1":{ + "scriptId":"u104"}, + "a021b68fdaed4cf8b66746cebf6a200b":{ + "scriptId":"u105"}, + "ab6f7c1ac99e4ca2b8fc0fe00178c288":{ + "scriptId":"u106"}, + "09b0991d049d4494941ab1c5431dc0d0":{ + "scriptId":"u107"}, + "bad81fddd6b94f8e93d0eed5a81725b2":{ + "scriptId":"u108"}, + "49be0c1488d04ef4831b31ce1a3c7712":{ + "scriptId":"u109"}, + "bf5b4dbc1f8643fca37897721423d2cb":{ + "scriptId":"u110"}, + "2024af42170c4e8fa036d5ce95df68f5":{ + "scriptId":"u111"}, + "49bdb11cd73c47f8915df0b7617aac57":{ + "scriptId":"u112"}, + "8356692cdf3147fd9a66387d5c44677a":{ + "scriptId":"u113"}, + "cdc47ea0c86c416bb70438405a490947":{ + "scriptId":"u114"}, + "f9444668a7614a9db1c448bd718b4ff8":{ + "scriptId":"u115"}, + "f9a542f99fbc4280afd35e70a512c083":{ + "scriptId":"u116"}, + "75b323b0a2224c60be48d629df592931":{ + "scriptId":"u117"}, + "f18b13ffbf1046e18b4ca01eb8145f4f":{ + "scriptId":"u118"}, + "374d811d36ca413dae69d8238b85df93":{ + "scriptId":"u119"}, + "4859a0b4e44c4acd823964952eea43a5":{ + "scriptId":"u120"}, + "65881f6bbf754145874af1529020cad5":{ + "scriptId":"u121"}, + "f4c125826a374ba98d33ccab3128b0fa":{ + "scriptId":"u122"}, + "a4a3ac6e5879468492dcab4a9330a2ac":{ + "scriptId":"u123"}, + "8e44bc39905e419ba4acff8e55d7a74a":{ + "scriptId":"u124"}, + "1dcf04261d894ab8848cb333fa33151f":{ + "scriptId":"u125"}, + "837fb0a663df4be6b3523ff80b028d91":{ + "scriptId":"u126"}, + "c04c999a545b49459b758b4caebccc7b":{ + "scriptId":"u127"}, + "e2c0d3d0a3504fde863ccffe8a5a4e34":{ + "scriptId":"u128"}, + "ab9ffbcef79c4547adf17c5c9d12f47d":{ + "scriptId":"u129"}, + "3ba3b0000a9440a1882fc6e1c16cf481":{ + "scriptId":"u130"}, + "fb09e007017243df91f442d0e6c64a40":{ + "scriptId":"u131"}, + "7f945b76aa984bd095a2a65fb8d4f9f9":{ + "scriptId":"u132"}, + "f080f12a0bd14cefadb5ff49dd1396ff":{ + "scriptId":"u133"}}}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\346\224\257\344\273\230/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\346\224\257\344\273\230/styles.css" new file mode 100644 index 0000000..6c18462 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\346\224\257\344\273\230/styles.css" @@ -0,0 +1,1763 @@ +body { + margin:0px; + background-image:none; + position:static; + left:auto; + width:550px; + margin-left:0; + margin-right:0; + text-align:left; +} +#base { + position:absolute; + z-index:0; +} +#u0 { + position:absolute; + left:0px; + top:116px; + width:8px; + height:36px; +} +#u0_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:36px; +} +#u1 { + position:absolute; + left:2px; + top:10px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u2 { + position:absolute; + left:0px; + top:192px; + width:8px; + height:27px; +} +#u2_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:27px; +} +#u3 { + position:absolute; + left:2px; + top:6px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u4 { + position:absolute; + left:0px; + top:255px; + width:8px; + height:27px; +} +#u4_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:27px; +} +#u5 { + position:absolute; + left:2px; + top:6px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u6 { + position:absolute; + left:259px; + top:0px; + width:60px; + height:10px; +} +#u6_img { + position:absolute; + left:0px; + top:0px; + width:60px; + height:10px; +} +#u7 { + position:absolute; + left:2px; + top:-3px; + width:56px; + visibility:hidden; + word-wrap:break-word; +} +#u8 { + position:absolute; + left:6px; + top:6px; + width:372px; + height:796px; +} +#u8_img { + position:absolute; + left:0px; + top:0px; + width:372px; + height:796px; +} +#u9 { + position:absolute; + left:2px; + top:390px; + width:368px; + visibility:hidden; + word-wrap:break-word; +} +#u10 { + position:absolute; + left:32px; + top:120px; + width:320px; + height:568px; +} +#u10_img { + position:absolute; + left:0px; + top:0px; + width:320px; + height:568px; +} +#u11 { + position:absolute; + left:2px; + top:276px; + width:316px; + visibility:hidden; + word-wrap:break-word; +} +#u12 { + position:absolute; + left:157px; + top:66px; + width:70px; + height:14px; +} +#u12_img { + position:absolute; + left:0px; + top:0px; + width:70px; + height:14px; +} +#u13 { + position:absolute; + left:2px; + top:-1px; + width:66px; + visibility:hidden; + word-wrap:break-word; +} +#u14 { + position:absolute; + left:185px; + top:40px; + width:14px; + height:14px; +} +#u14_img { + position:absolute; + left:0px; + top:0px; + width:14px; + height:14px; +} +#u15 { + position:absolute; + left:2px; + top:-1px; + width:10px; + visibility:hidden; + word-wrap:break-word; +} +#u16 { + position:absolute; + left:156px; + top:704px; + width:72px; + height:72px; +} +#u16_img { + position:absolute; + left:0px; + top:0px; + width:72px; + height:72px; +} +#u17 { + position:absolute; + left:2px; + top:28px; + width:68px; + visibility:hidden; + word-wrap:break-word; +} +#u18 { + position:absolute; + left:500px; + top:860px; + width:50px; + height:50px; +} +#u18_img { + position:absolute; + left:0px; + top:0px; + width:50px; + height:50px; +} +#u19 { + position:absolute; + left:2px; + top:17px; + width:46px; + visibility:hidden; + word-wrap:break-word; +} +#u20 { + position:absolute; + left:33px; + top:140px; + width:318px; + height:60px; +} +#u20_img { + position:absolute; + left:0px; + top:0px; + width:318px; + height:60px; +} +#u21 { + position:absolute; + left:2px; + top:22px; + width:314px; + visibility:hidden; + word-wrap:break-word; +} +#u22 { + position:absolute; + left:40px; + top:159px; + width:22px; + height:22px; +} +#u22_img { + position:absolute; + left:0px; + top:0px; + width:22px; + height:22px; +} +#u23 { + position:absolute; + left:2px; + top:3px; + width:18px; + visibility:hidden; + word-wrap:break-word; +} +#u24 { + position:absolute; + left:152px; + top:157px; + width:81px; + height:24px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + font-size:20px; +} +#u24_img { + position:absolute; + left:0px; + top:0px; + width:81px; + height:24px; +} +#u25 { + position:absolute; + left:0px; + top:0px; + width:81px; + white-space:nowrap; +} +#u26 { + position:absolute; + left:68px; + top:204px; + width:247px; + height:60px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u26_img { + position:absolute; + left:0px; + top:0px; + width:247px; + height:60px; +} +#u27 { + position:absolute; + left:0px; + top:0px; + width:247px; + white-space:nowrap; +} +#u28 { + position:absolute; + left:42px; + top:259px; + width:300px; + height:10px; +} +#u28_start { + position:absolute; + left:0px; + top:-5px; + width:18px; + height:20px; +} +#u28_end { + position:absolute; + left:283px; + top:-5px; + width:18px; + height:20px; +} +#u28_line { + position:absolute; + left:0px; + top:5px; + width:300px; + height:1px; +} +#u29 { + position:absolute; + left:42px; + top:579px; + width:300px; + height:40px; +} +#u29_input { + position:absolute; + left:0px; + top:0px; + width:300px; + height:40px; + background-image:url(../../resources/images/transparent.gif); + text-align:center; + font-family:'微软雅黑'; + font-size:20px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u30 { + position:absolute; + left:222px; + top:629px; + width:120px; + height:40px; +} +#u30_input { + position:absolute; + left:0px; + top:0px; + width:120px; + height:40px; + background-image:url(../../resources/images/transparent.gif); + text-align:center; + font-family:'微软雅黑'; + font-size:20px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u31 { + position:absolute; + left:42px; + top:269px; + width:300px; + height:310px; + overflow:hidden; +} +#u31_state0 { + position:absolute; + left:0px; + top:0px; + width:300px; + height:310px; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; +} +#u31_state0_content { + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u32 { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u32_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u33 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u34 { + position:absolute; + left:8px; + top:0px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u34_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u35 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u36 { + position:absolute; + left:8px; + top:41px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u36_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u37 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u38 { + position:absolute; + left:207px; + top:41px; + width:77px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u38_img { + position:absolute; + left:0px; + top:0px; + width:77px; + height:19px; +} +#u39 { + position:absolute; + left:0px; + top:0px; + width:77px; + white-space:nowrap; +} +#u40 { + position:absolute; + left:257px; + top:21px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u40_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u41 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u42 { + position:absolute; + left:0px; + top:60px; + width:300px; + height:60px; +} +#u42_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u43 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u44 { + position:absolute; + left:8px; + top:60px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u44_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u45 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u46 { + position:absolute; + left:233px; + top:60px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u46_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u47 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u48 { + position:absolute; + left:8px; + top:101px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u48_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u49 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u50 { + position:absolute; + left:207px; + top:101px; + width:77px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u50_img { + position:absolute; + left:0px; + top:0px; + width:77px; + height:19px; +} +#u51 { + position:absolute; + left:0px; + top:0px; + width:77px; + white-space:nowrap; +} +#u52 { + position:absolute; + left:257px; + top:81px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u52_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u53 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u54 { + position:absolute; + left:0px; + top:120px; + width:300px; + height:60px; +} +#u54_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u55 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u56 { + position:absolute; + left:8px; + top:120px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u56_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u57 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u58 { + position:absolute; + left:8px; + top:161px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u58_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u59 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u60 { + position:absolute; + left:207px; + top:161px; + width:77px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u60_img { + position:absolute; + left:0px; + top:0px; + width:77px; + height:19px; +} +#u61 { + position:absolute; + left:0px; + top:0px; + width:77px; + white-space:nowrap; +} +#u62 { + position:absolute; + left:257px; + top:141px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u62_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u63 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u64 { + position:absolute; + left:0px; + top:180px; + width:300px; + height:60px; +} +#u64_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u65 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u66 { + position:absolute; + left:8px; + top:180px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u66_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u67 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u68 { + position:absolute; + left:8px; + top:221px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u68_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u69 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u70 { + position:absolute; + left:207px; + top:221px; + width:77px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u70_img { + position:absolute; + left:0px; + top:0px; + width:77px; + height:19px; +} +#u71 { + position:absolute; + left:0px; + top:0px; + width:77px; + white-space:nowrap; +} +#u72 { + position:absolute; + left:257px; + top:201px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u72_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u73 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u74 { + position:absolute; + left:229px; + top:182px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u74_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u75 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u76 { + position:absolute; + left:0px; + top:240px; + width:300px; + height:60px; +} +#u76_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u77 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u78 { + position:absolute; + left:243px; + top:248px; + width:45px; + height:45px; +} +#u78_img { + position:absolute; + left:0px; + top:0px; + width:45px; + height:45px; +} +#u79 { + position:absolute; + left:2px; + top:14px; + width:41px; + visibility:hidden; + word-wrap:break-word; +} +#u80 { + position:absolute; + left:229px; + top:122px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u80_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u81 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u82 { + position:absolute; + left:233px; + top:0px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u82_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u83 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u31_state1 { + position:absolute; + left:0px; + top:0px; + width:300px; + height:310px; + visibility:hidden; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; +} +#u31_state1_content { + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u84 { + position:absolute; + left:11px; + top:99px; + width:73px; + height:22px; + font-size:18px; +} +#u84_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u85 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u86 { + position:absolute; + left:95px; + top:96px; + width:200px; + height:25px; +} +#u86_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:25px; + background-image:; + text-align:left; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u87 { + position:absolute; + left:11px; + top:134px; + width:73px; + height:22px; + font-size:18px; +} +#u87_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u88 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u89 { + position:absolute; + left:95px; + top:131px; + width:200px; + height:25px; +} +#u89_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:25px; + background-image:; + text-align:left; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u90 { + position:absolute; + left:11px; + top:202px; + width:132px; + height:30px; +} +#u90_input { + position:absolute; + left:0px; + top:0px; + width:132px; + height:30px; + background-image:url(../../resources/images/transparent.gif); + text-align:center; + font-family:'微软雅黑'; + font-size:18px; + color:#000000; + font-weight:bold; + font-style:normal; + text-decoration:none; +} +#u91 { + position:absolute; + left:11px; + top:67px; + width:73px; + height:22px; + font-size:18px; +} +#u91_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u92 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u93 { + position:absolute; + left:95px; + top:64px; + width:200px; + height:25px; +} +#u93_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:25px; + background-image:; + text-align:left; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u94 { + position:absolute; + left:11px; + top:169px; + width:72px; + height:22px; + font-size:18px; +} +#u94_img { + position:absolute; + left:0px; + top:0px; + width:72px; + height:22px; +} +#u95 { + position:absolute; + left:0px; + top:0px; + width:72px; + white-space:nowrap; +} +#u96 { + position:absolute; + left:95px; + top:164px; + width:200px; + height:27px; +} +#u96_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:27px; + background-image:; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u97 { + position:absolute; + left:11px; + top:15px; + width:79px; + height:16px; +} +#u97_img { + position:absolute; + left:0px; + top:0px; + width:79px; + height:16px; +} +#u98 { + position:absolute; + left:0px; + top:0px; + width:79px; + white-space:nowrap; +} +#u99 { + position:absolute; + left:9px; + top:39px; + width:53px; + height:16px; +} +#u99_img { + position:absolute; + left:0px; + top:0px; + width:53px; + height:16px; +} +#u100 { + position:absolute; + left:0px; + top:0px; + width:53px; + white-space:nowrap; +} +#u101 { + position:absolute; + left:119px; + top:15px; + width:28px; + height:16px; +} +#u101_img { + position:absolute; + left:0px; + top:0px; + width:28px; + height:16px; +} +#u102 { + position:absolute; + left:0px; + top:0px; + width:28px; + white-space:nowrap; +} +#u103 { + position:absolute; + left:163px; + top:202px; + width:132px; + height:30px; +} +#u103_input { + position:absolute; + left:0px; + top:0px; + width:132px; + height:30px; + background-image:url(../../resources/images/transparent.gif); + text-align:center; + font-family:'微软雅黑'; + font-size:18px; + color:#000000; + font-weight:bold; + font-style:normal; + text-decoration:none; +} +#u104 { + position:absolute; + left:119px; + top:38px; + width:92px; + height:21px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u104_img { + position:absolute; + left:0px; + top:0px; + width:92px; + height:21px; +} +#u105 { + position:absolute; + left:0px; + top:0px; + width:92px; + white-space:nowrap; +} +#u31_state2 { + position:absolute; + left:0px; + top:0px; + width:300px; + height:310px; + visibility:hidden; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; +} +#u31_state2_content { + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u106 { + position:absolute; + left:11px; + top:99px; + width:73px; + height:22px; + font-size:18px; +} +#u106_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u107 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u108 { + position:absolute; + left:95px; + top:96px; + width:200px; + height:25px; +} +#u108_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:25px; + background-image:; + text-align:left; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u109 { + position:absolute; + left:11px; + top:134px; + width:73px; + height:22px; + font-size:18px; +} +#u109_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u110 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u111 { + position:absolute; + left:95px; + top:131px; + width:200px; + height:25px; +} +#u111_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:25px; + background-image:; + text-align:left; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u112 { + position:absolute; + left:11px; + top:202px; + width:132px; + height:30px; +} +#u112_input { + position:absolute; + left:0px; + top:0px; + width:132px; + height:30px; + background-image:url(../../resources/images/transparent.gif); + text-align:center; + font-family:'微软雅黑'; + font-size:18px; + color:#000000; + font-weight:bold; + font-style:normal; + text-decoration:none; +} +#u113 { + position:absolute; + left:11px; + top:67px; + width:73px; + height:22px; + font-size:18px; +} +#u113_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u114 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u115 { + position:absolute; + left:95px; + top:64px; + width:200px; + height:25px; +} +#u115_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:25px; + background-image:; + text-align:left; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u116 { + position:absolute; + left:11px; + top:169px; + width:72px; + height:22px; + font-size:18px; +} +#u116_img { + position:absolute; + left:0px; + top:0px; + width:72px; + height:22px; +} +#u117 { + position:absolute; + left:0px; + top:0px; + width:72px; + white-space:nowrap; +} +#u118 { + position:absolute; + left:95px; + top:164px; + width:200px; + height:27px; +} +#u118_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:27px; + background-image:; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u119 { + position:absolute; + left:11px; + top:15px; + width:79px; + height:16px; +} +#u119_img { + position:absolute; + left:0px; + top:0px; + width:79px; + height:16px; +} +#u120 { + position:absolute; + left:0px; + top:0px; + width:79px; + white-space:nowrap; +} +#u121 { + position:absolute; + left:9px; + top:39px; + width:53px; + height:16px; +} +#u121_img { + position:absolute; + left:0px; + top:0px; + width:53px; + height:16px; +} +#u122 { + position:absolute; + left:0px; + top:0px; + width:53px; + white-space:nowrap; +} +#u123 { + position:absolute; + left:119px; + top:15px; + width:28px; + height:16px; +} +#u123_img { + position:absolute; + left:0px; + top:0px; + width:28px; + height:16px; +} +#u124 { + position:absolute; + left:0px; + top:0px; + width:28px; + white-space:nowrap; +} +#u125 { + position:absolute; + left:163px; + top:202px; + width:132px; + height:30px; +} +#u125_input { + position:absolute; + left:0px; + top:0px; + width:132px; + height:30px; + background-image:url(../../resources/images/transparent.gif); + text-align:center; + font-family:'微软雅黑'; + font-size:18px; + color:#000000; + font-weight:bold; + font-style:normal; + text-decoration:none; +} +#u126 { + position:absolute; + left:119px; + top:38px; + width:92px; + height:21px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u126_img { + position:absolute; + left:0px; + top:0px; + width:92px; + height:21px; +} +#u127 { + position:absolute; + left:0px; + top:0px; + width:92px; + white-space:nowrap; +} +#u128 { + position:absolute; + left:52px; + top:350px; + width:280px; + height:85px; + overflow:hidden; +} +#u128_state0 { + position:absolute; + left:0px; + top:0px; + width:280px; + height:85px; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; +} +#u128_state0_content { + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u128_state1 { + position:absolute; + left:0px; + top:0px; + width:280px; + height:85px; + visibility:hidden; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; +} +#u128_state1_content { + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u129 { + position:absolute; + left:0px; + top:1px; + width:280px; + height:87px; +} +#u129_img { + position:absolute; + left:0px; + top:0px; + width:280px; + height:87px; +} +#u130 { + position:absolute; + left:2px; + top:36px; + width:276px; + visibility:hidden; + word-wrap:break-word; +} +#u131 { + position:absolute; + left:12px; + top:14px; + width:256px; + height:60px; +} +#u131_img { + position:absolute; + left:0px; + top:0px; + width:256px; + height:60px; +} +#u132 { + position:absolute; + left:0px; + top:0px; + width:256px; + white-space:nowrap; +} +#u133 { + position:absolute; + left:42px; + top:629px; + width:170px; + height:40px; +} +#u133_input { + position:absolute; + left:0px; + top:0px; + width:170px; + height:40px; + background-image:; + text-align:left; + font-family:'Arial'; + font-size:13px; + color:#CCCCCC; + font-weight:normal; + font-style:normal; + text-decoration:none; +} diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\346\224\266\345\267\245\350\265\204\351\246\226\351\241\265\351\235\242/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\346\224\266\345\267\245\350\265\204\351\246\226\351\241\265\351\235\242/data.js" new file mode 100644 index 0000000..c0ada8a --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\346\224\266\345\267\245\350\265\204\351\246\226\351\241\265\351\235\242/data.js" @@ -0,0 +1,533 @@ +$axure.loadCurrentPage({ + "url":"收工资首页面.html", + "generationDate":new Date(1416993075593.75), + "isCanvasEnabled":false, + "variables":["OnLoadVariable"], + "page":{ + "packageId":"fe27b98b6b884c719834208924c341dd", + "type":"Axure:Page", + "name":"收工资首页面", + "notes":{ +}, + "style":{ + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "pageAlignment":"near", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "image":null, + "imageHorizontalAlignment":"near", + "imageVerticalAlignment":"near", + "imageRepeat":"auto", + "favicon":null, + "sketchFactor":"0", + "colorStyle":"appliedColor", + "fontName":"应用字体", + "borderWidth":"0"}, + "adaptiveStyles":{ +}, + "interactionMap":{ +}, + "diagram":{ + "objects":[{ + "id":"356205caefdb40c297cadecacd0d28d3", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":116}, + "size":{ + "width":8, + "height":36}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c93fcda9debb46cdb2aca995afc202d3", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":116}, + "size":{ + "width":8, + "height":36}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u0.png"}}, +{ + "id":"a4b1156a6a784172b3554226f333e9f9", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":192}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"6197f587a5f040d1a42272e70df04992", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":192}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u2.png"}}, +{ + "id":"52d365267f5c43c2a986162f31bf115f", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":255}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"cd438e94b4fc41428445ebd0f9bbea99", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":255}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u2.png"}}, +{ + "id":"36552d26784942f18af6e98713035ca5", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":259, + "y":0}, + "size":{ + "width":60, + "height":10}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a1bf895f58d848fca33b5306b3ba608a", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":259, + "y":0}, + "size":{ + "width":60, + "height":10}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u6.png"}}, +{ + "id":"f91234210d214463a2f5bc69de8f6daf", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":6, + "y":6}, + "size":{ + "width":372, + "height":796}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"52"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"6bdca87356164a20bad1ba3e1174a048", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":6, + "y":6}, + "size":{ + "width":372, + "height":796}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"52"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u8.png"}}, +{ + "id":"44a484942b6a432fb46d9a8b8cd62370", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":32, + "y":120}, + "size":{ + "width":320, + "height":568}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"88de9bb394444c369edd46f296f61845", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":32, + "y":120}, + "size":{ + "width":320, + "height":568}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u10.png"}}, +{ + "id":"077c996353db4ab78bf6772fb313bc20", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":157, + "y":66}, + "size":{ + "width":70, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"2f3902faa6af46af80b59dc83717cf9a", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":157, + "y":66}, + "size":{ + "width":70, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u12.png"}}, +{ + "id":"3efc303a0c2f4145856c1670f61e9edf", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":185, + "y":40}, + "size":{ + "width":14, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"5fcb9652b1844135ab794b1c5fbe0968", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":185, + "y":40}, + "size":{ + "width":14, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u14.png"}}, +{ + "id":"c3f99b11cdce49aaa40edcc1aa48bf06", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":156, + "y":704}, + "size":{ + "width":72, + "height":72}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d06ca06522764363b1fc4bdf31711bd7", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":156, + "y":704}, + "size":{ + "width":72, + "height":72}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u16.png"}}, +{ + "id":"e309a569cfd146199d6f73db06a063f6", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "location":{ + "x":32, + "y":120}, + "size":{ + "width":320, + "height":570}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"588a8dc464e14ca5abc776a0f308d526", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":32, + "y":120}, + "size":{ + "width":320, + "height":570}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/发工资/u18.png"}}, +{ + "id":"11986c3a2f9848519520dcbc535e8080", + "label":"", + "type":"imageMapRegion", + "styleType":"imageMapRegion", + "visible":true, + "style":{ + "location":{ + "x":62, + "y":546}, + "size":{ + "width":259, + "height":40}}, + "adaptiveStyles":{ +}}]}}, + "masters":{ +}, + "objectPaths":{ + "356205caefdb40c297cadecacd0d28d3":{ + "scriptId":"u0"}, + "c93fcda9debb46cdb2aca995afc202d3":{ + "scriptId":"u1"}, + "a4b1156a6a784172b3554226f333e9f9":{ + "scriptId":"u2"}, + "6197f587a5f040d1a42272e70df04992":{ + "scriptId":"u3"}, + "52d365267f5c43c2a986162f31bf115f":{ + "scriptId":"u4"}, + "cd438e94b4fc41428445ebd0f9bbea99":{ + "scriptId":"u5"}, + "36552d26784942f18af6e98713035ca5":{ + "scriptId":"u6"}, + "a1bf895f58d848fca33b5306b3ba608a":{ + "scriptId":"u7"}, + "f91234210d214463a2f5bc69de8f6daf":{ + "scriptId":"u8"}, + "6bdca87356164a20bad1ba3e1174a048":{ + "scriptId":"u9"}, + "44a484942b6a432fb46d9a8b8cd62370":{ + "scriptId":"u10"}, + "88de9bb394444c369edd46f296f61845":{ + "scriptId":"u11"}, + "077c996353db4ab78bf6772fb313bc20":{ + "scriptId":"u12"}, + "2f3902faa6af46af80b59dc83717cf9a":{ + "scriptId":"u13"}, + "3efc303a0c2f4145856c1670f61e9edf":{ + "scriptId":"u14"}, + "5fcb9652b1844135ab794b1c5fbe0968":{ + "scriptId":"u15"}, + "c3f99b11cdce49aaa40edcc1aa48bf06":{ + "scriptId":"u16"}, + "d06ca06522764363b1fc4bdf31711bd7":{ + "scriptId":"u17"}, + "e309a569cfd146199d6f73db06a063f6":{ + "scriptId":"u18"}, + "588a8dc464e14ca5abc776a0f308d526":{ + "scriptId":"u19"}, + "11986c3a2f9848519520dcbc535e8080":{ + "scriptId":"u20"}}}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\346\224\266\345\267\245\350\265\204\351\246\226\351\241\265\351\235\242/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\346\224\266\345\267\245\350\265\204\351\246\226\351\241\265\351\235\242/styles.css" new file mode 100644 index 0000000..9c2c6e4 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\346\224\266\345\267\245\350\265\204\351\246\226\351\241\265\351\235\242/styles.css" @@ -0,0 +1,243 @@ +body { + margin:0px; + background-image:none; + position:static; + left:auto; + width:378px; + margin-left:0; + margin-right:0; + text-align:left; +} +#base { + position:absolute; + z-index:0; +} +#u0 { + position:absolute; + left:0px; + top:116px; + width:8px; + height:36px; +} +#u0_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:36px; +} +#u1 { + position:absolute; + left:2px; + top:10px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u2 { + position:absolute; + left:0px; + top:192px; + width:8px; + height:27px; +} +#u2_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:27px; +} +#u3 { + position:absolute; + left:2px; + top:6px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u4 { + position:absolute; + left:0px; + top:255px; + width:8px; + height:27px; +} +#u4_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:27px; +} +#u5 { + position:absolute; + left:2px; + top:6px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u6 { + position:absolute; + left:259px; + top:0px; + width:60px; + height:10px; +} +#u6_img { + position:absolute; + left:0px; + top:0px; + width:60px; + height:10px; +} +#u7 { + position:absolute; + left:2px; + top:-3px; + width:56px; + visibility:hidden; + word-wrap:break-word; +} +#u8 { + position:absolute; + left:6px; + top:6px; + width:372px; + height:796px; +} +#u8_img { + position:absolute; + left:0px; + top:0px; + width:372px; + height:796px; +} +#u9 { + position:absolute; + left:2px; + top:390px; + width:368px; + visibility:hidden; + word-wrap:break-word; +} +#u10 { + position:absolute; + left:32px; + top:120px; + width:320px; + height:568px; +} +#u10_img { + position:absolute; + left:0px; + top:0px; + width:320px; + height:568px; +} +#u11 { + position:absolute; + left:2px; + top:276px; + width:316px; + visibility:hidden; + word-wrap:break-word; +} +#u12 { + position:absolute; + left:157px; + top:66px; + width:70px; + height:14px; +} +#u12_img { + position:absolute; + left:0px; + top:0px; + width:70px; + height:14px; +} +#u13 { + position:absolute; + left:2px; + top:-1px; + width:66px; + visibility:hidden; + word-wrap:break-word; +} +#u14 { + position:absolute; + left:185px; + top:40px; + width:14px; + height:14px; +} +#u14_img { + position:absolute; + left:0px; + top:0px; + width:14px; + height:14px; +} +#u15 { + position:absolute; + left:2px; + top:-1px; + width:10px; + visibility:hidden; + word-wrap:break-word; +} +#u16 { + position:absolute; + left:156px; + top:704px; + width:72px; + height:72px; +} +#u16_img { + position:absolute; + left:0px; + top:0px; + width:72px; + height:72px; +} +#u17 { + position:absolute; + left:2px; + top:28px; + width:68px; + visibility:hidden; + word-wrap:break-word; +} +#u18 { + position:absolute; + left:32px; + top:120px; + width:320px; + height:570px; +} +#u18_img { + position:absolute; + left:0px; + top:0px; + width:320px; + height:570px; +} +#u19 { + position:absolute; + left:2px; + top:277px; + width:316px; + visibility:hidden; + word-wrap:break-word; +} +#u20 { + position:absolute; + left:62px; + top:546px; + width:259px; + height:40px; + overflow:hidden; + background-image:url('../../resources/images/transparent.gif'); +} diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\347\274\226\350\276\221-_\350\260\203\347\224\250\345\216\206\345\217\262\350\256\260\345\275\225/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\347\274\226\350\276\221-_\350\260\203\347\224\250\345\216\206\345\217\262\350\256\260\345\275\225/data.js" new file mode 100644 index 0000000..4fb71f6 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\347\274\226\350\276\221-_\350\260\203\347\224\250\345\216\206\345\217\262\350\256\260\345\275\225/data.js" @@ -0,0 +1,1877 @@ +$axure.loadCurrentPage({ + "url":"编辑-_调用历史记录.html", + "generationDate":new Date(1416993072609.38), + "isCanvasEnabled":false, + "variables":["OnLoadVariable"], + "page":{ + "packageId":"b3cf0c4ea7e84008b33c2d1c72c72607", + "type":"Axure:Page", + "name":"编辑- 调用历史记录", + "notes":{ +}, + "style":{ + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "pageAlignment":"near", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "image":null, + "imageHorizontalAlignment":"near", + "imageVerticalAlignment":"near", + "imageRepeat":"auto", + "favicon":null, + "sketchFactor":"0", + "colorStyle":"appliedColor", + "fontName":"应用字体", + "borderWidth":"0"}, + "adaptiveStyles":{ +}, + "interactionMap":{ +}, + "diagram":{ + "objects":[{ + "id":"9ef6483d584f47969fc89354cd8e7c35", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":116}, + "size":{ + "width":8, + "height":36}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ccae4a1e342840c4a857a9a3c8b39c60", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":116}, + "size":{ + "width":8, + "height":36}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u0.png"}}, +{ + "id":"a60e1e9d92a143ea803309b8d1097088", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":192}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ab72d32389524128a7137f5a2c1726ac", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":192}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u2.png"}}, +{ + "id":"2e7942ea9f954db3be710596b0acfb7e", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":255}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"07db8fc4fc894ad2894e5b7b2d6d93ec", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":255}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u2.png"}}, +{ + "id":"a198a3b320fa4903994427223e5c5d5e", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":259, + "y":0}, + "size":{ + "width":60, + "height":10}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"cbab2eb8624644b1b655c783bc88a22d", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":259, + "y":0}, + "size":{ + "width":60, + "height":10}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u6.png"}}, +{ + "id":"ab6d6242d00047f8a243a8377b6c8356", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":6, + "y":6}, + "size":{ + "width":372, + "height":796}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"52"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"5f9cf5ec20dd41d48276de62d28a6642", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":6, + "y":6}, + "size":{ + "width":372, + "height":796}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"52"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u8.png"}}, +{ + "id":"18ad6eae1cdd49e79055084f7e96826b", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":32, + "y":120}, + "size":{ + "width":320, + "height":568}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"b968f448073144cab2f613b25e44ceb1", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":32, + "y":120}, + "size":{ + "width":320, + "height":568}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u10.png"}}, +{ + "id":"2b71272ca6814c0bbde2a6cfcb491837", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":157, + "y":66}, + "size":{ + "width":70, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"3fa1e303642141358ecc3406176ab44f", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":157, + "y":66}, + "size":{ + "width":70, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u12.png"}}, +{ + "id":"1da4bbac62794bedba77f7d31e11489a", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":185, + "y":40}, + "size":{ + "width":14, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"96700ada1c3d4fb492a0b39922f6e3cd", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":185, + "y":40}, + "size":{ + "width":14, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u14.png"}}, +{ + "id":"8779a999c0b44b9982f7c3b8a89faa52", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":156, + "y":704}, + "size":{ + "width":72, + "height":72}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"1fbb6ee86c49494fb5d8663876c4504b", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":156, + "y":704}, + "size":{ + "width":72, + "height":72}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u16.png"}}, +{ + "id":"c5a1814559cc471ab0c8395befe7ceff", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":32, + "y":140}, + "size":{ + "width":319, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"7072ade4578a49e6a0acaad20d139359", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":32, + "y":140}, + "size":{ + "width":319, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_首次进入/u18.png"}}, +{ + "id":"39c4c49b0c034888b383a47830405a46", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "location":{ + "x":40, + "y":159}, + "size":{ + "width":22, + "height":22}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"24bf41c651b8492b94f94e1f798ed8e2", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":40, + "y":159}, + "size":{ + "width":22, + "height":22}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 我要发工资 - 引导页 - 非首次", + "target":{ + "targetType":"page", + "url":"我要发工资_-_引导页_-_非首次.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true, + "images":{ + "normal~":"images/我要发工资_-_引导页_-_首次进入/u20.png"}}, +{ + "id":"88f63e08f45d4bd2b5a006d17cb2d636", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontSize":"20px", + "fontWeight":"700", + "location":{ + "x":171, + "y":158}, + "size":{ + "width":59, + "height":24}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"feca665753df4b06aac429ab4f26dd3f", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontSize":"20px", + "fontWeight":"700", + "location":{ + "x":171, + "y":158}, + "size":{ + "width":59, + "height":24}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"332c621973b54353a44fc9e423578f3f", + "label":"手动登记工资表", + "type":"dynamicPanel", + "styleType":"dynamicPanel", + "visible":true, + "style":{ + "location":{ + "x":32, + "y":210}, + "size":{ + "width":319, + "height":280}}, + "adaptiveStyles":{ +}, + "scrollbars":"none", + "fitToContent":false, + "propagate":false, + "diagrams":[{ + "id":"a3e6bd8e70284b69baf3c623094f6d50", + "label":"初始状态", + "type":"Axure:PanelDiagram", + "objects":[{ + "id":"46ca3dbcc8d44dfc898063ba030d6f9d", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":26, + "y":9}, + "size":{ + "width":275, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"dafb210b758c4bdb82ef6bf940b07d58", + "label":"", + "isContained":true, + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":26, + "y":9}, + "size":{ + "width":275, + "height":30}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"6908dd77647644ceb521e2184a9c09fe", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"horizontalLine", + "styleType":"horizontalLine", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":39}, + "size":{ + "width":319, + "height":10}, + "borderFill":{ + "fillType":"solid", + "color":0xFFCCCCCC}}, + "adaptiveStyles":{ +}, + "images":{ + "start~":"resources/images/transparent.gif", + "end~":"resources/images/transparent.gif", + "line~":"images/我用发工资_-_手动登记/u27_line.png"}}, +{ + "id":"e4454f9d109149d69a95a575126b9f86", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":62}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"6aef9d17e98d4dedafa448fc3c9ddb90", + "label":"", + "isContained":true, + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":62}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"4a0cbe1901b0488ca6f8c246c035b006", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"textBox", + "styleType":"textBox", + "visible":true, + "style":{ + "location":{ + "x":101.5, + "y":59}, + "size":{ + "width":200, + "height":25}}, + "adaptiveStyles":{ +}}, +{ + "id":"bea0349cbfee47b1bf292c02ca09078e", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":97}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d2a0b380d1134ffbaf3305bc083d5395", + "label":"", + "isContained":true, + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":97}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"d2c1c34bcbf74f0f88d57f58fae5669d", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"textBox", + "styleType":"textBox", + "visible":true, + "style":{ + "location":{ + "x":101.5, + "y":94}, + "size":{ + "width":200, + "height":25}}, + "adaptiveStyles":{ +}}, +{ + "id":"42588ea6e25d44f6a914dc1f4be03326", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":131}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"777ce4f2940e4d8eb927cbbfa2b25da0", + "label":"", + "isContained":true, + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":131}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"f83ae1e9b31044908e509bfb6074f586", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"textBox", + "styleType":"textBox", + "visible":true, + "style":{ + "location":{ + "x":102, + "y":128}, + "size":{ + "width":200, + "height":25}}, + "adaptiveStyles":{ +}}, +{ + "id":"81e6b8616e674617a1be96df46a1f56b", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":168}, + "size":{ + "width":72, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a5915e643adf475583bca8ef02043c55", + "label":"", + "isContained":true, + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":168}, + "size":{ + "width":72, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"aeaec9643579436791091c68b92661e4", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"comboBox", + "styleType":"comboBox", + "visible":true, + "style":{ + "location":{ + "x":102, + "y":163}, + "size":{ + "width":200, + "height":27}}, + "adaptiveStyles":{ +}}, +{ + "id":"6585b1420e4546279fbe62e174bb2bd6", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"button", + "styleType":"button", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"18px", + "fontWeight":"700", + "location":{ + "x":18, + "y":200}, + "size":{ + "width":132, + "height":30}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"setPanelState", + "description":"设置 手动登记工资表 to 添加记录状态 向下滑动 in 1500ms", + "panelsToStates":[{ + "panelPath":["332c621973b54353a44fc9e423578f3f"], + "stateInfo":{ + "setStateType":"diagram", + "stateNumber":2, + "stateValue":{ + "exprType":"stringLiteral", + "value":"1", + "stos":[]}, + "loop":false, + "showWhenSet":false, + "options":{ + "animateIn":{ + "easing":"slideDown", + "duration":1500}, + "compress":false}}}]}]}]}}, + "tabbable":true}, +{ + "id":"99d5b744c6e045a798da88e2ede45e1a", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"button", + "styleType":"button", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"18px", + "fontWeight":"700", + "location":{ + "x":170, + "y":200}, + "size":{ + "width":132, + "height":30}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 编辑后页面 - 调用历史新增", + "target":{ + "targetType":"page", + "url":"编辑后页面_-_调用历史新增.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true}]}, +{ + "id":"cbd2637cad7244bba77400ba3c07526d", + "label":"添加记录状态", + "type":"Axure:PanelDiagram", + "objects":[{ + "id":"b63d1cc5a8374db6822d4256d20aa011", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":26, + "y":9}, + "size":{ + "width":255, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"abc2014471b94b2bbac8eb78da62667e", + "label":"", + "isContained":true, + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":26, + "y":9}, + "size":{ + "width":255, + "height":30}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"591a1763a6cb45d19d12a5623c657089", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"horizontalLine", + "styleType":"horizontalLine", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":39}, + "size":{ + "width":319, + "height":10}, + "borderFill":{ + "fillType":"solid", + "color":0xFFCCCCCC}}, + "adaptiveStyles":{ +}, + "images":{ + "start~":"resources/images/transparent.gif", + "end~":"resources/images/transparent.gif", + "line~":"images/我用发工资_-_手动登记/u27_line.png"}}, +{ + "id":"1fcf81beebf841a599fb41080e564973", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":133}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"2a96ff1d43204e698323dac8ea16b2b8", + "label":"", + "isContained":true, + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":133}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"ccc89d72ccb047b6b564b5da4f773475", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"textBox", + "styleType":"textBox", + "visible":true, + "style":{ + "location":{ + "x":102, + "y":130}, + "size":{ + "width":200, + "height":25}}, + "adaptiveStyles":{ +}}, +{ + "id":"669820eb54514edaacd92d8059210d28", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":168}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"6b1f22e966b641f58e2721cb55efb5a4", + "label":"", + "isContained":true, + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":168}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"473e981bfb94458289da9901415be99a", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"textBox", + "styleType":"textBox", + "visible":true, + "style":{ + "location":{ + "x":102, + "y":165}, + "size":{ + "width":200, + "height":25}}, + "adaptiveStyles":{ +}}, +{ + "id":"cf8ff86444264d34831652824dd02921", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"button", + "styleType":"button", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"18px", + "fontWeight":"700", + "location":{ + "x":18, + "y":236}, + "size":{ + "width":132, + "height":30}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"setPanelState", + "description":"设置 手动登记工资表 to 添加记录状态 向下滑动 in 1500ms", + "panelsToStates":[{ + "panelPath":["332c621973b54353a44fc9e423578f3f"], + "stateInfo":{ + "setStateType":"diagram", + "stateNumber":2, + "stateValue":{ + "exprType":"stringLiteral", + "value":"1", + "stos":[]}, + "loop":false, + "showWhenSet":false, + "options":{ + "animateIn":{ + "easing":"slideDown", + "duration":1500}, + "compress":false}}}]}]}]}}, + "tabbable":true}, +{ + "id":"26bc2232e1e84a81ad8c3786873ab69e", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":101}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"83b3d580f7124c82b3ead46ebb682435", + "label":"", + "isContained":true, + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":101}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"4c033a66971b489ca91d9558c5cad625", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"textBox", + "styleType":"textBox", + "visible":true, + "style":{ + "location":{ + "x":102, + "y":98}, + "size":{ + "width":200, + "height":25}}, + "adaptiveStyles":{ +}}, +{ + "id":"3e33e024b27147db9c94d5bd53aaa0e5", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":203}, + "size":{ + "width":72, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"06e530bc3fb24dce965d232b9650dad7", + "label":"", + "isContained":true, + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":203}, + "size":{ + "width":72, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"2e45780b518c47a6a95acc346084ac10", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"comboBox", + "styleType":"comboBox", + "visible":true, + "style":{ + "location":{ + "x":102, + "y":198}, + "size":{ + "width":200, + "height":27}}, + "adaptiveStyles":{ +}}, +{ + "id":"05d7e2685a344e469b6141c60301e435", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":18, + "y":49}, + "size":{ + "width":40, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"b62d200ea174485d9a6d99a476d2d365", + "label":"", + "isContained":true, + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":18, + "y":49}, + "size":{ + "width":40, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"f5ed5123cdea44748a67413e6471121b", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":16, + "y":73}, + "size":{ + "width":78, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d4928470889d4beb9b003bdfe1946abc", + "label":"", + "isContained":true, + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":16, + "y":73}, + "size":{ + "width":78, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"8755ec948474444fa171e3b1ababe5ac", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":126, + "y":49}, + "size":{ + "width":68, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"497f33f8e14b4371bdc574d06ac74cfe", + "label":"", + "isContained":true, + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":126, + "y":49}, + "size":{ + "width":68, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"43d5ae359662480489f1cc6e239ea865", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":262, + "y":49}, + "size":{ + "width":27, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"3d36bd6a721c488aaed2622f42a673c4", + "label":"", + "isContained":true, + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":262, + "y":49}, + "size":{ + "width":27, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"3c3074693b154c3280d94cf4c8871c5e", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"horizontalLine", + "styleType":"horizontalLine", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":86}, + "size":{ + "width":319, + "height":10}, + "borderFill":{ + "fillType":"solid", + "color":0xFFCCCCCC}}, + "adaptiveStyles":{ +}, + "images":{ + "start~":"resources/images/transparent.gif", + "end~":"resources/images/transparent.gif", + "line~":"images/我用发工资_-_手动登记/u27_line.png"}}, +{ + "id":"67627fa5ef4544bc923a9fe0210b8378", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"imageMapRegion", + "styleType":"imageMapRegion", + "visible":true, + "style":{ + "location":{ + "x":18, + "y":49}, + "size":{ + "width":284, + "height":42}}, + "adaptiveStyles":{ +}}, +{ + "id":"d4535173d35241e1998c44d6be2b767b", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"button", + "styleType":"button", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"18px", + "fontWeight":"700", + "location":{ + "x":170, + "y":236}, + "size":{ + "width":132, + "height":30}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 编辑后页面 - 调用历史新增", + "target":{ + "targetType":"page", + "url":"编辑后页面_-_调用历史新增.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true}]}, +{ + "id":"1d81c224dc334659ba6bd4bbb65217bd", + "label":"编辑状态", + "type":"Axure:PanelDiagram", + "objects":[{ + "id":"4c9cce93b83142d0a93ff667054ced0e", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":16, + "y":47}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c97846e7e4584635b7cc9f743f1ff11d", + "label":"", + "isContained":true, + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":16, + "y":47}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"2bcbf93a10254a84bdfc9b72c1ea54ab", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"textBox", + "styleType":"textBox", + "visible":true, + "style":{ + "location":{ + "x":100, + "y":44}, + "size":{ + "width":200, + "height":25}}, + "adaptiveStyles":{ +}}, +{ + "id":"41d003d4b4164f3abe919c1ea41a5f2e", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":16, + "y":82}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"b8cebda7ba2e40b8ae35d3125a5c2eb6", + "label":"", + "isContained":true, + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":16, + "y":82}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"2f64232dedc14ca3b1934564ef0e4f1f", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"textBox", + "styleType":"textBox", + "visible":true, + "style":{ + "location":{ + "x":100, + "y":79}, + "size":{ + "width":200, + "height":25}}, + "adaptiveStyles":{ +}}, +{ + "id":"7440e3514c874752aad9946b2997e24f", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"button", + "styleType":"button", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"20px", + "fontWeight":"700", + "location":{ + "x":16, + "y":150}, + "size":{ + "width":284, + "height":30}}, + "adaptiveStyles":{ +}}, +{ + "id":"4eaee00259354f7f889c30c7fb3e2460", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":16, + "y":15}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"8230f4c410124a1da654074465429829", + "label":"", + "isContained":true, + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":16, + "y":15}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"2057374bc7d1449783cad43f2f5aa933", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"textBox", + "styleType":"textBox", + "visible":true, + "style":{ + "location":{ + "x":100, + "y":12}, + "size":{ + "width":200, + "height":25}}, + "adaptiveStyles":{ +}}, +{ + "id":"95509c72f97f48fa947f8230099801fe", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":16, + "y":117}, + "size":{ + "width":72, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"db0be5f2c27a48ffa95ea33ea511cc8d", + "label":"", + "isContained":true, + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":16, + "y":117}, + "size":{ + "width":72, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"16b63c9034454f85afe7fbcf87d31ecd", + "label":"", + "parentDynamicPanel":"332c621973b54353a44fc9e423578f3f", + "type":"comboBox", + "styleType":"comboBox", + "visible":true, + "style":{ + "location":{ + "x":100, + "y":112}, + "size":{ + "width":200, + "height":27}}, + "adaptiveStyles":{ +}}]}]}]}}, + "masters":{ +}, + "objectPaths":{ + "9ef6483d584f47969fc89354cd8e7c35":{ + "scriptId":"u0"}, + "ccae4a1e342840c4a857a9a3c8b39c60":{ + "scriptId":"u1"}, + "a60e1e9d92a143ea803309b8d1097088":{ + "scriptId":"u2"}, + "ab72d32389524128a7137f5a2c1726ac":{ + "scriptId":"u3"}, + "2e7942ea9f954db3be710596b0acfb7e":{ + "scriptId":"u4"}, + "07db8fc4fc894ad2894e5b7b2d6d93ec":{ + "scriptId":"u5"}, + "a198a3b320fa4903994427223e5c5d5e":{ + "scriptId":"u6"}, + "cbab2eb8624644b1b655c783bc88a22d":{ + "scriptId":"u7"}, + "ab6d6242d00047f8a243a8377b6c8356":{ + "scriptId":"u8"}, + "5f9cf5ec20dd41d48276de62d28a6642":{ + "scriptId":"u9"}, + "18ad6eae1cdd49e79055084f7e96826b":{ + "scriptId":"u10"}, + "b968f448073144cab2f613b25e44ceb1":{ + "scriptId":"u11"}, + "2b71272ca6814c0bbde2a6cfcb491837":{ + "scriptId":"u12"}, + "3fa1e303642141358ecc3406176ab44f":{ + "scriptId":"u13"}, + "1da4bbac62794bedba77f7d31e11489a":{ + "scriptId":"u14"}, + "96700ada1c3d4fb492a0b39922f6e3cd":{ + "scriptId":"u15"}, + "8779a999c0b44b9982f7c3b8a89faa52":{ + "scriptId":"u16"}, + "1fbb6ee86c49494fb5d8663876c4504b":{ + "scriptId":"u17"}, + "c5a1814559cc471ab0c8395befe7ceff":{ + "scriptId":"u18"}, + "7072ade4578a49e6a0acaad20d139359":{ + "scriptId":"u19"}, + "39c4c49b0c034888b383a47830405a46":{ + "scriptId":"u20"}, + "24bf41c651b8492b94f94e1f798ed8e2":{ + "scriptId":"u21"}, + "88f63e08f45d4bd2b5a006d17cb2d636":{ + "scriptId":"u22"}, + "feca665753df4b06aac429ab4f26dd3f":{ + "scriptId":"u23"}, + "332c621973b54353a44fc9e423578f3f":{ + "scriptId":"u24"}, + "46ca3dbcc8d44dfc898063ba030d6f9d":{ + "scriptId":"u25"}, + "dafb210b758c4bdb82ef6bf940b07d58":{ + "scriptId":"u26"}, + "6908dd77647644ceb521e2184a9c09fe":{ + "scriptId":"u27"}, + "e4454f9d109149d69a95a575126b9f86":{ + "scriptId":"u28"}, + "6aef9d17e98d4dedafa448fc3c9ddb90":{ + "scriptId":"u29"}, + "4a0cbe1901b0488ca6f8c246c035b006":{ + "scriptId":"u30"}, + "bea0349cbfee47b1bf292c02ca09078e":{ + "scriptId":"u31"}, + "d2a0b380d1134ffbaf3305bc083d5395":{ + "scriptId":"u32"}, + "d2c1c34bcbf74f0f88d57f58fae5669d":{ + "scriptId":"u33"}, + "42588ea6e25d44f6a914dc1f4be03326":{ + "scriptId":"u34"}, + "777ce4f2940e4d8eb927cbbfa2b25da0":{ + "scriptId":"u35"}, + "f83ae1e9b31044908e509bfb6074f586":{ + "scriptId":"u36"}, + "81e6b8616e674617a1be96df46a1f56b":{ + "scriptId":"u37"}, + "a5915e643adf475583bca8ef02043c55":{ + "scriptId":"u38"}, + "aeaec9643579436791091c68b92661e4":{ + "scriptId":"u39"}, + "6585b1420e4546279fbe62e174bb2bd6":{ + "scriptId":"u40"}, + "99d5b744c6e045a798da88e2ede45e1a":{ + "scriptId":"u41"}, + "b63d1cc5a8374db6822d4256d20aa011":{ + "scriptId":"u42"}, + "abc2014471b94b2bbac8eb78da62667e":{ + "scriptId":"u43"}, + "591a1763a6cb45d19d12a5623c657089":{ + "scriptId":"u44"}, + "1fcf81beebf841a599fb41080e564973":{ + "scriptId":"u45"}, + "2a96ff1d43204e698323dac8ea16b2b8":{ + "scriptId":"u46"}, + "ccc89d72ccb047b6b564b5da4f773475":{ + "scriptId":"u47"}, + "669820eb54514edaacd92d8059210d28":{ + "scriptId":"u48"}, + "6b1f22e966b641f58e2721cb55efb5a4":{ + "scriptId":"u49"}, + "473e981bfb94458289da9901415be99a":{ + "scriptId":"u50"}, + "cf8ff86444264d34831652824dd02921":{ + "scriptId":"u51"}, + "26bc2232e1e84a81ad8c3786873ab69e":{ + "scriptId":"u52"}, + "83b3d580f7124c82b3ead46ebb682435":{ + "scriptId":"u53"}, + "4c033a66971b489ca91d9558c5cad625":{ + "scriptId":"u54"}, + "3e33e024b27147db9c94d5bd53aaa0e5":{ + "scriptId":"u55"}, + "06e530bc3fb24dce965d232b9650dad7":{ + "scriptId":"u56"}, + "2e45780b518c47a6a95acc346084ac10":{ + "scriptId":"u57"}, + "05d7e2685a344e469b6141c60301e435":{ + "scriptId":"u58"}, + "b62d200ea174485d9a6d99a476d2d365":{ + "scriptId":"u59"}, + "f5ed5123cdea44748a67413e6471121b":{ + "scriptId":"u60"}, + "d4928470889d4beb9b003bdfe1946abc":{ + "scriptId":"u61"}, + "8755ec948474444fa171e3b1ababe5ac":{ + "scriptId":"u62"}, + "497f33f8e14b4371bdc574d06ac74cfe":{ + "scriptId":"u63"}, + "43d5ae359662480489f1cc6e239ea865":{ + "scriptId":"u64"}, + "3d36bd6a721c488aaed2622f42a673c4":{ + "scriptId":"u65"}, + "3c3074693b154c3280d94cf4c8871c5e":{ + "scriptId":"u66"}, + "67627fa5ef4544bc923a9fe0210b8378":{ + "scriptId":"u67"}, + "d4535173d35241e1998c44d6be2b767b":{ + "scriptId":"u68"}, + "4c9cce93b83142d0a93ff667054ced0e":{ + "scriptId":"u69"}, + "c97846e7e4584635b7cc9f743f1ff11d":{ + "scriptId":"u70"}, + "2bcbf93a10254a84bdfc9b72c1ea54ab":{ + "scriptId":"u71"}, + "41d003d4b4164f3abe919c1ea41a5f2e":{ + "scriptId":"u72"}, + "b8cebda7ba2e40b8ae35d3125a5c2eb6":{ + "scriptId":"u73"}, + "2f64232dedc14ca3b1934564ef0e4f1f":{ + "scriptId":"u74"}, + "7440e3514c874752aad9946b2997e24f":{ + "scriptId":"u75"}, + "4eaee00259354f7f889c30c7fb3e2460":{ + "scriptId":"u76"}, + "8230f4c410124a1da654074465429829":{ + "scriptId":"u77"}, + "2057374bc7d1449783cad43f2f5aa933":{ + "scriptId":"u78"}, + "95509c72f97f48fa947f8230099801fe":{ + "scriptId":"u79"}, + "db0be5f2c27a48ffa95ea33ea511cc8d":{ + "scriptId":"u80"}, + "16b63c9034454f85afe7fbcf87d31ecd":{ + "scriptId":"u81"}}}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\347\274\226\350\276\221-_\350\260\203\347\224\250\345\216\206\345\217\262\350\256\260\345\275\225/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\347\274\226\350\276\221-_\350\260\203\347\224\250\345\216\206\345\217\262\350\256\260\345\275\225/styles.css" new file mode 100644 index 0000000..bf375b0 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\347\274\226\350\276\221-_\350\260\203\347\224\250\345\216\206\345\217\262\350\256\260\345\275\225/styles.css" @@ -0,0 +1,1203 @@ +body { + margin:0px; + background-image:none; + position:static; + left:auto; + width:378px; + margin-left:0; + margin-right:0; + text-align:left; +} +#base { + position:absolute; + z-index:0; +} +#u0 { + position:absolute; + left:0px; + top:116px; + width:8px; + height:36px; +} +#u0_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:36px; +} +#u1 { + position:absolute; + left:2px; + top:10px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u2 { + position:absolute; + left:0px; + top:192px; + width:8px; + height:27px; +} +#u2_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:27px; +} +#u3 { + position:absolute; + left:2px; + top:6px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u4 { + position:absolute; + left:0px; + top:255px; + width:8px; + height:27px; +} +#u4_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:27px; +} +#u5 { + position:absolute; + left:2px; + top:6px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u6 { + position:absolute; + left:259px; + top:0px; + width:60px; + height:10px; +} +#u6_img { + position:absolute; + left:0px; + top:0px; + width:60px; + height:10px; +} +#u7 { + position:absolute; + left:2px; + top:-3px; + width:56px; + visibility:hidden; + word-wrap:break-word; +} +#u8 { + position:absolute; + left:6px; + top:6px; + width:372px; + height:796px; +} +#u8_img { + position:absolute; + left:0px; + top:0px; + width:372px; + height:796px; +} +#u9 { + position:absolute; + left:2px; + top:390px; + width:368px; + visibility:hidden; + word-wrap:break-word; +} +#u10 { + position:absolute; + left:32px; + top:120px; + width:320px; + height:568px; +} +#u10_img { + position:absolute; + left:0px; + top:0px; + width:320px; + height:568px; +} +#u11 { + position:absolute; + left:2px; + top:276px; + width:316px; + visibility:hidden; + word-wrap:break-word; +} +#u12 { + position:absolute; + left:157px; + top:66px; + width:70px; + height:14px; +} +#u12_img { + position:absolute; + left:0px; + top:0px; + width:70px; + height:14px; +} +#u13 { + position:absolute; + left:2px; + top:-1px; + width:66px; + visibility:hidden; + word-wrap:break-word; +} +#u14 { + position:absolute; + left:185px; + top:40px; + width:14px; + height:14px; +} +#u14_img { + position:absolute; + left:0px; + top:0px; + width:14px; + height:14px; +} +#u15 { + position:absolute; + left:2px; + top:-1px; + width:10px; + visibility:hidden; + word-wrap:break-word; +} +#u16 { + position:absolute; + left:156px; + top:704px; + width:72px; + height:72px; +} +#u16_img { + position:absolute; + left:0px; + top:0px; + width:72px; + height:72px; +} +#u17 { + position:absolute; + left:2px; + top:28px; + width:68px; + visibility:hidden; + word-wrap:break-word; +} +#u18 { + position:absolute; + left:32px; + top:140px; + width:319px; + height:60px; +} +#u18_img { + position:absolute; + left:0px; + top:0px; + width:319px; + height:60px; +} +#u19 { + position:absolute; + left:2px; + top:22px; + width:315px; + visibility:hidden; + word-wrap:break-word; +} +#u20 { + position:absolute; + left:40px; + top:159px; + width:22px; + height:22px; +} +#u20_img { + position:absolute; + left:0px; + top:0px; + width:22px; + height:22px; +} +#u21 { + position:absolute; + left:2px; + top:3px; + width:18px; + visibility:hidden; + word-wrap:break-word; +} +#u22 { + position:absolute; + left:171px; + top:158px; + width:59px; + height:24px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + font-size:20px; +} +#u22_img { + position:absolute; + left:0px; + top:0px; + width:59px; + height:24px; +} +#u23 { + position:absolute; + left:0px; + top:0px; + width:59px; + white-space:nowrap; +} +#u24 { + position:absolute; + left:32px; + top:210px; + width:319px; + height:280px; + overflow:hidden; +} +#u24_state0 { + position:absolute; + left:0px; + top:0px; + width:319px; + height:280px; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; +} +#u24_state0_content { + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u25 { + position:absolute; + left:26px; + top:9px; + width:275px; + height:30px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u25_img { + position:absolute; + left:0px; + top:0px; + width:275px; + height:30px; +} +#u26 { + position:absolute; + left:0px; + top:0px; + width:275px; + white-space:nowrap; +} +#u27 { + position:absolute; + left:0px; + top:39px; + width:319px; + height:10px; +} +#u27_start { + position:absolute; + left:0px; + top:-5px; + width:18px; + height:20px; +} +#u27_end { + position:absolute; + left:302px; + top:-5px; + width:18px; + height:20px; +} +#u27_line { + position:absolute; + left:0px; + top:5px; + width:319px; + height:1px; +} +#u28 { + position:absolute; + left:18px; + top:62px; + width:73px; + height:22px; + font-size:18px; +} +#u28_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u29 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u30 { + position:absolute; + left:102px; + top:59px; + width:200px; + height:25px; +} +#u30_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:25px; + background-image:; + text-align:left; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u31 { + position:absolute; + left:18px; + top:97px; + width:73px; + height:22px; + font-size:18px; +} +#u31_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u32 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u33 { + position:absolute; + left:102px; + top:94px; + width:200px; + height:25px; +} +#u33_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:25px; + background-image:; + text-align:left; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u34 { + position:absolute; + left:18px; + top:131px; + width:73px; + height:22px; + font-size:18px; +} +#u34_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u35 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u36 { + position:absolute; + left:102px; + top:128px; + width:200px; + height:25px; +} +#u36_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:25px; + background-image:; + text-align:left; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u37 { + position:absolute; + left:18px; + top:168px; + width:72px; + height:22px; + font-size:18px; +} +#u37_img { + position:absolute; + left:0px; + top:0px; + width:72px; + height:22px; +} +#u38 { + position:absolute; + left:0px; + top:0px; + width:72px; + white-space:nowrap; +} +#u39 { + position:absolute; + left:102px; + top:163px; + width:200px; + height:27px; +} +#u39_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:27px; + background-image:; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u40 { + position:absolute; + left:18px; + top:200px; + width:132px; + height:30px; +} +#u40_input { + position:absolute; + left:0px; + top:0px; + width:132px; + height:30px; + background-image:url(../../resources/images/transparent.gif); + text-align:center; + font-family:'微软雅黑'; + font-size:18px; + color:#000000; + font-weight:bold; + font-style:normal; + text-decoration:none; +} +#u41 { + position:absolute; + left:170px; + top:200px; + width:132px; + height:30px; +} +#u41_input { + position:absolute; + left:0px; + top:0px; + width:132px; + height:30px; + background-image:url(../../resources/images/transparent.gif); + text-align:center; + font-family:'微软雅黑'; + font-size:18px; + color:#000000; + font-weight:bold; + font-style:normal; + text-decoration:none; +} +#u24_state1 { + position:absolute; + left:0px; + top:0px; + width:319px; + height:280px; + visibility:hidden; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; +} +#u24_state1_content { + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u42 { + position:absolute; + left:26px; + top:9px; + width:255px; + height:30px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u42_img { + position:absolute; + left:0px; + top:0px; + width:255px; + height:30px; +} +#u43 { + position:absolute; + left:0px; + top:0px; + width:255px; + white-space:nowrap; +} +#u44 { + position:absolute; + left:0px; + top:39px; + width:319px; + height:10px; +} +#u44_start { + position:absolute; + left:0px; + top:-5px; + width:18px; + height:20px; +} +#u44_end { + position:absolute; + left:302px; + top:-5px; + width:18px; + height:20px; +} +#u44_line { + position:absolute; + left:0px; + top:5px; + width:319px; + height:1px; +} +#u45 { + position:absolute; + left:18px; + top:133px; + width:73px; + height:22px; + font-size:18px; +} +#u45_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u46 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u47 { + position:absolute; + left:102px; + top:130px; + width:200px; + height:25px; +} +#u47_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:25px; + background-image:; + text-align:left; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u48 { + position:absolute; + left:18px; + top:168px; + width:73px; + height:22px; + font-size:18px; +} +#u48_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u49 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u50 { + position:absolute; + left:102px; + top:165px; + width:200px; + height:25px; +} +#u50_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:25px; + background-image:; + text-align:left; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u51 { + position:absolute; + left:18px; + top:236px; + width:132px; + height:30px; +} +#u51_input { + position:absolute; + left:0px; + top:0px; + width:132px; + height:30px; + background-image:url(../../resources/images/transparent.gif); + text-align:center; + font-family:'微软雅黑'; + font-size:18px; + color:#000000; + font-weight:bold; + font-style:normal; + text-decoration:none; +} +#u52 { + position:absolute; + left:18px; + top:101px; + width:73px; + height:22px; + font-size:18px; +} +#u52_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u53 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u54 { + position:absolute; + left:102px; + top:98px; + width:200px; + height:25px; +} +#u54_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:25px; + background-image:; + text-align:left; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u55 { + position:absolute; + left:18px; + top:203px; + width:72px; + height:22px; + font-size:18px; +} +#u55_img { + position:absolute; + left:0px; + top:0px; + width:72px; + height:22px; +} +#u56 { + position:absolute; + left:0px; + top:0px; + width:72px; + white-space:nowrap; +} +#u57 { + position:absolute; + left:102px; + top:198px; + width:200px; + height:27px; +} +#u57_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:27px; + background-image:; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u58 { + position:absolute; + left:18px; + top:49px; + width:40px; + height:16px; +} +#u58_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:16px; +} +#u59 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u60 { + position:absolute; + left:16px; + top:73px; + width:78px; + height:16px; +} +#u60_img { + position:absolute; + left:0px; + top:0px; + width:78px; + height:16px; +} +#u61 { + position:absolute; + left:0px; + top:0px; + width:78px; + white-space:nowrap; +} +#u62 { + position:absolute; + left:126px; + top:49px; + width:68px; + height:16px; +} +#u62_img { + position:absolute; + left:0px; + top:0px; + width:68px; + height:16px; +} +#u63 { + position:absolute; + left:0px; + top:0px; + width:68px; + white-space:nowrap; +} +#u64 { + position:absolute; + left:262px; + top:49px; + width:27px; + height:16px; +} +#u64_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:16px; +} +#u65 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u66 { + position:absolute; + left:0px; + top:86px; + width:319px; + height:10px; +} +#u66_start { + position:absolute; + left:0px; + top:-5px; + width:18px; + height:20px; +} +#u66_end { + position:absolute; + left:302px; + top:-5px; + width:18px; + height:20px; +} +#u66_line { + position:absolute; + left:0px; + top:5px; + width:319px; + height:1px; +} +#u67 { + position:absolute; + left:18px; + top:49px; + width:284px; + height:42px; + overflow:hidden; + background-image:url('../../resources/images/transparent.gif'); +} +#u68 { + position:absolute; + left:170px; + top:236px; + width:132px; + height:30px; +} +#u68_input { + position:absolute; + left:0px; + top:0px; + width:132px; + height:30px; + background-image:url(../../resources/images/transparent.gif); + text-align:center; + font-family:'微软雅黑'; + font-size:18px; + color:#000000; + font-weight:bold; + font-style:normal; + text-decoration:none; +} +#u24_state2 { + position:absolute; + left:0px; + top:0px; + width:319px; + height:280px; + visibility:hidden; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; +} +#u24_state2_content { + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u69 { + position:absolute; + left:16px; + top:47px; + width:73px; + height:22px; + font-size:18px; +} +#u69_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u70 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u71 { + position:absolute; + left:100px; + top:44px; + width:200px; + height:25px; +} +#u71_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:25px; + background-image:; + text-align:left; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u72 { + position:absolute; + left:16px; + top:82px; + width:73px; + height:22px; + font-size:18px; +} +#u72_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u73 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u74 { + position:absolute; + left:100px; + top:79px; + width:200px; + height:25px; +} +#u74_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:25px; + background-image:; + text-align:left; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u75 { + position:absolute; + left:16px; + top:150px; + width:284px; + height:30px; +} +#u75_input { + position:absolute; + left:0px; + top:0px; + width:284px; + height:30px; + background-image:url(../../resources/images/transparent.gif); + text-align:center; + font-family:'微软雅黑'; + font-size:20px; + color:#000000; + font-weight:bold; + font-style:normal; + text-decoration:none; +} +#u76 { + position:absolute; + left:16px; + top:15px; + width:73px; + height:22px; + font-size:18px; +} +#u76_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u77 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u78 { + position:absolute; + left:100px; + top:12px; + width:200px; + height:25px; +} +#u78_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:25px; + background-image:; + text-align:left; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u79 { + position:absolute; + left:16px; + top:117px; + width:72px; + height:22px; + font-size:18px; +} +#u79_img { + position:absolute; + left:0px; + top:0px; + width:72px; + height:22px; +} +#u80 { + position:absolute; + left:0px; + top:0px; + width:72px; + white-space:nowrap; +} +#u81 { + position:absolute; + left:100px; + top:112px; + width:200px; + height:27px; +} +#u81_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:27px; + background-image:; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\347\274\226\350\276\221\345\220\216\351\241\265\351\235\242_-_\350\260\203\347\224\250\345\216\206\345\217\262\346\226\260\345\242\236/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\347\274\226\350\276\221\345\220\216\351\241\265\351\235\242_-_\350\260\203\347\224\250\345\216\206\345\217\262\346\226\260\345\242\236/data.js" new file mode 100644 index 0000000..3c71261 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\347\274\226\350\276\221\345\220\216\351\241\265\351\235\242_-_\350\260\203\347\224\250\345\216\206\345\217\262\346\226\260\345\242\236/data.js" @@ -0,0 +1,1994 @@ +$axure.loadCurrentPage({ + "url":"编辑后页面_-_调用历史新增.html", + "generationDate":new Date(1416993075765.63), + "isCanvasEnabled":false, + "variables":["OnLoadVariable"], + "page":{ + "packageId":"4eb956d08c4c4234bb4cf638d9444849", + "type":"Axure:Page", + "name":"编辑后页面 - 调用历史新增", + "notes":{ +}, + "style":{ + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "pageAlignment":"near", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "image":null, + "imageHorizontalAlignment":"near", + "imageVerticalAlignment":"near", + "imageRepeat":"auto", + "favicon":null, + "sketchFactor":"0", + "colorStyle":"appliedColor", + "fontName":"应用字体", + "borderWidth":"0"}, + "adaptiveStyles":{ +}, + "interactionMap":{ +}, + "diagram":{ + "objects":[{ + "id":"db4d7009166c489e84813f0de820482d", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":116}, + "size":{ + "width":8, + "height":36}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"7ae61cb339ec404f8c9eeffdb1cad956", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":116}, + "size":{ + "width":8, + "height":36}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u0.png"}}, +{ + "id":"feef0277060c46b7950647d339789cd7", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":192}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"4f6c450dbf7543648443130e398dbb1b", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":192}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u2.png"}}, +{ + "id":"4346a7d29377478084b0e7e83b1e590f", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":255}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"4e9753b1f68448408ec4fa56d2654b5c", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":255}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u2.png"}}, +{ + "id":"04b1ed1725614393a3d2862b6b4ac972", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":259, + "y":0}, + "size":{ + "width":60, + "height":10}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d4eea12e64404934a03e473b33ee3905", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":259, + "y":0}, + "size":{ + "width":60, + "height":10}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u6.png"}}, +{ + "id":"452b1eeadeb44900a9416b515f8a743c", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":6, + "y":6}, + "size":{ + "width":372, + "height":796}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"52"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ac531ffe5eee46c9b7f75b025ee5b195", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":6, + "y":6}, + "size":{ + "width":372, + "height":796}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"52"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u8.png"}}, +{ + "id":"a7992993efda4a41864960ca03bbf88b", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":32, + "y":120}, + "size":{ + "width":320, + "height":568}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"07f1f0f4b9254c26b9f22e82699de94d", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":32, + "y":120}, + "size":{ + "width":320, + "height":568}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u10.png"}}, +{ + "id":"4ccc16675faf4ec99fb598a427d1cede", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":157, + "y":66}, + "size":{ + "width":70, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"1f871c6140034155afd46388daf0bfff", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":157, + "y":66}, + "size":{ + "width":70, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u12.png"}}, +{ + "id":"fddb68c6ed614b1e8734b64ba2ed7b1a", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":185, + "y":40}, + "size":{ + "width":14, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"404539c8fd1643108ff3085640177bfe", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":185, + "y":40}, + "size":{ + "width":14, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u14.png"}}, +{ + "id":"debc308134654e54837c543589afdfa6", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":156, + "y":704}, + "size":{ + "width":72, + "height":72}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"55d429974b7f4d568bce45b2a1dfd6e3", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":156, + "y":704}, + "size":{ + "width":72, + "height":72}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u16.png"}}, +{ + "id":"e1cc7fc2183d46e8b79eab5070f674bd", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":32, + "y":140}, + "size":{ + "width":319, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"6e9b804847574deaa6fad7c88cb9eaef", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":32, + "y":140}, + "size":{ + "width":319, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_首次进入/u18.png"}}, +{ + "id":"c9a7fb68654c4e00979c12eaaf063fe5", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "location":{ + "x":40, + "y":159}, + "size":{ + "width":22, + "height":22}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"84972ef9e0684e83b78531c24931e452", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":40, + "y":159}, + "size":{ + "width":22, + "height":22}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 发工资", + "target":{ + "targetType":"page", + "url":"发工资.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true, + "images":{ + "normal~":"images/我要发工资_-_引导页_-_首次进入/u20.png"}}, +{ + "id":"11e3a5bc1f964b4186f0b3304251961a", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontSize":"20px", + "fontWeight":"700", + "location":{ + "x":141, + "y":156}, + "size":{ + "width":101, + "height":24}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"8af505b32091400da909f63b78f0908c", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontSize":"20px", + "fontWeight":"700", + "location":{ + "x":141, + "y":156}, + "size":{ + "width":101, + "height":24}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"de63c0637df14e60a32ac3507f1c9f69", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"16px", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFCCCCCC, + "opacity":1}, + "location":{ + "x":270, + "y":161}, + "size":{ + "width":65, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a4c61ddf31e44801998ae878522f127a", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"16px", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFCCCCCC, + "opacity":1}, + "location":{ + "x":270, + "y":161}, + "size":{ + "width":65, + "height":19}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 发放历史", + "target":{ + "targetType":"page", + "url":"发放历史.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true, + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"a3adeffac3ad4d22a3534d3e64075e0b", + "label":"", + "type":"button", + "styleType":"button", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "fontSize":"20px", + "location":{ + "x":62, + "y":610}, + "size":{ + "width":267, + "height":40}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 支付", + "target":{ + "targetType":"page", + "url":"支付.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true}, +{ + "id":"dc327e888abf4970ba322e68ce137948", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":48, + "y":210}, + "size":{ + "width":151, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"bc06d15f51a04ed6aab4590cf6247323", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":48, + "y":210}, + "size":{ + "width":151, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"132c9418897a47eb9ff2617df77e3910", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":45.5, + "y":236}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"9a7e4c52b8704c80b5816a4dcaf30013", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":45.5, + "y":236}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"f4b86ed905f841699db7c3c909706276", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":54, + "y":236}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d39eb8f2e0ff417a9e02e550609f00d6", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":54, + "y":236}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"dc1286c6e2f04890a79563b14c003234", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":278, + "y":236}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"9e3aa444a9ea44bfa4f1c8af29077ce2", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":278, + "y":236}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"68bb35ec45314c429a1fbb8dfac673b1", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":54, + "y":277}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"7b7625ba283c4a5c9c39ea99a63cfb33", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":54, + "y":277}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"f428ccba19c3488ea2bb15bfd06c210c", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":252, + "y":277}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c221d98eb1df4e36b5bfd58c13869f40", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":252, + "y":277}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"9bbb54efb524464da1dcca9fa491f811", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":302, + "y":257}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"7e3fbe9c1a5243aab7178b205f306656", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":302, + "y":257}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"5644c07ba5c84f69ba2104a998671d71", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":45.5, + "y":296}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"600110f222b944db9da2129fafa3754f", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":45.5, + "y":296}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"60cf04508a274d32b803eb05f1f59f90", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":54, + "y":296}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"f769833e6efa40cb9232e0d58288e239", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":54, + "y":296}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"7f4c969fd90c423aa9215f0e5c0a630b", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":278, + "y":296}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"5765d87094374832a9464a8939e6b7b5", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":278, + "y":296}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"6ea3ed5edbcd47f59f4475db998c324d", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":54, + "y":337}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"44bd4f8be0c247a5ad028d1e2ee4ec60", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":54, + "y":337}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"c0d970de081f47b88288185b93e5b056", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":252, + "y":337}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"838c51d29e034feaa114063f7182095f", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":252, + "y":337}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"dcc771ebd4344e8bad46550c05ab15a5", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":302, + "y":317}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"81b4d9719f3f44e198f8278afcbe4c3c", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":302, + "y":317}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"5d638ab27b954d63a7bf949feb170e1d", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":45.5, + "y":356}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"89d7aa574c0a4f188d798f6919f9bfcc", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":45.5, + "y":356}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"6c5abe83a1244b03ad326d46bec14434", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":54, + "y":356}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"1172703f818846da9664b5a345a20c5e", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":54, + "y":356}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"2015120da23543b9ac44e35116e24a94", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":278, + "y":356}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c35a8023d9a24379902162928638fb8e", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":278, + "y":356}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"24933b7f1cdb4dcc952b3b12519e73cc", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":54, + "y":397}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"89ba5361a6b5487d87d13f4a0cef2988", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":54, + "y":397}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"71f0bfec3e154e52bbaf2980d47002c8", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":252, + "y":397}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"16398be415cf4aa8b5146819f90eb008", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":252, + "y":397}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"825ad84eb391454d89675767cd793a5d", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":302, + "y":377}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"266f9f33dea04dec98e6be42b1c58712", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":302, + "y":377}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"b326353a15764c459328362097ab69e2", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":45.5, + "y":416}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"3b2b6d7941fc458c81b3a0ce91e7f84f", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":45.5, + "y":416}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"504d762dc4ec4432aee27ced5be04874", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":54, + "y":416}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"76b69ab41cb64ad5b1e0e9bc187dd23d", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":54, + "y":416}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"1176ddb8ab7643b3a8ecfe6b58c4151e", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":54, + "y":457}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"e3ebe38301724b40a1dff2a856d66fb8", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":54, + "y":457}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"50e78db96ac3474aa3bcff9f5e4fb021", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":252, + "y":457}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"1dfafaa74334419cac8f23fe40ad7e07", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":252, + "y":457}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"95f31dc0dca549f5ae767f06a3fc88e2", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":302, + "y":437}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a53b8fea264e4a41900a6c4e71442f9b", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":302, + "y":437}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"de3ba1188c4044798d2988f3811d54d4", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":278, + "y":418}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c6d3211b60bd4ad385ad47e027e06aa9", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":278, + "y":418}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"df104d4f04c94b57a7dc50c79845f5ff", + "label":"", + "type":"button", + "styleType":"button", + "visible":true, + "style":{ + "location":{ + "x":46, + "y":550}, + "size":{ + "width":100, + "height":25}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 编辑- 调用历史记录", + "target":{ + "targetType":"page", + "url":"编辑-_调用历史记录.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true}, +{ + "id":"634a978894774e1797825404dd9d331a", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":46, + "y":476}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"bb4b16999e7f48a59877137c6a0a1c4e", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":46, + "y":476}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"a6b677d3f9e042a5bd3695810ae19d34", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":50, + "y":476}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"905368de24c142ada000ba8d58ef1921", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":50, + "y":476}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"34757281ec8545b08b8045efc02c3bfd", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":50, + "y":517}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"5755603ebd184cefa7e0dfe9738f3332", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":50, + "y":517}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"3ce4cf18877c49788b3e00486a2c9ba2", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":248, + "y":517}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"b5af81c6481c4297bb4bded800c33357", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":248, + "y":517}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"03d10c9209c442f38a63558dbfefd776", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":298, + "y":497}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"eb76c926e9b245e5ae2956b9b5d405dc", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":298, + "y":497}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"9a64a3787c0543c0accd81f3335fdfaf", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":274, + "y":478}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"442a8eb20a8348c583f199f89d30ff77", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":274, + "y":478}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}]}}, + "masters":{ +}, + "objectPaths":{ + "db4d7009166c489e84813f0de820482d":{ + "scriptId":"u0"}, + "7ae61cb339ec404f8c9eeffdb1cad956":{ + "scriptId":"u1"}, + "feef0277060c46b7950647d339789cd7":{ + "scriptId":"u2"}, + "4f6c450dbf7543648443130e398dbb1b":{ + "scriptId":"u3"}, + "4346a7d29377478084b0e7e83b1e590f":{ + "scriptId":"u4"}, + "4e9753b1f68448408ec4fa56d2654b5c":{ + "scriptId":"u5"}, + "04b1ed1725614393a3d2862b6b4ac972":{ + "scriptId":"u6"}, + "d4eea12e64404934a03e473b33ee3905":{ + "scriptId":"u7"}, + "452b1eeadeb44900a9416b515f8a743c":{ + "scriptId":"u8"}, + "ac531ffe5eee46c9b7f75b025ee5b195":{ + "scriptId":"u9"}, + "a7992993efda4a41864960ca03bbf88b":{ + "scriptId":"u10"}, + "07f1f0f4b9254c26b9f22e82699de94d":{ + "scriptId":"u11"}, + "4ccc16675faf4ec99fb598a427d1cede":{ + "scriptId":"u12"}, + "1f871c6140034155afd46388daf0bfff":{ + "scriptId":"u13"}, + "fddb68c6ed614b1e8734b64ba2ed7b1a":{ + "scriptId":"u14"}, + "404539c8fd1643108ff3085640177bfe":{ + "scriptId":"u15"}, + "debc308134654e54837c543589afdfa6":{ + "scriptId":"u16"}, + "55d429974b7f4d568bce45b2a1dfd6e3":{ + "scriptId":"u17"}, + "e1cc7fc2183d46e8b79eab5070f674bd":{ + "scriptId":"u18"}, + "6e9b804847574deaa6fad7c88cb9eaef":{ + "scriptId":"u19"}, + "c9a7fb68654c4e00979c12eaaf063fe5":{ + "scriptId":"u20"}, + "84972ef9e0684e83b78531c24931e452":{ + "scriptId":"u21"}, + "11e3a5bc1f964b4186f0b3304251961a":{ + "scriptId":"u22"}, + "8af505b32091400da909f63b78f0908c":{ + "scriptId":"u23"}, + "de63c0637df14e60a32ac3507f1c9f69":{ + "scriptId":"u24"}, + "a4c61ddf31e44801998ae878522f127a":{ + "scriptId":"u25"}, + "a3adeffac3ad4d22a3534d3e64075e0b":{ + "scriptId":"u26"}, + "dc327e888abf4970ba322e68ce137948":{ + "scriptId":"u27"}, + "bc06d15f51a04ed6aab4590cf6247323":{ + "scriptId":"u28"}, + "132c9418897a47eb9ff2617df77e3910":{ + "scriptId":"u29"}, + "9a7e4c52b8704c80b5816a4dcaf30013":{ + "scriptId":"u30"}, + "f4b86ed905f841699db7c3c909706276":{ + "scriptId":"u31"}, + "d39eb8f2e0ff417a9e02e550609f00d6":{ + "scriptId":"u32"}, + "dc1286c6e2f04890a79563b14c003234":{ + "scriptId":"u33"}, + "9e3aa444a9ea44bfa4f1c8af29077ce2":{ + "scriptId":"u34"}, + "68bb35ec45314c429a1fbb8dfac673b1":{ + "scriptId":"u35"}, + "7b7625ba283c4a5c9c39ea99a63cfb33":{ + "scriptId":"u36"}, + "f428ccba19c3488ea2bb15bfd06c210c":{ + "scriptId":"u37"}, + "c221d98eb1df4e36b5bfd58c13869f40":{ + "scriptId":"u38"}, + "9bbb54efb524464da1dcca9fa491f811":{ + "scriptId":"u39"}, + "7e3fbe9c1a5243aab7178b205f306656":{ + "scriptId":"u40"}, + "5644c07ba5c84f69ba2104a998671d71":{ + "scriptId":"u41"}, + "600110f222b944db9da2129fafa3754f":{ + "scriptId":"u42"}, + "60cf04508a274d32b803eb05f1f59f90":{ + "scriptId":"u43"}, + "f769833e6efa40cb9232e0d58288e239":{ + "scriptId":"u44"}, + "7f4c969fd90c423aa9215f0e5c0a630b":{ + "scriptId":"u45"}, + "5765d87094374832a9464a8939e6b7b5":{ + "scriptId":"u46"}, + "6ea3ed5edbcd47f59f4475db998c324d":{ + "scriptId":"u47"}, + "44bd4f8be0c247a5ad028d1e2ee4ec60":{ + "scriptId":"u48"}, + "c0d970de081f47b88288185b93e5b056":{ + "scriptId":"u49"}, + "838c51d29e034feaa114063f7182095f":{ + "scriptId":"u50"}, + "dcc771ebd4344e8bad46550c05ab15a5":{ + "scriptId":"u51"}, + "81b4d9719f3f44e198f8278afcbe4c3c":{ + "scriptId":"u52"}, + "5d638ab27b954d63a7bf949feb170e1d":{ + "scriptId":"u53"}, + "89d7aa574c0a4f188d798f6919f9bfcc":{ + "scriptId":"u54"}, + "6c5abe83a1244b03ad326d46bec14434":{ + "scriptId":"u55"}, + "1172703f818846da9664b5a345a20c5e":{ + "scriptId":"u56"}, + "2015120da23543b9ac44e35116e24a94":{ + "scriptId":"u57"}, + "c35a8023d9a24379902162928638fb8e":{ + "scriptId":"u58"}, + "24933b7f1cdb4dcc952b3b12519e73cc":{ + "scriptId":"u59"}, + "89ba5361a6b5487d87d13f4a0cef2988":{ + "scriptId":"u60"}, + "71f0bfec3e154e52bbaf2980d47002c8":{ + "scriptId":"u61"}, + "16398be415cf4aa8b5146819f90eb008":{ + "scriptId":"u62"}, + "825ad84eb391454d89675767cd793a5d":{ + "scriptId":"u63"}, + "266f9f33dea04dec98e6be42b1c58712":{ + "scriptId":"u64"}, + "b326353a15764c459328362097ab69e2":{ + "scriptId":"u65"}, + "3b2b6d7941fc458c81b3a0ce91e7f84f":{ + "scriptId":"u66"}, + "504d762dc4ec4432aee27ced5be04874":{ + "scriptId":"u67"}, + "76b69ab41cb64ad5b1e0e9bc187dd23d":{ + "scriptId":"u68"}, + "1176ddb8ab7643b3a8ecfe6b58c4151e":{ + "scriptId":"u69"}, + "e3ebe38301724b40a1dff2a856d66fb8":{ + "scriptId":"u70"}, + "50e78db96ac3474aa3bcff9f5e4fb021":{ + "scriptId":"u71"}, + "1dfafaa74334419cac8f23fe40ad7e07":{ + "scriptId":"u72"}, + "95f31dc0dca549f5ae767f06a3fc88e2":{ + "scriptId":"u73"}, + "a53b8fea264e4a41900a6c4e71442f9b":{ + "scriptId":"u74"}, + "de3ba1188c4044798d2988f3811d54d4":{ + "scriptId":"u75"}, + "c6d3211b60bd4ad385ad47e027e06aa9":{ + "scriptId":"u76"}, + "df104d4f04c94b57a7dc50c79845f5ff":{ + "scriptId":"u77"}, + "634a978894774e1797825404dd9d331a":{ + "scriptId":"u78"}, + "bb4b16999e7f48a59877137c6a0a1c4e":{ + "scriptId":"u79"}, + "a6b677d3f9e042a5bd3695810ae19d34":{ + "scriptId":"u80"}, + "905368de24c142ada000ba8d58ef1921":{ + "scriptId":"u81"}, + "34757281ec8545b08b8045efc02c3bfd":{ + "scriptId":"u82"}, + "5755603ebd184cefa7e0dfe9738f3332":{ + "scriptId":"u83"}, + "3ce4cf18877c49788b3e00486a2c9ba2":{ + "scriptId":"u84"}, + "b5af81c6481c4297bb4bded800c33357":{ + "scriptId":"u85"}, + "03d10c9209c442f38a63558dbfefd776":{ + "scriptId":"u86"}, + "eb76c926e9b245e5ae2956b9b5d405dc":{ + "scriptId":"u87"}, + "9a64a3787c0543c0accd81f3335fdfaf":{ + "scriptId":"u88"}, + "442a8eb20a8348c583f199f89d30ff77":{ + "scriptId":"u89"}}}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\347\274\226\350\276\221\345\220\216\351\241\265\351\235\242_-_\350\260\203\347\224\250\345\216\206\345\217\262\346\226\260\345\242\236/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\347\274\226\350\276\221\345\220\216\351\241\265\351\235\242_-_\350\260\203\347\224\250\345\216\206\345\217\262\346\226\260\345\242\236/styles.css" new file mode 100644 index 0000000..90947c9 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\347\274\226\350\276\221\345\220\216\351\241\265\351\235\242_-_\350\260\203\347\224\250\345\216\206\345\217\262\346\226\260\345\242\236/styles.css" @@ -0,0 +1,1038 @@ +body { + margin:0px; + background-image:none; + position:static; + left:auto; + width:378px; + margin-left:0; + margin-right:0; + text-align:left; +} +#base { + position:absolute; + z-index:0; +} +#u0 { + position:absolute; + left:0px; + top:116px; + width:8px; + height:36px; +} +#u0_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:36px; +} +#u1 { + position:absolute; + left:2px; + top:10px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u2 { + position:absolute; + left:0px; + top:192px; + width:8px; + height:27px; +} +#u2_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:27px; +} +#u3 { + position:absolute; + left:2px; + top:6px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u4 { + position:absolute; + left:0px; + top:255px; + width:8px; + height:27px; +} +#u4_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:27px; +} +#u5 { + position:absolute; + left:2px; + top:6px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u6 { + position:absolute; + left:259px; + top:0px; + width:60px; + height:10px; +} +#u6_img { + position:absolute; + left:0px; + top:0px; + width:60px; + height:10px; +} +#u7 { + position:absolute; + left:2px; + top:-3px; + width:56px; + visibility:hidden; + word-wrap:break-word; +} +#u8 { + position:absolute; + left:6px; + top:6px; + width:372px; + height:796px; +} +#u8_img { + position:absolute; + left:0px; + top:0px; + width:372px; + height:796px; +} +#u9 { + position:absolute; + left:2px; + top:390px; + width:368px; + visibility:hidden; + word-wrap:break-word; +} +#u10 { + position:absolute; + left:32px; + top:120px; + width:320px; + height:568px; +} +#u10_img { + position:absolute; + left:0px; + top:0px; + width:320px; + height:568px; +} +#u11 { + position:absolute; + left:2px; + top:276px; + width:316px; + visibility:hidden; + word-wrap:break-word; +} +#u12 { + position:absolute; + left:157px; + top:66px; + width:70px; + height:14px; +} +#u12_img { + position:absolute; + left:0px; + top:0px; + width:70px; + height:14px; +} +#u13 { + position:absolute; + left:2px; + top:-1px; + width:66px; + visibility:hidden; + word-wrap:break-word; +} +#u14 { + position:absolute; + left:185px; + top:40px; + width:14px; + height:14px; +} +#u14_img { + position:absolute; + left:0px; + top:0px; + width:14px; + height:14px; +} +#u15 { + position:absolute; + left:2px; + top:-1px; + width:10px; + visibility:hidden; + word-wrap:break-word; +} +#u16 { + position:absolute; + left:156px; + top:704px; + width:72px; + height:72px; +} +#u16_img { + position:absolute; + left:0px; + top:0px; + width:72px; + height:72px; +} +#u17 { + position:absolute; + left:2px; + top:28px; + width:68px; + visibility:hidden; + word-wrap:break-word; +} +#u18 { + position:absolute; + left:32px; + top:140px; + width:319px; + height:60px; +} +#u18_img { + position:absolute; + left:0px; + top:0px; + width:319px; + height:60px; +} +#u19 { + position:absolute; + left:2px; + top:22px; + width:315px; + visibility:hidden; + word-wrap:break-word; +} +#u20 { + position:absolute; + left:40px; + top:159px; + width:22px; + height:22px; +} +#u20_img { + position:absolute; + left:0px; + top:0px; + width:22px; + height:22px; +} +#u21 { + position:absolute; + left:2px; + top:3px; + width:18px; + visibility:hidden; + word-wrap:break-word; +} +#u22 { + position:absolute; + left:141px; + top:156px; + width:101px; + height:24px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + font-size:20px; +} +#u22_img { + position:absolute; + left:0px; + top:0px; + width:101px; + height:24px; +} +#u23 { + position:absolute; + left:0px; + top:0px; + width:101px; + white-space:nowrap; +} +#u24 { + position:absolute; + left:270px; + top:161px; + width:65px; + height:19px; + font-size:16px; + color:#CCCCCC; +} +#u24_img { + position:absolute; + left:0px; + top:0px; + width:65px; + height:19px; +} +#u25 { + position:absolute; + left:0px; + top:0px; + width:65px; + white-space:nowrap; +} +#u26 { + position:absolute; + left:62px; + top:610px; + width:267px; + height:40px; +} +#u26_input { + position:absolute; + left:0px; + top:0px; + width:267px; + height:40px; + background-image:url(../../resources/images/transparent.gif); + text-align:center; + font-family:'微软雅黑'; + font-size:20px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u27 { + position:absolute; + left:48px; + top:210px; + width:151px; + height:16px; +} +#u27_img { + position:absolute; + left:0px; + top:0px; + width:151px; + height:16px; +} +#u28 { + position:absolute; + left:0px; + top:0px; + width:151px; + white-space:nowrap; +} +#u29 { + position:absolute; + left:46px; + top:236px; + width:300px; + height:60px; +} +#u29_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u30 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u31 { + position:absolute; + left:54px; + top:236px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u31_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u32 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u33 { + position:absolute; + left:278px; + top:236px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u33_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u34 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u35 { + position:absolute; + left:54px; + top:277px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u35_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u36 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u37 { + position:absolute; + left:252px; + top:277px; + width:77px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u37_img { + position:absolute; + left:0px; + top:0px; + width:77px; + height:19px; +} +#u38 { + position:absolute; + left:0px; + top:0px; + width:77px; + white-space:nowrap; +} +#u39 { + position:absolute; + left:302px; + top:257px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u39_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u40 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u41 { + position:absolute; + left:46px; + top:296px; + width:300px; + height:60px; +} +#u41_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u42 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u43 { + position:absolute; + left:54px; + top:296px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u43_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u44 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u45 { + position:absolute; + left:278px; + top:296px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u45_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u46 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u47 { + position:absolute; + left:54px; + top:337px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u47_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u48 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u49 { + position:absolute; + left:252px; + top:337px; + width:77px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u49_img { + position:absolute; + left:0px; + top:0px; + width:77px; + height:19px; +} +#u50 { + position:absolute; + left:0px; + top:0px; + width:77px; + white-space:nowrap; +} +#u51 { + position:absolute; + left:302px; + top:317px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u51_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u52 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u53 { + position:absolute; + left:46px; + top:356px; + width:300px; + height:60px; +} +#u53_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u54 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u55 { + position:absolute; + left:54px; + top:356px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u55_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u56 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u57 { + position:absolute; + left:278px; + top:356px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u57_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u58 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u59 { + position:absolute; + left:54px; + top:397px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u59_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u60 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u61 { + position:absolute; + left:252px; + top:397px; + width:77px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u61_img { + position:absolute; + left:0px; + top:0px; + width:77px; + height:19px; +} +#u62 { + position:absolute; + left:0px; + top:0px; + width:77px; + white-space:nowrap; +} +#u63 { + position:absolute; + left:302px; + top:377px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u63_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u64 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u65 { + position:absolute; + left:46px; + top:416px; + width:300px; + height:60px; +} +#u65_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u66 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u67 { + position:absolute; + left:54px; + top:416px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u67_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u68 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u69 { + position:absolute; + left:54px; + top:457px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u69_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u70 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u71 { + position:absolute; + left:252px; + top:457px; + width:77px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u71_img { + position:absolute; + left:0px; + top:0px; + width:77px; + height:19px; +} +#u72 { + position:absolute; + left:0px; + top:0px; + width:77px; + white-space:nowrap; +} +#u73 { + position:absolute; + left:302px; + top:437px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u73_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u74 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u75 { + position:absolute; + left:278px; + top:418px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u75_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u76 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u77 { + position:absolute; + left:46px; + top:550px; + width:100px; + height:25px; +} +#u77_input { + position:absolute; + left:0px; + top:0px; + width:100px; + height:25px; + background-image:url(../../resources/images/transparent.gif); + text-align:center; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u78 { + position:absolute; + left:46px; + top:476px; + width:300px; + height:60px; +} +#u78_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u79 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u80 { + position:absolute; + left:50px; + top:476px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u80_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u81 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u82 { + position:absolute; + left:50px; + top:517px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u82_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u83 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u84 { + position:absolute; + left:248px; + top:517px; + width:77px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u84_img { + position:absolute; + left:0px; + top:0px; + width:77px; + height:19px; +} +#u85 { + position:absolute; + left:0px; + top:0px; + width:77px; + white-space:nowrap; +} +#u86 { + position:absolute; + left:298px; + top:497px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u86_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u87 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u88 { + position:absolute; + left:274px; + top:478px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u88_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u89 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\350\256\242\345\215\225\350\257\246\346\203\205_-_\344\272\272/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\350\256\242\345\215\225\350\257\246\346\203\205_-_\344\272\272/data.js" new file mode 100644 index 0000000..35a172e --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\350\256\242\345\215\225\350\257\246\346\203\205_-_\344\272\272/data.js" @@ -0,0 +1,1983 @@ +$axure.loadCurrentPage({ + "url":"订单详情_-_人.html", + "generationDate":new Date(1416993075281.25), + "isCanvasEnabled":false, + "variables":["OnLoadVariable"], + "page":{ + "packageId":"75814aa505b74f018018496ff10e7584", + "type":"Axure:Page", + "name":"订单详情 - 人", + "notes":{ +}, + "style":{ + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "pageAlignment":"near", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "image":null, + "imageHorizontalAlignment":"near", + "imageVerticalAlignment":"near", + "imageRepeat":"auto", + "favicon":null, + "sketchFactor":"0", + "colorStyle":"appliedColor", + "fontName":"应用字体", + "borderWidth":"0"}, + "adaptiveStyles":{ +}, + "interactionMap":{ +}, + "diagram":{ + "objects":[{ + "id":"d842fde39faa4366bd0f963e96502100", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":116}, + "size":{ + "width":8, + "height":36}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"4a5b0dbbf4e44628a9ffec3cd215fae2", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":116}, + "size":{ + "width":8, + "height":36}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u0.png"}}, +{ + "id":"9daf6d55b04745daba90de59aef621a5", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":192}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"e8843f8187224e23aac571bf5e4f7897", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":192}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u2.png"}}, +{ + "id":"a3545e2f44144c9f8b3cde562836941c", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":255}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d64d7c88b4e24ca5a57dcf1abc1fda59", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":255}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u2.png"}}, +{ + "id":"8f8e7c2d8b0a443a9f3aa541fe7a76a9", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":259, + "y":0}, + "size":{ + "width":60, + "height":10}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c80d718410384856a00c4bd88d4f4b68", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":259, + "y":0}, + "size":{ + "width":60, + "height":10}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u6.png"}}, +{ + "id":"6dbcbb1662cb4eb28d603bc1218ed75a", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":6, + "y":6}, + "size":{ + "width":372, + "height":796}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"52"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"15e156295048459fa4e7f963c1b54d8c", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":6, + "y":6}, + "size":{ + "width":372, + "height":796}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"52"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u8.png"}}, +{ + "id":"2b07e94b5d574f7b949e4e5fcd08df32", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":32, + "y":120}, + "size":{ + "width":320, + "height":568}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"f8d3f26df245494686f2edeecfe28b31", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":32, + "y":120}, + "size":{ + "width":320, + "height":568}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u10.png"}}, +{ + "id":"4bf140d8f98b4cc28b3aa0ccc5cf01bd", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":157, + "y":66}, + "size":{ + "width":70, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"9d12353b86b944a3bd973e118641913c", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":157, + "y":66}, + "size":{ + "width":70, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u12.png"}}, +{ + "id":"8915a54ec148489f97dcfc5c4ee8e4fc", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":185, + "y":40}, + "size":{ + "width":14, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a73ea6cdc41e481490d517032b444545", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":185, + "y":40}, + "size":{ + "width":14, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u14.png"}}, +{ + "id":"cc7f1dec43c047b2a47377ff726c7432", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":156, + "y":704}, + "size":{ + "width":72, + "height":72}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"2dd00fed1c3643ea9be44ffcf44dbd9a", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":156, + "y":704}, + "size":{ + "width":72, + "height":72}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u16.png"}}, +{ + "id":"11b590146718491f8852fb97f097518c", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":32, + "y":140}, + "size":{ + "width":319, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"9a386857498a4a53ac7d38d3b67ffb88", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":32, + "y":140}, + "size":{ + "width":319, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_首次进入/u18.png"}}, +{ + "id":"a82550aeb01042048b903a1a8fb73107", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "location":{ + "x":40, + "y":159}, + "size":{ + "width":22, + "height":22}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a3f035f14f3b4834ac8a93917e3db1b7", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":40, + "y":159}, + "size":{ + "width":22, + "height":22}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 返回", + "target":{ + "targetType":"backUrl", + "includeVariables":false}, + "linkType":"current"}]}]}}, + "tabbable":true, + "images":{ + "normal~":"images/我要发工资_-_引导页_-_首次进入/u20.png"}}, +{ + "id":"834a67a56dd04290bc09587d231fdce2", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontSize":"20px", + "fontWeight":"700", + "location":{ + "x":151, + "y":158}, + "size":{ + "width":61, + "height":24}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"23c62c1306b24ce8b1ff5fe57db698b0", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontSize":"20px", + "fontWeight":"700", + "location":{ + "x":151, + "y":158}, + "size":{ + "width":61, + "height":24}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"14f853cadd1c42fa87260e2661133b48", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":58, + "y":205}, + "size":{ + "width":225, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"3a8196f1d5f14867874cfab2ce260adf", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":58, + "y":205}, + "size":{ + "width":225, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"d013bcb9990b46b7bf234e47c5335d21", + "label":"", + "type":"horizontalLine", + "styleType":"horizontalLine", + "visible":true, + "style":{ + "location":{ + "x":32, + "y":262}, + "size":{ + "width":319, + "height":10}, + "borderFill":{ + "fillType":"solid", + "color":0xFFCCCCCC}}, + "adaptiveStyles":{ +}, + "images":{ + "start~":"resources/images/transparent.gif", + "end~":"resources/images/transparent.gif", + "line~":"images/我用发工资_-_手动登记/u27_line.png"}}, +{ + "id":"88ef3d2b65d14e5c916d4324ba34d734", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":42, + "y":271}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"9711ec13f43941589884ce554f0ff155", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":42, + "y":271}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"ea8cd5c044cf4bfaa55271b585a397e4", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":52, + "y":278}, + "size":{ + "width":67, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"45433f8f3f3442948b2dc69262852e7a", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":52, + "y":278}, + "size":{ + "width":67, + "height":30}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"169bad178a0f404cb83539a64943034c", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":52, + "y":308}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"48015d509b6a4de2a6171263b7a183b6", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":52, + "y":308}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"5218fd52bad94db8a66d14076f833b67", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":202, + "y":278}, + "size":{ + "width":130, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"3da7356fdab64afb912697f4d3e03ee2", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":202, + "y":278}, + "size":{ + "width":130, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"d52bb018da1d44bda6aa0619c08d0e01", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":202, + "y":309}, + "size":{ + "width":123, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"8fb283343b8a4c5c850f8f8e009b285c", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":202, + "y":309}, + "size":{ + "width":123, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"a8d2ad5bf74e4b6a9f0150bad9392e4f", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":42, + "y":341}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a23baaba2eaa4a87a8d021da20a20310", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":42, + "y":341}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"95cede6e9f2c42028052842c4c7c4b0f", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":52, + "y":348}, + "size":{ + "width":67, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c7300e576d3e489fa08bd5fa8b18ea14", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":52, + "y":348}, + "size":{ + "width":67, + "height":30}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"c668d1eb136b49a78936cac703ecda15", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":52, + "y":378}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"36013dfc697c45beb8b3cf97b2b27e99", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":52, + "y":378}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"786c23f08ff24b40a164a6663ec2ea30", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":202, + "y":348}, + "size":{ + "width":130, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"4cd4242490904a08af0dd256e93f7133", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":202, + "y":348}, + "size":{ + "width":130, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"b150f31f0fac4a5cba528dcb3ad6550b", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":202, + "y":379}, + "size":{ + "width":123, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"9a9bcd25d4c24fd8879b2ab1458a43ef", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":202, + "y":379}, + "size":{ + "width":123, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"6ef197d7458c49209ef6393d8d6b7c84", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":42, + "y":411}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"873dfc9054074dceba3f23e130e2ae86", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":42, + "y":411}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"858c83731b1646d4bfe96a337ac2438b", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":52, + "y":418}, + "size":{ + "width":67, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"eb4bcd3d90f24c3bbd4988c8dce46fa5", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":52, + "y":418}, + "size":{ + "width":67, + "height":30}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"b659eeeb589249389bb8dc113047b53e", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":52, + "y":448}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a46d2c7799964c64a0604ec62f6f751b", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":52, + "y":448}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"fafaac0b1ea943f0ba638ee025965e62", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":202, + "y":418}, + "size":{ + "width":130, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"6c3ae54d3b394fbf9839e483ef7f317e", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":202, + "y":418}, + "size":{ + "width":130, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"044f41ea9e8c48f683fb886f4078c7aa", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":202, + "y":449}, + "size":{ + "width":123, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"9e559bbd904145079cea6d8ebcdb7661", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":202, + "y":449}, + "size":{ + "width":123, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"95b9a5ef2e8c4afabac2bd15b44b5883", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":42, + "y":481}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"9405b83fcf7b482b99d96989c3a9763a", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":42, + "y":481}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"18d7dd2da24d49c3966e2afe886d301a", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":52, + "y":488}, + "size":{ + "width":67, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"6dd7c7501f414a18ae01e87410caa40e", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":52, + "y":488}, + "size":{ + "width":67, + "height":30}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"e756c8934e874947ac65e7b7ad0c127f", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":52, + "y":518}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"2a20ff6f874943dbb4ab2449aeeeb8fa", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":52, + "y":518}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"1bfe1f3cb4cb4d5c833720f717e5230b", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":202, + "y":488}, + "size":{ + "width":130, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"f222611b4e264527b068f1212cd2155b", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":202, + "y":488}, + "size":{ + "width":130, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"d57b2c37e1614999abf923ce1dd162ae", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":202, + "y":519}, + "size":{ + "width":123, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c8b09b1e312c41cdae6c5ddf3ed6d132", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":202, + "y":519}, + "size":{ + "width":123, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"ed5d099c69684051b8c62a8b7c18d2d6", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":42, + "y":551}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"8a7eaceb36104323b2ae532f070be8ae", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":42, + "y":551}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"876fa2017a3a4cbf99b34075f5cea971", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":52, + "y":558}, + "size":{ + "width":67, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"186c210d1011445e9fc1b4a77d88aadf", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":52, + "y":558}, + "size":{ + "width":67, + "height":30}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"1ed6d36ef7214702a0a8d4622075f470", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":52, + "y":588}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"9c2c5f7d172c4b23a4d818e5eaebbec4", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":52, + "y":588}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"75abab6847e449c38e17f7b9a5f9514e", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":202, + "y":558}, + "size":{ + "width":130, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"1e66c3b0c743423d954b92bde892eb35", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":202, + "y":558}, + "size":{ + "width":130, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"ea6c1efd98ad4bc58c2496e95a26123a", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":202, + "y":589}, + "size":{ + "width":123, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"7f44b2609a7f4d88be2a3250551e4176", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":202, + "y":589}, + "size":{ + "width":123, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"34116cdba9c74cf3b9a4128ef868625e", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":42, + "y":621}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"b5cbf72dea0a485e9134141f0d5a0a78", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":42, + "y":621}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"3dc5232af9e04a5ea15daa11e68613a1", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":52, + "y":628}, + "size":{ + "width":67, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"675f9f5758e64fa380cf5930b862ad91", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"22px", + "fontWeight":"700", + "location":{ + "x":52, + "y":628}, + "size":{ + "width":67, + "height":30}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"b971c71e6f804f8380781bb14b00e232", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":52, + "y":658}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"7f1df363da1d42e4881f4d8ed8c5cf19", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":52, + "y":658}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"c4b9a90f55254e98abba8c45ee14a67f", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":202, + "y":628}, + "size":{ + "width":130, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"052cb828a7144099997141ff9974c595", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":202, + "y":628}, + "size":{ + "width":130, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"6ccae8dbcd9f4b9695d52de97ec6d127", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":202, + "y":659}, + "size":{ + "width":123, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ff2ab755f3b84f5c95579f4d5054dd4e", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontWeight":"700", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF009900, + "opacity":1}, + "location":{ + "x":202, + "y":659}, + "size":{ + "width":123, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}]}}, + "masters":{ +}, + "objectPaths":{ + "d842fde39faa4366bd0f963e96502100":{ + "scriptId":"u0"}, + "4a5b0dbbf4e44628a9ffec3cd215fae2":{ + "scriptId":"u1"}, + "9daf6d55b04745daba90de59aef621a5":{ + "scriptId":"u2"}, + "e8843f8187224e23aac571bf5e4f7897":{ + "scriptId":"u3"}, + "a3545e2f44144c9f8b3cde562836941c":{ + "scriptId":"u4"}, + "d64d7c88b4e24ca5a57dcf1abc1fda59":{ + "scriptId":"u5"}, + "8f8e7c2d8b0a443a9f3aa541fe7a76a9":{ + "scriptId":"u6"}, + "c80d718410384856a00c4bd88d4f4b68":{ + "scriptId":"u7"}, + "6dbcbb1662cb4eb28d603bc1218ed75a":{ + "scriptId":"u8"}, + "15e156295048459fa4e7f963c1b54d8c":{ + "scriptId":"u9"}, + "2b07e94b5d574f7b949e4e5fcd08df32":{ + "scriptId":"u10"}, + "f8d3f26df245494686f2edeecfe28b31":{ + "scriptId":"u11"}, + "4bf140d8f98b4cc28b3aa0ccc5cf01bd":{ + "scriptId":"u12"}, + "9d12353b86b944a3bd973e118641913c":{ + "scriptId":"u13"}, + "8915a54ec148489f97dcfc5c4ee8e4fc":{ + "scriptId":"u14"}, + "a73ea6cdc41e481490d517032b444545":{ + "scriptId":"u15"}, + "cc7f1dec43c047b2a47377ff726c7432":{ + "scriptId":"u16"}, + "2dd00fed1c3643ea9be44ffcf44dbd9a":{ + "scriptId":"u17"}, + "11b590146718491f8852fb97f097518c":{ + "scriptId":"u18"}, + "9a386857498a4a53ac7d38d3b67ffb88":{ + "scriptId":"u19"}, + "a82550aeb01042048b903a1a8fb73107":{ + "scriptId":"u20"}, + "a3f035f14f3b4834ac8a93917e3db1b7":{ + "scriptId":"u21"}, + "834a67a56dd04290bc09587d231fdce2":{ + "scriptId":"u22"}, + "23c62c1306b24ce8b1ff5fe57db698b0":{ + "scriptId":"u23"}, + "14f853cadd1c42fa87260e2661133b48":{ + "scriptId":"u24"}, + "3a8196f1d5f14867874cfab2ce260adf":{ + "scriptId":"u25"}, + "d013bcb9990b46b7bf234e47c5335d21":{ + "scriptId":"u26"}, + "88ef3d2b65d14e5c916d4324ba34d734":{ + "scriptId":"u27"}, + "9711ec13f43941589884ce554f0ff155":{ + "scriptId":"u28"}, + "ea8cd5c044cf4bfaa55271b585a397e4":{ + "scriptId":"u29"}, + "45433f8f3f3442948b2dc69262852e7a":{ + "scriptId":"u30"}, + "169bad178a0f404cb83539a64943034c":{ + "scriptId":"u31"}, + "48015d509b6a4de2a6171263b7a183b6":{ + "scriptId":"u32"}, + "5218fd52bad94db8a66d14076f833b67":{ + "scriptId":"u33"}, + "3da7356fdab64afb912697f4d3e03ee2":{ + "scriptId":"u34"}, + "d52bb018da1d44bda6aa0619c08d0e01":{ + "scriptId":"u35"}, + "8fb283343b8a4c5c850f8f8e009b285c":{ + "scriptId":"u36"}, + "a8d2ad5bf74e4b6a9f0150bad9392e4f":{ + "scriptId":"u37"}, + "a23baaba2eaa4a87a8d021da20a20310":{ + "scriptId":"u38"}, + "95cede6e9f2c42028052842c4c7c4b0f":{ + "scriptId":"u39"}, + "c7300e576d3e489fa08bd5fa8b18ea14":{ + "scriptId":"u40"}, + "c668d1eb136b49a78936cac703ecda15":{ + "scriptId":"u41"}, + "36013dfc697c45beb8b3cf97b2b27e99":{ + "scriptId":"u42"}, + "786c23f08ff24b40a164a6663ec2ea30":{ + "scriptId":"u43"}, + "4cd4242490904a08af0dd256e93f7133":{ + "scriptId":"u44"}, + "b150f31f0fac4a5cba528dcb3ad6550b":{ + "scriptId":"u45"}, + "9a9bcd25d4c24fd8879b2ab1458a43ef":{ + "scriptId":"u46"}, + "6ef197d7458c49209ef6393d8d6b7c84":{ + "scriptId":"u47"}, + "873dfc9054074dceba3f23e130e2ae86":{ + "scriptId":"u48"}, + "858c83731b1646d4bfe96a337ac2438b":{ + "scriptId":"u49"}, + "eb4bcd3d90f24c3bbd4988c8dce46fa5":{ + "scriptId":"u50"}, + "b659eeeb589249389bb8dc113047b53e":{ + "scriptId":"u51"}, + "a46d2c7799964c64a0604ec62f6f751b":{ + "scriptId":"u52"}, + "fafaac0b1ea943f0ba638ee025965e62":{ + "scriptId":"u53"}, + "6c3ae54d3b394fbf9839e483ef7f317e":{ + "scriptId":"u54"}, + "044f41ea9e8c48f683fb886f4078c7aa":{ + "scriptId":"u55"}, + "9e559bbd904145079cea6d8ebcdb7661":{ + "scriptId":"u56"}, + "95b9a5ef2e8c4afabac2bd15b44b5883":{ + "scriptId":"u57"}, + "9405b83fcf7b482b99d96989c3a9763a":{ + "scriptId":"u58"}, + "18d7dd2da24d49c3966e2afe886d301a":{ + "scriptId":"u59"}, + "6dd7c7501f414a18ae01e87410caa40e":{ + "scriptId":"u60"}, + "e756c8934e874947ac65e7b7ad0c127f":{ + "scriptId":"u61"}, + "2a20ff6f874943dbb4ab2449aeeeb8fa":{ + "scriptId":"u62"}, + "1bfe1f3cb4cb4d5c833720f717e5230b":{ + "scriptId":"u63"}, + "f222611b4e264527b068f1212cd2155b":{ + "scriptId":"u64"}, + "d57b2c37e1614999abf923ce1dd162ae":{ + "scriptId":"u65"}, + "c8b09b1e312c41cdae6c5ddf3ed6d132":{ + "scriptId":"u66"}, + "ed5d099c69684051b8c62a8b7c18d2d6":{ + "scriptId":"u67"}, + "8a7eaceb36104323b2ae532f070be8ae":{ + "scriptId":"u68"}, + "876fa2017a3a4cbf99b34075f5cea971":{ + "scriptId":"u69"}, + "186c210d1011445e9fc1b4a77d88aadf":{ + "scriptId":"u70"}, + "1ed6d36ef7214702a0a8d4622075f470":{ + "scriptId":"u71"}, + "9c2c5f7d172c4b23a4d818e5eaebbec4":{ + "scriptId":"u72"}, + "75abab6847e449c38e17f7b9a5f9514e":{ + "scriptId":"u73"}, + "1e66c3b0c743423d954b92bde892eb35":{ + "scriptId":"u74"}, + "ea6c1efd98ad4bc58c2496e95a26123a":{ + "scriptId":"u75"}, + "7f44b2609a7f4d88be2a3250551e4176":{ + "scriptId":"u76"}, + "34116cdba9c74cf3b9a4128ef868625e":{ + "scriptId":"u77"}, + "b5cbf72dea0a485e9134141f0d5a0a78":{ + "scriptId":"u78"}, + "3dc5232af9e04a5ea15daa11e68613a1":{ + "scriptId":"u79"}, + "675f9f5758e64fa380cf5930b862ad91":{ + "scriptId":"u80"}, + "b971c71e6f804f8380781bb14b00e232":{ + "scriptId":"u81"}, + "7f1df363da1d42e4881f4d8ed8c5cf19":{ + "scriptId":"u82"}, + "c4b9a90f55254e98abba8c45ee14a67f":{ + "scriptId":"u83"}, + "052cb828a7144099997141ff9974c595":{ + "scriptId":"u84"}, + "6ccae8dbcd9f4b9695d52de97ec6d127":{ + "scriptId":"u85"}, + "ff2ab755f3b84f5c95579f4d5054dd4e":{ + "scriptId":"u86"}}}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\350\256\242\345\215\225\350\257\246\346\203\205_-_\344\272\272/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\350\256\242\345\215\225\350\257\246\346\203\205_-_\344\272\272/styles.css" new file mode 100644 index 0000000..448d0c4 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\350\256\242\345\215\225\350\257\246\346\203\205_-_\344\272\272/styles.css" @@ -0,0 +1,1026 @@ +body { + margin:0px; + background-image:none; + position:static; + left:auto; + width:378px; + margin-left:0; + margin-right:0; + text-align:left; +} +#base { + position:absolute; + z-index:0; +} +#u0 { + position:absolute; + left:0px; + top:116px; + width:8px; + height:36px; +} +#u0_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:36px; +} +#u1 { + position:absolute; + left:2px; + top:10px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u2 { + position:absolute; + left:0px; + top:192px; + width:8px; + height:27px; +} +#u2_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:27px; +} +#u3 { + position:absolute; + left:2px; + top:6px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u4 { + position:absolute; + left:0px; + top:255px; + width:8px; + height:27px; +} +#u4_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:27px; +} +#u5 { + position:absolute; + left:2px; + top:6px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u6 { + position:absolute; + left:259px; + top:0px; + width:60px; + height:10px; +} +#u6_img { + position:absolute; + left:0px; + top:0px; + width:60px; + height:10px; +} +#u7 { + position:absolute; + left:2px; + top:-3px; + width:56px; + visibility:hidden; + word-wrap:break-word; +} +#u8 { + position:absolute; + left:6px; + top:6px; + width:372px; + height:796px; +} +#u8_img { + position:absolute; + left:0px; + top:0px; + width:372px; + height:796px; +} +#u9 { + position:absolute; + left:2px; + top:390px; + width:368px; + visibility:hidden; + word-wrap:break-word; +} +#u10 { + position:absolute; + left:32px; + top:120px; + width:320px; + height:568px; +} +#u10_img { + position:absolute; + left:0px; + top:0px; + width:320px; + height:568px; +} +#u11 { + position:absolute; + left:2px; + top:276px; + width:316px; + visibility:hidden; + word-wrap:break-word; +} +#u12 { + position:absolute; + left:157px; + top:66px; + width:70px; + height:14px; +} +#u12_img { + position:absolute; + left:0px; + top:0px; + width:70px; + height:14px; +} +#u13 { + position:absolute; + left:2px; + top:-1px; + width:66px; + visibility:hidden; + word-wrap:break-word; +} +#u14 { + position:absolute; + left:185px; + top:40px; + width:14px; + height:14px; +} +#u14_img { + position:absolute; + left:0px; + top:0px; + width:14px; + height:14px; +} +#u15 { + position:absolute; + left:2px; + top:-1px; + width:10px; + visibility:hidden; + word-wrap:break-word; +} +#u16 { + position:absolute; + left:156px; + top:704px; + width:72px; + height:72px; +} +#u16_img { + position:absolute; + left:0px; + top:0px; + width:72px; + height:72px; +} +#u17 { + position:absolute; + left:2px; + top:28px; + width:68px; + visibility:hidden; + word-wrap:break-word; +} +#u18 { + position:absolute; + left:32px; + top:140px; + width:319px; + height:60px; +} +#u18_img { + position:absolute; + left:0px; + top:0px; + width:319px; + height:60px; +} +#u19 { + position:absolute; + left:2px; + top:22px; + width:315px; + visibility:hidden; + word-wrap:break-word; +} +#u20 { + position:absolute; + left:40px; + top:159px; + width:22px; + height:22px; +} +#u20_img { + position:absolute; + left:0px; + top:0px; + width:22px; + height:22px; +} +#u21 { + position:absolute; + left:2px; + top:3px; + width:18px; + visibility:hidden; + word-wrap:break-word; +} +#u22 { + position:absolute; + left:151px; + top:158px; + width:61px; + height:24px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + font-size:20px; +} +#u22_img { + position:absolute; + left:0px; + top:0px; + width:61px; + height:24px; +} +#u23 { + position:absolute; + left:0px; + top:0px; + width:61px; + white-space:nowrap; +} +#u24 { + position:absolute; + left:58px; + top:205px; + width:225px; + height:60px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u24_img { + position:absolute; + left:0px; + top:0px; + width:225px; + height:60px; +} +#u25 { + position:absolute; + left:0px; + top:0px; + width:225px; + white-space:nowrap; +} +#u26 { + position:absolute; + left:32px; + top:262px; + width:319px; + height:10px; +} +#u26_start { + position:absolute; + left:0px; + top:-5px; + width:18px; + height:20px; +} +#u26_end { + position:absolute; + left:302px; + top:-5px; + width:18px; + height:20px; +} +#u26_line { + position:absolute; + left:0px; + top:5px; + width:319px; + height:1px; +} +#u27 { + position:absolute; + left:42px; + top:271px; + width:300px; + height:60px; +} +#u27_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u28 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u29 { + position:absolute; + left:52px; + top:278px; + width:67px; + height:30px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; + font-size:22px; +} +#u29_img { + position:absolute; + left:0px; + top:0px; + width:67px; + height:30px; +} +#u30 { + position:absolute; + left:0px; + top:0px; + width:67px; + white-space:nowrap; +} +#u31 { + position:absolute; + left:52px; + top:308px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u31_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u32 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u33 { + position:absolute; + left:202px; + top:278px; + width:130px; + height:16px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + color:#009900; +} +#u33_img { + position:absolute; + left:0px; + top:0px; + width:130px; + height:16px; +} +#u34 { + position:absolute; + left:0px; + top:0px; + width:130px; + white-space:nowrap; +} +#u35 { + position:absolute; + left:202px; + top:309px; + width:123px; + height:16px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + color:#009900; +} +#u35_img { + position:absolute; + left:0px; + top:0px; + width:123px; + height:16px; +} +#u36 { + position:absolute; + left:0px; + top:0px; + width:123px; + white-space:nowrap; +} +#u37 { + position:absolute; + left:42px; + top:341px; + width:300px; + height:60px; +} +#u37_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u38 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u39 { + position:absolute; + left:52px; + top:348px; + width:67px; + height:30px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; + font-size:22px; +} +#u39_img { + position:absolute; + left:0px; + top:0px; + width:67px; + height:30px; +} +#u40 { + position:absolute; + left:0px; + top:0px; + width:67px; + white-space:nowrap; +} +#u41 { + position:absolute; + left:52px; + top:378px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u41_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u42 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u43 { + position:absolute; + left:202px; + top:348px; + width:130px; + height:16px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + color:#009900; +} +#u43_img { + position:absolute; + left:0px; + top:0px; + width:130px; + height:16px; +} +#u44 { + position:absolute; + left:0px; + top:0px; + width:130px; + white-space:nowrap; +} +#u45 { + position:absolute; + left:202px; + top:379px; + width:123px; + height:16px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + color:#009900; +} +#u45_img { + position:absolute; + left:0px; + top:0px; + width:123px; + height:16px; +} +#u46 { + position:absolute; + left:0px; + top:0px; + width:123px; + white-space:nowrap; +} +#u47 { + position:absolute; + left:42px; + top:411px; + width:300px; + height:60px; +} +#u47_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u48 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u49 { + position:absolute; + left:52px; + top:418px; + width:67px; + height:30px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; + font-size:22px; +} +#u49_img { + position:absolute; + left:0px; + top:0px; + width:67px; + height:30px; +} +#u50 { + position:absolute; + left:0px; + top:0px; + width:67px; + white-space:nowrap; +} +#u51 { + position:absolute; + left:52px; + top:448px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u51_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u52 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u53 { + position:absolute; + left:202px; + top:418px; + width:130px; + height:16px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + color:#009900; +} +#u53_img { + position:absolute; + left:0px; + top:0px; + width:130px; + height:16px; +} +#u54 { + position:absolute; + left:0px; + top:0px; + width:130px; + white-space:nowrap; +} +#u55 { + position:absolute; + left:202px; + top:449px; + width:123px; + height:16px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + color:#009900; +} +#u55_img { + position:absolute; + left:0px; + top:0px; + width:123px; + height:16px; +} +#u56 { + position:absolute; + left:0px; + top:0px; + width:123px; + white-space:nowrap; +} +#u57 { + position:absolute; + left:42px; + top:481px; + width:300px; + height:60px; +} +#u57_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u58 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u59 { + position:absolute; + left:52px; + top:488px; + width:67px; + height:30px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; + font-size:22px; +} +#u59_img { + position:absolute; + left:0px; + top:0px; + width:67px; + height:30px; +} +#u60 { + position:absolute; + left:0px; + top:0px; + width:67px; + white-space:nowrap; +} +#u61 { + position:absolute; + left:52px; + top:518px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u61_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u62 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u63 { + position:absolute; + left:202px; + top:488px; + width:130px; + height:16px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + color:#009900; +} +#u63_img { + position:absolute; + left:0px; + top:0px; + width:130px; + height:16px; +} +#u64 { + position:absolute; + left:0px; + top:0px; + width:130px; + white-space:nowrap; +} +#u65 { + position:absolute; + left:202px; + top:519px; + width:123px; + height:16px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + color:#009900; +} +#u65_img { + position:absolute; + left:0px; + top:0px; + width:123px; + height:16px; +} +#u66 { + position:absolute; + left:0px; + top:0px; + width:123px; + white-space:nowrap; +} +#u67 { + position:absolute; + left:42px; + top:551px; + width:300px; + height:60px; +} +#u67_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u68 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u69 { + position:absolute; + left:52px; + top:558px; + width:67px; + height:30px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; + font-size:22px; +} +#u69_img { + position:absolute; + left:0px; + top:0px; + width:67px; + height:30px; +} +#u70 { + position:absolute; + left:0px; + top:0px; + width:67px; + white-space:nowrap; +} +#u71 { + position:absolute; + left:52px; + top:588px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u71_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u72 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u73 { + position:absolute; + left:202px; + top:558px; + width:130px; + height:16px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + color:#009900; +} +#u73_img { + position:absolute; + left:0px; + top:0px; + width:130px; + height:16px; +} +#u74 { + position:absolute; + left:0px; + top:0px; + width:130px; + white-space:nowrap; +} +#u75 { + position:absolute; + left:202px; + top:589px; + width:123px; + height:16px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + color:#009900; +} +#u75_img { + position:absolute; + left:0px; + top:0px; + width:123px; + height:16px; +} +#u76 { + position:absolute; + left:0px; + top:0px; + width:123px; + white-space:nowrap; +} +#u77 { + position:absolute; + left:42px; + top:621px; + width:300px; + height:60px; +} +#u77_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u78 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u79 { + position:absolute; + left:52px; + top:628px; + width:67px; + height:30px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; + font-size:22px; +} +#u79_img { + position:absolute; + left:0px; + top:0px; + width:67px; + height:30px; +} +#u80 { + position:absolute; + left:0px; + top:0px; + width:67px; + white-space:nowrap; +} +#u81 { + position:absolute; + left:52px; + top:658px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u81_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u82 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u83 { + position:absolute; + left:202px; + top:628px; + width:130px; + height:16px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + color:#009900; +} +#u83_img { + position:absolute; + left:0px; + top:0px; + width:130px; + height:16px; +} +#u84 { + position:absolute; + left:0px; + top:0px; + width:130px; + white-space:nowrap; +} +#u85 { + position:absolute; + left:202px; + top:659px; + width:123px; + height:16px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + color:#009900; +} +#u85_img { + position:absolute; + left:0px; + top:0px; + width:123px; + height:16px; +} +#u86 { + position:absolute; + left:0px; + top:0px; + width:123px; + white-space:nowrap; +} diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\350\256\242\345\215\225\350\257\246\346\203\205_-_\345\267\262\345\217\221\346\224\276/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\350\256\242\345\215\225\350\257\246\346\203\205_-_\345\267\262\345\217\221\346\224\276/data.js" new file mode 100644 index 0000000..d9e3476 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\350\256\242\345\215\225\350\257\246\346\203\205_-_\345\267\262\345\217\221\346\224\276/data.js" @@ -0,0 +1,1572 @@ +$axure.loadCurrentPage({ + "url":"订单详情_-_已发放.html", + "generationDate":new Date(1416993075078.13), + "isCanvasEnabled":false, + "variables":["OnLoadVariable"], + "page":{ + "packageId":"1bf1cb91d6294d968796e4b97793daef", + "type":"Axure:Page", + "name":"订单详情 - 已发放", + "notes":{ +}, + "style":{ + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "pageAlignment":"near", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "image":null, + "imageHorizontalAlignment":"near", + "imageVerticalAlignment":"near", + "imageRepeat":"auto", + "favicon":null, + "sketchFactor":"0", + "colorStyle":"appliedColor", + "fontName":"应用字体", + "borderWidth":"0"}, + "adaptiveStyles":{ +}, + "interactionMap":{ +}, + "diagram":{ + "objects":[{ + "id":"d842fde39faa4366bd0f963e96502100", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":116}, + "size":{ + "width":8, + "height":36}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"4a5b0dbbf4e44628a9ffec3cd215fae2", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":116}, + "size":{ + "width":8, + "height":36}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u0.png"}}, +{ + "id":"9daf6d55b04745daba90de59aef621a5", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":192}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"e8843f8187224e23aac571bf5e4f7897", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":192}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u2.png"}}, +{ + "id":"a3545e2f44144c9f8b3cde562836941c", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":255}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d64d7c88b4e24ca5a57dcf1abc1fda59", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":255}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u2.png"}}, +{ + "id":"8f8e7c2d8b0a443a9f3aa541fe7a76a9", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":259, + "y":0}, + "size":{ + "width":60, + "height":10}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c80d718410384856a00c4bd88d4f4b68", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":259, + "y":0}, + "size":{ + "width":60, + "height":10}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u6.png"}}, +{ + "id":"6dbcbb1662cb4eb28d603bc1218ed75a", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":6, + "y":6}, + "size":{ + "width":372, + "height":796}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"52"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"15e156295048459fa4e7f963c1b54d8c", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":6, + "y":6}, + "size":{ + "width":372, + "height":796}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"52"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u8.png"}}, +{ + "id":"2b07e94b5d574f7b949e4e5fcd08df32", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":32, + "y":120}, + "size":{ + "width":320, + "height":568}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"f8d3f26df245494686f2edeecfe28b31", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":32, + "y":120}, + "size":{ + "width":320, + "height":568}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u10.png"}}, +{ + "id":"4bf140d8f98b4cc28b3aa0ccc5cf01bd", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":157, + "y":66}, + "size":{ + "width":70, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"9d12353b86b944a3bd973e118641913c", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":157, + "y":66}, + "size":{ + "width":70, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u12.png"}}, +{ + "id":"8915a54ec148489f97dcfc5c4ee8e4fc", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":185, + "y":40}, + "size":{ + "width":14, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a73ea6cdc41e481490d517032b444545", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":185, + "y":40}, + "size":{ + "width":14, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u14.png"}}, +{ + "id":"cc7f1dec43c047b2a47377ff726c7432", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":156, + "y":704}, + "size":{ + "width":72, + "height":72}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"2dd00fed1c3643ea9be44ffcf44dbd9a", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":156, + "y":704}, + "size":{ + "width":72, + "height":72}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u16.png"}}, +{ + "id":"11b590146718491f8852fb97f097518c", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":32, + "y":140}, + "size":{ + "width":319, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"9a386857498a4a53ac7d38d3b67ffb88", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":32, + "y":140}, + "size":{ + "width":319, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_首次进入/u18.png"}}, +{ + "id":"a82550aeb01042048b903a1a8fb73107", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "location":{ + "x":40, + "y":159}, + "size":{ + "width":22, + "height":22}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a3f035f14f3b4834ac8a93917e3db1b7", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":40, + "y":159}, + "size":{ + "width":22, + "height":22}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 发放历史", + "target":{ + "targetType":"page", + "url":"发放历史.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true, + "images":{ + "normal~":"images/我要发工资_-_引导页_-_首次进入/u20.png"}}, +{ + "id":"834a67a56dd04290bc09587d231fdce2", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontSize":"20px", + "fontWeight":"700", + "location":{ + "x":151, + "y":158}, + "size":{ + "width":81, + "height":24}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"23c62c1306b24ce8b1ff5fe57db698b0", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontSize":"20px", + "fontWeight":"700", + "location":{ + "x":151, + "y":158}, + "size":{ + "width":81, + "height":24}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"14f853cadd1c42fa87260e2661133b48", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":58, + "y":205}, + "size":{ + "width":272, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"3a8196f1d5f14867874cfab2ce260adf", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":58, + "y":205}, + "size":{ + "width":272, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"d013bcb9990b46b7bf234e47c5335d21", + "label":"", + "type":"horizontalLine", + "styleType":"horizontalLine", + "visible":true, + "style":{ + "location":{ + "x":32, + "y":262}, + "size":{ + "width":319, + "height":10}, + "borderFill":{ + "fillType":"solid", + "color":0xFFCCCCCC}}, + "adaptiveStyles":{ +}, + "images":{ + "start~":"resources/images/transparent.gif", + "end~":"resources/images/transparent.gif", + "line~":"images/我用发工资_-_手动登记/u27_line.png"}}, +{ + "id":"3093d0d3ba8144169b90f0bf3c390502", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":42, + "y":330}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c9fbdb6b0fe14baabdcbbe537bd463c4", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":42, + "y":330}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"b53407ce4d34426d9b93c9bde6f0aac8", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":50, + "y":330}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"0007b05792284425b8240ce71bf21583", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":50, + "y":330}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"2171187d459b42149b2ad4829454fdfe", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":275, + "y":330}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"99d3dcc7f7414b088d1bd6f9ad310352", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":275, + "y":330}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"907a07a9a9804ca2ad2da27f8c58c2a5", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":50, + "y":371}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"95038ca21f524c9599eb1df878be405c", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":50, + "y":371}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"1e3040769fd843a281316d2b20137f04", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":299, + "y":371}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"e2dae981f3db4a268770eda5603da8eb", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":299, + "y":371}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"689eb41d62314051b5c35f2a5b6ccdbb", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":42, + "y":390}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"cd0f396bd1634e2b839ff0371248b681", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":42, + "y":390}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"3d08cc4e7a3842f8b39fb94802bdf8b2", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":50, + "y":390}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"0c996f47f2244ed7be8eebea559c4005", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":50, + "y":390}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"d1a6db209ede4017a343b6d6be5cdcf6", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":275, + "y":390}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"63e4467bf9d54a97b162bfef4b87eccc", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":275, + "y":390}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"55113453902e466c9e052e9166eb8353", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":50, + "y":431}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"88703a1d588845898bb7d869ac406239", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":50, + "y":431}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"57e81f9f58f84558addff7d10f1eb600", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":299, + "y":431}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"f270be1df29d41dd8993ba769f82d252", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":299, + "y":431}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"738338677b0e465cad1de6d462cf4c1c", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":42, + "y":450}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"0362da7ad2e1462f8a68abd6789e3c18", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":42, + "y":450}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"32df35bdeba446b7bc13474e5ecd23d0", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":50, + "y":450}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"0bdff4e0bdc4489383bfa7423eabdee4", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":50, + "y":450}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"195bdf5f649842d3b1e754b96dbe9f1e", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":275, + "y":450}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"878af1e3e891418db550988319c78205", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":275, + "y":450}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"26ee5c5aef354de4bcea88427571ecf9", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":50, + "y":491}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"e1899322eab14c4b94b40adc2c421388", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":50, + "y":491}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"1800d4632e194c31b41bc450747c6b6a", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":299, + "y":491}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"90b24ec546b249149068156e0550ac5f", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":299, + "y":491}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"7a3a4e8760c941c586e4bd3bf7ba4636", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":42, + "y":510}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"4aadf90608f24ebfbc6258b62a9028c1", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":42, + "y":510}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"0fe3ec0f0a534e278772602e7c613d48", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":50, + "y":510}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"0fd2e88931884790981cd031ab4b6a9f", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":50, + "y":510}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"a5ea15953e1e4274a4d3e159accd4788", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":271, + "y":514}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d80d5f3a63624deeb3df32ab570029ac", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":271, + "y":514}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"377eb01680f64a34aff6579acb23690b", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":50, + "y":551}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"1d41a423ee4543c8a30ace3a5432d7c3", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":50, + "y":551}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"4d59c4f29c114c66b884b3e58135e3e7", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":299, + "y":551}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"6f0ee61d8ad046cca956326c81709b77", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":299, + "y":551}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"38e08ec62c4546919264ab5fd3983e39", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":42, + "y":275}, + "size":{ + "width":300, + "height":55}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"f975c153875844f5b8a093129ceec720", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":42, + "y":275}, + "size":{ + "width":300, + "height":55}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/订单详情_-_待审批/u28.png"}}, +{ + "id":"d1fcc903018a42a189b740f8b6d933fa", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "fontSize":"20px", + "location":{ + "x":50, + "y":289}, + "size":{ + "width":115, + "height":27}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"5ebc92475ea0470a809dc4bf2b7e9699", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "fontSize":"20px", + "location":{ + "x":50, + "y":289}, + "size":{ + "width":115, + "height":27}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}]}}, + "masters":{ +}, + "objectPaths":{ + "d842fde39faa4366bd0f963e96502100":{ + "scriptId":"u0"}, + "4a5b0dbbf4e44628a9ffec3cd215fae2":{ + "scriptId":"u1"}, + "9daf6d55b04745daba90de59aef621a5":{ + "scriptId":"u2"}, + "e8843f8187224e23aac571bf5e4f7897":{ + "scriptId":"u3"}, + "a3545e2f44144c9f8b3cde562836941c":{ + "scriptId":"u4"}, + "d64d7c88b4e24ca5a57dcf1abc1fda59":{ + "scriptId":"u5"}, + "8f8e7c2d8b0a443a9f3aa541fe7a76a9":{ + "scriptId":"u6"}, + "c80d718410384856a00c4bd88d4f4b68":{ + "scriptId":"u7"}, + "6dbcbb1662cb4eb28d603bc1218ed75a":{ + "scriptId":"u8"}, + "15e156295048459fa4e7f963c1b54d8c":{ + "scriptId":"u9"}, + "2b07e94b5d574f7b949e4e5fcd08df32":{ + "scriptId":"u10"}, + "f8d3f26df245494686f2edeecfe28b31":{ + "scriptId":"u11"}, + "4bf140d8f98b4cc28b3aa0ccc5cf01bd":{ + "scriptId":"u12"}, + "9d12353b86b944a3bd973e118641913c":{ + "scriptId":"u13"}, + "8915a54ec148489f97dcfc5c4ee8e4fc":{ + "scriptId":"u14"}, + "a73ea6cdc41e481490d517032b444545":{ + "scriptId":"u15"}, + "cc7f1dec43c047b2a47377ff726c7432":{ + "scriptId":"u16"}, + "2dd00fed1c3643ea9be44ffcf44dbd9a":{ + "scriptId":"u17"}, + "11b590146718491f8852fb97f097518c":{ + "scriptId":"u18"}, + "9a386857498a4a53ac7d38d3b67ffb88":{ + "scriptId":"u19"}, + "a82550aeb01042048b903a1a8fb73107":{ + "scriptId":"u20"}, + "a3f035f14f3b4834ac8a93917e3db1b7":{ + "scriptId":"u21"}, + "834a67a56dd04290bc09587d231fdce2":{ + "scriptId":"u22"}, + "23c62c1306b24ce8b1ff5fe57db698b0":{ + "scriptId":"u23"}, + "14f853cadd1c42fa87260e2661133b48":{ + "scriptId":"u24"}, + "3a8196f1d5f14867874cfab2ce260adf":{ + "scriptId":"u25"}, + "d013bcb9990b46b7bf234e47c5335d21":{ + "scriptId":"u26"}, + "3093d0d3ba8144169b90f0bf3c390502":{ + "scriptId":"u27"}, + "c9fbdb6b0fe14baabdcbbe537bd463c4":{ + "scriptId":"u28"}, + "b53407ce4d34426d9b93c9bde6f0aac8":{ + "scriptId":"u29"}, + "0007b05792284425b8240ce71bf21583":{ + "scriptId":"u30"}, + "2171187d459b42149b2ad4829454fdfe":{ + "scriptId":"u31"}, + "99d3dcc7f7414b088d1bd6f9ad310352":{ + "scriptId":"u32"}, + "907a07a9a9804ca2ad2da27f8c58c2a5":{ + "scriptId":"u33"}, + "95038ca21f524c9599eb1df878be405c":{ + "scriptId":"u34"}, + "1e3040769fd843a281316d2b20137f04":{ + "scriptId":"u35"}, + "e2dae981f3db4a268770eda5603da8eb":{ + "scriptId":"u36"}, + "689eb41d62314051b5c35f2a5b6ccdbb":{ + "scriptId":"u37"}, + "cd0f396bd1634e2b839ff0371248b681":{ + "scriptId":"u38"}, + "3d08cc4e7a3842f8b39fb94802bdf8b2":{ + "scriptId":"u39"}, + "0c996f47f2244ed7be8eebea559c4005":{ + "scriptId":"u40"}, + "d1a6db209ede4017a343b6d6be5cdcf6":{ + "scriptId":"u41"}, + "63e4467bf9d54a97b162bfef4b87eccc":{ + "scriptId":"u42"}, + "55113453902e466c9e052e9166eb8353":{ + "scriptId":"u43"}, + "88703a1d588845898bb7d869ac406239":{ + "scriptId":"u44"}, + "57e81f9f58f84558addff7d10f1eb600":{ + "scriptId":"u45"}, + "f270be1df29d41dd8993ba769f82d252":{ + "scriptId":"u46"}, + "738338677b0e465cad1de6d462cf4c1c":{ + "scriptId":"u47"}, + "0362da7ad2e1462f8a68abd6789e3c18":{ + "scriptId":"u48"}, + "32df35bdeba446b7bc13474e5ecd23d0":{ + "scriptId":"u49"}, + "0bdff4e0bdc4489383bfa7423eabdee4":{ + "scriptId":"u50"}, + "195bdf5f649842d3b1e754b96dbe9f1e":{ + "scriptId":"u51"}, + "878af1e3e891418db550988319c78205":{ + "scriptId":"u52"}, + "26ee5c5aef354de4bcea88427571ecf9":{ + "scriptId":"u53"}, + "e1899322eab14c4b94b40adc2c421388":{ + "scriptId":"u54"}, + "1800d4632e194c31b41bc450747c6b6a":{ + "scriptId":"u55"}, + "90b24ec546b249149068156e0550ac5f":{ + "scriptId":"u56"}, + "7a3a4e8760c941c586e4bd3bf7ba4636":{ + "scriptId":"u57"}, + "4aadf90608f24ebfbc6258b62a9028c1":{ + "scriptId":"u58"}, + "0fe3ec0f0a534e278772602e7c613d48":{ + "scriptId":"u59"}, + "0fd2e88931884790981cd031ab4b6a9f":{ + "scriptId":"u60"}, + "a5ea15953e1e4274a4d3e159accd4788":{ + "scriptId":"u61"}, + "d80d5f3a63624deeb3df32ab570029ac":{ + "scriptId":"u62"}, + "377eb01680f64a34aff6579acb23690b":{ + "scriptId":"u63"}, + "1d41a423ee4543c8a30ace3a5432d7c3":{ + "scriptId":"u64"}, + "4d59c4f29c114c66b884b3e58135e3e7":{ + "scriptId":"u65"}, + "6f0ee61d8ad046cca956326c81709b77":{ + "scriptId":"u66"}, + "38e08ec62c4546919264ab5fd3983e39":{ + "scriptId":"u67"}, + "f975c153875844f5b8a093129ceec720":{ + "scriptId":"u68"}, + "d1fcc903018a42a189b740f8b6d933fa":{ + "scriptId":"u69"}, + "5ebc92475ea0470a809dc4bf2b7e9699":{ + "scriptId":"u70"}}}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\350\256\242\345\215\225\350\257\246\346\203\205_-_\345\267\262\345\217\221\346\224\276/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\350\256\242\345\215\225\350\257\246\346\203\205_-_\345\267\262\345\217\221\346\224\276/styles.css" new file mode 100644 index 0000000..6ebb552 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\350\256\242\345\215\225\350\257\246\346\203\205_-_\345\267\262\345\217\221\346\224\276/styles.css" @@ -0,0 +1,823 @@ +body { + margin:0px; + background-image:none; + position:static; + left:auto; + width:378px; + margin-left:0; + margin-right:0; + text-align:left; +} +#base { + position:absolute; + z-index:0; +} +#u0 { + position:absolute; + left:0px; + top:116px; + width:8px; + height:36px; +} +#u0_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:36px; +} +#u1 { + position:absolute; + left:2px; + top:10px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u2 { + position:absolute; + left:0px; + top:192px; + width:8px; + height:27px; +} +#u2_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:27px; +} +#u3 { + position:absolute; + left:2px; + top:6px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u4 { + position:absolute; + left:0px; + top:255px; + width:8px; + height:27px; +} +#u4_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:27px; +} +#u5 { + position:absolute; + left:2px; + top:6px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u6 { + position:absolute; + left:259px; + top:0px; + width:60px; + height:10px; +} +#u6_img { + position:absolute; + left:0px; + top:0px; + width:60px; + height:10px; +} +#u7 { + position:absolute; + left:2px; + top:-3px; + width:56px; + visibility:hidden; + word-wrap:break-word; +} +#u8 { + position:absolute; + left:6px; + top:6px; + width:372px; + height:796px; +} +#u8_img { + position:absolute; + left:0px; + top:0px; + width:372px; + height:796px; +} +#u9 { + position:absolute; + left:2px; + top:390px; + width:368px; + visibility:hidden; + word-wrap:break-word; +} +#u10 { + position:absolute; + left:32px; + top:120px; + width:320px; + height:568px; +} +#u10_img { + position:absolute; + left:0px; + top:0px; + width:320px; + height:568px; +} +#u11 { + position:absolute; + left:2px; + top:276px; + width:316px; + visibility:hidden; + word-wrap:break-word; +} +#u12 { + position:absolute; + left:157px; + top:66px; + width:70px; + height:14px; +} +#u12_img { + position:absolute; + left:0px; + top:0px; + width:70px; + height:14px; +} +#u13 { + position:absolute; + left:2px; + top:-1px; + width:66px; + visibility:hidden; + word-wrap:break-word; +} +#u14 { + position:absolute; + left:185px; + top:40px; + width:14px; + height:14px; +} +#u14_img { + position:absolute; + left:0px; + top:0px; + width:14px; + height:14px; +} +#u15 { + position:absolute; + left:2px; + top:-1px; + width:10px; + visibility:hidden; + word-wrap:break-word; +} +#u16 { + position:absolute; + left:156px; + top:704px; + width:72px; + height:72px; +} +#u16_img { + position:absolute; + left:0px; + top:0px; + width:72px; + height:72px; +} +#u17 { + position:absolute; + left:2px; + top:28px; + width:68px; + visibility:hidden; + word-wrap:break-word; +} +#u18 { + position:absolute; + left:32px; + top:140px; + width:319px; + height:60px; +} +#u18_img { + position:absolute; + left:0px; + top:0px; + width:319px; + height:60px; +} +#u19 { + position:absolute; + left:2px; + top:22px; + width:315px; + visibility:hidden; + word-wrap:break-word; +} +#u20 { + position:absolute; + left:40px; + top:159px; + width:22px; + height:22px; +} +#u20_img { + position:absolute; + left:0px; + top:0px; + width:22px; + height:22px; +} +#u21 { + position:absolute; + left:2px; + top:3px; + width:18px; + visibility:hidden; + word-wrap:break-word; +} +#u22 { + position:absolute; + left:151px; + top:158px; + width:81px; + height:24px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + font-size:20px; +} +#u22_img { + position:absolute; + left:0px; + top:0px; + width:81px; + height:24px; +} +#u23 { + position:absolute; + left:0px; + top:0px; + width:81px; + white-space:nowrap; +} +#u24 { + position:absolute; + left:58px; + top:205px; + width:272px; + height:60px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u24_img { + position:absolute; + left:0px; + top:0px; + width:272px; + height:60px; +} +#u25 { + position:absolute; + left:0px; + top:0px; + width:272px; + white-space:nowrap; +} +#u26 { + position:absolute; + left:32px; + top:262px; + width:319px; + height:10px; +} +#u26_start { + position:absolute; + left:0px; + top:-5px; + width:18px; + height:20px; +} +#u26_end { + position:absolute; + left:302px; + top:-5px; + width:18px; + height:20px; +} +#u26_line { + position:absolute; + left:0px; + top:5px; + width:319px; + height:1px; +} +#u27 { + position:absolute; + left:42px; + top:330px; + width:300px; + height:60px; +} +#u27_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u28 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u29 { + position:absolute; + left:50px; + top:330px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u29_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u30 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u31 { + position:absolute; + left:275px; + top:330px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u31_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u32 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u33 { + position:absolute; + left:50px; + top:371px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u33_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u34 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u35 { + position:absolute; + left:299px; + top:371px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u35_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u36 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u37 { + position:absolute; + left:42px; + top:390px; + width:300px; + height:60px; +} +#u37_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u38 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u39 { + position:absolute; + left:50px; + top:390px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u39_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u40 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u41 { + position:absolute; + left:275px; + top:390px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u41_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u42 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u43 { + position:absolute; + left:50px; + top:431px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u43_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u44 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u45 { + position:absolute; + left:299px; + top:431px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u45_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u46 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u47 { + position:absolute; + left:42px; + top:450px; + width:300px; + height:60px; +} +#u47_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u48 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u49 { + position:absolute; + left:50px; + top:450px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u49_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u50 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u51 { + position:absolute; + left:275px; + top:450px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u51_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u52 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u53 { + position:absolute; + left:50px; + top:491px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u53_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u54 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u55 { + position:absolute; + left:299px; + top:491px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u55_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u56 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u57 { + position:absolute; + left:42px; + top:510px; + width:300px; + height:60px; +} +#u57_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u58 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u59 { + position:absolute; + left:50px; + top:510px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u59_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u60 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u61 { + position:absolute; + left:271px; + top:514px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u61_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u62 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u63 { + position:absolute; + left:50px; + top:551px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u63_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u64 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u65 { + position:absolute; + left:299px; + top:551px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u65_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u66 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u67 { + position:absolute; + left:42px; + top:275px; + width:300px; + height:55px; +} +#u67_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:55px; +} +#u68 { + position:absolute; + left:2px; + top:20px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u69 { + position:absolute; + left:50px; + top:289px; + width:115px; + height:27px; + font-family:'微软雅黑 Regular', '微软雅黑'; + font-size:20px; +} +#u69_img { + position:absolute; + left:0px; + top:0px; + width:115px; + height:27px; +} +#u70 { + position:absolute; + left:0px; + top:0px; + width:115px; + white-space:nowrap; +} diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\350\256\242\345\215\225\350\257\246\346\203\205_-_\345\276\205\345\256\241\346\211\271/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\350\256\242\345\215\225\350\257\246\346\203\205_-_\345\276\205\345\256\241\346\211\271/data.js" new file mode 100644 index 0000000..b96011c --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\350\256\242\345\215\225\350\257\246\346\203\205_-_\345\276\205\345\256\241\346\211\271/data.js" @@ -0,0 +1,4825 @@ +$axure.loadCurrentPage({ + "url":"订单详情_-_待审批.html", + "generationDate":new Date(1416993074812.5), + "isCanvasEnabled":false, + "variables":["OnLoadVariable"], + "page":{ + "packageId":"29a5b96bd95a4bdeb87b8d8b16587930", + "type":"Axure:Page", + "name":"订单详情 - 待审批", + "notes":{ +}, + "style":{ + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "pageAlignment":"near", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "image":null, + "imageHorizontalAlignment":"near", + "imageVerticalAlignment":"near", + "imageRepeat":"auto", + "favicon":null, + "sketchFactor":"0", + "colorStyle":"appliedColor", + "fontName":"应用字体", + "borderWidth":"0"}, + "adaptiveStyles":{ +}, + "interactionMap":{ +}, + "diagram":{ + "objects":[{ + "id":"d842fde39faa4366bd0f963e96502100", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":116}, + "size":{ + "width":8, + "height":36}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"4a5b0dbbf4e44628a9ffec3cd215fae2", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":116}, + "size":{ + "width":8, + "height":36}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u0.png"}}, +{ + "id":"9daf6d55b04745daba90de59aef621a5", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":192}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"e8843f8187224e23aac571bf5e4f7897", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":192}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u2.png"}}, +{ + "id":"a3545e2f44144c9f8b3cde562836941c", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":255}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d64d7c88b4e24ca5a57dcf1abc1fda59", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":255}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u2.png"}}, +{ + "id":"8f8e7c2d8b0a443a9f3aa541fe7a76a9", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":259, + "y":0}, + "size":{ + "width":60, + "height":10}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c80d718410384856a00c4bd88d4f4b68", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":259, + "y":0}, + "size":{ + "width":60, + "height":10}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u6.png"}}, +{ + "id":"6dbcbb1662cb4eb28d603bc1218ed75a", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":6, + "y":6}, + "size":{ + "width":372, + "height":796}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"52"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"15e156295048459fa4e7f963c1b54d8c", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":6, + "y":6}, + "size":{ + "width":372, + "height":796}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"52"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u8.png"}}, +{ + "id":"2b07e94b5d574f7b949e4e5fcd08df32", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":32, + "y":120}, + "size":{ + "width":320, + "height":568}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"f8d3f26df245494686f2edeecfe28b31", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":32, + "y":120}, + "size":{ + "width":320, + "height":568}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u10.png"}}, +{ + "id":"4bf140d8f98b4cc28b3aa0ccc5cf01bd", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":157, + "y":66}, + "size":{ + "width":70, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"9d12353b86b944a3bd973e118641913c", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":157, + "y":66}, + "size":{ + "width":70, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u12.png"}}, +{ + "id":"8915a54ec148489f97dcfc5c4ee8e4fc", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":185, + "y":40}, + "size":{ + "width":14, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a73ea6cdc41e481490d517032b444545", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":185, + "y":40}, + "size":{ + "width":14, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u14.png"}}, +{ + "id":"cc7f1dec43c047b2a47377ff726c7432", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":156, + "y":704}, + "size":{ + "width":72, + "height":72}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"2dd00fed1c3643ea9be44ffcf44dbd9a", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":156, + "y":704}, + "size":{ + "width":72, + "height":72}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u16.png"}}, +{ + "id":"11b590146718491f8852fb97f097518c", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":32, + "y":140}, + "size":{ + "width":319, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"9a386857498a4a53ac7d38d3b67ffb88", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":32, + "y":140}, + "size":{ + "width":319, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_首次进入/u18.png"}}, +{ + "id":"a82550aeb01042048b903a1a8fb73107", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "location":{ + "x":40, + "y":159}, + "size":{ + "width":22, + "height":22}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a3f035f14f3b4834ac8a93917e3db1b7", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":40, + "y":159}, + "size":{ + "width":22, + "height":22}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 发放历史", + "target":{ + "targetType":"page", + "url":"发放历史.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true, + "images":{ + "normal~":"images/我要发工资_-_引导页_-_首次进入/u20.png"}}, +{ + "id":"834a67a56dd04290bc09587d231fdce2", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontSize":"20px", + "fontWeight":"700", + "location":{ + "x":151, + "y":158}, + "size":{ + "width":101, + "height":24}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"23c62c1306b24ce8b1ff5fe57db698b0", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontSize":"20px", + "fontWeight":"700", + "location":{ + "x":151, + "y":158}, + "size":{ + "width":101, + "height":24}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"14f853cadd1c42fa87260e2661133b48", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":58, + "y":205}, + "size":{ + "width":225, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"3a8196f1d5f14867874cfab2ce260adf", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":58, + "y":205}, + "size":{ + "width":225, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"d013bcb9990b46b7bf234e47c5335d21", + "label":"", + "type":"horizontalLine", + "styleType":"horizontalLine", + "visible":true, + "style":{ + "location":{ + "x":32, + "y":262}, + "size":{ + "width":319, + "height":10}, + "borderFill":{ + "fillType":"solid", + "color":0xFFCCCCCC}}, + "adaptiveStyles":{ +}, + "images":{ + "start~":"resources/images/transparent.gif", + "end~":"resources/images/transparent.gif", + "line~":"images/我用发工资_-_手动登记/u27_line.png"}}, +{ + "id":"67970581302948a9ad706e34972bc63f", + "label":"复制订单明细", + "type":"dynamicPanel", + "styleType":"dynamicPanel", + "visible":true, + "style":{ + "location":{ + "x":42, + "y":275}, + "size":{ + "width":300, + "height":55}}, + "adaptiveStyles":{ +}, + "scrollbars":"none", + "fitToContent":false, + "propagate":false, + "diagrams":[{ + "id":"530d62a7264d44628de965705dd8df03", + "label":"原始状态", + "type":"Axure:PanelDiagram", + "objects":[{ + "id":"0631471e61d5468d84fc60d4e2860c24", + "label":"", + "parentDynamicPanel":"67970581302948a9ad706e34972bc63f", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "size":{ + "width":300, + "height":55}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"cecf764254904f9eab6d93d7fcae20e8", + "label":"", + "isContained":true, + "parentDynamicPanel":"67970581302948a9ad706e34972bc63f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "size":{ + "width":300, + "height":55}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/订单详情_-_待审批/u28.png"}}, +{ + "id":"306293ebc5964c8d80905489e92bc74c", + "label":"", + "parentDynamicPanel":"67970581302948a9ad706e34972bc63f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "fontSize":"20px", + "location":{ + "x":8, + "y":14}, + "size":{ + "width":115, + "height":27}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"071fd8f5d5a34e1ba5a592febd91c73a", + "label":"", + "isContained":true, + "parentDynamicPanel":"67970581302948a9ad706e34972bc63f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "fontSize":"20px", + "location":{ + "x":8, + "y":14}, + "size":{ + "width":115, + "height":27}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}]}, +{ + "id":"d5d754ad95cd4ecdbdefb514c88d4b81", + "label":"响应状态", + "type":"Axure:PanelDiagram", + "objects":[{ + "id":"15c52d62e3974886855f7e280ba00b35", + "label":"", + "parentDynamicPanel":"67970581302948a9ad706e34972bc63f", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "size":{ + "width":300, + "height":55}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"58f6066a35c24e7792761c6fe1e9eb31", + "label":"", + "isContained":true, + "parentDynamicPanel":"67970581302948a9ad706e34972bc63f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "size":{ + "width":300, + "height":55}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/订单详情_-_待审批/u28.png"}}, +{ + "id":"e11b7528b0c34ee99eb1af62ddd684b4", + "label":"", + "parentDynamicPanel":"67970581302948a9ad706e34972bc63f", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "fontSize":"20px", + "location":{ + "x":8, + "y":14}, + "size":{ + "width":115, + "height":27}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"e665687ed1ff45d695dd369328739434", + "label":"", + "isContained":true, + "parentDynamicPanel":"67970581302948a9ad706e34972bc63f", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "fontSize":"20px", + "location":{ + "x":8, + "y":14}, + "size":{ + "width":115, + "height":27}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"058739b989ee4a45a16a32967966823a", + "label":"", + "parentDynamicPanel":"67970581302948a9ad706e34972bc63f", + "type":"button", + "styleType":"button", + "visible":true, + "style":{ + "location":{ + "x":190, + "y":15}, + "size":{ + "width":100, + "height":25}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 我要发工资 - 引用订单记录", + "target":{ + "targetType":"page", + "url":"我要发工资_-_引用订单记录.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true}]}]}, +{ + "id":"6ea7b4c330674320b4b1d5b23881cd41", + "label":"板", + "type":"imageMapRegion", + "styleType":"imageMapRegion", + "visible":true, + "style":{ + "location":{ + "x":42, + "y":275}, + "size":{ + "width":300, + "height":55}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onMouseOver":{ + "description":"OnMouseOver", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"setPanelState", + "description":"设置 复制订单明细 to 响应状态 向左滑动 in 500ms", + "panelsToStates":[{ + "panelPath":["67970581302948a9ad706e34972bc63f"], + "stateInfo":{ + "setStateType":"diagram", + "stateNumber":2, + "stateValue":{ + "exprType":"stringLiteral", + "value":"1", + "stos":[]}, + "loop":false, + "showWhenSet":false, + "options":{ + "animateIn":{ + "easing":"slideLeft", + "duration":500}, + "compress":false}}}]}, +{ + "action":"fadeWidget", + "description":"隐藏 板", + "objectsToFades":[{ + "objectPath":["6ea7b4c330674320b4b1d5b23881cd41"], + "fadeInfo":{ + "fadeType":"hide", + "options":{ + "showType":"none"}}}]}]}]}}}, +{ + "id":"dab304abe1c94373b624f1f9cf65d48c", + "label":"", + "type":"button", + "styleType":"button", + "visible":true, + "style":{ + "location":{ + "x":42, + "y":630}, + "size":{ + "width":300, + "height":40}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 付款", + "target":{ + "targetType":"page", + "url":"付款.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true}, +{ + "id":"1a6c0e1981e442b0b8b317c09b94cc52", + "label":"历史记录调整", + "type":"dynamicPanel", + "styleType":"dynamicPanel", + "visible":true, + "style":{ + "location":{ + "x":42, + "y":330}, + "size":{ + "width":300, + "height":290}}, + "adaptiveStyles":{ +}, + "scrollbars":"none", + "fitToContent":false, + "propagate":false, + "diagrams":[{ + "id":"27cc44d7ffcf4167b2432ac891f0aebd", + "label":"初始状态", + "type":"Axure:PanelDiagram", + "objects":[{ + "id":"293c6d24b3c94036b1c7651770800cde", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":180}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"3ddfb597d8474207a2582d82aeca53e1", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":180}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"4f75c729fda0465c9282498f72fada6c", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"82c899d8a706442092f0dfdb601ce18a", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"b2d425137b594a29b7e3f993ad44ceee", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":0}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"0a1b98f0d26f462db929686c14a8fa1b", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":0}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"c9e14e46e60c4fcf803de878e0805446", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":0}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d3153370b7cc456f83e95265f5b9430e", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":0}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"df9d9f10c4ff4fa482d6e259d2479138", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":41}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"7b7206547ace4cb7bba443ae0bd73b39", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":41}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"1868f030a022446d8e544fdb41afceb9", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":41}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"dc492bf98cc64f4fb0c5553b1fee1786", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":41}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"d4fe70bf01b04ccbac95218d6452db3c", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":60}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"52ac992ebab74e13902eca61b232f675", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":60}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"7424eb18b8c14af2846f83952cdeffc5", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":60}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a40b1c0e0d194ab3ac2999797bc549af", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":60}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"fd17532648d947b4a3e7b718dc2aec49", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":60}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"b4bded99aa744ca98d0ca2aa65ae1906", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":60}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"78ab1236d14a4e82a1f6dc12c5333c76", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":101}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"e4f92ea8818345fd933f799fffafec2a", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":101}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"8ac7a94227e44c13b2d69d36f2432013", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":260, + "y":101}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"1dca4f87593148f3877cb28c9d38ed6f", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":260, + "y":101}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"41f715042e84486ba90bdffa86914f73", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":120}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"e02197c0b1aa44fa8c92cb211a82bc12", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":120}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"1ffdb937e17c431e8c9e34e941299912", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":120}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"4fa1dcf65cf94a4cb08c150cb99db459", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":120}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"3841293a6d22475e8201975c54d68a09", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":120}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"b1ca5d5daa7b406c86bf58be3c0f5416", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":120}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"0ca80f672f9a4c40a1b6d139e52fced7", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":161}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"1548d414bf29434a819eccbb1db4ab85", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":161}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"50d057490d804ee7925f21f8ca6e465a", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":161}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"9f28bcceccfd4fcc837831008768cd23", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":161}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"5c60b0d4ca6c4737aef22dbe72b7f61c", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":180}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"00ff00db986047a195879737d022fc9d", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":180}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"106b2aacd24e4ac2862b2654b9fd1d6d", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":221}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"310163804eba4cbcae6cde14cb1f3619", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":221}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"30fe60fa799c48c2a8cefab61ac3f226", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":221}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"743a42c1341743a9885ee6665b9cea97", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":221}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"82eae60025d0459f9ae821c7e2c97fb7", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":182}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"0d8badb303624ba6b990861277d420e9", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":182}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"14562942a0da4a738ee6a165e6e75fd1", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"button", + "styleType":"button", + "visible":true, + "style":{ + "location":{ + "x":8, + "y":255}, + "size":{ + "width":100, + "height":25}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 编辑- 调用历史记录", + "target":{ + "targetType":"page", + "url":"编辑-_调用历史记录.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true}, +{ + "id":"721a6d59e4254a4a89fd6f85e4c653cc", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"imageMapRegion", + "styleType":"imageMapRegion", + "visible":true, + "style":{ + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"setPanelState", + "description":"设置 历史记录调整 to 选中编辑状态 向上滑动 in 1500ms", + "panelsToStates":[{ + "panelPath":["1a6c0e1981e442b0b8b317c09b94cc52"], + "stateInfo":{ + "setStateType":"diagram", + "stateNumber":2, + "stateValue":{ + "exprType":"stringLiteral", + "value":"1", + "stos":[]}, + "loop":false, + "showWhenSet":false, + "options":{ + "animateIn":{ + "easing":"slideUp", + "duration":1500}, + "compress":false}}}]}]}, +{ + "description":"用例 2", + "isNewIfGroup":false, + "actions":[{ + "action":"setPanelState", + "description":"设置 历史记录调整 to 长摁编辑状态 显示隐藏 push/pull widgets below 摆动 500ms", + "panelsToStates":[{ + "panelPath":["1a6c0e1981e442b0b8b317c09b94cc52"], + "stateInfo":{ + "setStateType":"diagram", + "stateNumber":3, + "stateValue":{ + "exprType":"stringLiteral", + "value":"1", + "stos":[]}, + "loop":false, + "showWhenSet":true, + "options":{ + "compress":true, + "vertical":true, + "compressEasing":"swing", + "compressDuration":500}}}]}]}]}}, + "tabbable":true}]}, +{ + "id":"5a8d781be2f545df98c19b412d684bd0", + "label":"选中编辑状态", + "type":"Axure:PanelDiagram", + "objects":[{ + "id":"c8140dc8f7b14a91bf11a295178c5535", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":8, + "y":41}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"e831f367abd64a5fad87a070b7b3b8f5", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":8, + "y":41}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"ebacc39b90fa4a38afdd8f86a77bfff7", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":8, + "y":76}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"15d3088fe69644f1904ab935036026cc", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":8, + "y":76}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"3f34304d3cff47d2a353e493fcdb8108", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"textBox", + "styleType":"textBox", + "visible":true, + "style":{ + "location":{ + "x":92, + "y":73}, + "size":{ + "width":200, + "height":25}}, + "adaptiveStyles":{ +}}, +{ + "id":"3498f75d9e904e44ad51ee751ed31aa8", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"button", + "styleType":"button", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"20px", + "fontWeight":"700", + "location":{ + "x":8, + "y":144}, + "size":{ + "width":284, + "height":30}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"setPanelState", + "description":"设置 历史记录调整 to 初始状态 向下滑动 in 1500ms", + "panelsToStates":[{ + "panelPath":["1a6c0e1981e442b0b8b317c09b94cc52"], + "stateInfo":{ + "setStateType":"diagram", + "stateNumber":1, + "stateValue":{ + "exprType":"stringLiteral", + "value":"1", + "stos":[]}, + "loop":false, + "showWhenSet":false, + "options":{ + "animateIn":{ + "easing":"slideDown", + "duration":1500}, + "compress":false}}}]}]}]}}, + "tabbable":true}, +{ + "id":"3b9cff3480274936ad2813c362bd2b0c", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":8, + "y":9}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"41218de567a94fb998118db0b2ebbca4", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":8, + "y":9}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"44bc08475b9842d5909dd68ce9bff324", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":8, + "y":111}, + "size":{ + "width":72, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"cc310604992f4a90a17afbdc7cbc3a6c", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":8, + "y":111}, + "size":{ + "width":72, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"369b3f4223d64fc6b77cd0b8d73af5d6", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"comboBox", + "styleType":"comboBox", + "visible":true, + "style":{ + "location":{ + "x":92, + "y":106}, + "size":{ + "width":200, + "height":27}}, + "adaptiveStyles":{ +}}, +{ + "id":"f924041eb58043b7a16f9e8902e2606c", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":180}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"6ed089d017414650890468d6ef69682a", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":180}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"c038583e391a4422bd596b698e885b89", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":180}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"92e8c502d1104c8aa5fe36fcb93b1698", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":180}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"49f1ca9fc6774cf09d4185db382e9a0d", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":221}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"e60521cd6e1643818459d3fd60579f2f", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":221}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"ecbd2b606ca8497591dace7c5932bba5", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":220}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"66cc0e225b0e4704bb0e9ebdfd6b4f71", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":220}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"41d40b3076e44077be98d32698735c22", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":182}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a65038400ac243b1ad3f923fd2e4dc43", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":182}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"bd999ff6b8b040e597429f9ff50c635a", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":240}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"35116e6a86d847c991637cba31c2315e", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":240}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"c2474e620a394e8fa037b4f8dba6e9f0", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":240}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"bcdd051e72a34b87be62af21d72642e3", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":240}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"76981141f7d84ab0bce50e5f1795a1f2", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":281}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ed99239c8cec4f8aad4adcdaf927560f", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":281}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"79841d08d67242e199cd12017669dc30", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":278}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"38b5c38162414a97b905ed369dd15fbf", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":278}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"64977fdfae2b4060b7eec777d8806074", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":242}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"fb7c6f7c07cc4cfcb1a0e55e3a2ef382", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":242}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"3ce311180ed4423381af2532fce63333", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":300}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"dbbfd3a4172c4e1fb4ed2253a1773a18", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":300}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"c30b1f4607494249babaec401e782e34", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":300}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"7cc641507b91475fbf4c16bbd5548509", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":300}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"ac482c971862417ea78143e0bb860056", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":341}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"384ac2c0ebbc4bf58ec2e7393b5016fe", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":341}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"6cb3700da90f465f8d119d327c1c1a04", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":339}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"3582d6af72e44d7fb1162ae8f6349ca2", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":339}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"f9581a234488408dbcfe5a8a7b57dd70", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":302}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"26252656cdb64c6693a8d6f129286518", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":302}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"c8f6808f4e45471ab5fbc265383b5442", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":91, + "y":12}, + "size":{ + "width":40, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d6f9bc5bcde84438a32a145a9ed2eca6", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":91, + "y":12}, + "size":{ + "width":40, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"ca8d19f49e3440dc8c344c57be26bf73", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":91, + "y":44}, + "size":{ + "width":85, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"acebad2d82234f4883b7a19d940fd2c5", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":91, + "y":44}, + "size":{ + "width":85, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}]}, +{ + "id":"f760f6e33c5c4cbca0dae1fc737b4192", + "label":"长摁编辑状态", + "type":"Axure:PanelDiagram", + "objects":[{ + "id":"20617400bf55411a959bba1f4f1db69d", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":180}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"580a35166a8249c19af26cf17ea8885c", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":180}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"f97ef2d1e49b460d89e6745f4022f5cb", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"fe90a02e9863498cbdfceeaa5b422049", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"23d987a31be44d9896afe23917b22e7f", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":0}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"840e7057a0aa4269bd6c65a0b1ffb5fd", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":0}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"1a7470c1658b4cb599ee1283785c52e5", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":186, + "y":0}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d4fb3c415776424cbcbd2912ba13e190", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":186, + "y":0}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"5d466deb1faf4a579b402f7603e73d17", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":41}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"026d76a45dcf4c23a807874a75a07d5f", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":41}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"4980935dbf024fcc9fa02d4617c52650", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":160, + "y":41}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"9f15a14641dc4bf5ac80ce1801d069bf", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":160, + "y":41}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"070ae02fbb9b43ba849407570b741b2a", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":210, + "y":21}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"df54babac3294ba4988423e0f4b5033c", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":210, + "y":21}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"687d6ab4ae4f4b8fa0b506a6fd7abb29", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":60}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"4115ba7532ed4523aa67d701043af2da", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":60}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"140a1fc4e3dd415eaf7342a0007ec45c", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":60}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"3668c98d86a34cda8f13af4d4d2a3277", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":60}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"55444730412946059ca669adefae3f82", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":60}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"065a2198ec234314865116e95f93ff60", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":60}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"290331768cf54cc8952ae29163aeffac", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":101}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c50185b3fc97431eb8e5cdba6c802fb8", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":101}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"bf8a791099234a87afe63317e0c600d1", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":206, + "y":101}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"15b65d4cffdc418da42dda1806141c29", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":206, + "y":101}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"94389c42a9ff414b8ba28e2c212a3e82", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":81}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"0b053bcbd47d4938a82245ff41948ee0", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":81}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"cd5be3bc42e3480ba5b205511ea5a1a9", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":120}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"590f7851bb2f47958352e7756505bd49", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":120}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"a00de373dc654316bb882c44ab5a235a", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":120}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"92744433f0f94de2b5cdcac5d8b12865", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":120}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"d8a67286e1804ccfb9d3f4504efc1f42", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":120}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c9db6526dd3e4a9684a5325f6294d101", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":120}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"f548f280ad0641b4b8ddf96a813313b8", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":161}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a340b5e9cd554fcdadd516844e712e08", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":161}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"001b9a89579243f2ad5f799dd2374b01", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":206, + "y":161}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"14de4101d3c545d7bb25604a02a2d4a3", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":206, + "y":161}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"70c2c6cd67d2404899b174c7305b0ad9", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":141}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"6e94f30b8f6142e68cf2298da7dfe81d", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":141}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"b20c98b70cdb4eba81991bf292cf3e99", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":180}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"7a0a20003595466ba7dac299fbf948e7", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":180}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"debb956c4014423db3ef72b485a97d51", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":221}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"33093aea74e74502a1637b426ba420fa", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":221}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"d6c0ee557a7d4f3eafd9f7739d627ab9", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":206, + "y":221}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"51dfe16a508a452f9cab1f54ac075923", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":206, + "y":221}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"3a1a98b036e543f988d7f1f492ce2ea4", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":201}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"afe5a5b2005540cd8bf95abffb1887a4", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":201}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"26f3cc96787549c8b360d074df8d0de2", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":182}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"4e19661fe5cc4172bb6ba6465f983dc6", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":182}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"e1ee6ba67397411b84aeaf8a0d77c1fe", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"button", + "styleType":"button", + "visible":true, + "style":{ + "location":{ + "x":8, + "y":255}, + "size":{ + "width":100, + "height":25}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 编辑- 调用历史记录", + "target":{ + "targetType":"page", + "url":"编辑-_调用历史记录.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true}, +{ + "id":"808a0a1b639045ad87eaf9e5babb2a4b", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "location":{ + "x":256, + "y":19}, + "size":{ + "width":35, + "height":30}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"5d5ccd9d649b4ca79ef9387f78c4921e", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":256, + "y":19}, + "size":{ + "width":35, + "height":30}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"setPanelState", + "description":"设置 历史记录调整 to 长摁编辑后 向左滑动 in 500ms", + "panelsToStates":[{ + "panelPath":["1a6c0e1981e442b0b8b317c09b94cc52"], + "stateInfo":{ + "setStateType":"diagram", + "stateNumber":4, + "stateValue":{ + "exprType":"stringLiteral", + "value":"1", + "stos":[]}, + "loop":false, + "showWhenSet":false, + "options":{ + "animateIn":{ + "easing":"slideLeft", + "duration":500}, + "compress":false}}}]}]}]}}, + "tabbable":true, + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u166.png"}}]}, +{ + "id":"0a6ad0bae2374c02a43fa28f22be539b", + "label":"长摁编辑后", + "type":"Axure:PanelDiagram", + "objects":[{ + "id":"99f6747a65654046bc421a47a1628907", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d12195f695764a52b7b35a1811015d7e", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"32eac68326bd4dc1938dc2181b8a74af", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":0}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"7cf2f41bca10470c8fc017abe654b42a", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":0}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"d3222df042554b4395632c73253a099d", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":0}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"8aed68041c3f4bffae931fc6f9866099", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":0}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"5f3ac8534730404093f3fcc4c482a74c", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":41}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"9d2d0eedd3d046e6952cf5ede0df44e1", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":41}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"cbde2d12627b4be6b9ffa6f144210312", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":206, + "y":41}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"37641a458bda4e008ffdb43eb3aa2c44", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":206, + "y":41}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"76dc956c952743f9a192ab820d04400f", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":21}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"cc852867bc1b46a39603205fbfa33e1b", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":21}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"eac8eb4d49e34942b62c4e1f6d2269ac", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":60}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"84666dbff3eb4fe184f68428fa687748", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":60}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"65aac9f9206742e9b2cb1e68b76c4992", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":60}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"15fbcb3a2f604a58b7ec71dc5c3baddb", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":60}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"14d740e05b394217bd679131f9eec0f0", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":60}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"09e286067cd54f0cbc5da102ff6fc5fd", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":60}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"16d2e74080bf4a5682eb12680293177c", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":101}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"98234ee4e39b4fd4a1042d924bf66c65", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":101}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"da2c9dcd7d9c40c9a5cb4d47c5b2a50f", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":206, + "y":101}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"9627f186853c48adb428eb89f274243b", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":206, + "y":101}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"b1bcf5ae6f0c488fac3487e47c3a06ee", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":81}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"f192620d2a46452b837cb68dad78e581", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":81}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"3146ceae3c9a4343af74f49311c589c3", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":120}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"8dcd26d8076c4962bf163c17cd6c81e4", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":120}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"8c46b872d26f4878b00bce9d486e1c27", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":120}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"aad3cfb2e96c42009cf673208d4bf408", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":8, + "y":120}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"c6112afef4144feea690476ab94e59ac", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":120}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"8bb1e34650a94d90bc6cec931788afa5", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":232, + "y":120}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"aac343a8dfe447feb28c573e0d16ea3b", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":161}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ddf0d714431046209f48db5047747c1e", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":8, + "y":161}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"379448bf1894448895a1fca17b108549", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":206, + "y":161}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"bcb90947d01843d393c5be58280de0ed", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":206, + "y":161}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"d95a1bec58a4473d8cf930ffd3a43e34", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":141}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"1ab8d15a830441c39d2a0e6a257895aa", + "label":"", + "isContained":true, + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":256, + "y":141}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"e9f725f474f94bb3a85f0f7a7164113b", + "label":"", + "parentDynamicPanel":"1a6c0e1981e442b0b8b317c09b94cc52", + "type":"button", + "styleType":"button", + "visible":true, + "style":{ + "location":{ + "x":8, + "y":190}, + "size":{ + "width":100, + "height":25}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 编辑- 调用历史记录", + "target":{ + "targetType":"page", + "url":"编辑-_调用历史记录.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true}]}]}]}}, + "masters":{ +}, + "objectPaths":{ + "d842fde39faa4366bd0f963e96502100":{ + "scriptId":"u0"}, + "4a5b0dbbf4e44628a9ffec3cd215fae2":{ + "scriptId":"u1"}, + "9daf6d55b04745daba90de59aef621a5":{ + "scriptId":"u2"}, + "e8843f8187224e23aac571bf5e4f7897":{ + "scriptId":"u3"}, + "a3545e2f44144c9f8b3cde562836941c":{ + "scriptId":"u4"}, + "d64d7c88b4e24ca5a57dcf1abc1fda59":{ + "scriptId":"u5"}, + "8f8e7c2d8b0a443a9f3aa541fe7a76a9":{ + "scriptId":"u6"}, + "c80d718410384856a00c4bd88d4f4b68":{ + "scriptId":"u7"}, + "6dbcbb1662cb4eb28d603bc1218ed75a":{ + "scriptId":"u8"}, + "15e156295048459fa4e7f963c1b54d8c":{ + "scriptId":"u9"}, + "2b07e94b5d574f7b949e4e5fcd08df32":{ + "scriptId":"u10"}, + "f8d3f26df245494686f2edeecfe28b31":{ + "scriptId":"u11"}, + "4bf140d8f98b4cc28b3aa0ccc5cf01bd":{ + "scriptId":"u12"}, + "9d12353b86b944a3bd973e118641913c":{ + "scriptId":"u13"}, + "8915a54ec148489f97dcfc5c4ee8e4fc":{ + "scriptId":"u14"}, + "a73ea6cdc41e481490d517032b444545":{ + "scriptId":"u15"}, + "cc7f1dec43c047b2a47377ff726c7432":{ + "scriptId":"u16"}, + "2dd00fed1c3643ea9be44ffcf44dbd9a":{ + "scriptId":"u17"}, + "11b590146718491f8852fb97f097518c":{ + "scriptId":"u18"}, + "9a386857498a4a53ac7d38d3b67ffb88":{ + "scriptId":"u19"}, + "a82550aeb01042048b903a1a8fb73107":{ + "scriptId":"u20"}, + "a3f035f14f3b4834ac8a93917e3db1b7":{ + "scriptId":"u21"}, + "834a67a56dd04290bc09587d231fdce2":{ + "scriptId":"u22"}, + "23c62c1306b24ce8b1ff5fe57db698b0":{ + "scriptId":"u23"}, + "14f853cadd1c42fa87260e2661133b48":{ + "scriptId":"u24"}, + "3a8196f1d5f14867874cfab2ce260adf":{ + "scriptId":"u25"}, + "d013bcb9990b46b7bf234e47c5335d21":{ + "scriptId":"u26"}, + "67970581302948a9ad706e34972bc63f":{ + "scriptId":"u27"}, + "0631471e61d5468d84fc60d4e2860c24":{ + "scriptId":"u28"}, + "cecf764254904f9eab6d93d7fcae20e8":{ + "scriptId":"u29"}, + "306293ebc5964c8d80905489e92bc74c":{ + "scriptId":"u30"}, + "071fd8f5d5a34e1ba5a592febd91c73a":{ + "scriptId":"u31"}, + "15c52d62e3974886855f7e280ba00b35":{ + "scriptId":"u32"}, + "58f6066a35c24e7792761c6fe1e9eb31":{ + "scriptId":"u33"}, + "e11b7528b0c34ee99eb1af62ddd684b4":{ + "scriptId":"u34"}, + "e665687ed1ff45d695dd369328739434":{ + "scriptId":"u35"}, + "058739b989ee4a45a16a32967966823a":{ + "scriptId":"u36"}, + "6ea7b4c330674320b4b1d5b23881cd41":{ + "scriptId":"u37"}, + "dab304abe1c94373b624f1f9cf65d48c":{ + "scriptId":"u38"}, + "1a6c0e1981e442b0b8b317c09b94cc52":{ + "scriptId":"u39"}, + "293c6d24b3c94036b1c7651770800cde":{ + "scriptId":"u40"}, + "3ddfb597d8474207a2582d82aeca53e1":{ + "scriptId":"u41"}, + "4f75c729fda0465c9282498f72fada6c":{ + "scriptId":"u42"}, + "82c899d8a706442092f0dfdb601ce18a":{ + "scriptId":"u43"}, + "b2d425137b594a29b7e3f993ad44ceee":{ + "scriptId":"u44"}, + "0a1b98f0d26f462db929686c14a8fa1b":{ + "scriptId":"u45"}, + "c9e14e46e60c4fcf803de878e0805446":{ + "scriptId":"u46"}, + "d3153370b7cc456f83e95265f5b9430e":{ + "scriptId":"u47"}, + "df9d9f10c4ff4fa482d6e259d2479138":{ + "scriptId":"u48"}, + "7b7206547ace4cb7bba443ae0bd73b39":{ + "scriptId":"u49"}, + "1868f030a022446d8e544fdb41afceb9":{ + "scriptId":"u50"}, + "dc492bf98cc64f4fb0c5553b1fee1786":{ + "scriptId":"u51"}, + "d4fe70bf01b04ccbac95218d6452db3c":{ + "scriptId":"u52"}, + "52ac992ebab74e13902eca61b232f675":{ + "scriptId":"u53"}, + "7424eb18b8c14af2846f83952cdeffc5":{ + "scriptId":"u54"}, + "a40b1c0e0d194ab3ac2999797bc549af":{ + "scriptId":"u55"}, + "fd17532648d947b4a3e7b718dc2aec49":{ + "scriptId":"u56"}, + "b4bded99aa744ca98d0ca2aa65ae1906":{ + "scriptId":"u57"}, + "78ab1236d14a4e82a1f6dc12c5333c76":{ + "scriptId":"u58"}, + "e4f92ea8818345fd933f799fffafec2a":{ + "scriptId":"u59"}, + "8ac7a94227e44c13b2d69d36f2432013":{ + "scriptId":"u60"}, + "1dca4f87593148f3877cb28c9d38ed6f":{ + "scriptId":"u61"}, + "41f715042e84486ba90bdffa86914f73":{ + "scriptId":"u62"}, + "e02197c0b1aa44fa8c92cb211a82bc12":{ + "scriptId":"u63"}, + "1ffdb937e17c431e8c9e34e941299912":{ + "scriptId":"u64"}, + "4fa1dcf65cf94a4cb08c150cb99db459":{ + "scriptId":"u65"}, + "3841293a6d22475e8201975c54d68a09":{ + "scriptId":"u66"}, + "b1ca5d5daa7b406c86bf58be3c0f5416":{ + "scriptId":"u67"}, + "0ca80f672f9a4c40a1b6d139e52fced7":{ + "scriptId":"u68"}, + "1548d414bf29434a819eccbb1db4ab85":{ + "scriptId":"u69"}, + "50d057490d804ee7925f21f8ca6e465a":{ + "scriptId":"u70"}, + "9f28bcceccfd4fcc837831008768cd23":{ + "scriptId":"u71"}, + "5c60b0d4ca6c4737aef22dbe72b7f61c":{ + "scriptId":"u72"}, + "00ff00db986047a195879737d022fc9d":{ + "scriptId":"u73"}, + "106b2aacd24e4ac2862b2654b9fd1d6d":{ + "scriptId":"u74"}, + "310163804eba4cbcae6cde14cb1f3619":{ + "scriptId":"u75"}, + "30fe60fa799c48c2a8cefab61ac3f226":{ + "scriptId":"u76"}, + "743a42c1341743a9885ee6665b9cea97":{ + "scriptId":"u77"}, + "82eae60025d0459f9ae821c7e2c97fb7":{ + "scriptId":"u78"}, + "0d8badb303624ba6b990861277d420e9":{ + "scriptId":"u79"}, + "14562942a0da4a738ee6a165e6e75fd1":{ + "scriptId":"u80"}, + "721a6d59e4254a4a89fd6f85e4c653cc":{ + "scriptId":"u81"}, + "c8140dc8f7b14a91bf11a295178c5535":{ + "scriptId":"u82"}, + "e831f367abd64a5fad87a070b7b3b8f5":{ + "scriptId":"u83"}, + "ebacc39b90fa4a38afdd8f86a77bfff7":{ + "scriptId":"u84"}, + "15d3088fe69644f1904ab935036026cc":{ + "scriptId":"u85"}, + "3f34304d3cff47d2a353e493fcdb8108":{ + "scriptId":"u86"}, + "3498f75d9e904e44ad51ee751ed31aa8":{ + "scriptId":"u87"}, + "3b9cff3480274936ad2813c362bd2b0c":{ + "scriptId":"u88"}, + "41218de567a94fb998118db0b2ebbca4":{ + "scriptId":"u89"}, + "44bc08475b9842d5909dd68ce9bff324":{ + "scriptId":"u90"}, + "cc310604992f4a90a17afbdc7cbc3a6c":{ + "scriptId":"u91"}, + "369b3f4223d64fc6b77cd0b8d73af5d6":{ + "scriptId":"u92"}, + "f924041eb58043b7a16f9e8902e2606c":{ + "scriptId":"u93"}, + "6ed089d017414650890468d6ef69682a":{ + "scriptId":"u94"}, + "c038583e391a4422bd596b698e885b89":{ + "scriptId":"u95"}, + "92e8c502d1104c8aa5fe36fcb93b1698":{ + "scriptId":"u96"}, + "49f1ca9fc6774cf09d4185db382e9a0d":{ + "scriptId":"u97"}, + "e60521cd6e1643818459d3fd60579f2f":{ + "scriptId":"u98"}, + "ecbd2b606ca8497591dace7c5932bba5":{ + "scriptId":"u99"}, + "66cc0e225b0e4704bb0e9ebdfd6b4f71":{ + "scriptId":"u100"}, + "41d40b3076e44077be98d32698735c22":{ + "scriptId":"u101"}, + "a65038400ac243b1ad3f923fd2e4dc43":{ + "scriptId":"u102"}, + "bd999ff6b8b040e597429f9ff50c635a":{ + "scriptId":"u103"}, + "35116e6a86d847c991637cba31c2315e":{ + "scriptId":"u104"}, + "c2474e620a394e8fa037b4f8dba6e9f0":{ + "scriptId":"u105"}, + "bcdd051e72a34b87be62af21d72642e3":{ + "scriptId":"u106"}, + "76981141f7d84ab0bce50e5f1795a1f2":{ + "scriptId":"u107"}, + "ed99239c8cec4f8aad4adcdaf927560f":{ + "scriptId":"u108"}, + "79841d08d67242e199cd12017669dc30":{ + "scriptId":"u109"}, + "38b5c38162414a97b905ed369dd15fbf":{ + "scriptId":"u110"}, + "64977fdfae2b4060b7eec777d8806074":{ + "scriptId":"u111"}, + "fb7c6f7c07cc4cfcb1a0e55e3a2ef382":{ + "scriptId":"u112"}, + "3ce311180ed4423381af2532fce63333":{ + "scriptId":"u113"}, + "dbbfd3a4172c4e1fb4ed2253a1773a18":{ + "scriptId":"u114"}, + "c30b1f4607494249babaec401e782e34":{ + "scriptId":"u115"}, + "7cc641507b91475fbf4c16bbd5548509":{ + "scriptId":"u116"}, + "ac482c971862417ea78143e0bb860056":{ + "scriptId":"u117"}, + "384ac2c0ebbc4bf58ec2e7393b5016fe":{ + "scriptId":"u118"}, + "6cb3700da90f465f8d119d327c1c1a04":{ + "scriptId":"u119"}, + "3582d6af72e44d7fb1162ae8f6349ca2":{ + "scriptId":"u120"}, + "f9581a234488408dbcfe5a8a7b57dd70":{ + "scriptId":"u121"}, + "26252656cdb64c6693a8d6f129286518":{ + "scriptId":"u122"}, + "c8f6808f4e45471ab5fbc265383b5442":{ + "scriptId":"u123"}, + "d6f9bc5bcde84438a32a145a9ed2eca6":{ + "scriptId":"u124"}, + "ca8d19f49e3440dc8c344c57be26bf73":{ + "scriptId":"u125"}, + "acebad2d82234f4883b7a19d940fd2c5":{ + "scriptId":"u126"}, + "20617400bf55411a959bba1f4f1db69d":{ + "scriptId":"u127"}, + "580a35166a8249c19af26cf17ea8885c":{ + "scriptId":"u128"}, + "f97ef2d1e49b460d89e6745f4022f5cb":{ + "scriptId":"u129"}, + "fe90a02e9863498cbdfceeaa5b422049":{ + "scriptId":"u130"}, + "23d987a31be44d9896afe23917b22e7f":{ + "scriptId":"u131"}, + "840e7057a0aa4269bd6c65a0b1ffb5fd":{ + "scriptId":"u132"}, + "1a7470c1658b4cb599ee1283785c52e5":{ + "scriptId":"u133"}, + "d4fb3c415776424cbcbd2912ba13e190":{ + "scriptId":"u134"}, + "5d466deb1faf4a579b402f7603e73d17":{ + "scriptId":"u135"}, + "026d76a45dcf4c23a807874a75a07d5f":{ + "scriptId":"u136"}, + "4980935dbf024fcc9fa02d4617c52650":{ + "scriptId":"u137"}, + "9f15a14641dc4bf5ac80ce1801d069bf":{ + "scriptId":"u138"}, + "070ae02fbb9b43ba849407570b741b2a":{ + "scriptId":"u139"}, + "df54babac3294ba4988423e0f4b5033c":{ + "scriptId":"u140"}, + "687d6ab4ae4f4b8fa0b506a6fd7abb29":{ + "scriptId":"u141"}, + "4115ba7532ed4523aa67d701043af2da":{ + "scriptId":"u142"}, + "140a1fc4e3dd415eaf7342a0007ec45c":{ + "scriptId":"u143"}, + "3668c98d86a34cda8f13af4d4d2a3277":{ + "scriptId":"u144"}, + "55444730412946059ca669adefae3f82":{ + "scriptId":"u145"}, + "065a2198ec234314865116e95f93ff60":{ + "scriptId":"u146"}, + "290331768cf54cc8952ae29163aeffac":{ + "scriptId":"u147"}, + "c50185b3fc97431eb8e5cdba6c802fb8":{ + "scriptId":"u148"}, + "bf8a791099234a87afe63317e0c600d1":{ + "scriptId":"u149"}, + "15b65d4cffdc418da42dda1806141c29":{ + "scriptId":"u150"}, + "94389c42a9ff414b8ba28e2c212a3e82":{ + "scriptId":"u151"}, + "0b053bcbd47d4938a82245ff41948ee0":{ + "scriptId":"u152"}, + "cd5be3bc42e3480ba5b205511ea5a1a9":{ + "scriptId":"u153"}, + "590f7851bb2f47958352e7756505bd49":{ + "scriptId":"u154"}, + "a00de373dc654316bb882c44ab5a235a":{ + "scriptId":"u155"}, + "92744433f0f94de2b5cdcac5d8b12865":{ + "scriptId":"u156"}, + "d8a67286e1804ccfb9d3f4504efc1f42":{ + "scriptId":"u157"}, + "c9db6526dd3e4a9684a5325f6294d101":{ + "scriptId":"u158"}, + "f548f280ad0641b4b8ddf96a813313b8":{ + "scriptId":"u159"}, + "a340b5e9cd554fcdadd516844e712e08":{ + "scriptId":"u160"}, + "001b9a89579243f2ad5f799dd2374b01":{ + "scriptId":"u161"}, + "14de4101d3c545d7bb25604a02a2d4a3":{ + "scriptId":"u162"}, + "70c2c6cd67d2404899b174c7305b0ad9":{ + "scriptId":"u163"}, + "6e94f30b8f6142e68cf2298da7dfe81d":{ + "scriptId":"u164"}, + "b20c98b70cdb4eba81991bf292cf3e99":{ + "scriptId":"u165"}, + "7a0a20003595466ba7dac299fbf948e7":{ + "scriptId":"u166"}, + "debb956c4014423db3ef72b485a97d51":{ + "scriptId":"u167"}, + "33093aea74e74502a1637b426ba420fa":{ + "scriptId":"u168"}, + "d6c0ee557a7d4f3eafd9f7739d627ab9":{ + "scriptId":"u169"}, + "51dfe16a508a452f9cab1f54ac075923":{ + "scriptId":"u170"}, + "3a1a98b036e543f988d7f1f492ce2ea4":{ + "scriptId":"u171"}, + "afe5a5b2005540cd8bf95abffb1887a4":{ + "scriptId":"u172"}, + "26f3cc96787549c8b360d074df8d0de2":{ + "scriptId":"u173"}, + "4e19661fe5cc4172bb6ba6465f983dc6":{ + "scriptId":"u174"}, + "e1ee6ba67397411b84aeaf8a0d77c1fe":{ + "scriptId":"u175"}, + "808a0a1b639045ad87eaf9e5babb2a4b":{ + "scriptId":"u176"}, + "5d5ccd9d649b4ca79ef9387f78c4921e":{ + "scriptId":"u177"}, + "99f6747a65654046bc421a47a1628907":{ + "scriptId":"u178"}, + "d12195f695764a52b7b35a1811015d7e":{ + "scriptId":"u179"}, + "32eac68326bd4dc1938dc2181b8a74af":{ + "scriptId":"u180"}, + "7cf2f41bca10470c8fc017abe654b42a":{ + "scriptId":"u181"}, + "d3222df042554b4395632c73253a099d":{ + "scriptId":"u182"}, + "8aed68041c3f4bffae931fc6f9866099":{ + "scriptId":"u183"}, + "5f3ac8534730404093f3fcc4c482a74c":{ + "scriptId":"u184"}, + "9d2d0eedd3d046e6952cf5ede0df44e1":{ + "scriptId":"u185"}, + "cbde2d12627b4be6b9ffa6f144210312":{ + "scriptId":"u186"}, + "37641a458bda4e008ffdb43eb3aa2c44":{ + "scriptId":"u187"}, + "76dc956c952743f9a192ab820d04400f":{ + "scriptId":"u188"}, + "cc852867bc1b46a39603205fbfa33e1b":{ + "scriptId":"u189"}, + "eac8eb4d49e34942b62c4e1f6d2269ac":{ + "scriptId":"u190"}, + "84666dbff3eb4fe184f68428fa687748":{ + "scriptId":"u191"}, + "65aac9f9206742e9b2cb1e68b76c4992":{ + "scriptId":"u192"}, + "15fbcb3a2f604a58b7ec71dc5c3baddb":{ + "scriptId":"u193"}, + "14d740e05b394217bd679131f9eec0f0":{ + "scriptId":"u194"}, + "09e286067cd54f0cbc5da102ff6fc5fd":{ + "scriptId":"u195"}, + "16d2e74080bf4a5682eb12680293177c":{ + "scriptId":"u196"}, + "98234ee4e39b4fd4a1042d924bf66c65":{ + "scriptId":"u197"}, + "da2c9dcd7d9c40c9a5cb4d47c5b2a50f":{ + "scriptId":"u198"}, + "9627f186853c48adb428eb89f274243b":{ + "scriptId":"u199"}, + "b1bcf5ae6f0c488fac3487e47c3a06ee":{ + "scriptId":"u200"}, + "f192620d2a46452b837cb68dad78e581":{ + "scriptId":"u201"}, + "3146ceae3c9a4343af74f49311c589c3":{ + "scriptId":"u202"}, + "8dcd26d8076c4962bf163c17cd6c81e4":{ + "scriptId":"u203"}, + "8c46b872d26f4878b00bce9d486e1c27":{ + "scriptId":"u204"}, + "aad3cfb2e96c42009cf673208d4bf408":{ + "scriptId":"u205"}, + "c6112afef4144feea690476ab94e59ac":{ + "scriptId":"u206"}, + "8bb1e34650a94d90bc6cec931788afa5":{ + "scriptId":"u207"}, + "aac343a8dfe447feb28c573e0d16ea3b":{ + "scriptId":"u208"}, + "ddf0d714431046209f48db5047747c1e":{ + "scriptId":"u209"}, + "379448bf1894448895a1fca17b108549":{ + "scriptId":"u210"}, + "bcb90947d01843d393c5be58280de0ed":{ + "scriptId":"u211"}, + "d95a1bec58a4473d8cf930ffd3a43e34":{ + "scriptId":"u212"}, + "1ab8d15a830441c39d2a0e6a257895aa":{ + "scriptId":"u213"}, + "e9f725f474f94bb3a85f0f7a7164113b":{ + "scriptId":"u214"}}}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\350\256\242\345\215\225\350\257\246\346\203\205_-_\345\276\205\345\256\241\346\211\271/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\350\256\242\345\215\225\350\257\246\346\203\205_-_\345\276\205\345\256\241\346\211\271/styles.css" new file mode 100644 index 0000000..98e24e4 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\350\256\242\345\215\225\350\257\246\346\203\205_-_\345\276\205\345\256\241\346\211\271/styles.css" @@ -0,0 +1,2621 @@ +body { + margin:0px; + background-image:none; + position:static; + left:auto; + width:378px; + margin-left:0; + margin-right:0; + text-align:left; +} +#base { + position:absolute; + z-index:0; +} +#u0 { + position:absolute; + left:0px; + top:116px; + width:8px; + height:36px; +} +#u0_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:36px; +} +#u1 { + position:absolute; + left:2px; + top:10px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u2 { + position:absolute; + left:0px; + top:192px; + width:8px; + height:27px; +} +#u2_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:27px; +} +#u3 { + position:absolute; + left:2px; + top:6px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u4 { + position:absolute; + left:0px; + top:255px; + width:8px; + height:27px; +} +#u4_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:27px; +} +#u5 { + position:absolute; + left:2px; + top:6px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u6 { + position:absolute; + left:259px; + top:0px; + width:60px; + height:10px; +} +#u6_img { + position:absolute; + left:0px; + top:0px; + width:60px; + height:10px; +} +#u7 { + position:absolute; + left:2px; + top:-3px; + width:56px; + visibility:hidden; + word-wrap:break-word; +} +#u8 { + position:absolute; + left:6px; + top:6px; + width:372px; + height:796px; +} +#u8_img { + position:absolute; + left:0px; + top:0px; + width:372px; + height:796px; +} +#u9 { + position:absolute; + left:2px; + top:390px; + width:368px; + visibility:hidden; + word-wrap:break-word; +} +#u10 { + position:absolute; + left:32px; + top:120px; + width:320px; + height:568px; +} +#u10_img { + position:absolute; + left:0px; + top:0px; + width:320px; + height:568px; +} +#u11 { + position:absolute; + left:2px; + top:276px; + width:316px; + visibility:hidden; + word-wrap:break-word; +} +#u12 { + position:absolute; + left:157px; + top:66px; + width:70px; + height:14px; +} +#u12_img { + position:absolute; + left:0px; + top:0px; + width:70px; + height:14px; +} +#u13 { + position:absolute; + left:2px; + top:-1px; + width:66px; + visibility:hidden; + word-wrap:break-word; +} +#u14 { + position:absolute; + left:185px; + top:40px; + width:14px; + height:14px; +} +#u14_img { + position:absolute; + left:0px; + top:0px; + width:14px; + height:14px; +} +#u15 { + position:absolute; + left:2px; + top:-1px; + width:10px; + visibility:hidden; + word-wrap:break-word; +} +#u16 { + position:absolute; + left:156px; + top:704px; + width:72px; + height:72px; +} +#u16_img { + position:absolute; + left:0px; + top:0px; + width:72px; + height:72px; +} +#u17 { + position:absolute; + left:2px; + top:28px; + width:68px; + visibility:hidden; + word-wrap:break-word; +} +#u18 { + position:absolute; + left:32px; + top:140px; + width:319px; + height:60px; +} +#u18_img { + position:absolute; + left:0px; + top:0px; + width:319px; + height:60px; +} +#u19 { + position:absolute; + left:2px; + top:22px; + width:315px; + visibility:hidden; + word-wrap:break-word; +} +#u20 { + position:absolute; + left:40px; + top:159px; + width:22px; + height:22px; +} +#u20_img { + position:absolute; + left:0px; + top:0px; + width:22px; + height:22px; +} +#u21 { + position:absolute; + left:2px; + top:3px; + width:18px; + visibility:hidden; + word-wrap:break-word; +} +#u22 { + position:absolute; + left:151px; + top:158px; + width:101px; + height:24px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + font-size:20px; +} +#u22_img { + position:absolute; + left:0px; + top:0px; + width:101px; + height:24px; +} +#u23 { + position:absolute; + left:0px; + top:0px; + width:101px; + white-space:nowrap; +} +#u24 { + position:absolute; + left:58px; + top:205px; + width:225px; + height:60px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u24_img { + position:absolute; + left:0px; + top:0px; + width:225px; + height:60px; +} +#u25 { + position:absolute; + left:0px; + top:0px; + width:225px; + white-space:nowrap; +} +#u26 { + position:absolute; + left:32px; + top:262px; + width:319px; + height:10px; +} +#u26_start { + position:absolute; + left:0px; + top:-5px; + width:18px; + height:20px; +} +#u26_end { + position:absolute; + left:302px; + top:-5px; + width:18px; + height:20px; +} +#u26_line { + position:absolute; + left:0px; + top:5px; + width:319px; + height:1px; +} +#u27 { + position:absolute; + left:42px; + top:275px; + width:300px; + height:55px; + overflow:hidden; +} +#u27_state0 { + position:absolute; + left:0px; + top:0px; + width:300px; + height:55px; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; +} +#u27_state0_content { + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u28 { + position:absolute; + left:0px; + top:0px; + width:300px; + height:55px; +} +#u28_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:55px; +} +#u29 { + position:absolute; + left:2px; + top:20px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u30 { + position:absolute; + left:8px; + top:14px; + width:115px; + height:27px; + font-family:'微软雅黑 Regular', '微软雅黑'; + font-size:20px; +} +#u30_img { + position:absolute; + left:0px; + top:0px; + width:115px; + height:27px; +} +#u31 { + position:absolute; + left:0px; + top:0px; + width:115px; + white-space:nowrap; +} +#u27_state1 { + position:absolute; + left:0px; + top:0px; + width:300px; + height:55px; + visibility:hidden; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; +} +#u27_state1_content { + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u32 { + position:absolute; + left:0px; + top:0px; + width:300px; + height:55px; +} +#u32_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:55px; +} +#u33 { + position:absolute; + left:2px; + top:20px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u34 { + position:absolute; + left:8px; + top:14px; + width:115px; + height:27px; + font-family:'微软雅黑 Regular', '微软雅黑'; + font-size:20px; +} +#u34_img { + position:absolute; + left:0px; + top:0px; + width:115px; + height:27px; +} +#u35 { + position:absolute; + left:0px; + top:0px; + width:115px; + white-space:nowrap; +} +#u36 { + position:absolute; + left:190px; + top:15px; + width:100px; + height:25px; +} +#u36_input { + position:absolute; + left:0px; + top:0px; + width:100px; + height:25px; + background-image:url(../../resources/images/transparent.gif); + text-align:center; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u37 { + position:absolute; + left:42px; + top:275px; + width:300px; + height:55px; + overflow:hidden; + background-image:url('../../resources/images/transparent.gif'); +} +#u38 { + position:absolute; + left:42px; + top:630px; + width:300px; + height:40px; +} +#u38_input { + position:absolute; + left:0px; + top:0px; + width:300px; + height:40px; + background-image:url(../../resources/images/transparent.gif); + text-align:center; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u39 { + position:absolute; + left:42px; + top:330px; + width:300px; + height:290px; + overflow:hidden; +} +#u39_state0 { + position:absolute; + left:0px; + top:0px; + width:300px; + height:290px; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; +} +#u39_state0_content { + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u40 { + position:absolute; + left:0px; + top:180px; + width:300px; + height:60px; +} +#u40_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u41 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u42 { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u42_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u43 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u44 { + position:absolute; + left:8px; + top:0px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u44_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u45 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u46 { + position:absolute; + left:232px; + top:0px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u46_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u47 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u48 { + position:absolute; + left:8px; + top:41px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u48_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u49 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u50 { + position:absolute; + left:256px; + top:41px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u50_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u51 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u52 { + position:absolute; + left:0px; + top:60px; + width:300px; + height:60px; +} +#u52_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u53 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u54 { + position:absolute; + left:8px; + top:60px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u54_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u55 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u56 { + position:absolute; + left:232px; + top:60px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u56_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u57 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u58 { + position:absolute; + left:8px; + top:101px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u58_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u59 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u60 { + position:absolute; + left:260px; + top:101px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u60_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u61 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u62 { + position:absolute; + left:0px; + top:120px; + width:300px; + height:60px; +} +#u62_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u63 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u64 { + position:absolute; + left:8px; + top:120px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u64_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u65 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u66 { + position:absolute; + left:232px; + top:120px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u66_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u67 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u68 { + position:absolute; + left:8px; + top:161px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u68_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u69 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u70 { + position:absolute; + left:256px; + top:161px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u70_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u71 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u72 { + position:absolute; + left:8px; + top:180px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u72_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u73 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u74 { + position:absolute; + left:8px; + top:221px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u74_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u75 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u76 { + position:absolute; + left:256px; + top:221px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u76_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u77 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u78 { + position:absolute; + left:232px; + top:182px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u78_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u79 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u80 { + position:absolute; + left:8px; + top:255px; + width:100px; + height:25px; +} +#u80_input { + position:absolute; + left:0px; + top:0px; + width:100px; + height:25px; + background-image:url(../../resources/images/transparent.gif); + text-align:center; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u81 { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; + overflow:hidden; + background-image:url('../../resources/images/transparent.gif'); +} +#u39_state1 { + position:absolute; + left:0px; + top:0px; + width:300px; + height:290px; + visibility:hidden; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; +} +#u39_state1_content { + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u82 { + position:absolute; + left:8px; + top:41px; + width:73px; + height:22px; + font-size:18px; +} +#u82_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u83 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u84 { + position:absolute; + left:8px; + top:76px; + width:73px; + height:22px; + font-size:18px; +} +#u84_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u85 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u86 { + position:absolute; + left:92px; + top:73px; + width:200px; + height:25px; +} +#u86_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:25px; + background-image:; + text-align:left; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u87 { + position:absolute; + left:8px; + top:144px; + width:284px; + height:30px; +} +#u87_input { + position:absolute; + left:0px; + top:0px; + width:284px; + height:30px; + background-image:url(../../resources/images/transparent.gif); + text-align:center; + font-family:'微软雅黑'; + font-size:20px; + color:#000000; + font-weight:bold; + font-style:normal; + text-decoration:none; +} +#u88 { + position:absolute; + left:8px; + top:9px; + width:73px; + height:22px; + font-size:18px; +} +#u88_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u89 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u90 { + position:absolute; + left:8px; + top:111px; + width:72px; + height:22px; + font-size:18px; +} +#u90_img { + position:absolute; + left:0px; + top:0px; + width:72px; + height:22px; +} +#u91 { + position:absolute; + left:0px; + top:0px; + width:72px; + white-space:nowrap; +} +#u92 { + position:absolute; + left:92px; + top:106px; + width:200px; + height:27px; +} +#u92_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:27px; + background-image:; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u93 { + position:absolute; + left:0px; + top:180px; + width:300px; + height:60px; +} +#u93_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u94 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u95 { + position:absolute; + left:8px; + top:180px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u95_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u96 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u97 { + position:absolute; + left:8px; + top:221px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u97_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u98 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u99 { + position:absolute; + left:256px; + top:220px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u99_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u100 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u101 { + position:absolute; + left:232px; + top:182px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u101_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u102 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u103 { + position:absolute; + left:0px; + top:240px; + width:300px; + height:60px; +} +#u103_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u104 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u105 { + position:absolute; + left:8px; + top:240px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u105_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u106 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u107 { + position:absolute; + left:8px; + top:281px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u107_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u108 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u109 { + position:absolute; + left:256px; + top:278px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u109_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u110 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u111 { + position:absolute; + left:232px; + top:242px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u111_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u112 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u113 { + position:absolute; + left:0px; + top:300px; + width:300px; + height:60px; +} +#u113_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u114 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u115 { + position:absolute; + left:8px; + top:300px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u115_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u116 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u117 { + position:absolute; + left:8px; + top:341px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u117_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u118 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u119 { + position:absolute; + left:256px; + top:339px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u119_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u120 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u121 { + position:absolute; + left:232px; + top:302px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u121_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u122 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u123 { + position:absolute; + left:91px; + top:12px; + width:40px; + height:16px; +} +#u123_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:16px; +} +#u124 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u125 { + position:absolute; + left:91px; + top:44px; + width:85px; + height:16px; +} +#u125_img { + position:absolute; + left:0px; + top:0px; + width:85px; + height:16px; +} +#u126 { + position:absolute; + left:0px; + top:0px; + width:85px; + white-space:nowrap; +} +#u39_state2 { + position:absolute; + left:0px; + top:0px; + width:300px; + height:290px; + visibility:hidden; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; +} +#u39_state2_content { + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u127 { + position:absolute; + left:0px; + top:180px; + width:300px; + height:60px; +} +#u127_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u128 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u129 { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u129_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u130 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u131 { + position:absolute; + left:8px; + top:0px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u131_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u132 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u133 { + position:absolute; + left:186px; + top:0px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u133_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u134 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u135 { + position:absolute; + left:8px; + top:41px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u135_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u136 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u137 { + position:absolute; + left:160px; + top:41px; + width:77px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u137_img { + position:absolute; + left:0px; + top:0px; + width:77px; + height:19px; +} +#u138 { + position:absolute; + left:0px; + top:0px; + width:77px; + white-space:nowrap; +} +#u139 { + position:absolute; + left:210px; + top:21px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u139_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u140 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u141 { + position:absolute; + left:0px; + top:60px; + width:300px; + height:60px; +} +#u141_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u142 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u143 { + position:absolute; + left:8px; + top:60px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u143_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u144 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u145 { + position:absolute; + left:232px; + top:60px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u145_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u146 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u147 { + position:absolute; + left:8px; + top:101px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u147_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u148 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u149 { + position:absolute; + left:206px; + top:101px; + width:77px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u149_img { + position:absolute; + left:0px; + top:0px; + width:77px; + height:19px; +} +#u150 { + position:absolute; + left:0px; + top:0px; + width:77px; + white-space:nowrap; +} +#u151 { + position:absolute; + left:256px; + top:81px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u151_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u152 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u153 { + position:absolute; + left:0px; + top:120px; + width:300px; + height:60px; +} +#u153_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u154 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u155 { + position:absolute; + left:8px; + top:120px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u155_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u156 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u157 { + position:absolute; + left:232px; + top:120px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u157_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u158 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u159 { + position:absolute; + left:8px; + top:161px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u159_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u160 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u161 { + position:absolute; + left:206px; + top:161px; + width:77px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u161_img { + position:absolute; + left:0px; + top:0px; + width:77px; + height:19px; +} +#u162 { + position:absolute; + left:0px; + top:0px; + width:77px; + white-space:nowrap; +} +#u163 { + position:absolute; + left:256px; + top:141px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u163_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u164 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u165 { + position:absolute; + left:8px; + top:180px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u165_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u166 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u167 { + position:absolute; + left:8px; + top:221px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u167_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u168 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u169 { + position:absolute; + left:206px; + top:221px; + width:77px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u169_img { + position:absolute; + left:0px; + top:0px; + width:77px; + height:19px; +} +#u170 { + position:absolute; + left:0px; + top:0px; + width:77px; + white-space:nowrap; +} +#u171 { + position:absolute; + left:256px; + top:201px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u171_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u172 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u173 { + position:absolute; + left:232px; + top:182px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u173_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u174 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u175 { + position:absolute; + left:8px; + top:255px; + width:100px; + height:25px; +} +#u175_input { + position:absolute; + left:0px; + top:0px; + width:100px; + height:25px; + background-image:url(../../resources/images/transparent.gif); + text-align:center; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u176 { + position:absolute; + left:256px; + top:19px; + width:35px; + height:30px; +} +#u176_img { + position:absolute; + left:0px; + top:0px; + width:35px; + height:30px; +} +#u177 { + position:absolute; + left:2px; + top:7px; + width:31px; + visibility:hidden; + word-wrap:break-word; +} +#u39_state3 { + position:absolute; + left:0px; + top:0px; + width:300px; + height:290px; + visibility:hidden; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; +} +#u39_state3_content { + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u178 { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u178_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u179 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u180 { + position:absolute; + left:8px; + top:0px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u180_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u181 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u182 { + position:absolute; + left:232px; + top:0px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u182_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u183 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u184 { + position:absolute; + left:8px; + top:41px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u184_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u185 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u186 { + position:absolute; + left:206px; + top:41px; + width:77px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u186_img { + position:absolute; + left:0px; + top:0px; + width:77px; + height:19px; +} +#u187 { + position:absolute; + left:0px; + top:0px; + width:77px; + white-space:nowrap; +} +#u188 { + position:absolute; + left:256px; + top:21px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u188_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u189 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u190 { + position:absolute; + left:0px; + top:60px; + width:300px; + height:60px; +} +#u190_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u191 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u192 { + position:absolute; + left:8px; + top:60px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u192_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u193 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u194 { + position:absolute; + left:232px; + top:60px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u194_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u195 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u196 { + position:absolute; + left:8px; + top:101px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u196_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u197 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u198 { + position:absolute; + left:206px; + top:101px; + width:77px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u198_img { + position:absolute; + left:0px; + top:0px; + width:77px; + height:19px; +} +#u199 { + position:absolute; + left:0px; + top:0px; + width:77px; + white-space:nowrap; +} +#u200 { + position:absolute; + left:256px; + top:81px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u200_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u201 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u202 { + position:absolute; + left:0px; + top:120px; + width:300px; + height:60px; +} +#u202_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u203 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u204 { + position:absolute; + left:8px; + top:120px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u204_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u205 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u206 { + position:absolute; + left:232px; + top:120px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u206_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u207 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u208 { + position:absolute; + left:8px; + top:161px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u208_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u209 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u210 { + position:absolute; + left:206px; + top:161px; + width:77px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u210_img { + position:absolute; + left:0px; + top:0px; + width:77px; + height:19px; +} +#u211 { + position:absolute; + left:0px; + top:0px; + width:77px; + white-space:nowrap; +} +#u212 { + position:absolute; + left:256px; + top:141px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u212_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u213 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u214 { + position:absolute; + left:8px; + top:190px; + width:100px; + height:25px; +} +#u214_input { + position:absolute; + left:0px; + top:0px; + width:100px; + height:25px; + background-image:url(../../resources/images/transparent.gif); + text-align:center; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\350\256\242\345\215\225\350\257\246\346\203\205_-_\346\234\210\345\272\246/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\350\256\242\345\215\225\350\257\246\346\203\205_-_\346\234\210\345\272\246/data.js" new file mode 100644 index 0000000..7e33c22 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\350\256\242\345\215\225\350\257\246\346\203\205_-_\346\234\210\345\272\246/data.js" @@ -0,0 +1,1900 @@ +$axure.loadCurrentPage({ + "url":"订单详情_-_月度.html", + "generationDate":new Date(1416993075484.38), + "isCanvasEnabled":false, + "variables":["OnLoadVariable"], + "page":{ + "packageId":"6278f8a3cc524435b30ad27824f2ebd2", + "type":"Axure:Page", + "name":"订单详情 - 月度", + "notes":{ +}, + "style":{ + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "pageAlignment":"near", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "image":null, + "imageHorizontalAlignment":"near", + "imageVerticalAlignment":"near", + "imageRepeat":"auto", + "favicon":null, + "sketchFactor":"0", + "colorStyle":"appliedColor", + "fontName":"应用字体", + "borderWidth":"0"}, + "adaptiveStyles":{ +}, + "interactionMap":{ +}, + "diagram":{ + "objects":[{ + "id":"d842fde39faa4366bd0f963e96502100", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":116}, + "size":{ + "width":8, + "height":36}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"4a5b0dbbf4e44628a9ffec3cd215fae2", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":116}, + "size":{ + "width":8, + "height":36}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u0.png"}}, +{ + "id":"9daf6d55b04745daba90de59aef621a5", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":192}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"e8843f8187224e23aac571bf5e4f7897", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":192}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u2.png"}}, +{ + "id":"a3545e2f44144c9f8b3cde562836941c", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":255}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d64d7c88b4e24ca5a57dcf1abc1fda59", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":255}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u2.png"}}, +{ + "id":"8f8e7c2d8b0a443a9f3aa541fe7a76a9", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":259, + "y":0}, + "size":{ + "width":60, + "height":10}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c80d718410384856a00c4bd88d4f4b68", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":259, + "y":0}, + "size":{ + "width":60, + "height":10}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u6.png"}}, +{ + "id":"6dbcbb1662cb4eb28d603bc1218ed75a", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":6, + "y":6}, + "size":{ + "width":372, + "height":796}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"52"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"15e156295048459fa4e7f963c1b54d8c", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":6, + "y":6}, + "size":{ + "width":372, + "height":796}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"52"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u8.png"}}, +{ + "id":"2b07e94b5d574f7b949e4e5fcd08df32", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":32, + "y":120}, + "size":{ + "width":320, + "height":568}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"f8d3f26df245494686f2edeecfe28b31", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":32, + "y":120}, + "size":{ + "width":320, + "height":568}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u10.png"}}, +{ + "id":"4bf140d8f98b4cc28b3aa0ccc5cf01bd", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":157, + "y":66}, + "size":{ + "width":70, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"9d12353b86b944a3bd973e118641913c", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":157, + "y":66}, + "size":{ + "width":70, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u12.png"}}, +{ + "id":"8915a54ec148489f97dcfc5c4ee8e4fc", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":185, + "y":40}, + "size":{ + "width":14, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a73ea6cdc41e481490d517032b444545", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":185, + "y":40}, + "size":{ + "width":14, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u14.png"}}, +{ + "id":"cc7f1dec43c047b2a47377ff726c7432", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":156, + "y":704}, + "size":{ + "width":72, + "height":72}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"2dd00fed1c3643ea9be44ffcf44dbd9a", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":156, + "y":704}, + "size":{ + "width":72, + "height":72}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u16.png"}}, +{ + "id":"11b590146718491f8852fb97f097518c", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":32, + "y":140}, + "size":{ + "width":319, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"9a386857498a4a53ac7d38d3b67ffb88", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":32, + "y":140}, + "size":{ + "width":319, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_首次进入/u18.png"}}, +{ + "id":"a82550aeb01042048b903a1a8fb73107", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "location":{ + "x":40, + "y":159}, + "size":{ + "width":22, + "height":22}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a3f035f14f3b4834ac8a93917e3db1b7", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":40, + "y":159}, + "size":{ + "width":22, + "height":22}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 发放历史", + "target":{ + "targetType":"page", + "url":"发放历史.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true, + "images":{ + "normal~":"images/我要发工资_-_引导页_-_首次进入/u20.png"}}, +{ + "id":"834a67a56dd04290bc09587d231fdce2", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontSize":"20px", + "fontWeight":"700", + "location":{ + "x":151, + "y":158}, + "size":{ + "width":81, + "height":24}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"23c62c1306b24ce8b1ff5fe57db698b0", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontSize":"20px", + "fontWeight":"700", + "location":{ + "x":151, + "y":158}, + "size":{ + "width":81, + "height":24}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"14f853cadd1c42fa87260e2661133b48", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":58, + "y":205}, + "size":{ + "width":225, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"3a8196f1d5f14867874cfab2ce260adf", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":58, + "y":205}, + "size":{ + "width":225, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"d013bcb9990b46b7bf234e47c5335d21", + "label":"", + "type":"horizontalLine", + "styleType":"horizontalLine", + "visible":true, + "style":{ + "location":{ + "x":32, + "y":262}, + "size":{ + "width":319, + "height":10}, + "borderFill":{ + "fillType":"solid", + "color":0xFFCCCCCC}}, + "adaptiveStyles":{ +}, + "images":{ + "start~":"resources/images/transparent.gif", + "end~":"resources/images/transparent.gif", + "line~":"images/我用发工资_-_手动登记/u27_line.png"}}, +{ + "id":"3093d0d3ba8144169b90f0bf3c390502", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":42, + "y":350}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c9fbdb6b0fe14baabdcbbe537bd463c4", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":42, + "y":350}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"b53407ce4d34426d9b93c9bde6f0aac8", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":50, + "y":350}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"0007b05792284425b8240ce71bf21583", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":50, + "y":350}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"2171187d459b42149b2ad4829454fdfe", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":275, + "y":350}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"99d3dcc7f7414b088d1bd6f9ad310352", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":275, + "y":350}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"907a07a9a9804ca2ad2da27f8c58c2a5", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":50, + "y":391}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"95038ca21f524c9599eb1df878be405c", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":50, + "y":391}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"1e3040769fd843a281316d2b20137f04", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":299, + "y":391}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"e2dae981f3db4a268770eda5603da8eb", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":299, + "y":391}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"689eb41d62314051b5c35f2a5b6ccdbb", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":42, + "y":410}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"cd0f396bd1634e2b839ff0371248b681", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":42, + "y":410}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"3d08cc4e7a3842f8b39fb94802bdf8b2", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":50, + "y":410}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"0c996f47f2244ed7be8eebea559c4005", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":50, + "y":410}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"d1a6db209ede4017a343b6d6be5cdcf6", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":275, + "y":410}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"63e4467bf9d54a97b162bfef4b87eccc", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":275, + "y":410}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"55113453902e466c9e052e9166eb8353", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":50, + "y":451}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"88703a1d588845898bb7d869ac406239", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":50, + "y":451}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"57e81f9f58f84558addff7d10f1eb600", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":299, + "y":451}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"f270be1df29d41dd8993ba769f82d252", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":299, + "y":451}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"738338677b0e465cad1de6d462cf4c1c", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":42, + "y":470}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"0362da7ad2e1462f8a68abd6789e3c18", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":42, + "y":470}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"32df35bdeba446b7bc13474e5ecd23d0", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":50, + "y":470}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"0bdff4e0bdc4489383bfa7423eabdee4", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":50, + "y":470}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"195bdf5f649842d3b1e754b96dbe9f1e", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":275, + "y":470}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"878af1e3e891418db550988319c78205", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":275, + "y":470}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"26ee5c5aef354de4bcea88427571ecf9", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":50, + "y":511}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"e1899322eab14c4b94b40adc2c421388", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":50, + "y":511}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"1800d4632e194c31b41bc450747c6b6a", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":299, + "y":511}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"90b24ec546b249149068156e0550ac5f", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":299, + "y":511}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"7a3a4e8760c941c586e4bd3bf7ba4636", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":42, + "y":530}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"4aadf90608f24ebfbc6258b62a9028c1", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":42, + "y":530}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"0fe3ec0f0a534e278772602e7c613d48", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":50, + "y":530}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"0fd2e88931884790981cd031ab4b6a9f", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":50, + "y":530}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"a5ea15953e1e4274a4d3e159accd4788", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":271, + "y":534}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d80d5f3a63624deeb3df32ab570029ac", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":271, + "y":534}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"377eb01680f64a34aff6579acb23690b", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":50, + "y":571}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"1d41a423ee4543c8a30ace3a5432d7c3", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":50, + "y":571}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"4d59c4f29c114c66b884b3e58135e3e7", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":299, + "y":571}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"6f0ee61d8ad046cca956326c81709b77", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":299, + "y":571}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"3737834181f348b1bf85090f82d8fdba", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":42, + "y":590}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"be2de7d9fec2428d90279e9e4027a361", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":42, + "y":590}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"9e66d69512454567913783de272beec9", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":50, + "y":590}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"3cf6640e85a1475797b0c2c2749edf79", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":50, + "y":590}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"2ea0a4571cef4d1f8bb19c4540000b25", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":271, + "y":594}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"925a3a3e327e459a9088087badd842f8", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":271, + "y":594}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"73781744aef044b3bf2b579545a45ef4", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":50, + "y":631}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"640828e536de49a3a33356a458be1605", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":50, + "y":631}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"5dbeb185635e4928b991fb36afccc738", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":299, + "y":631}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"91d197a57fb2458880b4880b442cb851", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":299, + "y":631}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"26c821586417495ab881b52b62ebccb8", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":42, + "y":290}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ecb5043ff8dd4e77932ab1488c61a848", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":42, + "y":290}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"b5b788af974c41bab0a26e09faecba34", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":50, + "y":290}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"6a9e2047d78147c397bc0ada3e6ce2ac", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":50, + "y":290}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"c7fe305aa5b74cbea55d3615e9c7ae62", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":270, + "y":294}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"4daa62b566b44ebc9ba76dc604f2ee72", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":270, + "y":294}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"ef6086d954a94ac7b502c9fe517da409", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":50, + "y":331}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"36bff5405fdb482aa1c5136487ab6a9e", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":50, + "y":331}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"7b78d12598164156bef2e9fb4257a3b9", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":298, + "y":331}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"777910ec7b89496eb4aab422f9280443", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":298, + "y":331}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}]}}, + "masters":{ +}, + "objectPaths":{ + "d842fde39faa4366bd0f963e96502100":{ + "scriptId":"u0"}, + "4a5b0dbbf4e44628a9ffec3cd215fae2":{ + "scriptId":"u1"}, + "9daf6d55b04745daba90de59aef621a5":{ + "scriptId":"u2"}, + "e8843f8187224e23aac571bf5e4f7897":{ + "scriptId":"u3"}, + "a3545e2f44144c9f8b3cde562836941c":{ + "scriptId":"u4"}, + "d64d7c88b4e24ca5a57dcf1abc1fda59":{ + "scriptId":"u5"}, + "8f8e7c2d8b0a443a9f3aa541fe7a76a9":{ + "scriptId":"u6"}, + "c80d718410384856a00c4bd88d4f4b68":{ + "scriptId":"u7"}, + "6dbcbb1662cb4eb28d603bc1218ed75a":{ + "scriptId":"u8"}, + "15e156295048459fa4e7f963c1b54d8c":{ + "scriptId":"u9"}, + "2b07e94b5d574f7b949e4e5fcd08df32":{ + "scriptId":"u10"}, + "f8d3f26df245494686f2edeecfe28b31":{ + "scriptId":"u11"}, + "4bf140d8f98b4cc28b3aa0ccc5cf01bd":{ + "scriptId":"u12"}, + "9d12353b86b944a3bd973e118641913c":{ + "scriptId":"u13"}, + "8915a54ec148489f97dcfc5c4ee8e4fc":{ + "scriptId":"u14"}, + "a73ea6cdc41e481490d517032b444545":{ + "scriptId":"u15"}, + "cc7f1dec43c047b2a47377ff726c7432":{ + "scriptId":"u16"}, + "2dd00fed1c3643ea9be44ffcf44dbd9a":{ + "scriptId":"u17"}, + "11b590146718491f8852fb97f097518c":{ + "scriptId":"u18"}, + "9a386857498a4a53ac7d38d3b67ffb88":{ + "scriptId":"u19"}, + "a82550aeb01042048b903a1a8fb73107":{ + "scriptId":"u20"}, + "a3f035f14f3b4834ac8a93917e3db1b7":{ + "scriptId":"u21"}, + "834a67a56dd04290bc09587d231fdce2":{ + "scriptId":"u22"}, + "23c62c1306b24ce8b1ff5fe57db698b0":{ + "scriptId":"u23"}, + "14f853cadd1c42fa87260e2661133b48":{ + "scriptId":"u24"}, + "3a8196f1d5f14867874cfab2ce260adf":{ + "scriptId":"u25"}, + "d013bcb9990b46b7bf234e47c5335d21":{ + "scriptId":"u26"}, + "3093d0d3ba8144169b90f0bf3c390502":{ + "scriptId":"u27"}, + "c9fbdb6b0fe14baabdcbbe537bd463c4":{ + "scriptId":"u28"}, + "b53407ce4d34426d9b93c9bde6f0aac8":{ + "scriptId":"u29"}, + "0007b05792284425b8240ce71bf21583":{ + "scriptId":"u30"}, + "2171187d459b42149b2ad4829454fdfe":{ + "scriptId":"u31"}, + "99d3dcc7f7414b088d1bd6f9ad310352":{ + "scriptId":"u32"}, + "907a07a9a9804ca2ad2da27f8c58c2a5":{ + "scriptId":"u33"}, + "95038ca21f524c9599eb1df878be405c":{ + "scriptId":"u34"}, + "1e3040769fd843a281316d2b20137f04":{ + "scriptId":"u35"}, + "e2dae981f3db4a268770eda5603da8eb":{ + "scriptId":"u36"}, + "689eb41d62314051b5c35f2a5b6ccdbb":{ + "scriptId":"u37"}, + "cd0f396bd1634e2b839ff0371248b681":{ + "scriptId":"u38"}, + "3d08cc4e7a3842f8b39fb94802bdf8b2":{ + "scriptId":"u39"}, + "0c996f47f2244ed7be8eebea559c4005":{ + "scriptId":"u40"}, + "d1a6db209ede4017a343b6d6be5cdcf6":{ + "scriptId":"u41"}, + "63e4467bf9d54a97b162bfef4b87eccc":{ + "scriptId":"u42"}, + "55113453902e466c9e052e9166eb8353":{ + "scriptId":"u43"}, + "88703a1d588845898bb7d869ac406239":{ + "scriptId":"u44"}, + "57e81f9f58f84558addff7d10f1eb600":{ + "scriptId":"u45"}, + "f270be1df29d41dd8993ba769f82d252":{ + "scriptId":"u46"}, + "738338677b0e465cad1de6d462cf4c1c":{ + "scriptId":"u47"}, + "0362da7ad2e1462f8a68abd6789e3c18":{ + "scriptId":"u48"}, + "32df35bdeba446b7bc13474e5ecd23d0":{ + "scriptId":"u49"}, + "0bdff4e0bdc4489383bfa7423eabdee4":{ + "scriptId":"u50"}, + "195bdf5f649842d3b1e754b96dbe9f1e":{ + "scriptId":"u51"}, + "878af1e3e891418db550988319c78205":{ + "scriptId":"u52"}, + "26ee5c5aef354de4bcea88427571ecf9":{ + "scriptId":"u53"}, + "e1899322eab14c4b94b40adc2c421388":{ + "scriptId":"u54"}, + "1800d4632e194c31b41bc450747c6b6a":{ + "scriptId":"u55"}, + "90b24ec546b249149068156e0550ac5f":{ + "scriptId":"u56"}, + "7a3a4e8760c941c586e4bd3bf7ba4636":{ + "scriptId":"u57"}, + "4aadf90608f24ebfbc6258b62a9028c1":{ + "scriptId":"u58"}, + "0fe3ec0f0a534e278772602e7c613d48":{ + "scriptId":"u59"}, + "0fd2e88931884790981cd031ab4b6a9f":{ + "scriptId":"u60"}, + "a5ea15953e1e4274a4d3e159accd4788":{ + "scriptId":"u61"}, + "d80d5f3a63624deeb3df32ab570029ac":{ + "scriptId":"u62"}, + "377eb01680f64a34aff6579acb23690b":{ + "scriptId":"u63"}, + "1d41a423ee4543c8a30ace3a5432d7c3":{ + "scriptId":"u64"}, + "4d59c4f29c114c66b884b3e58135e3e7":{ + "scriptId":"u65"}, + "6f0ee61d8ad046cca956326c81709b77":{ + "scriptId":"u66"}, + "3737834181f348b1bf85090f82d8fdba":{ + "scriptId":"u67"}, + "be2de7d9fec2428d90279e9e4027a361":{ + "scriptId":"u68"}, + "9e66d69512454567913783de272beec9":{ + "scriptId":"u69"}, + "3cf6640e85a1475797b0c2c2749edf79":{ + "scriptId":"u70"}, + "2ea0a4571cef4d1f8bb19c4540000b25":{ + "scriptId":"u71"}, + "925a3a3e327e459a9088087badd842f8":{ + "scriptId":"u72"}, + "73781744aef044b3bf2b579545a45ef4":{ + "scriptId":"u73"}, + "640828e536de49a3a33356a458be1605":{ + "scriptId":"u74"}, + "5dbeb185635e4928b991fb36afccc738":{ + "scriptId":"u75"}, + "91d197a57fb2458880b4880b442cb851":{ + "scriptId":"u76"}, + "26c821586417495ab881b52b62ebccb8":{ + "scriptId":"u77"}, + "ecb5043ff8dd4e77932ab1488c61a848":{ + "scriptId":"u78"}, + "b5b788af974c41bab0a26e09faecba34":{ + "scriptId":"u79"}, + "6a9e2047d78147c397bc0ada3e6ce2ac":{ + "scriptId":"u80"}, + "c7fe305aa5b74cbea55d3615e9c7ae62":{ + "scriptId":"u81"}, + "4daa62b566b44ebc9ba76dc604f2ee72":{ + "scriptId":"u82"}, + "ef6086d954a94ac7b502c9fe517da409":{ + "scriptId":"u83"}, + "36bff5405fdb482aa1c5136487ab6a9e":{ + "scriptId":"u84"}, + "7b78d12598164156bef2e9fb4257a3b9":{ + "scriptId":"u85"}, + "777910ec7b89496eb4aab422f9280443":{ + "scriptId":"u86"}}}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\350\256\242\345\215\225\350\257\246\346\203\205_-_\346\234\210\345\272\246/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\350\256\242\345\215\225\350\257\246\346\203\205_-_\346\234\210\345\272\246/styles.css" new file mode 100644 index 0000000..83083cd --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\350\256\242\345\215\225\350\257\246\346\203\205_-_\346\234\210\345\272\246/styles.css" @@ -0,0 +1,1002 @@ +body { + margin:0px; + background-image:none; + position:static; + left:auto; + width:378px; + margin-left:0; + margin-right:0; + text-align:left; +} +#base { + position:absolute; + z-index:0; +} +#u0 { + position:absolute; + left:0px; + top:116px; + width:8px; + height:36px; +} +#u0_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:36px; +} +#u1 { + position:absolute; + left:2px; + top:10px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u2 { + position:absolute; + left:0px; + top:192px; + width:8px; + height:27px; +} +#u2_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:27px; +} +#u3 { + position:absolute; + left:2px; + top:6px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u4 { + position:absolute; + left:0px; + top:255px; + width:8px; + height:27px; +} +#u4_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:27px; +} +#u5 { + position:absolute; + left:2px; + top:6px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u6 { + position:absolute; + left:259px; + top:0px; + width:60px; + height:10px; +} +#u6_img { + position:absolute; + left:0px; + top:0px; + width:60px; + height:10px; +} +#u7 { + position:absolute; + left:2px; + top:-3px; + width:56px; + visibility:hidden; + word-wrap:break-word; +} +#u8 { + position:absolute; + left:6px; + top:6px; + width:372px; + height:796px; +} +#u8_img { + position:absolute; + left:0px; + top:0px; + width:372px; + height:796px; +} +#u9 { + position:absolute; + left:2px; + top:390px; + width:368px; + visibility:hidden; + word-wrap:break-word; +} +#u10 { + position:absolute; + left:32px; + top:120px; + width:320px; + height:568px; +} +#u10_img { + position:absolute; + left:0px; + top:0px; + width:320px; + height:568px; +} +#u11 { + position:absolute; + left:2px; + top:276px; + width:316px; + visibility:hidden; + word-wrap:break-word; +} +#u12 { + position:absolute; + left:157px; + top:66px; + width:70px; + height:14px; +} +#u12_img { + position:absolute; + left:0px; + top:0px; + width:70px; + height:14px; +} +#u13 { + position:absolute; + left:2px; + top:-1px; + width:66px; + visibility:hidden; + word-wrap:break-word; +} +#u14 { + position:absolute; + left:185px; + top:40px; + width:14px; + height:14px; +} +#u14_img { + position:absolute; + left:0px; + top:0px; + width:14px; + height:14px; +} +#u15 { + position:absolute; + left:2px; + top:-1px; + width:10px; + visibility:hidden; + word-wrap:break-word; +} +#u16 { + position:absolute; + left:156px; + top:704px; + width:72px; + height:72px; +} +#u16_img { + position:absolute; + left:0px; + top:0px; + width:72px; + height:72px; +} +#u17 { + position:absolute; + left:2px; + top:28px; + width:68px; + visibility:hidden; + word-wrap:break-word; +} +#u18 { + position:absolute; + left:32px; + top:140px; + width:319px; + height:60px; +} +#u18_img { + position:absolute; + left:0px; + top:0px; + width:319px; + height:60px; +} +#u19 { + position:absolute; + left:2px; + top:22px; + width:315px; + visibility:hidden; + word-wrap:break-word; +} +#u20 { + position:absolute; + left:40px; + top:159px; + width:22px; + height:22px; +} +#u20_img { + position:absolute; + left:0px; + top:0px; + width:22px; + height:22px; +} +#u21 { + position:absolute; + left:2px; + top:3px; + width:18px; + visibility:hidden; + word-wrap:break-word; +} +#u22 { + position:absolute; + left:151px; + top:158px; + width:81px; + height:24px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + font-size:20px; +} +#u22_img { + position:absolute; + left:0px; + top:0px; + width:81px; + height:24px; +} +#u23 { + position:absolute; + left:0px; + top:0px; + width:81px; + white-space:nowrap; +} +#u24 { + position:absolute; + left:58px; + top:205px; + width:225px; + height:60px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u24_img { + position:absolute; + left:0px; + top:0px; + width:225px; + height:60px; +} +#u25 { + position:absolute; + left:0px; + top:0px; + width:225px; + white-space:nowrap; +} +#u26 { + position:absolute; + left:32px; + top:262px; + width:319px; + height:10px; +} +#u26_start { + position:absolute; + left:0px; + top:-5px; + width:18px; + height:20px; +} +#u26_end { + position:absolute; + left:302px; + top:-5px; + width:18px; + height:20px; +} +#u26_line { + position:absolute; + left:0px; + top:5px; + width:319px; + height:1px; +} +#u27 { + position:absolute; + left:42px; + top:350px; + width:300px; + height:60px; +} +#u27_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u28 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u29 { + position:absolute; + left:50px; + top:350px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u29_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u30 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u31 { + position:absolute; + left:275px; + top:350px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u31_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u32 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u33 { + position:absolute; + left:50px; + top:391px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u33_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u34 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u35 { + position:absolute; + left:299px; + top:391px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u35_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u36 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u37 { + position:absolute; + left:42px; + top:410px; + width:300px; + height:60px; +} +#u37_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u38 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u39 { + position:absolute; + left:50px; + top:410px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u39_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u40 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u41 { + position:absolute; + left:275px; + top:410px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u41_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u42 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u43 { + position:absolute; + left:50px; + top:451px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u43_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u44 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u45 { + position:absolute; + left:299px; + top:451px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u45_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u46 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u47 { + position:absolute; + left:42px; + top:470px; + width:300px; + height:60px; +} +#u47_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u48 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u49 { + position:absolute; + left:50px; + top:470px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u49_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u50 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u51 { + position:absolute; + left:275px; + top:470px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u51_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u52 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u53 { + position:absolute; + left:50px; + top:511px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u53_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u54 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u55 { + position:absolute; + left:299px; + top:511px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u55_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u56 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u57 { + position:absolute; + left:42px; + top:530px; + width:300px; + height:60px; +} +#u57_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u58 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u59 { + position:absolute; + left:50px; + top:530px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u59_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u60 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u61 { + position:absolute; + left:271px; + top:534px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u61_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u62 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u63 { + position:absolute; + left:50px; + top:571px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u63_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u64 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u65 { + position:absolute; + left:299px; + top:571px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u65_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u66 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u67 { + position:absolute; + left:42px; + top:590px; + width:300px; + height:60px; +} +#u67_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u68 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u69 { + position:absolute; + left:50px; + top:590px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u69_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u70 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u71 { + position:absolute; + left:271px; + top:594px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u71_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u72 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u73 { + position:absolute; + left:50px; + top:631px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u73_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u74 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u75 { + position:absolute; + left:299px; + top:631px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u75_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u76 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u77 { + position:absolute; + left:42px; + top:290px; + width:300px; + height:60px; +} +#u77_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u78 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u79 { + position:absolute; + left:50px; + top:290px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u79_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u80 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u81 { + position:absolute; + left:270px; + top:294px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u81_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u82 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u83 { + position:absolute; + left:50px; + top:331px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u83_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u84 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u85 { + position:absolute; + left:298px; + top:331px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u85_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u86 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\350\256\242\345\215\225\350\257\246\346\203\205_-_\347\273\247\347\273\255\346\224\257\344\273\230/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\350\256\242\345\215\225\350\257\246\346\203\205_-_\347\273\247\347\273\255\346\224\257\344\273\230/data.js" new file mode 100644 index 0000000..96c0e1d --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\350\256\242\345\215\225\350\257\246\346\203\205_-_\347\273\247\347\273\255\346\224\257\344\273\230/data.js" @@ -0,0 +1,1727 @@ +$axure.loadCurrentPage({ + "url":"订单详情_-_继续支付.html", + "generationDate":new Date(1416993073109.38), + "isCanvasEnabled":false, + "variables":["OnLoadVariable"], + "page":{ + "packageId":"6589d7c413cf465a82fa1f08a21a3b94", + "type":"Axure:Page", + "name":"订单详情 - 继续支付", + "notes":{ +}, + "style":{ + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "pageAlignment":"near", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "image":null, + "imageHorizontalAlignment":"near", + "imageVerticalAlignment":"near", + "imageRepeat":"auto", + "favicon":null, + "sketchFactor":"0", + "colorStyle":"appliedColor", + "fontName":"应用字体", + "borderWidth":"0"}, + "adaptiveStyles":{ +}, + "interactionMap":{ +}, + "diagram":{ + "objects":[{ + "id":"6a5cbb68232f40acb5c3e0858733ca84", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":116}, + "size":{ + "width":8, + "height":36}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"b5769a3112234fb0b3761e3dd683afee", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":116}, + "size":{ + "width":8, + "height":36}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u0.png"}}, +{ + "id":"57756f4883d3441dbe796604299fd1f0", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":192}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"b7fe653f970e4e099081d556b145ed21", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":192}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u2.png"}}, +{ + "id":"dcf0de2d921d4f3b8083307025760ebf", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":255}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ffd63065ec2f4fb5b1c53f9a82e63dd5", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":255}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u2.png"}}, +{ + "id":"0c540222a88b4462af743bac61276ac9", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":259, + "y":0}, + "size":{ + "width":60, + "height":10}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"79b18fc3e3c740a093aab195f7b14350", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":259, + "y":0}, + "size":{ + "width":60, + "height":10}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u6.png"}}, +{ + "id":"c845e36f776d4dc8b48d3dc287689d54", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":6, + "y":6}, + "size":{ + "width":372, + "height":796}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"52"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"b936a4dfc06c4d9da3f0d9a810b88bab", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":6, + "y":6}, + "size":{ + "width":372, + "height":796}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"52"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u8.png"}}, +{ + "id":"b235dcfb44e94bcbaa8679772610c134", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":32, + "y":120}, + "size":{ + "width":320, + "height":568}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"f2b73ab907b148629083c75fde2b8136", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":32, + "y":120}, + "size":{ + "width":320, + "height":568}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u10.png"}}, +{ + "id":"306f6c6c38d64aa48e7c4dcd8bd4170b", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":157, + "y":66}, + "size":{ + "width":70, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"69656f9c9cab4ba3acd7f07c0afd6a9d", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":157, + "y":66}, + "size":{ + "width":70, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u12.png"}}, +{ + "id":"bbffcad0a67f4992b2abd6f6bea6fdc1", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":185, + "y":40}, + "size":{ + "width":14, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"3f1e1adc3f39478dbf44a845c540148d", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":185, + "y":40}, + "size":{ + "width":14, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u14.png"}}, +{ + "id":"7831f07b4024414985677565594a7538", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":156, + "y":704}, + "size":{ + "width":72, + "height":72}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"6e30630c6c9b441598986af2f8cd9bd4", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":156, + "y":704}, + "size":{ + "width":72, + "height":72}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u16.png"}}, +{ + "id":"5a65d55d0285424aa3e13abd37f20b91", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":500, + "y":860}, + "size":{ + "width":50, + "height":50}, + "borderFill":{ + "fillType":"solid", + "color":0xFFFFFFFF}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"5448c154777a42cda6a2daae482dfce3", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":500, + "y":860}, + "size":{ + "width":50, + "height":50}, + "borderFill":{ + "fillType":"solid", + "color":0xFFFFFFFF}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u18.png"}}, +{ + "id":"3381d777c31f40799b9e2070c1d2ada5", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":33, + "y":140}, + "size":{ + "width":318, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"0cf5adf501f442309b08dfdf6afec057", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":33, + "y":140}, + "size":{ + "width":318, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/支付/u20.png"}}, +{ + "id":"53a8942ac0fc4e0490d2e165d4a4d31d", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "location":{ + "x":40, + "y":159}, + "size":{ + "width":22, + "height":22}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"bb3954ba5cb5422598ea30b7c685368a", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":40, + "y":159}, + "size":{ + "width":22, + "height":22}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 发放历史", + "target":{ + "targetType":"page", + "url":"发放历史.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true, + "images":{ + "normal~":"images/我要发工资_-_引导页_-_首次进入/u20.png"}}, +{ + "id":"ccc31a295f244906b4f666387fa89bed", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontSize":"20px", + "fontWeight":"700", + "location":{ + "x":152, + "y":157}, + "size":{ + "width":81, + "height":24}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"70c0275d7dd242eb860f7584ede948d2", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontSize":"20px", + "fontWeight":"700", + "location":{ + "x":152, + "y":157}, + "size":{ + "width":81, + "height":24}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"ab1db93d1de8463b85221c765552b25f", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":68, + "y":204}, + "size":{ + "width":247, + "height":77}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"f3bcdb41b0b4478d8e9994d1b8c04b4a", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":68, + "y":204}, + "size":{ + "width":247, + "height":77}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"b277e65a7afc479da0e011fd10782abc", + "label":"", + "type":"horizontalLine", + "styleType":"horizontalLine", + "visible":true, + "style":{ + "location":{ + "x":42, + "y":294}, + "size":{ + "width":300, + "height":10}, + "borderFill":{ + "fillType":"solid", + "color":0xFFCCCCCC}}, + "adaptiveStyles":{ +}, + "images":{ + "start~":"resources/images/transparent.gif", + "end~":"resources/images/transparent.gif", + "line~":"images/支付/u28_line.png"}}, +{ + "id":"bb0295097d314b06ba6da895b9d00f28", + "label":"", + "type":"button", + "styleType":"button", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "fontSize":"20px", + "location":{ + "x":42, + "y":610}, + "size":{ + "width":300, + "height":40}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 付款", + "target":{ + "targetType":"page", + "url":"付款.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true}, +{ + "id":"dc3426fcd48b45f88c166bb64816e902", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":42, + "y":310}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"69c299ed79fe4f34b078d44dcd776cf5", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":42, + "y":310}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"bf918d0f22344dc38e1131377a3b106b", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":50, + "y":310}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d5db5e16c9b5421686461586d5ad680b", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":50, + "y":310}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"9304d47e7ea0473ea8c8fc807b89db8f", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":50, + "y":351}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"be7ef8a414a7467194cd8b6812d07e74", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":50, + "y":351}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"db00d4967ff44eceba56a589c994dfd6", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":249, + "y":351}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"5ed9af531de14e29ac55a09caeb6905c", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":249, + "y":351}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"d8148f18a7fc4c809fa6d0ac10947ef9", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":299, + "y":331}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a260831d06ef4f54a5e13e2dfe451989", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":299, + "y":331}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"d5eeaa8cea2547b1b9835f2a4556d2b3", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":42, + "y":370}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"5789e9ac5a724fecbe8b65ce18767a5c", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":42, + "y":370}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"f26e89b167ce4872aa1d628bc48d5d95", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":50, + "y":370}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"080324d2de3b48a2a2e9a6a78d11a596", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":50, + "y":370}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"f0ea662f8d5c4ab98df90bb54c241cfb", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":275, + "y":370}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"48804e7ac10d429b843c0c421c522292", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":275, + "y":370}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"e840ba4baf84478c8f54754e9b4692db", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":50, + "y":411}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"89538801a58649b890d3a712c150b728", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":50, + "y":411}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"a285a43dea294707b6684d4cac1c5bec", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":249, + "y":411}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ecd10e652e13463988c64da6f701d477", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":249, + "y":411}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"dc2f6fea06eb4f4983281089c8974b59", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":299, + "y":391}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"b0b5158db36d4e0a92eedb6d2196add4", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":299, + "y":391}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"e62b1da32ea4488da960b6da12cda92a", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":42, + "y":430}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"f5a4cf92e85a4067bf39686e9465aeb6", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":42, + "y":430}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"6043274c4aca4d79acad29d083ac8148", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":50, + "y":430}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"4c280e75560c4694b83f2a341edecfa0", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":50, + "y":430}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"5df2c23d6e824865ad6a49d21825aa1d", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":50, + "y":471}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"1046588e537a405bab5548037d0e29c9", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":50, + "y":471}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"8c6c2ba31f5a4093a46381c445b681d6", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":249, + "y":471}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"f0f1ffac798745cd9276c20a13a7be80", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":249, + "y":471}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"8f8b6486d1e044f9ad9179f659e568e2", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":299, + "y":451}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"91b2a4b0b7944d8d876a4b39e4f1d647", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":299, + "y":451}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"92e373cef00547bcbdc8d7acdc2a1e8f", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":42, + "y":490}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"488963713c724b20b7358dadb8c0c24b", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":42, + "y":490}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_非首次/u30.png"}}, +{ + "id":"10079dc83ece4dc7bfb426f5925ae560", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":50, + "y":490}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"4c18cb84c4b5493ea63f308aa3333fb8", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontWeight":"700", + "location":{ + "x":50, + "y":490}, + "size":{ + "width":40, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"360ec8294a3043458ff432621c6ce327", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":50, + "y":531}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c948832a371f4a9488bf13625fdfe20f", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":50, + "y":531}, + "size":{ + "width":89, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"d29871189a07453f9290702e7ab59185", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":249, + "y":531}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d50c2501779a4ee5a34f28ca40412ff9", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":249, + "y":531}, + "size":{ + "width":77, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"db2b17dd118b43e4ba7ac4e74a70217c", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":299, + "y":511}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"cbc5a3f7ddbd4978b3495c9b459f3054", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":299, + "y":511}, + "size":{ + "width":27, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"586da5c75f35446cbe33b7f78c0fd50d", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":271, + "y":492}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"064b554c11cd4b36a75f6e5eb47cbde0", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":271, + "y":492}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"6948365e3c694697a10a8c2b05b3ed98", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":271, + "y":401}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"b0534f1d64f74baf87f2b081e4923c20", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":271, + "y":401}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"4dd2d6c29cc64d89b600959d50596444", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":275, + "y":310}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d7ea87d3e3d7439880a22d12c762075a", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFFFF0000, + "opacity":1}, + "location":{ + "x":275, + "y":310}, + "size":{ + "width":55, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}]}}, + "masters":{ +}, + "objectPaths":{ + "6a5cbb68232f40acb5c3e0858733ca84":{ + "scriptId":"u0"}, + "b5769a3112234fb0b3761e3dd683afee":{ + "scriptId":"u1"}, + "57756f4883d3441dbe796604299fd1f0":{ + "scriptId":"u2"}, + "b7fe653f970e4e099081d556b145ed21":{ + "scriptId":"u3"}, + "dcf0de2d921d4f3b8083307025760ebf":{ + "scriptId":"u4"}, + "ffd63065ec2f4fb5b1c53f9a82e63dd5":{ + "scriptId":"u5"}, + "0c540222a88b4462af743bac61276ac9":{ + "scriptId":"u6"}, + "79b18fc3e3c740a093aab195f7b14350":{ + "scriptId":"u7"}, + "c845e36f776d4dc8b48d3dc287689d54":{ + "scriptId":"u8"}, + "b936a4dfc06c4d9da3f0d9a810b88bab":{ + "scriptId":"u9"}, + "b235dcfb44e94bcbaa8679772610c134":{ + "scriptId":"u10"}, + "f2b73ab907b148629083c75fde2b8136":{ + "scriptId":"u11"}, + "306f6c6c38d64aa48e7c4dcd8bd4170b":{ + "scriptId":"u12"}, + "69656f9c9cab4ba3acd7f07c0afd6a9d":{ + "scriptId":"u13"}, + "bbffcad0a67f4992b2abd6f6bea6fdc1":{ + "scriptId":"u14"}, + "3f1e1adc3f39478dbf44a845c540148d":{ + "scriptId":"u15"}, + "7831f07b4024414985677565594a7538":{ + "scriptId":"u16"}, + "6e30630c6c9b441598986af2f8cd9bd4":{ + "scriptId":"u17"}, + "5a65d55d0285424aa3e13abd37f20b91":{ + "scriptId":"u18"}, + "5448c154777a42cda6a2daae482dfce3":{ + "scriptId":"u19"}, + "3381d777c31f40799b9e2070c1d2ada5":{ + "scriptId":"u20"}, + "0cf5adf501f442309b08dfdf6afec057":{ + "scriptId":"u21"}, + "53a8942ac0fc4e0490d2e165d4a4d31d":{ + "scriptId":"u22"}, + "bb3954ba5cb5422598ea30b7c685368a":{ + "scriptId":"u23"}, + "ccc31a295f244906b4f666387fa89bed":{ + "scriptId":"u24"}, + "70c0275d7dd242eb860f7584ede948d2":{ + "scriptId":"u25"}, + "ab1db93d1de8463b85221c765552b25f":{ + "scriptId":"u26"}, + "f3bcdb41b0b4478d8e9994d1b8c04b4a":{ + "scriptId":"u27"}, + "b277e65a7afc479da0e011fd10782abc":{ + "scriptId":"u28"}, + "bb0295097d314b06ba6da895b9d00f28":{ + "scriptId":"u29"}, + "dc3426fcd48b45f88c166bb64816e902":{ + "scriptId":"u30"}, + "69c299ed79fe4f34b078d44dcd776cf5":{ + "scriptId":"u31"}, + "bf918d0f22344dc38e1131377a3b106b":{ + "scriptId":"u32"}, + "d5db5e16c9b5421686461586d5ad680b":{ + "scriptId":"u33"}, + "9304d47e7ea0473ea8c8fc807b89db8f":{ + "scriptId":"u34"}, + "be7ef8a414a7467194cd8b6812d07e74":{ + "scriptId":"u35"}, + "db00d4967ff44eceba56a589c994dfd6":{ + "scriptId":"u36"}, + "5ed9af531de14e29ac55a09caeb6905c":{ + "scriptId":"u37"}, + "d8148f18a7fc4c809fa6d0ac10947ef9":{ + "scriptId":"u38"}, + "a260831d06ef4f54a5e13e2dfe451989":{ + "scriptId":"u39"}, + "d5eeaa8cea2547b1b9835f2a4556d2b3":{ + "scriptId":"u40"}, + "5789e9ac5a724fecbe8b65ce18767a5c":{ + "scriptId":"u41"}, + "f26e89b167ce4872aa1d628bc48d5d95":{ + "scriptId":"u42"}, + "080324d2de3b48a2a2e9a6a78d11a596":{ + "scriptId":"u43"}, + "f0ea662f8d5c4ab98df90bb54c241cfb":{ + "scriptId":"u44"}, + "48804e7ac10d429b843c0c421c522292":{ + "scriptId":"u45"}, + "e840ba4baf84478c8f54754e9b4692db":{ + "scriptId":"u46"}, + "89538801a58649b890d3a712c150b728":{ + "scriptId":"u47"}, + "a285a43dea294707b6684d4cac1c5bec":{ + "scriptId":"u48"}, + "ecd10e652e13463988c64da6f701d477":{ + "scriptId":"u49"}, + "dc2f6fea06eb4f4983281089c8974b59":{ + "scriptId":"u50"}, + "b0b5158db36d4e0a92eedb6d2196add4":{ + "scriptId":"u51"}, + "e62b1da32ea4488da960b6da12cda92a":{ + "scriptId":"u52"}, + "f5a4cf92e85a4067bf39686e9465aeb6":{ + "scriptId":"u53"}, + "6043274c4aca4d79acad29d083ac8148":{ + "scriptId":"u54"}, + "4c280e75560c4694b83f2a341edecfa0":{ + "scriptId":"u55"}, + "5df2c23d6e824865ad6a49d21825aa1d":{ + "scriptId":"u56"}, + "1046588e537a405bab5548037d0e29c9":{ + "scriptId":"u57"}, + "8c6c2ba31f5a4093a46381c445b681d6":{ + "scriptId":"u58"}, + "f0f1ffac798745cd9276c20a13a7be80":{ + "scriptId":"u59"}, + "8f8b6486d1e044f9ad9179f659e568e2":{ + "scriptId":"u60"}, + "91b2a4b0b7944d8d876a4b39e4f1d647":{ + "scriptId":"u61"}, + "92e373cef00547bcbdc8d7acdc2a1e8f":{ + "scriptId":"u62"}, + "488963713c724b20b7358dadb8c0c24b":{ + "scriptId":"u63"}, + "10079dc83ece4dc7bfb426f5925ae560":{ + "scriptId":"u64"}, + "4c18cb84c4b5493ea63f308aa3333fb8":{ + "scriptId":"u65"}, + "360ec8294a3043458ff432621c6ce327":{ + "scriptId":"u66"}, + "c948832a371f4a9488bf13625fdfe20f":{ + "scriptId":"u67"}, + "d29871189a07453f9290702e7ab59185":{ + "scriptId":"u68"}, + "d50c2501779a4ee5a34f28ca40412ff9":{ + "scriptId":"u69"}, + "db2b17dd118b43e4ba7ac4e74a70217c":{ + "scriptId":"u70"}, + "cbc5a3f7ddbd4978b3495c9b459f3054":{ + "scriptId":"u71"}, + "586da5c75f35446cbe33b7f78c0fd50d":{ + "scriptId":"u72"}, + "064b554c11cd4b36a75f6e5eb47cbde0":{ + "scriptId":"u73"}, + "6948365e3c694697a10a8c2b05b3ed98":{ + "scriptId":"u74"}, + "b0534f1d64f74baf87f2b081e4923c20":{ + "scriptId":"u75"}, + "4dd2d6c29cc64d89b600959d50596444":{ + "scriptId":"u76"}, + "d7ea87d3e3d7439880a22d12c762075a":{ + "scriptId":"u77"}}}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\350\256\242\345\215\225\350\257\246\346\203\205_-_\347\273\247\347\273\255\346\224\257\344\273\230/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\350\256\242\345\215\225\350\257\246\346\203\205_-_\347\273\247\347\273\255\346\224\257\344\273\230/styles.css" new file mode 100644 index 0000000..fa70675 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\350\256\242\345\215\225\350\257\246\346\203\205_-_\347\273\247\347\273\255\346\224\257\344\273\230/styles.css" @@ -0,0 +1,910 @@ +body { + margin:0px; + background-image:none; + position:static; + left:auto; + width:550px; + margin-left:0; + margin-right:0; + text-align:left; +} +#base { + position:absolute; + z-index:0; +} +#u0 { + position:absolute; + left:0px; + top:116px; + width:8px; + height:36px; +} +#u0_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:36px; +} +#u1 { + position:absolute; + left:2px; + top:10px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u2 { + position:absolute; + left:0px; + top:192px; + width:8px; + height:27px; +} +#u2_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:27px; +} +#u3 { + position:absolute; + left:2px; + top:6px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u4 { + position:absolute; + left:0px; + top:255px; + width:8px; + height:27px; +} +#u4_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:27px; +} +#u5 { + position:absolute; + left:2px; + top:6px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u6 { + position:absolute; + left:259px; + top:0px; + width:60px; + height:10px; +} +#u6_img { + position:absolute; + left:0px; + top:0px; + width:60px; + height:10px; +} +#u7 { + position:absolute; + left:2px; + top:-3px; + width:56px; + visibility:hidden; + word-wrap:break-word; +} +#u8 { + position:absolute; + left:6px; + top:6px; + width:372px; + height:796px; +} +#u8_img { + position:absolute; + left:0px; + top:0px; + width:372px; + height:796px; +} +#u9 { + position:absolute; + left:2px; + top:390px; + width:368px; + visibility:hidden; + word-wrap:break-word; +} +#u10 { + position:absolute; + left:32px; + top:120px; + width:320px; + height:568px; +} +#u10_img { + position:absolute; + left:0px; + top:0px; + width:320px; + height:568px; +} +#u11 { + position:absolute; + left:2px; + top:276px; + width:316px; + visibility:hidden; + word-wrap:break-word; +} +#u12 { + position:absolute; + left:157px; + top:66px; + width:70px; + height:14px; +} +#u12_img { + position:absolute; + left:0px; + top:0px; + width:70px; + height:14px; +} +#u13 { + position:absolute; + left:2px; + top:-1px; + width:66px; + visibility:hidden; + word-wrap:break-word; +} +#u14 { + position:absolute; + left:185px; + top:40px; + width:14px; + height:14px; +} +#u14_img { + position:absolute; + left:0px; + top:0px; + width:14px; + height:14px; +} +#u15 { + position:absolute; + left:2px; + top:-1px; + width:10px; + visibility:hidden; + word-wrap:break-word; +} +#u16 { + position:absolute; + left:156px; + top:704px; + width:72px; + height:72px; +} +#u16_img { + position:absolute; + left:0px; + top:0px; + width:72px; + height:72px; +} +#u17 { + position:absolute; + left:2px; + top:28px; + width:68px; + visibility:hidden; + word-wrap:break-word; +} +#u18 { + position:absolute; + left:500px; + top:860px; + width:50px; + height:50px; +} +#u18_img { + position:absolute; + left:0px; + top:0px; + width:50px; + height:50px; +} +#u19 { + position:absolute; + left:2px; + top:17px; + width:46px; + visibility:hidden; + word-wrap:break-word; +} +#u20 { + position:absolute; + left:33px; + top:140px; + width:318px; + height:60px; +} +#u20_img { + position:absolute; + left:0px; + top:0px; + width:318px; + height:60px; +} +#u21 { + position:absolute; + left:2px; + top:22px; + width:314px; + visibility:hidden; + word-wrap:break-word; +} +#u22 { + position:absolute; + left:40px; + top:159px; + width:22px; + height:22px; +} +#u22_img { + position:absolute; + left:0px; + top:0px; + width:22px; + height:22px; +} +#u23 { + position:absolute; + left:2px; + top:3px; + width:18px; + visibility:hidden; + word-wrap:break-word; +} +#u24 { + position:absolute; + left:152px; + top:157px; + width:81px; + height:24px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + font-size:20px; +} +#u24_img { + position:absolute; + left:0px; + top:0px; + width:81px; + height:24px; +} +#u25 { + position:absolute; + left:0px; + top:0px; + width:81px; + white-space:nowrap; +} +#u26 { + position:absolute; + left:68px; + top:204px; + width:247px; + height:77px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u26_img { + position:absolute; + left:0px; + top:0px; + width:247px; + height:77px; +} +#u27 { + position:absolute; + left:0px; + top:0px; + width:247px; + white-space:nowrap; +} +#u28 { + position:absolute; + left:42px; + top:294px; + width:300px; + height:10px; +} +#u28_start { + position:absolute; + left:0px; + top:-5px; + width:18px; + height:20px; +} +#u28_end { + position:absolute; + left:283px; + top:-5px; + width:18px; + height:20px; +} +#u28_line { + position:absolute; + left:0px; + top:5px; + width:300px; + height:1px; +} +#u29 { + position:absolute; + left:42px; + top:610px; + width:300px; + height:40px; +} +#u29_input { + position:absolute; + left:0px; + top:0px; + width:300px; + height:40px; + background-image:url(../../resources/images/transparent.gif); + text-align:center; + font-family:'微软雅黑'; + font-size:20px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u30 { + position:absolute; + left:42px; + top:310px; + width:300px; + height:60px; +} +#u30_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u31 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u32 { + position:absolute; + left:50px; + top:310px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u32_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u33 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u34 { + position:absolute; + left:50px; + top:351px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u34_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u35 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u36 { + position:absolute; + left:249px; + top:351px; + width:77px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u36_img { + position:absolute; + left:0px; + top:0px; + width:77px; + height:19px; +} +#u37 { + position:absolute; + left:0px; + top:0px; + width:77px; + white-space:nowrap; +} +#u38 { + position:absolute; + left:299px; + top:331px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u38_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u39 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u40 { + position:absolute; + left:42px; + top:370px; + width:300px; + height:60px; +} +#u40_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u41 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u42 { + position:absolute; + left:50px; + top:370px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u42_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u43 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u44 { + position:absolute; + left:275px; + top:370px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u44_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u45 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u46 { + position:absolute; + left:50px; + top:411px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u46_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u47 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u48 { + position:absolute; + left:249px; + top:411px; + width:77px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u48_img { + position:absolute; + left:0px; + top:0px; + width:77px; + height:19px; +} +#u49 { + position:absolute; + left:0px; + top:0px; + width:77px; + white-space:nowrap; +} +#u50 { + position:absolute; + left:299px; + top:391px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u50_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u51 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u52 { + position:absolute; + left:42px; + top:430px; + width:300px; + height:60px; +} +#u52_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u53 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u54 { + position:absolute; + left:50px; + top:430px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u54_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u55 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u56 { + position:absolute; + left:50px; + top:471px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u56_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u57 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u58 { + position:absolute; + left:249px; + top:471px; + width:77px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u58_img { + position:absolute; + left:0px; + top:0px; + width:77px; + height:19px; +} +#u59 { + position:absolute; + left:0px; + top:0px; + width:77px; + white-space:nowrap; +} +#u60 { + position:absolute; + left:299px; + top:451px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u60_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u61 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u62 { + position:absolute; + left:42px; + top:490px; + width:300px; + height:60px; +} +#u62_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u63 { + position:absolute; + left:2px; + top:22px; + width:296px; + visibility:hidden; + word-wrap:break-word; +} +#u64 { + position:absolute; + left:50px; + top:490px; + width:40px; + height:19px; + font-family:'微软雅黑 Bold', '微软雅黑'; + font-weight:700; +} +#u64_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:19px; +} +#u65 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u66 { + position:absolute; + left:50px; + top:531px; + width:89px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u66_img { + position:absolute; + left:0px; + top:0px; + width:89px; + height:19px; +} +#u67 { + position:absolute; + left:0px; + top:0px; + width:89px; + white-space:nowrap; +} +#u68 { + position:absolute; + left:249px; + top:531px; + width:77px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u68_img { + position:absolute; + left:0px; + top:0px; + width:77px; + height:19px; +} +#u69 { + position:absolute; + left:0px; + top:0px; + width:77px; + white-space:nowrap; +} +#u70 { + position:absolute; + left:299px; + top:511px; + width:27px; + height:19px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u70_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:19px; +} +#u71 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u72 { + position:absolute; + left:271px; + top:492px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u72_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u73 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u74 { + position:absolute; + left:271px; + top:401px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u74_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u75 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} +#u76 { + position:absolute; + left:275px; + top:310px; + width:55px; + height:16px; + font-family:'微软雅黑 Regular', '微软雅黑'; + color:#FF0000; +} +#u76_img { + position:absolute; + left:0px; + top:0px; + width:55px; + height:16px; +} +#u77 { + position:absolute; + left:0px; + top:0px; + width:55px; + white-space:nowrap; +} diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\351\235\236\351\246\226\346\254\241/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\351\235\236\351\246\226\346\254\241/data.js" new file mode 100644 index 0000000..2293e11 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\351\235\236\351\246\226\346\254\241/data.js" @@ -0,0 +1,1851 @@ +$axure.loadCurrentPage({ + "url":"非首次.html", + "generationDate":new Date(1416993072406.25), + "isCanvasEnabled":false, + "variables":["OnLoadVariable"], + "page":{ + "packageId":"175fcde961414630be5f5de4ebc4e871", + "type":"Axure:Page", + "name":"非首次", + "notes":{ +}, + "style":{ + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "pageAlignment":"near", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "image":null, + "imageHorizontalAlignment":"near", + "imageVerticalAlignment":"near", + "imageRepeat":"auto", + "favicon":null, + "sketchFactor":"0", + "colorStyle":"appliedColor", + "fontName":"应用字体", + "borderWidth":"0"}, + "adaptiveStyles":{ +}, + "interactionMap":{ +}, + "diagram":{ + "objects":[{ + "id":"1e96e70fa51a4a9e933e6640ede3df7c", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":116}, + "size":{ + "width":8, + "height":36}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"5fd898a86b63498d95bb472bc069afb9", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":116}, + "size":{ + "width":8, + "height":36}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u0.png"}}, +{ + "id":"510131c6882c42dca5533a374229b96b", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":192}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c4f9ecc31e884e97a2d92586276eba1d", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":192}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u2.png"}}, +{ + "id":"18289f4d570946f6ad9217da3b438fd2", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":255}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d181e02a78984841bab9c9fdf418990d", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":255}, + "size":{ + "width":8, + "height":27}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"1"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u2.png"}}, +{ + "id":"8ec0d356a43d43cf8cb679fcf63f3747", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":259, + "y":0}, + "size":{ + "width":60, + "height":10}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"28c7806b25b14e038e8e58de51cb6629", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":259, + "y":0}, + "size":{ + "width":60, + "height":10}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"5"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u6.png"}}, +{ + "id":"8992c6dc91d249558533f96838b3d67b", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":6, + "y":6}, + "size":{ + "width":372, + "height":796}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"52"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c587399846414afeb8c6e8a35982835d", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":6, + "y":6}, + "size":{ + "width":372, + "height":796}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"52"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u8.png"}}, +{ + "id":"d80d2190bfa54411a7b97e5b389ce828", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":32, + "y":120}, + "size":{ + "width":320, + "height":568}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"8699c53771064f5fbde9d68a7f6f19a8", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":32, + "y":120}, + "size":{ + "width":320, + "height":568}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u10.png"}}, +{ + "id":"ffcbdac065474d29887883b533da6f8f", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":157, + "y":66}, + "size":{ + "width":70, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"fdb16403d489426597daef80695201f4", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":157, + "y":66}, + "size":{ + "width":70, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u12.png"}}, +{ + "id":"d61752474eff4b3691cffb20a5a12049", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":185, + "y":40}, + "size":{ + "width":14, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"2958a8303b8a446b84b7b423bc3ea1b7", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":185, + "y":40}, + "size":{ + "width":14, + "height":14}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u14.png"}}, +{ + "id":"9aee05658cec460990d5f9b8e09c3374", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":156, + "y":704}, + "size":{ + "width":72, + "height":72}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"734eb08e3cf443b5bbc0cbd4ecd97efc", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "location":{ + "x":156, + "y":704}, + "size":{ + "width":72, + "height":72}, + "borderWidth":"2", + "borderFill":{ + "fillType":"solid", + "color":0xFF999999}, + "cornerRadiusTopLeft":"35"}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/home/u16.png"}}, +{ + "id":"30f3f4269b2449f09fb70095da9eea6f", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "location":{ + "x":32, + "y":140}, + "size":{ + "width":319, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"819cdb72409a4eb59a8f061661eae7f3", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":32, + "y":140}, + "size":{ + "width":319, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我要发工资_-_引导页_-_首次进入/u18.png"}}, +{ + "id":"878961a7401a42a2a4a88602ce56418d", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "location":{ + "x":40, + "y":159}, + "size":{ + "width":22, + "height":22}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"e0121663546a49aabd890b9174fddde0", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":40, + "y":159}, + "size":{ + "width":22, + "height":22}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 我要发工资 - 引导页 - 非首次", + "target":{ + "targetType":"page", + "url":"我要发工资_-_引导页_-_非首次.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true, + "images":{ + "normal~":"images/我要发工资_-_引导页_-_首次进入/u20.png"}}, +{ + "id":"5904d0044e6849beb61eb64cc78c2b25", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontSize":"20px", + "fontWeight":"700", + "location":{ + "x":141, + "y":156}, + "size":{ + "width":101, + "height":24}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"2f73442359e142e7a5a787a55264e6e1", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Arial Negreta', 'Arial'", + "fontSize":"20px", + "fontWeight":"700", + "location":{ + "x":141, + "y":156}, + "size":{ + "width":101, + "height":24}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"5605d479c80e4c9b92af7b2f39c557ce", + "label":"手动登记工资表", + "type":"dynamicPanel", + "styleType":"dynamicPanel", + "visible":true, + "style":{ + "location":{ + "x":32, + "y":210}, + "size":{ + "width":319, + "height":280}}, + "adaptiveStyles":{ +}, + "scrollbars":"none", + "fitToContent":false, + "propagate":false, + "diagrams":[{ + "id":"c186861c0d0649d7857bc3a2123ec2b2", + "label":"初始状态", + "type":"Axure:PanelDiagram", + "objects":[{ + "id":"dd9aeeffe117434e934c1861e4af6ac5", + "label":"", + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":26, + "y":9}, + "size":{ + "width":219, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"10b83c1bf1404b68901d8f1c293c4fe2", + "label":"", + "isContained":true, + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":26, + "y":9}, + "size":{ + "width":219, + "height":30}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"bf5d57247ba4481cbe19bb1675c77104", + "label":"", + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"horizontalLine", + "styleType":"horizontalLine", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":39}, + "size":{ + "width":319, + "height":10}, + "borderFill":{ + "fillType":"solid", + "color":0xFFCCCCCC}}, + "adaptiveStyles":{ +}, + "images":{ + "start~":"resources/images/transparent.gif", + "end~":"resources/images/transparent.gif", + "line~":"images/我用发工资_-_手动登记/u27_line.png"}}, +{ + "id":"303e5d25d2a64c78a765c219e82600be", + "label":"", + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":62}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"632f7a0495014f12b61e21742238e402", + "label":"", + "isContained":true, + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":62}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"9773db6544014a4c9c5fb6630a33dd23", + "label":"", + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"textBox", + "styleType":"textBox", + "visible":true, + "style":{ + "location":{ + "x":101.5, + "y":59}, + "size":{ + "width":200, + "height":25}}, + "adaptiveStyles":{ +}}, +{ + "id":"4a210303f4ec4570b8765e82008202d4", + "label":"", + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":97}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"6c8c834027aa4329be47595e71ba9067", + "label":"", + "isContained":true, + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":97}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"d584d531b5a04dd090a3b6578182051c", + "label":"", + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"textBox", + "styleType":"textBox", + "visible":true, + "style":{ + "location":{ + "x":101.5, + "y":94}, + "size":{ + "width":200, + "height":25}}, + "adaptiveStyles":{ +}}, +{ + "id":"61cae925b2ff44489571aa9c706fbad8", + "label":"", + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":131}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"bc9e7ed7bc1c4947ba0e1d6e1fea1e63", + "label":"", + "isContained":true, + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":131}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"4bdb57d196804201a6c3d31381fe6e5a", + "label":"", + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"textBox", + "styleType":"textBox", + "visible":true, + "style":{ + "location":{ + "x":102, + "y":128}, + "size":{ + "width":200, + "height":25}}, + "adaptiveStyles":{ +}}, +{ + "id":"aee9eacc388d47c888f2b4434d3bc72c", + "label":"", + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":168}, + "size":{ + "width":72, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"e6194cfcd52d40588b463131f9acb535", + "label":"", + "isContained":true, + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":168}, + "size":{ + "width":72, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"58e94910d6c64258a41131eb9c0aa33c", + "label":"", + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"comboBox", + "styleType":"comboBox", + "visible":true, + "style":{ + "location":{ + "x":102, + "y":163}, + "size":{ + "width":200, + "height":27}}, + "adaptiveStyles":{ +}}, +{ + "id":"4592ec89f2b349358944f03ee04372fb", + "label":"", + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"button", + "styleType":"button", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"18px", + "fontWeight":"700", + "location":{ + "x":18, + "y":200}, + "size":{ + "width":132, + "height":30}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"setPanelState", + "description":"设置 手动登记工资表 to 添加记录状态 向下滑动 in 1500ms", + "panelsToStates":[{ + "panelPath":["5605d479c80e4c9b92af7b2f39c557ce"], + "stateInfo":{ + "setStateType":"diagram", + "stateNumber":2, + "stateValue":{ + "exprType":"stringLiteral", + "value":"1", + "stos":[]}, + "loop":false, + "showWhenSet":false, + "options":{ + "animateIn":{ + "easing":"slideDown", + "duration":1500}, + "compress":false}}}]}]}]}}, + "tabbable":true}, +{ + "id":"0b4b70a288664c5690484667118af70b", + "label":"", + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"button", + "styleType":"button", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"18px", + "fontWeight":"700", + "location":{ + "x":170, + "y":200}, + "size":{ + "width":132, + "height":30}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 支付", + "target":{ + "targetType":"page", + "url":"支付.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true}]}, +{ + "id":"e44bbea3ec664517911d08307b9c3be7", + "label":"添加记录状态", + "type":"Axure:PanelDiagram", + "objects":[{ + "id":"16178018799a4e96b37563790a6ca92f", + "label":"", + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":26, + "y":9}, + "size":{ + "width":255, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"960704772a644863a4641cc19f40026d", + "label":"", + "isContained":true, + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Regular', '微软雅黑'", + "location":{ + "x":26, + "y":9}, + "size":{ + "width":255, + "height":30}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"8cc5b32f55a2434ea58540f1a0fe74d6", + "label":"", + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"horizontalLine", + "styleType":"horizontalLine", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":39}, + "size":{ + "width":319, + "height":10}, + "borderFill":{ + "fillType":"solid", + "color":0xFFCCCCCC}}, + "adaptiveStyles":{ +}, + "images":{ + "start~":"resources/images/transparent.gif", + "end~":"resources/images/transparent.gif", + "line~":"images/我用发工资_-_手动登记/u27_line.png"}}, +{ + "id":"4dbe58978ac94916993a46d806b1b4a0", + "label":"", + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":133}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"8eb754b2f72c4818b1eebd9469b4aaca", + "label":"", + "isContained":true, + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":133}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"7c2cc9a45b564acbbb10ab316e8ec8cf", + "label":"", + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"textBox", + "styleType":"textBox", + "visible":true, + "style":{ + "location":{ + "x":102, + "y":130}, + "size":{ + "width":200, + "height":25}}, + "adaptiveStyles":{ +}}, +{ + "id":"5e3d09e52e544cf0877082a4272415d2", + "label":"", + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":168}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"279796f7b01240909813256e99e18847", + "label":"", + "isContained":true, + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":168}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"062129a3e99244afb73b2db5a15577e5", + "label":"", + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"textBox", + "styleType":"textBox", + "visible":true, + "style":{ + "location":{ + "x":102, + "y":165}, + "size":{ + "width":200, + "height":25}}, + "adaptiveStyles":{ +}}, +{ + "id":"06793c7aa2a5443da6626fa9d2cef013", + "label":"", + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"button", + "styleType":"button", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"18px", + "fontWeight":"700", + "location":{ + "x":18, + "y":236}, + "size":{ + "width":132, + "height":30}}, + "adaptiveStyles":{ +}}, +{ + "id":"166382867a3441ee92cc48b9629fc964", + "label":"", + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":101}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"3ea280358bf343d59eaa2ebd89856a71", + "label":"", + "isContained":true, + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":101}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"0c49e3ecf26d4d79b1a21acc7518d30c", + "label":"", + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"textBox", + "styleType":"textBox", + "visible":true, + "style":{ + "location":{ + "x":102, + "y":98}, + "size":{ + "width":200, + "height":25}}, + "adaptiveStyles":{ +}}, +{ + "id":"a695c4599ca64572bc7b80582e04dd69", + "label":"", + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":203}, + "size":{ + "width":72, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"df82c6119b4548e29a757b2c01227475", + "label":"", + "isContained":true, + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":18, + "y":203}, + "size":{ + "width":72, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"d15cfd544e324c12aad791f85f3d20dc", + "label":"", + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"comboBox", + "styleType":"comboBox", + "visible":true, + "style":{ + "location":{ + "x":102, + "y":198}, + "size":{ + "width":200, + "height":27}}, + "adaptiveStyles":{ +}}, +{ + "id":"27b76c9fceae485b86d7f33e4a649602", + "label":"", + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":18, + "y":49}, + "size":{ + "width":40, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ccea22d162e54ad49aa6b1fa568f1ac2", + "label":"", + "isContained":true, + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":18, + "y":49}, + "size":{ + "width":40, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"cc4a28046abd402485c2d57488d79ec0", + "label":"", + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":16, + "y":73}, + "size":{ + "width":78, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"5d8de8e482f442a78ac33591ba503490", + "label":"", + "isContained":true, + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":16, + "y":73}, + "size":{ + "width":78, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"10e0ee6e35084029bcb47d5a9662c5dc", + "label":"", + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":126, + "y":49}, + "size":{ + "width":68, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c530021a334147d2996f61da2de59464", + "label":"", + "isContained":true, + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":126, + "y":49}, + "size":{ + "width":68, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"f62f1302565a48acaae920ac83216e73", + "label":"", + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":262, + "y":49}, + "size":{ + "width":27, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"6abe3759e8f843af89b3e70329209deb", + "label":"", + "isContained":true, + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "location":{ + "x":262, + "y":49}, + "size":{ + "width":27, + "height":16}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"34b213f1c66049d9b336bcdff1666b29", + "label":"", + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"horizontalLine", + "styleType":"horizontalLine", + "visible":true, + "style":{ + "location":{ + "x":0, + "y":86}, + "size":{ + "width":319, + "height":10}, + "borderFill":{ + "fillType":"solid", + "color":0xFFCCCCCC}}, + "adaptiveStyles":{ +}, + "images":{ + "start~":"resources/images/transparent.gif", + "end~":"resources/images/transparent.gif", + "line~":"images/我用发工资_-_手动登记/u27_line.png"}}, +{ + "id":"04e3c94987b3411ca98225dcc0165c9a", + "label":"", + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"imageMapRegion", + "styleType":"imageMapRegion", + "visible":true, + "style":{ + "location":{ + "x":466, + "y":91}, + "size":{ + "width":284, + "height":42}}, + "adaptiveStyles":{ +}}, +{ + "id":"7e64a1e6a1c24326b79627be0f652306", + "label":"", + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"button", + "styleType":"button", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"18px", + "fontWeight":"700", + "location":{ + "x":170, + "y":236}, + "size":{ + "width":132, + "height":30}}, + "adaptiveStyles":{ +}, + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 支付", + "target":{ + "targetType":"page", + "url":"支付.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true}]}, +{ + "id":"baf3624b293441329948dfad1250c373", + "label":"编辑状态", + "type":"Axure:PanelDiagram", + "objects":[{ + "id":"19ea8db4d5cc4f2e9cac6720e0495077", + "label":"", + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":16, + "y":47}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"6a99d48fab604ff6843b7bec064099b3", + "label":"", + "isContained":true, + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":16, + "y":47}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"cbf92e6f42b8469c8015c555a49e45db", + "label":"", + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"textBox", + "styleType":"textBox", + "visible":true, + "style":{ + "location":{ + "x":100, + "y":44}, + "size":{ + "width":200, + "height":25}}, + "adaptiveStyles":{ +}}, +{ + "id":"af3944490e6b48e18e1047fdbd401164", + "label":"", + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":16, + "y":82}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"af71b428b0ee448bb6faca79da3d7026", + "label":"", + "isContained":true, + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":16, + "y":82}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"dd9ba0a464b04e14b1c6f6bd4eaadcf1", + "label":"", + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"textBox", + "styleType":"textBox", + "visible":true, + "style":{ + "location":{ + "x":100, + "y":79}, + "size":{ + "width":200, + "height":25}}, + "adaptiveStyles":{ +}}, +{ + "id":"62ec329c6e6e41a3bdfae14607aded8c", + "label":"", + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"button", + "styleType":"button", + "visible":true, + "style":{ + "fontName":"'微软雅黑 Bold', '微软雅黑'", + "fontSize":"20px", + "fontWeight":"700", + "location":{ + "x":16, + "y":150}, + "size":{ + "width":284, + "height":30}}, + "adaptiveStyles":{ +}}, +{ + "id":"72f8eee4ada145109447227477e5bab5", + "label":"", + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":16, + "y":15}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"4e48f5125b74420c8ea22cde0c8e86f5", + "label":"", + "isContained":true, + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":16, + "y":15}, + "size":{ + "width":73, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"5cef4b21d28c45d5b50661dbc80647a4", + "label":"", + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"textBox", + "styleType":"textBox", + "visible":true, + "style":{ + "location":{ + "x":100, + "y":12}, + "size":{ + "width":200, + "height":25}}, + "adaptiveStyles":{ +}}, +{ + "id":"f0e572add9584c02ab4b19e791ccc207", + "label":"", + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":16, + "y":117}, + "size":{ + "width":72, + "height":22}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"508dca41035d4fdcab9d4083f172ec29", + "label":"", + "isContained":true, + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontSize":"18px", + "location":{ + "x":16, + "y":117}, + "size":{ + "width":72, + "height":22}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"d5d421073fca4caa99daa1e1dba5e6ea", + "label":"", + "parentDynamicPanel":"5605d479c80e4c9b92af7b2f39c557ce", + "type":"comboBox", + "styleType":"comboBox", + "visible":true, + "style":{ + "location":{ + "x":100, + "y":112}, + "size":{ + "width":200, + "height":27}}, + "adaptiveStyles":{ +}}]}]}]}}, + "masters":{ +}, + "objectPaths":{ + "1e96e70fa51a4a9e933e6640ede3df7c":{ + "scriptId":"u0"}, + "5fd898a86b63498d95bb472bc069afb9":{ + "scriptId":"u1"}, + "510131c6882c42dca5533a374229b96b":{ + "scriptId":"u2"}, + "c4f9ecc31e884e97a2d92586276eba1d":{ + "scriptId":"u3"}, + "18289f4d570946f6ad9217da3b438fd2":{ + "scriptId":"u4"}, + "d181e02a78984841bab9c9fdf418990d":{ + "scriptId":"u5"}, + "8ec0d356a43d43cf8cb679fcf63f3747":{ + "scriptId":"u6"}, + "28c7806b25b14e038e8e58de51cb6629":{ + "scriptId":"u7"}, + "8992c6dc91d249558533f96838b3d67b":{ + "scriptId":"u8"}, + "c587399846414afeb8c6e8a35982835d":{ + "scriptId":"u9"}, + "d80d2190bfa54411a7b97e5b389ce828":{ + "scriptId":"u10"}, + "8699c53771064f5fbde9d68a7f6f19a8":{ + "scriptId":"u11"}, + "ffcbdac065474d29887883b533da6f8f":{ + "scriptId":"u12"}, + "fdb16403d489426597daef80695201f4":{ + "scriptId":"u13"}, + "d61752474eff4b3691cffb20a5a12049":{ + "scriptId":"u14"}, + "2958a8303b8a446b84b7b423bc3ea1b7":{ + "scriptId":"u15"}, + "9aee05658cec460990d5f9b8e09c3374":{ + "scriptId":"u16"}, + "734eb08e3cf443b5bbc0cbd4ecd97efc":{ + "scriptId":"u17"}, + "30f3f4269b2449f09fb70095da9eea6f":{ + "scriptId":"u18"}, + "819cdb72409a4eb59a8f061661eae7f3":{ + "scriptId":"u19"}, + "878961a7401a42a2a4a88602ce56418d":{ + "scriptId":"u20"}, + "e0121663546a49aabd890b9174fddde0":{ + "scriptId":"u21"}, + "5904d0044e6849beb61eb64cc78c2b25":{ + "scriptId":"u22"}, + "2f73442359e142e7a5a787a55264e6e1":{ + "scriptId":"u23"}, + "5605d479c80e4c9b92af7b2f39c557ce":{ + "scriptId":"u24"}, + "dd9aeeffe117434e934c1861e4af6ac5":{ + "scriptId":"u25"}, + "10b83c1bf1404b68901d8f1c293c4fe2":{ + "scriptId":"u26"}, + "bf5d57247ba4481cbe19bb1675c77104":{ + "scriptId":"u27"}, + "303e5d25d2a64c78a765c219e82600be":{ + "scriptId":"u28"}, + "632f7a0495014f12b61e21742238e402":{ + "scriptId":"u29"}, + "9773db6544014a4c9c5fb6630a33dd23":{ + "scriptId":"u30"}, + "4a210303f4ec4570b8765e82008202d4":{ + "scriptId":"u31"}, + "6c8c834027aa4329be47595e71ba9067":{ + "scriptId":"u32"}, + "d584d531b5a04dd090a3b6578182051c":{ + "scriptId":"u33"}, + "61cae925b2ff44489571aa9c706fbad8":{ + "scriptId":"u34"}, + "bc9e7ed7bc1c4947ba0e1d6e1fea1e63":{ + "scriptId":"u35"}, + "4bdb57d196804201a6c3d31381fe6e5a":{ + "scriptId":"u36"}, + "aee9eacc388d47c888f2b4434d3bc72c":{ + "scriptId":"u37"}, + "e6194cfcd52d40588b463131f9acb535":{ + "scriptId":"u38"}, + "58e94910d6c64258a41131eb9c0aa33c":{ + "scriptId":"u39"}, + "4592ec89f2b349358944f03ee04372fb":{ + "scriptId":"u40"}, + "0b4b70a288664c5690484667118af70b":{ + "scriptId":"u41"}, + "16178018799a4e96b37563790a6ca92f":{ + "scriptId":"u42"}, + "960704772a644863a4641cc19f40026d":{ + "scriptId":"u43"}, + "8cc5b32f55a2434ea58540f1a0fe74d6":{ + "scriptId":"u44"}, + "4dbe58978ac94916993a46d806b1b4a0":{ + "scriptId":"u45"}, + "8eb754b2f72c4818b1eebd9469b4aaca":{ + "scriptId":"u46"}, + "7c2cc9a45b564acbbb10ab316e8ec8cf":{ + "scriptId":"u47"}, + "5e3d09e52e544cf0877082a4272415d2":{ + "scriptId":"u48"}, + "279796f7b01240909813256e99e18847":{ + "scriptId":"u49"}, + "062129a3e99244afb73b2db5a15577e5":{ + "scriptId":"u50"}, + "06793c7aa2a5443da6626fa9d2cef013":{ + "scriptId":"u51"}, + "166382867a3441ee92cc48b9629fc964":{ + "scriptId":"u52"}, + "3ea280358bf343d59eaa2ebd89856a71":{ + "scriptId":"u53"}, + "0c49e3ecf26d4d79b1a21acc7518d30c":{ + "scriptId":"u54"}, + "a695c4599ca64572bc7b80582e04dd69":{ + "scriptId":"u55"}, + "df82c6119b4548e29a757b2c01227475":{ + "scriptId":"u56"}, + "d15cfd544e324c12aad791f85f3d20dc":{ + "scriptId":"u57"}, + "27b76c9fceae485b86d7f33e4a649602":{ + "scriptId":"u58"}, + "ccea22d162e54ad49aa6b1fa568f1ac2":{ + "scriptId":"u59"}, + "cc4a28046abd402485c2d57488d79ec0":{ + "scriptId":"u60"}, + "5d8de8e482f442a78ac33591ba503490":{ + "scriptId":"u61"}, + "10e0ee6e35084029bcb47d5a9662c5dc":{ + "scriptId":"u62"}, + "c530021a334147d2996f61da2de59464":{ + "scriptId":"u63"}, + "f62f1302565a48acaae920ac83216e73":{ + "scriptId":"u64"}, + "6abe3759e8f843af89b3e70329209deb":{ + "scriptId":"u65"}, + "34b213f1c66049d9b336bcdff1666b29":{ + "scriptId":"u66"}, + "04e3c94987b3411ca98225dcc0165c9a":{ + "scriptId":"u67"}, + "7e64a1e6a1c24326b79627be0f652306":{ + "scriptId":"u68"}, + "19ea8db4d5cc4f2e9cac6720e0495077":{ + "scriptId":"u69"}, + "6a99d48fab604ff6843b7bec064099b3":{ + "scriptId":"u70"}, + "cbf92e6f42b8469c8015c555a49e45db":{ + "scriptId":"u71"}, + "af3944490e6b48e18e1047fdbd401164":{ + "scriptId":"u72"}, + "af71b428b0ee448bb6faca79da3d7026":{ + "scriptId":"u73"}, + "dd9ba0a464b04e14b1c6f6bd4eaadcf1":{ + "scriptId":"u74"}, + "62ec329c6e6e41a3bdfae14607aded8c":{ + "scriptId":"u75"}, + "72f8eee4ada145109447227477e5bab5":{ + "scriptId":"u76"}, + "4e48f5125b74420c8ea22cde0c8e86f5":{ + "scriptId":"u77"}, + "5cef4b21d28c45d5b50661dbc80647a4":{ + "scriptId":"u78"}, + "f0e572add9584c02ab4b19e791ccc207":{ + "scriptId":"u79"}, + "508dca41035d4fdcab9d4083f172ec29":{ + "scriptId":"u80"}, + "d5d421073fca4caa99daa1e1dba5e6ea":{ + "scriptId":"u81"}}}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\351\235\236\351\246\226\346\254\241/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\351\235\236\351\246\226\346\254\241/styles.css" new file mode 100644 index 0000000..673a751 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/files/\351\235\236\351\246\226\346\254\241/styles.css" @@ -0,0 +1,1203 @@ +body { + margin:0px; + background-image:none; + position:static; + left:auto; + width:378px; + margin-left:0; + margin-right:0; + text-align:left; +} +#base { + position:absolute; + z-index:0; +} +#u0 { + position:absolute; + left:0px; + top:116px; + width:8px; + height:36px; +} +#u0_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:36px; +} +#u1 { + position:absolute; + left:2px; + top:10px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u2 { + position:absolute; + left:0px; + top:192px; + width:8px; + height:27px; +} +#u2_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:27px; +} +#u3 { + position:absolute; + left:2px; + top:6px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u4 { + position:absolute; + left:0px; + top:255px; + width:8px; + height:27px; +} +#u4_img { + position:absolute; + left:0px; + top:0px; + width:8px; + height:27px; +} +#u5 { + position:absolute; + left:2px; + top:6px; + width:4px; + visibility:hidden; + word-wrap:break-word; +} +#u6 { + position:absolute; + left:259px; + top:0px; + width:60px; + height:10px; +} +#u6_img { + position:absolute; + left:0px; + top:0px; + width:60px; + height:10px; +} +#u7 { + position:absolute; + left:2px; + top:-3px; + width:56px; + visibility:hidden; + word-wrap:break-word; +} +#u8 { + position:absolute; + left:6px; + top:6px; + width:372px; + height:796px; +} +#u8_img { + position:absolute; + left:0px; + top:0px; + width:372px; + height:796px; +} +#u9 { + position:absolute; + left:2px; + top:390px; + width:368px; + visibility:hidden; + word-wrap:break-word; +} +#u10 { + position:absolute; + left:32px; + top:120px; + width:320px; + height:568px; +} +#u10_img { + position:absolute; + left:0px; + top:0px; + width:320px; + height:568px; +} +#u11 { + position:absolute; + left:2px; + top:276px; + width:316px; + visibility:hidden; + word-wrap:break-word; +} +#u12 { + position:absolute; + left:157px; + top:66px; + width:70px; + height:14px; +} +#u12_img { + position:absolute; + left:0px; + top:0px; + width:70px; + height:14px; +} +#u13 { + position:absolute; + left:2px; + top:-1px; + width:66px; + visibility:hidden; + word-wrap:break-word; +} +#u14 { + position:absolute; + left:185px; + top:40px; + width:14px; + height:14px; +} +#u14_img { + position:absolute; + left:0px; + top:0px; + width:14px; + height:14px; +} +#u15 { + position:absolute; + left:2px; + top:-1px; + width:10px; + visibility:hidden; + word-wrap:break-word; +} +#u16 { + position:absolute; + left:156px; + top:704px; + width:72px; + height:72px; +} +#u16_img { + position:absolute; + left:0px; + top:0px; + width:72px; + height:72px; +} +#u17 { + position:absolute; + left:2px; + top:28px; + width:68px; + visibility:hidden; + word-wrap:break-word; +} +#u18 { + position:absolute; + left:32px; + top:140px; + width:319px; + height:60px; +} +#u18_img { + position:absolute; + left:0px; + top:0px; + width:319px; + height:60px; +} +#u19 { + position:absolute; + left:2px; + top:22px; + width:315px; + visibility:hidden; + word-wrap:break-word; +} +#u20 { + position:absolute; + left:40px; + top:159px; + width:22px; + height:22px; +} +#u20_img { + position:absolute; + left:0px; + top:0px; + width:22px; + height:22px; +} +#u21 { + position:absolute; + left:2px; + top:3px; + width:18px; + visibility:hidden; + word-wrap:break-word; +} +#u22 { + position:absolute; + left:141px; + top:156px; + width:101px; + height:24px; + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + font-size:20px; +} +#u22_img { + position:absolute; + left:0px; + top:0px; + width:101px; + height:24px; +} +#u23 { + position:absolute; + left:0px; + top:0px; + width:101px; + white-space:nowrap; +} +#u24 { + position:absolute; + left:32px; + top:210px; + width:319px; + height:280px; + overflow:hidden; +} +#u24_state0 { + position:absolute; + left:0px; + top:0px; + width:319px; + height:280px; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; +} +#u24_state0_content { + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u25 { + position:absolute; + left:26px; + top:9px; + width:219px; + height:30px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u25_img { + position:absolute; + left:0px; + top:0px; + width:219px; + height:30px; +} +#u26 { + position:absolute; + left:0px; + top:0px; + width:219px; + white-space:nowrap; +} +#u27 { + position:absolute; + left:0px; + top:39px; + width:319px; + height:10px; +} +#u27_start { + position:absolute; + left:0px; + top:-5px; + width:18px; + height:20px; +} +#u27_end { + position:absolute; + left:302px; + top:-5px; + width:18px; + height:20px; +} +#u27_line { + position:absolute; + left:0px; + top:5px; + width:319px; + height:1px; +} +#u28 { + position:absolute; + left:18px; + top:62px; + width:73px; + height:22px; + font-size:18px; +} +#u28_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u29 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u30 { + position:absolute; + left:102px; + top:59px; + width:200px; + height:25px; +} +#u30_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:25px; + background-image:; + text-align:left; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u31 { + position:absolute; + left:18px; + top:97px; + width:73px; + height:22px; + font-size:18px; +} +#u31_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u32 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u33 { + position:absolute; + left:102px; + top:94px; + width:200px; + height:25px; +} +#u33_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:25px; + background-image:; + text-align:left; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u34 { + position:absolute; + left:18px; + top:131px; + width:73px; + height:22px; + font-size:18px; +} +#u34_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u35 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u36 { + position:absolute; + left:102px; + top:128px; + width:200px; + height:25px; +} +#u36_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:25px; + background-image:; + text-align:left; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u37 { + position:absolute; + left:18px; + top:168px; + width:72px; + height:22px; + font-size:18px; +} +#u37_img { + position:absolute; + left:0px; + top:0px; + width:72px; + height:22px; +} +#u38 { + position:absolute; + left:0px; + top:0px; + width:72px; + white-space:nowrap; +} +#u39 { + position:absolute; + left:102px; + top:163px; + width:200px; + height:27px; +} +#u39_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:27px; + background-image:; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u40 { + position:absolute; + left:18px; + top:200px; + width:132px; + height:30px; +} +#u40_input { + position:absolute; + left:0px; + top:0px; + width:132px; + height:30px; + background-image:url(../../resources/images/transparent.gif); + text-align:center; + font-family:'微软雅黑'; + font-size:18px; + color:#000000; + font-weight:bold; + font-style:normal; + text-decoration:none; +} +#u41 { + position:absolute; + left:170px; + top:200px; + width:132px; + height:30px; +} +#u41_input { + position:absolute; + left:0px; + top:0px; + width:132px; + height:30px; + background-image:url(../../resources/images/transparent.gif); + text-align:center; + font-family:'微软雅黑'; + font-size:18px; + color:#000000; + font-weight:bold; + font-style:normal; + text-decoration:none; +} +#u24_state1 { + position:absolute; + left:0px; + top:0px; + width:319px; + height:280px; + visibility:hidden; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; +} +#u24_state1_content { + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u42 { + position:absolute; + left:26px; + top:9px; + width:255px; + height:30px; + font-family:'微软雅黑 Regular', '微软雅黑'; +} +#u42_img { + position:absolute; + left:0px; + top:0px; + width:255px; + height:30px; +} +#u43 { + position:absolute; + left:0px; + top:0px; + width:255px; + white-space:nowrap; +} +#u44 { + position:absolute; + left:0px; + top:39px; + width:319px; + height:10px; +} +#u44_start { + position:absolute; + left:0px; + top:-5px; + width:18px; + height:20px; +} +#u44_end { + position:absolute; + left:302px; + top:-5px; + width:18px; + height:20px; +} +#u44_line { + position:absolute; + left:0px; + top:5px; + width:319px; + height:1px; +} +#u45 { + position:absolute; + left:18px; + top:133px; + width:73px; + height:22px; + font-size:18px; +} +#u45_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u46 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u47 { + position:absolute; + left:102px; + top:130px; + width:200px; + height:25px; +} +#u47_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:25px; + background-image:; + text-align:left; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u48 { + position:absolute; + left:18px; + top:168px; + width:73px; + height:22px; + font-size:18px; +} +#u48_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u49 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u50 { + position:absolute; + left:102px; + top:165px; + width:200px; + height:25px; +} +#u50_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:25px; + background-image:; + text-align:left; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u51 { + position:absolute; + left:18px; + top:236px; + width:132px; + height:30px; +} +#u51_input { + position:absolute; + left:0px; + top:0px; + width:132px; + height:30px; + background-image:url(../../resources/images/transparent.gif); + text-align:center; + font-family:'微软雅黑'; + font-size:18px; + color:#000000; + font-weight:bold; + font-style:normal; + text-decoration:none; +} +#u52 { + position:absolute; + left:18px; + top:101px; + width:73px; + height:22px; + font-size:18px; +} +#u52_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u53 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u54 { + position:absolute; + left:102px; + top:98px; + width:200px; + height:25px; +} +#u54_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:25px; + background-image:; + text-align:left; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u55 { + position:absolute; + left:18px; + top:203px; + width:72px; + height:22px; + font-size:18px; +} +#u55_img { + position:absolute; + left:0px; + top:0px; + width:72px; + height:22px; +} +#u56 { + position:absolute; + left:0px; + top:0px; + width:72px; + white-space:nowrap; +} +#u57 { + position:absolute; + left:102px; + top:198px; + width:200px; + height:27px; +} +#u57_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:27px; + background-image:; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u58 { + position:absolute; + left:18px; + top:49px; + width:40px; + height:16px; +} +#u58_img { + position:absolute; + left:0px; + top:0px; + width:40px; + height:16px; +} +#u59 { + position:absolute; + left:0px; + top:0px; + width:40px; + white-space:nowrap; +} +#u60 { + position:absolute; + left:16px; + top:73px; + width:78px; + height:16px; +} +#u60_img { + position:absolute; + left:0px; + top:0px; + width:78px; + height:16px; +} +#u61 { + position:absolute; + left:0px; + top:0px; + width:78px; + white-space:nowrap; +} +#u62 { + position:absolute; + left:126px; + top:49px; + width:68px; + height:16px; +} +#u62_img { + position:absolute; + left:0px; + top:0px; + width:68px; + height:16px; +} +#u63 { + position:absolute; + left:0px; + top:0px; + width:68px; + white-space:nowrap; +} +#u64 { + position:absolute; + left:262px; + top:49px; + width:27px; + height:16px; +} +#u64_img { + position:absolute; + left:0px; + top:0px; + width:27px; + height:16px; +} +#u65 { + position:absolute; + left:0px; + top:0px; + width:27px; + white-space:nowrap; +} +#u66 { + position:absolute; + left:0px; + top:86px; + width:319px; + height:10px; +} +#u66_start { + position:absolute; + left:0px; + top:-5px; + width:18px; + height:20px; +} +#u66_end { + position:absolute; + left:302px; + top:-5px; + width:18px; + height:20px; +} +#u66_line { + position:absolute; + left:0px; + top:5px; + width:319px; + height:1px; +} +#u67 { + position:absolute; + left:466px; + top:91px; + width:284px; + height:42px; + overflow:hidden; + background-image:url('../../resources/images/transparent.gif'); +} +#u68 { + position:absolute; + left:170px; + top:236px; + width:132px; + height:30px; +} +#u68_input { + position:absolute; + left:0px; + top:0px; + width:132px; + height:30px; + background-image:url(../../resources/images/transparent.gif); + text-align:center; + font-family:'微软雅黑'; + font-size:18px; + color:#000000; + font-weight:bold; + font-style:normal; + text-decoration:none; +} +#u24_state2 { + position:absolute; + left:0px; + top:0px; + width:319px; + height:280px; + visibility:hidden; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; +} +#u24_state2_content { + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u69 { + position:absolute; + left:16px; + top:47px; + width:73px; + height:22px; + font-size:18px; +} +#u69_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u70 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u71 { + position:absolute; + left:100px; + top:44px; + width:200px; + height:25px; +} +#u71_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:25px; + background-image:; + text-align:left; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u72 { + position:absolute; + left:16px; + top:82px; + width:73px; + height:22px; + font-size:18px; +} +#u72_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u73 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u74 { + position:absolute; + left:100px; + top:79px; + width:200px; + height:25px; +} +#u74_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:25px; + background-image:; + text-align:left; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u75 { + position:absolute; + left:16px; + top:150px; + width:284px; + height:30px; +} +#u75_input { + position:absolute; + left:0px; + top:0px; + width:284px; + height:30px; + background-image:url(../../resources/images/transparent.gif); + text-align:center; + font-family:'微软雅黑'; + font-size:20px; + color:#000000; + font-weight:bold; + font-style:normal; + text-decoration:none; +} +#u76 { + position:absolute; + left:16px; + top:15px; + width:73px; + height:22px; + font-size:18px; +} +#u76_img { + position:absolute; + left:0px; + top:0px; + width:73px; + height:22px; +} +#u77 { + position:absolute; + left:0px; + top:0px; + width:73px; + white-space:nowrap; +} +#u78 { + position:absolute; + left:100px; + top:12px; + width:200px; + height:25px; +} +#u78_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:25px; + background-image:; + text-align:left; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} +#u79 { + position:absolute; + left:16px; + top:117px; + width:72px; + height:22px; + font-size:18px; +} +#u79_img { + position:absolute; + left:0px; + top:0px; + width:72px; + height:22px; +} +#u80 { + position:absolute; + left:0px; + top:0px; + width:72px; + white-space:nowrap; +} +#u81 { + position:absolute; + left:100px; + top:112px; + width:200px; + height:27px; +} +#u81_input { + position:absolute; + left:0px; + top:0px; + width:200px; + height:27px; + background-image:; + font-family:'Arial'; + font-size:13px; + color:#000000; + font-weight:normal; + font-style:normal; + text-decoration:none; +} diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/home.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/home.html" new file mode 100644 index 0000000..57a52a9 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/home.html" @@ -0,0 +1,122 @@ + + + + Home + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+
+ + diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/home/u0.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/home/u0.png" new file mode 100644 index 0000000..6f52888 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/home/u0.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/home/u10.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/home/u10.png" new file mode 100644 index 0000000..6ade40c Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/home/u10.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/home/u12.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/home/u12.png" new file mode 100644 index 0000000..a6fecb1 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/home/u12.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/home/u14.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/home/u14.png" new file mode 100644 index 0000000..2106da4 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/home/u14.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/home/u16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/home/u16.png" new file mode 100644 index 0000000..6c4e285 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/home/u16.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/home/u18.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/home/u18.png" new file mode 100644 index 0000000..ba92581 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/home/u18.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/home/u2.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/home/u2.png" new file mode 100644 index 0000000..d36bd05 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/home/u2.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/home/u6.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/home/u6.png" new file mode 100644 index 0000000..41a7bd2 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/home/u6.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/home/u8.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/home/u8.png" new file mode 100644 index 0000000..cc8cd67 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/home/u8.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\344\273\230\346\254\276/u40_line.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\344\273\230\346\254\276/u40_line.png" new file mode 100644 index 0000000..019cc76 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\344\273\230\346\254\276/u40_line.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\344\273\230\346\254\276/u41.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\344\273\230\346\254\276/u41.png" new file mode 100644 index 0000000..5f57814 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\344\273\230\346\254\276/u41.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\345\217\221\345\267\245\350\265\204/u18.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\345\217\221\345\267\245\350\265\204/u18.png" new file mode 100644 index 0000000..fc616f6 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\345\217\221\345\267\245\350\265\204/u18.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\345\217\221\346\224\276\345\216\206\345\217\262/u149.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\345\217\221\346\224\276\345\216\206\345\217\262/u149.png" new file mode 100644 index 0000000..20353d5 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\345\217\221\346\224\276\345\216\206\345\217\262/u149.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\345\217\221\346\224\276\345\216\206\345\217\262/u151.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\345\217\221\346\224\276\345\216\206\345\217\262/u151.png" new file mode 100644 index 0000000..6537b87 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\345\217\221\346\224\276\345\216\206\345\217\262/u151.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\345\217\221\346\224\276\345\216\206\345\217\262/u153.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\345\217\221\346\224\276\345\216\206\345\217\262/u153.png" new file mode 100644 index 0000000..2b7a96e Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\345\217\221\346\224\276\345\216\206\345\217\262/u153.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\345\217\221\346\224\276\345\216\206\345\217\262/u155.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\345\217\221\346\224\276\345\216\206\345\217\262/u155.png" new file mode 100644 index 0000000..14d89e9 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\345\217\221\346\224\276\345\216\206\345\217\262/u155.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\345\217\221\346\224\276\345\216\206\345\217\262/u157.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\345\217\221\346\224\276\345\216\206\345\217\262/u157.png" new file mode 100644 index 0000000..b6b66b2 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\345\217\221\346\224\276\345\216\206\345\217\262/u157.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\345\217\221\346\224\276\345\216\206\345\217\262/u161.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\345\217\221\346\224\276\345\216\206\345\217\262/u161.png" new file mode 100644 index 0000000..caeaf55 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\345\217\221\346\224\276\345\216\206\345\217\262/u161.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\345\217\221\346\224\276\345\216\206\345\217\262/u257.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\345\217\221\346\224\276\345\216\206\345\217\262/u257.png" new file mode 100644 index 0000000..16870ff Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\345\217\221\346\224\276\345\216\206\345\217\262/u257.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\345\217\221\346\224\276\345\216\206\345\217\262/u26.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\345\217\221\346\224\276\345\216\206\345\217\262/u26.png" new file mode 100644 index 0000000..bfd1a89 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\345\217\221\346\224\276\345\216\206\345\217\262/u26.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\346\210\221\347\224\250\345\217\221\345\267\245\350\265\204_-_\346\211\213\345\212\250\347\231\273\350\256\260/u27_line.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\346\210\221\347\224\250\345\217\221\345\267\245\350\265\204_-_\346\211\213\345\212\250\347\231\273\350\256\260/u27_line.png" new file mode 100644 index 0000000..007fdef Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\346\210\221\347\224\250\345\217\221\345\267\245\350\265\204_-_\346\211\213\345\212\250\347\231\273\350\256\260/u27_line.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\346\210\221\350\246\201\345\217\221\345\267\245\350\265\204_-_\345\274\225\345\257\274\351\241\265_-_\351\235\236\351\246\226\346\254\241/u166.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\346\210\221\350\246\201\345\217\221\345\267\245\350\265\204_-_\345\274\225\345\257\274\351\241\265_-_\351\235\236\351\246\226\346\254\241/u166.png" new file mode 100644 index 0000000..8fe2da8 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\346\210\221\350\246\201\345\217\221\345\267\245\350\265\204_-_\345\274\225\345\257\274\351\241\265_-_\351\235\236\351\246\226\346\254\241/u166.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\346\210\221\350\246\201\345\217\221\345\267\245\350\265\204_-_\345\274\225\345\257\274\351\241\265_-_\351\235\236\351\246\226\346\254\241/u30.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\346\210\221\350\246\201\345\217\221\345\267\245\350\265\204_-_\345\274\225\345\257\274\351\241\265_-_\351\235\236\351\246\226\346\254\241/u30.png" new file mode 100644 index 0000000..bc19ad9 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\346\210\221\350\246\201\345\217\221\345\267\245\350\265\204_-_\345\274\225\345\257\274\351\241\265_-_\351\235\236\351\246\226\346\254\241/u30.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\346\210\221\350\246\201\345\217\221\345\267\245\350\265\204_-_\345\274\225\345\257\274\351\241\265_-_\351\246\226\346\254\241\350\277\233\345\205\245/u18.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\346\210\221\350\246\201\345\217\221\345\267\245\350\265\204_-_\345\274\225\345\257\274\351\241\265_-_\351\246\226\346\254\241\350\277\233\345\205\245/u18.png" new file mode 100644 index 0000000..84d2c06 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\346\210\221\350\246\201\345\217\221\345\267\245\350\265\204_-_\345\274\225\345\257\274\351\241\265_-_\351\246\226\346\254\241\350\277\233\345\205\245/u18.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\346\210\221\350\246\201\345\217\221\345\267\245\350\265\204_-_\345\274\225\345\257\274\351\241\265_-_\351\246\226\346\254\241\350\277\233\345\205\245/u20.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\346\210\221\350\246\201\345\217\221\345\267\245\350\265\204_-_\345\274\225\345\257\274\351\241\265_-_\351\246\226\346\254\241\350\277\233\345\205\245/u20.png" new file mode 100644 index 0000000..b5677e9 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\346\210\221\350\246\201\345\217\221\345\267\245\350\265\204_-_\345\274\225\345\257\274\351\241\265_-_\351\246\226\346\254\241\350\277\233\345\205\245/u20.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\346\210\221\350\246\201\345\217\221\345\267\245\350\265\204_-_\345\274\225\345\257\274\351\241\265_-_\351\246\226\346\254\241\350\277\233\345\205\245/u24.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\346\210\221\350\246\201\345\217\221\345\267\245\350\265\204_-_\345\274\225\345\257\274\351\241\265_-_\351\246\226\346\254\241\350\277\233\345\205\245/u24.png" new file mode 100644 index 0000000..d7e62c9 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\346\210\221\350\246\201\345\217\221\345\267\245\350\265\204_-_\345\274\225\345\257\274\351\241\265_-_\351\246\226\346\254\241\350\277\233\345\205\245/u24.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\346\224\257\344\273\230/u20.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\346\224\257\344\273\230/u20.png" new file mode 100644 index 0000000..12c6697 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\346\224\257\344\273\230/u20.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\346\224\257\344\273\230/u28_line.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\346\224\257\344\273\230/u28_line.png" new file mode 100644 index 0000000..7e77613 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\346\224\257\344\273\230/u28_line.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\346\224\257\344\273\230/u78.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\346\224\257\344\273\230/u78.png" new file mode 100644 index 0000000..e93ec78 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\346\224\257\344\273\230/u78.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\346\224\257\344\273\230/\345\256\241\346\211\271\346\217\220\347\244\2722_u129.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\346\224\257\344\273\230/\345\256\241\346\211\271\346\217\220\347\244\2722_u129.png" new file mode 100644 index 0000000..da7c49f Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\346\224\257\344\273\230/\345\256\241\346\211\271\346\217\220\347\244\2722_u129.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\350\256\242\345\215\225\350\257\246\346\203\205_-_\345\276\205\345\256\241\346\211\271/u28.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\350\256\242\345\215\225\350\257\246\346\203\205_-_\345\276\205\345\256\241\346\211\271/u28.png" new file mode 100644 index 0000000..c9eb6f5 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/images/\350\256\242\345\215\225\350\257\246\346\203\205_-_\345\276\205\345\256\241\346\211\271/u28.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/index.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/index.html" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/index.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/index.html" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/page_notes/page_notes.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/plugins/page_notes/page_notes.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/page_notes/page_notes.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/plugins/page_notes/page_notes.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/page_notes/styles/page_notes.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/plugins/page_notes/styles/page_notes.css" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/page_notes/styles/page_notes.css" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/plugins/page_notes/styles/page_notes.css" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/sitemap.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/plugins/sitemap/sitemap.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/sitemap.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/plugins/sitemap/sitemap.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/079_page_16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/plugins/sitemap/styles/images/079_page_16.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/079_page_16.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/plugins/sitemap/styles/images/079_page_16.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/086_case_16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/plugins/sitemap/styles/images/086_case_16.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/086_case_16.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/plugins/sitemap/styles/images/086_case_16.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/225_responsive_16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/plugins/sitemap/styles/images/225_responsive_16.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/225_responsive_16.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/plugins/sitemap/styles/images/225_responsive_16.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/228_togglenotes_16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/plugins/sitemap/styles/images/228_togglenotes_16.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/228_togglenotes_16.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/plugins/sitemap/styles/images/228_togglenotes_16.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/229_variables_16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/plugins/sitemap/styles/images/229_variables_16.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/229_variables_16.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/plugins/sitemap/styles/images/229_variables_16.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/231_event_16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/plugins/sitemap/styles/images/231_event_16.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/231_event_16.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/plugins/sitemap/styles/images/231_event_16.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/232_search_16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/plugins/sitemap/styles/images/232_search_16.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/232_search_16.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/plugins/sitemap/styles/images/232_search_16.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/233_hyperlink_16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/plugins/sitemap/styles/images/233_hyperlink_16.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/233_hyperlink_16.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/plugins/sitemap/styles/images/233_hyperlink_16.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/235_folderclosed_16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/plugins/sitemap/styles/images/235_folderclosed_16.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/235_folderclosed_16.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/plugins/sitemap/styles/images/235_folderclosed_16.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/236_folderopen_16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/plugins/sitemap/styles/images/236_folderopen_16.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/236_folderopen_16.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/plugins/sitemap/styles/images/236_folderopen_16.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/adaptivecheck.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/plugins/sitemap/styles/images/adaptivecheck.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/adaptivecheck.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/plugins/sitemap/styles/images/adaptivecheck.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/images.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/plugins/sitemap/styles/images/images.html" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/images.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/plugins/sitemap/styles/images/images.html" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/minus.gif" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/plugins/sitemap/styles/images/minus.gif" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/minus.gif" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/plugins/sitemap/styles/images/minus.gif" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/plus.gif" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/plugins/sitemap/styles/images/plus.gif" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/images/plus.gif" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/plugins/sitemap/styles/images/plus.gif" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/sitemap.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/plugins/sitemap/styles/sitemap.css" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/plugins/sitemap/styles/sitemap.css" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/plugins/sitemap/styles/sitemap.css" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/Other.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/Other.html" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/Other.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/Other.html" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/chrome/allow_access.gif" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/chrome/allow_access.gif" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/chrome/allow_access.gif" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/chrome/allow_access.gif" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/chrome/axure-chrome-extension.crx" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/chrome/axure-chrome-extension.crx" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/chrome/axure-chrome-extension.crx" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/chrome/axure-chrome-extension.crx" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/chrome/axure_logo.gif" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/chrome/axure_logo.gif" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/chrome/axure_logo.gif" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/chrome/axure_logo.gif" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/chrome/axure_logo.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/chrome/axure_logo.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/chrome/axure_logo.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/chrome/axure_logo.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/chrome/chrome.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/chrome/chrome.html" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/chrome/chrome.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/chrome/chrome.html" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/chrome/extensions_menu.gif" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/chrome/extensions_menu.gif" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/chrome/extensions_menu.gif" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/chrome/extensions_menu.gif" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/chrome/splitter.gif" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/chrome/splitter.gif" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/chrome/splitter.gif" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/chrome/splitter.gif" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/chrome/splitter.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/chrome/splitter.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/chrome/splitter.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/chrome/splitter.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/axure_rp_page.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/css/axure_rp_page.css" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/axure_rp_page.css" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/css/axure_rp_page.css" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/default.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/css/default.css" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/default.css" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/css/default.css" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/images.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/css/images/images.html" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/images.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/css/images/images.html" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/newwindow.gif" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/css/images/newwindow.gif" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/newwindow.gif" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/css/images/newwindow.gif" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/note.gif" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/css/images/note.gif" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/note.gif" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/css/images/note.gif" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/ui-bg_flat_0_aaaaaa_40x100.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/css/images/ui-bg_flat_0_aaaaaa_40x100.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/ui-bg_flat_0_aaaaaa_40x100.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/css/images/ui-bg_flat_0_aaaaaa_40x100.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/ui-bg_glass_55_fbf9ee_1x400.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/css/images/ui-bg_glass_55_fbf9ee_1x400.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/ui-bg_glass_55_fbf9ee_1x400.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/css/images/ui-bg_glass_55_fbf9ee_1x400.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/ui-bg_glass_65_ffffff_1x400.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/css/images/ui-bg_glass_65_ffffff_1x400.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/ui-bg_glass_65_ffffff_1x400.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/css/images/ui-bg_glass_65_ffffff_1x400.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/ui-bg_glass_75_dadada_1x400.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/css/images/ui-bg_glass_75_dadada_1x400.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/ui-bg_glass_75_dadada_1x400.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/css/images/ui-bg_glass_75_dadada_1x400.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/ui-bg_glass_75_e6e6e6_1x400.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/css/images/ui-bg_glass_75_e6e6e6_1x400.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/ui-bg_glass_75_e6e6e6_1x400.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/css/images/ui-bg_glass_75_e6e6e6_1x400.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/ui-bg_glass_75_ffffff_1x400.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/css/images/ui-bg_glass_75_ffffff_1x400.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/ui-bg_glass_75_ffffff_1x400.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/css/images/ui-bg_glass_75_ffffff_1x400.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/ui-bg_highlight-soft_75_cccccc_1x100.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/css/images/ui-bg_highlight-soft_75_cccccc_1x100.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/ui-bg_highlight-soft_75_cccccc_1x100.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/css/images/ui-bg_highlight-soft_75_cccccc_1x100.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/ui-bg_inset-soft_95_fef1ec_1x100.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/css/images/ui-bg_inset-soft_95_fef1ec_1x100.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/ui-bg_inset-soft_95_fef1ec_1x100.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/css/images/ui-bg_inset-soft_95_fef1ec_1x100.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/ui-icons_222222_256x240.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/css/images/ui-icons_222222_256x240.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/ui-icons_222222_256x240.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/css/images/ui-icons_222222_256x240.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/ui-icons_2e83ff_256x240.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/css/images/ui-icons_2e83ff_256x240.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/ui-icons_2e83ff_256x240.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/css/images/ui-icons_2e83ff_256x240.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/ui-icons_454545_256x240.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/css/images/ui-icons_454545_256x240.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/ui-icons_454545_256x240.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/css/images/ui-icons_454545_256x240.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/ui-icons_888888_256x240.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/css/images/ui-icons_888888_256x240.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/ui-icons_888888_256x240.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/css/images/ui-icons_888888_256x240.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/ui-icons_cd0a0a_256x240.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/css/images/ui-icons_cd0a0a_256x240.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/images/ui-icons_cd0a0a_256x240.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/css/images/ui-icons_cd0a0a_256x240.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/jquery-ui-themes.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/css/jquery-ui-themes.css" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/jquery-ui-themes.css" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/css/jquery-ui-themes.css" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/reset.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/css/reset.css" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/css/reset.css" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/css/reset.css" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/expand.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/expand.html" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/expand.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/expand.html" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/images/259_close_12rollover1.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/images/259_close_12rollover1.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/images/259_close_12rollover1.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/images/259_close_12rollover1.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/images/259_close_12rollover2.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/images/259_close_12rollover2.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/images/259_close_12rollover2.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/images/259_close_12rollover2.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/images/260_collapse_12rollover1.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/images/260_collapse_12rollover1.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/images/260_collapse_12rollover1.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/images/260_collapse_12rollover1.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/images/260_collapse_12rollover2.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/images/260_collapse_12rollover2.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/images/260_collapse_12rollover2.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/images/260_collapse_12rollover2.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/images/261_expand_12rollover1.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/images/261_expand_12rollover1.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/images/261_expand_12rollover1.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/images/261_expand_12rollover1.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/images/261_expand_12rollover2.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/images/261_expand_12rollover2.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/images/261_expand_12rollover2.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/images/261_expand_12rollover2.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/images/images.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/images/images.html" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/images/images.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/images/images.html" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/images/transparent.gif" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/images/transparent.gif" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/images/transparent.gif" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/images/transparent.gif" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/reload.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/reload.html" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/reload.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/reload.html" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/action.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/axure/action.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/action.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/axure/action.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/adaptive.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/axure/adaptive.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/adaptive.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/axure/adaptive.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/annotation.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/axure/annotation.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/annotation.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/axure/annotation.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/axQuery.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/axure/axQuery.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/axQuery.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/axure/axQuery.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/axQuery.std.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/axure/axQuery.std.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/axQuery.std.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/axure/axQuery.std.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/doc.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/axure/doc.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/doc.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/axure/doc.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/drag.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/axure/drag.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/drag.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/axure/drag.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/events.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/axure/events.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/events.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/axure/events.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/expr.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/axure/expr.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/expr.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/axure/expr.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/flyout.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/axure/flyout.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/flyout.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/axure/flyout.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/geometry.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/axure/geometry.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/geometry.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/axure/geometry.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/globals.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/axure/globals.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/globals.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/axure/globals.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/ie.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/axure/ie.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/ie.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/axure/ie.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/init.temp.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/axure/init.temp.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/init.temp.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/axure/init.temp.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/legacy.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/axure/legacy.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/legacy.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/axure/legacy.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/model.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/axure/model.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/model.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/axure/model.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/move.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/axure/move.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/move.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/axure/move.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/repeater.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/axure/repeater.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/repeater.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/axure/repeater.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/sto.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/axure/sto.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/sto.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/axure/sto.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/style.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/axure/style.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/style.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/axure/style.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/tree.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/axure/tree.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/tree.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/axure/tree.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/utils.temp.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/axure/utils.temp.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/utils.temp.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/axure/utils.temp.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/variables.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/axure/variables.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/variables.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/axure/variables.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/viewer.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/axure/viewer.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/viewer.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/axure/viewer.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/visibility.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/axure/visibility.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axure/visibility.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/axure/visibility.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axutils.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/axutils.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/axutils.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/axutils.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/jquery-1.7.1.min.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/jquery-1.7.1.min.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/jquery-1.7.1.min.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/jquery-1.7.1.min.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/jquery-ui-1.8.10.custom.min.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/jquery-ui-1.8.10.custom.min.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/jquery-ui-1.8.10.custom.min.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/jquery-ui-1.8.10.custom.min.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/messagecenter.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/messagecenter.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/messagecenter.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/messagecenter.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/player/axplayer.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/player/axplayer.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/player/axplayer.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/player/axplayer.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/player/splitter.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/player/splitter.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/resources/scripts/player/splitter.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/resources/scripts/player/splitter.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/start.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/start.html" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/start.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/start.html" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/start_c_1.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/start_c_1.html" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/start_c_1.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/start_c_1.html" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\344\273\230\346\254\276.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\344\273\230\346\254\276.html" new file mode 100644 index 0000000..a92f076 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\344\273\230\346\254\276.html" @@ -0,0 +1,238 @@ + + + + 付款 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+

付款信息

+
+
+ + +
+ + +
+

付款类型

+
+
+ + +
+ + +
+

发放工资

+
+
+ + +
+ + +
+

发放金额

+
+
+ + +
+ + +
+

52,170.50

+
+
+ + +
+ + +
+

手续费(当前阶段费率0.58%)

+
+
+ + +
+ + +
+

302.59

+
+
+ + +
+ + +
+

付款金额

+
+
+ + +
+ + +
+

52,473.10

+
+
+ + +
+ u40_start + u40_end + u40_line +
+ + +
+ + +
+
+ + +
+ + +
+

 请刷卡

+
+
+ + +
+ +
+
+ + diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\345\217\221\345\267\245\350\265\204.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\345\217\221\345\267\245\350\265\204.html" new file mode 100644 index 0000000..057aa79 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\345\217\221\345\267\245\350\265\204.html" @@ -0,0 +1,126 @@ + + + + 发工资 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+
+
+ + diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\345\217\221\346\224\276\345\216\206\345\217\262.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\345\217\221\346\224\276\345\216\206\345\217\262.html" new file mode 100644 index 0000000..0a10c8d --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\345\217\221\346\224\276\345\216\206\345\217\262.html" @@ -0,0 +1,1646 @@ + + + + 发放历史 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+

放历史 · 订单记录

+
+
+ + +
+
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+

2014年8

+
+
+ + +
+ + +
+

15人

+
+
+ + +
+ + +
+

¥ 99,9999.00

+
+
+ + +
+ + +
+

2014年7

+
+
+ + +
+ + +
+

15人

+
+
+ + +
+ + +
+

¥ 99,9999.00

+
+
+ + +
+ + +
+

已发放

+
+
+ + +
+ + +
+

已发放

+
+
+ + +
+ + +
+
+ + +
+ + +
+

2014年10

+
+
+ + +
+ + +
+

15人

+
+
+ + +
+ + +
+

¥ 99,9999.00

+
+
+ + +
+ + +
+

已发放

+
+
+ + +
+ + +
+

3个批次

+
+
+ + +
+ + +
+

3个批次

+
+
+ + +
+ + +
+

3个批次

+
+
+ + +
+ + +
+
+ + +
+ + +
+

2014年9

+
+
+ + +
+ + +
+

15人

+
+
+ + +
+ + +
+

¥ 99,9999.00

+
+
+ + +
+ + +
+

已发放

+
+
+ + +
+ + +
+

3个批次

+
+
+ + +
+ + +
+
+ + +
+ + +
+

2014年6

+
+
+ + +
+ + +
+

15人

+
+
+ + +
+ + +
+

¥ 99,9999.00

+
+
+ + +
+ + +
+

已发放

+
+
+ + +
+ + +
+

3个批次

+
+
+ + +
+
+
+
+
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+

2014年8

+
+
+ + +
+ + +
+

15人

+
+
+ + +
+ + +
+

¥ 99,9999.00

+
+
+ + +
+ + +
+

2014年7

+
+
+ + +
+ + +
+

15人

+
+
+ + +
+ + +
+

¥ 99,9999.00

+
+
+ + +
+ + +
+

已发放

+
+
+ + +
+ + +
+

已发放

+
+
+ + +
+ + +
+
+ + +
+ + +
+

2014年10

+
+
+ + +
+ + +
+

15人

+
+
+ + +
+ + +
+

¥ 99,9999.00

+
+
+ + +
+ + +
+

已发放

+
+
+ + +
+ + +
+

3个批次

+
+
+ + +
+ + +
+

3个批次

+
+
+ + +
+ + +
+

3个批次

+
+
+ + +
+ + +
+
+ + +
+ + +
+

2014年9

+
+
+ + +
+ + +
+

15人

+
+
+ + +
+ + +
+

¥ 99,9999.00

+
+
+ + +
+ + +
+

已发放

+
+
+ + +
+ + +
+

3个批次

+
+
+ + +
+ + +
+
+ + +
+ + +
+

2014年6

+
+
+ + +
+ + +
+

15人

+
+
+ + +
+ + +
+

¥ 99,9999.00

+
+
+ + +
+ + +
+

已发放

+
+
+ + +
+ + +
+

3个批次

+
+
+ + +
+
+
+
+
+ + +
+
+
+ + +
+ + +
+
+ + +
+ + +
+

9

+
+
+ + +
+ + +
+

15人

+
+
+ + +
+ + +
+

¥ 99,9999.00

+
+
+ + +
+ + +
+

待支付

+
+
+ + +
+ + +
+
+ + +
+ + +
+

19

+
+
+ + +
+ + +
+

15人

+
+
+ + +
+ + +
+

¥ 99,9999.00

+
+
+ + +
+ + +
+

审批

+
+
+ + +
+ + +
+
+ + +
+ + +
+

23

+
+
+ + +
+ + +
+

15人

+
+
+ + +
+ + +
+

¥ 99,9999.00

+
+
+ + +
+ + +
+

审批

+
+
+ + +
+
+ + +
+
+
+
+
+
+
+
+
+ + +
+ + +
+
+ + +
+ + +
+

2014年11

+
+
+ + +
+
+
+
+
+
+ + +
+
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+

放历史 · 月度工资表 

+
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+

2014年8

+
+
+ + +
+ + +
+

15人

+
+
+ + +
+ + +
+

¥ 99,9999.00

+
+
+ + +
+ + +
+

2014年7

+
+
+ + +
+ + +
+

15人

+
+
+ + +
+ + +
+

¥ 99,9999.00

+
+
+ + +
+ + +
+
+ + +
+ + +
+

2014年10

+
+
+ + +
+ + +
+

15人

+
+
+ + +
+ + +
+

¥ 99,9999.00

+
+
+ + +
+ + +
+
+ + +
+ + +
+

2014年9

+
+
+ + +
+ + +
+

15人

+
+
+ + +
+ + +
+

¥ 99,9999.00

+
+
+ + +
+ + +
+
+ + +
+ + +
+

2014年6

+
+
+ + +
+ + +
+

15人

+
+
+ + +
+ + +
+

¥ 99,9999.00

+
+
+ + +
+ + +
+
+ + +
+ + +
+

2014年5

+
+
+ + +
+ + +
+

15人

+
+
+ + +
+ + +
+

¥ 99,9999.00

+
+
+ + +
+
+
+
+
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+

放历史 · 员工工资表 

+
+
+ + +
+ + +
+
+ + +
+ + +
+

洋洋

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

上次发放:2014-10-15

+
+
+ + +
+ u256_start + u256_end + u256_line +
+ + +
+ + +
+
+ + +
+ +
+ + +
+ + +
+

累计金额20,000.00

+
+
+ + +
+ + +
+
+ + +
+ + +
+

洋洋

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

上次发放:2014-10-15

+
+
+ + +
+ + +
+

累计金额20,000.00

+
+
+ + +
+ + +
+
+ + +
+ + +
+

洋洋

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

上次发放:2014-10-15

+
+
+ + +
+ + +
+

累计金额20,000.00

+
+
+ + +
+ + +
+
+ + +
+ + +
+

洋洋

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

上次发放:2014-10-15

+
+
+ + +
+ + +
+

累计金额20,000.00

+
+
+ + +
+ + +
+
+ + +
+ + +
+

洋洋

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

上次发放:2014-10-15

+
+
+ + +
+ + +
+

累计金额20,000.00

+
+
+ + +
+ + +
+

已累计发放   12 人,

累计发放金额   50,3257.02

+
+
+ + +
+
+
+
+
+
+
+
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+

放历史 · 员工工资表 

+
+
+ + +
+ + +
+
+ + +
+ + +
+

洋洋

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

上次发放:2014-10-15

+
+
+ + +
+ u319_start + u319_end + u319_line +
+ + +
+ + +
+
+ + +
+ +
+ + +
+ + +
+

累计金额20,000.00

+
+
+ + +
+ + +
+
+ + +
+ + +
+

洋洋

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

上次发放:2014-10-15

+
+
+ + +
+ + +
+

累计金额20,000.00

+
+
+ + +
+ + +
+
+ + +
+ + +
+

洋洋

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

上次发放:2014-10-15

+
+
+ + +
+ + +
+

累计金额20,000.00

+
+
+ + +
+ + +
+
+ + +
+ + +
+

洋洋

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

上次发放:2014-10-15

+
+
+ + +
+ + +
+

累计金额20,000.00

+
+
+ + +
+ + +
+
+ + +
+ + +
+

洋洋

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

上次发放:2014-10-15

+
+
+ + +
+ + +
+

累计金额20,000.00

+
+
+ + +
+ + +
+

已累计发放   12 

累计发放金额   50,3257.02

+
+
+ + +
+
+
+
+
+
+ + diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\345\256\241\346\211\271\351\241\265\351\235\242.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\345\256\241\346\211\271\351\241\265\351\235\242.html" new file mode 100644 index 0000000..37ca39c --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\345\256\241\346\211\271\351\241\265\351\235\242.html" @@ -0,0 +1,679 @@ + + + + 审批页面 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+

工资发放

+
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

2014-10-08

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+

本次工资发放,共计员工 12 人,

累计金额   50,3257.02

+
+
+ + +
+ u40_start + u40_end + u40_line +
+ + +
+ +
+ + +
+ +
+ + +
+
+ + +
+
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

2014-10-08

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

2014-10-08

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

2014-10-08

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

2014-10-08

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+

2,500.00

+
+
+
+
+
+
+ + +
+ + +
+

手机号码

+
+
+ + +
+ +
+ + +
+ + +
+

发放金额

+
+
+ + +
+ +
+ + +
+ +
+ + +
+ + +
+

员工姓名

+
+
+ + +
+ +
+ + +
+ + +
+

      

+
+
+ + +
+ +
+ + +
+ + +
+

本次工资发放

+
+
+ + +
+ + +
+

累计金额

+
+
+ + +
+ + +
+

12人

+
+
+ + +
+ +
+ + +
+ + +
+

50,3257.02  元 

+
+
+
+
+
+
+ + +
+ + +
+

手机号码

+
+
+ + +
+ +
+ + +
+ + +
+

发放金额

+
+
+ + +
+ +
+ + +
+ +
+ + +
+ + +
+

员工姓名

+
+
+ + +
+ +
+ + +
+ + +
+

      

+
+
+ + +
+ +
+ + +
+ + +
+

本次工资发放

+
+
+ + +
+ + +
+

累计金额

+
+
+ + +
+ + +
+

12人

+
+
+ + +
+ +
+ + +
+ + +
+

50,3257.02  元 

+
+
+
+
+
+
+ + diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\346\210\221\347\224\250\345\217\221\345\267\245\350\265\204_-_\346\211\213\345\212\250\347\231\273\350\256\260.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\346\210\221\347\224\250\345\217\221\345\267\245\350\265\204_-_\346\211\213\345\212\250\347\231\273\350\256\260.html" new file mode 100644 index 0000000..6436b88 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\346\210\221\347\224\250\345\217\221\345\267\245\350\265\204_-_\346\211\213\345\212\250\347\231\273\350\256\260.html" @@ -0,0 +1,437 @@ + + + + 我用发工资 - 手动登记 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+

登记工资表

+
+
+ + +
+
+
+ + +
+ + +
+

已登记 0 人,累计金额   0

+
+
+ + +
+ u27_start + u27_end + u27_line +
+ + +
+ + +
+

员工姓名

+
+
+ + +
+ +
+ + +
+ + +
+

手机号码

+
+
+ + +
+ +
+ + +
+ + +
+

发放金额

+
+
+ + +
+ +
+ + +
+ + +
+

      

+
+
+ + +
+ +
+ + +
+ +
+ + +
+ +
+
+
+
+
+ + +
+ + +
+

已登记 1 人,累计金额   2,500

+
+
+ + +
+ u44_start + u44_end + u44_line +
+ + +
+ + +
+

手机号码

+
+
+ + +
+ +
+ + +
+ + +
+

发放金额

+
+
+ + +
+ +
+ + +
+ +
+ + +
+ + +
+

员工姓名

+
+
+ + +
+ +
+ + +
+ + +
+

      

+
+
+ + +
+ +
+ + +
+ + +
+

红太狼

+
+
+ + +
+ + +
+

13800138002

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ u66_start + u66_end + u66_line +
+ + +
+ +
+
+
+
+
+ + +
+ + +
+

手机号码

+
+
+ + +
+ +
+ + +
+ + +
+

发放金额

+
+
+ + +
+ +
+ + +
+ +
+ + +
+ + +
+

员工姓名

+
+
+ + +
+ +
+ + +
+ + +
+

      

+
+
+ + +
+ +
+
+
+
+
+ + diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\346\210\221\347\224\250\345\217\221\345\267\245\350\265\204_-_\350\260\203\347\224\250\345\216\206\345\217\262\350\256\260\345\275\225_-_\347\274\226\350\276\221.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\346\210\221\347\224\250\345\217\221\345\267\245\350\265\204_-_\350\260\203\347\224\250\345\216\206\345\217\262\350\256\260\345\275\225_-_\347\274\226\350\276\221.html" new file mode 100644 index 0000000..1938abb --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\346\210\221\347\224\250\345\217\221\345\267\245\350\265\204_-_\350\260\203\347\224\250\345\216\206\345\217\262\350\256\260\345\275\225_-_\347\274\226\350\276\221.html" @@ -0,0 +1,441 @@ + + + + 我用发工资 - 调用历史记录 - 编辑 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+

登记工资表

+
+
+ + +
+
+
+ + +
+ + +
+

手机号码

+
+
+ + +
+ +
+ + +
+ + +
+

发放金额

+
+
+ + +
+ +
+ + +
+ +
+ + +
+ + +
+

员工姓名

+
+
+ + +
+ +
+ + +
+ + +
+

      

+
+
+ + +
+ +
+
+
+
+
+ + +
+ + +
+

已登记 0 人,累计金额   0

+
+
+ + +
+ u40_start + u40_end + u40_line +
+ + +
+ + +
+

员工姓名

+
+
+ + +
+ +
+ + +
+ + +
+

手机号码

+
+
+ + +
+ +
+ + +
+ + +
+

发放金额

+
+
+ + +
+ +
+ + +
+ + +
+

      

+
+
+ + +
+ +
+ + +
+ +
+ + +
+ +
+
+
+
+
+ + +
+ + +
+

已登记 1 人,累计金额   2,500

+
+
+ + +
+ u57_start + u57_end + u57_line +
+ + +
+ + +
+

手机号码

+
+
+ + +
+ +
+ + +
+ + +
+

发放金额

+
+
+ + +
+ +
+ + +
+ +
+ + +
+ + +
+

员工姓名

+
+
+ + +
+ +
+ + +
+ + +
+

      

+
+
+ + +
+ +
+ + +
+ + +
+

红太狼

+
+
+ + +
+ + +
+

13800138002

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ u79_start + u79_end + u79_line +
+ + +
+
+ + +
+ +
+
+
+
+
+ + diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\346\210\221\350\246\201\345\217\221\345\267\245\350\265\204_-_\345\274\225\345\257\274\351\241\265_-_\351\235\236\351\246\226\346\254\241.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\346\210\221\350\246\201\345\217\221\345\267\245\350\265\204_-_\345\274\225\345\257\274\351\241\265_-_\351\235\236\351\246\226\346\254\241.html" new file mode 100644 index 0000000..63f23da --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\346\210\221\350\246\201\345\217\221\345\267\245\350\265\204_-_\345\274\225\345\257\274\351\241\265_-_\351\235\236\351\246\226\346\254\241.html" @@ -0,0 +1,946 @@ + + + + 我要发工资 - 引导页 - 非首次 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+

我要发工资

+
+
+ + +
+ + +
+

发放历史

+
+
+ + +
+ +
+ + +
+ + +
+

工资发放记录(2014-10)

+
+
+ + +
+
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ +
+ + +
+
+
+
+
+
+ + +
+ + +
+

手机号码

+
+
+ + +
+ + +
+

发放金额

+
+
+ + +
+ +
+ + +
+ +
+ + +
+ + +
+

员工姓名

+
+
+ + +
+ + +
+

      

+
+
+ + +
+ +
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

138001380002

+
+
+
+
+
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

2014-10-08

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

2014-10-08

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

2014-10-08

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

2014-10-08

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ +
+ + +
+ + +
+
+
+
+
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

2014-10-08

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

2014-10-08

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

2014-10-08

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ +
+
+
+
+
+ + diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\346\210\221\350\246\201\345\217\221\345\267\245\350\265\204_-_\345\274\225\345\257\274\351\241\265_-_\351\246\226\346\254\241\350\277\224\345\233\236.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\346\210\221\350\246\201\345\217\221\345\267\245\350\265\204_-_\345\274\225\345\257\274\351\241\265_-_\351\246\226\346\254\241\350\277\224\345\233\236.html" new file mode 100644 index 0000000..532c77d --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\346\210\221\350\246\201\345\217\221\345\267\245\350\265\204_-_\345\274\225\345\257\274\351\241\265_-_\351\246\226\346\254\241\350\277\224\345\233\236.html" @@ -0,0 +1,161 @@ + + + + 我要发工资 - 引导页 - 首次返回 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+

我要发工资

+
+
+ + +
+ + +
+

发放历史

+
+
+ + +
+ +
+ + +
+ + +
+

暂无发放记录

+
+
+
+ + diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\346\210\221\350\246\201\345\217\221\345\267\245\350\265\204_-_\345\274\225\345\257\274\351\241\265_-_\351\246\226\346\254\241\350\277\233\345\205\245.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\346\210\221\350\246\201\345\217\221\345\267\245\350\265\204_-_\345\274\225\345\257\274\351\241\265_-_\351\246\226\346\254\241\350\277\233\345\205\245.html" new file mode 100644 index 0000000..eb4e591 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\346\210\221\350\246\201\345\217\221\345\267\245\350\265\204_-_\345\274\225\345\257\274\351\241\265_-_\351\246\226\346\254\241\350\277\233\345\205\245.html" @@ -0,0 +1,206 @@ + + + + 我要发工资 - 引导页 - 首次进入 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+

我要发工资

+
+
+ + +
+ + +
+
+ + +
+ + +
+

*  您需要输入员工的姓名、手机号码和发放金额

+
+
+ + +
+ + +
+

成功支付后第二个工作日,员工即可登录通付

宝领取工资

+
+
+ + +
+ + +
+

如单次发放金额超过20,000元,您需要分成多

笔进行支付;

+
+
+ + +
+ + +
+

业务推广期间,费率优惠仅发放金额 0.58%;

+
+
+ + +
+ + +
+ + +
+ +
+ + +
+ + +
+

如因故产生退款,手续费不退回;

+
+
+
+ + diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\346\210\221\350\246\201\345\217\221\345\267\245\350\265\204_-_\345\274\225\347\224\250\350\256\242\345\215\225\350\256\260\345\275\225.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\346\210\221\350\246\201\345\217\221\345\267\245\350\265\204_-_\345\274\225\347\224\250\350\256\242\345\215\225\350\256\260\345\275\225.html" new file mode 100644 index 0000000..f6c1644 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\346\210\221\350\246\201\345\217\221\345\267\245\350\265\204_-_\345\274\225\347\224\250\350\256\242\345\215\225\350\256\260\345\275\225.html" @@ -0,0 +1,946 @@ + + + + 我要发工资 - 引用订单记录 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+

我要发工资

+
+
+ + +
+ + +
+

发放历史

+
+
+ + +
+ +
+ + +
+ + +
+

2014-10-15

+
+
+ + +
+
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ +
+ + +
+
+
+
+
+
+ + +
+ + +
+

手机号码

+
+
+ + +
+ + +
+

发放金额

+
+
+ + +
+ +
+ + +
+ +
+ + +
+ + +
+

员工姓名

+
+
+ + +
+ + +
+

      

+
+
+ + +
+ +
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

138001380002

+
+
+
+
+
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

2014-10-08

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

2014-10-08

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

2014-10-08

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

2014-10-08

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ +
+ + +
+ + +
+
+
+
+
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

2014-10-08

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

2014-10-08

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

2014-10-08

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ +
+
+
+
+
+ + diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\346\224\257\344\273\230.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\346\224\257\344\273\230.html" new file mode 100644 index 0000000..43156e2 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\346\224\257\344\273\230.html" @@ -0,0 +1,656 @@ + + + + 支付 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+

工资发放

+
+
+ + +
+ + +
+

本次工资发放,共计员工 12 人,

累计金额   50,3257.02

+
+
+ + +
+ u28_start + u28_end + u28_line +
+ + +
+ +
+ + +
+ +
+ + +
+
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

2014-10-08

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

2014-10-08

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

2014-10-08

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

2014-10-08

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+

2,500.00

+
+
+
+
+
+
+ + +
+ + +
+

手机号码

+
+
+ + +
+ +
+ + +
+ + +
+

发放金额

+
+
+ + +
+ +
+ + +
+ +
+ + +
+ + +
+

员工姓名

+
+
+ + +
+ +
+ + +
+ + +
+

      

+
+
+ + +
+ +
+ + +
+ + +
+

本次工资发放

+
+
+ + +
+ + +
+

累计金额

+
+
+ + +
+ + +
+

12人

+
+
+ + +
+ +
+ + +
+ + +
+

50,3257.02  元 

+
+
+
+
+
+
+ + +
+ + +
+

手机号码

+
+
+ + +
+ +
+ + +
+ + +
+

发放金额

+
+
+ + +
+ +
+ + +
+ +
+ + +
+ + +
+

员工姓名

+
+
+ + +
+ +
+ + +
+ + +
+

      

+
+
+ + +
+ +
+ + +
+ + +
+

本次工资发放

+
+
+ + +
+ + +
+

累计金额

+
+
+ + +
+ + +
+

12人

+
+
+ + +
+ +
+ + +
+ + +
+

50,3257.02  元 

+
+
+
+
+
+ + +
+
+
+
+
+
+
+ + +
+ + +
+
+ + +
+ + +
+

报请审批提交成功!

 

您可以在“发放记录”查询当前记录的处理状态

+
+
+
+
+
+ + +
+ +
+
+ + diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\346\224\266\345\267\245\350\265\204\351\246\226\351\241\265\351\235\242.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\346\224\266\345\267\245\350\265\204\351\246\226\351\241\265\351\235\242.html" new file mode 100644 index 0000000..2cfd5b8 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\346\224\266\345\267\245\350\265\204\351\246\226\351\241\265\351\235\242.html" @@ -0,0 +1,126 @@ + + + + 收工资首页面 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+
+
+ + diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\347\274\226\350\276\221-_\350\260\203\347\224\250\345\216\206\345\217\262\350\256\260\345\275\225.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\347\274\226\350\276\221-_\350\260\203\347\224\250\345\216\206\345\217\262\350\256\260\345\275\225.html" new file mode 100644 index 0000000..aee2640 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\347\274\226\350\276\221-_\350\260\203\347\224\250\345\216\206\345\217\262\350\256\260\345\275\225.html" @@ -0,0 +1,441 @@ + + + + 编辑- 调用历史记录 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+

  

+
+
+ + +
+
+
+ + +
+ + +
+

已登记 4 人,累计金额   10000

+
+
+ + +
+ u27_start + u27_end + u27_line +
+ + +
+ + +
+

员工姓名

+
+
+ + +
+ +
+ + +
+ + +
+

手机号码

+
+
+ + +
+ +
+ + +
+ + +
+

发放金额

+
+
+ + +
+ +
+ + +
+ + +
+

      

+
+
+ + +
+ +
+ + +
+ +
+ + +
+ +
+
+
+
+
+ + +
+ + +
+

已登记 1 人,累计金额   2,500

+
+
+ + +
+ u44_start + u44_end + u44_line +
+ + +
+ + +
+

手机号码

+
+
+ + +
+ +
+ + +
+ + +
+

发放金额

+
+
+ + +
+ +
+ + +
+ +
+ + +
+ + +
+

员工姓名

+
+
+ + +
+ +
+ + +
+ + +
+

      

+
+
+ + +
+ +
+ + +
+ + +
+

红太狼

+
+
+ + +
+ + +
+

13800138002

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ u66_start + u66_end + u66_line +
+ + +
+
+ + +
+ +
+
+
+
+
+ + +
+ + +
+

手机号码

+
+
+ + +
+ +
+ + +
+ + +
+

发放金额

+
+
+ + +
+ +
+ + +
+ +
+ + +
+ + +
+

员工姓名

+
+
+ + +
+ +
+ + +
+ + +
+

      

+
+
+ + +
+ +
+
+
+
+
+ + diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\347\274\226\350\276\221\345\220\216\351\241\265\351\235\242_-_\350\260\203\347\224\250\345\216\206\345\217\262\346\226\260\345\242\236.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\347\274\226\350\276\221\345\220\216\351\241\265\351\235\242_-_\350\260\203\347\224\250\345\216\206\345\217\262\346\226\260\345\242\236.html" new file mode 100644 index 0000000..8d0f86c --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\347\274\226\350\276\221\345\220\216\351\241\265\351\235\242_-_\350\260\203\347\224\250\345\216\206\345\217\262\346\226\260\345\242\236.html" @@ -0,0 +1,426 @@ + + + + 编辑后页面 - 调用历史新增 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+

我要发工资

+
+
+ + +
+ + +
+

发放历史

+
+
+ + +
+ +
+ + +
+ + +
+

上月工资记录(2014-10)

+
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

2014-10-08

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

2014-10-08

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

2014-10-08

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

2014-10-08

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ +
+ + +
+ + +
+
+ + +
+ + +
+

灰太狼

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

2014-10-08

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+

2,500.00

+
+
+
+ + diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\350\256\242\345\215\225\350\257\246\346\203\205_-_\344\272\272.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\350\256\242\345\215\225\350\257\246\346\203\205_-_\344\272\272.html" new file mode 100644 index 0000000..4ac681c --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\350\256\242\345\215\225\350\257\246\346\203\205_-_\344\272\272.html" @@ -0,0 +1,412 @@ + + + + 订单详情 - 人 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+

洋洋

+
+
+ + +
+ + +
+

已累计发放12 个月

累计金额   50,3257.02

+
+
+ + +
+ u26_start + u26_end + u26_line +
+ + +
+ + +
+
+ + +
+ + +
+

洋洋

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

上次发放:2014-10-15

+
+
+ + +
+ + +
+

累计金额20,000.00

+
+
+ + +
+ + +
+
+ + +
+ + +
+

洋洋

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

上次发放:2014-10-15

+
+
+ + +
+ + +
+

累计金额20,000.00

+
+
+ + +
+ + +
+
+ + +
+ + +
+

洋洋

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

上次发放:2014-10-15

+
+
+ + +
+ + +
+

累计金额20,000.00

+
+
+ + +
+ + +
+
+ + +
+ + +
+

洋洋

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

上次发放:2014-10-15

+
+
+ + +
+ + +
+

累计金额20,000.00

+
+
+ + +
+ + +
+
+ + +
+ + +
+

洋洋

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

上次发放:2014-10-15

+
+
+ + +
+ + +
+

累计金额20,000.00

+
+
+ + +
+ + +
+
+ + +
+ + +
+

洋洋

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

上次发放:2014-10-15

+
+
+ + +
+ + +
+

累计金额20,000.00

+
+
+
+ + diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\350\256\242\345\215\225\350\257\246\346\203\205_-_\345\267\262\345\217\221\346\224\276.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\350\256\242\345\215\225\350\257\246\346\203\205_-_\345\267\262\345\217\221\346\224\276.html" new file mode 100644 index 0000000..35857c9 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\350\256\242\345\215\225\350\257\246\346\203\205_-_\345\267\262\345\217\221\346\224\276.html" @@ -0,0 +1,342 @@ + + + + 订单详情 - 已发放 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+

记录

+
+
+ + +
+ + +
+

当前记录发放3个批次,共 12 人,

累计金额   50,3257.02

+
+
+ + +
+ u26_start + u26_end + u26_line +
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+
+ + +
+ + +
+

2014-10-05

+
+
+
+ + diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\350\256\242\345\215\225\350\257\246\346\203\205_-_\345\276\205\345\256\241\346\211\271.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\350\256\242\345\215\225\350\257\246\346\203\205_-_\345\276\205\345\256\241\346\211\271.html" new file mode 100644 index 0000000..ea27f9c --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\350\256\242\345\215\225\350\257\246\346\203\205_-_\345\276\205\345\256\241\346\211\271.html" @@ -0,0 +1,997 @@ + + + + 订单详情 - 待审批 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+

审批记录

+
+
+ + +
+ + +
+

当前待发放记录 12 人,

累计金额   50,3257.02

+
+
+ + +
+ u26_start + u26_end + u26_line +
+ + +
+
+
+ + +
+ + +
+
+ + +
+ + +
+

2014-11-15

+
+
+
+
+
+
+ + +
+ + +
+
+ + +
+ + +
+

2014-11-15

+
+
+ + +
+ +
+
+
+
+ + +
+
+ + +
+ +
+ + +
+
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ +
+ + +
+
+
+
+
+
+ + +
+ + +
+

手机号码

+
+
+ + +
+ + +
+

发放金额

+
+
+ + +
+ +
+ + +
+ +
+ + +
+ + +
+

员工姓名

+
+
+ + +
+ + +
+

      

+
+
+ + +
+ +
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

138001380002

+
+
+
+
+
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

2014-10-08

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

2014-10-08

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

2014-10-08

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

2014-10-08

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ +
+ + +
+ + +
+
+
+
+
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

2014-10-08

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

2014-10-08

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

2014-10-08

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ +
+
+
+
+
+ + diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\350\256\242\345\215\225\350\257\246\346\203\205_-_\346\234\210\345\272\246.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\350\256\242\345\215\225\350\257\246\346\203\205_-_\346\234\210\345\272\246.html" new file mode 100644 index 0000000..959270a --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\350\256\242\345\215\225\350\257\246\346\203\205_-_\346\234\210\345\272\246.html" @@ -0,0 +1,412 @@ + + + + 订单详情 - 月度 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+

记录

+
+
+ + +
+ + +
+

10月发放 12 人,

累计金额   50,3257.02

+
+
+ + +
+ u26_start + u26_end + u26_line +
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

工资

+
+
+
+ + diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\350\256\242\345\215\225\350\257\246\346\203\205_-_\347\273\247\347\273\255\346\224\257\344\273\230.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\350\256\242\345\215\225\350\257\246\346\203\205_-_\347\273\247\347\273\255\346\224\257\344\273\230.html" new file mode 100644 index 0000000..df6d260 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\350\256\242\345\215\225\350\257\246\346\203\205_-_\347\273\247\347\273\255\346\224\257\344\273\230.html" @@ -0,0 +1,374 @@ + + + + 订单详情 - 继续支付 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+

工资发放

+
+
+ + +
+ + +
+

本次工资发放,共计员工 12 人,

已支付20,000.00

支付金额   30,3257.02

+
+
+ + +
+ u28_start + u28_end + u28_line +
+ + +
+ +
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

2014-10-08

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

2014-10-08

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

2014-10-08

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+
+ + +
+ + +
+

喜洋洋

+
+
+ + +
+ + +
+

13800138000

+
+
+ + +
+ + +
+

2014-10-08

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+

2,500.00

+
+
+
+ + diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\351\235\236\351\246\226\346\254\241.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\351\235\236\351\246\226\346\254\241.html" new file mode 100644 index 0000000..d837029 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204_20141126/\351\235\236\351\246\226\346\254\241.html" @@ -0,0 +1,441 @@ + + + + 非首次 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+
+ + +
+ + +
+

登记工资表

+
+
+ + +
+
+
+ + +
+ + +
+

已登记 0 人,累计金额   0

+
+
+ + +
+ u27_start + u27_end + u27_line +
+ + +
+ + +
+

员工姓名

+
+
+ + +
+ +
+ + +
+ + +
+

手机号码

+
+
+ + +
+ +
+ + +
+ + +
+

发放金额

+
+
+ + +
+ +
+ + +
+ + +
+

      

+
+
+ + +
+ +
+ + +
+ +
+ + +
+ +
+
+
+
+
+ + +
+ + +
+

已登记 1 人,累计金额   2,500

+
+
+ + +
+ u44_start + u44_end + u44_line +
+ + +
+ + +
+

手机号码

+
+
+ + +
+ +
+ + +
+ + +
+

发放金额

+
+
+ + +
+ +
+ + +
+ +
+ + +
+ + +
+

员工姓名

+
+
+ + +
+ +
+ + +
+ + +
+

      

+
+
+ + +
+ +
+ + +
+ + +
+

红太狼

+
+
+ + +
+ + +
+

13800138002

+
+
+ + +
+ + +
+

2,500.00

+
+
+ + +
+ + +
+

工资

+
+
+ + +
+ u66_start + u66_end + u66_line +
+ + +
+
+ + +
+ +
+
+
+
+
+ + +
+ + +
+

手机号码

+
+
+ + +
+ +
+ + +
+ + +
+

发放金额

+
+
+ + +
+ +
+ + +
+ +
+ + +
+ + +
+

员工姓名

+
+
+ + +
+ +
+ + +
+ + +
+

      

+
+
+ + +
+ +
+
+
+
+
+ + diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213.rp" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213.rp" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213.rp" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213.rp" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/chm_start.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/chm_start.html" new file mode 100644 index 0000000..d4ad31c --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/chm_start.html" @@ -0,0 +1,25 @@ + + + + + +
+This HTML was created with Axure RP Pro
+

Help

+

If you are viewing this in the HTML +Help Viewer and would like to open the it in a web browser, click +here.

+

Click on a page or flow diagram in the contents +tree to navigate directly to a page or flow diagram in the design.

+

Click on note icons + +to display annotations related to the +elements on the screen.

+

Some elements on the screen may be interactive. +For example, clicking on a link may take you to another page.

+

In some cases a menu will appear displaying +multiple paths a user may take after performing an action. Clicking on an item in that menu will perform the +action for that path.

+ + + \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/data/document.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/data/document.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/data/document.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/data/document.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/data/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/data/styles.css" new file mode 100644 index 0000000..bc4b8bb --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/data/styles.css" @@ -0,0 +1,268 @@ +.ax_形状 { + font-family:'Arial Normal', 'Arial'; + font-weight:400; + font-style:normal; + font-size:13px; + color:#333333; + text-align:center; + line-height:normal; +} +.ax_文本 { + font-family:'Arial Normal', 'Arial'; + font-weight:400; + font-style:normal; + font-size:13px; + color:#333333; + text-align:left; + line-height:normal; +} +.ax_h1 { + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + font-style:normal; + font-size:32px; + color:#333333; + text-align:left; + line-height:normal; +} +.ax_h2 { + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + font-style:normal; + font-size:24px; + color:#333333; + text-align:left; + line-height:normal; +} +.ax_h3 { + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + font-style:normal; + font-size:18px; + color:#333333; + text-align:left; + line-height:normal; +} +.ax_h4 { + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + font-style:normal; + font-size:14px; + color:#333333; + text-align:left; + line-height:normal; +} +.ax_h5 { + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + font-style:normal; + font-size:13px; + color:#333333; + text-align:left; + line-height:normal; +} +.ax_h6 { + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + font-style:normal; + font-size:10px; + color:#333333; + text-align:left; + line-height:normal; +} +.ax_图片 { + font-family:'Arial Normal', 'Arial'; + font-weight:400; + font-style:normal; + font-size:13px; + color:#000000; + text-align:center; + line-height:normal; +} +.ax_文本链接 { + color:#0000FF; +} +.ax_鼠标悬停文本链接 { +} +.ax_鼠标按下文本链接 { +} +.ax_文本框_单行_ { + font-family:'Arial Normal', 'Arial'; + font-weight:400; + font-style:normal; + font-size:13px; + color:#000000; + text-align:left; + line-height:normal; +} +.ax_文本框_多行_ { + font-family:'Arial Normal', 'Arial'; + font-weight:400; + font-style:normal; + font-size:13px; + color:#000000; + text-align:left; + line-height:normal; +} +.ax_下拉列表框 { + font-family:'Arial Normal', 'Arial'; + font-weight:400; + font-style:normal; + font-size:13px; + color:#000000; + text-align:left; + line-height:normal; +} +.ax_列表选择框 { + font-family:'Arial Normal', 'Arial'; + font-weight:400; + font-style:normal; + font-size:13px; + color:#000000; + text-align:left; + line-height:normal; +} +.ax_复选框 { + font-family:'Arial Normal', 'Arial'; + font-weight:400; + font-style:normal; + font-size:13px; + color:#333333; + text-align:left; + line-height:normal; +} +.ax_单选框 { + font-family:'Arial Normal', 'Arial'; + font-weight:400; + font-style:normal; + font-size:13px; + color:#333333; + text-align:left; + line-height:normal; +} +.ax_流程形状 { + font-family:'Arial Normal', 'Arial'; + font-weight:400; + font-style:normal; + font-size:13px; + color:#333333; + text-align:center; + line-height:normal; +} +.ax_树节点 { + font-family:'Arial Normal', 'Arial'; + font-weight:400; + font-style:normal; + font-size:13px; + color:#333333; + text-align:left; + line-height:normal; +} +.ax_html_button { + font-family:'Arial Normal', 'Arial'; + font-weight:400; + font-style:normal; + font-size:13px; + color:#000000; + text-align:center; + line-height:normal; +} +.ax_hot_spot { + font-family:'Arial Normal', 'Arial'; + font-weight:400; + font-style:normal; + font-size:13px; + color:#333333; + text-align:center; + line-height:normal; +} +.ax_内部框架 { + font-family:'Arial Normal', 'Arial'; + font-weight:400; + font-style:normal; + font-size:13px; + color:#333333; + text-align:center; + line-height:normal; +} +.ax_动态面板 { + font-family:'Arial Normal', 'Arial'; + font-weight:400; + font-style:normal; + font-size:13px; + color:#333333; + text-align:center; + line-height:normal; +} +.ax_编辑选项 { + font-family:'Arial Normal', 'Arial'; + font-weight:400; + font-style:normal; + font-size:13px; + color:#333333; + text-align:center; + line-height:normal; +} +.ax_中继器 { + font-family:'Arial Normal', 'Arial'; + font-weight:400; + font-style:normal; + font-size:13px; + color:#333333; + text-align:center; + line-height:normal; +} +.ax_表格 { + font-family:'Arial Normal', 'Arial'; + font-weight:400; + font-style:normal; + font-size:13px; + color:#333333; + text-align:center; + line-height:normal; +} +.ax_表格单元 { + font-family:'Arial Normal', 'Arial'; + font-weight:400; + font-style:normal; + font-size:13px; + color:#333333; + text-align:left; + line-height:normal; +} +.ax_菜单 { + font-family:'Arial Normal', 'Arial'; + font-weight:400; + font-style:normal; + font-size:13px; + color:#000000; + text-align:center; + line-height:normal; +} +.ax_水平线 { + font-family:'Arial Normal', 'Arial'; + font-weight:400; + font-style:normal; + font-size:13px; + color:#333333; + text-align:center; + line-height:normal; +} +.ax_垂直线 { + font-family:'Arial Normal', 'Arial'; + font-weight:400; + font-style:normal; + font-size:13px; + color:#333333; + text-align:center; + line-height:normal; +} +.ax_connector { + font-family:'Arial Normal', 'Arial'; + font-weight:400; + font-style:normal; + font-size:13px; + color:#333333; + text-align:center; + line-height:normal; +} diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\344\274\201\344\270\232\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\345\220\216\345\217\260\357\274\211/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\344\274\201\344\270\232\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\345\220\216\345\217\260\357\274\211/data.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\344\274\201\344\270\232\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\345\220\216\345\217\260\357\274\211/data.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\344\274\201\344\270\232\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\345\220\216\345\217\260\357\274\211/data.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\344\274\201\344\270\232\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\345\220\216\345\217\260\357\274\211/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\344\274\201\344\270\232\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\345\220\216\345\217\260\357\274\211/styles.css" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\344\274\201\344\270\232\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\345\220\216\345\217\260\357\274\211/styles.css" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\344\274\201\344\270\232\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\345\220\216\345\217\260\357\274\211/styles.css" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\344\274\201\344\270\232\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\210\215\345\274\203\357\274\211/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\344\274\201\344\270\232\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\210\215\345\274\203\357\274\211/data.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\344\274\201\344\270\232\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\210\215\345\274\203\357\274\211/data.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\344\274\201\344\270\232\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\210\215\345\274\203\357\274\211/data.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\344\274\201\344\270\232\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\210\215\345\274\203\357\274\211/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\344\274\201\344\270\232\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\210\215\345\274\203\357\274\211/styles.css" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\344\274\201\344\270\232\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\210\215\345\274\203\357\274\211/styles.css" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\344\274\201\344\270\232\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\210\215\345\274\203\357\274\211/styles.css" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\217\221\346\224\276\345\216\206\345\217\262/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\217\221\346\224\276\345\216\206\345\217\262/data.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\217\221\346\224\276\345\216\206\345\217\262/data.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\217\221\346\224\276\345\216\206\345\217\262/data.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\217\221\346\224\276\345\216\206\345\217\262/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\217\221\346\224\276\345\216\206\345\217\262/styles.css" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\217\221\346\224\276\345\216\206\345\217\262/styles.css" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\217\221\346\224\276\345\216\206\345\217\262/styles.css" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\217\221\346\224\276\345\267\245\350\265\204/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\217\221\346\224\276\345\267\245\350\265\204/data.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\217\221\346\224\276\345\267\245\350\265\204/data.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\217\221\346\224\276\345\267\245\350\265\204/data.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\217\221\346\224\276\345\267\245\350\265\204/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\217\221\346\224\276\345\267\245\350\265\204/styles.css" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\217\221\346\224\276\345\267\245\350\265\204/styles.css" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\217\221\346\224\276\345\267\245\350\265\204/styles.css" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\221\230\345\267\245\345\267\245\350\265\204\347\231\273\350\256\260/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\221\230\345\267\245\345\267\245\350\265\204\347\231\273\350\256\260/data.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\221\230\345\267\245\345\267\245\350\265\204\347\231\273\350\256\260/data.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\221\230\345\267\245\345\267\245\350\265\204\347\231\273\350\256\260/data.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\221\230\345\267\245\345\267\245\350\265\204\347\231\273\350\256\260/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\221\230\345\267\245\345\267\245\350\265\204\347\231\273\350\256\260/styles.css" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\221\230\345\267\245\345\267\245\350\265\204\347\231\273\350\256\260/styles.css" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\221\230\345\267\245\345\267\245\350\265\204\347\231\273\350\256\260/styles.css" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\345\217\221\346\224\276/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\345\217\221\346\224\276/data.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\345\217\221\346\224\276/data.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\345\217\221\346\224\276/data.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\345\217\221\346\224\276/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\345\217\221\346\224\276/styles.css" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\345\217\221\346\224\276/styles.css" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\345\217\221\346\224\276/styles.css" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\346\224\266\345\217\221/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\346\224\266\345\217\221/data.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\346\224\266\345\217\221/data.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\346\224\266\345\217\221/data.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\346\224\266\345\217\221/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\346\224\266\345\217\221/styles.css" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\346\224\266\345\217\221/styles.css" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\346\224\266\345\217\221/styles.css" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\346\230\216\347\273\206\344\277\256\346\224\271\357\274\210\350\210\215\345\274\203\357\274\211/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\346\230\216\347\273\206\344\277\256\346\224\271\357\274\210\350\210\215\345\274\203\357\274\211/data.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\346\230\216\347\273\206\344\277\256\346\224\271\357\274\210\350\210\215\345\274\203\357\274\211/data.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\346\230\216\347\273\206\344\277\256\346\224\271\357\274\210\350\210\215\345\274\203\357\274\211/data.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\346\230\216\347\273\206\344\277\256\346\224\271\357\274\210\350\210\215\345\274\203\357\274\211/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\346\230\216\347\273\206\344\277\256\346\224\271\357\274\210\350\210\215\345\274\203\357\274\211/styles.css" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\346\230\216\347\273\206\344\277\256\346\224\271\357\274\210\350\210\215\345\274\203\357\274\211/styles.css" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\346\230\216\347\273\206\344\277\256\346\224\271\357\274\210\350\210\215\345\274\203\357\274\211/styles.css" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\347\255\276\346\224\266/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\347\255\276\346\224\266/data.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\347\255\276\346\224\266/data.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\347\255\276\346\224\266/data.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\347\255\276\346\224\266/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\347\255\276\346\224\266/styles.css" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\347\255\276\346\224\266/styles.css" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\347\255\276\346\224\266/styles.css" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\345\267\245\350\265\204\346\230\216\347\273\206\344\277\256\346\224\271\357\274\211/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\345\267\245\350\265\204\346\230\216\347\273\206\344\277\256\346\224\271\357\274\211/data.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\345\267\245\350\265\204\346\230\216\347\273\206\344\277\256\346\224\271\357\274\211/data.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\345\267\245\350\265\204\346\230\216\347\273\206\344\277\256\346\224\271\357\274\211/data.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\345\267\245\350\265\204\346\230\216\347\273\206\344\277\256\346\224\271\357\274\211/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\345\267\245\350\265\204\346\230\216\347\273\206\344\277\256\346\224\271\357\274\211/styles.css" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\345\267\245\350\265\204\346\230\216\347\273\206\344\277\256\346\224\271\357\274\211/styles.css" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\345\267\245\350\265\204\346\230\216\347\273\206\344\277\256\346\224\271\357\274\211/styles.css" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\210\215\345\274\203\357\274\211/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\210\215\345\274\203\357\274\211/data.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\210\215\345\274\203\357\274\211/data.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\210\215\345\274\203\357\274\211/data.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\210\215\345\274\203\357\274\211/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\210\215\345\274\203\357\274\211/styles.css" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\210\215\345\274\203\357\274\211/styles.css" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\210\215\345\274\203\357\274\211/styles.css" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\264\242\345\212\241\357\274\211/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\264\242\345\212\241\357\274\211/data.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\264\242\345\212\241\357\274\211/data.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\264\242\345\212\241\357\274\211/data.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\264\242\345\212\241\357\274\211/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\264\242\345\212\241\357\274\211/styles.css" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\264\242\345\212\241\357\274\211/styles.css" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\264\242\345\212\241\357\274\211/styles.css" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\214\207\345\256\232\350\264\242\345\212\241/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\214\207\345\256\232\350\264\242\345\212\241/data.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\214\207\345\256\232\350\264\242\345\212\241/data.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\214\207\345\256\232\350\264\242\345\212\241/data.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\214\207\345\256\232\350\264\242\345\212\241/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\214\207\345\256\232\350\264\242\345\212\241/styles.css" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\214\207\345\256\232\350\264\242\345\212\241/styles.css" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\214\207\345\256\232\350\264\242\345\212\241/styles.css" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\214\207\345\256\232\350\264\242\345\212\241\357\274\210\350\210\215\345\274\203\357\274\211/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\214\207\345\256\232\350\264\242\345\212\241\357\274\210\350\210\215\345\274\203\357\274\211/data.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\214\207\345\256\232\350\264\242\345\212\241\357\274\210\350\210\215\345\274\203\357\274\211/data.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\214\207\345\256\232\350\264\242\345\212\241\357\274\210\350\210\215\345\274\203\357\274\211/data.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\214\207\345\256\232\350\264\242\345\212\241\357\274\210\350\210\215\345\274\203\357\274\211/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\214\207\345\256\232\350\264\242\345\212\241\357\274\210\350\210\215\345\274\203\357\274\211/styles.css" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\214\207\345\256\232\350\264\242\345\212\241\357\274\210\350\210\215\345\274\203\357\274\211/styles.css" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\214\207\345\256\232\350\264\242\345\212\241\357\274\210\350\210\215\345\274\203\357\274\211/styles.css" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\224\257\344\273\230\345\256\214\346\210\220/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\224\257\344\273\230\345\256\214\346\210\220/data.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\224\257\344\273\230\345\256\214\346\210\220/data.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\224\257\344\273\230\345\256\214\346\210\220/data.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\224\257\344\273\230\345\256\214\346\210\220/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\224\257\344\273\230\345\256\214\346\210\220/styles.css" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\224\257\344\273\230\345\256\214\346\210\220/styles.css" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\224\257\344\273\230\345\256\214\346\210\220/styles.css" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\224\257\344\273\230\345\256\214\346\210\220\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\224\257\344\273\230\345\256\214\346\210\220\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211/data.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\224\257\344\273\230\345\256\214\346\210\220\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211/data.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\224\257\344\273\230\345\256\214\346\210\220\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211/data.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\224\257\344\273\230\345\256\214\346\210\220\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\224\257\344\273\230\345\256\214\346\210\220\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211/styles.css" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\224\257\344\273\230\345\256\214\346\210\220\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211/styles.css" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\224\257\344\273\230\345\256\214\346\210\220\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211/styles.css" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\224\257\344\273\230\345\267\245\350\265\204/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\224\257\344\273\230\345\267\245\350\265\204/data.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\224\257\344\273\230\345\267\245\350\265\204/data.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\224\257\344\273\230\345\267\245\350\265\204/data.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\224\257\344\273\230\345\267\245\350\265\204/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\224\257\344\273\230\345\267\245\350\265\204/styles.css" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\224\257\344\273\230\345\267\245\350\265\204/styles.css" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\224\257\344\273\230\345\267\245\350\265\204/styles.css" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\224\257\344\273\230\345\267\245\350\265\204\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\224\257\344\273\230\345\267\245\350\265\204\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211/data.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\224\257\344\273\230\345\267\245\350\265\204\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211/data.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\224\257\344\273\230\345\267\245\350\265\204\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211/data.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\224\257\344\273\230\345\267\245\350\265\204\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\224\257\344\273\230\345\267\245\350\265\204\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211/styles.css" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\224\257\344\273\230\345\267\245\350\265\204\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211/styles.css" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\224\257\344\273\230\345\267\245\350\265\204\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211/styles.css" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\224\266\346\254\276\351\223\266\350\241\214\345\215\241\357\274\210\347\224\250\346\210\267\344\277\241\346\201\257\344\270\255\357\274\211/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\224\266\346\254\276\351\223\266\350\241\214\345\215\241\357\274\210\347\224\250\346\210\267\344\277\241\346\201\257\344\270\255\357\274\211/data.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\224\266\346\254\276\351\223\266\350\241\214\345\215\241\357\274\210\347\224\250\346\210\267\344\277\241\346\201\257\344\270\255\357\274\211/data.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\224\266\346\254\276\351\223\266\350\241\214\345\215\241\357\274\210\347\224\250\346\210\267\344\277\241\346\201\257\344\270\255\357\274\211/data.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\224\266\346\254\276\351\223\266\350\241\214\345\215\241\357\274\210\347\224\250\346\210\267\344\277\241\346\201\257\344\270\255\357\274\211/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\224\266\346\254\276\351\223\266\350\241\214\345\215\241\357\274\210\347\224\250\346\210\267\344\277\241\346\201\257\344\270\255\357\274\211/styles.css" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\224\266\346\254\276\351\223\266\350\241\214\345\215\241\357\274\210\347\224\250\346\210\267\344\277\241\346\201\257\344\270\255\357\274\211/styles.css" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\346\224\266\346\254\276\351\223\266\350\241\214\345\215\241\357\274\210\347\224\250\346\210\267\344\277\241\346\201\257\344\270\255\357\274\211/styles.css" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\347\255\276\346\224\266\345\216\206\345\217\262/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\347\255\276\346\224\266\345\216\206\345\217\262/data.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\347\255\276\346\224\266\345\216\206\345\217\262/data.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\347\255\276\346\224\266\345\216\206\345\217\262/data.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\347\255\276\346\224\266\345\216\206\345\217\262/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\347\255\276\346\224\266\345\216\206\345\217\262/styles.css" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\347\255\276\346\224\266\345\216\206\345\217\262/styles.css" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\347\255\276\346\224\266\345\216\206\345\217\262/styles.css" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\347\255\276\346\224\266\345\244\261\350\264\245/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\347\255\276\346\224\266\345\244\261\350\264\245/data.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\347\255\276\346\224\266\345\244\261\350\264\245/data.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\347\255\276\346\224\266\345\244\261\350\264\245/data.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\347\255\276\346\224\266\345\244\261\350\264\245/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\347\255\276\346\224\266\345\244\261\350\264\245/styles.css" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\347\255\276\346\224\266\345\244\261\350\264\245/styles.css" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\347\255\276\346\224\266\345\244\261\350\264\245/styles.css" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\347\255\276\346\224\266\346\210\220\345\212\237/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\347\255\276\346\224\266\346\210\220\345\212\237/data.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\347\255\276\346\224\266\346\210\220\345\212\237/data.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\347\255\276\346\224\266\346\210\220\345\212\237/data.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\347\255\276\346\224\266\346\210\220\345\212\237/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\347\255\276\346\224\266\346\210\220\345\212\237/styles.css" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\347\255\276\346\224\266\346\210\220\345\212\237/styles.css" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\347\255\276\346\224\266\346\210\220\345\212\237/styles.css" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\351\252\214\350\257\201\346\224\257\344\273\230/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\351\252\214\350\257\201\346\224\257\344\273\230/data.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\351\252\214\350\257\201\346\224\257\344\273\230/data.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\351\252\214\350\257\201\346\224\257\344\273\230/data.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\351\252\214\350\257\201\346\224\257\344\273\230/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\351\252\214\350\257\201\346\224\257\344\273\230/styles.css" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\351\252\214\350\257\201\346\224\257\344\273\230/styles.css" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\351\252\214\350\257\201\346\224\257\344\273\230/styles.css" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\351\252\214\350\257\201\346\224\257\344\273\230\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\351\252\214\350\257\201\346\224\257\344\273\230\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211/data.js" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\351\252\214\350\257\201\346\224\257\344\273\230\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211/data.js" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\351\252\214\350\257\201\346\224\257\344\273\230\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211/data.js" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\351\252\214\350\257\201\346\224\257\344\273\230\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\351\252\214\350\257\201\346\224\257\344\273\230\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211/styles.css" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\351\252\214\350\257\201\346\224\257\344\273\230\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211/styles.css" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/files/\351\252\214\350\257\201\346\224\257\344\273\230\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211/styles.css" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\344\274\201\344\270\232\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\345\220\216\345\217\260\357\274\211/u6.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\344\274\201\344\270\232\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\345\220\216\345\217\260\357\274\211/u6.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\344\274\201\344\270\232\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\345\220\216\345\217\260\357\274\211/u6.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\344\274\201\344\270\232\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\345\220\216\345\217\260\357\274\211/u6.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\344\274\201\344\270\232\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\210\215\345\274\203\357\274\211/u6.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\344\274\201\344\270\232\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\210\215\345\274\203\357\274\211/u6.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\344\274\201\344\270\232\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\210\215\345\274\203\357\274\211/u6.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\344\274\201\344\270\232\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\210\215\345\274\203\357\274\211/u6.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\217\221\346\224\276\345\216\206\345\217\262/u12.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\217\221\346\224\276\345\216\206\345\217\262/u12.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\217\221\346\224\276\345\216\206\345\217\262/u12.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\217\221\346\224\276\345\216\206\345\217\262/u12.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\217\221\346\224\276\345\267\245\350\265\204/u0.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\217\221\346\224\276\345\267\245\350\265\204/u0.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\217\221\346\224\276\345\267\245\350\265\204/u0.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\217\221\346\224\276\345\267\245\350\265\204/u0.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\217\221\346\224\276\345\267\245\350\265\204/u14.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\217\221\346\224\276\345\267\245\350\265\204/u14.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\217\221\346\224\276\345\267\245\350\265\204/u14.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\217\221\346\224\276\345\267\245\350\265\204/u14.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\217\221\346\224\276\345\267\245\350\265\204/u16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\217\221\346\224\276\345\267\245\350\265\204/u16.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\217\221\346\224\276\345\267\245\350\265\204/u16.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\217\221\346\224\276\345\267\245\350\265\204/u16.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\217\221\346\224\276\345\267\245\350\265\204/u18.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\217\221\346\224\276\345\267\245\350\265\204/u18.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\217\221\346\224\276\345\267\245\350\265\204/u18.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\217\221\346\224\276\345\267\245\350\265\204/u18.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\346\224\266\345\217\221/u2.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\217\221\346\224\276\345\267\245\350\265\204/u2.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\346\224\266\345\217\221/u2.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\217\221\346\224\276\345\267\245\350\265\204/u2.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\217\221\346\224\276\345\267\245\350\265\204/u22.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\217\221\346\224\276\345\267\245\350\265\204/u22.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\217\221\346\224\276\345\267\245\350\265\204/u22.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\217\221\346\224\276\345\267\245\350\265\204/u22.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\217\221\346\224\276\345\267\245\350\265\204/u24.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\217\221\346\224\276\345\267\245\350\265\204/u24.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\217\221\346\224\276\345\267\245\350\265\204/u24.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\217\221\346\224\276\345\267\245\350\265\204/u24.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265/u4.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\217\221\346\224\276\345\267\245\350\265\204/u4.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265/u4.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\217\221\346\224\276\345\267\245\350\265\204/u4.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\217\221\346\224\276\345\267\245\350\265\204/u8.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\217\221\346\224\276\345\267\245\350\265\204/u8.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\217\221\346\224\276\345\267\245\350\265\204/u8.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\217\221\346\224\276\345\267\245\350\265\204/u8.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\221\230\345\267\245\345\267\245\350\265\204\347\231\273\350\256\260/u10.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\221\230\345\267\245\345\267\245\350\265\204\347\231\273\350\256\260/u10.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\221\230\345\267\245\345\267\245\350\265\204\347\231\273\350\256\260/u10.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\221\230\345\267\245\345\267\245\350\265\204\347\231\273\350\256\260/u10.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\221\230\345\267\245\345\267\245\350\265\204\347\231\273\350\256\260/u12.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\221\230\345\267\245\345\267\245\350\265\204\347\231\273\350\256\260/u12.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\221\230\345\267\245\345\267\245\350\265\204\347\231\273\350\256\260/u12.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\221\230\345\267\245\345\267\245\350\265\204\347\231\273\350\256\260/u12.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\221\230\345\267\245\345\267\245\350\265\204\347\231\273\350\256\260/u16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\221\230\345\267\245\345\267\245\350\265\204\347\231\273\350\256\260/u16.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\221\230\345\267\245\345\267\245\350\265\204\347\231\273\350\256\260/u16.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\221\230\345\267\245\345\267\245\350\265\204\347\231\273\350\256\260/u16.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\345\217\221\346\224\276/u14.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\345\217\221\346\224\276/u14.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\345\217\221\346\224\276/u14.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\345\217\221\346\224\276/u14.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\345\217\221\346\224\276/u16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\345\217\221\346\224\276/u16.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\345\217\221\346\224\276/u16.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\345\217\221\346\224\276/u16.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\345\217\221\346\224\276/u18.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\345\217\221\346\224\276/u18.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\345\217\221\346\224\276/u18.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\345\217\221\346\224\276/u18.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\345\217\221\346\224\276/u20.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\345\217\221\346\224\276/u20.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\345\217\221\346\224\276/u20.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\345\217\221\346\224\276/u20.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\345\217\221\346\224\276/u22.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\345\217\221\346\224\276/u22.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\345\217\221\346\224\276/u22.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\345\217\221\346\224\276/u22.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\345\217\221\346\224\276/u24.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\345\217\221\346\224\276/u24.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\345\217\221\346\224\276/u24.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\345\217\221\346\224\276/u24.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\346\224\266\345\217\221/u0.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\346\224\266\345\217\221/u0.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\346\224\266\345\217\221/u0.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\346\224\266\345\217\221/u0.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\346\224\266\345\217\221/u10.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\346\224\266\345\217\221/u10.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\346\224\266\345\217\221/u10.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\346\224\266\345\217\221/u10.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\346\224\266\345\217\221/u2.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\346\224\266\345\217\221/u2.png" new file mode 100644 index 0000000..986e91f Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\346\224\266\345\217\221/u2.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257/u4.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\346\224\266\345\217\221/u4.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\347\237\255\344\277\241\346\224\266\346\254\276/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\346\274\224\347\244\272/images/\344\270\232\345\212\241\351\241\265\350\203\214\346\231\257/u4.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\346\224\266\345\217\221/u4.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\346\224\266\345\217\221/u6.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\346\224\266\345\217\221/u6.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\346\224\266\345\217\221/u6.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\346\224\266\345\217\221/u6.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\346\230\216\347\273\206\344\277\256\346\224\271\357\274\210\350\210\215\345\274\203\357\274\211/u12.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\346\230\216\347\273\206\344\277\256\346\224\271\357\274\210\350\210\215\345\274\203\357\274\211/u12.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\346\230\216\347\273\206\344\277\256\346\224\271\357\274\210\350\210\215\345\274\203\357\274\211/u12.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\346\230\216\347\273\206\344\277\256\346\224\271\357\274\210\350\210\215\345\274\203\357\274\211/u12.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\346\230\216\347\273\206\344\277\256\346\224\271\357\274\210\350\210\215\345\274\203\357\274\211/u32.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\346\230\216\347\273\206\344\277\256\346\224\271\357\274\210\350\210\215\345\274\203\357\274\211/u32.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\346\230\216\347\273\206\344\277\256\346\224\271\357\274\210\350\210\215\345\274\203\357\274\211/u32.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\346\230\216\347\273\206\344\277\256\346\224\271\357\274\210\350\210\215\345\274\203\357\274\211/u32.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\255\276\346\224\266/u12.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\255\276\346\224\266/u12.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\255\276\346\224\266/u12.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\255\276\346\224\266/u12.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\255\276\346\224\266/u14.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\255\276\346\224\266/u14.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\255\276\346\224\266/u14.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\255\276\346\224\266/u14.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\255\276\346\224\266/u16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\255\276\346\224\266/u16.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\255\276\346\224\266/u16.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\255\276\346\224\266/u16.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\345\267\245\350\265\204\346\230\216\347\273\206\344\277\256\346\224\271\357\274\211/u12.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\345\267\245\350\265\204\346\230\216\347\273\206\344\277\256\346\224\271\357\274\211/u12.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\345\267\245\350\265\204\346\230\216\347\273\206\344\277\256\346\224\271\357\274\211/u12.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\345\267\245\350\265\204\346\230\216\347\273\206\344\277\256\346\224\271\357\274\211/u12.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\345\267\245\350\265\204\346\230\216\347\273\206\344\277\256\346\224\271\357\274\211/u32.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\345\267\245\350\265\204\346\230\216\347\273\206\344\277\256\346\224\271\357\274\211/u32.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\345\267\245\350\265\204\346\230\216\347\273\206\344\277\256\346\224\271\357\274\211/u32.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\345\267\245\350\265\204\346\230\216\347\273\206\344\277\256\346\224\271\357\274\211/u32.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\210\215\345\274\203\357\274\211/u12.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\210\215\345\274\203\357\274\211/u12.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\210\215\345\274\203\357\274\211/u12.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\210\215\345\274\203\357\274\211/u12.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\210\215\345\274\203\357\274\211/u2.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\210\215\345\274\203\357\274\211/u2.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\210\215\345\274\203\357\274\211/u2.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\210\215\345\274\203\357\274\211/u2.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\210\215\345\274\203\357\274\211/u20.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\210\215\345\274\203\357\274\211/u20.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\210\215\345\274\203\357\274\211/u20.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\210\215\345\274\203\357\274\211/u20.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\210\215\345\274\203\357\274\211/u6.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\210\215\345\274\203\357\274\211/u6.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\210\215\345\274\203\357\274\211/u6.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\210\215\345\274\203\357\274\211/u6.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\210\215\345\274\203\357\274\211/u8.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\210\215\345\274\203\357\274\211/u8.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\210\215\345\274\203\357\274\211/u8.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\210\215\345\274\203\357\274\211/u8.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\264\242\345\212\241\357\274\211/u12.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\264\242\345\212\241\357\274\211/u12.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\264\242\345\212\241\357\274\211/u12.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\264\242\345\212\241\357\274\211/u12.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\264\242\345\212\241\357\274\211/u14.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\264\242\345\212\241\357\274\211/u14.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\264\242\345\212\241\357\274\211/u14.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\264\242\345\212\241\357\274\211/u14.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\264\242\345\212\241\357\274\211/u2.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\264\242\345\212\241\357\274\211/u2.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\264\242\345\212\241\357\274\211/u2.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\264\242\345\212\241\357\274\211/u2.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\264\242\345\212\241\357\274\211/u20.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\264\242\345\212\241\357\274\211/u20.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\264\242\345\212\241\357\274\211/u20.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\264\242\345\212\241\357\274\211/u20.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\264\242\345\212\241\357\274\211/u6.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\264\242\345\212\241\357\274\211/u6.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\264\242\345\212\241\357\274\211/u6.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\264\242\345\212\241\357\274\211/u6.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\264\242\345\212\241\357\274\211/u8.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\264\242\345\212\241\357\274\211/u8.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\264\242\345\212\241\357\274\211/u8.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\264\242\345\212\241\357\274\211/u8.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\214\207\345\256\232\350\264\242\345\212\241/u10.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\214\207\345\256\232\350\264\242\345\212\241/u10.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\214\207\345\256\232\350\264\242\345\212\241/u10.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\214\207\345\256\232\350\264\242\345\212\241/u10.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\214\207\345\256\232\350\264\242\345\212\241/u12.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\214\207\345\256\232\350\264\242\345\212\241/u12.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\214\207\345\256\232\350\264\242\345\212\241/u12.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\214\207\345\256\232\350\264\242\345\212\241/u12.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\214\207\345\256\232\350\264\242\345\212\241/u14.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\214\207\345\256\232\350\264\242\345\212\241/u14.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\214\207\345\256\232\350\264\242\345\212\241/u14.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\214\207\345\256\232\350\264\242\345\212\241/u14.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\214\207\345\256\232\350\264\242\345\212\241\357\274\210\350\210\215\345\274\203\357\274\211/u10.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\214\207\345\256\232\350\264\242\345\212\241\357\274\210\350\210\215\345\274\203\357\274\211/u10.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\214\207\345\256\232\350\264\242\345\212\241\357\274\210\350\210\215\345\274\203\357\274\211/u10.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\214\207\345\256\232\350\264\242\345\212\241\357\274\210\350\210\215\345\274\203\357\274\211/u10.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\214\207\345\256\232\350\264\242\345\212\241\357\274\210\350\210\215\345\274\203\357\274\211/u12.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\214\207\345\256\232\350\264\242\345\212\241\357\274\210\350\210\215\345\274\203\357\274\211/u12.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\214\207\345\256\232\350\264\242\345\212\241\357\274\210\350\210\215\345\274\203\357\274\211/u12.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\214\207\345\256\232\350\264\242\345\212\241\357\274\210\350\210\215\345\274\203\357\274\211/u12.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\224\257\344\273\230\345\256\214\346\210\220/u10.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\224\257\344\273\230\345\256\214\346\210\220/u10.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\224\257\344\273\230\345\256\214\346\210\220/u10.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\224\257\344\273\230\345\256\214\346\210\220/u10.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\224\257\344\273\230\345\256\214\346\210\220/u14.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\224\257\344\273\230\345\256\214\346\210\220/u14.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\224\257\344\273\230\345\256\214\346\210\220/u14.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\224\257\344\273\230\345\256\214\346\210\220/u14.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\224\257\344\273\230\345\256\214\346\210\220/u16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\224\257\344\273\230\345\256\214\346\210\220/u16.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\224\257\344\273\230\345\256\214\346\210\220/u16.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\224\257\344\273\230\345\256\214\346\210\220/u16.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\224\257\344\273\230\345\256\214\346\210\220\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211/u10.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\224\257\344\273\230\345\256\214\346\210\220\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211/u10.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\224\257\344\273\230\345\256\214\346\210\220\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211/u10.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\224\257\344\273\230\345\256\214\346\210\220\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211/u10.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\224\257\344\273\230\345\256\214\346\210\220\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211/u16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\224\257\344\273\230\345\256\214\346\210\220\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211/u16.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\224\257\344\273\230\345\256\214\346\210\220\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211/u16.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\224\257\344\273\230\345\256\214\346\210\220\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211/u16.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\224\257\344\273\230\345\267\245\350\265\204/u12.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\224\257\344\273\230\345\267\245\350\265\204/u12.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\224\257\344\273\230\345\267\245\350\265\204/u12.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\224\257\344\273\230\345\267\245\350\265\204/u12.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\224\257\344\273\230\345\267\245\350\265\204/u14.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\224\257\344\273\230\345\267\245\350\265\204/u14.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\224\257\344\273\230\345\267\245\350\265\204/u14.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\224\257\344\273\230\345\267\245\350\265\204/u14.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\224\257\344\273\230\345\267\245\350\265\204/u16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\224\257\344\273\230\345\267\245\350\265\204/u16.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\224\257\344\273\230\345\267\245\350\265\204/u16.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\224\257\344\273\230\345\267\245\350\265\204/u16.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\224\257\344\273\230\345\267\245\350\265\204/u18.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\224\257\344\273\230\345\267\245\350\265\204/u18.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\224\257\344\273\230\345\267\245\350\265\204/u18.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\224\257\344\273\230\345\267\245\350\265\204/u18.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\224\257\344\273\230\345\267\245\350\265\204\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211/u12.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\224\257\344\273\230\345\267\245\350\265\204\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211/u12.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\224\257\344\273\230\345\267\245\350\265\204\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211/u12.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\224\257\344\273\230\345\267\245\350\265\204\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211/u12.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\224\257\344\273\230\345\267\245\350\265\204\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211/u14.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\224\257\344\273\230\345\267\245\350\265\204\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211/u14.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\224\257\344\273\230\345\267\245\350\265\204\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211/u14.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\224\257\344\273\230\345\267\245\350\265\204\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211/u14.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\224\257\344\273\230\345\267\245\350\265\204\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211/u16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\224\257\344\273\230\345\267\245\350\265\204\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211/u16.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\224\257\344\273\230\345\267\245\350\265\204\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211/u16.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\224\257\344\273\230\345\267\245\350\265\204\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211/u16.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\224\257\344\273\230\345\267\245\350\265\204\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211/u18.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\224\257\344\273\230\345\267\245\350\265\204\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211/u18.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\224\257\344\273\230\345\267\245\350\265\204\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211/u18.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\346\224\257\344\273\230\345\267\245\350\265\204\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211/u18.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\347\255\276\346\224\266\345\216\206\345\217\262/u12.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\347\255\276\346\224\266\345\216\206\345\217\262/u12.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\347\255\276\346\224\266\345\216\206\345\217\262/u12.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\347\255\276\346\224\266\345\216\206\345\217\262/u12.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\347\255\276\346\224\266\345\244\261\350\264\245/u18.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\347\255\276\346\224\266\345\244\261\350\264\245/u18.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\347\255\276\346\224\266\345\244\261\350\264\245/u18.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\347\255\276\346\224\266\345\244\261\350\264\245/u18.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\347\255\276\346\224\266\345\244\261\350\264\245/u20.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\347\255\276\346\224\266\345\244\261\350\264\245/u20.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\347\255\276\346\224\266\345\244\261\350\264\245/u20.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\347\255\276\346\224\266\345\244\261\350\264\245/u20.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\347\255\276\346\224\266\346\210\220\345\212\237/u18.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\347\255\276\346\224\266\346\210\220\345\212\237/u18.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\347\255\276\346\224\266\346\210\220\345\212\237/u18.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\347\255\276\346\224\266\346\210\220\345\212\237/u18.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\351\252\214\350\257\201\346\224\257\344\273\230/u22.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\351\252\214\350\257\201\346\224\257\344\273\230/u22.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\351\252\214\350\257\201\346\224\257\344\273\230/u22.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\351\252\214\350\257\201\346\224\257\344\273\230/u22.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\351\252\214\350\257\201\346\224\257\344\273\230\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211/u22.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\351\252\214\350\257\201\346\224\257\344\273\230\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211/u22.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\351\252\214\350\257\201\346\224\257\344\273\230\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211/u22.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/images/\351\252\214\350\257\201\346\224\257\344\273\230\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211/u22.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/index.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/index.html" new file mode 100644 index 0000000..1742793 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/index.html" @@ -0,0 +1,350 @@ + + + + Untitled Document + + + + + + + + + + + + + + + + + + + + + + +
+ +
+
+
+   +
+   +
+
+
+
+
+
+
+
    +
+
+
+
+
+
+
+ +
+ +
+ +
+ +
+ + + diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/page_notes/page_notes.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/page_notes/page_notes.js" new file mode 100644 index 0000000..b57edc7 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/page_notes/page_notes.js" @@ -0,0 +1,52 @@ +// use this to isolate the scope +(function () { + + if (!$axure.document.configuration.showPageNotes) { return; } + + $(window.document).ready(function () { + $axure.player.createPluginHost({ + id: 'pageNotesHost', + context: 'interface', + title: 'Page Notes' + }); + + generatePageNotes(); + + // bind to the page load + $axure.page.bind('load.page_notes', function () { + + $('#pageNameHeader').html(""); + $('#pageNotesContent').html(""); + + //populate the notes + var notes = $axure.page.notes; + if (notes) { + var pageName = $axure.page.pageName; + $('#pageNameHeader').html(pageName); + var showNames = $axure.document.configuration.showPageNoteNames; + + for (var noteName in notes) { + if (showNames) { + $('#pageNotesContent').append("
" + noteName + "
"); + } + $('#pageNotesContent').append("
" + notes[noteName] + "
"); + } + } + + return false; + }); + + + }); + + function generatePageNotes() { + var pageNotesUi = "
"; + pageNotesUi += "
"; + pageNotesUi += "
"; + pageNotesUi += ""; + pageNotesUi += "
"; + + $('#pageNotesHost').html(pageNotesUi); + } + +})(); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/page_notes/styles/page_notes.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/page_notes/styles/page_notes.css" new file mode 100644 index 0000000..e933962 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/page_notes/styles/page_notes.css" @@ -0,0 +1,43 @@ +#pageNotesHost { + font-size: 12px; + color:#333; + height: 100%; +} + +#pageNotesScrollContainer +{ + overflow: auto; + width: 100%; + height: 100%; +} + +#pageNotesContainer +{ + padding: 10px 10px 10px 10px; +} + +#pageNameHeader +{ + font-size: 13px; + font-weight: bold; + height: 23px; + white-space: nowrap; +} + +#pageNotesContent +{ + overflow: visible; +} + +.pageNoteName +{ + font-size: 12px; + margin-bottom: 5px; + text-decoration: underline; + white-space: nowrap; +} + +.pageNote +{ + margin-bottom: 10px; +} \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/sitemap.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/sitemap.js" new file mode 100644 index 0000000..7a20691 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/sitemap.js" @@ -0,0 +1,635 @@ +// use this to isolate the scope +(function() { + + var SHOW_HIDE_ANIMATION_DURATION = 0; + + var HIGHLIGHT_INTERACTIVE_VAR_NAME = 'hi'; + var FOOTNOTES_VAR_NAME = 'fn'; + var SITEMAP_COLLAPSE_VAR_NAME = 'c'; + var ADAPTIVE_VIEW_VAR_NAME = 'view'; + + var currentPageLoc = ''; + var currentPlayerLoc = ''; + var currentPageHashString = ''; + + $(window.document).ready(function() { + $axure.player.createPluginHost({ + id: 'sitemapHost', + context: 'interface', + title: 'Sitemap' + }); + + generateSitemap(); + + $('.sitemapPlusMinusLink').toggle(collapse_click, expand_click); + $('.sitemapPageLink').click(node_click); + + $('#sitemapLinksAndOptionsContainer').hide(); + $('#searchDiv').hide(); + $('#linksButton').click(links_click); + $('#adaptiveButton').click(adaptive_click); + $('#footnotesButton').click(footnotes_click).addClass('sitemapToolbarButtonSelected'); + $('#highlightInteractiveButton').click(highlight_interactive); + $('#variablesButton').click(showvars_click); + $('#variablesClearLink').click(clearvars_click); + $('#searchButton').click(search_click); + $('#searchBox').keyup(search_input_keyup); + $('.sitemapLinkField').click(function() { this.select(); }); + $('input[value="withoutmap"]').click(withoutSitemapRadio_click); + $('input[value="withmap"]').click(withSitemapRadio_click); + $('#minimizeBox, #footnotesBox, #highlightBox').change(sitemapUrlOptions_change); + $('#viewSelect').change(sitemapUrlViewSelect_change); + + // $('#sitemapHost').parent().resize(function () { + // $('#sitemapHost').height($(this).height()); + // }); + + // bind to the page load + $axure.page.bind('load.sitemap', function() { + currentPageLoc = $axure.page.location.split("#")[0]; + var decodedPageLoc = decodeURI(currentPageLoc); + var nodeUrl = decodedPageLoc.substr(decodedPageLoc.lastIndexOf('/') ? decodedPageLoc.lastIndexOf('/') + 1 : 0); + currentPlayerLoc = $(location).attr('href').split("#")[0].split("?")[0]; + currentPageHashString = '#p=' + nodeUrl.substr(0, nodeUrl.lastIndexOf('.')); + + setVarInCurrentUrlHash('p', nodeUrl.substring(0, nodeUrl.lastIndexOf('.html'))); + + $('.sitemapPageLink').parent().parent().removeClass('sitemapHighlight'); + $('.sitemapPageLink[nodeUrl="' + nodeUrl + '"]').parent().parent().addClass('sitemapHighlight'); + + $('#sitemapLinksPageName').html($('.sitemapHighlight > .sitemapPageLinkContainer > .sitemapPageLink > .sitemapPageName').html()); + + //Click the "With sitemap" radio button so that it's selected by default + $('input[value="withmap"]').click(); + + //Update variable div with latest global variable values after page has loaded + $axure.messageCenter.postMessage('getGlobalVariables', ''); + + //If footnotes enabled for this prototype... + if($axure.document.configuration.showAnnotations == true) { + //If the fn var is defined and set to 0, hide footnotes + //else if hide-footnotes button selected, hide them + var fnVal = getHashStringVar(FOOTNOTES_VAR_NAME); + if(fnVal.length > 0 && fnVal == 0) { + $('#footnotesButton').removeClass('sitemapToolbarButtonSelected'); + $axure.messageCenter.postMessage('annotationToggle', false); + } else if(!$('#footnotesButton').is('.sitemapToolbarButtonSelected')) { + //If the footnotes button isn't selected, hide them on this loaded page + $axure.messageCenter.postMessage('annotationToggle', false); + } + } + + //If highlight var is present and set to 1 or else if + //sitemap highlight button is selected then highlight interactive elements + var hiVal = getHashStringVar(HIGHLIGHT_INTERACTIVE_VAR_NAME); + if(hiVal.length > 0 && hiVal == 1) { + $('#highlightInteractiveButton').addClass('sitemapToolbarButtonSelected'); + $axure.messageCenter.postMessage('highlightInteractive', true); + } else if($('#highlightInteractiveButton').is('.sitemapToolbarButtonSelected')) { + $axure.messageCenter.postMessage('highlightInteractive', true); + } + + //Set the current view if it is defined in the hash string + //If the view is invalid, set it to 'auto' in the string + //ELSE set the view based on the currently selected view in the toolbar menu + var viewStr = getHashStringVar(ADAPTIVE_VIEW_VAR_NAME); + if(viewStr.length > 0) { + var $view = $('.adaptiveViewOption[val="' + viewStr + '"]'); + if($view.length > 0) { + $view.click(); + } else { + setVarInCurrentUrlHash(ADAPTIVE_VIEW_VAR_NAME, 'auto'); + } + } else if($('.checkedAdaptive').length > 0) { + var $viewOption = $('.checkedAdaptive').parents('.adaptiveViewOption'); + if($viewOption.attr('val') != 'auto') { + $viewOption.click(); + } + } + + $('#mainFrame').focus(); + + return false; + }); + + var $adaptiveViewsContainer = $('#adaptiveViewsContainer'); + var $viewSelect = $('#viewSelect'); + + //Fill out adaptive view container with prototype's defined adaptive views, as well as the default, and Auto + $adaptiveViewsContainer.append('
Auto
'); + $viewSelect.append(''); + if(typeof $axure.document.defaultAdaptiveView.name != 'undefined') { + //If the name is a blank string, make the view name the width if non-zero, else 'any' + var defaultViewName = $axure.document.defaultAdaptiveView.name; + if(defaultViewName == '') { + defaultViewName = $axure.document.defaultAdaptiveView.size.width != 0 ? $axure.document.defaultAdaptiveView.size.width : 'Base'; + } + + $adaptiveViewsContainer.append('
' + defaultViewName + '
'); + $viewSelect.append(''); + } + + var enabledViewIds = $axure.document.configuration.enabledViewIds; + for(var viewIndex = 0; viewIndex < $axure.document.adaptiveViews.length; viewIndex++) { + var currView = $axure.document.adaptiveViews[viewIndex]; + if(enabledViewIds.indexOf(currView.id) < 0) continue; + + var widthString = currView.size.width == 0 ? 'any' : currView.size.width; + var heightString = currView.size.height == 0 ? 'any' : currView.size.height; + var conditionString = ''; + if(currView.condition == '>' || currView.condition == '>=') { + conditionString = ' and above'; + } else if(currView.condition == '<' || currView.condition == '<=') { + conditionString = ' and below'; + } + + var viewString = currView.name + ' (' + widthString + ' x ' + heightString + conditionString + ')'; + $adaptiveViewsContainer.append('
' + viewString + '
'); + $viewSelect.append(''); + } + + $('.adaptiveViewOption').click(adaptiveViewOption_click); + + $('#leftPanel').mouseup(function() { + $('.sitemapPopupContainer').hide(); + $('#variablesButton').removeClass('sitemapToolbarButtonSelected'); + $('#adaptiveButton').removeClass('sitemapToolbarButtonSelected'); + $('#linksButton').removeClass('sitemapToolbarButtonSelected'); + }); + + $('#variablesContainer,#sitemapLinksContainer').mouseup(function(event) { + event.stopPropagation(); + }); + $('#variablesButton').mouseup(function(event) { + hideAllContainersExcept(2); + event.stopPropagation(); + }); + $('#adaptiveButton').mouseup(function(event) { + hideAllContainersExcept(1); + event.stopPropagation(); + }); + $('.adaptiveViewOption').mouseup(function(event) { + event.stopPropagation(); + }); + $('#linksButton').mouseup(function(event) { + hideAllContainersExcept(3); + event.stopPropagation(); + }); + + $('#searchBox').focusin(function() { + if($(this).is('.searchBoxHint')) { + $(this).val(''); + $(this).removeClass('searchBoxHint'); + } + }).focusout(function() { + if($(this).val() == '') { + $(this).addClass('searchBoxHint'); + $(this).val('Search'); + } + }); + + var $varContainer = $('#variablesContainer'); + $(window).resize(function() { + if($varContainer.is(":visible")) { + var newHeight = $(this).height() - 120; + if(newHeight < 100) newHeight = 100; + $varContainer.css('max-height', newHeight); + } + }); + }); + + function hideAllContainersExcept(exceptContainer) { + //1 - adaptive container, 2 - vars container, 3 - links container + if(exceptContainer != 1) { + $('#adaptiveViewsContainer').hide(); + $('#adaptiveButton').removeClass('sitemapToolbarButtonSelected'); + } + if(exceptContainer != 2) { + $('#variablesContainer').hide(); + $('#variablesButton').removeClass('sitemapToolbarButtonSelected'); + } + if(exceptContainer != 3) { + $('#sitemapLinksContainer').hide(); + $('#linksButton').removeClass('sitemapToolbarButtonSelected'); + } + } + + function collapse_click(event) { + $(this) + .children('.sitemapMinus').removeClass('sitemapMinus').addClass('sitemapPlus').end() + .closest('li').children('ul').hide(SHOW_HIDE_ANIMATION_DURATION); + + $(this).next('.sitemapFolderOpenIcon').removeClass('sitemapFolderOpenIcon').addClass('sitemapFolderIcon'); + } + + function expand_click(event) { + $(this) + .children('.sitemapPlus').removeClass('sitemapPlus').addClass('sitemapMinus').end() + .closest('li').children('ul').show(SHOW_HIDE_ANIMATION_DURATION); + + $(this).next('.sitemapFolderIcon').removeClass('sitemapFolderIcon').addClass('sitemapFolderOpenIcon'); + } + + function node_click(event) { + $axure.page.navigate(this.getAttribute('nodeUrl'), true); + } + + function links_click(event) { + $('#sitemapLinksContainer').toggle(); + if($('#sitemapLinksContainer').is(":visible")) { + + $('#linksButton').addClass('sitemapToolbarButtonSelected'); + + var linksButtonBottom = $('#linksButton').position().top + $('#linksButton').height(); + $('#sitemapLinksContainer').css('top', linksButtonBottom + 'px'); + } else { + $('#linksButton').removeClass('sitemapToolbarButtonSelected'); + } + } + + $axure.messageCenter.addMessageListener(function(message, data) { + if(message == 'globalVariableValues') { + //If variables container isn't visible, then ignore + if(!$('#variablesContainer').is(":visible")) { + return; + } + + $('#variablesDiv').empty(); + for(var key in data) { + var value = data[key] == '' ? '(blank)' : data[key]; + $('#variablesDiv').append('
' + key + '
' + value + '
'); + } + } else if(message == 'adaptiveViewChange') { + $('.adaptiveViewOption').removeClass('currentAdaptiveView'); + if(data) $('div[val="' + data + '"]').addClass('currentAdaptiveView'); + else $('div[val="default"]').addClass('currentAdaptiveView'); + } + }); + + function showvars_click(event) { + $('#variablesContainer').toggle(); + if(!$('#variablesContainer').is(":visible")) { + $('#variablesButton').removeClass('sitemapToolbarButtonSelected'); + } else { + $(window).resize(); + $('#variablesButton').addClass('sitemapToolbarButtonSelected'); + + var variablesButtonBottom = $('#variablesButton').position().top + $('#variablesButton').height(); + $('#variablesContainer').css('top', variablesButtonBottom + 'px'); + $('#variablesContainer').css('left', '30px'); + $('#variablesContainer').css('right', '30px'); + + $axure.messageCenter.postMessage('getGlobalVariables', ''); + } + } + + function clearvars_click(event) { + $axure.messageCenter.postMessage('resetGlobalVariables', ''); + } + + function footnotes_click(event) { + if($('#footnotesButton').is('.sitemapToolbarButtonSelected')) { + $('#footnotesButton').removeClass('sitemapToolbarButtonSelected'); + $axure.messageCenter.postMessage('annotationToggle', false); + //Add 'fn' hash string var so that footnotes stay hidden across reloads + setVarInCurrentUrlHash(FOOTNOTES_VAR_NAME, 0); + } else { + $('#footnotesButton').addClass('sitemapToolbarButtonSelected'); + $axure.messageCenter.postMessage('annotationToggle', true); + //Delete 'fn' hash string var if it exists since default is visible + deleteVarFromCurrentUrlHash(FOOTNOTES_VAR_NAME); + } + } + + function highlight_interactive(event) { + if($('#highlightInteractiveButton').is('.sitemapToolbarButtonSelected')) { + $('#highlightInteractiveButton').removeClass('sitemapToolbarButtonSelected'); + $axure.messageCenter.postMessage('highlightInteractive', false); + //Delete 'hi' hash string var if it exists since default is unselected + deleteVarFromCurrentUrlHash(HIGHLIGHT_INTERACTIVE_VAR_NAME); + } else { + $('#highlightInteractiveButton').addClass('sitemapToolbarButtonSelected'); + $axure.messageCenter.postMessage('highlightInteractive', true); + //Add 'hi' hash string var so that stay highlighted across reloads + setVarInCurrentUrlHash(HIGHLIGHT_INTERACTIVE_VAR_NAME, 1); + } + } + + function adaptive_click(event) { + $('#adaptiveViewsContainer').toggle(); + if(!$('#adaptiveViewsContainer').is(":visible")) { + $('#adaptiveButton').removeClass('sitemapToolbarButtonSelected'); + } else { + $('#adaptiveButton').addClass('sitemapToolbarButtonSelected'); + + var adaptiveButtonBottom = $('#adaptiveButton').position().top + $('#adaptiveButton').height(); + $('#adaptiveViewsContainer').css('top', adaptiveButtonBottom + 'px'); + $('#adaptiveViewsContainer').css('left', $('#adaptiveButton').position().left); + } + } + + function adaptiveViewOption_click(event) { + var currVal = $(this).attr('val'); + + $('.checkedAdaptive').removeClass('checkedAdaptive'); + $(this).find('.adaptiveCheckboxDiv').addClass('checkedAdaptive'); + + if(currVal == 'auto') { + $axure.messageCenter.postMessage('setAdaptiveAuto', ''); + + //Remove view in hash string if one is set + deleteVarFromCurrentUrlHash(ADAPTIVE_VIEW_VAR_NAME); + } else { + $axure.messageCenter.postMessage('switchAdaptiveView', currVal); + + //Set current view in hash string so that it can be maintained across reloads + setVarInCurrentUrlHash(ADAPTIVE_VIEW_VAR_NAME, currVal); + } + } + + function search_click(event) { + $('#searchDiv').toggle(); + if(!$('#searchDiv').is(":visible")) { + $('#searchButton').removeClass('sitemapToolbarButtonSelected'); + $('#searchBox').val(''); + $('#searchBox').keyup(); + $('#sitemapToolbar').css('height', '22px'); + $('#sitemapTreeContainer').css('top', '31px'); + } else { + $('#searchButton').addClass('sitemapToolbarButtonSelected'); + $('#searchBox').focus(); + $('#sitemapToolbar').css('height', '50px'); + $('#sitemapTreeContainer').css('top', '63px'); + } + } + + function search_input_keyup(event) { + var searchVal = $(this).val().toLowerCase(); + //If empty search field, show all nodes, else grey+hide all nodes and + //ungrey+unhide all matching nodes, as well as unhide their parent nodes + if(searchVal == '') { + $('.sitemapPageName').removeClass('sitemapGreyedName'); + $('.sitemapNode').show(); + } else { + $('.sitemapNode').hide(); + + $('.sitemapPageName').addClass('sitemapGreyedName').each(function() { + var nodeName = $(this).text().toLowerCase(); + if(nodeName.indexOf(searchVal) != -1) { + $(this).removeClass('sitemapGreyedName').parents('.sitemapNode:first').show().parents('.sitemapExpandableNode').show(); + } + }); + } + } + + function withoutSitemapRadio_click() { + $('#sitemapLinkWithPlayer').val(currentPageLoc); + $('#minimizeBox').attr('disabled', 'disabled'); + $('#footnotesBox').attr('disabled', 'disabled'); + $('#highlightBox').attr('disabled', 'disabled'); + $('#viewSelect').attr('disabled', 'disabled'); + } + + function withSitemapRadio_click() { + $('#sitemapLinkWithPlayer').val(currentPlayerLoc + currentPageHashString); + $('#minimizeBox').removeAttr('disabled').change(); + $('#footnotesBox').removeAttr('disabled').change(); + $('#highlightBox').removeAttr('disabled').change(); + $('#viewSelect').removeAttr('disabled').change(); + } + + function sitemapUrlOptions_change() { + var currLinkHash = '#' + $('#sitemapLinkWithPlayer').val().split("#")[1]; + var newHash = null; + var varName = ''; + var defVal = 1; + if($(this).is('#minimizeBox')) { + varName = SITEMAP_COLLAPSE_VAR_NAME; + } else if($(this).is('#footnotesBox')) { + varName = FOOTNOTES_VAR_NAME; + defVal = 0; + } else if($(this).is('#highlightBox')) { + varName = HIGHLIGHT_INTERACTIVE_VAR_NAME; + } + + newHash = $(this).is(':checked') ? setHashStringVar(currLinkHash, varName, defVal) : deleteHashStringVar(currLinkHash, varName); + + if(newHash != null) { + $('#sitemapLinkWithPlayer').val(currentPlayerLoc + newHash); + } + } + + function sitemapUrlViewSelect_change() { + var currLinkHash = '#' + $('#sitemapLinkWithPlayer').val().split("#")[1]; + var newHash = null; + var $selectedOption = $(this).find('option:selected'); + if($selectedOption.length == 0) return; + var selectedVal = $selectedOption.attr('value'); + + newHash = selectedVal == 'auto' ? deleteHashStringVar(currLinkHash, ADAPTIVE_VIEW_VAR_NAME) : setHashStringVar(currLinkHash, ADAPTIVE_VIEW_VAR_NAME, selectedVal); + + if(newHash != null) { + $('#sitemapLinkWithPlayer').val(currentPlayerLoc + newHash); + } + } + + function generateSitemap() { + var treeUl = "
"; + + treeUl += "
"; + + if($axure.document.configuration.enabledViewIds.length > 0) { + treeUl += ""; + } + + if($axure.document.configuration.showAnnotations == true) { + treeUl += ""; + } + + treeUl += ""; + treeUl += ""; + treeUl += ""; + treeUl += ""; + treeUl += "
"; + + treeUl += '
'; + + treeUl += ""; + + treeUl += ""; + + if($axure.document.adaptiveViews.length > 0) { + treeUl += "
"; + } + treeUl += "
"; + + treeUl += "
"; + + treeUl += "
    "; + var rootNodes = $axure.document.sitemap.rootNodes; + for(var i = 0; i < rootNodes.length; i++) { + treeUl += generateNode(rootNodes[i], 0); + } + treeUl += "
"; + + $('#sitemapHost').html(treeUl); + } + + function generateNode(node, level) { + var hasChildren = (node.children && node.children.length > 0); + if(hasChildren) { + var returnVal = "
  • "; + + if(hasChildren) { + returnVal += "
      "; + for(var i = 0; i < node.children.length; i++) { + var child = node.children[i]; + returnVal += generateNode(child, level + 1); + } + returnVal += "
    "; + } + returnVal += "
  • "; + return returnVal; + } + + function getHashStringVar(query) { + var qstring = window.location.href.split("#"); + if(qstring.length < 2) return ""; + + var prms = qstring[1].split("&"); + var frmelements = new Array(); + var currprmeter, querystr = ""; + + for(var i = 0; i < prms.length; i++) { + currprmeter = prms[i].split("="); + frmelements[i] = new Array(); + frmelements[i][0] = currprmeter[0]; + frmelements[i][1] = currprmeter[1]; + } + + for(var j = 0; j < frmelements.length; j++) { + if(frmelements[j][0] == query) { + querystr = frmelements[j][1]; + break; + } + } + return querystr; + } + + function replaceHash(newHash) { + var currentLocWithoutHash = window.location.toString().split('#')[0]; + + //We use replace so that every hash change doesn't get appended to the history stack. + //We use replaceState in browsers that support it, else replace the location + if(typeof window.history.replaceState != 'undefined') { + window.history.replaceState(null, null, currentLocWithoutHash + newHash); + } else { + window.location.replace(currentLocWithoutHash + newHash); + } + } + + function setHashStringVar(currentHash, varName, varVal) { + var varWithEqual = varName + '='; + var hashToSet = ''; + + var pageIndex = currentHash.indexOf('#' + varWithEqual); + if(pageIndex == -1) pageIndex = currentHash.indexOf('&' + varWithEqual); + if(pageIndex != -1) { + var newHash = currentHash.substring(0, pageIndex); + + newHash = newHash == '' ? '#' + varWithEqual + varVal : newHash + '&' + varWithEqual + varVal; + + var ampIndex = currentHash.indexOf('&', pageIndex + 1); + if(ampIndex != -1) { + newHash = newHash + currentHash.substring(ampIndex); + } + hashToSet = newHash; + } else if(currentHash.indexOf('#') != -1) { + hashToSet = currentHash + '&' + varWithEqual + varVal; + } else { + hashToSet = '#' + varWithEqual + varVal; + } + + if(hashToSet != '') { + return hashToSet; + } + + return null; + } + + function setVarInCurrentUrlHash(varName, varVal) { + var newHash = setHashStringVar(window.location.hash, varName, varVal); + + if(newHash != null) { + replaceHash(newHash); + } + } + + function deleteHashStringVar(currentHash, varName) { + var varWithEqual = varName + '='; + + var pageIndex = currentHash.indexOf('#' + varWithEqual); + if(pageIndex == -1) pageIndex = currentHash.indexOf('&' + varWithEqual); + if(pageIndex != -1) { + var newHash = currentHash.substring(0, pageIndex); + + var ampIndex = currentHash.indexOf('&', pageIndex + 1); + + //IF begin of string....if none blank, ELSE # instead of & and rest + //IF in string....prefix + if none blank, ELSE &-rest + if(newHash == '') { //beginning of string + newHash = ampIndex != -1 ? '#' + currentHash.substring(ampIndex + 1) : ''; + } else { //somewhere in the middle + newHash = newHash + (ampIndex != -1 ? currentHash.substring(ampIndex) : ''); + } + + return newHash; + } + + return null; + } + + function deleteVarFromCurrentUrlHash(varName) { + var newHash = deleteHashStringVar(window.location.hash, varName); + + if(newHash != null) { + replaceHash(newHash); + } + } +})(); diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/079_page_16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/079_page_16.png" new file mode 100644 index 0000000..2df8317 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/079_page_16.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/086_case_16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/086_case_16.png" new file mode 100644 index 0000000..6665ef4 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/086_case_16.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/225_responsive_16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/225_responsive_16.png" new file mode 100644 index 0000000..1ae8edd Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/225_responsive_16.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/228_togglenotes_16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/228_togglenotes_16.png" new file mode 100644 index 0000000..f0f5f0f Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/228_togglenotes_16.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/229_variables_16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/229_variables_16.png" new file mode 100644 index 0000000..0d21988 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/229_variables_16.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/231_event_16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/231_event_16.png" new file mode 100644 index 0000000..1d763a6 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/231_event_16.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/232_search_16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/232_search_16.png" new file mode 100644 index 0000000..4fdfe78 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/232_search_16.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/233_hyperlink_16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/233_hyperlink_16.png" new file mode 100644 index 0000000..bb8b282 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/233_hyperlink_16.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/235_folderclosed_16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/235_folderclosed_16.png" new file mode 100644 index 0000000..dd7d132 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/235_folderclosed_16.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/236_folderopen_16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/236_folderopen_16.png" new file mode 100644 index 0000000..6e46b58 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/236_folderopen_16.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/adaptivecheck.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/adaptivecheck.png" new file mode 100644 index 0000000..18914ae Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/adaptivecheck.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/images.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/images.html" new file mode 100644 index 0000000..854cbeb --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/images.html" @@ -0,0 +1,22 @@ + + + + + + +

    + + + + + + + + + + + + +

    + + \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/minus.gif" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/minus.gif" new file mode 100644 index 0000000..3284f66 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/minus.gif" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/plus.gif" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/plus.gif" new file mode 100644 index 0000000..373f060 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/images/plus.gif" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/sitemap.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/sitemap.css" new file mode 100644 index 0000000..c5c92c0 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/plugins/sitemap/styles/sitemap.css" @@ -0,0 +1,310 @@ + +#sitemapHost { + font-size: 12px; + color:#333; + background-color:#FFF; + height: 100%; +} + +#sitemapTreeContainer { + /*margin: 0px 8px 0px 10px;*/ + position: absolute; + overflow: auto; + width: 100%; + /*height: 100%;*/ + top: 31px; + bottom: 0px; +} + +.sitemapTree { + /* list-style-type: none; */ + margin: 5px 0px 10px -9px; + overflow:visible; +} + +.sitemapTree ul { + list-style-type: none; + margin: 0px 0px 0px 0px; + padding-left: 0px; +} + +.sitemapPlusMinusLink +{ +} + +.sitemapMinus +{ + vertical-align:middle; + background: url('images/minus.gif'); + background-repeat: no-repeat; + margin-right: 3px; + margin-bottom: 1px; + height:9px; + width:9px; + display:inline-block; +} + +.sitemapPlus +{ + vertical-align:middle; + background: url('images/plus.gif'); + background-repeat: no-repeat; + margin-right: 3px; + margin-bottom: 1px; + height:9px; + width:9px; + display:inline-block; +} + +.sitemapPageLink +{ + margin-left: 0px; +} + +.sitemapPageIcon +{ + margin-bottom:-3px; + width: 16px; + height: 16px; + display: inline-block; + background: url('images/079_page_16.png'); + background-repeat: no-repeat; +} + +.sitemapFlowIcon +{ + background: url('images/086_case_16.png'); +} + +.sitemapFolderIcon +{ + background: url('images/235_folderclosed_16.png'); +} + +.sitemapFolderOpenIcon +{ + background: url('images/236_folderopen_16.png'); +} + +.sitemapPageName +{ + margin-left: 3px; +} + +.sitemapNode +{ + margin:4px 0px 4px 0px; + white-space:nowrap; +} + +.sitemapPageLinkContainer { + margin-left: 0px; + padding-bottom: 1px; +} +/* +.sitemapNode div +{ + padding-top: 1px; + padding-bottom: 3px; + padding-left: 20px; + height: 14px; +} +*/ + +.sitemapExpandableNode +{ + margin-left: 0px; +} + +.sitemapHighlight +{ + background-color : rgb(204,235,248); + font-weight: bold; +} + +.sitemapGreyedName +{ + color: #AAA; +} + +#sitemapToolbar +{ + margin: 5px 5px 5px 5px; + height: 22px; +} + +#sitemapToolbar .sitemapToolbarButton +{ + float: left; + width: 22px; + height: 22px; + border: 1px solid transparent; +} + +#sitemapToolbar .sitemapToolbarButton:hover +{ + border: 1px solid rgb(0,157,217); + background-color : rgb(166,221,242); +} + +#sitemapToolbar .sitemapToolbarButton:active +{ + border: 1px solid rgb(0,157,217); + background-color : rgb(204,235,248); +} + +#sitemapToolbar .sitemapToolbarButtonSelected { + border: 1px solid rgb(0,157,217); + background-color : rgb(204,235,248); +} + +#linksButton { + background: url('images/233_hyperlink_16.png') no-repeat center center; +} + +#adaptiveButton { + background: url('images/225_responsive_16.png') no-repeat center center; +} + +#footnotesButton { + background: url('images/228_togglenotes_16.png') no-repeat center center; +} + +#highlightInteractiveButton { + background: url('images/231_event_16.png') no-repeat center center; +} + +#variablesButton { + background: url('images/229_variables_16.png') no-repeat center center; +} + +#searchButton { + background: url('images/232_search_16.png') no-repeat center center; +} + +.sitemapLinkContainer +{ + margin-top: 8px; + padding-right: 5px; + font-size: 12px; +} + +.sitemapLinkField +{ + width: 100%; + font-size: 12px; + margin-top: 3px; +} + +.sitemapOptionContainer +{ + margin-top: 8px; + padding-right: 5px; + font-size: 12px; +} + +#sitemapOptionsDiv +{ + margin-top: 5px; + margin-left: 16px; +} + +#viewSelectDiv +{ + margin-left: 5px; +} + +#viewSelect +{ + width: 70%; +} + +.sitemapUrlOption +{ + padding-bottom: 5px; +} + +.optionLabel +{ + font-size: 12px; +} + +.sitemapPopupContainer +{ + display: none; + position: absolute; + background-color: #F4F4F4; + border: 1px solid #B9B9B9; + padding: 5px 5px 5px 5px; + margin: 5px 0px 0px 5px; + z-index: 1; +} + +#adaptiveViewsContainer +{ + margin-left: 0px; + padding: 0px; +} + +.adaptiveViewOption +{ + padding: 2px; +} + +.adaptiveViewOption:hover +{ + background-color: rgb(204,235,248); + cursor: pointer; +} + +.currentAdaptiveView { + font-weight: bold; +} + +.adaptiveCheckboxDiv { + height: 15px; + width: 15px; + float: left; +} + +.checkedAdaptive { + background: url('images/adaptivecheck.png') no-repeat center center; +} + +#variablesContainer +{ + max-height: 350px; + overflow: auto; +} + +.variableName +{ + font-weight: bold; +} + +.variableDiv +{ + margin-bottom: 10px; +} + +#variablesClearLink +{ + color: #069; + left: 5px; +} + +.searchBoxHint +{ + color: #AAA; + font-style: italic; +} + +#sitemapLinksPageName +{ + font-weight: bold; +} + +#sitemapOptionsHeader +{ + font-weight: bold; +} \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/Other.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/Other.html" new file mode 100644 index 0000000..d0fa808 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/Other.html" @@ -0,0 +1,35 @@ + + + + + +
    +
    +
    +
    + +
    + + + + + + + \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/chrome/allow_access.gif" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/chrome/allow_access.gif" new file mode 100644 index 0000000..11a6086 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/chrome/allow_access.gif" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/chrome/axure-chrome-extension.crx" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/chrome/axure-chrome-extension.crx" new file mode 100644 index 0000000..fde7743 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/chrome/axure-chrome-extension.crx" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/chrome/axure_logo.gif" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/chrome/axure_logo.gif" new file mode 100644 index 0000000..0e2357c Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/chrome/axure_logo.gif" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/chrome/axure_logo.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/chrome/axure_logo.png" new file mode 100644 index 0000000..cd6f727 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/chrome/axure_logo.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/chrome/chrome.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/chrome/chrome.html" new file mode 100644 index 0000000..9df5cd6 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/chrome/chrome.html" @@ -0,0 +1,175 @@ + + + Install the Axure RP Chrome Extension + + + +
    +
    +
    + axure +
    +

    + AXURE RP EXTENSION
    + For Chrome

    +

    + Google Chrome requires an extension to view locally stored projects. Alternatively, + upload your RP file to AxShare or use a different + browser.

    +

    + VIEW LOCAL PROJECTS IN CHROME

    +
    +

    + 1. Install Extension from Chrome Store

    + +
    +
    +

    + 2. Open the Extensions Options

    + extensions +
    +
    +  
    +
    +

    + 3. Check "Allow access to file URLs"

    + allow access +
    +
    +

    + 4. Click the button below

    + +
    +
    +
    +

    + EXTENSION FAQ

    +

    + What is a Chrome Extension? Extensions are downloadable + plug-ins for Google Chrome that modify the browser
    + and allow you additional capabilities. +

    +

    + Why do I need to install the extension? Google requires + this extension to be installed to allow the viewing of local files in
    + Chrome +

    +

    + Why does this extension require a high access level? This + extension requires a high access level to allow the viewing of the file://
    + protocol. Axure does not track or access any of your information. +

    +

    + ROUND UP

    +

    + Chrome requires this extension to be installed to view local files.

    +

    + Need help or have any questions? Drop us a line at + support@axure.com. +

    +
    +
    +
    + + diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/chrome/extensions_menu.gif" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/chrome/extensions_menu.gif" new file mode 100644 index 0000000..1c8b1a1 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/chrome/extensions_menu.gif" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/chrome/splitter.gif" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/chrome/splitter.gif" new file mode 100644 index 0000000..3f8bca9 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/chrome/splitter.gif" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/chrome/splitter.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/chrome/splitter.png" new file mode 100644 index 0000000..8e354e7 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/chrome/splitter.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/axure_rp_page.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/axure_rp_page.css" new file mode 100644 index 0000000..ab6f818 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/axure_rp_page.css" @@ -0,0 +1,163 @@ +/* so the window resize fires within a frame in IE7 */ +html, body { + height: 100%; +} + +p { + margin: 0px; +} + +iframe { + background: #FFFFFF; +} + +/* to match IE with C, FF */ +input { + padding: 1px 0px 1px 0px; + box-sizing: border-box; + -moz-box-sizing: border-box; +} + +textarea { + margin: 0px; + box-sizing: border-box; + -moz-box-sizing: border-box; +} + +div.intcases { + font-family: arial; + font-size: 12px; + text-align:left; + border:1px solid #AAA; + background:#FFF none repeat scroll 0% 0%; + z-index:9999; + visibility:hidden; + position:absolute; + padding: 0px; + border-radius: 3px; + white-space: nowrap; +} + +div.intcaselink { + cursor: pointer; + padding: 3px 8px 3px 8px; + margin: 5px; + background:#EEE none repeat scroll 0% 0%; + border:1px solid #AAA; + border-radius: 3px; +} + +div.refpageimage { + position: absolute; + left: 0px; + top: 0px; + font-size: 0px; + width: 16px; + height: 16px; + cursor: pointer; + background-image: url(images/newwindow.gif); + background-repeat: no-repeat; +} + +div.annnoteimage { + position: absolute; + left: 0px; + top: 0px; + font-size: 0px; + width: 16px; + height: 12px; + cursor: help; + background-image: url(images/note.gif); + background-repeat: no-repeat; +} + +div.annnotelabel { + position: absolute; + left: 0px; + top: 0px; + font-family: Arial; + font-size: 10px; + border: 1px solid rgb(166,221,242); + cursor: help; + background:rgb(0,157,217) none repeat scroll 0% 0%; + padding-left:3px; + padding-right:3px; + white-space: nowrap; + color: white; +} + +.annotationName { + font-size: 13px; + font-weight: bold; + margin-bottom: 3px; + white-space: nowrap; +} + +.annotation { + font-size: 12px; + padding-left: 2px; + margin-bottom: 5px; +} + +/* this is a fix for the issue where dialogs jump around and takes the text-align from the body */ +.dialogFix { + position:absolute; + text-align:left; +} + + +@keyframes pulsate { + from { + box-shadow: 0 0 10px #74BA11; + } + to { + box-shadow: 0 0 20px #74BA11; + } +} + +@-webkit-keyframes pulsate { + from { + -webkit-box-shadow: 0 0 10px #74BA11; + box-shadow: 0 0 10px #74BA11; + } + to { + -webkit-box-shadow: 0 0 20px #74BA11; + box-shadow: 0 0 20px #74BA11; + } +} + +@-moz-keyframes pulsate { + from { + -moz-box-shadow: 0 0 10px #74BA11; + box-shadow: 0 0 10px #74BA11; + } + to { + -moz-box-shadow: 0 0 20px #74BA11; + box-shadow: 0 0 20px #74BA11; + } +} + +.legacyPulsateBorder { + border: 5px solid #74BA11; + margin: -5px; +} + +.pulsateBorder { + animation-name: pulsate; + animation-timing-function: ease-in-out; + animation-duration: 0.9s; + animation-iteration-count: infinite; + animation-direction: alternate; + + -webkit-animation-name: pulsate; + -webkit-animation-timing-function: ease-in-out; + -webkit-animation-duration: 0.9s; + -webkit-animation-iteration-count: infinite; + -webkit-animation-direction: alternate; + + -moz-animation-name: pulsate; + -moz-animation-timing-function: ease-in-out; + -moz-animation-duration: 0.9s; + -moz-animation-iteration-count: infinite; + -moz-animation-direction: alternate; +} \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/default.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/default.css" new file mode 100644 index 0000000..81581ae --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/default.css" @@ -0,0 +1,128 @@ +body { + font-family : Helvetica, Arial, Sans-Serif; + background-color: #B9B9B9; + overflow:hidden; +} +a { + cursor: pointer; +} +#maximizePanelContainer { + font-size: 4px; + position:absolute; + left: 0px; + top: 0px; + width: 15px; + height: 13px; + overflow: visible; + z-index: 1000; +} +.maximizePanel { + position:absolute; + left: 0px; + top: 0px; + width: 20px; + height: 20px; + margin: 2px 0px 0px 1px; + background: url('../images/261_expand_12rollover1.png') no-repeat; + cursor: pointer; +} +.maximizePanelOver { + background: url('../images/261_expand_12rollover2.png') no-repeat; +} + +#interfaceControlFrameMinimizeContainer { + position:relative; + font-size: 2px; /*for IE*/ + text-align: right; + z-index: 100; + height: 20px; +} +#interfaceControlFrameMinimizeContainer a +{ + display: inline-block; + width: 15px; + height: 20px; + font-size: 2px; + background: url('../images/260_collapse_12rollover1.png') no-repeat; + text-decoration: none; + margin: 5px 5px 0px 0px; +} +#interfaceControlFrame { + margin: 0px; +} +#interfaceControlFrameMinimizeContainer a:hover { + background: url('../images/260_collapse_12rollover2.png') no-repeat; +} +#interfaceControlFrameCloseContainer { + display: inline; + width: 15px; + height: 20px; + font-size: 2px; + margin: 5px 2px 0px 0px; +} +#interfaceControlFrameCloseContainer a +{ + background: url('../images/259_close_12rollover1.png') no-repeat; + margin: 0px; + text-decoration: none; +} +#interfaceControlFrameCloseContainer a:hover +{ + background: url('../images/259_close_12rollover2.png') no-repeat; +} +#interfaceControlFrameHeader li { + display: inline; +} +#interfaceControlFrameHeader a { + outline: none; + padding: 3px 10px 3px 10px; + margin-right: 1px; + text-decoration: none; + color: #575757; + white-space: nowrap; + background-color: #D3D3D3; +} +#interfaceControlFrameHeader a:link {} +#interfaceControlFrameHeader a:hover { + color: #000000; +} +#interfaceControlFrameHeader a.selected { + background-color: White; + font-weight:bold; + padding: 3px 10px 4px 10px; +} +#interfaceControlFrameHeaderContainer { + overflow: visible; + width: 250px; +} +#interfaceControlFrameHeader { + position:relative; + list-style: none; + padding : 4px 0px 4px 0px; + font-size: 11px; + z-index: 50; +} +#interfaceControlFrameContainer { + position: absolute; + background-color: White; + overflow: hidden; + width: 100%; + /*height:100%;*/ +} + +#interfaceControlFrameLogoContainer { + background-color: White; + border-bottom: 1px solid #EFEFEF; + margin: -5px 0px 5px 0px; + padding: 10px 5px 5px 5px; + overflow: hidden; +} +#interfaceControlFrameLogoImageContainer { + text-align: center; +} +#interfaceControlFrameLogoCaptionContainer { + text-align: center; + margin: 5px 10px 0px 10px; + font-size: 11px; + color: #333; +} diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/images.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/images.html" new file mode 100644 index 0000000..335d9c9 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/images.html" @@ -0,0 +1,25 @@ + + + + + + +

    + + + + + + + + + + + + + + + +

    + + \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/newwindow.gif" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/newwindow.gif" new file mode 100644 index 0000000..7b14cb0 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/newwindow.gif" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/note.gif" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/note.gif" new file mode 100644 index 0000000..a8c2762 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/note.gif" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-bg_flat_0_aaaaaa_40x100.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-bg_flat_0_aaaaaa_40x100.png" new file mode 100644 index 0000000..5b5dab2 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-bg_flat_0_aaaaaa_40x100.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-bg_glass_55_fbf9ee_1x400.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-bg_glass_55_fbf9ee_1x400.png" new file mode 100644 index 0000000..ad3d634 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-bg_glass_55_fbf9ee_1x400.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-bg_glass_65_ffffff_1x400.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-bg_glass_65_ffffff_1x400.png" new file mode 100644 index 0000000..42ccba2 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-bg_glass_65_ffffff_1x400.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-bg_glass_75_dadada_1x400.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-bg_glass_75_dadada_1x400.png" new file mode 100644 index 0000000..5a46b47 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-bg_glass_75_dadada_1x400.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-bg_glass_75_e6e6e6_1x400.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-bg_glass_75_e6e6e6_1x400.png" new file mode 100644 index 0000000..86c2baa Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-bg_glass_75_e6e6e6_1x400.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-bg_glass_75_ffffff_1x400.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-bg_glass_75_ffffff_1x400.png" new file mode 100644 index 0000000..e65ca12 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-bg_glass_75_ffffff_1x400.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-bg_highlight-soft_75_cccccc_1x100.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-bg_highlight-soft_75_cccccc_1x100.png" new file mode 100644 index 0000000..7c9fa6c Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-bg_highlight-soft_75_cccccc_1x100.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-bg_inset-soft_95_fef1ec_1x100.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-bg_inset-soft_95_fef1ec_1x100.png" new file mode 100644 index 0000000..0e05810 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-bg_inset-soft_95_fef1ec_1x100.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-icons_222222_256x240.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-icons_222222_256x240.png" new file mode 100644 index 0000000..b273ff1 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-icons_222222_256x240.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-icons_2e83ff_256x240.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-icons_2e83ff_256x240.png" new file mode 100644 index 0000000..09d1cdc Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-icons_2e83ff_256x240.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-icons_454545_256x240.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-icons_454545_256x240.png" new file mode 100644 index 0000000..59bd45b Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-icons_454545_256x240.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-icons_888888_256x240.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-icons_888888_256x240.png" new file mode 100644 index 0000000..6d02426 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-icons_888888_256x240.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-icons_cd0a0a_256x240.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-icons_cd0a0a_256x240.png" new file mode 100644 index 0000000..2ab019b Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/images/ui-icons_cd0a0a_256x240.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/jquery-ui-themes.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/jquery-ui-themes.css" new file mode 100644 index 0000000..017ebc5 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/jquery-ui-themes.css" @@ -0,0 +1,408 @@ +/* +* jQuery UI CSS Framework +* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about) +* Dual licensed under the MIT (MIT-LICENSE.txt) and GPL (GPL-LICENSE.txt) licenses. +*/ + +/* Layout helpers +----------------------------------*/ +.ui-helper-hidden { display: none; } +.ui-helper-hidden-accessible { position: absolute; left: -99999999px; } +.ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; } +.ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; } +.ui-helper-clearfix { display: inline-block; } +/* required comment for clearfix to work in Opera \*/ +* html .ui-helper-clearfix { height:1%; } +.ui-helper-clearfix { display:block; } +/* end clearfix */ +.ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); } + + +/* Interaction Cues +----------------------------------*/ +.ui-state-disabled { cursor: default !important; } + + +/* Icons +----------------------------------*/ + +/* states and images */ +.ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; } + + +/* Misc visuals +----------------------------------*/ + +/* Overlays */ +.ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }/* Accordion +----------------------------------*/ +.ui-accordion .ui-accordion-header { cursor: pointer; position: relative; margin-top: 1px; zoom: 1; } +.ui-accordion .ui-accordion-li-fix { display: inline; } +.ui-accordion .ui-accordion-header-active { border-bottom: 0 !important; } +.ui-accordion .ui-accordion-header a { display: block; font-size: 1em; padding: .5em .5em .5em 2.2em; } +.ui-accordion .ui-accordion-header .ui-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; } +.ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; margin-top: -2px; position: relative; top: 1px; margin-bottom: 2px; overflow: auto; display: none; } +.ui-accordion .ui-accordion-content-active { display: block; } + +/* Datepicker +----------------------------------*/ +.ui-datepicker { width: 17em; padding: .2em .2em 0; } +.ui-datepicker .ui-datepicker-header { position:relative; padding:.2em 0; } +.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 2px; width: 1.8em; height: 1.8em; } +.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { top: 1px; } +.ui-datepicker .ui-datepicker-prev { left:2px; } +.ui-datepicker .ui-datepicker-next { right:2px; } +.ui-datepicker .ui-datepicker-prev-hover { left:1px; } +.ui-datepicker .ui-datepicker-next-hover { right:1px; } +.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span { display: block; position: absolute; left: 50%; margin-left: -8px; top: 50%; margin-top: -8px; } +.ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; } +.ui-datepicker .ui-datepicker-title select { float:left; font-size:1em; margin:1px 0; } +.ui-datepicker select.ui-datepicker-month-year {width: 100%;} +.ui-datepicker select.ui-datepicker-month, +.ui-datepicker select.ui-datepicker-year { width: 49%;} +.ui-datepicker .ui-datepicker-title select.ui-datepicker-year { float: right; } +.ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; } +.ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0; } +.ui-datepicker td { border: 0; padding: 1px; } +.ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; } +.ui-datepicker .ui-datepicker-buttonpane { background-image: none; margin: .7em 0 0 0; padding:0 .2em; border-left: 0; border-right: 0; border-bottom: 0; } +.ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; } +.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; } + +/* with multiple calendars */ +.ui-datepicker.ui-datepicker-multi { width:auto; } +.ui-datepicker-multi .ui-datepicker-group { float:left; } +.ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; } +.ui-datepicker-multi-2 .ui-datepicker-group { width:50%; } +.ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; } +.ui-datepicker-multi-4 .ui-datepicker-group { width:25%; } +.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; } +.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; } +.ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; } +.ui-datepicker-row-break { clear:both; width:100%; } + +/* RTL support */ +.ui-datepicker-rtl { direction: rtl; } +.ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; } +.ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; } +.ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; } +.ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; } +.ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; } +.ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; } +.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; } +.ui-datepicker-rtl .ui-datepicker-group { float:right; } +.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; } +.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; } + +/* IE6 IFRAME FIX (taken from datepicker 1.5.3 */ +.ui-datepicker-cover { + display: none; /*sorry for IE5*/ + display/**/: block; /*sorry for IE5*/ + position: absolute; /*must have*/ + z-index: -1; /*must have*/ + filter: mask(); /*must have*/ + top: -4px; /*must have*/ + left: -4px; /*must have*/ + width: 200px; /*must have*/ + height: 200px; /*must have*/ +} + +/* Dialog +----------------------------------*/ +.ui-dialog { position: relative; padding: 0px; width: 300px;} +.ui-dialog .ui-dialog-titlebar { padding: .3em .3em .1em .8em; font-size:.7em; position: relative; background-image: none; } +.ui-dialog .ui-dialog-title { float: left; margin: .1em 0 .2em; } +.ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .1em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; } +.ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; } +.ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { /*padding: 0;*/ } +.ui-dialog .ui-dialog-content { border: 0; padding: .5em .2em; background: none; overflow: auto; zoom: 1; } +.ui-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; padding: .3em 1em .5em .4em; } +.ui-dialog .ui-dialog-buttonpane button { float: right; margin: .5em .4em .5em 0; cursor: pointer; padding: .2em .6em .3em .6em; line-height: 1.4em; width:auto; overflow:visible; } +.ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; } +.ui-draggable .ui-dialog-titlebar { cursor: move; } + +/* Progressbar +----------------------------------*/ +.ui-progressbar { height:2em; text-align: left; } +.ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; }/* Resizable +----------------------------------*/ +.ui-resizable { position: relative;} +.ui-resizable-handle { position: absolute;font-size: 0.1px;z-index: 99999; display: block;} +.ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; } +.ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0px; } +.ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0px; } +.ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0px; height: 100%; } +.ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0px; height: 100%; } +.ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; } +.ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; } +.ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; } +.ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;}/* Slider +----------------------------------*/ +.ui-slider { position: relative; text-align: left; } +.ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; } +.ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; } + +.ui-slider-horizontal { height: .8em; } +.ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; } +.ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; } +.ui-slider-horizontal .ui-slider-range-min { left: 0; } +.ui-slider-horizontal .ui-slider-range-max { right: 0; } + +.ui-slider-vertical { width: .8em; height: 100px; } +.ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; } +.ui-slider-vertical .ui-slider-range { left: 0; width: 100%; } +.ui-slider-vertical .ui-slider-range-min { bottom: 0; } +.ui-slider-vertical .ui-slider-range-max { top: 0; }/* Tabs +----------------------------------*/ +.ui-tabs { padding: .2em; zoom: 1; } +.ui-tabs .ui-tabs-nav { list-style: none; position: relative; padding: .2em .2em 0; } +.ui-tabs .ui-tabs-nav li { position: relative; float: left; border-bottom-width: 0 !important; margin: 0 .2em -1px 0; padding: 0; } +.ui-tabs .ui-tabs-nav li a { float: left; text-decoration: none; padding: .5em 1em; } +.ui-tabs .ui-tabs-nav li.ui-tabs-selected { padding-bottom: 1px; border-bottom-width: 0; } +.ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: text; } +.ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */ +.ui-tabs .ui-tabs-panel { padding: 1em 1.4em; display: block; border-width: 0; background: none; } +.ui-tabs .ui-tabs-hide { display: none !important; } +/* +* jQuery UI CSS Framework +* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about) +* Dual licensed under the MIT (MIT-LICENSE.txt) and GPL (GPL-LICENSE.txt) licenses. +* To view and modify this theme, visit http://jqueryui.com/themeroller/ +*/ + + +/* Component containers +----------------------------------*/ +.ui-widget { font-family: Verdana,Arial,sans-serif/*{ffDefault}*/; font-size: 1.1em/*{fsDefault}*/; } +.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Verdana,Arial,sans-serif/*{ffDefault}*/; font-size: 1em; } +.ui-widget-content { border: 1px solid #aaaaaa/*{borderColorContent}*/; background: #ffffff/*{bgColorContent}*/ url(images/ui-bg_glass_75_ffffff_1x400.png)/*{bgImgUrlContent}*/ 0/*{bgContentXPos}*/ 0/*{bgContentYPos}*/ repeat-x/*{bgContentRepeat}*/; color: #222222/*{fcContent}*/; } +.ui-widget-content a { color: #222222/*{fcContent}*/; } +.ui-widget-header { border: none /*1px solid #aaaaaa*//*{borderColorHeader}*/; background: #D3D3D3/*{bgColorHeader}*/ url(images/ui-bg_highlight-soft_75_cccccc_1x100.png)/*{bgImgUrlHeader}*/ 0/*{bgHeaderXPos}*/ 50%/*{bgHeaderYPos}*/ repeat-x/*{bgHeaderRepeat}*/; color: #000000/*{fcHeader}*/; font-weight: bold; } +.ui-widget-header a { color: #222222/*{fcHeader}*/; } + +/* Interaction states +----------------------------------*/ +.ui-state-default, .ui-widget-content .ui-state-default { border: none /*1px solid #d3d3d3*//*{borderColorDefault}*/; /*background: #e6e6e6*//*{bgColorDefault}*/ /*url(images/ui-bg_glass_75_e6e6e6_1x400.png)*//*{bgImgUrlDefault}*/ /*0*//*{bgDefaultXPos}*/ /*50%*//*{bgDefaultYPos}*/ /*repeat-x*//*{bgDefaultRepeat}*/ font-weight: normal/*{fwDefault}*/; color: #555555/*{fcDefault}*/; outline: none; } +.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #555555/*{fcDefault}*/; text-decoration: none; outline: none; } +.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus { border: none /*1px solid #999999*//*{borderColorHover}*/; /*background: #dadada*//*{bgColorHover}*/ /*url(images/ui-bg_glass_75_dadada_1x400.png)*//*{bgImgUrlHover}*/ /*0*//*{bgHoverXPos}*/ /*50%*//*{bgHoverYPos}*/ /*repeat-x*//*{bgHoverRepeat}*/ font-weight: normal/*{fwDefault}*/; color: #212121/*{fcHover}*/; outline: none; } +.ui-state-hover a, .ui-state-hover a:hover { color: #212121/*{fcHover}*/; text-decoration: none; outline: none; } +.ui-state-active, .ui-widget-content .ui-state-active { border: 1px solid #aaaaaa/*{borderColorActive}*/; background: #ffffff/*{bgColorActive}*/ url(images/ui-bg_glass_65_ffffff_1x400.png)/*{bgImgUrlActive}*/ 0/*{bgActiveXPos}*/ 50%/*{bgActiveYPos}*/ repeat-x/*{bgActiveRepeat}*/; font-weight: normal/*{fwDefault}*/; color: #212121/*{fcActive}*/; outline: none; } +.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #212121/*{fcActive}*/; outline: none; text-decoration: none; } + +/* Interaction Cues +----------------------------------*/ +.ui-state-highlight, .ui-widget-content .ui-state-highlight {border: 1px solid #fcefa1/*{borderColorHighlight}*/; background: #fbf9ee/*{bgColorHighlight}*/ url(images/ui-bg_glass_55_fbf9ee_1x400.png)/*{bgImgUrlHighlight}*/ 0/*{bgHighlightXPos}*/ 50%/*{bgHighlightYPos}*/ repeat-x/*{bgHighlightRepeat}*/; color: #363636/*{fcHighlight}*/; } +.ui-state-highlight a, .ui-widget-content .ui-state-highlight a { color: #363636/*{fcHighlight}*/; } +.ui-state-error, .ui-widget-content .ui-state-error {border: 1px solid #cd0a0a/*{borderColorError}*/; background: #fef1ec/*{bgColorError}*/ url(images/ui-bg_inset-soft_95_fef1ec_1x100.png)/*{bgImgUrlError}*/ 0/*{bgErrorXPos}*/ 50%/*{bgErrorYPos}*/ repeat-x/*{bgErrorRepeat}*/; color: #cd0a0a/*{fcError}*/; } +.ui-state-error a, .ui-widget-content .ui-state-error a { color: #363636/*{fcError}*/; } +.ui-state-error-text, .ui-widget-content .ui-state-error-text { color: #cd0a0a/*{fcError}*/; } +.ui-state-disabled, .ui-widget-content .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; } +.ui-priority-primary, .ui-widget-content .ui-priority-primary { font-weight: bold; } +.ui-priority-secondary, .ui-widget-content .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; } + +/* Icons +----------------------------------*/ + +/* states and images */ +.ui-icon { width: 16px; height: 16px; background-image: url(images/ui-icons_222222_256x240.png)/*{iconsContent}*/; } +.ui-widget-content .ui-icon {background-image: url(images/ui-icons_222222_256x240.png)/*{iconsContent}*/; } +.ui-widget-header .ui-icon {background-image: url(images/ui-icons_222222_256x240.png)/*{iconsHeader}*/; } +.ui-state-default .ui-icon { background-image: url(images/ui-icons_888888_256x240.png)/*{iconsDefault}*/; } +.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(images/ui-icons_454545_256x240.png)/*{iconsHover}*/; } +.ui-state-active .ui-icon {background-image: url(images/ui-icons_454545_256x240.png)/*{iconsActive}*/; } +.ui-state-highlight .ui-icon {background-image: url(images/ui-icons_2e83ff_256x240.png)/*{iconsHighlight}*/; } +.ui-state-error .ui-icon, .ui-state-error-text .ui-icon {background-image: url(images/ui-icons_cd0a0a_256x240.png)/*{iconsError}*/; } + +/* positioning */ +.ui-icon-carat-1-n { background-position: 0 0; } +.ui-icon-carat-1-ne { background-position: -16px 0; } +.ui-icon-carat-1-e { background-position: -32px 0; } +.ui-icon-carat-1-se { background-position: -48px 0; } +.ui-icon-carat-1-s { background-position: -64px 0; } +.ui-icon-carat-1-sw { background-position: -80px 0; } +.ui-icon-carat-1-w { background-position: -96px 0; } +.ui-icon-carat-1-nw { background-position: -112px 0; } +.ui-icon-carat-2-n-s { background-position: -128px 0; } +.ui-icon-carat-2-e-w { background-position: -144px 0; } +.ui-icon-triangle-1-n { background-position: 0 -16px; } +.ui-icon-triangle-1-ne { background-position: -16px -16px; } +.ui-icon-triangle-1-e { background-position: -32px -16px; } +.ui-icon-triangle-1-se { background-position: -48px -16px; } +.ui-icon-triangle-1-s { background-position: -64px -16px; } +.ui-icon-triangle-1-sw { background-position: -80px -16px; } +.ui-icon-triangle-1-w { background-position: -96px -16px; } +.ui-icon-triangle-1-nw { background-position: -112px -16px; } +.ui-icon-triangle-2-n-s { background-position: -128px -16px; } +.ui-icon-triangle-2-e-w { background-position: -144px -16px; } +.ui-icon-arrow-1-n { background-position: 0 -32px; } +.ui-icon-arrow-1-ne { background-position: -16px -32px; } +.ui-icon-arrow-1-e { background-position: -32px -32px; } +.ui-icon-arrow-1-se { background-position: -48px -32px; } +.ui-icon-arrow-1-s { background-position: -64px -32px; } +.ui-icon-arrow-1-sw { background-position: -80px -32px; } +.ui-icon-arrow-1-w { background-position: -96px -32px; } +.ui-icon-arrow-1-nw { background-position: -112px -32px; } +.ui-icon-arrow-2-n-s { background-position: -128px -32px; } +.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; } +.ui-icon-arrow-2-e-w { background-position: -160px -32px; } +.ui-icon-arrow-2-se-nw { background-position: -176px -32px; } +.ui-icon-arrowstop-1-n { background-position: -192px -32px; } +.ui-icon-arrowstop-1-e { background-position: -208px -32px; } +.ui-icon-arrowstop-1-s { background-position: -224px -32px; } +.ui-icon-arrowstop-1-w { background-position: -240px -32px; } +.ui-icon-arrowthick-1-n { background-position: 0 -48px; } +.ui-icon-arrowthick-1-ne { background-position: -16px -48px; } +.ui-icon-arrowthick-1-e { background-position: -32px -48px; } +.ui-icon-arrowthick-1-se { background-position: -48px -48px; } +.ui-icon-arrowthick-1-s { background-position: -64px -48px; } +.ui-icon-arrowthick-1-sw { background-position: -80px -48px; } +.ui-icon-arrowthick-1-w { background-position: -96px -48px; } +.ui-icon-arrowthick-1-nw { background-position: -112px -48px; } +.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; } +.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; } +.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; } +.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; } +.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; } +.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; } +.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; } +.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; } +.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; } +.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; } +.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; } +.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; } +.ui-icon-arrowreturn-1-w { background-position: -64px -64px; } +.ui-icon-arrowreturn-1-n { background-position: -80px -64px; } +.ui-icon-arrowreturn-1-e { background-position: -96px -64px; } +.ui-icon-arrowreturn-1-s { background-position: -112px -64px; } +.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; } +.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; } +.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; } +.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; } +.ui-icon-arrow-4 { background-position: 0 -80px; } +.ui-icon-arrow-4-diag { background-position: -16px -80px; } +.ui-icon-extlink { background-position: -32px -80px; } +.ui-icon-newwin { background-position: -48px -80px; } +.ui-icon-refresh { background-position: -64px -80px; } +.ui-icon-shuffle { background-position: -80px -80px; } +.ui-icon-transfer-e-w { background-position: -96px -80px; } +.ui-icon-transferthick-e-w { background-position: -112px -80px; } +.ui-icon-folder-collapsed { background-position: 0 -96px; } +.ui-icon-folder-open { background-position: -16px -96px; } +.ui-icon-document { background-position: -32px -96px; } +.ui-icon-document-b { background-position: -48px -96px; } +.ui-icon-note { background-position: -64px -96px; } +.ui-icon-mail-closed { background-position: -80px -96px; } +.ui-icon-mail-open { background-position: -96px -96px; } +.ui-icon-suitcase { background-position: -112px -96px; } +.ui-icon-comment { background-position: -128px -96px; } +.ui-icon-person { background-position: -144px -96px; } +.ui-icon-print { background-position: -160px -96px; } +.ui-icon-trash { background-position: -176px -96px; } +.ui-icon-locked { background-position: -192px -96px; } +.ui-icon-unlocked { background-position: -208px -96px; } +.ui-icon-bookmark { background-position: -224px -96px; } +.ui-icon-tag { background-position: -240px -96px; } +.ui-icon-home { background-position: 0 -112px; } +.ui-icon-flag { background-position: -16px -112px; } +.ui-icon-calendar { background-position: -32px -112px; } +.ui-icon-cart { background-position: -48px -112px; } +.ui-icon-pencil { background-position: -64px -112px; } +.ui-icon-clock { background-position: -80px -112px; } +.ui-icon-disk { background-position: -96px -112px; } +.ui-icon-calculator { background-position: -112px -112px; } +.ui-icon-zoomin { background-position: -128px -112px; } +.ui-icon-zoomout { background-position: -144px -112px; } +.ui-icon-search { background-position: -160px -112px; } +.ui-icon-wrench { background-position: -176px -112px; } +.ui-icon-gear { background-position: -192px -112px; } +.ui-icon-heart { background-position: -208px -112px; } +.ui-icon-star { background-position: -224px -112px; } +.ui-icon-link { background-position: -240px -112px; } +.ui-icon-cancel { background-position: 0 -128px; } +.ui-icon-plus { background-position: -16px -128px; } +.ui-icon-plusthick { background-position: -32px -128px; } +.ui-icon-minus { background-position: -48px -128px; } +.ui-icon-minusthick { background-position: -64px -128px; } +.ui-icon-close { background-position: -80px -128px; } +.ui-icon-closethick { background-position: -96px -128px; } +.ui-icon-key { background-position: -112px -128px; } +.ui-icon-lightbulb { background-position: -128px -128px; } +.ui-icon-scissors { background-position: -144px -128px; } +.ui-icon-clipboard { background-position: -160px -128px; } +.ui-icon-copy { background-position: -176px -128px; } +.ui-icon-contact { background-position: -192px -128px; } +.ui-icon-image { background-position: -208px -128px; } +.ui-icon-video { background-position: -224px -128px; } +.ui-icon-script { background-position: -240px -128px; } +.ui-icon-alert { background-position: 0 -144px; } +.ui-icon-info { background-position: -16px -144px; } +.ui-icon-notice { background-position: -32px -144px; } +.ui-icon-help { background-position: -48px -144px; } +.ui-icon-check { background-position: -64px -144px; } +.ui-icon-bullet { background-position: -80px -144px; } +.ui-icon-radio-off { background-position: -96px -144px; } +.ui-icon-radio-on { background-position: -112px -144px; } +.ui-icon-pin-w { background-position: -128px -144px; } +.ui-icon-pin-s { background-position: -144px -144px; } +.ui-icon-play { background-position: 0 -160px; } +.ui-icon-pause { background-position: -16px -160px; } +.ui-icon-seek-next { background-position: -32px -160px; } +.ui-icon-seek-prev { background-position: -48px -160px; } +.ui-icon-seek-end { background-position: -64px -160px; } +.ui-icon-seek-first { background-position: -80px -160px; } +.ui-icon-stop { background-position: -96px -160px; } +.ui-icon-eject { background-position: -112px -160px; } +.ui-icon-volume-off { background-position: -128px -160px; } +.ui-icon-volume-on { background-position: -144px -160px; } +.ui-icon-power { background-position: 0 -176px; } +.ui-icon-signal-diag { background-position: -16px -176px; } +.ui-icon-signal { background-position: -32px -176px; } +.ui-icon-battery-0 { background-position: -48px -176px; } +.ui-icon-battery-1 { background-position: -64px -176px; } +.ui-icon-battery-2 { background-position: -80px -176px; } +.ui-icon-battery-3 { background-position: -96px -176px; } +.ui-icon-circle-plus { background-position: 0 -192px; } +.ui-icon-circle-minus { background-position: -16px -192px; } +.ui-icon-circle-close { background-position: -32px -192px; } +.ui-icon-circle-triangle-e { background-position: -48px -192px; } +.ui-icon-circle-triangle-s { background-position: -64px -192px; } +.ui-icon-circle-triangle-w { background-position: -80px -192px; } +.ui-icon-circle-triangle-n { background-position: -96px -192px; } +.ui-icon-circle-arrow-e { background-position: -112px -192px; } +.ui-icon-circle-arrow-s { background-position: -128px -192px; } +.ui-icon-circle-arrow-w { background-position: -144px -192px; } +.ui-icon-circle-arrow-n { background-position: -160px -192px; } +.ui-icon-circle-zoomin { background-position: -176px -192px; } +.ui-icon-circle-zoomout { background-position: -192px -192px; } +.ui-icon-circle-check { background-position: -208px -192px; } +.ui-icon-circlesmall-plus { background-position: 0 -208px; } +.ui-icon-circlesmall-minus { background-position: -16px -208px; } +.ui-icon-circlesmall-close { background-position: -32px -208px; } +.ui-icon-squaresmall-plus { background-position: -48px -208px; } +.ui-icon-squaresmall-minus { background-position: -64px -208px; } +.ui-icon-squaresmall-close { background-position: -80px -208px; } +.ui-icon-grip-dotted-vertical { background-position: 0 -224px; } +.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; } +.ui-icon-grip-solid-vertical { background-position: -32px -224px; } +.ui-icon-grip-solid-horizontal { background-position: -48px -224px; } +.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; } +.ui-icon-grip-diagonal-se { background-position: -80px -224px; } + + +/* Misc visuals +----------------------------------*/ + +/* Corner radius */ +.ui-corner-tl { -moz-border-radius-topleft: 4px/*{cornerRadius}*/; -webkit-border-top-left-radius: 4px/*{cornerRadius}*/; } +.ui-corner-tr { -moz-border-radius-topright: 4px/*{cornerRadius}*/; -webkit-border-top-right-radius: 4px/*{cornerRadius}*/; } +.ui-corner-bl { -moz-border-radius-bottomleft: 4px/*{cornerRadius}*/; -webkit-border-bottom-left-radius: 4px/*{cornerRadius}*/; } +.ui-corner-br { -moz-border-radius-bottomright: 4px/*{cornerRadius}*/; -webkit-border-bottom-right-radius: 4px/*{cornerRadius}*/; } +.ui-corner-top { -moz-border-radius-topleft: 4px/*{cornerRadius}*/; -webkit-border-top-left-radius: 4px/*{cornerRadius}*/; -moz-border-radius-topright: 4px/*{cornerRadius}*/; -webkit-border-top-right-radius: 4px/*{cornerRadius}*/; } +.ui-corner-bottom { -moz-border-radius-bottomleft: 4px/*{cornerRadius}*/; -webkit-border-bottom-left-radius: 4px/*{cornerRadius}*/; -moz-border-radius-bottomright: 4px/*{cornerRadius}*/; -webkit-border-bottom-right-radius: 4px/*{cornerRadius}*/; } +.ui-corner-right { -moz-border-radius-topright: 4px/*{cornerRadius}*/; -webkit-border-top-right-radius: 4px/*{cornerRadius}*/; -moz-border-radius-bottomright: 4px/*{cornerRadius}*/; -webkit-border-bottom-right-radius: 4px/*{cornerRadius}*/; } +.ui-corner-left { -moz-border-radius-topleft: 4px/*{cornerRadius}*/; -webkit-border-top-left-radius: 4px/*{cornerRadius}*/; -moz-border-radius-bottomleft: 4px/*{cornerRadius}*/; -webkit-border-bottom-left-radius: 4px/*{cornerRadius}*/; } +.ui-corner-all { -moz-border-radius: 0px/*{cornerRadius}*/; -webkit-border-radius: 0px/*{cornerRadius}*/; } + +/* Overlays */ +.ui-widget-overlay { background: #aaaaaa/*{bgColorOverlay}*/ none/*{bgImgUrlOverlay}*/ 0/*{bgOverlayXPos}*/ 0/*{bgOverlayYPos}*/ repeat-x/*{bgOverlayRepeat}*/; opacity: .3;filter:Alpha(Opacity=30)/*{opacityOverlay}*/; } +.ui-widget-shadow { margin: -4px/*{offsetTopShadow}*/ 0 0 -4px/*{offsetLeftShadow}*/; padding: 4px/*{thicknessShadow}*/; background: #aaaaaa/*{bgColorShadow}*/ none/*{bgImgUrlShadow}*/ 0/*{bgShadowXPos}*/ 0/*{bgShadowYPos}*/ repeat-x/*{bgShadowRepeat}*/; opacity: .35;filter:Alpha(Opacity=35)/*{opacityShadow}*/; -moz-border-radius: 4px/*{cornerRadiusShadow}*/; -webkit-border-radius: 4px/*{cornerRadiusShadow}*/; } \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/reset.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/reset.css" new file mode 100644 index 0000000..01a4271 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/css/reset.css" @@ -0,0 +1,24 @@ +html,body,div,span, +applet,object,iframe, +h1,h2,h3,h4,h5,h6,p,blockquote,pre, +a,abbr,acronym,address,big,cite,code, +del,dfn,em,font,img,ins,kbd,q,s,samp, +small,strike,strong,sub,sup,tt,var, +dd,dl,dt,li,ol,ul, +fieldset,form,label,legend, +table,caption,tbody,tfoot,thead,tr,th,td { + margin: 0; + padding: 0; + border: 0; +} +table { + border-collapse: collapse; + border-spacing: 0; +} +ol,ul { + list-style: none; +} +q:before,q:after, +blockquote:before,blockquote:after { + content: ""; +} \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/expand.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/expand.html" new file mode 100644 index 0000000..10dfa4c --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/expand.html" @@ -0,0 +1,27 @@ + + + + + + + + + + +
    +
    + + \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/images/259_close_12rollover1.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/images/259_close_12rollover1.png" new file mode 100644 index 0000000..a19bf8a Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/images/259_close_12rollover1.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/images/259_close_12rollover2.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/images/259_close_12rollover2.png" new file mode 100644 index 0000000..2f57c5d Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/images/259_close_12rollover2.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/images/260_collapse_12rollover1.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/images/260_collapse_12rollover1.png" new file mode 100644 index 0000000..426621f Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/images/260_collapse_12rollover1.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/images/260_collapse_12rollover2.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/images/260_collapse_12rollover2.png" new file mode 100644 index 0000000..8450723 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/images/260_collapse_12rollover2.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/images/261_expand_12rollover1.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/images/261_expand_12rollover1.png" new file mode 100644 index 0000000..5c7ec92 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/images/261_expand_12rollover1.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/images/261_expand_12rollover2.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/images/261_expand_12rollover2.png" new file mode 100644 index 0000000..81ce138 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/images/261_expand_12rollover2.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/images/images.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/images/images.html" new file mode 100644 index 0000000..6b26a37 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/images/images.html" @@ -0,0 +1,17 @@ + + + + + + +

    + + + + + + + +

    + + \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/images/transparent.gif" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/images/transparent.gif" new file mode 100644 index 0000000..35d42e8 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/images/transparent.gif" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/reload.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/reload.html" new file mode 100644 index 0000000..5f99f0b --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/reload.html" @@ -0,0 +1,24 @@ + + + + + + + + + + \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/action.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/action.js" new file mode 100644 index 0000000..2446e53 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/action.js" @@ -0,0 +1,785 @@ +$axure.internal(function($ax) { + var _actionHandlers = {}; + var _action = $ax.action = {}; + + var animationQueue = {}; + var getAnimation = function(id) { + return animationQueue[id] && animationQueue[id][0]; + }; + + var _addAnimation = _action.addAnimation = function(id, func) { + var wasEmpty = !getAnimation(id); + + // Add the func to the queue. Create the queue if necessary. + var queue = animationQueue[id]; + if(!queue) { + animationQueue[id] = queue = []; + } + queue[queue.length] = func; + + // If it was empty, there isn't a callback waiting to be called on this. You have to fire it manually. + if(wasEmpty) func(); + }; + + var _fireAnimationFromQueue = _action.fireAnimationFromQueue = function(id) { + // Remove the function that was just fired + if(animationQueue[id]) $ax.splice(animationQueue[id], 0, 1); + + // Fire the next func if there is one + var func = getAnimation(id); + if(func) func(); + }; + + var _refreshing; + _action.refreshStart = function(repeaterId) { _refreshing = repeaterId; }; + _action.refreshEnd = function() { _refreshing = undefined; }; + + var _repeatersToRefeash = _action.repeatersToRefresh = []; + var _ignoreAction = function(repeaterId) { + return _refreshing == repeaterId; + }; + + var _addRefresh = function(repeaterId) { + if(_repeatersToRefeash.indexOf(repeaterId) == -1) _repeatersToRefeash.push(repeaterId); + }; + + var _dispatchAction = $ax.action.dispatchAction = function(eventInfo, actions, currentIndex) { + currentIndex = currentIndex || 0; + //If no actions, you can bubble + if(currentIndex >= actions.length) return; + //actions are responsible for doing their own dispatching + _actionHandlers[actions[currentIndex].action](eventInfo, actions, currentIndex); + }; + + _actionHandlers.wait = function(eventInfo, actions, index) { + var action = actions[index]; + var infoCopy = $ax.eventCopy(eventInfo); + window.setTimeout(function() { + _dispatchAction(infoCopy, actions, index + 1); + }, action.waitTime); + }; + + _actionHandlers.expr = function(eventInfo, actions, index) { + var action = actions[index]; + + $ax.expr.evaluateExpr(action.expr, eventInfo); //this should be a block + + _dispatchAction(eventInfo, actions, index + 1); + }; + + _actionHandlers.setFunction = _actionHandlers.expr; + + _actionHandlers.linkWindow = function(eventInfo, actions, index) { + linkActionHelper(eventInfo, actions, index); + }; + + _actionHandlers.closeCurrent = function(eventInfo, actions, index) { + $ax.closeWindow(); + _dispatchAction(eventInfo, actions, index + 1); + }; + + _actionHandlers.linkFrame = function(eventInfo, actions, index) { + linkActionHelper(eventInfo, actions, index); + }; + + var linkActionHelper = function(eventInfo, actions, index) { + var action = actions[index]; + eventInfo.link = true; + + if(action.linkType != 'frame') { + if(action.target.targetType == "reloadPage") { + $ax.reload(action.target.includeVariables); + } else if(action.target.targetType == "backUrl") { + $ax.back(); + } + + var url = action.target.url; + if(!url && action.target.urlLiteral) { + url = $ax.expr.evaluateExpr(action.target.urlLiteral, eventInfo, true); + } + + if(url) { + if(action.linkType == "popup") { + $ax.navigate({ + url: url, + target: action.linkType, + includeVariables: action.target.includeVariables, + popupOptions: action.popup + }); + } else { + $ax.navigate({ + url: url, + target: action.linkType, + includeVariables: action.target.includeVariables + }); + } + } + } else linkFrame(eventInfo, action); + eventInfo.link = false; + + _dispatchAction(eventInfo, actions, index + 1); + }; + + var linkFrame = function(eventInfo, action) { + for(var i = 0; i < action.framesToTargets.length; i++) { + var framePath = action.framesToTargets[i].framePath; + var target = action.framesToTargets[i].target; + + var url = target.url; + if(!url && target.urlLiteral) { + url = $ax.expr.evaluateExpr(target.urlLiteral, eventInfo, true); + } + + $ax('#' + $ax.getElementIdsFromPath(framePath, eventInfo)[0]).openLink(url, target.includeVariables); + } + }; + + var _repeatPanelMap = {}; + + _actionHandlers.setPanelState = function(eventInfo, actions, index) { + var action = actions[index]; + + for(var i = 0; i < action.panelsToStates.length; i++) { + var panelToState = action.panelsToStates[i]; + var stateInfo = panelToState.stateInfo; + var elementIds = $ax.getElementIdsFromPath(panelToState.panelPath, eventInfo); + + for(var j = 0; j < elementIds.length; j++) { + var elementId = elementIds[j]; + // Need new scope for elementId and info + (function(elementId, stateInfo) { + _addAnimation(elementId, function() { + var stateNumber = stateInfo.stateNumber; + if(stateInfo.setStateType == "value") { + var oldTarget = eventInfo.targetElement; + eventInfo.targetElement = elementId; + var stateName = $ax.expr.evaluateExpr(stateInfo.stateValue, eventInfo); + eventInfo.targetElement = oldTarget; + stateNumber = Number(stateName); + var panelCount = $('#' + elementId).children().length; + // If not number, or too low or high, try to get it as a name rather than id + if(isNaN(stateNumber) || stateNumber <= 0 || stateNumber > panelCount) { + var states = $ax.getObjectFromElementId(elementId).diagrams; + var stateNameFound = false; + for(var k = 0; k < states.length; k++) { + if(states[k].label == stateName) { + stateNumber = k + 1; + stateNameFound = true; + } + } + // Wasn't a state number, or a state name, so return + if(!stateNameFound) { + return $ax.action.fireAnimationFromQueue(elementId); + } + } + } else if(stateInfo.setStateType == 'next' || stateInfo.setStateType == 'previous') { + var info = $ax.deepCopy(stateInfo); + var repeat = info.repeat; + + // Only map it, if repeat exists. + if(typeof (repeat) == 'number') _repeatPanelMap[elementId] = info; + return _progessPanelState(elementId, info); + } + delete _repeatPanelMap[elementId]; + + // If setting to current (to stop repeat) break here + if(stateInfo.setStateType == 'current') return $ax.action.fireAnimationFromQueue(elementId); + + $ax('#' + elementId).SetPanelState(stateNumber, stateInfo.options, stateInfo.showWhenSet); + }); + })(elementId, stateInfo); + } + } + + _dispatchAction(eventInfo, actions, index + 1); + }; + + var _progessPanelState = function(id, info) { + var direction = info.setStateType; + var loop = info.loop; + var repeat = info.repeat; + var options = info.options; + + var hasRepeat = typeof (repeat) == 'number'; + var currentStateId = $ax.visibility.GetPanelState(id); + var stateNumber = ''; + if(currentStateId != '') { + currentStateId = $ax.repeater.getScriptIdFromElementId(currentStateId); + var currentStateNumber = Number(currentStateId.substr(currentStateId.indexOf('state') + 5)); + if(direction == "next") { + stateNumber = currentStateNumber + 2; + if(stateNumber > $('#' + id).children().length) { + if(loop) stateNumber = 1; + else { + delete _repeatPanelMap[id]; + return $ax.action.fireAnimationFromQueue(id); + } + } + } else if(direction == "previous") { + stateNumber = currentStateNumber; + if(stateNumber <= 0) { + if(loop) stateNumber = $('#' + id).children().length; + else { + delete _repeatPanelMap[id]; + return $ax.action.fireAnimationFromQueue(id); + } + } + } + + $ax('#' + id).SetPanelState(stateNumber, options, info.showWhenSet); + + if(hasRepeat) { + var animate = options && options.animateIn; + if(animate && animate.easing && animate.easing != 'none' && animate.duration > repeat) repeat = animate.duration; + animate = options && options.animateOut; + if(animate && animate.easing && animate.easing != 'none' && animate.duration > repeat) repeat = animate.duration; + + window.setTimeout(function() { + // Either new repeat, or no repeat anymore. + if(_repeatPanelMap[id] != info) return; + _addAnimation(id, function() { + _progessPanelState(id, info); + }); + }, repeat); + } else delete _repeatPanelMap[id]; + } + }; + + _actionHandlers.fadeWidget = function(eventInfo, actions, index) { + var action = actions[index]; + + for(var i = 0; i < action.objectsToFades.length; i++) { + var fadeInfo = action.objectsToFades[i].fadeInfo; + var elementIds = $ax.getElementIdsFromPath(action.objectsToFades[i].objectPath, eventInfo); + + for(var j = 0; j < elementIds.length; j++) { + var elementId = elementIds[j]; + // Need new scope for elementId and info + (function(elementId, fadeInfo) { + _addAnimation(elementId, function() { + if(fadeInfo.fadeType == "hide") { + $ax('#' + elementId).hide(fadeInfo.options); + } else if(fadeInfo.fadeType == "show") { + $ax('#' + elementId).show(fadeInfo.options, eventInfo); + } else if(fadeInfo.fadeType == "toggle") { + $ax('#' + elementId).toggleVisibility(fadeInfo.options); + } + }); + })(elementId, fadeInfo); + } + } + + _dispatchAction(eventInfo, actions, index + 1); + }; + + _actionHandlers.moveWidget = function(eventInfo, actions, index) { + var action = actions[index]; + for(var i = 0; i < action.objectsToMoves.length; i++) { + var moveInfo = action.objectsToMoves[i].moveInfo; + var elementIds = $ax.getElementIdsFromPath(action.objectsToMoves[i].objectPath, eventInfo); + + for(var j = 0; j < elementIds.length; j++) { + var elementId = elementIds[j]; + // Need new scope for elementId and info + (function(elementId, moveInfo) { + var oldTarget = eventInfo.targetElement; + eventInfo.targetElement = elementId; + var xValue = $ax.expr.evaluateExpr(moveInfo.xValue, eventInfo); + var yValue = $ax.expr.evaluateExpr(moveInfo.yValue, eventInfo); + eventInfo.targetElement = oldTarget; + + var widgetDragInfo = eventInfo.dragInfo; + _addAnimation(elementId, function() { + if(moveInfo.moveType == "location") { + $ax('#' + elementId).moveTo(xValue, yValue, moveInfo.options); + } else if(moveInfo.moveType == "delta") { + $ax('#' + elementId).moveBy(xValue, yValue, moveInfo.options); + } else if(moveInfo.moveType == "drag") { + $ax('#' + elementId).moveBy(widgetDragInfo.xDelta, widgetDragInfo.yDelta, moveInfo.options); + } else if(moveInfo.moveType == "dragX") { + $ax('#' + elementId).moveBy(widgetDragInfo.xDelta, 0, moveInfo.options); + } else if(moveInfo.moveType == "dragY") { + $ax('#' + elementId).moveBy(0, widgetDragInfo.yDelta, moveInfo.options); + } else if(moveInfo.moveType == "locationBeforeDrag") { + var loc = widgetDragInfo.movedWidgets[elementId]; + if(loc) $ax('#' + elementId).moveTo(loc.x, loc.y, moveInfo.options); + else _fireAnimationFromQueue(elementId); + } else if(moveInfo.moveType == "withThis") { + var widgetMoveInfo = $ax.move.GetWidgetMoveInfo(); + var srcElementId = $ax.getElementIdsFromEventAndScriptId(eventInfo, eventInfo.srcElement)[0]; + var delta = widgetMoveInfo[srcElementId]; + if(delta) $ax('#' + elementId).moveBy(delta.x, delta.y, delta.options); + else _fireAnimationFromQueue(elementId); + } + }); + })(elementId, moveInfo); + } + } + + _dispatchAction(eventInfo, actions, index + 1); + }; + + _actionHandlers.setWidgetSize = function(eventInfo, actions, index) { + var action = actions[index]; + for(var i = 0; i < action.objectsToResize.length; i++) { + var resizeInfo = action.objectsToResize[i].sizeInfo; + var elementIds = $ax.getElementIdsFromPath(action.objectsToResize[i].objectPath, eventInfo); + + for(var j = 0; j < elementIds.length; j++) { + var elementId = elementIds[j]; + + // Need new scope for elementId and info + (function(elementId, resizeInfo) { + var oldTarget = eventInfo.targetElement; + eventInfo.targetElement = elementId; + var width = $ax.expr.evaluateExpr(resizeInfo.width, eventInfo); + var height = $ax.expr.evaluateExpr(resizeInfo.height, eventInfo); + eventInfo.targetElement = oldTarget; + // TODO:[bf] Does this merit it's own file? Is there another file it should be refactored out to? Just refactored out to another function? + _addAnimation(elementId, function() { + var query = $jobj(elementId); + + // Get the current width and height + var oldWidth = query.css('width'); + oldWidth = Number(oldWidth && oldWidth.substring(0, oldWidth.length - 2)); + var oldHeight = query.css('height'); + oldHeight = Number(oldHeight && oldHeight.substring(0, oldHeight.length - 2)); + + // If either one is not a number, use the old value + width = width != "" ? Number(width) : oldWidth; + height = height != "" ? Number(height) : oldHeight; + + width = isNaN(width) ? oldWidth : width; + height = isNaN(height) ? oldHeight : height; + + // can't be negative + width = Math.max(width, 0); + height = Math.max(height, 0); + if(height == oldHeight && width == oldWidth) { + _fireAnimationFromQueue(elementId); + return; + } + + var css = { width: width, height: height }; + var obj = $obj(elementId); + if(obj.percentWidth) css = { height: height }; + + // No longer fitToContent, calculate additional styling that needs to be done. + $ax.dynamicPanelManager.setFitToContentCss(elementId, false, oldWidth, oldHeight); + + var easing = resizeInfo.easing || 'none'; + var duration = resizeInfo.duration || 0; + + var stateCss = $ax.deepCopy(css); + // This will move panel if fixed. The callback will make sure resizing ends there. + if((obj.fixedHorizontal && obj.fixedHorizontal == 'center') || (obj.fixedVertical && obj.fixedVertical == 'middle')) { + var loc = $ax.dynamicPanelManager.getFixedPosition(elementId, oldWidth, oldHeight, width, height); + if(loc) { + if(loc[0] != 0 && !$ax.dynamicPanelManager.isPercentWidthPanel(obj)) css['margin-left'] = '+=' + loc[0]; + if(loc[1] != 0) css['margin-top'] = '+=' + loc[1]; + } + } + + var onComplete = function() { + $ax.flyoutManager.updateFlyout(elementId); + $ax.dynamicPanelManager.fitParentPanel(elementId); + $ax.dynamicPanelManager.updatePanelPercentWidth(elementId); + $ax.dynamicPanelManager.updatePanelContentPercentWidth(elementId); + $ax.event.raiseSyntheticEvent(elementId, 'onResize'); + _fireAnimationFromQueue(elementId); + }; + + // This does the resize animation. Moving is handled elsewhere. + if(easing == 'none') { + query.animate(css, 0); + query.children().animate(css, 0); + onComplete(); + } else { + query.children().animate(stateCss, duration, easing); + query.animate(css, duration, easing, onComplete); + } + }); + })(elementId, resizeInfo); + } + } + + _dispatchAction(eventInfo, actions, index + 1); + }; + + _actionHandlers.setPanelOrder = function(eventInfo, actions, index) { + var action = actions[index]; + for(var i = 0; i < action.panelPaths.length; i++) { + var func = action.panelPaths[i].setOrderInfo.bringToFront ? 'bringToFront' : 'sendToBack'; + var elementIds = $ax.getElementIdsFromPath(action.panelPaths[i].panelPath, eventInfo); + for(var j = 0; j < elementIds.length; j++) $ax('#' + elementIds[j])[func](); + } + + _dispatchAction(eventInfo, actions, index + 1); + }; + + _actionHandlers.modifyDataSetEditItems = function(eventInfo, actions, index) { + var action = actions[index]; + var add = action.repeatersToAddTo; + var repeaters = add || action.repeatersToRemoveFrom; + var itemId; + for(var i = 0; i < repeaters.length; i++) { + var data = repeaters[i]; + // Grab the first one because repeaters must have only element id, as they cannot be inside repeaters + var id = $ax.getElementIdsFromPath(data.path, eventInfo)[0]; + + if(data.addType == 'this') { + var scriptId = $ax.repeater.getScriptIdFromElementId(eventInfo.srcElement); + itemId = $ax.repeater.getItemIdFromElementId(eventInfo.srcElement); + var repeaterId = $ax.getParentRepeaterFromScriptId(scriptId); + if(add) $ax.repeater.addEditItems(repeaterId, [itemId]); + else $ax.repeater.removeEditItems(repeaterId, [itemId]); + } else if(data.addType == 'all') { + var allItems = $ax.repeater.getAllItemIds(id); + if(add) $ax.repeater.addEditItems(id, allItems); + else $ax.repeater.removeEditItems(id, allItems); + } else { + var oldTarget = eventInfo.targetElement; + var itemIds = $ax.repeater.getAllItemIds(id); + var itemIdsToAdd = []; + for(var j = 0; j < itemIds.length; j++) { + itemId = itemIds[j]; + eventInfo.targetElement = $ax.repeater.createElementId(id, itemId); + if($ax.expr.evaluateExpr(data.query, eventInfo) == "true") { + itemIdsToAdd[itemIdsToAdd.length] = String(itemId); + } + eventInfo.targetElement = oldTarget; + } + if(add) $ax.repeater.addEditItems(id, itemIdsToAdd); + else $ax.repeater.removeEditItems(id, itemIdsToAdd); + } + } + + _dispatchAction(eventInfo, actions, index + 1); + }; + + _actionHandlers.addItemsToDataSet = function(eventInfo, actions, index) { + var action = actions[index]; + for(var i = 0; i < action.dataSetsToAddTo.length; i++) { + var datasetInfo = action.dataSetsToAddTo[i]; + // Grab the first one because repeaters must have only element id, as they cannot be inside repeaters + var id = $ax.getElementIdsFromPath(datasetInfo.path, eventInfo)[0]; + if(_ignoreAction(id)) continue; + var dataset = datasetInfo.data; + + for(var j = 0; j < dataset.length; j++) $ax.repeater.addItem(id, $ax.deepCopy(dataset[j]), eventInfo); + if(dataset.length) _addRefresh(id); + } + + _dispatchAction(eventInfo, actions, index + 1); + }; + + _actionHandlers.deleteItemsFromDataSet = function(eventInfo, actions, index) { + var action = actions[index]; + for(var i = 0; i < action.dataSetItemsToRemove.length; i++) { + // Grab the first one because repeaters must have only element id, as they cannot be inside repeaters + var deleteInfo = action.dataSetItemsToRemove[i]; + var id = $ax.getElementIdsFromPath(deleteInfo.path, eventInfo)[0]; + if(_ignoreAction(id)) continue; + $ax.repeater.deleteItems(id, eventInfo, deleteInfo.type, deleteInfo.rule); + _addRefresh(id); + } + + _dispatchAction(eventInfo, actions, index + 1); + }; + + _actionHandlers.updateItemsInDataSet = function(eventInfo, actions, index) { + var action = actions[index]; + for(var i = 0; i < action.dataSetsToUpdate.length; i++) { + var dataSet = action.dataSetsToUpdate[i]; + // Grab the first one because repeaters must have only element id, as they cannot be inside repeaters + var id = $ax.getElementIdsFromPath(dataSet.path, eventInfo)[0]; + if(_ignoreAction(id)) continue; + + $ax.repeater.updateEditItems(id, dataSet.props, eventInfo, dataSet.type, dataSet.rule); + _addRefresh(id); + } + + _dispatchAction(eventInfo, actions, index + 1); + }; + + _actionHandlers.setRepeaterToDataSet = function(eventInfo, actions, index) { + var action = actions[index]; + + for(var i = 0; i < action.repeatersToSet.length; i++) { + var setRepeaterInfo = action.repeatersToSet[i]; + // Grab the first one because repeaters must have only element id, as they cannot be inside repeaters + var id = $ax.getElementIdsFromPath(setRepeaterInfo.path, eventInfo)[0]; + $ax.repeater.setDataSet(id, setRepeaterInfo.localDataSetId); + } + + _dispatchAction(eventInfo, actions, index + 1); + }; + + _actionHandlers.addFilterToRepeater = function(eventInfo, actions, index) { + var action = actions[index]; + + for(var i = 0; i < action.repeatersToAddFilter.length; i++) { + var addFilterInfo = action.repeatersToAddFilter[i]; + // Grab the first one because repeaters must have only element id, as they cannot be inside repeaters + var id = $ax.getElementIdsFromPath(addFilterInfo.path, eventInfo)[0]; + if(_ignoreAction(id)) continue; + + $ax.repeater.addFilter(id, addFilterInfo.label, addFilterInfo.filter, eventInfo.srcElement); + _addRefresh(id); + } + + _dispatchAction(eventInfo, actions, index + 1); + }; + + _actionHandlers.removeFilterFromRepeater = function(eventInfo, actions, index) { + var action = actions[index]; + + for(var i = 0; i < action.repeatersToRemoveFilter.length; i++) { + var removeFilterInfo = action.repeatersToRemoveFilter[i]; + // Grab the first one because repeaters must have only element id, as they cannot be inside repeaters + var id = $ax.getElementIdsFromPath(removeFilterInfo.path, eventInfo)[0]; + if(_ignoreAction(id)) continue; + + if(removeFilterInfo.removeAll) $ax.repeater.removeFilter(id); + else if(removeFilterInfo.filterName != '') { + $ax.repeater.removeFilter(id, removeFilterInfo.filterName); + } + _addRefresh(id); + } + + _dispatchAction(eventInfo, actions, index + 1); + }; + + _actionHandlers.addSortToRepeater = function(eventInfo, actions, index) { + var action = actions[index]; + + for(var i = 0; i < action.repeatersToAddSort.length; i++) { + var addSortInfo = action.repeatersToAddSort[i]; + // Grab the first one because repeaters must have only element id, as they cannot be inside repeaters + var id = $ax.getElementIdsFromPath(addSortInfo.path, eventInfo)[0]; + if(_ignoreAction(id)) continue; + + $ax.repeater.addSort(id, addSortInfo.label, addSortInfo.columnName, addSortInfo.ascending, addSortInfo.toggle, addSortInfo.sortType); + _addRefresh(id); + } + + _dispatchAction(eventInfo, actions, index + 1); + }; + + _actionHandlers.removeSortFromRepeater = function(eventInfo, actions, index) { + var action = actions[index]; + + for(var i = 0; i < action.repeatersToRemoveSort.length; i++) { + var removeSortInfo = action.repeatersToRemoveSort[i]; + // Grab the first one because repeaters must have only element id, as they cannot be inside repeaters + var id = $ax.getElementIdsFromPath(removeSortInfo.path, eventInfo)[0]; + if(_ignoreAction(id)) continue; + + if(removeSortInfo.removeAll) $ax.repeater.removeSort(id); + else if(removeSortInfo.sortName != '') $ax.repeater.removeSort(id, removeSortInfo.sortName); + _addRefresh(id); + } + + _dispatchAction(eventInfo, actions, index + 1); + }; + + _actionHandlers.setRepeaterToPage = function(eventInfo, actions, index) { + var action = actions[index]; + + for(var i = 0; i < action.repeatersToSetPage.length; i++) { + var setPageInfo = action.repeatersToSetPage[i]; + // Grab the first one because repeaters must have only element id, as they cannot be inside repeaters + var id = $ax.getElementIdsFromPath(setPageInfo.path, eventInfo)[0]; + if(_ignoreAction(id)) continue; + + var oldTarget = eventInfo.targetElement; + eventInfo.targetElement = id; + $ax.repeater.setRepeaterToPage(id, setPageInfo.pageType, setPageInfo.pageValue, eventInfo); + eventInfo.targetElement = oldTarget; + _addRefresh(id); + } + + _dispatchAction(eventInfo, actions, index + 1); + }; + + _actionHandlers.setItemsPerRepeaterPage = function(eventInfo, actions, index) { + var action = actions[index]; + + for(var i = 0; i < action.repeatersToSetItemCount.length; i++) { + var setItemCountInfo = action.repeatersToSetItemCount[i]; + // Grab the first one because repeaters must have only element id, as they cannot be inside repeaters + var id = $ax.getElementIdsFromPath(setItemCountInfo.path, eventInfo)[0]; + if(_ignoreAction(id)) continue; + + if(setItemCountInfo.noLimit) $ax.repeater.setNoItemLimit(id); + else $ax.repeater.setItemLimit(id, setItemCountInfo.itemCountValue, eventInfo); + _addRefresh(id); + } + + _dispatchAction(eventInfo, actions, index + 1); + }; + + _actionHandlers.refreshRepeater = function(eventInfo, actions, index) { + // This should not be doing anything right now. We refresh automatically + // var action = actions[index]; + // for(var i = 0; i < action.repeatersToRefresh.length; i++) { + // $ax.repeater.refreshRepeater(action.repeatersToRefresh[i], eventInfo); + // } + + _dispatchAction(eventInfo, actions, index + 1); + }; + + _actionHandlers.scrollToWidget = function(eventInfo, actions, index) { + var action = actions[index]; + var elementIds = $ax.getElementIdsFromPath(action.objectPath, eventInfo); + if(elementIds.length > 0) $ax('#' + elementIds[0]).scroll(action.options); + + _dispatchAction(eventInfo, actions, index + 1); + }; + + + _actionHandlers.enableDisableWidgets = function(eventInfo, actions, index) { + var action = actions[index]; + for(var i = 0; i < action.pathToInfo.length; i++) { + var elementIds = $ax.getElementIdsFromPath(action.pathToInfo[i].objectPath, eventInfo); + var enable = action.pathToInfo[i].enableDisableInfo.enable; + for(var j = 0; j < elementIds.length; j++) $ax('#' + elementIds[j]).enabled(enable); + } + + _dispatchAction(eventInfo, actions, index + 1); + }; + + _actionHandlers.setImage = function(eventInfo, actions, index) { + var oldTarget = eventInfo.targetElement; + var action = actions[index]; + var view = $ax.adaptive.currentViewId; + + eventInfo.image = true; + for(var i = 0; i < action.imagesToSet.length; i++) { + var imgInfo = action.imagesToSet[i]; + imgInfo = view ? imgInfo.adaptive[view] : imgInfo.base; + var elementIds = $ax.getElementIdsFromPath(action.imagesToSet[i].objectPath, eventInfo); + + for(var j = 0; j < elementIds.length; j++) { + var elementId = elementIds[j]; + + eventInfo.targetElement = elementId; + var evaluatedImgs = _evaluateImages(imgInfo, eventInfo); + + var img = evaluatedImgs.normal; + if($ax.style.IsWidgetDisabled(elementId)) { + if(imgInfo.disabled) img = evaluatedImgs.disabled; + } else if($ax.style.IsWidgetSelected(elementId)) { + if(imgInfo.selected) img = evaluatedImgs.selected; + } else if($ax.event.mouseDownObjectId == elementId && imgInfo.mouseDown) img = evaluatedImgs.mouseDown; + else if($ax.event.mouseOverIds.indexOf(elementId) != -1 && imgInfo.mouseOver) { + img = evaluatedImgs.mouseOver; + //Update mouseOverObjectId + var currIndex = $ax.event.mouseOverIds.indexOf($ax.event.mouseOverObjectId); + var imgIndex = $ax.event.mouseOverIds.indexOf(elementId); + if(currIndex < imgIndex) $ax.event.mouseOverObjectId = elementId; + } + + // $('#' + $ax.repeater.applySuffixToElementId(elementId, '_img')).attr('src', img); + $jobj($ax.style.GetImageIdFromShape(elementId)).attr('src', img); + + //Set up overrides + $ax.style.mapElementIdToImageOverrides(elementId, evaluatedImgs); + $ax.style.updateElementIdImageStyle(elementId); + } + } + eventInfo.targetElement = oldTarget; + eventInfo.image = false; + + _dispatchAction(eventInfo, actions, index + 1); + }; + + var _evaluateImages = function(imgInfo, eventInfo) { + var retVal = {}; + for(var state in imgInfo) { + if(!imgInfo.hasOwnProperty(state)) continue; + var img = imgInfo[state].path || $ax.expr.evaluateExpr(imgInfo[state].literal, eventInfo); + if(!img) img = $axure.utils.getTransparentGifPath(); + retVal[state] = img; + } + return retVal; + }; + + $ax.clearRepeaterImageOverrides = function(repeaterId) { + var childIds = $ax.getChildElementIdsForRepeater(repeaterId); + for(var i = childIds; i < childIds.length; i++) $ax.style.deleteElementIdToImageOverride(childIds[i]); + }; + + _actionHandlers.setFocusOnWidget = function(eventInfo, actions, index) { + var action = actions[index]; + if(action.objectPaths.length > 0) { + var elementIds = $ax.getElementIdsFromPath(action.objectPaths[0], eventInfo); + if(elementIds.length > 0) $ax('#' + elementIds[0]).focus(); + } + + _dispatchAction(eventInfo, actions, index + 1); + }; + + _actionHandlers.expandCollapseTree = function(eventInfo, actions, index) { + var action = actions[index]; + for(var i = 0; i < action.pathToInfo.length; i++) { + var pair = action.pathToInfo[i]; + var elementIds = $ax.getElementIdsFromPath(pair.treeNodePath, eventInfo); + for(var j = 0; j < elementIds.length; j++) $ax('#' + elementIds[j]).expanded(pair.expandCollapseInfo.expand); + } + + _dispatchAction(eventInfo, actions, index + 1); + }; + + _actionHandlers.other = function(eventInfo, actions, index) { + var action = actions[index]; + $ax.navigate({ + url: $axure.utils.getOtherPath() + "#other=" + encodeURI(action.description), + target: "popup", + includeVariables: false, + popupOptions: action.popup + }); + + _dispatchAction(eventInfo, actions, index + 1); + }; + + _actionHandlers.raiseEvent = function(eventInfo, actions, index) { + var action = actions[index]; + //look for the nearest element id + + if(eventInfo.srcElement) { + var objId = eventInfo.srcElement; + var obj = $ax.getObjectFromElementId(objId); + var rdoId = $ax.getRdoParentFromElementId(objId); + var rdo = $ax.getObjectFromElementId(rdoId); + + // Check if rdo should be this + var oldIsMasterEvent = eventInfo.isMasterEvent; + if(obj.type == 'referenceDiagramObject' && eventInfo.isMasterEvent) { + rdoId = objId; + rdo = obj; + // It is now an rdo event + eventInfo.isMasterEvent = false; + } + + for(var i = 0; i < action.raisedEvents.length; i++) { + var raisedEvent = action.raisedEvents[i]; + var oldRaisedId = eventInfo.raisedId; + var event = rdo.interactionMap && rdo.interactionMap && rdo.interactionMap.raised[raisedEvent]; + + // raised event will optimize away if it doesn't do anything. Whole interaction map may be optimized away as well. + if(event) { + var oldSrc = eventInfo.srcElement; + eventInfo.srcElement = rdoId; + eventInfo.raisedId = rdoId; + $ax.event.handleEvent(rdoId, eventInfo, event, false, true); + eventInfo.raisedId = oldRaisedId; + eventInfo.srcElement = oldSrc; + } + } + eventInfo.isMasterEvent = oldIsMasterEvent; + } + + _dispatchAction(eventInfo, actions, index + 1); + }; +}); diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/adaptive.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/adaptive.js" new file mode 100644 index 0000000..d47017c --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/adaptive.js" @@ -0,0 +1,378 @@ +$axure.internal(function($ax) { + $ax.adaptive = {}; + + $axure.utils.makeBindable($ax.adaptive, ["viewChanged"]); + + var _auto = true; + var _views; + var _idToView; + var _enabledViews = []; + + var _initialViewToLoad; + + var _handleResize = function() { + if(!_auto) return; + + var $window = $(window); + var height = $window.height(); + var width = $window.width(); + + var toView = _getAdaptiveView(width, height); + var toViewId = toView && toView.id; + + if(toViewId == $ax.adaptive.currentViewId) return; + + _switchView(toViewId); + }; + + var _setAuto = $ax.adaptive.setAuto = function(val) { + if(_auto != val) { + _auto = Boolean(val); + if(val) _handleResize(); + } + }; + + var _setLineImage = function(id, imageUrl) { + var imageQuery = $jobj(id).attr('src', imageUrl); + if(imageUrl.indexOf(".png") > -1) $ax.utils.fixPng(imageQuery[0]); + }; + + var _switchView = $ax.adaptive.switchView = function(viewId) { + // reset all the positioning on the style tags + $axure('*').each(function(diagramObject, elementId) { + var element = document.getElementById(elementId); + if(element && !diagramObject.isContained) { + element.style.top = ""; + element.style.left = ""; + + $ax.dynamicPanelManager.resetFixedPanel(diagramObject, element); + $ax.dynamicPanelManager.resetAdaptivePercentPanel(diagramObject, element); + } + }); + + var previousViewId = $ax.adaptive.currentViewId; + $ax.adaptive.currentViewId = viewId; // we need to set this so the enabled and selected styles will apply properly + if(previousViewId) { + $ax.style.clearAdaptiveStyles(); + $('*').removeClass(previousViewId); + } + + // reset all the images only if we're going back to the default view + if(!viewId) { + _updateInputVisibility('', $axure('*')); + $axure('*').each(function(diagramObject, elementId) { + var images = diagramObject.images; + if(diagramObject.type == 'horizontalLine' || diagramObject.type == 'verticalLine') { + var startImg = images['start~']; + _setLineImage(elementId + "_start", startImg); + var endImg = images['end~']; + _setLineImage(elementId + "_end", endImg); + var lineImg = images['line~']; + _setLineImage(elementId + "_line", lineImg); + } else { + if(!images) return; + if($ax.style.IsWidgetDisabled(elementId)) { + var disabledImage = $ax.style.getElementImageOverride(elementId, 'disabled') || images['disabled~']; + if(disabledImage) $ax.style.applyImage(elementId, disabledImage, 'disabled'); + return; + } + if($ax.style.IsWidgetSelected(elementId)) { + var selectedImage = $ax.style.getElementImageOverride(elementId, 'selected') || images['selected~']; + if(selectedImage) $ax.style.applyImage(elementId, selectedImage, 'selected'); + return; + } + $ax.style.applyImage(elementId, $ax.style.getElementImageOverride(elementId, 'normal') || images['normal~']); + } + + var child = $jobj(elementId).children('.text'); + if(child.length) $ax.style.transformTextWithVerticalAlignment(child[0].id, function() { }); + }); + // we have to reset visibility if we aren't applying a new view + $ax.visibility.resetLimboAndHiddenToDefaults(); + $ax.repeater.refreshAllRepeaters(); + $ax.dynamicPanelManager.updateAllFitPanels(); + $ax.dynamicPanelManager.updatePercentPanelCache($ax('*')); + } else { + $ax.visibility.clearLimboAndHidden(); + _applyView(viewId); + $ax.repeater.refreshAllRepeaters(); + } + + $ax.adaptive.triggerEvent('viewChanged', {}); + $ax.viewChangePageAndMasters(); + }; + + // gets if input is hidden due to sketch + var BORDER_WIDTH = "borderWidth"; + var COLOR_STYLE = "colorStyle"; + var SKETCH_FACTOR = "sketchFactor"; + var _areInputsHidden = function(viewId) { + var chain = _getAdaptiveIdChain(viewId); + var page = $ax.pageData.page; + var adaptiveStyles = page.adaptiveStyles; + // keep track of props that are not sketchy, as you continue to climb up your parents; + var notSketch = []; + for(var i = chain.length - 1; i >= -1; i--) { + var style = i == -1 ? page.style : adaptiveStyles[chain[i]]; + if(notSketch.indexOf(BORDER_WIDTH) == -1 && style.hasOwnProperty(BORDER_WIDTH)) { + if(style[BORDER_WIDTH] != 0) return true; + notSketch.push(BORDER_WIDTH); + } + if(notSketch.indexOf(COLOR_STYLE) == -1 && style.hasOwnProperty(COLOR_STYLE)) { + if(style[COLOR_STYLE] != 'appliedColor') return true; + notSketch.push(COLOR_STYLE); + } + if(notSketch.indexOf(SKETCH_FACTOR) == -1 && style.hasOwnProperty(SKETCH_FACTOR)) { + if(style[SKETCH_FACTOR] != 0) return true; + notSketch.push(SKETCH_FACTOR); + } + } + return false; + }; + + var _updateInputVisibility = function(viewId, query) { + var func = _areInputsHidden(viewId) ? 'addClass' : 'removeClass'; + query.each(function(obj, elementId) { + var input = $jobj($ax.repeater.applySuffixToElementId(elementId, '_input')); + if(input.length == 0) return; + input[func]('form_sketch'); + }); + }; + + // gets the inheritance chain of a particular view. + var _getAdaptiveIdChain = $ax.adaptive.getAdaptiveIdChain = function(viewId) { + if(!viewId) return []; + var view = _idToView[viewId]; + var chain = []; + var current = view; + while(current) { + chain[chain.length] = current.id; + current = _idToView[current.baseViewId]; + } + return chain.reverse(); + }; + + var _getPageStyle = $ax.adaptive.getPageStyle = function() { + var currentViewId = $ax.adaptive.currentViewId; + var adaptiveChain = _getAdaptiveIdChain(currentViewId); + + var currentStyle = $.extend({}, $ax.pageData.page.style); + for(var i = 0; i < adaptiveChain.length; i++) { + var viewId = adaptiveChain[i]; + $.extend(currentStyle, $ax.pageData.page.adaptiveStyles[viewId]); + } + + return currentStyle; + }; + + var _setAdaptiveLineImages = function(elementId, images, viewIdChain) { + for(var i = viewIdChain.length - 1; i >= 0; i--) { + var viewId = viewIdChain[i]; + var startImg = images['start~' + viewId]; + if(startImg) { + _setLineImage(elementId + "_start", startImg); + var endImg = images['end~' + viewId]; + _setLineImage(elementId + "_end", endImg); + var lineImg = images['line~' + viewId]; + _setLineImage(elementId + "_line", lineImg); + break; + } + } + }; + + var _applyView = $ax.adaptive.applyView = function(viewId, query) { + var limboIds = {}; + var hiddenIds = {}; + + var jquery; + if(query) { + jquery = query.jQuery(); + jquery = jquery.add(jquery.find('*')); + var jqueryAnn = $ax.annotation.jQueryAnn(query); + jquery = jquery.add(jqueryAnn); + } else { + jquery = $('*'); + query = $ax('*'); + } + jquery.addClass(viewId); + _updateInputVisibility(viewId, query); + var viewIdChain = _getAdaptiveIdChain(viewId); + // this could be made more efficient by computing it only once per object + query.each(function(diagramObject, elementId) { + _applyAdaptiveViewOnObject(diagramObject, elementId, viewIdChain, viewId, limboIds, hiddenIds); + }); + + $ax.visibility.addLimboAndHiddenIds(limboIds, hiddenIds, query); + $ax.dynamicPanelManager.updateAllFitPanels(); + $ax.dynamicPanelManager.updatePercentPanelCache(query); + }; + + var _applyAdaptiveViewOnObject = function(diagramObject, elementId, viewIdChain, viewId, limboIds, hiddenIds) { + var adaptiveChain = []; + for(var i = 0; i < viewIdChain.length; i++) { + var viewId = viewIdChain[i]; + var viewStyle = diagramObject.adaptiveStyles[viewId]; + if(viewStyle) adaptiveChain[adaptiveChain.length] = viewStyle; + } + + var state = $ax.style.generateState(elementId); + + // set the image + var images = diagramObject.images; + if(images) { + if(diagramObject.type == 'horizontalLine' || diagramObject.type == 'verticalLine') { + _setAdaptiveLineImages(elementId, images, viewIdChain); + } else { + var imgUrl = _matchImage(elementId, images, viewIdChain, state); + if(imgUrl) $ax.style.applyImage(elementId, imgUrl, state); + } + // for(var i = viewIdChain.length - 1; i >= 0; i--) { + // var viewId = viewIdChain[i]; + // var imgUrl = $ax.style.getElementImageOverride(elementId, state) || images[state + '~' + viewId] || images['normal~' + viewId]; + // if(imgUrl) { + // $ax.style.applyImage(elementId, imgUrl, state); + // break; + // } + // } + + // } + } + // addaptive override style (not including default style props) + var adaptiveStyle = $ax.style.computeAllOverrides(elementId, undefined, state, viewId); + + // this style INCLUDES the object's my style + var compoundStyle = $.extend({}, diagramObject.style, adaptiveStyle); + + //$ax.style.setAdaptiveStyle(elementId, adaptiveStyle); + if(!diagramObject.isContained) { + $ax.style.setAdaptiveStyle(elementId, adaptiveStyle); + } + + if(compoundStyle.limbo) limboIds[elementId] = true; + // sigh, javascript. we need the === here because undefined means not overriden + if(compoundStyle.visible === false) hiddenIds[elementId] = true; + }; + + var _matchImage = function(id, images, viewIdChain, state) { + var override = $ax.style.getElementImageOverride(id, state); + if(override) return override; + + if(!images) return undefined; + + // first check all the images for this state + for(var i = viewIdChain.length - 1; i >= 0; i--) { + var viewId = viewIdChain[i]; + var img = images[state + "~" + viewId]; + if(img) return img; + } + // check for the default state style + var defaultStateImage = images[state + '~']; + if(defaultStateImage) return defaultStateImage; + + state = $ax.style.progessState(state); + if(state) return _matchImage(id, images, viewIdChain, state); + + // SHOULD NOT REACH HERE! NORMAL SHOULD ALWAYS CATCH AT THE DEFAULT! + return images['normal~']; // this is the default + }; + + $ax.adaptive.getImageForStateAndView = function(id, state) { + var viewIdChain = _getAdaptiveIdChain($ax.adaptive.currentViewId); + var diagramObject = $ax.getObjectFromElementId(id); + var images = diagramObject.images; + + return _matchImage(id, images, viewIdChain, state); + }; + + + + var _getAdaptiveView = function(winWidth, winHeight) { + var _isViewOneGreaterThanTwo = function(view1, view2) { + return view1.size.width > view2.size.width || (view1.size.width == view2.size.width && view1.size.height > view2.size.height); + }; + + var _isViewOneLessThanTwo = function(view1, view2) { + var width2 = view2.size.width || 1000000; // artificially large number + var height2 = view2.size.height || 1000000; + + var width1 = view1.size.width || 1000000; + var height1 = view1.size.height || 1000000; + + return width1 < width2 || (width1 == width2 && height1 < height2); + }; + + var _isWindowGreaterThanView = function(view, width, height) { + return width >= view.size.width && height >= view.size.height; + }; + + var _isWindowLessThanView = function(view1, width, height) { + var viewWidth = view1.size.width || 1000000; + var viewHeight = view1.size.height || 1000000; + + return width <= viewWidth && height <= viewHeight; + }; + + var greater = undefined; + var less = undefined; + + for(var i = 0; i < _enabledViews.length; i++) { + var view = _enabledViews[i]; + if(view.condition == ">=") { + if(_isWindowGreaterThanView(view, winWidth, winHeight)) { + if(!greater || _isViewOneGreaterThanTwo(view, greater)) greater = view; + } + } else { + if(_isWindowLessThanView(view, winWidth, winHeight)) { + if(!less || _isViewOneLessThanTwo(view, less)) less = view; + } + } + } + return less || greater; + }; + + $ax.messageCenter.addMessageListener(function(message, data) { + if(message == 'setAdaptiveAuto') { + _setAuto(true); + } else if(message == 'switchAdaptiveView') { + if(data == 'default') { + data = null; + } + + //If the adaptive plugin hasn't been initialized yet then + //save the view to load so that it can get set when initialize occurs + if(typeof _idToView != 'undefined') { + _setAuto(false); + _switchView(data); + } else { + _initialViewToLoad = data; + } + } + }); + + + $ax.adaptive.initialize = function() { + _views = $ax.document.adaptiveViews; + _idToView = {}; + + if(_views && _views.length > 0) { + for(var i = 0; i < _views.length; i++) { + var view = _views[i]; + _idToView[view.id] = view; + } + + var enabledViewIds = $ax.document.configuration.enabledViewIds; + for(var i = 0; i < enabledViewIds.length; i++) { + _enabledViews[_enabledViews.length] = _idToView[enabledViewIds[i]]; + } + + $axure.resize(_handleResize); + _handleResize(); + } + + //If there is a viewToLoad (switchAdaptiveView message was received prior to init), set it now + if(typeof _initialViewToLoad != 'undefined') { + _setAuto(false); + _switchView(_initialViewToLoad); + } + }; +}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/annotation.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/annotation.js" new file mode 100644 index 0000000..258f26c --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/annotation.js" @@ -0,0 +1,168 @@ +// ******* Annotation MANAGER ******** // +$axure.internal(function($ax) { + var NOTE_SIZE = 10; + + var _annotationManager = $ax.annotation = {}; + + var _updateLinkLocations = $ax.annotation.updateLinkLocations = function(textId) { + var diagramObject = $ax.getObjectFromElementId(textId); + var rotation = (diagramObject && diagramObject.style.rotation); + var shapeId = $ax.style.GetShapeIdFromText(textId); + + //we have to do this because webkit reports the post-transform position but when you set + //positions it's pre-transform + if(WEBKIT && rotation) { + $('#' + shapeId).css('-webkit-transform', 'scale(1)'); + $('#' + textId).css('-webkit-transform', 'scale(1)'); + } + + $('#' + textId).find('span[id$="_ann"]').each(function(index, value) { + var elementId = value.id.replace('_ann', ''); + + var annPos = $(value).position(); + var left = annPos.left - NOTE_SIZE; + var top = annPos.top; + + $('#' + elementId + 'Note').css('left', left).css('top', top); + }); + + //undo the transform reset + if(WEBKIT && rotation) { + $('#' + shapeId).css('-webkit-transform', ''); + $('#' + textId).css('-webkit-transform', ''); + } + }; + + var dialogs = {}; + $ax.annotation.ToggleWorkflow = function(event, id, width, height) { + + if(dialogs[id]) { + var $dialog = dialogs[id]; + // reset the dialog + dialogs[id] = undefined; + if($dialog.dialog("isOpen")) { + $dialog.dialog("close"); + return; + } + } + + // we'll need to save the scroll position just for stupid IE which will skip otherwise + var win = $(window); + var scrollY = win.scrollTop(); + var scrollX = win.scrollLeft(); + + var bufferH = 10; + var bufferV = 10; + var blnLeft = false; + var blnAbove = false; + var sourceTop = event.pageY - scrollY; + var sourceLeft = event.pageX - scrollX; + + if(sourceLeft > width + bufferH) { + blnLeft = true; + } + if(sourceTop > height + bufferV) { + blnAbove = true; + } + + var top = 0; + var left = 0; + if(blnAbove) top = sourceTop - height - 20; + else top = sourceTop + 10; + if(blnLeft) left = sourceLeft - width - 4; + else left = sourceLeft - 6; + + $ax.globals.MaxZIndex = $ax.globals.MaxZIndex + 1; + if($.browser.msie) height += 50; + + var dObj = $ax.getObjectFromElementId(id); + var ann = dObj.annotation; + var $dialog = $('
    ') + .appendTo('body') + .html($ax.legacy.GetAnnotationHtml(ann)) + .dialog({ + title: dObj.label, + width: width, + height: height, + minHeight: 150, + zIndex: $ax.globals.MaxZIndex, + position: [left, top], + dialogClass: 'dialogFix', + autoOpen: false + }); + $dialog.parent().appendTo('#base'); + $dialog.dialog('open'); + dialogs[id] = $dialog; + + // scroll ... just for IE + window.scrollTo(scrollX, scrollY); + }; + + $ax.annotation.InitializeAnnotations = function(query) { + query.each(function(dObj, elementId) { + if(!dObj.annotation) return; + + if(dObj.type == 'hyperlink') { + var textId = $ax.style.GetTextIdFromLink(elementId); + + var elementIdQuery = $('#' + elementId); + elementIdQuery.after(""); + + if($ax.document.configuration.useLabels) { + var label = $('#' + elementId).attr("data-label"); + if(!label || label == "") label = "?"; + $('#' + textId).append("
    " + label + "
    "); + } else { + $('#' + textId).append("
    "); + } + $('#' + elementId + 'Note').click(function(e) { + $ax.annotation.ToggleWorkflow(e, elementId, 300, 150, false); + return false; + }); + + _updateLinkLocations(textId); + } else { + if($ax.document.configuration.useLabels) { + var label = $('#' + elementId).attr("data-label"); + if(!label || label == "") label = "?"; + $('#' + elementId + "_ann").append("
    " + label + "
    "); + } else { + $('#' + elementId + "_ann").append("
    "); + } + $('#' + elementId + 'Note').click(function(e) { + $ax.annotation.ToggleWorkflow(e, elementId, 300, 150, false); + return false; + }); + } + }); + }; + + $ax.annotation.jQueryAnn = function(query) { + var elementIds = []; + query.each(function(diagramObject, elementId) { + if(diagramObject.annotation) elementIds[elementIds.length] = elementId; + }); + var elementIdSelectors = jQuery.map(elementIds, function(elementId) { return '#' + elementId + '_ann'; }); + var jQuerySelectorText = (elementIdSelectors.length > 0) ? elementIdSelectors.join(', ') : ''; + return $(jQuerySelectorText); + }; + + $(window.document).ready(function() { + $ax.annotation.InitializeAnnotations($ax(function(dObj) { return dObj.annotation; })); + + $ax.messageCenter.addMessageListener(function(message, data) { + //If the annotations are being hidden via the Sitemap toggle button, hide any open dialogs + if(message == 'annotationToggle') { + if(data == false) { + for(var index in dialogs) { + var $dialog = dialogs[index]; + if($dialog.dialog("isOpen")) { + $dialog.dialog("close"); + } + } + } + } + }); + }); + +}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/axQuery.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/axQuery.js" new file mode 100644 index 0000000..94fd5b7 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/axQuery.js" @@ -0,0 +1,295 @@ +$axure = function(query) { + return $axure.query(query); +}; + +// ******* AxQuery and Page metadata ******** // +(function() { + var $ax = function() { + var returnVal = $axure.apply(this, arguments); + var axFn = $ax.fn; + for (var key in axFn) { + returnVal[key] = axFn[key]; + } + + return returnVal; + }; + + $ax.public = $axure; + $ax.fn = {}; + + $axure.internal = function(initFunction) { + //Attach messagecenter to $ax object so that it can be used in viewer.js, etc in internal scope + if(!$ax.messageCenter) $ax.messageCenter = $axure.messageCenter; + + return initFunction($ax); + }; + + var _lastFiredResize = 0; + var _resizeFunctions = []; + var _lastTimeout; + var _fireResize = function() { + if (_lastTimeout) window.clearTimeout(_lastTimeout); + _lastTimeout = undefined; + _lastFiredResize = new Date().getTime(); + for(var i = 0; i < _resizeFunctions.length; i++) _resizeFunctions[i](); + }; + + $axure.resize = function(fn) { + if(fn) _resizeFunctions[_resizeFunctions.length] = fn; + else $(window).resize(); + }; + + $(window).resize(function() { + var THRESHOLD = 200; + var now = new Date().getTime(); + if(now - _lastFiredResize > THRESHOLD) { + _fireResize(); + } else if(!_lastTimeout) { + _lastTimeout = window.setTimeout(_fireResize, THRESHOLD); + } + }); + + window.$obj = function(id) { + return $ax.getObjectFromElementId(id); + }; + + window.$id = function(obj) { + return obj.scriptIds[0]; + }; + + window.$jobj = function(id) { + return $('#' + id); + }; + + $ax.INPUT = function(id) { return id + "_input"; }; + $ax.IsButtonShape = function(type) { return type == 'buttonShape'; }; + $ax.IsTreeNodeObject = function(type) { return type == 'treeNodeObject'; }; + $ax.IsSelectionButton = function(type) { return type == 'checkbox' || type == 'radioButton'; }; + + var _fn = {}; + $axure.fn = _fn; + $axure.fn.jQuery = function() { + var elementIds = this.getElementIds(); + var elementIdSelectors = jQuery.map(elementIds, function(elementId) { return '#' + elementId; }); + var jQuerySelectorText = (elementIds.length > 0) ? elementIdSelectors.join(', ') : ''; + return $(jQuerySelectorText); + }; + $axure.fn.$ = $axure.fn.jQuery; + + var _query = function(query, queryArg) { + var returnVal = {}; + var _axQueryObject = returnVal.query = { }; + _axQueryObject.filterFunctions = []; + + if (query == '*') { + _axQueryObject.filterFunctions[0] = function() { return true; }; + } else if (typeof(query) === 'function') { + _axQueryObject.filterFunctions[0] = query; + } else { + var firstString = $.trim(query.toString()); + if (firstString.charAt(0) == '@') { + _axQueryObject.filterFunctions[0] = function(diagramObject) { + return diagramObject.label == firstString.substring(1); + }; + } else if (firstString.charAt(0) == '#') { + _axQueryObject.elementId = firstString.substring(1); + } else { + if (firstString == 'label') { + _axQueryObject.filterFunctions[0] = function(diagramObject) { + return queryArg instanceof Array && queryArg.indexOf(diagramObject.label) > 0 || + queryArg instanceof RegExp && queryArg.test(diagramObject.label) || + diagramObject.label == queryArg; + }; + } else if(firstString == 'elementId') { + _axQueryObject.filterFunctions[0] = function(diagramObject, elementId) { + return queryArg instanceof Array && queryArg.indexOf(elementId) > 0 || + elementId == queryArg; + }; + } + } + } + + var axureFn = $axure.fn; + for (var key in axureFn) { + returnVal[key] = axureFn[key]; + } + return returnVal; + }; + $axure.query = _query; + + var _getFilterFnFromQuery = function(query) { + var filter = function(diagramObject, elementId) { + // Non diagram objects are allowed to be queryed, such as text inputs. + if(diagramObject && diagramObject.type != 'referenceDiagramObject' && $jobj(elementId).length == 0) return false; + var retVal = true; + for(var i = 0; i < query.filterFunctions.length && retVal; i++) { + retVal = query.filterFunctions[i](diagramObject, elementId); + } + return retVal; + }; + return filter; + }; + + $ax.public.fn.filter = function(query, queryArg) { + var returnVal = _query(query, queryArg); + + if(this.query.elementId) returnVal.query.elementId = this.query.elementId; + + //If there is already a function, offset by 1 when copying other functions over. + var offset = returnVal.query.filterFunctions[0] ? 1 : 0; + + //Copy all functions over to new array. + for(var i = 0; i < this.query.filterFunctions.length; i++) returnVal.query.filterFunctions[i+offset] = this.query.filterFunctions[i]; + + //Functions are in reverse order now + returnVal.query.filterFunctions.reverse(); + + return returnVal; + }; + + $ax.public.fn.each = function(fn) { + var filter = _getFilterFnFromQuery(this.query); + var elementIds = this.query.elementId ? [this.query.elementId] : $ax.getAllElementIds(); + for (var i = 0; i < elementIds.length; i++) { + var elementId = elementIds[i]; + var diagramObject = $ax.getObjectFromElementId(elementId); + if (filter(diagramObject, elementId)) { + fn.apply(diagramObject, [diagramObject, elementId]); + } + } + }; + + $ax.public.fn.getElementIds = function() { + var elementIds = []; + this.each(function(dObj, elementId) { elementIds[elementIds.length] = elementId; }); + return elementIds; + }; + + // Deep means to keep getting parents parent until at the root parent. Parent is then an array instead of an id. + $ax.public.fn.getParents = function(deep) { + var elementIds = this.getElementIds(); + var parentIds = []; + + var getParent = function(elementId) { + var parent = undefined; + var scriptId = $ax.repeater.getScriptIdFromElementId(elementId); + var itemNum = $ax.repeater.getItemIdFromElementId(elementId); + var parentRepeater = $ax.getParentRepeaterFromScriptId(scriptId); + // Repeater references self, constantly if it is treated as its own parent in this case infinite recursion occurs. + if(parentRepeater == scriptId) parentRepeater = undefined; + + if(parentRepeater) { + parentRepeater = $ax.repeater.createElementId(parentRepeater, itemNum); + parent = parentRepeater; + } + + var masterPath = $ax.getPathFromScriptId($ax.repeater.getScriptIdFromElementId(elementId)); + masterPath.pop(); + if(masterPath.length > 0) { + var masterId = $ax.getElementIdFromPath(masterPath, {itemNum: itemNum}); + var masterRepeater = $ax.getParentRepeaterFromScriptId($ax.repeater.getScriptIdFromElementId(masterId)); + if(!parentRepeater || masterRepeater) parent = masterId; + } + + var parentDynamicPanel = $obj(elementId).parentDynamicPanel; + if(parentDynamicPanel) { + // Make sure the parent if not parentRepeater, or dynamic panel is also in that repeater + // If there is a parent master, the dynamic panel must be in it, otherwise parentDynamicPanel would be undefined. + var panelPath = masterPath; + panelPath[panelPath.length] = parentDynamicPanel; + var panelId = $ax.getElementIdFromPath(panelPath, {itemNum: itemNum}); + var panelRepeater = $ax.getParentRepeaterFromScriptId($ax.repeater.getScriptIdFromElementId(panelId)); + if(!parentRepeater || panelRepeater) { + parent = $ax.visibility.GetPanelState(panelId); + } + } + + return parent; + }; + + for(var i = 0; i < elementIds.length; i++) { + var parent = getParent(elementIds[i]); + if(deep) { + var parents = []; + while(parent) { + parents[parents.length] = parent; + // If id is not a valid object, you are either repeater item or dynamic panel state. + // Either way, get parents id in that case. + if(!$obj(parent)) parent = $jobj(parent).parent().attr('id'); + parent = getParent(parent); + } + parent = parents; + } + parentIds[parentIds.length] = parent; + } + return parentIds; + }; + + // Get the path to the child, where non leaf nodes can be masters, dynamic panels, and repeaters. + $ax.public.fn.getChildren = function(deep) { + var elementIds = this.getElementIds(); + var children = []; + + var getChildren = function(elementId) { + var obj = $obj(elementId); + if(!obj) return undefined; + + var isRepeater = obj.type == 'repeater'; + var isDynamicPanel = obj.type == 'dynamicPanel'; + var isMaster = obj.type == 'master'; + + var isMenu = obj.type == 'menuObject'; + var isTreeNode = obj.type == 'treeNodeObject'; + var isTable = obj.type == 'table'; + + if(isRepeater || isDynamicPanel || isMaster || isMenu || isTreeNode || isTable) { + // Find parent that children should be pulled from. Default is just the elementId query (used by table and master) + var parent = $jobj(elementId); + if(isRepeater) { + parent = $(); + var itemIds = $ax.getItemIdsForRepeater(elementId); + for(var itemIndex = 0; itemIndex < itemIds.length; itemIndex++) parent = parent.add($jobj($ax.repeater.createElementId(elementId, itemIds[itemIndex]))); + } else if(isDynamicPanel) { + // Really only need to do active state probably... + parent = $jobj(elementId).children().children(); + } else if(isTreeNode) parent = $jobj($ax.repeater.applySuffixToElementId(elementId, '_children')); + + // Menu doesn't want all children, only tables and menus, so it must be handled specially + var children = isMenu ? parent.children('.ax_table').add(parent.children('.ax_menu')) : parent.children(); + + // For tree nodes you want the the button shape contained by the elementQuery too + if(isTreeNode) { + var treeNodeChildren = $jobj(elementId).children(); + for(var treeNodeIndex = 0; treeNodeIndex < treeNodeChildren.length; treeNodeIndex++) { + var treeNodeChild = $(treeNodeChildren[treeNodeIndex]); + var childObj = $obj(treeNodeChild.attr('id')); + if(childObj && childObj.type == 'buttonShape') children = children.add(treeNodeChild); + } + } + + + var childrenIds = []; + for(var childIndex = 0; childIndex < children.length; childIndex++) childrenIds.push($(children[childIndex]).attr('id')); + + if(deep) { + var childObjs = []; + for(var i = 0; i < childrenIds.length; i++) { + var childId = childrenIds[i]; + childObjs[i] = { id: childId, children: getChildren(childId) }; + } + childrenIds = childObjs; + } + + return childrenIds; + } + + return undefined; + }; + + for(var i = 0; i < elementIds.length; i++) { + children[children.length] = { id : elementIds[i], children : getChildren(elementIds[i])}; + } + return children; + }; + +})(); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/axQuery.std.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/axQuery.std.js" new file mode 100644 index 0000000..d032ac3 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/axQuery.std.js" @@ -0,0 +1,737 @@ +// ******* AxQuery Plugins ******** // + +$axure.internal(function($ax) { + var DYNAMIC_PANEL_TYPE = 'dynamicPanel'; + var TEXT_BOX_TYPE = 'textBox'; + var TEXT_AREA_TYPE = 'textArea'; + var LIST_BOX_TYPE = 'listBox'; + var COMBO_BOX_TYPE = 'comboBox'; + var CHECK_BOX_TYPE = 'checkbox'; + var RADIO_BUTTON_TYPE = 'radioButton'; + var IMAGE_MAP_REGION_TYPE = 'imageMapRegion'; + var IMAGE_BOX_TYPE = 'imageBox'; + var BUTTON_SHAPE_TYPE = 'buttonShape'; + var FLOW_SHAPE_TYPE = 'flowShape'; + var TREE_NODE_OBJECT_TYPE = 'treeNodeObject'; + var TABLE_CELL_TYPE = 'tableCell'; + + var _addJQueryFunction = function(name) { + $ax.public.fn[name] = function() { + var val = $.fn[name].apply(this.jQuery(), arguments); + return arguments[0] ? this : val; + }; + }; + var _jQueryFunctionsToAdd = ['text', 'val', 'css']; + for(var i = 0; i < _jQueryFunctionsToAdd.length; i++) _addJQueryFunction(_jQueryFunctionsToAdd[i]); + + + // var _addJQueryEventFunction = function(name) { + // $ax.public.fn[name] = function() { + // $.fn[name].apply(this.jQuery(), arguments); + // return this; + // }; + // }; + + // var _addJQueryEventFunction = function(name) { + // $ax.public.fn[name] = (function(nn) { + // return function() { + // $.fn[nn].apply(this.jQuery(), arguments); + // return this; + // }; + // })(name); + // }; + + var _addJQueryEventFunction = function(name) { + $ax.public.fn[name] = function() { + //With Martin - No idea why this is necessary. We tried encapsulating the function thinking it was related to closure (above), + //but that didn't fix the problem. If we don't add this Repeaters will give "Uncaught TypeError: Object # has no method 'apply'" + //here (but Indeterminately, often on larger/slower Repeaters) because it is Undefined. However it seems the catch is never hit + //if we surround the statement with the try/catch. Perhaps the try/catch block creates a scope or closure. + try { + $.fn[name].apply(this.jQuery(), arguments); + } catch(e) { + console.log("Couldn't find the event: " + name); + } + + return this; + }; + }; + var _jQueryEventFunctionsToAdd = ['click', 'mouseenter', 'mouseleave', 'bind']; + for(var i = 0; i < _jQueryEventFunctionsToAdd.length; i++) _addJQueryEventFunction(_jQueryEventFunctionsToAdd[i]); + + + $ax.public.fn.openLink = function(url, includeVariables) { + this.jQuery().each(function() { + if(!($(this).is('iframe'))) { + return; + } + + var objIframe = $(this).get(0); + + $ax.navigate({ + url: url, + target: "frame", + includeVariables: includeVariables, + frame: objIframe + }); + }); + + return this; + }; + + $ax.public.fn.SetPanelState = function(stateNumber, options, showWhenSet) { + var easingIn = 'none'; + var easingOut = 'none'; + var directionIn = ''; + var directionOut = ''; + var durationIn = 500; + var durationOut = 500; + + if(options && options.animateIn) { + easingIn = 'fade'; + directionIn = _getEasingDirection(options.animateIn); + if(directionIn != '') easingIn = 'swing'; + if(options.animateIn.duration) { + durationIn = options.animateIn.duration; + } + } + + if(options && options.animateOut) { + easingOut = 'fade'; + directionOut = _getEasingDirection(options.animateOut); + if(directionOut != '') easingOut = 'swing'; + if(options.animateOut.duration) { + durationOut = options.animateOut.duration; + } + } + + var elementIds = this.getElementIds(); + + for(var index = 0; index < elementIds.length; index++) { + var elementId = elementIds[index]; + if($ax.getTypeFromElementId(elementId) == DYNAMIC_PANEL_TYPE) { + var stateName = $ax.visibility.GetPanelStateId(elementId, Number(stateNumber) - 1); + var wasVisible = $ax.visibility.IsIdVisible(elementId); + // If compressing because you are fit to content and the change of state may change size, must be before the change. + if(options.compress && $ax.dynamicPanelManager.isIdFitToContent(elementId) && wasVisible) { + $ax.dynamicPanelManager.compressDelta(elementId, $ax.visibility.GetPanelState(elementId), stateName, options.vertical, options.compressEasing, options.compressDuration); + } + $ax.visibility.SetPanelState(elementId, stateName, easingOut, directionOut, durationOut, easingIn, directionIn, durationIn, showWhenSet); + // If compressing because of a show, must be after state is set. + if(options.compress && !wasVisible && showWhenSet) { + $ax.dynamicPanelManager.compressToggle(elementId, options.vertical, true, options.compressEasing, options.compressDuration); + } + } + } + + return this; + }; + + $ax.public.fn.show = function(options, eventInfo) { + var easing = options && options.easing || 'none'; + var duration = options && options.duration || 0; + + var direction = _getEasingDirection(options); + if(direction != '') easing = 'swing'; + + var elementIds = this.getElementIds(); + + for(var index = 0; index < elementIds.length; index++) { + var elementId = elementIds[index]; + + var lightboxId = $ax.repeater.applySuffixToElementId(elementId, '_lightbox'); + var lightbox = $jobj(lightboxId); + if(options && options.showType == 'lightbox') { + $ax.flyoutManager.unregisterPanel(elementId, true); + // Add lightbox if there isn't one + if(lightbox.length == 0) { + lightbox = $('
    '); + lightbox.attr('id', lightboxId); + var color = 'rgb(' + options.lightbox.r + ',' + options.lightbox.g + ',' + options.lightbox.b + ')'; + lightbox.css({ + position: 'fixed', + left: '0px', + top: '0px', + width: '10000px', + height: '10000px', + 'background-color': color, + opacity: options.lightbox.a / 255 + }); + + var parents = $ax('#' + elementId).getParents(true)[0]; + var fixedParentPanelId = undefined; + for(var j = 0; j < parents.length; j++) { + var parentId = parents[j].split('_')[0]; + var parentObj = $obj(parentId); + if(parentObj.type == 'dynamicPanel' && $jobj(parentId).css('z-index') != 'auto') { + fixedParentPanelId = parentId; + break; + } + } + + if(!fixedParentPanelId) $('#base').append(lightbox); + else $jobj(fixedParentPanelId).append(lightbox); + + var wasVisible = $ax.visibility.IsIdVisible(elementId); + + (function(lightbox, query) { + $ax.event.attachClick(lightbox, function() { + $ax.action.addAnimation(elementId, function() { + if(!wasVisible) query.hide(); + else $ax.action.fireAnimationFromQueue(elementId); + lightbox.remove(); + }); + }); + })(lightbox, this); + } + $ax.legacy.BringToFront(lightboxId, true); + $ax.legacy.BringToFront(elementId, true); + } else if(options && options.showType == 'flyout') { + // Remove lightbox if there is one + lightbox.remove(); + + var src = eventInfo.thiswidget; + var target = $ax.getWidgetInfo(elementId); + var rects = {}; + if(src.valid) rects.src = $ax.geometry.genRect(src); + if(target.valid) rects.target = $ax.geometry.genRect(target); + $ax.flyoutManager.registerFlyout(rects, elementId, eventInfo.srcElement); + $ax.style.AddRolloverOverride(elementId); + $ax.legacy.BringToFront(elementId); + } else { + // Remove lightbox, unregister flyout + lightbox.remove(); + $ax.flyoutManager.unregisterPanel(elementId, true); + + var wasShown = $ax.visibility.IsIdVisible(elementId); + _setVisibility(elementId, true, easing, direction, duration); + if(options && options.showType == 'front') $ax.legacy.BringToFront(elementId); + else if(options && options.showType == 'compress' && !wasShown) $ax.dynamicPanelManager.compressToggle(elementId, options.vertical, true, options.compressEasing, options.compressDuration); + + continue; + } + _setVisibility(elementId, true, easing, direction, duration); + } + + return this; + }; + + var _getEasingDirection = function(options) { + if(options && options.easing) { + if(options.easing == 'slideLeft') { + return 'left'; + } else if(options.easing == 'slideRight') { + return 'right'; + } else if(options.easing == 'slideUp') { + return 'up'; + } else if(options.easing == 'slideDown') { + return 'down'; + } + } + return ''; + }; + + $ax.public.fn.hide = function(options) { + var easing = options && options.easing || 'none'; + var duration = options && options.duration || 0; + + var direction = _getEasingDirection(options); + if(direction != '') easing = 'swing'; + + var elementIds = this.getElementIds(); + + for(var index = 0; index < elementIds.length; index++) { + var elementId = elementIds[index]; + var wasShown = $ax.visibility.IsIdVisible(elementId); + _setVisibility(elementId, false, easing, direction, duration); + if(options && options.showType == 'compress' && wasShown) $ax.dynamicPanelManager.compressToggle(elementId, options.vertical, false, options.compressEasing, options.compressDuration); + } + + return this; + }; + + $ax.public.fn.toggleVisibility = function(options) { + var easing = options && options.easing || 'none'; + var duration = options && options.duration || 0; + + var direction = _getEasingDirection(options); + if(direction != '') easing = 'swing'; + + var elementIds = this.getElementIds(); + for(var index = 0; index < elementIds.length; index++) { + var elementId = elementIds[index]; + var show = !$ax.visibility.IsIdVisible(elementId); + _setVisibility(elementId, show, easing, direction, duration); + if(options && options.showType == 'compress') $ax.dynamicPanelManager.compressToggle(elementId, options.vertical, show, options.compressEasing, options.compressDuration); + } + + return this; + }; + + var _setVisibility = function(elementId, value, easing, direction, duration) { + $ax.visibility.SetWidgetVisibility(elementId, { + value: value, + easing: easing, + direction: direction, + duration: duration, + fire: true, + onComplete: function() { $ax.dynamicPanelManager.fitParentPanel(elementId); } + }); + }; + + $ax.public.fn.moveTo = function(x, y, options) { + var easing = 'none'; + var duration = 500; + + if(options && options.easing) { + easing = options.easing; + + if(options.duration) { + duration = options.duration; + } + } + + var elementIds = this.getElementIds(); + + for(var index = 0; index < elementIds.length; index++) { + var elementId = elementIds[index]; + $ax.move.MoveWidget(elementId, x, y, easing, duration, true, function() { $ax.dynamicPanelManager.fitParentPanel(elementId); }, true); + } + + return this; + }; + + $ax.public.fn.moveBy = function(x, y, options) { + var elementIds = this.getElementIds(); + + if(x == 0 && y == 0) { + for(var i = 0; i < elementIds.length; i++) { + var id = this.getElementIds()[i]; + $ax.event.raiseSyntheticEvent(id, "onMove"); + $ax.action.fireAnimationFromQueue(id); + } + return this; + } + var easing = 'none'; + var duration = 500; + + if(options && options.easing) { + easing = options.easing; + + if(options.duration) { + duration = options.duration; + } + } + + for(var index = 0; index < elementIds.length; index++) { + var elementId = elementIds[index]; + $ax.move.MoveWidget(elementId, x, y, easing, duration, false, function() { $ax.dynamicPanelManager.fitParentPanel(elementId); }, true); + } + + return this; + }; + + $ax.public.fn.bringToFront = function() { + var elementIds = this.getElementIds(); + + for(var index = 0; index < elementIds.length; index++) { + $ax.legacy.BringToFront(elementIds[index]); + } + + return this; + }; + + $ax.public.fn.sendToBack = function() { + var elementIds = this.getElementIds(); + + for(var index = 0; index < elementIds.length; index++) { + $ax.legacy.SendToBack(elementIds[index]); + } + + return this; + }; + + $ax.public.fn.text = function() { + if(arguments[0] == undefined) { + var firstId = this.getElementIds()[0]; + + if(!firstId) { + return undefined; + } + + return getWidgetText(firstId); + } else { + var elementIds = this.getElementIds(); + + for(var index = 0; index < elementIds.length; index++) { + var currentItem = elementIds[index]; + + var widgetType = $ax.getTypeFromElementId(currentItem); + + if(widgetType == TEXT_BOX_TYPE || widgetType == TEXT_AREA_TYPE) { //For non rtf + SetWidgetFormText(currentItem, arguments[0]); + } else { + var idRtf = '#' + currentItem; + if($(idRtf).length == 0) idRtf = '#u' + (Number(currentItem.substring(1)) + 1); + + if($(idRtf).length != 0) { + //If the richtext div already has some text in it, + //preserve only the first style and get rid of the rest + //If no pre-existing p-span tags, don't do anything + if($(idRtf).find('p').find('span').length > 0) { + $(idRtf).find('p:not(:first)').remove(); + $(idRtf).find('p').find('span:not(:first)').remove(); + + //Replace new-lines with NEWLINE token, then html encode the string, + //finally replace NEWLINE token with linebreak + var textWithLineBreaks = arguments[0].replace(/\n/g, '--NEWLINE--'); + var textHtml = $('
    ').text(textWithLineBreaks).html(); + $(idRtf).find('span').html(textHtml.replace(/--NEWLINE--/g, '
    ')); + } + } + } + } + + return this; + } + }; + + var getWidgetText = function(id) { + var idQuery = $('#' + id); + + if(idQuery.is('div')) { + var $rtfObj = idQuery.hasClass('text') ? idQuery : idQuery.find('.text'); + if($rtfObj.length == 0) return undefined; + + var textOut = ''; + $rtfObj.children('p').each(function(index) { + if(index != 0) textOut += '\n'; + + //Replace line breaks (set in SetWidgetRichText) with newlines and nbsp's with regular spaces. + var htmlContent = $(this).html().replace(/]*>/ig, '\n').replace(/ /ig, ' '); + textOut += $(htmlContent).text(); + }); + + return textOut; + } else if(idQuery.is('input') && + (idQuery.attr('type') == 'checkbox' || idQuery.attr('type') == 'radio')) { + return idQuery.parent().find('label').find('.text').text(); + } else { + return idQuery.val(); + } + }; + + $ax.public.fn.setRichTextHtml = function() { + if(arguments[0] == undefined) { + //No getter function, so just return undefined + return undefined; + } else { + var elementIds = this.getElementIds(); + + for(var index = 0; index < elementIds.length; index++) { + var currentItem = elementIds[index]; + + var widgetType = $ax.getTypeFromElementId(currentItem); + if(widgetType == TEXT_BOX_TYPE || widgetType == TEXT_AREA_TYPE) { //Do nothing for non rtf + continue; + } else { + //TODO -- [mas] fix this! + var idRtf = '#' + currentItem; + if($(idRtf).length == 0) idRtf = '#u' + (parseInt(currentItem.substring(1)) + 1); + if($(idRtf).length != 0) SetWidgetRichText(idRtf, arguments[0]); + } + } + + return this; + } + }; + + $ax.public.fn.value = function() { + if(arguments[0] == undefined) { + var firstId = this.getElementIds()[0]; + + if(!firstId) { + return undefined; + } + + var widgetType = $ax.getTypeFromElementId(firstId); + + if(widgetType == COMBO_BOX_TYPE || widgetType == LIST_BOX_TYPE) { //for select lists and drop lists + return $('#' + firstId + ' :selected').text(); + } else if(widgetType == CHECK_BOX_TYPE || widgetType == RADIO_BUTTON_TYPE) { //for radio/checkboxes + return $('#' + firstId + '_input').is(':checked'); + } else if(widgetType == TEXT_BOX_TYPE) { //for text box + return $('#' + firstId + '_input').val(); + } else { //for text based form elements + return this.jQuery().first().val(); + } + } else { + var elementIds = this.getElementIds(); + + for(var index = 0; index < elementIds.length; index++) { + var widgetType = $ax.getTypeFromElementId(elementIds[index]); + + var elementIdQuery = $('#' + elementIds[index]); + + if(widgetType == CHECK_BOX_TYPE || widgetType == RADIO_BUTTON_TYPE) { //for radio/checkboxes + if(arguments[0] == true) { + elementIdQuery.attr('checked', true); + } else if(arguments[0] == false) { + elementIdQuery.removeAttr('checked'); + } + } else { //For select lists, drop lists, text based form elements + elementIdQuery.val(arguments[0]); + } + } + + return this; + } + }; + + $ax.public.fn.checked = function() { + if(arguments[0] == undefined) { + return this.selected(); + } else { + this.selected(arguments[0]); + return this; + } + }; + + var _getRelativeLeft = function(node, parent) { + var currentNode = node; + var left = 0; + while(currentNode != null && currentNode.tagName != "BODY") { + left += currentNode.offsetLeft; + currentNode = currentNode.offsetParent; + if(currentNode == parent) break; + } + return left; + }; + + var _getRelativeTop = function(node, parent) { + var currentNode = node; + var top = 0; + while(currentNode != null && currentNode.tagName != "BODY") { + top += currentNode.offsetTop; + currentNode = currentNode.offsetParent; + if(currentNode == parent) break; + } + return top; + }; + + var _scrollHelper = function(id, scrollX, scrollY, easing, duration) { + var target = window.document.getElementById(id); + var scrollable = $ax.legacy.GetScrollable(target); + var targetLeft = _getRelativeLeft(target, scrollable); + var targetTop = _getRelativeTop(target, scrollable); + if(!scrollX) targetLeft = scrollable.scrollLeft; + if(!scrollY) targetTop = scrollable.scrollTop; + + var $scrollable = $(scrollable); + if($scrollable.is('body')) { + $scrollable = $('html,body'); + } + + if(easing == 'none') { + if(scrollY) $scrollable.scrollTop(targetTop); + if(scrollX) $scrollable.scrollLeft(targetLeft); + } else { + if(!scrollX) { + $scrollable.animate({ scrollTop: targetTop }, duration, easing); + } else if(!scrollY) { + $scrollable.animate({ scrollLeft: targetLeft }, duration, easing); + } else { + $scrollable.animate({ scrollTop: targetTop, scrollLeft: targetLeft }, duration, easing); + } + } + }; + + $ax.public.fn.scroll = function(scrollOption) { + var easing = 'none'; + var duration = 500; + + if(scrollOption && scrollOption.easing) { + easing = scrollOption.easing; + + if(scrollOption.duration) { + duration = scrollOption.duration; + } + } + + var scrollX = true; + var scrollY = true; + + if(scrollOption.direction == 'vertical') { + scrollX = false; + } else if(scrollOption.direction == 'horizontal') { + scrollY = false; + } + + var elementIds = this.getElementIds(); + for(var index = 0; index < elementIds.length; index++) { + // if($ax.getTypeFromElementId(elementIds[index]) == IMAGE_MAP_REGION_TYPE) { + _scrollHelper(elementIds[index], scrollX, scrollY, easing, duration); + // } + } + + return this; + }; + + $ax.public.fn.enabled = function() { + if(arguments[0] == undefined) { + var firstId = this.getElementIds()[0]; + if(!firstId) return undefined; + + var widgetType = $ax.getTypeFromElementId(firstId); + if(widgetType == IMAGE_BOX_TYPE || widgetType == BUTTON_SHAPE_TYPE || widgetType == FLOW_SHAPE_TYPE) return !$ax.style.IsWidgetDisabled(firstId); + else return this.jQuery().first().not(':disabled').length > 0; + } else { + var elementIds = this.getElementIds(); + + for(var index = 0; index < elementIds.length; index++) { + var elementId = elementIds[index]; + var widgetType = $ax.getTypeFromElementId(elementId); + + var enabled = arguments[0]; + if(widgetType == IMAGE_BOX_TYPE || widgetType == BUTTON_SHAPE_TYPE || widgetType == FLOW_SHAPE_TYPE) $ax.style.SetWidgetEnabled(elementId, enabled); + if(widgetType == DYNAMIC_PANEL_TYPE) { + $ax.style.SetWidgetEnabled(elementId, enabled); + var children = this.getChildren()[index].children; + for(var i = 0; i < children.length; i++) { + var childId = children[i]; + // Need to check this because of radio button and checkbox + var end = '_container'; + if(childId.length > end.length && childId.substring(childId.length - end.length) == end) { + childId = childId.substring(0, childId.length - end.length); + } + + $axure('#' + childId).enabled(enabled); + } + } + var jobj = $jobj(elementId); + var input = $jobj($ax.INPUT(elementId)); + if(input.length) jobj = input; + + if(enabled) jobj.removeAttr('disabled'); + else jobj.attr('disabled', 'disabled'); + } + + return this; + } + }; + + $ax.public.fn.visible = function() { + var ids = this.getElementIds(); + for(var index = 0; index < ids.length; index++) $ax.visibility.SetIdVisible(ids[index], arguments[0]); + return this; + }; + + $ax.public.fn.selected = function() { + if(arguments[0] == undefined) { + var firstId = this.getElementIds()[0]; + if(!firstId) return undefined; + + var widgetType = $ax.getTypeFromElementId(firstId); + if(widgetType == TREE_NODE_OBJECT_TYPE) { + var treeNodeButtonShapeId = ''; + var allElementIds = $ax.getAllElementIds(); + for(var i = 0; i < allElementIds.length; i++) { + var elementId = allElementIds[i]; + var currObj = $ax.getObjectFromElementId(elementId); + + if(currObj.type == BUTTON_SHAPE_TYPE && currObj.parent && currObj.parent.scriptIds && currObj.parent.scriptIds[0] == firstId) { + treeNodeButtonShapeId = elementId; + break; + } + } + + if(treeNodeButtonShapeId == '') return undefined; + return $ax.style.IsWidgetSelected(treeNodeButtonShapeId); + } else if(widgetType == IMAGE_BOX_TYPE || widgetType == BUTTON_SHAPE_TYPE || widgetType == FLOW_SHAPE_TYPE || widgetType == TABLE_CELL_TYPE | widgetType == DYNAMIC_PANEL_TYPE) { + return $ax.style.IsWidgetSelected(firstId); + } else if(widgetType == CHECK_BOX_TYPE || widgetType == RADIO_BUTTON_TYPE) { + return $jobj($ax.INPUT(firstId)).prop('checked'); + } + return this; + } + var elementIds = this.getElementIds(); + var func = typeof (arguments[0]) === 'function' ? arguments[0] : null; + var enabled = arguments[0]; // If this is a function it will be overridden with the return value; + + for(var index = 0; index < elementIds.length; index++) { + var elementId = elementIds[index]; + if(func) { + enabled = func($axure('#' + elementId)); + } + + var widgetType = $ax.getTypeFromElementId(elementId); + + if(widgetType == TREE_NODE_OBJECT_TYPE) { //for tree node + var treeRootId = $('#' + elementIds[index]).parents('.treeroot').attr('id'); + + var treeNodeButtonShapeId = ''; + var childElementIds = $jobj(elementId).children(); + for(var i = 0; i < childElementIds.length; i++) { + var elementId = childElementIds[i].id; + var currObj = $ax.getObjectFromElementId(elementId); + + if(currObj && currObj.type == BUTTON_SHAPE_TYPE && currObj.parent && + currObj.parent.scriptIds && currObj.parent.scriptIds[0] == elementIds[index]) { + treeNodeButtonShapeId = elementId; + break; + } + } + + if(treeNodeButtonShapeId == '') continue; + + $ax.tree.SelectTreeNode(elementId, enabled); + } else if(widgetType == IMAGE_BOX_TYPE || widgetType == BUTTON_SHAPE_TYPE || widgetType == FLOW_SHAPE_TYPE || widgetType == TABLE_CELL_TYPE || widgetType == DYNAMIC_PANEL_TYPE) { + $ax.style.SetWidgetSelected(elementIds[index], enabled); + } else if(widgetType == CHECK_BOX_TYPE || widgetType == RADIO_BUTTON_TYPE) { + var query = $jobj($ax.INPUT(elementId)); + var curr = query.prop('checked'); + if(curr != enabled) { + query.prop('checked', enabled); + $ax.event.raiseSyntheticEvent(elementId, 'onCheckedChange'); + } + } + } + return this; + }; + + $ax.public.fn.focus = function() { + var firstId = this.getElementIds()[0]; + var focusableId = $ax.event.getFocusableWidgetOrChildId(firstId); + $('#' + focusableId).focus(); + + return this; + }; + + $ax.public.fn.expanded = function() { + if(arguments[0] == undefined) { + var firstId = this.getElementIds()[0]; + return firstId && $ax.getTypeFromElementId(firstId) !== TREE_NODE_OBJECT_TYPE && $ax.visibility.IsIdVisible(firstId + '_children'); + } else { + var elementIds = this.getElementIds(); + + for(var index = 0; index < elementIds.length; index++) { + if($ax.getTypeFromElementId(elementIds[index]) == TREE_NODE_OBJECT_TYPE) { + var treeNodeId = elementIds[index]; + var childContainerId = elementIds[index] + '_children'; + + var plusMinusId = 'u' + (parseInt(elementIds[index].substring(1)) + 1); + if($('#' + childContainerId).length == 0 || !$jobj(plusMinusId).hasClass('ax_image')) + plusMinusId = ''; + + if(arguments[0] == true) { + $ax.tree.ExpandNode(treeNodeId, childContainerId, plusMinusId); + } else if(arguments[0] == false) { + $ax.tree.CollapseNode(treeNodeId, childContainerId, plusMinusId); + } + } + } + + return this; + } + }; +}); diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/doc.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/doc.js" new file mode 100644 index 0000000..7e3a138 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/doc.js" @@ -0,0 +1,658 @@ +$axure.internal(function($ax) { + var _pageData; + + + var _initializePageFragment = function(pageFragment, objIdToObject) { + var objectArrayHelper = function(objects, parent) { + for(var i = 0; i < objects.length; i++) { + diagramObjectHelper(objects[i], parent); + } + }; + + var diagramObjectHelper = function(diagramObject, parent) { + $ax.initializeObject('diagramObject', diagramObject); + objIdToObject[pageFragment.packageId + '~' + diagramObject.id] = diagramObject; + diagramObject.parent = parent; + diagramObject.owner = pageFragment; + diagramObject.scriptIds = []; + if(diagramObject.diagrams) { //dynamic panel + for(var i = 0; i < diagramObject.diagrams.length; i++) { + var diagram = diagramObject.diagrams[i]; + objectArrayHelper(diagram.objects, diagram); + } + } + if(diagramObject.objects) objectArrayHelper(diagramObject.objects, diagramObject); + }; + + objectArrayHelper(pageFragment.diagram.objects, pageFragment.diagram); + }; + + var _initalizeStylesheet = function(stylesheet) { + var stylesById = {}; + var customStyles = stylesheet.customStyles; + for(var key in customStyles) { + var style = customStyles[key]; + stylesById[style.id] = style; + } + stylesheet.stylesById = stylesById; + }; + + + var _initializeDocumentData = function() { + _initalizeStylesheet($ax.document.stylesheet); + }; + + + var _initializePageData; + // ******* Dictionaries ******** // + (function() { + var elementIdToObject = {}; + var scriptIdToObject = {}; + var scriptIdToRepeaterId = {}; + var repeaterIdToScriptIds = {}; + var repeaterIdToItemIds = {}; + var scriptIdToPath = {}; + var elementIdToText = {}; + var radioGroupToSelectedElementId = {}; + _initializePageData = function() { + if(!_pageData || !_pageData.page || !_pageData.page.diagram) return; + + var objIdToObject = {}; + _initializePageFragment(_pageData.page, objIdToObject); + for(var masterId in _pageData.masters) { + var master = _pageData.masters[masterId]; + _initializePageFragment(master, objIdToObject); + } + + var _pathsToScriptIds = []; + _pathToScriptIdHelper(_pageData.objectPaths, [], _pathsToScriptIds, scriptIdToPath); + + for(var i = 0; i < _pathsToScriptIds.length; i++) { + var path = _pathsToScriptIds[i].idPath; + var scriptId = _pathsToScriptIds[i].scriptId; + + var packageId = _pageData.page.packageId; + if(path.length > 1) { + for(var j = 0; j < path.length - 1; j++) { + var rdoId = path[j]; + var rdo = objIdToObject[packageId + '~' + rdoId]; + packageId = rdo.masterId; + } + } + var diagramObject = objIdToObject[packageId + '~' + path[path.length - 1]]; + diagramObject.scriptIds[diagramObject.scriptIds.length] = scriptId; + + scriptIdToObject[scriptId] = diagramObject; + } + + // Now map scriptIds to repeaters + var mapScriptIdToRepeaterId = function(scriptId, repeaterId) { + scriptIdToRepeaterId[scriptId] = repeaterId; + var scriptIds = repeaterIdToScriptIds[repeaterId]; + if(scriptIds) scriptIds[scriptIds.length] = scriptId; + else repeaterIdToScriptIds[repeaterId] = [scriptId]; + }; + var mapIdsToRepeaterId = function(path, objs, repeaterId) { + var pathCopy = $ax.deepCopy(path); + + for(var i = 0; i < objs.length; i++) { + var obj = objs[i]; + pathCopy[path.length] = obj.id; + var scriptId = $ax.getScriptIdFromPath(pathCopy); + // Rdo have no element on page and are not mapped to the repeater + if(repeaterId) mapScriptIdToRepeaterId(scriptId, repeaterId); + + if(obj.type == 'dynamicPanel') { + for(var j = 0; j < obj.diagrams.length; j++) mapIdsToRepeaterId(path, obj.diagrams[j].objects, repeaterId); + } else if(obj.type == 'referenceDiagramObject') { + mapIdsToRepeaterId(pathCopy, $ax.pageData.masters[obj.masterId].diagram.objects, repeaterId); + } else if(obj.type == 'repeater') { + mapScriptIdToRepeaterId(scriptId, scriptId); + mapIdsToRepeaterId(path, obj.objects, scriptId); + } else if(obj.objects && obj.objects.length) { + if(repeaterId) { + for(var j = 0; j < obj.objects.length; j++) { + mapIdsToRepeaterId(path, obj.objects, repeaterId); + } + } + } + } + }; + mapIdsToRepeaterId([], $ax.pageData.page.diagram.objects); + }; + + + + $ax.getPathFromScriptId = function(scriptId) { + var reversedPath = []; + var path = scriptIdToPath[scriptId]; + while(path && path.uniqueId) { + reversedPath[reversedPath.length] = path.uniqueId; + path = path.parent; + } + return reversedPath.reverse(); + }; + + var _getScriptIdFromFullPath = function(path) { + var current = $ax.pageData.objectPaths; + for(var i = 0; i < path.length; i++) { + current = current[path[i]]; + } + return current && current.scriptId; + }; + + + var _getScriptIdFromPath = function(path, relativeTo) { + var relativePath = []; + var includeMasterInPath = false; + if(relativeTo) { + var relativeToScriptId; + if(relativeTo.srcElement) { //this is eventInfo + relativeToScriptId = $ax.repeater.getScriptIdFromElementId(relativeTo.raisedId || relativeTo.srcElement); + includeMasterInPath = relativeTo.isMasterEvent; + } else if(typeof relativeTo === 'string') { //this is an element id + relativeToScriptId = relativeTo; + } + + if(relativeToScriptId) { + relativePath = $ax.getPathFromScriptId(relativeToScriptId); + if(!includeMasterInPath) relativePath = relativePath.slice(0, relativePath.length - 1); + } else if(relativeTo instanceof Array) { //this is a path + relativePath = relativeTo; + } + } + var fullPath = relativePath.concat(path); + return _getScriptIdFromFullPath(fullPath); + }; + $ax.getScriptIdFromPath = _getScriptIdFromPath; + + var _getElementIdsFromPath = function(path, eventInfo) { + var scriptId = _getScriptIdFromPath(path, eventInfo); + return $ax.getElementIdsFromEventAndScriptId(eventInfo, scriptId); + }; + $ax.getElementIdsFromPath = _getElementIdsFromPath; + + var _getElementIdFromPath = function(path, params) { + var itemNum = params.itemNum; + if(params.relativeTo && typeof params.relativeTo === 'string') { + if($jobj(params.relativeTo)) itemNum = $ax.repeater.getItemIdFromElementId(params.relativeTo); + } + return $ax.repeater.createElementId(_getScriptIdFromPath(path, params.relativeTo), itemNum); + }; + $ax.getElementIdFromPath = _getElementIdFromPath; + + var _getElementsIdFromEventAndScriptId = function(eventInfo, scriptId) { + var itemId = eventInfo && $ax.repeater.getItemIdFromElementId(eventInfo.srcElement); + + var parentRepeater = $ax.getParentRepeaterFromScriptId(scriptId); + if(parentRepeater && scriptId != parentRepeater) { + if(itemId && (!eventInfo || parentRepeater == $ax.getParentRepeaterFromScriptId($ax.repeater.getScriptIdFromElementId(eventInfo.srcElement)))) { + return [$ax.repeater.createElementId(scriptId, itemId)]; + } + var elementIds = []; + var itemIds = $ax.getItemIdsForRepeater(parentRepeater); + if(!itemIds) return []; + + for(var i = 0; i < itemIds.length; i++) elementIds[i] = $ax.repeater.createElementId(scriptId, itemIds[i]); + return elementIds; + } + return [scriptId]; + }; + $ax.getElementIdsFromEventAndScriptId = _getElementsIdFromEventAndScriptId; + + var _getSrcElementIdFromEvent = function(event) { + var currentQuery = $(event.srcElement || event.target); + while(currentQuery && currentQuery.length && (!$obj(currentQuery.attr('id')) || $jobj(currentQuery.attr('id')).hasClass('text'))) { + currentQuery = currentQuery.parent(); + }; + return currentQuery.attr('id'); + }; + $ax.getSrcElementIdFromEvent = _getSrcElementIdFromEvent; + + var _getEventInfoFromEvent = function(event, skipShowDescriptions, elementId) { + var eventInfo = {}; + eventInfo.srcElement = elementId; + + if(event != null) { + //elementId can be empty string, so can't simple use "or" assignment here. + eventInfo.srcElement = elementId || elementId == '' ? elementId : _getSrcElementIdFromEvent(event); + eventInfo.which = event.which; + + // When getting locations in mobile, need to extract the touch object to get the mouse location attributes + var mouseEvent = (event.originalEvent && event.originalEvent.changedTouches && event.originalEvent.changedTouches[0]) || event.originalEvent; + + if(skipShowDescriptions) eventInfo.skipShowDescriptions = true; + + // Always update mouse location if possible + $ax.event.updateMouseLocation(mouseEvent); + } + + // Always set event info about cursor + var _cursor = eventInfo.cursor = {}; + _cursor.x = $ax.mouseLocation.x; + _cursor.y = $ax.mouseLocation.y; + + eventInfo.pageX = _cursor.x + 'px'; + eventInfo.pageY = _cursor.y + 'px'; + + // Do Keyboard Info + eventInfo.keyInfo = $ax.event.keyState(); + + eventInfo.window = _getWindowInfo(); + + eventInfo.thiswidget = _getWidgetInfo(eventInfo.srcElement); + eventInfo.item = _getItemInfo(eventInfo.srcElement); + eventInfo.dragInfo = $ax.drag.GetWidgetDragInfo(); + + return eventInfo; + }; + $ax.getEventInfoFromEvent = _getEventInfoFromEvent; + + var _getWindowInfo = function() { + var win = {}; + win.width = $(window).width(); + win.height = $(window).height(); + win.scrollx = $(window).scrollLeft(); + win.scrolly = $(window).scrollTop(); + return win; + }; + $ax.getWindowInfo = _getWindowInfo; + + var _getItemInfo = function(elementId) { + if(!elementId) return { valid: false }; + + elementId = _getParentElement(elementId); + + var itemId = $ax.repeater.getItemIdFromElementId(elementId); + if(!itemId) return { valid: false }; + + + var item = { valid: true }; + + var index = $ax.repeater.getItemIdFromElementId(elementId); + var scriptId = $ax.repeater.getScriptIdFromElementId(elementId); + var repeaterId = $ax.getParentRepeaterFromScriptId(scriptId); + item.repeater = _getWidgetInfo(repeaterId); + $ax.repeater.setDisplayProps(item, repeaterId, index); + item.ismarked = $ax.repeater.isEditItem(repeaterId, index); + item.isvisible = Boolean($jobj(elementId).length); + + return item; + }; + $ax.getItemInfo = _getItemInfo; + + var _getWidgetInfo = function(elementId) { + if(!elementId) return { valid: false }; + + elementId = _getParentElement(elementId); + + var elementQuery = $jobj(elementId); + var obj = $obj(elementId); + var widget = { valid: true, isWidget: true }; + widget.elementId = elementId; + widget.name = widget.label = (elementQuery.data('label') ? elementQuery.data('label') : ''); + widget.text = $ax('#' + elementId).text(); + var scriptId = $ax.repeater.getScriptIdFromElementId(elementId); + var repeaterId = $ax.getParentRepeaterFromScriptId(scriptId); + if(repeaterId) widget.repeater = obj.type == 'repeater' ? widget : _getWidgetInfo(repeaterId); + + var x = elementQuery.css('left'); + if(x !== undefined) x = Number(x.replace('px', '')); + var y = elementQuery.css('top'); + if(y !== undefined) y = Number(y.replace('px', '')); + + if(elementQuery.length != 0) { + widget.pagex = $ax.legacy.getAbsoluteLeft(elementQuery); + widget.pagey = $ax.legacy.getAbsoluteTop(elementQuery); + } + + widget.x = x; + widget.y = y; + widget.width = elementQuery.width(); + widget.height = elementQuery.height(); + + // Right now only dynamic panel can scroll + if(obj.type == 'dynamicPanel') { + var stateQuery = $('#' + $ax.visibility.GetPanelState(elementId)); + widget.scrollx = stateQuery.scrollLeft(); + widget.scrolly = stateQuery.scrollTop(); + + if($ax.dynamicPanelManager.isIdFitToContent(elementId)) { + widget.width = stateQuery.width(); + widget.height = stateQuery.height(); + } + } else { + widget.scrollx = 0; + widget.scrolly = 0; + } + + // repeater only props + if(obj.type == 'repeater' && repeaterIdToItemIds[elementId]) { + widget.visibleitemcount = repeaterIdToItemIds[elementId].length; + widget.itemcount = $ax.repeater.getFilteredDataCount(elementId); + widget.datacount = $ax.repeater.getDataCount(elementId); + widget.pagecount = $ax.repeater.getPageCount(elementId); + widget.pageindex = $ax.repeater.getPageIndex(elementId); + } + + widget.left = widget.x; + widget.top = widget.y; + widget.right = widget.x + widget.width; + widget.bottom = widget.y + widget.height; + + return widget; + }; + $ax.getWidgetInfo = _getWidgetInfo; + + var _getParentElement = $ax.getParentElement = function(elementId) { + var obj = $obj(elementId); + while(obj.isContained) { + var path = $ax.getPathFromScriptId($ax.repeater.getScriptIdFromElementId(elementId)); + var itemId = $ax.repeater.getItemIdFromElementId(elementId); + path[path.length - 1] = obj.parent.id; + elementId = $ax.getElementIdFromPath(path, { itemNum: itemId }); + obj = $obj(elementId); + } + + return elementId; + }; + + $ax.addItemIdToRepeater = function(itemId, repeaterId) { + var itemIds = repeaterIdToItemIds[repeaterId]; + if(itemIds) itemIds[itemIds.length] = itemId; + else repeaterIdToItemIds[repeaterId] = [itemId]; + + var scriptIds = repeaterIdToScriptIds[repeaterId]; + for(var i = 0; i < scriptIds.length; i++) elementIdToObject[$ax.repeater.createElementId(scriptIds[i], itemId)] = $ax.getObjectFromScriptId(scriptIds[i]); + }; + + $ax.getAllElementIds = function() { + var elementIds = []; + for(var scriptId in scriptIdToObject) { + var repeaterId = scriptIdToRepeaterId[scriptId]; + if(repeaterId && repeaterId != scriptId) { + var itemIds = repeaterIdToItemIds[repeaterId] || []; + for(var i = 0; i < itemIds.length; i++) elementIds[elementIds.length] = $ax.repeater.createElementId(scriptId, itemIds[i]); + } else elementIds[elementIds.length] = scriptId; + } + return elementIds; + }; + + $ax.getAllScriptIds = function() { + var scriptIds = []; + for(var scriptId in scriptIdToObject) scriptIds.push(scriptId); + return scriptIds; + }; + + $ax.getObjectFromElementId = function(elementId) { + return $ax.getObjectFromScriptId($ax.repeater.getScriptIdFromElementId(elementId)); + }; + + $ax.getObjectFromScriptId = function(scriptId) { + return scriptIdToObject[scriptId]; + }; + + $ax.getParentRepeaterFromScriptId = function(scriptId) { + return scriptIdToRepeaterId[scriptId]; + }; + + var _getChildScriptIdsForRepeater = function(repeaterId) { + return repeaterIdToScriptIds[repeaterId]; + }; + + var _getItemIdsForRepeater = function(repeaterId) { + return repeaterIdToItemIds[repeaterId] || []; + }; + $ax.getItemIdsForRepeater = _getItemIdsForRepeater; + + var _clearItemIdsForRepeater = function(repeaterId) { + repeaterIdToItemIds[repeaterId] = []; + }; + $ax.clearItemsForRepeater = _clearItemIdsForRepeater; + + $ax.getChildElementIdsForRepeater = function(repeaterId) { + var scriptIds = _getChildScriptIdsForRepeater(repeaterId); + var itemIds = _getItemIdsForRepeater(repeaterId); + + var retVal = []; + if(!itemIds || !scriptIds) return retVal; + + for(var i = 0; i < scriptIds.length; i++) { + for(var j = 0; j < itemIds.length; j++) { + retVal[retVal.length] = $ax.repeater.createElementId(scriptIds[i], itemIds[j]); + } + } + return retVal; + }; + + $ax.getRdoParentFromElementId = function(elementId) { + var scriptId = $ax.repeater.getScriptIdFromElementId(elementId); + var rdoId = scriptIdToPath[scriptId].parent.scriptId; + if($ax.getParentRepeaterFromScriptId(rdoId)) rdoId = $ax.repeater.createElementId(rdoId, $ax.repeater.getItemIdFromElementId(elementId)); + return rdoId; + }; + + $ax.updateElementText = function(elementId, text) { + elementIdToText[elementId] = text; + }; + + $ax.hasElementTextChanged = function(elementId, text) { + return elementIdToText[elementId] != text; + }; + + $ax.updateRadioButtonSelected = function(group, elementId) { + var old = radioGroupToSelectedElementId[group]; + radioGroupToSelectedElementId[group] = elementId; + return old; + }; + + $ax.hasRadioButtonSelectedChanged = function(group, elementId) { + return radioGroupToSelectedElementId[group] != elementId; + }; + })(); + + //Recursively populates fullPathArray with: + // [ { idPath, scriptId }, ... ] + //for every scriptId in the object + //also populates an object of scriptId -> path + var _pathToScriptIdHelper = function(currentPath, currentChain, fullPathArray, scriptIdToPath) { + for(var key in currentPath) { + if(key != "scriptId") { + var nextPath = currentPath[key]; + _pathToScriptIdHelper(nextPath, currentChain.concat(key), fullPathArray, scriptIdToPath); + nextPath.parent = currentPath; + nextPath.uniqueId = key; + } else { + fullPathArray[fullPathArray.length] = { idPath: currentChain, scriptId: currentPath.scriptId }; + scriptIdToPath[currentPath.scriptId] = currentPath; + } + } + }; + + $ax.public.loadCurrentPage = $ax.loadCurrentPage = function(pageData) { + $ax.pageData = _pageData = pageData; + _initializePageData(); + }; + + $ax.public.loadDocument = $ax.loadDocument = function(document) { + $ax.document = document; + _initializeDocumentData(); + }; + + + /** + Navigates to a page + + + */ + $ax.public.navigate = $ax.navigate = function(to) { //url, includeVariables, type) { + var targetUrl; + if(typeof (to) === 'object') { + includeVariables = to.includeVariables; + targetUrl = !includeVariables ? to.url : $ax.globalVariableProvider.getLinkUrl(to.url); + + if(to.target == "new") { + window.open(targetUrl, to.name); + } else if(to.target == "popup") { + var features = _getPopupFeatures(to.popupOptions); + window.open(targetUrl, to.name, features); + } else { + var targetLocation = window.location; + if(to.target == "current") { + } else if(to.target == "parent") { + targetLocation = top.opener.window.location; + } else if(to.target == "parentFrame") { + targetLocation = parent.location; + } else if(to.target == "frame") { + targetLocation = to.frame.contentWindow.location; + } + + if(!_needsReload(targetLocation, to.url)) { + targetLocation.href = targetUrl || 'about:blank'; + } else { + targetLocation.href = $axure.utils.getReloadPath() + "#" + encodeURI(targetUrl); + } + } + } else { + $ax.navigate({ + url: to, + target: "current", + includeVariables: arguments[1] + }); + } + }; + + var _needsReload = function(oldLocation, newBaseUrl) { + var reload = false; + try { + var oldUrl = oldLocation.href; + var oldBaseUrl = oldUrl.split("#")[0]; + var lastslash = oldBaseUrl.lastIndexOf("/"); + if(lastslash > 0) { + oldBaseUrl = oldBaseUrl.substring(lastslash + 1, oldBaseUrl.length); + if(oldBaseUrl == encodeURI(newBaseUrl)) { + reload = true; + } + } + } catch(e) { + } + return reload; + }; + + var _getPopupFeatures = function(options) { + var defaultOptions = { + toolbar: true, + scrollbars: true, + location: true, + status: true, + menubar: true, + directories: true, + resizable: true, + centerwindow: true, + left: -1, + top: -1, + height: -1, + width: -1 + }; + + var selectedOptions = $.extend({}, defaultOptions, options); + + var optionsList = []; + optionsList.push('toolbar=' + (selectedOptions.toolbar ? 'yes' : 'no')); + optionsList.push('scrollbars=' + (selectedOptions.scrollbars ? 'yes' : 'no')); + optionsList.push('location=' + (selectedOptions.location ? 'yes' : 'no')); + optionsList.push('status=' + (selectedOptions.status ? 'yes' : 'no')); + optionsList.push('menubar=' + (selectedOptions.menubar ? 'yes' : 'no')); + optionsList.push('directories=' + (selectedOptions.directories ? 'yes' : 'no')); + optionsList.push('resizable=' + (selectedOptions.resizable ? 'yes' : 'no')); + + if(selectedOptions.centerwindow == false) { + if(selectedOptions.left > -1) { + optionsList.push('left=' + selectedOptions.left); + } + + if(selectedOptions.top > -1) { + optionsList.push('top=' + selectedOptions.top); + } + } + + var height = 0; + var width = 0; + if(selectedOptions.height > 0) { + optionsList.push('height=' + selectedOptions.height); + height = selectedOptions.height; + } + + if(selectedOptions.width > 0) { + optionsList.push('width=' + selectedOptions.width); + width = selectedOptions.width; + } + + var features = optionsList.join(','); + if(selectedOptions.centerwindow) { + var winl = (window.screen.width - width) / 2; + var wint = (window.screen.height - height) / 2; + features = features + ',left=' + winl + ',top=' + wint; + } + + return features; + }; + + /** + Closes a window + + + */ + $ax.public.closeWindow = $ax.closeWindow = function() { + parent.window.close(); + }; + + /** + Goes back + + + */ + $ax.public.back = $ax.back = function() { + window.history.go(-1); + }; + + /** + Reloads the current page. + # includeVariables: true if it should re-include the variables when the page is reloaded + */ + $ax.public.reload = $ax.reload = function(includeVariables) { + var targetUrl = (includeVariables === false) + ? $axure.utils.getReloadPath() + "#" + encodeURI($ax.pageData.url) + : $axure.utils.getReloadPath() + "#" + encodeURI($ax.globalVariableProvider.getLinkUrl($ax.pageData.url)); + window.location.href = targetUrl; + }; + + /** + Sets a variable. + # name: The name of the global variable to set + # value: The value that should be set + */ + $ax.public.setGlobalVariable = $ax.setGlobalVariable = function(name, value) { + if(!name || !value) { + return; + } + + $ax.globalVariableProvider.setVariableValue(name, value); + }; + + /** + Gets the value of a global variable + # name: The name of the global variable value to get + */ + $ax.public.getGlobalVariable = $ax.getGlobalVariable = function(name) { + $ax.globalVariableProvider.getVariableValue(name); + }; + + + $ax.getTypeFromElementId = function(elementId) { + var elementIdInput = elementId.charAt(0) == '#' ? elementId.substring(1) : elementId; + var obj = this.getObjectFromElementId(elementIdInput); + return obj && obj.type; + }; + +}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/drag.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/drag.js" new file mode 100644 index 0000000..a27c746 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/drag.js" @@ -0,0 +1,265 @@ +$axure.internal(function($ax) { + var widgetDragInfo = new Object(); + var _drag = {}; + $ax.drag = _drag; + + $ax.drag.GetWidgetDragInfo = function() { + return $.extend({}, widgetDragInfo); + }; + + $ax.drag.StartDragWidget = function(event, id) { + $ax.setjBrowserEvent(jQuery.Event(event)); + + var x, y; + var tg; + if($.browser.msie) { + x = window.event.clientX + window.document.documentElement.scrollLeft + window.document.body.scrollLeft; + y = window.event.clientY + window.document.documentElement.scrollTop + window.document.body.scrollTop; + tg = window.event.srcElement; + } else { + if(event.changedTouches) { + x = event.changedTouches[0].pageX; + y = event.changedTouches[0].pageY; + } else { + x = event.pageX; + y = event.pageY; + event.preventDefault(); + } + tg = event.target; + } + + widgetDragInfo.hasStarted = false; + widgetDragInfo.widgetId = id; + widgetDragInfo.cursorStartX = x; + widgetDragInfo.cursorStartY = y; + widgetDragInfo.lastX = x; + widgetDragInfo.lastY = y; + widgetDragInfo.currentX = x; + widgetDragInfo.currentY = y; + + widgetDragInfo.movedWidgets = new Object(); + widgetDragInfo.startTime = (new Date()).getTime(); + widgetDragInfo.targetWidget = tg; + + if($.browser.msie) { + window.document.attachEvent("onmousemove", _dragWidget); + window.document.attachEvent("onmouseup", _stopDragWidget); + } else { + window.document.addEventListener("mousemove", _dragWidget, true); + window.document.addEventListener("mouseup", _stopDragWidget, true); + window.document.addEventListener("touchmove", _dragWidget, true); + window.document.addEventListener("touchend", _stopDragWidget, true); + } + $ax.legacy.SuppressBubble(event); + }; + + var _dragWidget = function(event) { + $ax.setjBrowserEvent(jQuery.Event(event)); + + var x, y; + if($.browser.msie) { + x = window.event.clientX + window.document.documentElement.scrollLeft + window.document.body.scrollLeft; + y = window.event.clientY + window.document.documentElement.scrollTop + window.document.body.scrollTop; + } else { + if(event.changedTouches) { + x = event.changedTouches[0].pageX; + y = event.changedTouches[0].pageY; + //allow scroll (defaults) if only swipe events have cases and delta x is less than 5px and not blocking scrolling + var deltaX = x - widgetDragInfo.currentX; + var target = window.document.getElementById(widgetDragInfo.widgetId); + if($ax.event.hasSyntheticEvent(widgetDragInfo.widgetId, "onDrag") || $ax.event.hasSyntheticEvent(widgetDragInfo.widgetId, "onSwipeUp") || + $ax.event.hasSyntheticEvent(widgetDragInfo.widgetId, "onSwipeDown") || (deltaX * deltaX) > 25 + || ($ax.document.configuration.preventScroll && $ax.legacy.GetScrollable(target) == window.document.body)) { + event.preventDefault(); + } + } else { + x = event.pageX; + y = event.pageY; + } + } + widgetDragInfo.xDelta = x - widgetDragInfo.currentX; + widgetDragInfo.yDelta = y - widgetDragInfo.currentY; + widgetDragInfo.lastX = widgetDragInfo.currentX; + widgetDragInfo.lastY = widgetDragInfo.currentY; + widgetDragInfo.currentX = x; + widgetDragInfo.currentY = y; + + widgetDragInfo.currentTime = (new Date()).getTime(); + + $ax.legacy.SuppressBubble(event); + + if(!widgetDragInfo.hasStarted) { + widgetDragInfo.hasStarted = true; + $ax.event.raiseSyntheticEvent(widgetDragInfo.widgetId, "onDragStart"); + + widgetDragInfo.oldBodyCursor = window.document.body.style.cursor; + window.document.body.style.cursor = 'move'; + var widget = window.document.getElementById(widgetDragInfo.widgetId); + widgetDragInfo.oldCursor = widget.style.cursor; + widget.style.cursor = 'move'; + } + + $ax.event.raiseSyntheticEvent(widgetDragInfo.widgetId, "onDrag"); + }; + + var _suppressClickAfterDrag = function(event) { + if($.browser.msie) { + window.event.srcElement.detachEvent("onclick", _suppressClickAfterDrag); + } else { + window.document.removeEventListener("click", _suppressClickAfterDrag, true); + } + $ax.legacy.SuppressBubble(event); + }; + + var _stopDragWidget = function(event) { + $ax.setjBrowserEvent(jQuery.Event(event)); + + var tg; + if($.browser.msie) { + window.document.detachEvent("onmousemove", _dragWidget); + window.document.detachEvent("onmouseup", _stopDragWidget); + tg = window.event.srcElement; + } else { + window.document.removeEventListener("mousemove", _dragWidget, true); + window.document.removeEventListener("mouseup", _stopDragWidget, true); + window.document.removeEventListener("touchmove", _dragWidget, true); + window.document.removeEventListener("touchend", _stopDragWidget, true); + tg = event.target; + } + + if(widgetDragInfo.hasStarted) { + widgetDragInfo.currentTime = (new Date()).getTime(); + $ax.event.raiseSyntheticEvent(widgetDragInfo.widgetId, "onDragDrop"); + + if($ax.globalVariableProvider.getVariableValue('totaldragx') < -30 && $ax.globalVariableProvider.getVariableValue('dragtime') < 1000) { + $ax.event.raiseSyntheticEvent(widgetDragInfo.widgetId, "onSwipeLeft"); + } + + if($ax.globalVariableProvider.getVariableValue('totaldragx') > 30 && $ax.globalVariableProvider.getVariableValue('dragtime') < 1000) { + $ax.event.raiseSyntheticEvent(widgetDragInfo.widgetId, "onSwipeRight"); + } + + var totalDragY = $ax.globalVariableProvider.getVariableValue('totaldragy'); + if(totalDragY < -30 && $ax.globalVariableProvider.getVariableValue('dragtime') < 1000) { + $ax.event.raiseSyntheticEvent(widgetDragInfo.widgetId, "onSwipeUp"); + } + + if(totalDragY > 30 && $ax.globalVariableProvider.getVariableValue('dragtime') < 1000) { + $ax.event.raiseSyntheticEvent(widgetDragInfo.widgetId, "onSwipeDown"); + } + + window.document.body.style.cursor = widgetDragInfo.oldBodyCursor; + var widget = window.document.getElementById(widgetDragInfo.widgetId); + widget.style.cursor = widgetDragInfo.oldCursor; + + if(widgetDragInfo.targetWidget == tg && !event.changedTouches) { + // suppress the click after the drag on desktop browsers + if($.browser.msie && widgetDragInfo.targetWidget) { + widgetDragInfo.targetWidget.attachEvent("onclick", _suppressClickAfterDrag); + } else { + window.document.addEventListener("click", _suppressClickAfterDrag, true); + } + } + } + + widgetDragInfo.hasStarted = false; + widgetDragInfo.movedWidgets = new Object(); + + return false; + }; + + $ax.drag.GetDragX = function() { + if(widgetDragInfo.hasStarted) return widgetDragInfo.xDelta; + return 0; + }; + + $ax.drag.GetDragY = function() { + if(widgetDragInfo.hasStarted) return widgetDragInfo.yDelta; + return 0; + }; + + $ax.drag.GetTotalDragX = function() { + if(widgetDragInfo.hasStarted) return widgetDragInfo.currentX - widgetDragInfo.cursorStartX; + return 0; + }; + + $ax.drag.GetTotalDragY = function() { + if(widgetDragInfo.hasStarted) return widgetDragInfo.currentY - widgetDragInfo.cursorStartY; + return 0; + }; + + $ax.drag.GetDragTime = function() { + if(widgetDragInfo.hasStarted) return widgetDragInfo.currentTime - widgetDragInfo.startTime; + return 600000; + }; + +// $ax.drag.GetCursorRectangles = function() { +// var rects = new Object(); +// rects.lastRect = new Rectangle($ax.lastMouseLocation.x, $ax.lastMouseLocation.y, 1, 1); +// rects.currentRect = new Rectangle($ax.mouseLocation.x, $ax.mouseLocation.y, 1, 1); +// return rects; +// }; + + // $ax.drag.GetWidgetRectangles = function(id) { + // var widget = window.document.getElementById(id); + // var rects = new Object(); + // rects.lastRect = new Rectangle($ax.legacy.getAbsoluteLeft(widget), $ax.legacy.getAbsoluteTop(widget), Number($('#' + id).css('width').replace("px", "")), Number($('#' + id).css('height').replace("px", ""))); + // rects.currentRect = rects.lastRect; + // return rects; + // }; + + // $ax.drag.IsEntering = function(movingRects, targetRects) { + // return !movingRects.lastRect.IntersectsWith(targetRects.currentRect) && movingRects.currentRect.IntersectsWith(targetRects.currentRect); + // }; + + // $ax.drag.IsLeaving = function(movingRects, targetRects) { + // return movingRects.lastRect.IntersectsWith(targetRects.currentRect) && !movingRects.currentRect.IntersectsWith(targetRects.currentRect); + // }; + + // function IsOver(movingRects, targetRects) { + // return movingRects.currentRect.IntersectsWith(targetRects.currentRect); + // } + + // function IsNotOver(movingRects, targetRects) { + // return !IsOver(movingRects, targetRects); + // } + + $ax.drag.LogMovedWidgetForDrag = function(id) { + if(widgetDragInfo.hasStarted) { + var widget = $('#' + id); + var y = Number(widget.css('top').replace("px", "")); + var x = Number(widget.css('left').replace("px", "")); + var movedWidgets = widgetDragInfo.movedWidgets; + if(!movedWidgets[id]) { + movedWidgets[id] = new Location(x, y); + } + } + }; + + var Location = function(x, y) { + this.x = x; + this.y = y; + }; + $ax.drag.location = Location; + + var Rectangle = $ax.drag.Rectangle = function(x, y, width, height) { + this.x = x; + this.y = y; + this.width = width; + this.height = height; + this.right = x + width; + this.bottom = y + height; + }; + + Rectangle.prototype.IntersectsWith = function(rect) { + if(rect.length) { + for(var i = 0; i < rect.length; i++) if(this.IntersectsWith(rect[i])) return true; + return false; + } + return this.x < rect.right && this.right > rect.x && this.y < rect.bottom && this.bottom > rect.y; + }; + + Rectangle.prototype.Move = function(x, y) { + return new Rectangle(x, y, this.width, this.height); + }; +}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/events.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/events.js" new file mode 100644 index 0000000..9b25259 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/events.js" @@ -0,0 +1,1267 @@ +// ******* Features MANAGER ******** // + +$axure.internal(function($ax) { + var _features = $ax.features = {}; + var _supports = _features.supports = {}; + _supports.touchstart = typeof window.ontouchstart !== 'undefined'; + _supports.touchmove = typeof window.ontouchmove !== 'undefined'; + _supports.touchend = typeof window.ontouchend !== 'undefined'; + + _supports.mobile = _supports.touchstart && _supports.touchend && _supports.touchmove; + // Got this from http://stackoverflow.com/questions/11381673/javascript-solution-to-detect-mobile-browser + var check = navigator.userAgent.match(/Android/i) + || navigator.userAgent.match(/webOS/i) + || navigator.userAgent.match(/iPhone/i) + || navigator.userAgent.match(/iPad/i) + || navigator.userAgent.match(/iPod/i) + || navigator.userAgent.match(/BlackBerry/i) + || navigator.userAgent.match(/Windows Phone/i); + + if(!check && _supports.mobile) { + _supports.touchstart = false; + _supports.touchmove = false; + _supports.touchend = false; + _supports.mobile = false; + } + + var _eventNames = _features.eventNames = {}; + _eventNames.mouseDownName = _supports.touchstart ? 'touchstart' : 'mousedown'; + _eventNames.mouseUpName = _supports.touchend ? 'touchend' : 'mouseup'; + _eventNames.mouseMoveName = _supports.touchmove ? 'touchmove' : 'mousemove'; +}); + +// ******* EVENT MANAGER ******** // +$axure.internal(function($ax) { + var _objectIdToEventHandlers = {}; + + var _jBrowserEvent = undefined; + $ax.setjBrowserEvent = function(event) { + _jBrowserEvent = event; + }; + + $ax.getjBrowserEvent = function() { + return _jBrowserEvent; + }; + + var _event = {}; + $ax.event = _event; + + //initilize state + _event.mouseOverObjectId = ''; + _event.mouseDownObjectId = ''; + _event.mouseOverIds = []; + + var EVENT_NAMES = ['mouseenter', 'mouseleave', 'contextmenu', 'change', 'focus', 'blur']; + + + // Tap, double tap, and touch move, or synthetic. + if(!$ax.features.supports.mobile) { + EVENT_NAMES[EVENT_NAMES.length] = 'click'; + EVENT_NAMES[EVENT_NAMES.length] = 'dblclick'; + EVENT_NAMES[EVENT_NAMES.length] = 'mousemove'; + } + + // add the event names for the touch events + EVENT_NAMES[EVENT_NAMES.length] = $ax.features.eventNames.mouseDownName; + EVENT_NAMES[EVENT_NAMES.length] = $ax.features.eventNames.mouseUpName; + + for(var i = 0; i < EVENT_NAMES.length; i++) { + var eventName = EVENT_NAMES[i]; + //we need the function here to circumvent closure modifying eventName + _event[eventName] = (function(event_Name) { + return function(elementId, fn) { + var elementIdQuery = $jobj(elementId); + var type = $ax.getTypeFromElementId(elementId); + + //we need specially track link events so we can enable and disable them along with + //their parent widgets + if(elementIdQuery.is('a')) _attachCustomObjectEvent(elementId, event_Name, fn); + //see notes below + else if($ax.IsTreeNodeObject(type)) _attachTreeNodeEvent(elementId, event_Name, fn); + else if($ax.IsButtonShape(type) && (event_Name == 'focus' || event_Name == 'blur')) { + _attachDefaultObjectEvent($jobj($ax.repeater.applySuffixToElementId(elementId, '_img')), elementId, event_Name, fn); + } else { + var inputId = $ax.INPUT(elementId); + var isInput = $jobj(inputId).length != 0; + var id = isInput && (event_Name == 'focus' || event_Name == 'blur') ? inputId : elementId; + _attachDefaultObjectEvent($jobj(id), elementId, event_Name, fn); + } + }; + })(eventName); + } + + var AXURE_TO_JQUERY_EVENT_NAMES = { + 'onMouseOver': 'mouseenter', + 'onMouseOut': 'mouseleave', + 'onContextMenu': 'contextmenu', + 'onChange': 'change', + 'onFocus': 'focus', + 'onLostFocus': 'blur' + }; + + // Tap, double tap, and touch move, or synthetic. + if(!$ax.features.supports.mobile) { + AXURE_TO_JQUERY_EVENT_NAMES.onClick = 'click'; + AXURE_TO_JQUERY_EVENT_NAMES.onDoubleClick = 'dblclick'; + AXURE_TO_JQUERY_EVENT_NAMES.onMouseMove = 'mousemove'; + } + + AXURE_TO_JQUERY_EVENT_NAMES.onMouseDown = $ax.features.eventNames.mouseDownName; + AXURE_TO_JQUERY_EVENT_NAMES.onMouseUp = $ax.features.eventNames.mouseUpName; + + var _attachEvents = function(diagramObject, elementId) { + var inputId = $ax.repeater.applySuffixToElementId(elementId, '_input'); + var id = $jobj(inputId).length ? inputId : elementId; + + for(var eventName in diagramObject.interactionMap) { + var jQueryEventName = AXURE_TO_JQUERY_EVENT_NAMES[eventName]; + if(!jQueryEventName) continue; + + _event[jQueryEventName](id, + //this is needed to escape closure + (function(axEventObject) { + return function(e) { + $ax.setjBrowserEvent(e); + _handleEvent(elementId, $ax.getEventInfoFromEvent($ax.getjBrowserEvent(), false, elementId), axEventObject); + }; + })(diagramObject.interactionMap[eventName]) + ); + } + + }; + + var _initilizeEventHandlers = function(query) { + query.filter(function(diagramObject) { + return diagramObject.interactionMap; + }).each(_attachEvents); + }; + + var preventDefaultEvents = ['OnContextMenu', 'OnKeyUp', 'OnKeyDown']; + + var _handleEvent = $ax.event.handleEvent = function(elementId, eventInfo, axEventObject, skipShowDescriptions, synthetic) { + var eventDescription = axEventObject.description; + // If you are supposed to suppress, do that right away. + if(suppressedEventStatus[eventDescription]) { + return; + } + + var currentEvent = $ax.getjBrowserEvent(); + + if(!synthetic && currentEvent && currentEvent.originalEvent && currentEvent.originalEvent.handled && !eventInfo.isMasterEvent) return; + if(!synthetic && elementId && !$ax.style.getObjVisible(elementId)) return; + + var bubble = true; + if(skipShowDescriptions || !_shouldShowCaseDescriptions(axEventObject)) { + //handle case descriptions + var caseGroups = []; + var currentCaseGroup = []; + caseGroups[0] = currentCaseGroup; + for(var i = 0; i < axEventObject.cases.length; i++) { + var currentCase = axEventObject.cases[i]; + if(currentCase.isNewIfGroup) { + currentCaseGroup = []; + caseGroups[caseGroups.length] = currentCaseGroup; + } + currentCaseGroup[currentCaseGroup.length] = currentCase; + } + + for(var i = 0; i < caseGroups.length; i++) { + bubble = _handleCaseGroup(eventInfo, caseGroups[i]) && bubble; + } + } else { + _showCaseDescriptions(elementId, eventInfo, axEventObject, synthetic); + bubble = false; + } + + // Only trigger a supression if it handled this event + if(!bubble && suppressingEvents[eventDescription]) { + suppressedEventStatus[suppressingEvents[eventDescription]] = true; + } + var repeaters = $ax.deepCopy($ax.action.repeatersToRefresh); + while($ax.action.repeatersToRefresh.length) $ax.action.repeatersToRefresh.pop(); + for(i = 0; i < repeaters.length; i++) $ax.repeater.refreshRepeater(repeaters[i], eventInfo); + + if(currentEvent && currentEvent.originalEvent) { + currentEvent.originalEvent.handled = !synthetic && !bubble && eventDescription != 'OnFocus' && eventDescription != 'OnResize'; + + // Prevent default if necessary + if(currentEvent.originalEvent.handled && preventDefaultEvents.indexOf(eventDescription) != -1) { + currentEvent.preventDefault(); + } + } + }; + + var _showCaseDescriptions = function(elementId, eventInfo, axEventObject, synthetic) { + + if(axEventObject.cases.length == 0) return true; + + var linksId = elementId + "linkBox"; + $('#' + linksId).remove(); + + var $container = $("
    "); + + if(!_isEventSimulating(axEventObject)) { + for(var i = 0; i < axEventObject.cases.length; i++) { + var $link = $(""); + $link.click(function(j) { + return function() { + var bubble = $ax.action.dispatchAction(eventInfo, axEventObject.cases[j].actions); + $('#' + linksId).remove(); + return bubble; + }; + } (i) + ); + + $container.append($link); + } + } else { + var fullDescription = axEventObject.description + ":
    "; + for(var i = 0; i < axEventObject.cases.length; i++) { + var currentCase = axEventObject.cases[i]; + fullDescription += "  " + currentCase.description.replace(/
    /g, '
      ') + ":
    "; + for(var j = 0; j < currentCase.actions.length; j++) { + fullDescription += "    " + currentCase.actions[j].description.replace(/
    /g, '
          ') + "
    "; + } + } + fullDescription = fullDescription.substring(0, fullDescription.length - 4); + + var $link = $(""); + $link.click(function() { + _handleEvent(elementId, eventInfo, axEventObject, true, synthetic); + $('#' + linksId).remove(); + return; + }); + $container.append($link); + } + $container.mouseleave(function(e) { $ax.legacy.SuppressBubble(e); }); + $('body').append($container); + _showCaseLinks(eventInfo, linksId); + }; + + var _showCaseLinks = function(eventInfo, linksId) { + var links = window.document.getElementById(linksId); + + links.style.top = eventInfo.pageY; + + var left = eventInfo.pageX; + links.style.left = left; + $ax.visibility.SetVisible(links, true); + $ax.legacy.BringToFront(linksId, true); + $ax.legacy.RefreshScreen(); + }; + + + var _shouldShowCaseDescriptions = function(axEventObject) { + if($ax.document.configuration.linkStyle == "alwaysDisplayTargets") return true; + if($ax.document.configuration.linkStyle == "neverDisplayTargets") return false; + if(axEventObject.cases.length == 0) return false; + for(var i = 0; i < axEventObject.cases.length; i++) { + if(axEventObject.cases[i].condition) return false; + } + if(axEventObject.cases.length >= 2) return true; + return false; + }; + + var _isEventSimulating = function(axEventObject) { + for(var i = 0; i < axEventObject.cases.length; i++) { + if(axEventObject.cases[i].condition) return true; + } + return false; + }; + + var _handleCaseGroup = function(eventInfo, caseGroup) { + for(var i = 0; i < caseGroup.length; i++) { + var currentCase = caseGroup[i]; + if(!currentCase.condition || _processCondition(currentCase.condition, eventInfo)) { + + $ax.action.dispatchAction(eventInfo, currentCase.actions); + return false; + } + } + return true; + }; + + var _processCondition = function(expr, eventInfo) { + return $ax.expr.evaluateExpr(expr, eventInfo); + }; + + var _attachTreeNodeEvent = function(elementId, eventName, fn) { + //we need to set the cursor here because we want to make sure that every tree node has the default + //cursor set and then it's overridden if it has a click + if(eventName == 'click') window.document.getElementById(elementId).style.cursor = 'pointer'; + + _attachCustomObjectEvent(elementId, eventName, fn); + }; + + var _attachDefaultObjectEvent = function(elementIdQuery, elementId, eventName, fn) { + var func = function() { + if(!$ax.style.IsWidgetDisabled(elementId)) return fn.apply(this, arguments); + return true; + }; + + var bind = !elementIdQuery[eventName]; + if(bind) elementIdQuery.bind(eventName, func); + else elementIdQuery[eventName](func); + }; + + var _attachCustomObjectEvent = function(elementId, eventName, fn) { + var handlers = _objectIdToEventHandlers[elementId]; + if(!handlers) _objectIdToEventHandlers[elementId] = handlers = {}; + + var fnList = handlers[eventName]; + if(!fnList) handlers[eventName] = fnList = []; + + fnList[fnList.length] = fn; + }; + + var _fireObjectEvent = function(elementId, event, originalArgs) { + var element = window.document.getElementById(elementId); + + var handlerList = _objectIdToEventHandlers[elementId] && _objectIdToEventHandlers[elementId][event]; + if(handlerList) { + for(var i = 0; i < handlerList.length; i++) handlerList[i].apply(element, originalArgs); + } + }; + + //for button shapes and images the img is focusable instead of the div to get better outlines + + $ax.event.getFocusableWidgetOrChildId = function(elementId) { + var imgId = $ax.repeater.applySuffixToElementId(elementId, '_img'); + var imgQuery = $jobj(imgId); + + var inputId = $ax.repeater.applySuffixToElementId(elementId, '_input'); + var inputQuery = $jobj(inputId); + + return imgQuery.length > 0 ? imgId : inputQuery.length > 0 ? inputId : elementId; + }; + + // key is the suppressing event, and the value is the event that is supressed + var suppressingEvents = {}; + // key is the event that will cancel the suppression, and value is the event that was being suppressed + var cancelSuppressions = {}; + // suppressed event maps to true if it is supressed + var suppressedEventStatus = {}; + + // Attempt at a generic way to supress events + var initSuppressingEvents = function(query) { + suppressingEvents['OnLongClick'] = 'OnClick'; + cancelSuppressions['onMouseDown'] = 'OnClick'; + + // Have to cancel suppressed event here. Only works for non-synthetic events currently + for(var key in cancelSuppressions) { + var eventName = AXURE_TO_JQUERY_EVENT_NAMES[key]; + if(!eventName) continue; + (function(eventName, suppressed) { + query.bind(eventName, function() { + suppressedEventStatus[suppressed] = false; + }); + })(eventName, cancelSuppressions[key]); + } + + // Otherwise see if you have the chance to cancel a supression + // if(cancelSuppressions[eventDescription]) { + // suppressedEventStatus[cancelSuppressions[eventDescription]] = false; + // } + }; + + // TODO: It may be a good idea to split this into multiple functions, or at least pull out more similar functions into private methods + var _initializeObjectEvents = function(query) { + // Must init the supressing eventing before the handlers, so that it has the ability to supress those events. + initSuppressingEvents(query); + _initilizeEventHandlers(query); + + //attach button shape alternate styles + var mouseFilter = query.filter(function(obj) { + return obj.type != 'hyperlink' && obj.type != 'dynamicPanel' && obj.type != 'richTextPanel' && + obj.type != 'repeater' && obj.type != 'checkbox' && obj.type != 'radioButton' && obj.type != 'treeNodeObject'; + }); + mouseFilter.mouseenter(function() { + var elementId = this.id; + var parent = $ax.dynamicPanelManager.parentHandlesStyles(elementId); + if(parent) { + dynamicPanelMouseOver(parent.id); + if(parent.direct) return; + } + if($.inArray(elementId, _event.mouseOverIds) != -1) return; + _event.mouseOverIds[_event.mouseOverIds.length] = elementId; + + if(elementId == _event.mouseOverObjectId) return; + _event.mouseOverObjectId = elementId; + $ax.style.SetWidgetHover(elementId, true); + var textId = $ax.style.GetTextIdFromShape(elementId); + if(textId) $ax.annotation.updateLinkLocations(textId); + }).mouseleave(function() { + var elementId = this.id; + var parent = $ax.dynamicPanelManager.parentHandlesStyles(elementId); + if(parent) { + dynamicPanelMouseLeave(parent.id); + if(parent.direct) return; + } + $ax.splice(_event.mouseOverIds, $.inArray(elementId, _event.mouseOverIds), 1); + + if(elementId == _event.mouseOverObjectId) { + _event.mouseOverObjectId = ''; + } + $ax.style.SetWidgetHover(elementId, false); + var textId = $ax.style.GetTextIdFromShape(elementId); + if(textId) $ax.annotation.updateLinkLocations(textId); + }); + + mouseFilter.bind($ax.features.eventNames.mouseDownName, function() { + var elementId = this.id; + var parent = $ax.dynamicPanelManager.parentHandlesStyles(elementId); + if(parent) { + dynamicPanelMouseDown(parent.id); + if(parent.direct) return; + } + _event.mouseDownObjectId = elementId; + + $ax.style.SetWidgetMouseDown(this.id, true); + $ax.annotation.updateLinkLocations($ax.style.GetTextIdFromShape(elementId)); + }).bind($ax.features.eventNames.mouseUpName, function() { + var elementId = this.id; + var parent = $ax.dynamicPanelManager.parentHandlesStyles(elementId); + if(parent) { + dynamicPanelMouseUp(parent.id); + if(parent.direct) return; + } + var mouseDownId = _event.mouseDownObjectId; + _event.mouseDownObjectId = ''; + if(!$ax.style.ObjHasMouseDown(elementId)) return; + + $ax.style.SetWidgetMouseDown(elementId, false); + $ax.annotation.updateLinkLocations($ax.style.GetTextIdFromShape(elementId)); + + //there used to be something we needed to make images click, because swapping out the images prevents the click + // this is a note that we can eventually delete. + }); + + // Initialize selected elements + query.filter(function(obj) { + return (obj.type == 'buttonShape' || obj.type == 'imageBox' || obj.type == 'dynamicPanel') && obj.selected; + }).selected(true); + + //initialize disabled elements + query.filter(function(obj) { + return (obj.type == 'buttonShape' || obj.type == 'imageBox' || obj.type == 'dynamicPanel') && obj.disabled; + }).enabled(false); + + // Initialize Placeholders. Right now this is text boxes and text areas. + // Also, the assuption is being made that these widgets with the placeholder, have no other styles (this may change...) + query.filter(function(obj) { + var hasPlaceholder = obj.placeholderText == '' ? true : Boolean(obj.placeholderText); + return (obj.type == 'textArea' || obj.type == 'textBox') && hasPlaceholder; + }).each(function(diagramObject, elementId) { + // This is needed to initialize the placeholder state + $jobj($ax.INPUT(elementId)).bind('keydown', function() { + var id = this.id; + var inputIndex = id.indexOf('_input'); + if(inputIndex == -1) return; + var inputId = id.substring(0, inputIndex); + + if(!$ax.placeholderManager.isActive(inputId)) return; + $ax.placeholderManager.updatePlaceholder(inputId, false, true); + }).bind('keyup', function() { + var id = this.id; + var inputIndex = id.indexOf('_input'); + if(inputIndex == -1) return; + var inputId = id.substring(0, inputIndex); + + if($ax.placeholderManager.isActive(inputId)) return; + if(!$jobj(id).val()) { + $ax.placeholderManager.updatePlaceholder(inputId, true); + $ax.placeholderManager.moveCaret(id, 0); + } + }).bind('focus', function() { + $ax.placeholderManager.moveCaret(this.id); + }).bind('mousedown', function() { + $ax.placeholderManager.moveCaret(this.id); + }).bind('mouseup', function() { + $ax.placeholderManager.moveCaret(this.id); + }).bind('blur', function() { + var id = this.id; + var inputIndex = id.indexOf('_input'); + if(inputIndex == -1) return; + var inputId = id.substring(0, inputIndex); + + if($jobj(id).val()) return; + $ax.placeholderManager.updatePlaceholder(inputId, true); + }); + + $ax.placeholderManager.registerPlaceholder(elementId, diagramObject.placeholderText, $jobj($ax.INPUT(elementId)).attr('type') == 'password'); + $ax.placeholderManager.updatePlaceholder(elementId, !($jobj($ax.repeater.applySuffixToElementId(elementId, '_input')).val())); + }); + + // Initialize assigned submit buttons + query.filter(function(dObj) { return dObj.submitButton; }).each(function(dObj, elementId) { + $('#' + elementId).keyup(function(e) { + if(e.keyCode == '13') { + var scriptId = $ax.repeater.getScriptIdFromElementId(elementId); + var path = $ax.deepCopy(dObj.submitButton.path); + path[path.length] = dObj.submitButton.id; + var itemNum = $ax.repeater.getItemIdFromElementId(elementId); + var submitId = $ax.getScriptIdFromPath(path, scriptId); + + if(itemNum && $ax.getParentRepeaterFromScriptId(submitId) == $ax.getParentRepeaterFromScriptId(scriptId)) { + submitId = $ax.repeater.createElementId(submitId, itemNum); + } + var inputId = $ax.INPUT(submitId); + if($jobj(inputId).length) submitId = inputId; + + $ax.setjBrowserEvent(e); + $ax.event.fireClick(submitId); + } + }).keydown(function(e) { + if(e.keyCode == '13') { + e.preventDefault(); + } + }); + }); + + //initialize tree node cursors to default so they will override their parent + query.filter(function(obj) { + return obj.type == 'treeNodeObject' && !(obj.interactionMap && obj.interactionMap.onClick); + }).each(function(obj, id) { + $jobj(id).css('cursor', 'default'); + }); + + //initialize widgets that are clickable to have the pointer over them when hovering + query.filter(function(obj) { + return obj.interactionMap && obj.interactionMap.onClick; + }).each(function(obj, id) { + var jobj = $jobj(id); + if(jobj) jobj.css('cursor', 'pointer'); + }); + + // TODO: not sure if we need this. It appears to be working without + //initialize panels for DynamicPanels + query.filter(function(obj) { + return (obj.type == 'dynamicPanel'); + }).$().children().each(function() { + var parts = this.id.split('_'); + var state = parts[parts.length - 1].substring(5); + if(state != 0) $ax.visibility.SetVisible(this, false); + }); + + //initialize TreeNodes + query.filter(function(obj) { + return (obj.type == 'treeNodeObject'); + }).each(function(otehnutohe, id) { + //var id = ids[index]; + var obj = $jobj(id); + if(obj.hasClass('treeroot')) return; + + var childrenId = id + '_children'; + var children = obj.children('[id="' + childrenId + '"]:first'); + if(children.length > 0) { + var plusMinusId = 'u' + (parseInt($ax.repeater.getScriptIdFromElementId(id).substring(1)) + 1); + var itemId = $ax.repeater.getItemIdFromElementId(id); + if(itemId) plusMinusId = $ax.repeater.createElementId(plusMinusId, itemId); + if(!$jobj(plusMinusId).hasClass('ax_image')) plusMinusId = ''; + $ax.tree.InitializeTreeNode(id, plusMinusId, childrenId); + } + obj.click(function() { $ax.tree.SelectTreeNode(id, true); }); + }); + + //initialize submenus + query.filter(function(obj) { + return (obj.type == 'menuObject'); + }).each(function(obj, elementId) { + var jobj = $jobj(elementId); + if(jobj.hasClass('sub_menu')) { + var tableCellElementId = $ax.getElementIdFromPath([obj.parentCellId], { relativeTo: elementId }); + $ax.menu.InitializeSubmenu(elementId, tableCellElementId); + } + }); + + + // Attach handles for dynamic panels that propagate styles to inner items. + query.filter(function(obj) { + return obj.type == 'dynamicPanel' && obj.propagate; + }).mouseenter(function() { + var elementId = this.id; + dynamicPanelMouseOver(elementId); + }).mouseleave(function() { + var elementId = this.id; + dynamicPanelMouseLeave(elementId); + }).bind($ax.features.eventNames.mouseDownName, function() { + var elementId = this.id; + dynamicPanelMouseDown(elementId); + }).bind($ax.features.eventNames.mouseUpName, function() { + var elementId = this.id; + dynamicPanelMouseUp(elementId); + }); + + // These are the dynamic panel functions for propagating rollover styles and mouse down styles to inner objects + var dynamicPanelMouseOver = function(elementId, fromChild) { + var parent = $ax.dynamicPanelManager.parentHandlesStyles(elementId); + if(parent) { + dynamicPanelMouseOver(parent.id, true); + if(parent.direct) return; + } + if($.inArray(elementId, _event.mouseOverIds) != -1) return; + // If this event is coming from a child, don't mark that it's actually entered. + // Only mark that this has been entered if this event has naturally been triggered. (For reason see mouseleave) + if(!fromChild) _event.mouseOverIds[_event.mouseOverIds.length] = elementId; + if(elementId == _event.mouseOverObjectId) return; + _event.mouseOverObjectId = elementId; + $ax.dynamicPanelManager.propagateMouseOver(elementId, true); + }; + var dynamicPanelMouseLeave = function(elementId, fromChild) { + var parent = $ax.dynamicPanelManager.parentHandlesStyles(elementId); + if(parent) { + dynamicPanelMouseLeave(parent.id, true); + if(parent.direct) return; + } + var index = $.inArray(elementId, _event.mouseOverIds); + // If index != -1, this has been natuarally entered. If naturally entered, then leaving child should not trigger leaving, + // but instead wait for natural mouse leave. If natural mouse enter never triggered, natural mouse leave won't so do this now. + if((index != -1) && fromChild) return; + $ax.splice(_event.mouseOverIds, index, 1); + + if(elementId == _event.mouseOverObjectId) { + _event.mouseOverObjectId = ''; + } + $ax.dynamicPanelManager.propagateMouseOver(elementId, false); + }; + var dynamicPanelMouseDown = function(elementId) { + var parent = $ax.dynamicPanelManager.parentHandlesStyles(elementId); + if(parent) { + dynamicPanelMouseDown(parent.id); + if(parent.direct) return; + } + _event.mouseDownObjectId = elementId; + $ax.dynamicPanelManager.propagateMouseDown(elementId, true); + }; + var dynamicPanelMouseUp = function(elementId) { + var parent = $ax.dynamicPanelManager.parentHandlesStyles(elementId); + if(parent) { + dynamicPanelMouseUp(parent.id); + if(parent.direct) return; + } + _event.mouseDownObjectId = ''; + $ax.dynamicPanelManager.propagateMouseDown(elementId, false); + }; + + //attach handlers for button shape and tree node mouse over styles + // TODO: Can this really be removed? Trees seem to work with out (the generic hover case works for it). + // query.filter(function(obj) { + // return obj.type == 'buttonShape' && obj.parent.type == 'treeNodeObject' && + // obj.parent.style && obj.parent.style.stateStyles && + // obj.parent.style.stateStyles.mouseOver; + // }).mouseenter(function() { + // $ax.style.SetWidgetHover(this.id, true); + // }).mouseleave(function() { + // $ax.style.SetWidgetHover(this.id, false); + // }); + + //handle treeNodeObject events and prevent them from bubbling up. this is necessary because otherwise + //both a sub menu and it's parent would get a click + query.filter(function(obj) { + return obj.type == 'treeNodeObject'; + }).click(function() { + //todo -- this was bubbling, but then selecting a child tree node would bubble and select the parent (don't know if there is a better way) + _fireObjectEvent(this.id, 'click', arguments); + return false; + }).$().each(function() { + if(!this.style.cursor) { + this.style.cursor = 'default'; + } + }); + + // Synthetic events + + // Attach dynamic panel synthetic drag and swipe events + query.filter(function(diagramObject) { + if(diagramObject.type != "dynamicPanel") return false; + var map = diagramObject.interactionMap; + return map && ( + map.onDragStart || map.onDrag || + map.onDragDrop || map.onSwipeLeft || map.onSwipeRight || map.onSwipeUp || map.onSwipeDown); + }).each(function(diagramObject, elementId) { + $('#' + elementId) + .bind($ax.features.eventNames.mouseDownName, function(e) { $ax.drag.StartDragWidget(e.originalEvent, elementId); }); + }); + + // Attach dynamic panel synthetic scroll event + query.filter(function(diagramObject) { + if(diagramObject.type != 'dynamicPanel') return false; + var map = diagramObject.interactionMap; + return map && map.onScroll; + }).each(function(diagramObject, elementId) { + var diagrams = diagramObject.diagrams; + for(var i = 0; i < diagrams.length; i++) { + var panelId = $ax.repeater.applySuffixToElementId(elementId, '_state' + i); + (function(id) { + _attachDefaultObjectEvent($('#' + id), elementId, 'scroll', function(e) { + $ax.setjBrowserEvent(e); + _handleEvent(elementId, $ax.getEventInfoFromEvent($ax.getjBrowserEvent(), false, elementId), diagramObject.interactionMap.onScroll); + }); + })(panelId); + } + }); + + // Attach synthetic hover event + query.filter(function(diagramObject) { + var map = diagramObject.interactionMap; + return map && map.onMouseHover; + }).each(function(diagramObject, elementId) { + var MIN_HOLD_TIME = 1000; + + // So when the timeout fires, you know whether it is the same mouseenter that is active or not. + var mouseCount = 0; + // Update eventInfo regularly, so position is accurate. + var eventInfo; + + $('#' + elementId).mouseenter(function(e) { + $ax.setjBrowserEvent(e); + eventInfo = $ax.getEventInfoFromEvent($ax.getjBrowserEvent(), false, elementId); + (function(currCount) { + window.setTimeout(function() { + if(currCount == mouseCount) _raiseSyntheticEvent(elementId, 'onMouseHover', false, eventInfo, true); + }, MIN_HOLD_TIME); + })(mouseCount); + }).mouseleave(function(e) { + $ax.setjBrowserEvent(e); + mouseCount++; + }).mousemove(function(e) { + $ax.setjBrowserEvent(e); + eventInfo = $ax.getEventInfoFromEvent($ax.getjBrowserEvent(), false, elementId); + }); + }); + + // Attach synthetic tap and hold event. + query.filter(function(diagramObject) { + var map = diagramObject.interactionMap; + return map && map.onLongClick; + }).each(function(diagramObject, elementId) { + var MIN_HOLD_TIME = 750; + + // So when the timeout fires, you know whether it is the same mousedown that is active or not. + var mouseCount = 0; + + $('#' + elementId).bind($ax.features.eventNames.mouseDownName, function(e) { + (function(currCount) { + $ax.setjBrowserEvent(e); + var eventInfo = $ax.getEventInfoFromEvent($ax.getjBrowserEvent(), false, elementId); + window.setTimeout(function() { + if(currCount == mouseCount) _raiseSyntheticEvent(elementId, 'onLongClick', false, eventInfo, true); + }, MIN_HOLD_TIME); + if(e.preventDefault) e.preventDefault(); + })(mouseCount); + }).bind($ax.features.eventNames.mouseUpName, function(e) { + $ax.setjBrowserEvent(e); + mouseCount++; + }); + }); + + // Attach synthetic onSelectionChange event to droplist and listbox elements + query.filter(function(diagramObject) { + return $ax.event.HasSelectionChanged(diagramObject); + }).each(function(diagramObject, elementId) { + $('#' + elementId).bind('change', function(e) { + $ax.setjBrowserEvent(e); + _raiseSyntheticEvent(elementId, 'onSelectionChange'); + }); + }); + + // Highjack key up and key down to keep track of state of keyboard. + _event.initKeyEvents(function(initKeydown) { + query.filter('*').each(function(diagramObject, elementId) { + initKeydown('#' + elementId, elementId); + }); + }, function(initKeyup) { + query.filter('*').each(function(diagramObject, elementId) { + initKeyup('#' + elementId, elementId); + }); + }); + + // Attach synthetic onTextChange event to textbox and textarea elements + query.filter(function(diagramObject) { + return $ax.event.HasTextChanged(diagramObject); + }).each(function(diagramObject, elementId) { + var element = $('#' + elementId); + $ax.updateElementText(elementId, element.val()); + //Key down needed because when holding a key down, key up only fires once, but keydown fires repeatedly. + //Key up because last mouse down will only show the state before the last character. + element.bind('keydown', function(e) { + $ax.setjBrowserEvent(e); + $ax.event.TryFireTextChanged(elementId); + }).bind('keyup', function(e) { + $ax.setjBrowserEvent(e); + $ax.event.TryFireTextChanged(elementId); + }); + //.change(function() { $ax.event.TryFireTextChanged(elementId); }); + }); + + // Attach synthetic onCheckedChange event to radiobutton and checkbox elements + query.filter(function(diagramObject) { + return $ax.event.HasCheckedChanged(diagramObject); + }).each(function(diagramObject, elementId) { + $('#' + elementId).bind('change', function(e) { + $ax.setjBrowserEvent(e); + _tryFireCheckedChanged(elementId); + }); + }); + + // Mobile events + _event.initMobileEvents(function(initTap) { + query.filter(function(diagramObject) { + var map = diagramObject.interactionMap; + return map && (map.onClick || map.onDoubleClick); + }).each(function(diagramObject, elementId) { + initTap('#' + elementId, elementId); + }); + }, function(initMove) { + query.filter(function(diagramObject) { + var map = diagramObject.interactionMap; + return map && map.onMouseMove; + }).each(function(diagramObject, elementId) { + initMove('#' + elementId, elementId); + }); + }); + + //attach link alternate styles + query.filter(function(obj) { + return obj.type == 'hyperlink'; + }).mouseenter(function() { + var elementId = this.id; + if(_event.mouseOverIds.indexOf(elementId) != -1) return true; + _event.mouseOverIds[_event.mouseOverIds.length] = elementId; + var mouseOverObjectId = _event.mouseOverObjectId; + if(mouseOverObjectId && $ax.style.IsWidgetDisabled(mouseOverObjectId)) return true; + + $ax.style.SetLinkHover(elementId); + + var bubble = _fireObjectEvent(elementId, 'mouseenter', arguments); + + $ax.annotation.updateLinkLocations($ax.style.GetTextIdFromLink(elementId)); + return bubble; + }).mouseleave(function() { + var elementId = this.id; + $ax.splice(_event.mouseOverIds, _event.mouseOverIds.indexOf(elementId), 1); + var mouseOverObjectId = _event.mouseOverObjectId; + if(mouseOverObjectId && $ax.style.IsWidgetDisabled(mouseOverObjectId)) return true; + + $ax.style.SetLinkNotHover(elementId); + + var bubble = _fireObjectEvent(elementId, 'mouseleave', arguments); + + $ax.annotation.updateLinkLocations($ax.style.GetTextIdFromLink(elementId)); + return bubble; + }).bind($ax.features.eventNames.mouseDownName, function() { + var elementId = this.id; + var mouseOverObjectId = _event.mouseOverObjectId; + if($ax.style.IsWidgetDisabled(mouseOverObjectId)) return undefined; + + if(mouseOverObjectId) $ax.style.SetWidgetMouseDown(mouseOverObjectId, true); + $ax.style.SetLinkMouseDown(elementId); + + $ax.annotation.updateLinkLocations($ax.style.GetTextIdFromLink(elementId)); + + return false; + }).bind($ax.features.eventNames.mouseUpName, function() { + var elementId = this.id; + var mouseOverObjectId = _event.mouseOverObjectId; + if(mouseOverObjectId && $ax.style.IsWidgetDisabled(mouseOverObjectId)) return; + + if(mouseOverObjectId) $ax.style.SetWidgetMouseDown(mouseOverObjectId, false); + $ax.style.SetLinkNotMouseDown(elementId); + + $ax.annotation.updateLinkLocations($ax.style.GetTextIdFromLink(elementId)); + + }).click(function() { + var elementId = this.id; + var mouseOverObjectId = _event.mouseOverObjectId; + if(mouseOverObjectId && $ax.style.IsWidgetDisabled(mouseOverObjectId)) return undefined; + + return _fireObjectEvent(elementId, 'click', arguments); + }); + }; + $ax.initializeObjectEvents = _initializeObjectEvents; + + // Handle key up and key down events + (function() { + var _keyState = {}; + _keyState.ctrl = false; + _keyState.alt = false; + _keyState.shift = false; + _keyState.keyCode = 0; + $ax.event.keyState = function() { + return $ax.deepCopy(_keyState); + }; + + var modifierCodes = [16, 17, 18]; + $ax.event.initKeyEvents = function(handleKeydown, handleKeyup) { + handleKeydown(function(query, elementId) { + $(query).keydown(function(e) { + _keyState.ctrl = e.ctrlKey; + + _keyState.alt = e.altKey; + + _keyState.shift = e.shiftKey; + + // If a modifier was pressed, then don't set the keyCode; + if(modifierCodes.indexOf(e.keyCode) == -1) _keyState.keyCode = e.keyCode; + + $ax.setjBrowserEvent(e); + _raiseSyntheticEvent(elementId, 'onKeyDown', false, undefined, true); + }); + }); + handleKeyup(function(query, elementId) { + $(query).keyup(function(e) { + $ax.setjBrowserEvent(e); + // Fire event before updating modifiers. + _raiseSyntheticEvent(elementId, 'onKeyUp', false, undefined, true); + + _keyState.ctrl = e.ctrlKey; + + _keyState.alt = e.altKey; + + _keyState.shift = e.shiftKey; + + // If a non-modifier was lifted, clear the keycode + if(modifierCodes.indexOf(e.keyCode) == -1) _keyState.keyCode = 0; + }); + }); + }; + })(); + + // Handle adding mobile events + (function() { + // NOTE: Multi touch is NOT handled currently. + var CLICK_THRESHOLD_PX = 25; + var CLICK_THRESHOLD_PX_SQ = CLICK_THRESHOLD_PX * CLICK_THRESHOLD_PX; + var DBLCLICK_THRESHOLD_MS = 500; + + // Location in page cooridinates + var tapDownLoc; + var lastClickEventTime; + + _event.initMobileEvents = function(handleTap, handleMove) { + if(!$ax.features.supports.mobile) return; + + // Handle touch start + handleTap(function(query, elementId) { + $(query).bind('touchstart', function(e) { + // We do NOT support multiple touches. This isn't necessarily the touch we want. + var touch = e.originalEvent && e.originalEvent.changedTouches && e.originalEvent.changedTouches[0]; + if(!touch) return; + + tapDownLoc = [touch.pageX, touch.pageY]; + + var time = (new Date()).getTime(); + if(time - lastClickEventTime < DBLCLICK_THRESHOLD_MS) { + var dObj = elementId === '' ? $ax.pageData.page : $ax.getObjectFromElementId(elementId); + var axEventObject = dObj && dObj.interactionMap && dObj.interactionMap['onDoubleClick']; + if(axEventObject) e.preventDefault(); //for Chrome on Android + } + }); + + $(query).bind('touchend', function(e) { + var touch = e.originalEvent && e.originalEvent.changedTouches && e.originalEvent.changedTouches[0]; + if(!touch) return; + + var tapUpLoc = [touch.pageX, touch.pageY]; + var xDiff = tapUpLoc[0] - tapDownLoc[0]; + var yDiff = tapUpLoc[1] - tapDownLoc[1]; + + if((xDiff * xDiff + yDiff * yDiff) < CLICK_THRESHOLD_PX_SQ) { + $ax.setjBrowserEvent(e); + _raiseSyntheticEvent(elementId, 'onClick', false, undefined, true); + + var time = (new Date()).getTime(); + if(time - lastClickEventTime < DBLCLICK_THRESHOLD_MS) { + _raiseSyntheticEvent(elementId, 'onDoubleClick', false, undefined, true); + if(e.originalEvent && e.originalEvent.handled) e.preventDefault(); //for iOS + } + lastClickEventTime = time; + } + }); + }); + + // Handles touch move + handleMove(function(query, elementId) { + $(query).bind('touchmove', function(e) { + $ax.setjBrowserEvent(e); + _raiseSyntheticEvent(elementId, 'onMouseMove', false, undefined, true); + if(e.originalEvent && e.originalEvent.handled) e.preventDefault(); + }); + }); + }; + })(); + + // Handle adding device independent click events to non-widgets + (function() { + var CLICK_THRESHOLD_PX = 25; + var CLICK_THRESHOLD_PX_SQ = CLICK_THRESHOLD_PX * CLICK_THRESHOLD_PX; + + // Location in page cooridinates + var tapDownLoc; + + _event.attachClick = function(query, clickHandler) { + if(!$ax.features.supports.mobile) { + query.click(clickHandler); + return; + } + + $(query).bind('touchstart', function(e) { + // We do NOT support multiple touches. This isn't necessarily the touch we want. + var touch = e.originalEvent && e.originalEvent.changedTouches && e.originalEvent.changedTouches[0]; + if(!touch) return; + + tapDownLoc = [touch.pageX, touch.pageY]; + }); + + $(query).bind('touchend', function(e) { + var touch = e.originalEvent && e.originalEvent.changedTouches && e.originalEvent.changedTouches[0]; + if(!touch) return; + + var tapUpLoc = [touch.pageX, touch.pageY]; + var xDiff = tapUpLoc[0] - tapDownLoc[0]; + var yDiff = tapUpLoc[1] - tapDownLoc[1]; + + if((xDiff * xDiff + yDiff * yDiff) < CLICK_THRESHOLD_PX_SQ) { + clickHandler(); + } + }); + }; + })(); + + // Handle firing device independent click events on widgets + (function() { + _event.fireClick = function(elementId) { + if(!$ax.features.supports.mobile) { + $('#' + elementId).click(); + return; + } + _raiseSyntheticEvent(elementId, 'onClick', false, undefined, true); + }; + })(); + + var _mouseLocation = $ax.mouseLocation = { x: 0, y: 0 }; + var _lastmouseLocation = $ax.lastMouseLocation = { x: 0, y: 0 }; + + var _updateMouseLocation = function(e, end) { + if(!e) return; + + if(e.type != 'mousemove' && e.type != 'touchstart' && e.type != 'touchmove' && e.type != 'touchend') return; + + var newX; + var newY; + if($.browser.msie) { + newX = e.clientX + $('html').scrollLeft(); + newY = e.clientY + $('html').scrollTop(); + } else { + newX = e.pageX; + newY = e.pageY; + } + var body = $('body'); + if(body.css('position') == 'relative') newX = Math.round(newX - Number(body.css('left').replace('px', '')) - Math.max(0, ($(window).width() - body.width()) / 2)); + + if(_mouseLocation.x == newX && _mouseLocation.y == newY) return; + + _lastmouseLocation.x = _mouseLocation.x; + _lastmouseLocation.y = _mouseLocation.y; + _mouseLocation.x = newX; + _mouseLocation.y = newY; + + $ax.geometry.tick(_mouseLocation.x, _mouseLocation.y, end); + }; + _event.updateMouseLocation = _updateMouseLocation; + + var _raiseSyntheticEvent = function(elementId, eventName, skipShowDescription, eventInfo, nonSynthetic) { + // Empty string used when this is an event directly on the page. + var dObj = elementId === '' ? $ax.pageData.page : $ax.getObjectFromElementId(elementId); + var axEventObject = dObj && dObj.interactionMap && dObj.interactionMap[eventName]; + if(!axEventObject) return; + + eventInfo = eventInfo || $ax.getEventInfoFromEvent($ax.getjBrowserEvent(), skipShowDescription, elementId); + _handleEvent(elementId, eventInfo, axEventObject, false, !nonSynthetic); + }; + $ax.event.raiseSyntheticEvent = _raiseSyntheticEvent; + + var _hasSyntheticEvent = function(scriptId, eventName) { + var dObj = $ax.getObjectFromScriptId(scriptId); + var axEventObject = dObj && dObj.interactionMap && dObj.interactionMap[eventName]; + return Boolean(axEventObject); + }; + $ax.event.hasSyntheticEvent = _hasSyntheticEvent; + + var _initialize = function() { + $ax.repeater.load(); + + // Make sure key events for page are initialized first. That way they will update the value of key pressed before any other events occur. + _event.initKeyEvents(function(initKeydown) { initKeydown(window, ''); }, function(initKeyup) { initKeyup(window, ''); }); + _initializeObjectEvents($ax('*')); + + //finally, process the pageload + _pageLoad(); + // _loadDynamicPanelsAndMasters(); + // $ax.repeater.init(); + + // and wipe out the basic links. + $('.basiclink').click(function() { + return false; + }); + }; + _event.initialize = _initialize; + + $ax.event.HasTextChanged = function(diagramObject) { + if(diagramObject.type != 'textBox' && diagramObject.type != 'textArea') return false; + var map = diagramObject.interactionMap; + return map && map.onTextChange; + }; + + $ax.event.TryFireTextChanged = function(elementId) { + var query = $jobj($ax.repeater.applySuffixToElementId(elementId, '_input')); + if(!$ax.hasElementTextChanged(elementId, query.val())) return; + $ax.updateElementText(elementId, query.val()); + + $ax.event.raiseSyntheticEvent(elementId, 'onTextChange'); + }; + + $ax.event.HasSelectionChanged = function(diagramObject) { + if(diagramObject.type != 'listBox' && diagramObject.type != 'comboBox') return false; + var map = diagramObject.interactionMap; + return map && map.onSelectionChange; + }; + + $ax.event.HasCheckedChanged = function(diagramObject) { + if(diagramObject.type != 'checkbox' && diagramObject.type != 'radioButton') return false; + var map = diagramObject.interactionMap; + return map && map.onCheckedChange; + }; + + var _tryFireCheckedChanged = function(elementId) { + var isRadio = $obj(elementId).type == 'radioButton'; + if(isRadio) { + var last = $ax.updateRadioButtonSelected($('#' + elementId).attr('name'), elementId); + + // If no change, this should not fire + if(last == elementId) return; + + // Initially selecting one, last may be undefined + if(last) $ax.event.raiseSyntheticEvent(last, 'onCheckedChange'); + } + + $ax.event.raiseSyntheticEvent(elementId, 'onCheckedChange'); + }; + + var _loadDynamicPanelsAndMasters = function(objects, path, itemId) { + fireEventThroughContainers('onLoad', objects, true, ['page', 'referenceDiagramObject', 'dynamicPanel'], ['page', 'referenceDiagramObject', 'dynamicPanel', 'repeater'], path, itemId); + }; + $ax.loadDynamicPanelsAndMasters = _loadDynamicPanelsAndMasters; + + var _viewChangePageAndMasters = function() { + fireEventThroughContainers('onAdaptiveViewChange', undefined, true, ['page', 'referenceDiagramObject', 'dynamicPanel'], ['page', 'referenceDiagramObject']); + $axure.messageCenter.postMessage('adaptiveViewChange', $ax.adaptive.currentViewId); + }; + $ax.viewChangePageAndMasters = _viewChangePageAndMasters; + + // Filters include page, referenceDiagramObject, dynamicPanel, and repeater. + var fireEventThroughContainers = function(eventName, objects, synthetic, searchFilter, callFilter, path, itemId) { + // TODO: may want to pass in this as a parameter. At that point, may want to convert some of them to an option parameter. For now this is the only case + var skipShowDescription = eventName == 'onLoad'; + + // If objects undefined, load page + if(!objects) { + if(callFilter.indexOf('page') != -1) { + var map = $ax.pageData.page.interactionMap; + var pageEventInfo = $ax.getEventInfoFromEvent($ax.getjBrowserEvent(), skipShowDescription, ''); + var pageEvent = map && map[eventName]; + if(pageEvent) _handleEvent('', pageEventInfo, pageEvent, skipShowDescription, synthetic); + } + if(searchFilter.indexOf('page') != -1) fireEventThroughContainers(eventName, $ax.pageData.page.diagram.objects, synthetic, searchFilter, callFilter); + return; + } + + if(!path) path = []; + + var pathCopy = []; + for(var j = 0; j < path.length; j++) pathCopy[j] = path[j]; + + for(var i = 0; i < objects.length; i++) { + var obj = objects[i]; + if(obj.type != 'referenceDiagramObject' && obj.type != 'dynamicPanel' && obj.type != 'repeater') continue; + + pathCopy[path.length] = obj.id; + var objId = $ax.getScriptIdFromPath(pathCopy); + objId = $ax.repeater.createElementId(objId, itemId); + + if(obj.type == 'referenceDiagramObject') { + if(callFilter.indexOf('referenceDiagramObject') != -1) { + var eventInfo = $ax.getEventInfoFromEvent($ax.getjBrowserEvent(), skipShowDescription, objId); + eventInfo.isMasterEvent = true; + var axEvent = $ax.pageData.masters[obj.masterId].interactionMap[eventName]; + if(axEvent) _handleEvent(objId, eventInfo, axEvent, skipShowDescription, synthetic); + } + if(searchFilter.indexOf('referenceDiagramObject') != -1) fireEventThroughContainers(eventName, $ax.pageData.masters[obj.masterId].diagram.objects, synthetic, searchFilter, callFilter, pathCopy, itemId); + } else if(obj.type == 'dynamicPanel') { + if(callFilter.indexOf('dynamicPanel') != -1) $ax.event.raiseSyntheticEvent(objId, eventName, skipShowDescription, undefined, !synthetic); + + if(searchFilter.indexOf('dynamicPanel') != -1) { + var diagrams = obj.diagrams; + for(var j = 0; j < diagrams.length; j++) { + fireEventThroughContainers(eventName, diagrams[j].objects, synthetic, searchFilter, callFilter, path, itemId); + } + } + } else if(obj.type == 'repeater') { + // TODO: possible an option for repeater item? Now fires overall for the repeater + if(callFilter.indexOf('repeater') != -1) $ax.event.raiseSyntheticEvent(objId, eventName, skipShowDescription, undefined, !synthetic); + if(searchFilter.indexOf('repeater') != -1) { + var itemIds = $ax.getItemIdsForRepeater(objId); + for(var j = 0; j < itemIds.length; j++) { + fireEventThroughContainers(eventName, obj.objects, synthetic, searchFilter, callFilter, path, itemIds[j]); + } + } + } + } + }; + + // FOCUS stuff + (function() { + + })(); + + + + var _pageLoad = function() { + // Map of axure event names to pair of what it should attach to, and what the jquery event name is. + var PAGE_AXURE_TO_JQUERY_EVENT_NAMES = { + 'onScroll': [window, 'scroll'], + //'onResize': [window, 'resize'], + 'onContextMenu': [window, 'contextmenu'] + }; + if(!$ax.features.supports.mobile) { + PAGE_AXURE_TO_JQUERY_EVENT_NAMES.onClick = ['html', 'click']; + PAGE_AXURE_TO_JQUERY_EVENT_NAMES.onDoubleClick = ['html', 'dblclick']; + PAGE_AXURE_TO_JQUERY_EVENT_NAMES.onMouseMove = ['html', 'mousemove']; + } else { + _event.initMobileEvents(function(initTap) { initTap(window, ''); }, function(initMove) { initMove(window, ''); }); + $(window).bind($ax.features.eventNames.mouseDownName, _updateMouseLocation); + $(window).bind($ax.features.eventNames.mouseUpName, function(e) { _updateMouseLocation(e, true); }); + } + $(window).bind($ax.features.eventNames.mouseMoveName, _updateMouseLocation); + $(window).scroll($ax.flyoutManager.reregisterAllFlyouts); + + for(key in PAGE_AXURE_TO_JQUERY_EVENT_NAMES) { + if(!PAGE_AXURE_TO_JQUERY_EVENT_NAMES.hasOwnProperty(key)) continue; + (function(axureName) { + var jqueryEventNamePair = PAGE_AXURE_TO_JQUERY_EVENT_NAMES[axureName]; + $(jqueryEventNamePair[0])[jqueryEventNamePair[1]](function(e) { + $ax.setjBrowserEvent(e); + return fireEventThroughContainers(axureName, undefined, false, ['page', 'referenceDiagramObject', 'dynamicPanel', 'repeater'], ['page', 'referenceDiagramObject']); + }); + })(key); + } + + $axure.resize(function(e) { + $ax.setjBrowserEvent(e); + return fireEventThroughContainers('onResize', undefined, false, ['page', 'referenceDiagramObject', 'dynamicPanel', 'repeater'], ['page', 'referenceDiagramObject']); + }); + }; + _event.pageLoad = _pageLoad; + + +}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/expr.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/expr.js" new file mode 100644 index 0000000..721fbbe --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/expr.js" @@ -0,0 +1,457 @@ +// ******* Expr MANAGER ******** // +$axure.internal(function($ax) { + var _expr = $ax.expr = {}; + var _binOpHandlers = { + '&&': function(left, right) { return $ax.getBool(left) && $ax.getBool(right); }, + '||': function(left, right) { return $ax.getBool(left) || $ax.getBool(right); }, + '==': function(left, right) { return isEqual(left, right); }, + '!=': function(left, right) { return !isEqual(left, right); }, + '>': function(left, right) { return left > Number(right); }, + '<': function(left, right) { return left < Number(right); }, + '>=': function(left, right) { return left >= Number(right); }, + '<=': function(left, right) { return left <= Number(right); } + }; + + var isEqual = function(left, right) { + if(left instanceof Object && right instanceof Object) { + var prop; + // Go through all of lefts properties and compare them to rights. + for(prop in left) { + if(!left.hasOwnProperty(prop)) continue; + // If left has a property that the right doesn't they are not equal. + if(!right.hasOwnProperty(prop)) return false; + // If any of their properties are not equal, they are not equal. + if(!isEqual(left[prop], right[prop])) return false; + } + + for(prop in right) { + // final check to make sure right doesn't have some extra properties that make them not equal. + if(left.hasOwnProperty(prop) != right.hasOwnProperty(prop)) return false; + } + + return true; + } + return $ax.getBool(left) == $ax.getBool(right); + }; + + var _exprHandlers = {}; + _exprHandlers.array = function(expr, eventInfo) { + var returnVal = []; + for(var i = 0; i < expr.items.length; i++) { + returnVal[returnVal.length] = _evaluateExpr(expr.items[i], eventInfo); + } + return returnVal; + }; + + _exprHandlers.binaryOp = function(expr, eventInfo) { + var left = expr.leftExpr && _evaluateExpr(expr.leftExpr, eventInfo); + var right = expr.rightExpr && _evaluateExpr(expr.rightExpr, eventInfo); + + if(left == undefined || right == undefined) return false; + return _binOpHandlers[expr.op](left, right); + }; + + _exprHandlers.block = function(expr, eventInfo) { + var subExprs = expr.subExprs; + for(var i = 0; i < subExprs.length; i++) { + _evaluateExpr(subExprs[i], eventInfo); //ignore the result + } + }; + + _exprHandlers.booleanLiteral = function(expr) { + return expr.value; + }; + + _exprHandlers.nullLiteral = function() { return null; }; + + _exprHandlers.pathLiteral = function(expr, eventInfo) { + if(expr.isThis) return [eventInfo.srcElement]; + if(expr.isFocused && window.lastFocusedControl) { + window.lastFocusedControl.focus(); + return [window.lastFocusedControl.getAttribute('id')]; + } + if(expr.isTarget) return [eventInfo.targetElement]; + + return $ax.getElementIdsFromPath(expr.value, eventInfo); + }; + + _exprHandlers.panelDiagramLiteral = function(expr, eventInfo) { + var elementIds = $ax.getElementIdsFromPath(expr.panelPath, eventInfo); + var elementIdsWithSuffix = []; + var suffix = '_state' + expr.panelIndex; + for(var i = 0; i < elementIds.length; i++) { + elementIdsWithSuffix[i] = $ax.repeater.applySuffixToElementId(elementIds[i], suffix); + } + return $jobj(elementIdsWithSuffix).data('label'); + }; + + _exprHandlers.fcall = function(expr, eventInfo) { + var oldTarget = eventInfo.targetElement; + var targets = []; + var fcallArgs = []; + var exprArgs = expr.arguments; + for(var i = 0; i < expr.arguments.length; i++) { + var exprArg = exprArgs[i]; + var fcallArg = ''; + if(targets.length) { + for(var j = 0; j < targets.length; j++) { + eventInfo.targetElement = targets[j]; + fcallArgs[j][i] = _evaluateExpr(exprArg, eventInfo); + } + } else { + fcallArg = _evaluateExpr(exprArg, eventInfo); + fcallArgs[i] = fcallArg; + } + + // We do support null exprArgs... + // TODO: This makes 2 assumptions that may change in the future. 1. The pathLiteral is the always the first arg. 2. there is always only 1 pathLiteral + if(exprArg && exprArg.exprType == 'pathLiteral') { + targets = fcallArg; + + // fcallArgs is now an array of an array of args + for(j = 0; j < targets.length; j++) fcallArgs[j] = [[fcallArg[j]]]; + } + } + + // we want to preserve the target element from outside this function. + eventInfo.targetElement = oldTarget; + + var retval = ''; + if(targets.length) { + // Go backwards so retval is the first item. + for(i = targets.length - 1; i >= 0; i--) { + var args = fcallArgs[i]; + // Add event info to the end + args[args.length] = eventInfo; + retval = _exprFunctions[expr.functionName].apply(this, args); + } + } else fcallArgs[fcallArgs.length] = eventInfo; + return targets.length ? retval : _exprFunctions[expr.functionName].apply(this, fcallArgs); + }; + + _exprHandlers.globalVariableLiteral = function(expr) { + return expr.variableName; + }; + + _exprHandlers.keyPressLiteral = function(expr) { + var keyInfo = {}; + keyInfo.keyCode = expr.keyCode; + keyInfo.ctrl = expr.ctrl; + keyInfo.alt = expr.alt; + keyInfo.shift = expr.shift; + + return keyInfo; + }; + + _exprHandlers.adaptiveViewLiteral = function(expr) { + return expr.id; + }; + + var _substituteSTOs = function(expr, eventInfo) { + //first evaluate the local variables + var scope = {}; + for(var varName in expr.localVariables) { + scope[varName] = $ax.expr.evaluateExpr(expr.localVariables[varName], eventInfo); + } + + // TODO: [ben] Date and data object (obj with info for url or image) both need to return non-strings. + var i = 0; + var retval; + var retvalString = expr.value.replace(/\[\[(?!\[)(.*?)\]\](?=\]*)/g, function(match) { + var sto = expr.stos[i++]; + if(sto.sto == 'error') return match; + try { + var result = $ax.evaluateSTO(sto, scope, eventInfo); + } catch(e) { + return match; + } + + if((result instanceof Object) && i == 1 && expr.value.substring(0, 2) == '[[' && + expr.value.substring(expr.value.length - 2) == ']]') { + // If the result was an object, this was the first result, and the whole thing was this expresion. + retval = result; + } + return ((result instanceof Object) && (result.label || result.text)) || result; + }); + // If more than one group returned, the object is not valid + if(i != 1) retval = false; + return retval || retvalString; + }; + + _exprHandlers.htmlLiteral = function(expr, eventInfo) { + return _substituteSTOs(expr, eventInfo); + }; + + _exprHandlers.stringLiteral = function(expr, eventInfo) { + return _substituteSTOs(expr, eventInfo); + }; + + var _exprFunctions = {}; + + _exprFunctions.SetCheckState = function(elementIds, value) { + var toggle = value == 'toggle'; + var boolValue = Boolean(value) && value != 'false'; + + for(var i = 0; i < elementIds.length; i++) { + var query = $ax('#' + elementIds[i]); + query.selected(toggle ? !query.selected() : boolValue); + } + }; + + _exprFunctions.SetSelectedOption = function(elementIds, value) { + for(var i = 0; i < elementIds.length; i++) { + var elementId = elementIds[i]; + var obj = $jobj($ax.INPUT(elementId)); + + if(obj.val() == value) return; + obj.val(value); + + if($ax.event.HasSelectionChanged($ax.getObjectFromElementId(elementId))) $ax.event.raiseSyntheticEvent(elementId, 'onSelectionChange'); + } + }; + + _exprFunctions.SetGlobalVariableValue = function(varName, value) { + $ax.globalVariableProvider.setVariableValue(varName, value); + }; + + _exprFunctions.SetWidgetFormText = function(elementIds, value) { + for(var i = 0; i < elementIds.length; i++) { + var elementId = elementIds[i]; + var inputId = $ax.repeater.applySuffixToElementId(elementId, '_input'); + + var obj = $jobj(inputId); + if(obj.val() == value) return; + obj.val(value); + $ax.placeholderManager.updatePlaceholder(elementId, !value); + if($ax.event.HasTextChanged($ax.getObjectFromElementId(elementId))) $ax.event.TryFireTextChanged(elementId); + } + }; + + _exprFunctions.SetFocusedWidgetText = function(elementId, value) { + if(window.lastFocusedControl) { + window.lastFocusedControl.focus(); + window.lastFocusedControl.value = value; + } + }; + + _exprFunctions.GetRtfElementHeight = function(rtfElement) { + if(rtfElement.innerHTML == '') rtfElement.innerHTML = ' '; + return rtfElement.offsetHeight; + }; + + _exprFunctions.SetWidgetRichText = function(ids, value, plain) { + // Converts dates, widgetinfo, and the like to strings. + value = _exprFunctions.ToString(value); + + //Replace any newlines with line breaks + value = value.replace(/\r\n/g, '
    ').replace(/\n/g, '
    '); + + for(var i = 0; i < ids.length; i++) { + var id = ids[i]; + + // If calling this on button shape, get the id of the rich text panel inside instead + var type = $obj(id).type; + if(type != 'richTextPanel' && type != 'hyperlink') { + id = $jobj(id).children('.text')[0].id; + } + + var element = window.document.getElementById(id); + $ax.visibility.SetVisible(element, true); + + var spans = $jobj(id).find('span'); + if(plain) { + // Wrap in span and p, style them accordingly. + var span = $(''); + if(spans.length > 0) { + span.attr('style', $(spans[0]).attr('style')); + span.attr('id', $(spans[0]).attr('id')); + } + span.html(value); + var p = $('

    '); + var ps = $jobj(id).find('p'); + if(ps.length > 0) { + p.attr('style', $(ps[0]).attr('style')); + p.attr('id', $(ps[0]).attr('id')); + } + p.append(span); + value = $('
    ').append(p).html(); + } + + $ax.style.transformTextWithVerticalAlignment(id, function() { + element.innerHTML = value; + }); + + if(!plain) $ax.style.CacheOriginalText(id, true); + } + }; + + _exprFunctions.GetCheckState = function(ids) { + return $ax('#' + ids[0]).selected(); + }; + + _exprFunctions.GetSelectedOption = function(ids) { + return $jobj($ax.INPUT(ids[0]))[0].value; + }; + + _exprFunctions.GetNum = function(str) { + //Setting a GlobalVariable to some blank text then setting a widget to the value of that variable would result in 0 not "" + //I have fixed this another way so commenting this should be fine now + //if (!str) return ""; + return isNaN(str) ? str : Number(str); + }; + + _exprFunctions.GetGlobalVariableValue = function(id) { + return $ax.globalVariableProvider.getVariableValue(id); + }; + + _exprFunctions.GetGlobalVariableLength = function(id) { + return _exprFunctions.GetGlobalVariableValue(id).length; + }; + + _exprFunctions.GetWidgetText = function(ids) { + var input = $ax.INPUT(ids[0]); + return $ax('#' + ($jobj(input).length ? input : ids[0])).text(); + }; + + _exprFunctions.GetFocusedWidgetText = function() { + if(window.lastFocusedControl) { + return window.lastFocusedControl.value; + } else { + return ""; + } + }; + + _exprFunctions.GetWidgetValueLength = function(ids) { + var id = ids[0]; + if(!id) return undefined; + + var obj = $jobj($ax.INPUT(id)); + if(!obj.length) obj = $jobj(id); + return obj[0].value.length; + }; + + _exprFunctions.GetPanelState = function(ids) { + var id = ids[0]; + if(!id) return undefined; + var stateId = $ax.visibility.GetPanelState(id); + return stateId && $jobj(stateId).data('label'); + }; + + _exprFunctions.GetWidgetVisibility = function(ids) { + var id = ids[0]; + if(!id) return undefined; + return $ax.visibility.IsIdVisible(id); + }; + + // ***************** Validation Functions ***************** // + + _exprFunctions.IsValueAlpha = function(val) { + var isAlphaRegex = new RegExp("^[a-z\\s]+$", "gi"); + return isAlphaRegex.test(val); + }; + + _exprFunctions.IsValueNumeric = function(val) { + var isNumericRegex = new RegExp("^[0-9,\\.\\s]+$", "gi"); + return isNumericRegex.test(val); + }; + + _exprFunctions.IsValueAlphaNumeric = function(val) { + var isAlphaNumericRegex = new RegExp("^[0-9a-z\\s]+$", "gi"); + return isAlphaNumericRegex.test(val); + }; + + _exprFunctions.IsValueOneOf = function(val, values) { + for(var i = 0; i < values.length; i++) { + var option = values[i]; + if(val == option) return true; + } + //by default, return false + return false; + }; + + _exprFunctions.IsValueNotAlpha = function(val) { + return !_exprFunctions.IsValueAlpha(val); + }; + + _exprFunctions.IsValueNotNumeric = function(val) { + return !_exprFunctions.IsValueNumeric(val); + }; + + _exprFunctions.IsValueNotAlphaNumeric = function(val) { + return !_exprFunctions.IsValueAlphaNumeric(val); + }; + + _exprFunctions.IsValueNotOneOf = function(val, values) { + return !_exprFunctions.IsValueOneOf(val, values); + }; + + _exprFunctions.GetKeyPressed = function(eventInfo) { + return eventInfo.keyInfo; + }; + + _exprFunctions.GetCursorRectangles = function() { + var rects = new Object(); + rects.lastRect = new $ax.drag.Rectangle($ax.lastMouseLocation.x, $ax.lastMouseLocation.y, 1, 1); + rects.currentRect = new $ax.drag.Rectangle($ax.mouseLocation.x, $ax.mouseLocation.y, 1, 1); + return rects; + }; + + _exprFunctions.GetWidgetRectangles = function(elementId, eventInfo) { + var rects = new Object(); + var jObj = $jobj(elementId); + rects.lastRect = new $ax.drag.Rectangle( + $ax.legacy.getAbsoluteLeft(jObj), + $ax.legacy.getAbsoluteTop(jObj), + jObj.width(), + jObj.height()); + rects.currentRect = rects.lastRect; + return rects; + }; + + _exprFunctions.GetWidget = function(elementId) { + return $ax.getWidgetInfo(elementId[0]); + }; + + _exprFunctions.GetAdaptiveView = function() { + return $ax.adaptive.currentViewId || ''; + }; + + _exprFunctions.IsEntering = function(movingRects, targetRects) { + return !movingRects.lastRect.IntersectsWith(targetRects.currentRect) && movingRects.currentRect.IntersectsWith(targetRects.currentRect); + }; + + _exprFunctions.IsLeaving = function(movingRects, targetRects) { + return movingRects.lastRect.IntersectsWith(targetRects.currentRect) && !movingRects.currentRect.IntersectsWith(targetRects.currentRect); + }; + + var _IsOver = _exprFunctions.IsOver = function(movingRects, targetRects) { + return movingRects.currentRect.IntersectsWith(targetRects.currentRect); + }; + + _exprFunctions.IsNotOver = function(movingRects, targetRects) { + return !_IsOver(movingRects, targetRects); + }; + + _exprFunctions.ValueContains = function(inputString, value) { + return inputString.indexOf(value) > -1; + }; + + _exprFunctions.ValueNotContains = function(inputString, value) { + return !_exprFunctions.ValueContains(inputString, value); + }; + + _exprFunctions.ToString = function(value) { + if(value.isWidget) { + return value.Text; + } + return String(value); + }; + + var _evaluateExpr = $ax.expr.evaluateExpr = function(expr, eventInfo, toString) { + if(expr === undefined || expr === null) return undefined; + var result = _exprHandlers[expr.exprType](expr, eventInfo); + return toString ? _exprFunctions.ToString(result) : result; + }; + + +}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/flyout.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/flyout.js" new file mode 100644 index 0000000..6c93936 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/flyout.js" @@ -0,0 +1,263 @@ +// ******* Flyout MANAGER ******** // +$axure.internal(function($ax) { + var _flyoutManager = $ax.flyoutManager = {}; + + var getFlyoutLabel = function(panelId) { + return panelId + '_flyout'; + }; + + var _unregisterPanel = function(panelId, keepShown) { + $ax.geometry.unregister(getFlyoutLabel(panelId)); + if(panelToSrc[panelId]) { + $ax.style.RemoveRolloverOverride(panelToSrc[panelId]); + delete panelToSrc[panelId]; + } + if(!keepShown) { + $ax.action.addAnimation(panelId, function() { + $ax('#' + panelId).hide(); + }); + } + }; + _flyoutManager.unregisterPanel = _unregisterPanel; + + var genPoint = $ax.geometry.genPoint; + + var _updateFlyout = function(panelId) { + var label = getFlyoutLabel(panelId); + if(!$ax.geometry.polygonRegistered(label)) return; + var info = $ax.geometry.getPolygonInfo(label); + var rects = info && info.rects; + + var targetWidget = $ax.getWidgetInfo(panelId); + rects.target = $ax.geometry.genRect(targetWidget); + + // Src will stay the same, just updating + $ax.flyoutManager.registerFlyout(rects, panelId, panelToSrc[panelId]); + + if(!$ax.geometry.checkInsideRegion(label)) _unregisterPanel(panelId); + }; + _flyoutManager.updateFlyout = _updateFlyout; + + var panelToSrc = {}; + var _registerFlyout = function(rects, panelId, srcId) { + var label = _getFlyoutLabel(panelId); + var callback = function(info) { + // If leaving object or already outside it, then unregister, otherwise just return + if(!info.exiting && !info.outside) return; + _unregisterPanel(panelId); + }; + var points = []; + + var lastSrcId = panelToSrc[panelId]; + if(lastSrcId != srcId) { + if(lastSrcId) $ax.style.RemoveRolloverOverride(lastSrcId); + if(srcId) { + $ax.style.AddRolloverOverride(srcId); + panelToSrc[panelId] = srcId; + } else delete panelToSrc[panelId]; + } + + // rects should be one or two rectangles + if(!rects.src) { + var rect = rects.target; + points.push(genPoint(rect.Left(), rect.Top())); + points.push(genPoint(rect.Right(), rect.Top())); + points.push(genPoint(rect.Right(), rect.Bottom())); + points.push(genPoint(rect.Left(), rect.Bottom())); + } else { + var r0 = rects.src; + var r1 = rects.target; + + // Right left of right, left right of left, top below top, bottom above bottom + var rlr = r0.Right() <= r1.Right(); + var lrl = r0.Left() >= r1.Left(); + var tbt = r0.Top() >= r1.Top(); + var bab = r0.Bottom() <= r1.Bottom(); + + var info = { rlr: rlr, lrl: lrl, tbt: tbt, bab: bab }; + + if((rlr && lrl) || (tbt && bab)) { + points = getSmallPolygon(r0, r1, info); + } else { + points = getLargePolygon(r0, r1, info); + } + } + + $ax.geometry.registerPolygon(label, points, callback, { rects: rects }); + }; + _flyoutManager.registerFlyout = _registerFlyout; + + var _getFlyoutLabel = function(panelId) { + return panelId + '_flyout'; + }; + + var _reregisterAllFlyouts = function() { + for(var panelId in panelToSrc) _reregisterFlyout(panelId); + }; + _flyoutManager.reregisterAllFlyouts = _reregisterAllFlyouts; + + var _reregisterFlyout = function(panelId) { + var rects = $ax.geometry.getPolygonInfo(getFlyoutLabel(panelId)).rects; + _registerFlyout(rects, panelId, panelToSrc[panelId]); + }; + + // This is the reduced size polygon connecting r0 to r1 by means of horizontal or vertical lines. + var getSmallPolygon = function(r0, r1, info) { + var points = []; + + // NOTE: currently I make the assumption that if horizontal/vertical connecting lines from the src hit the target + // Meaning if horizontal, rlr and lrl are true, and if vertical, tbt and bab are true. + + var r0Left = r0.Left(); + var r0Right = r0.Right(); + var r0Top = r0.Top(); + var r0Bottom = r0.Bottom(); + var r1Left = r1.Left(); + var r1Right = r1.Right(); + var r1Top = r1.Top(); + var r1Bottom = r1.Bottom(); + + points.push(genPoint(r1Left, r1Top)); + + if(!info.tbt) { + points.push(genPoint(r0Left, r1Top)); + points.push(genPoint(r0Left, r0Top)); + points.push(genPoint(r0Right, r0Top)); + points.push(genPoint(r0Right, r1Top)); + } + + points.push(genPoint(r1Right, r1Top)); + + if(!info.rlr) { + points.push(genPoint(r1Right, r0Top)); + points.push(genPoint(r0Right, r0Top)); + points.push(genPoint(r0Right, r0Bottom)); + points.push(genPoint(r1Right, r0Bottom)); + } + + points.push(genPoint(r1Right, r1Bottom)); + + if(!info.bab) { + points.push(genPoint(r0Right, r1Bottom)); + points.push(genPoint(r0Right, r0Bottom)); + points.push(genPoint(r0Left, r0Bottom)); + points.push(genPoint(r0Left, r1Bottom)); + } + + points.push(genPoint(r1Left, r1Bottom)); + + if(!info.lrl) { + points.push(genPoint(r1Left, r0Bottom)); + points.push(genPoint(r0Left, r0Bottom)); + points.push(genPoint(r0Left, r0Top)); + points.push(genPoint(r1Left, r0Top)); + } + + return points; + }; + + // This is the original algorithm that connects the most extream corners to make polygon + var getLargePolygon = function(r0, r1, info) { + var points = []; + + var r0Left = r0.Left(); + var r0Right = r0.Right(); + var r0Top = r0.Top(); + var r0Bottom = r0.Bottom(); + var r1Left = r1.Left(); + var r1Right = r1.Right(); + var r1Top = r1.Top(); + var r1Bottom = r1.Bottom(); + + // Top lefts + if(info.tbt) { + if(!info.lrl) points.push(genPoint(r0Left, r0Top)); + points.push(genPoint(r1Left, r1Top)); + } else { + if(info.lrl) points.push(genPoint(r1Left, r1Top)); + points.push(genPoint(r0Left, r0Top)); + } + + // Top rights + if(info.tbt) { + points.push(genPoint(r1Right, r1Top)); + if(!info.rlr) points.push(genPoint(r0Right, r0Top)); + } else { + points.push(genPoint(r0Right, r0Top)); + if(info.rlr) points.push(genPoint(r1Right, r1Top)); + } + + // Bottom rights + if(info.bab) { + if(!info.rlr) points.push(genPoint(r0Right, r0Bottom)); + points.push(genPoint(r1Right, r1Bottom)); + } else { + if(info.rlr) points.push(genPoint(r1Right, r1Bottom)); + points.push(genPoint(r0Right, r0Bottom)); + } + + // Bottom Lefts + if(info.bab) { + points.push(genPoint(r1Left, r1Bottom)); + if(!info.lrl) points.push(genPoint(r0Left, r0Bottom)); + } else { + points.push(genPoint(r0Left, r0Bottom)); + if(info.lrl) points.push(genPoint(r1Left, r1Bottom)); + } + return points; + }; +}); + +// ******* Placeholder Manager ********* // + +$axure.internal(function($ax) { + var _placeholderManager = $ax.placeholderManager = {}; + var idToPlaceholderInfo = {}; + + var _registerPlaceholder = function(elementId, text, password) { + idToPlaceholderInfo[elementId] = { text: text, password: password, active: false }; + }; + _placeholderManager.registerPlaceholder = _registerPlaceholder; + + var _updatePlaceholder = function(elementId, active, clearText) { + var inputId = $ax.repeater.applySuffixToElementId(elementId, '_input'); + + var info = idToPlaceholderInfo[elementId]; + if(!info || info.active == active) return; + info.active = active; + $ax.style.SetWidgetPlaceholder(elementId, active, active ? info.text : clearText ? '' : $jobj(inputId).val(), info.password); + }; + _placeholderManager.updatePlaceholder = _updatePlaceholder; + + var _isActive = function(elementId) { + var info = idToPlaceholderInfo[elementId]; + return Boolean(info && info.active); + }; + _placeholderManager.isActive = _isActive; + + var _selectRange = function(elementId, start, end) { + $jobj(elementId).each(function() { + if(this.setSelectionRange) { + this.focus(); + this.setSelectionRange(start, end); + } else if(this.createTextRange) { + var range = this.createTextRange(); + range.collapse(true); + range.moveEnd('character', end); + range.moveStart('character', start); + range.select(); + } + }); + }; + _placeholderManager.selectRange = _selectRange; + + var _moveCaret = function(id, index) { + var inputIndex = id.indexOf('_input'); + if(inputIndex == -1) return; + var inputId = id.substring(0, inputIndex); + + if(!_isActive(inputId)) return; + _selectRange(id, index, index); + }; + _placeholderManager.moveCaret = _moveCaret; +}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/geometry.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/geometry.js" new file mode 100644 index 0000000..ae05135 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/geometry.js" @@ -0,0 +1,289 @@ +// ******* Region MANAGER ******** // +$axure.internal(function($ax) { + var _geometry = $ax.geometry = {}; + var regionMap = {}; + var regionList = []; + + var _unregister = function(label) { + var regionIndex = regionList.indexOf(label); + if(regionIndex != -1) { + var end = $ax.splice(regionList, regionIndex + 1); + $ax.splice(regionList, regionIndex, regionList.length - regionIndex); + regionList = regionList.concat(end); + } + delete regionMap[label]; + }; + _geometry.unregister = _unregister; + + var clear = function() { + regionMap = {}; + regionList = []; + }; + + var _polygonRegistered = function(label) { + return Boolean(regionMap[label]); + }; + _geometry.polygonRegistered = _polygonRegistered; + + // Must be counterclockwise, or enter/exit will be wrong + var _registerPolygon = function(label, points, callback, info) { + var regionIndex = regionList.indexOf(label); + if(regionIndex == -1) regionList.push(label); + regionMap[label] = { points: points, callback: callback, info: info }; + }; + _geometry.registerPolygon = _registerPolygon; + + var _getPolygonInfo = function(label) { + if(!_polygonRegistered(label)) return undefined; + return regionMap[label].info; + }; + _geometry.getPolygonInfo = _getPolygonInfo; + + + + var _genRect = function(info) { + var x = info.pagex; + var y = info.pagey; + var w = info.width; + var h = info.height; + var r = x + w; + var b = y + h; + + var rect = { + X: function() { return x; }, + Y: function() { return y; }, + Wigth: function() { return w; }, + Height: function() { return h; }, + Left: function() { return x; }, + Right: function() { return r; }, + Top: function() { return y; }, + Bottom: function() { return b; } + }; + return rect; + }; + _geometry.genRect = _genRect; + + var _genPoint = function(x, y) { + return { x: x, y: y }; + }; + _geometry.genPoint = _genPoint; + + var oldPoint = _genPoint(0, 0); + _geometry.tick = function(x, y, end) { + var lastPoint = oldPoint; + var nextPoint = oldPoint = _genPoint(x, y); + var line = { p1: lastPoint, p2: nextPoint }; + if(!regionList.length) return; + + for(var i = 0; i < regionList.length; i++) { + var region = regionMap[regionList[i]]; + var points = region.points; + if(!region.checked) { + if(!_checkInside(points, $ax.mouseLocation)) { + region.callback({ outside: true }); + continue; + } + region.checked = true; + } + for(var j = 0; j < points.length; j++) { + var startSegment = points[j]; + var endSegment = points[(j + 1) % points.length]; + var intersectInfo = linesIntersect(line, { p1: startSegment, p2: endSegment }); + if(intersectInfo) { + region.callback(intersectInfo); + break; + } + } + } + + if(end) clear(); + }; + + // Info if the one line touches the other (even barely), false otherwise + // Info includes point, if l1 is entering or exiting l2, and any ties that happened, or parallel info + var linesIntersect = function(l1, l2) { + var retval = {}; + var ties = {}; + + var l1p1 = l1.p1.x < l1.p2.x || (l1.p1.x == l1.p2.x && l1.p1.y < l1.p2.y) ? l1.p1 : l1.p2; + var l1p2 = l1.p1.x < l1.p2.x || (l1.p1.x == l1.p2.x && l1.p1.y < l1.p2.y) ? l1.p2 : l1.p1; + var m1 = (l1p2.y - l1p1.y) / (l1p2.x - l1p1.x); + + var l2p1 = l2.p1.x < l2.p2.x || (l2.p1.x == l2.p2.x && l2.p1.y < l2.p2.y) ? l2.p1 : l2.p2; + var l2p2 = l2.p1.x < l2.p2.x || (l2.p1.x == l2.p2.x && l2.p1.y < l2.p2.y) ? l2.p2 : l2.p1; + var m2 = (l2p2.y - l2p1.y) / (l2p2.x - l2p1.x); + + var l1Vert = l1.p1.x == l1.p2.x; + var l2Vert = l2.p1.x == l2.p2.x; + if(l1Vert || l2Vert) { + if(l1Vert && l2Vert) { + // If the lines don't follow the same path, return + if(l1p1.x != l2p1.x) return false; + // if they never meet, return + if(l1p2.y < l2p1.y || l1p1.y > l2p2.y) return false; + var firstVert = l1p1.y >= l2p1.y ? l1p1 : l2p1; + var secondVert = l1p2.y <= l2p2.y ? l1p2 : l2p2; + // First is from the perspective of l1 + retval.parallel = { + first: l1p1 == l1.p1 ? firstVert : secondVert, + second: l1p2 == l1.p2 ? secondVert : firstVert, + sameDirection: (l1p1 == l1.p1) == (l2p1 == l2.p1) + }; + + return retval; + } + + var x1 = l2Vert ? l1p1.x : l2p1.x; + var x2 = l2Vert ? l1p2.x : l2p2.x; + var xVert = l2Vert ? l2p1.x : l1p1.x; + + var y = l2Vert ? l1p1.y + (xVert - x1) * m1 : l2p1.y + (xVert - x1) * m2; + var y1 = l2Vert ? l2p1.y : l1p1.y; + var y2 = l2Vert ? l2p2.y : l1p2.y; + if(xVert >= x1 && xVert <= x2 && y >= y1 && y <= y2) { + retval.point = { x: xVert, y: y }; + retval.exiting = l2Vert == (y1 == (l2Vert ? l2.p1.y : l1.p1.y)) == (x1 == (l2Vert ? l1.p1.x : l2.p1.x)); + retval.entering = !retval.exiting; + + // Calculate ties + if(x1 == xVert) { + ties[l2Vert ? 'l1' : 'l2'] = (x1 == (l2Vert ? l1.p1.x : l2.p1.x)) ? 'start' : 'end'; + retval.ties = ties; + } else if(x2 == xVert) { + ties[l2Vert ? 'l1' : 'l2'] = (x2 == (l2Vert ? l1.p2.x : l2.p2.x)) ? 'end' : 'start'; + retval.ties = ties; + } + if(y1 == y) { + ties[l2Vert ? 'l2' : 'l1'] = (y1 == (l2Vert ? l2.p1.y : l1.p1.y)) ? 'start' : 'end'; + retval.ties = ties; + } else if(y2 == y) { + ties[l2Vert ? 'l2' : 'l1'] = (y2 == (l2Vert ? l2.p2.y : l1.p2.y)) ? 'end' : 'start'; + retval.ties = ties; + } + + return retval; + } + return false; + } + // If here, no vertical lines + + if(m1 == m2) { + // If the lines don't follow the same path, return + if(l1p1.y != (l2p1.y + (l1p1.x - l2p1.x) * m1)) return false; + // if they never meet, return + if(l1p2.x < l2p1.x || l1p1.x > l2p2.x) return false; + var first = l1p1.x >= l2p1.x ? l1p1 : l2p1; + var second = l1p2.x <= l2p2.x ? l1p2 : l2p2; + // First is from the perspective of l1 + retval.parallel = { + first: l1p1 == l1.p1 ? first : second, + second: l1p2 == l1.p2 ? second : first, + sameDirection: (l1p1 == l1.p1) == (l2p1 == l2.p1) + }; + + return retval; + } + + var x = (l2p1.y - l2p1.x * m2 - l1p1.y + l1p1.x * m1) / (m1 - m2); + + // Check if x is out of bounds + if(x >= l1p1.x && x <= l1p2.x && x >= l2p1.x && x <= l2p2.x) { + var y = l1p1.y + (x - l1p1.x) * m1; + retval.point = { x: x, y: y }; + retval.entering = m1 > m2 == (l1p1 == l1.p1) == (l2p1 == l2.p1); + retval.exiting = !retval.entering; + + // Calculate ties + if(l1.p1.x == x) { + ties.l1 = 'start'; + retval.ties = ties; + } else if(l1.p2.x == x) { + ties.l1 = 'end'; + retval.ties = ties; + } + if(l2.p1.x == x) { + ties.l2 = 'start'; + retval.ties = ties; + } else if(l2.p2.x == x) { + ties.l2 = 'end'; + retval.ties = ties; + } + + return retval; + } + return false; + }; + + var _checkInsideRegion = function(label, point) { + if(!_polygonRegistered(label)) return false; + + return _checkInside(regionMap[label].points, point || $ax.mouseLocation); + }; + _geometry.checkInsideRegion = _checkInsideRegion; + + // Returns true if point is inside the polygon, including ties + var _checkInside = function(polygon, point) { + // Make horizontal line wider than the polygon, with the y of point to test location + var firstX = polygon[0].x; + var secondX = firstX; + var i; + for(i = 1; i < polygon.length; i++) { + var polyX = polygon[i].x; + firstX = Math.min(firstX, polyX); + secondX = Math.max(secondX, polyX); + } + var line = { + p1: _genPoint(--firstX, point.y), + p2: _genPoint(++secondX, point.y) + }; + + // If entered true, with closest intersection says you are inside the polygon. + var entered = false; + // Closest is the closest intersection to the left of the point + var closest = line.p1.x; + // This is for if intersections hit the same point, to find out which is correct + var cos = -2; + + var getCos = function(line) { + var x = line.p2.x - line.p1.x; + var y = line.p2.y - line.p1.y; + return x / Math.sqrt(x * x + y * y); + }; + + for(i = 0; i < polygon.length; i++) { + var polyLine = { p1: polygon[i], p2: polygon[(i + 1) % polygon.length] }; + var intersectInfo = linesIntersect(line, polyLine); + if(!intersectInfo) continue; + + if(intersectInfo.parallel) { + // Only really care about this if it actually touches the point + if(intersectInfo.parallel.first.x <= point.x && intersectInfo.parallel.second.x >= point.x) return true; + continue; + } + + var intersectionX = intersectInfo.point.x; + if(intersectionX > point.x || intersectionX < closest) continue; + if(intersectionX == point.x) return true; + + // If closer than last time, reset cosine. + if(intersectionX != closest) cos = -2; + + // For getting cosine, need to possibly reverse the direction of polyLine. + if(intersectInfo.ties) { + // Tie must be on l2, if the ties is end, reverse so cosine indicates how close the angle is to that of 'point' from here. + if(intersectInfo.ties.l2 == 'end') polyLine = { p1: polyLine.p2, p2: polyLine.p1 }; + } else { + // It is on both side, so you can take the larger one + if(polyLine.p1.x > polyLine.p2.x) polyLine = { p1: polyLine.p2, p2: polyLine.p1 }; + } + var currCos = getCos(polyLine); + if(currCos > cos) { + cos = currCos; + closest = intersectionX; + entered = intersectInfo.entering; + } + } + return entered; + }; + _geometry.checkInside = _checkInside; +}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/globals.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/globals.js" new file mode 100644 index 0000000..0c5c4e8 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/globals.js" @@ -0,0 +1,7 @@ +$axure.internal(function($ax) { + var _globals = $ax.globals = {}; + + $ax.globals.MaxZIndex = 1000; + $ax.globals.MinZIndex = -1000; + +}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/ie.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/ie.js" new file mode 100644 index 0000000..92b3cd5 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/ie.js" @@ -0,0 +1,281 @@ + +// ******* Internet Explorer MANAGER ******** // +//this is to handle all the stupid IE Stuff +$axure.internal(function($ax) { + + if(!$.browser.msie) return; + + var _applyIEFixedPosition = function() { + if(Number($.browser.version) >= 7) return; + + $axure(function(diagramObject) { return diagramObject.fixedVertical; }).$() + .appendTo($('body')) + .css('position', 'absolute').css('margin-left', 0 + 'px').css('margin-top', 0 + 'px'); + + var handleScroll = function() { + $axure(function(diagramObject) { return diagramObject.fixedVertical; }) + .each(function(diagramObject, elementId) { + var win = $(window); + var windowWidth = win.width(); + var windowHeight = win.height(); + var windowScrollLeft = win.scrollLeft(); + var windowScrollTop = win.scrollTop(); + + var newLeft = 0; + var newTop = 0; + var elementQuery = $('#' + elementId); + var width = elementQuery.width(); + var height = elementQuery.height(); + + var horz = diagramObject.fixedHorizontal; + if(horz == 'left') { + newLeft = windowScrollLeft + diagramObject.fixedMarginHorizontal; + } else if(horz == 'center') { + newLeft = windowScrollLeft + ((windowWidth - width) / 2) + diagramObject.fixedMarginHorizontal; + } else if(horz == 'right') { + newLeft = windowScrollLeft + windowWidth - width - diagramObject.fixedMarginHorizontal; + } + + var vert = diagramObject.fixedVertical; + if(vert == 'top') { + newTop = windowScrollTop + diagramObject.fixedMarginVertical; + } else if(vert == 'middle') { + newTop = windowScrollTop + ((windowHeight - height) / 2) + diagramObject.fixedMarginVertical; + } else if(vert == 'bottom') { + newTop = windowScrollTop + windowHeight - height - diagramObject.fixedMarginVertical; + } + elementQuery.css('top', newTop + 'px').css('left', newLeft + 'px'); + }); + }; + + $(window).scroll(handleScroll); + $axure.resize(handleScroll); + handleScroll(); + }; + + var gMult = 256; + var rMult = gMult * 256; + var aMult = rMult * 256; + var _applyBackground = function() { + if(Number($.browser.version) >= 9) return; + + var argb = undefined; + var styleChain = $ax.adaptive.getAdaptiveIdChain($ax.adaptive.currentViewId); + for(var i = 0; i < styleChain.length && !argb; i++) { + var style = $ax.pageData.page.adaptiveStyles[styleChain[i]]; + argb = style.fill && style.fill.color; + } + if(!argb) argb = $ax.pageData.page.style.fill.color; + + var a = Math.floor(argb / aMult); + argb -= a * aMult; + + var r = Math.floor(argb / rMult); + argb -= r * rMult; + + var g = Math.floor(argb / gMult); + var b = argb - g * gMult; + + //convert the color with alpha to a color with no alpha (assuming white background) + r = Math.min((r * a) / 255 + 255 - a, 255); + g = Math.min((g * a) / 255 + 255 - a, 255); + b = Math.min((b * a) / 255 + 255 - a, 255); + + if(r == 255 && g == 255 && b == 255) return; + var color = '#'; + color += Math.floor(r / 16).toString(16); + color += Math.floor(r % 16).toString(16); + color += Math.floor(g / 16).toString(16); + color += Math.floor(g % 16).toString(16); + color += Math.floor(b / 16).toString(16); + color += Math.floor(b % 16).toString(16); + $('body').css('background-color', color); + }; + + var getIEOffset = function(transform, rect) { + var translatedVertexes = [ + $axure.utils.Vector2D(0, 0), //we dont translate, so the orgin is fixed + transform.mul($axure.utils.Vector2D(0, rect.height)), + transform.mul($axure.utils.Vector2D(rect.width, 0)), + transform.mul($axure.utils.Vector2D(rect.width, rect.height))]; + + var minX = 0, minY = 0, maxX = 0, maxY = 0; + $.each(translatedVertexes, function(index, p) { + minX = Math.min(minX, p.x); + minY = Math.min(minY, p.y); + maxX = Math.max(maxX, p.x); + maxY = Math.max(maxY, p.y); + }); + + return $axure.utils.Vector2D( + (maxX - minX - rect.width) / 2, + (maxY - minY - rect.height) / 2); + }; + + var _filterFromTransform = function(transform) { + return "progid:DXImageTransform.Microsoft.Matrix(M11=" + transform.m11 + + ", M12=" + transform.m12 + ", M21=" + transform.m21 + + ", M22=" + transform.m22 + ", SizingMethod='auto expand')"; + }; + + var _applyIERotation = function() { + if(Number($.browser.version) >= 9) return; + + $axure(function(diagramObject) { + return ((diagramObject.style.rotation && Math.abs(diagramObject.style.rotation) > 0.1) + || (diagramObject.style.textRotation && Math.abs(diagramObject.style.textRotation) > 0.1)) + && !diagramObject.isContained; + }).each(function(diagramObject, elementId) { + var rotation = diagramObject.style.rotation || 0; + var $element = $('#' + elementId); + var width = $element.width(); + var height = $element.height(); + var originX = width / 2; + var originY = height / 2; + + var shapeIeOffset; + $element.children().each(function() { + var $child = $(this); + var childWidth = $child.width(); + var childHeight = $child.height() + $child.position().top; + var centerX = $child.position().left + (childWidth / 2); + var centerY = $child.position().top + (childHeight / 2); + var deltaX = centerX - originX; + var deltaY = centerY - originY; + + var effectiveRotation = rotation; + var textObject = $ax.getObjectFromElementId($child.attr('id')); + if(textObject) { + if(textObject.style.textRotation) effectiveRotation = textObject.style.textRotation; + else return; + } + + var transform = $ax.utils.Matrix2D.identity().rotate(effectiveRotation); + var filter = _filterFromTransform(transform); + + $child.css('filter', filter) + .width(childWidth + 1) + .height(childHeight + 1); + + var p = transform.mul($ax.utils.Vector2D(deltaX, deltaY)); + var ieOffset = getIEOffset(transform, { width: childWidth, height: childHeight }); + if(!textObject) { + shapeIeOffset = ieOffset; + } else { + // This is a close approximation, but not exact + if (diagramObject.style.verticalAlignment != 'top') ieOffset.y -= shapeIeOffset.y + Math.abs(shapeIeOffset.x); + } + + $child.css("margin-left", -ieOffset.x - deltaX + p.x).css("margin-top", -ieOffset.y - deltaY + p.y); + }); + }); + }; + + var _fixIEStretchBackground = function() { + if(Number($.browser.version) >= 9) return; + var pageStyle = $ax.adaptive.getPageStyle(); + if(!pageStyle.imageRepeat) return; + //if(!$ax.pageData.page.stretch) return; + var viewId = $ax.adaptive.currentViewId; + var imageInfo = viewId ? $ax.pageData.viewIdToBackgroundImageInfo && $ax.pageData.viewIdToBackgroundImageInfo[viewId] : $ax.pageData.defaultBackgroundImageInfo; + + $('body').css('background-image', 'none'); + if($('#bg_img').length == 0) $('body').append(''); + var path = (imageInfo && imageInfo.path) || ''; + $('#bg_img').attr('src', path).css('position', 'fixed').css('z-index', '-10000'); + _resizeIEBackground(); + }; + + var _resizeIEBackground = function() { + if(Number($.browser.version) >= 9) return; + //var page = $ax.pageData.page; + var viewId = $ax.adaptive.currentViewId; + var pageStyle = $ax.adaptive.getPageStyle(); + if(!$ax.pageData.defaultBackgroundImageInfo && !$ax.pageData.viewIdToBackgroundImageInfo) return; + var imageInfo = viewId ? $ax.pageData.viewIdToBackgroundImageInfo[viewId] : $ax.pageData.defaultBackgroundImageInfo; + if(!imageInfo) return; + var imageWidth = imageInfo.width; + var imageHeight = imageInfo.height; + var windowWidth = $(window).width(); + var windowHeight = $(window).height(); + var isCover = pageStyle.imageRepeat == 'cover'; + + var wRatio = windowWidth / imageWidth; + var hRatio = windowHeight / imageHeight; + var ratio = wRatio; + if(isCover) { + if(hRatio > wRatio) ratio = hRatio; + } else { + if(hRatio < wRatio) ratio = hRatio; + } + var width = imageWidth * ratio; + var height = imageHeight * ratio; + + var left = '0px'; + if((isCover && width > windowWidth) || (!isCover && width < windowWidth)) { + if(pageStyle.imageHorizontalAlignment == 'center') { + left = ((windowWidth - width) / 2) + 'px'; + } else if(pageStyle.imageHorizontalAlignment == 'far') { + left = (windowWidth - width) + 'px'; + } + } + + var top = '0px'; + if((isCover && height > windowHeight) || (!isCover && height < windowHeight)) { + if(pageStyle.imageVerticalAlignment == 'center') { + top = ((windowHeight - height) / 2) + 'px'; + } else if(pageStyle.imageVerticalAlignment == 'far') { + top = (windowHeight - height) + 'px'; + } + } + + $('#bg_img').css('top', top).css('left', left).css('width', width).css('height', height); + }; + + var _fixAllPngs = function() { + if(!(/MSIE ((5\.5)|6)/.test(window.navigator.userAgent) && window.navigator.platform == "Win32")) return; + + $('img[src$=".png"]').each(function() { + if(!this.complete) { + this.onload = function() { $axure.utils.fixPng(this); }; + } else { + $axure.utils.fixPng(this); + } + }); + }; + + var _fixInputSize = function() { + if(Number($.browser.version) >= 8) return; + var inputs = $('input').not(':input[type=button], :input[type=submit], :input[type=radio], :input[type=checkbox]'); + inputs.each(function() { + var $input = $(this); + $input.css('height', ($input.height() - 4 + 'px')).css('width', ($input.width() - 2 + 'px')); + }); + + var textAreas = $('textarea'); + textAreas.each(function() { + var $textArea = $(this); + $textArea.css('height', ($textArea.height() - 6 + 'px')).css('width', ($textArea.width() - 6 + 'px')); + }); + }; + + $(document).ready(function() { + _fixIEStretchBackground(); + _applyIEFixedPosition(); + $axure.resize(function() { + _resizeIEBackground(); + }); + $ax.adaptive.bind('viewChanged', function() { + _fixIEStretchBackground(); + _applyBackground(); + }); + + + _fixAllPngs(); + _applyIERotation(); + _applyBackground(); + _fixInputSize(); + }); + + +}); diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/init.temp.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/init.temp.js" new file mode 100644 index 0000000..6bb3ece --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/init.temp.js" @@ -0,0 +1,181 @@ +$axure.internal(function($ax) { + + $(window.document).ready(function() { + var readyStart = (new Date()).getTime(); + + //this is because the page id is not formatted as a guid + var pageId = $ax.pageData.page.packageId; + + var pageData = { + id: pageId, + pageName: $ax.pageData.page.name, + location: window.location.toString(), + notes: $ax.pageData.page.notes + }; + + //only trigger the page.data setting if the window is on the mainframe + if(window.name == 'mainFrame' || + (!CHROME_5_LOCAL && window.parent.$ && window.parent.$('#mainFrame').length > 0)) { + $axure.messageCenter = $axure.messageCenter; + $axure.messageCenter.setState('page.data', pageData); + } + + // $ax(function(diagramObject) { + // return diagramObject.style.opacity && !diagramObject.isContained; + // }).each(function(diagramObject, elementId) { + // $ax.style.applyOpacityFromStyle(elementId, diagramObject.style); + // }); + + var start = (new Date()).getTime(); + var end = (new Date()).getTime(); + //window.alert('elapsed ' + (end - start)); + + $('input[type=text], input[type=password], textarea').focus(function() { + window.lastFocusedControl = this; + }); + + $('iframe').each(function() { + var origSrc = $(this).attr('basesrc'); + + if(origSrc) { + var newSrcUrl = origSrc.toLowerCase().indexOf('http://') == -1 ? $ax.globalVariableProvider.getLinkUrl(origSrc) : origSrc; + + $(this).attr('src', newSrcUrl); + } + }); + + $axure.messageCenter.addMessageListener(function(message, data) { + if(message == 'setGlobalVar') { + $ax.globalVariableProvider.setVariableValue(data.globalVarName, data.globalVarValue, true); + } + }); + + var lastFocusedClickable; + var shouldOutline = true; + + $ax(function(dObj) { return dObj.tabbable; }).each(function(dObj, elementId) { + var focusableId = $ax.event.getFocusableWidgetOrChildId(elementId); + $('#' + focusableId).attr("tabIndex", 0); + }); + + $('div[tabIndex=0], img[tabIndex=0]').bind($ax.features.eventNames.mouseDownName, function() { + shouldOutline = false; + }); + + $(window.document).bind($ax.features.eventNames.mouseUpName, function() { + shouldOutline = true; + }); + + $('div[tabIndex=0], img[tabIndex=0], a').focus(function() { + if(shouldOutline) { + $(this).css('outline', ''); + } else { + $(this).css('outline', 'none'); + } + + lastFocusedClickable = this; + }); + + $('div[tabIndex=0], img[tabIndex=0], a').blur(function() { + if(lastFocusedClickable == this) lastFocusedClickable = null; + }); + + $(window.document).bind('keyup', function(e) { + if(e.keyCode == '13' || e.keyCode == '32') { + if(lastFocusedClickable) $(lastFocusedClickable).click(); + } + }); + + if($ax.document.configuration.hideAddress) { + $(window).load(function() { + window.setTimeout(function() { + window.scrollTo(0, 0.9); + }, 0); + }); + } + + $(window).load(function() { + $ax.style.initializeObjectTextAlignment($ax('*')); + }); + + if($ax.document.configuration.preventScroll) { + $(window.document).bind('touchmove', function(e) { + var inScrollable = $ax.legacy.GetScrollable(e.target) != window.document.body; + if(!inScrollable) { + e.preventDefault(); + } + }); + + $ax(function(diagramObject) { + return diagramObject.type == 'dynamicPanel' && diagramObject.scrollbars != 'none'; + }).$().children().bind('touchstart', function() { + var target = this; + var top = target.scrollTop; + if(top <= 0) target.scrollTop = 1; + if(top + target.offsetHeight >= target.scrollHeight) target.scrollTop = target.scrollHeight - target.offsetHeight - 1; + }); + } + + if(OS_MAC && WEBKIT) { + $ax(function(diagramObject) { + return diagramObject.type == 'comboBox'; + }).each(function(obj, id) { + $jobj($ax.INPUT(id)).css('-webkit-appearance', 'menulist-button').css('border-color', '#999999'); + }); + } + + $ax.legacy.BringFixedToFront(); + $ax.event.initialize(); + $ax.style.initialize(); + $ax.visibility.initialize(); + $ax.dynamicPanelManager.initialize(); //needs to be called after visibility is initialized + $ax.loadDynamicPanelsAndMasters(); + $ax.adaptive.initialize(); + $ax.repeater.init(); + $ax.style.prefetch(); + + var readyEnd = (new Date()).getTime(); + //window.alert('elapsed ' + (readyEnd - readyStart)); + }); + +}); + +/* extend canvas */ +var gv_hasCanvas = false; +(function() { + var _canvas = document.createElement('canvas'), proto, abbrev; + if(gv_hasCanvas = !!(_canvas.getContext && _canvas.getContext('2d')) && typeof (CanvasGradient) !== 'undefined') { + function chain(func) { + return function() { + return func.apply(this, arguments) || this; + }; + } + + with(proto = CanvasRenderingContext2D.prototype) for(var func in abbrev = { + a: arc, + b: beginPath, + n: clearRect, + c: clip, + p: closePath, + g: createLinearGradient, + f: fill, + j: fillRect, + z: function(s) { this.fillStyle = s; }, + l: lineTo, + w: function(w) { this.lineWidth = w; }, + m: moveTo, + q: quadraticCurveTo, + h: rect, + r: restore, + o: rotate, + s: save, + x: scale, + y: function(s) { this.strokeStyle = s; }, + u: setTransform, + k: stroke, + i: strokeRect, + t: translate + }) proto[func] = chain(abbrev[func]); + CanvasGradient.prototype.a = chain(CanvasGradient.prototype.addColorStop); + } +})(); diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/legacy.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/legacy.js" new file mode 100644 index 0000000..95ecf04 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/legacy.js" @@ -0,0 +1,160 @@ +//stored on each browser event +var windowEvent; + +$axure.internal(function($ax) { + var _legacy = {}; + $ax.legacy = _legacy; + + + // ************************** GLOBAL VARS *********************************// + + // ************************************************************************// + //Check if IE + //var bIE = false; + //if ((index = navigator.userAgent.indexOf("MSIE")) >= 0) { + // bIE = true; + //} + + var Forms = window.document.getElementsByTagName("FORM"); + for(var i = 0; i < Forms.length; i++) { + var Form = Forms[i]; + Form.onclick = $ax.legacy.SuppressBubble; + } + + $ax.legacy.SuppressBubble = function(event) { + if($.browser.msie) { + window.event.cancelBubble = true; + window.event.returnValue = false; + } else { + if(event) { + event.stopPropagation(); + } + } + }; + + // function InsertAfterBegin(dom, html) { + // if(!$.browser.msie) { + // var phtml; + // var range = dom.ownerDocument.createRange(); + // range.selectNodeContents(dom); + // range.collapse(true); + // phtml = range.createContextualFragment(html); + // dom.insertBefore(phtml, dom.firstChild); + // } else { + // dom.insertAdjacentHTML("afterBegin", html); + // } + // } + + // function InsertBeforeEnd(dom, html) { + // if(!$.browser.msie) { + // var phtml; + // var range = dom.ownerDocument.createRange(); + // range.selectNodeContents(dom); + // range.collapse(dom); + // phtml = range.createContextualFragment(html); + // dom.appendChild(phtml); + // } else { + // dom.insertAdjacentHTML("beforeEnd", html); + // } + // } + + //Get the id of the Workflow Dialog belonging to element with id = id + + // function Workflow(id) { + // return id + 'WF'; + // } + + $ax.legacy.BringToFront = function(id, skipFixed) { + _bringToFrontHelper(id); + if(!skipFixed) $ax.legacy.BringFixedToFront(); + }; + + var _bringToFrontHelper = function(id) { + var target = window.document.getElementById(id); + if(target == null) return; + $ax.globals.MaxZIndex = $ax.globals.MaxZIndex + 1; + target.style.zIndex = $ax.globals.MaxZIndex; + }; + + $ax.legacy.BringFixedToFront = function() { + $ax(function(diagramObject) { return diagramObject.fixedKeepInFront; }).each(function(diagramObject, scriptId) { + _bringToFrontHelper(scriptId); + }); + }; + + $ax.legacy.SendToBack = function(id) { + var target = window.document.getElementById(id); + if(target == null) return; + target.style.zIndex = $ax.globals.MinZIndex = $ax.globals.MinZIndex - 1; + }; + + $ax.legacy.RefreshScreen = function() { + var oldColor = window.document.body.style.backgroundColor; + var setColor = (oldColor == "rgb(0,0,0)") ? "#FFFFFF" : "#000000"; + window.document.body.style.backgroundColor = setColor; + window.document.body.style.backgroundColor = oldColor; + }; + + $ax.legacy.getAbsoluteLeft = function(currentNode) { + var oldDisplay = currentNode.css('display'); + var displaySet = false; + if(oldDisplay == 'none') { + currentNode.css('display', ''); + displaySet = true; + } + var left = currentNode.offset().left; + if(displaySet) currentNode.css('display', oldDisplay); + var body = $('body'); + if(body.css('position') == 'relative') left -= (Number(body.css('left').replace('px', '')) + Math.max(0, ($(window).width() - body.width()) / 2)); + return left; + }; + + $ax.legacy.getAbsoluteTop = function(currentNode) { + var oldDisplay = currentNode.css('display'); + var displaySet = false; + if(oldDisplay == 'none') { + currentNode.css('display', ''); + displaySet = true; + } + var top = currentNode.offset().top; + if(displaySet) currentNode.css('display', oldDisplay); + return top; + }; + + // ****************** Annotation and Link Functions ****************** // + + $ax.legacy.GetAnnotationHtml = function(annJson) { + var retVal = ""; + for(var noteName in annJson) { + if(noteName != "label") { + retVal += "
    " + noteName + "
    "; + retVal += "
    " + annJson[noteName] + "
    "; + } + } + return retVal; + }; + + + $ax.legacy.GetScrollable = function(target) { + var $target = $(target); + var current = $target; + var last = $target; + + while(!current.is('body') && !current.is('html')) { + var elementId = current.attr('id'); + var diagramObject = elementId && $ax.getObjectFromElementId(elementId); + if(diagramObject && diagramObject.type == 'dynamicPanel' && diagramObject.scrollbars != 'none') { + //returns the panel diagram div which handles scrolling + return window.document.getElementById(last.attr('id')); + } + last = current; + current = current.parent(); + } + // Need to do this because of ie + if($.browser.msie) return window.document.documentElement; + else return window.document.body; + }; + + + +}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/model.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/model.js" new file mode 100644 index 0000000..dbf76ff --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/model.js" @@ -0,0 +1,42 @@ +// ******* Object Model ******** // +$axure.internal(function($ax) { + var _implementations = {}; + + var _initializeObject = function(type, obj) { + $.extend(obj, _implementations[type]); + }; + $ax.initializeObject = _initializeObject; + + var _model = $ax.model = {}; + + _model.idsInRdo = function(rdoId, elementIds) { + var rdoScriptId = $ax.repeater.getScriptIdFromElementId(rdoId); + var rdoObj = $obj(rdoId); + var path = $ax.getPathFromScriptId(rdoScriptId); + var rdoRepeater = $ax.getParentRepeaterFromScriptId(rdoScriptId); + var rdoItem = $ax.repeater.getItemIdFromElementId(rdoId); + + if(!elementIds) elementIds = []; + $ax('*').each(function(obj, elementId) { + // Make sure in same rdo + var scriptId = $ax.repeater.getScriptIdFromElementId(elementId); + var elementPath = $ax.getPathFromScriptId(scriptId); + // This is because last part of path is for the obj itself. + elementPath.pop(); + if(elementPath.length != path.length) return; + for(var i = 0; i < path.length; i++) if(elementPath[i] != path[i]) return; + + // If object is in a panel, the panel will be hidden, so the obj doesn't have to be. + if(obj.parentDynamicPanel) return; + + var repeater = $ax.getParentRepeaterFromScriptId(scriptId); + var item = $ax.repeater.getItemIdFromElementId(elementId); + if(repeater != rdoRepeater || item != rdoItem) return; + + if(obj.type == 'referenceDiagramObject') _model.idsInRdo(elementId, elementIds); + else elementIds.push(elementId); + }); + return elementIds; + }; + +}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/move.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/move.js" new file mode 100644 index 0000000..bf12ef9 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/move.js" @@ -0,0 +1,66 @@ +$axure.internal(function($ax) { + var _move = {}; + $ax.move = _move; + + var widgetMoveInfo = {}; + + $ax.move.GetWidgetMoveInfo = function() { + return $.extend({}, widgetMoveInfo); + }; + + $ax.move.MoveWidget = function(id, x, y, easing, duration, to, animationCompleteCallback, shouldFire) { + $ax.drag.LogMovedWidgetForDrag(id); + + var widget = $('#' + id); + var jobj = $jobj(id); + + var horzProp = 'left'; + var vertProp = 'top'; + var horzX = to ? x - Number(jobj.css('left').replace('px', '')) : x; + var vertY = to ? y - Number(jobj.css('top').replace('px', '')) : y; + + var fixedInfo = $ax.dynamicPanelManager.getFixedInfo(id); + + if(fixedInfo.horizontal == 'right') { + horzProp = 'right'; + horzX = to ? $(window).width() - x - Number(jobj.css('right').replace('px', '')) - widget.width() : -x; + } else if(fixedInfo.horizontal == 'center') { + horzProp = 'margin-left'; + if(to) horzX = x - $(window).width() / 2; + } + + if(fixedInfo.vertical == 'bottom') { + vertProp = 'bottom'; + vertY = to ? $(window).height() - y - Number(jobj.css('bottom').replace('px', '')) - widget.height() : -y; + } else if(fixedInfo.vertical == 'middle') { + vertProp = 'margin-top'; + if(to) vertY = y - $(window).height() / 2; + } + var cssStyles = {}; + + if(!$ax.dynamicPanelManager.isPercentWidthPanel($obj(id))) cssStyles[horzProp] = '+=' + horzX; + cssStyles[vertProp] = '+=' + vertY; + + var query = $jobj(id).add($jobj(id + '_ann')).add($jobj(id + '_ref')); + if(easing == 'none') { + query.animate(cssStyles, 0); + if(animationCompleteCallback) animationCompleteCallback(); + if(shouldFire) $ax.action.fireAnimationFromQueue(id); + } else { + query.animate(cssStyles, duration, easing, function() { + if(animationCompleteCallback) animationCompleteCallback(); + if(shouldFire) $ax.action.fireAnimationFromQueue(id); + }); + } + + var moveInfo = new Object(); + moveInfo.x = horzX; + moveInfo.y = vertY; + moveInfo.options = {}; + moveInfo.options.easing = easing; + moveInfo.options.duration = duration; + widgetMoveInfo[id] = moveInfo; + + $ax.event.raiseSyntheticEvent(id, "onMove"); + }; +}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/repeater.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/repeater.js" new file mode 100644 index 0000000..c8dd9fd --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/repeater.js" @@ -0,0 +1,1471 @@ + +// ******* Repeater MANAGER ******** // +$axure.internal(function($ax) { + var _repeaterManager = {}; + $ax.repeater = _repeaterManager; + + //This is a mapping of current editItems + var repeaterToEditItems = {}; + //This is a mapping of current filters + var repeaterToFilters = {}; + // This is a mapping of current sorts + var repeaterToSorts = {}; + // This is a mapping of repeater page info + var repeaterToPageInfo = {}; + + //Hopefully this can be simplified, but for now I think 3 are needed. + //This is the data set that is owned by this repeater. The repeater may or may not reference this data set, and others can reference it. + var repeaterToLocalDataSet = {}; + //This is the data set referenced by the repeater. It is not a copy of the local data set, but a reference to a local data set (or eventually a global data set could be referenced). + var repeaterToCurrentDataSet = {}; + //This is a copy of the current data set, that is replaced whenever a set or refresh is done. + var repeaterToActiveDataSet = {}; + var _loadRepeaters = function() { + $ax(function(obj) { + return obj.type == 'repeater'; + }).each(function(obj, repeaterId) { + repeaterToLocalDataSet[repeaterId] = $ax.deepCopy(obj.data); + repeaterToLocalDataSet[repeaterId].props = obj.dataProps; + repeaterToEditItems[repeaterId] = []; + + _initPageInfo(obj, repeaterId); + + _setRepeaterDataSet(repeaterId, repeaterId); + + }); + }; + _repeaterManager.load = _loadRepeaters; + + var _initRepeaters = function() { + $ax(function(obj, repeaterId) { + return obj.type == 'repeater' && !repeaterToActiveDataSet[repeaterId]; + }).each(function(obj, repeaterId) { + _refreshRepeater(repeaterId); + }); + }; + _repeaterManager.init = _initRepeaters; + + var repeatersHaveNewDataSet = []; + var _setRepeaterDataSet = function(repeaterId, dataSetId) { + //TODO: No idea about how global data sets will be handled... + repeaterToCurrentDataSet[repeaterId] = repeaterToLocalDataSet[dataSetId]; + repeaterToFilters[repeaterId] = []; + repeaterToSorts[repeaterId] = []; + + if(repeatersHaveNewDataSet.indexOf(repeaterId) == -1) repeatersHaveNewDataSet[repeatersHaveNewDataSet.length] = repeaterId; + }; + _repeaterManager.setDataSet = _setRepeaterDataSet; + + var _refreshRepeater = function(repeaterId, eventInfo) { + $ax.action.refreshStart(repeaterId); + $ax.style.ClearCacheForRepeater(repeaterId); + + if($ax.visibility.limboIds[repeaterId]) { + removeItems(repeaterId); + $ax.dynamicPanelManager.fitParentPanel(repeaterId); + return; + } + + var path = $ax.getPathFromScriptId(repeaterId); + path.pop(); + + if(eventInfo) { + eventInfo = $ax.eventCopy(eventInfo); + } + + // Clear edit items if there this is a new data set that is being referenced + var repeaterIndex = repeatersHaveNewDataSet.indexOf(repeaterId); + if(repeaterIndex != -1) { + repeaterToEditItems[repeaterId] = []; + $ax.splice(repeatersHaveNewDataSet, repeaterIndex, 1); + } + + var obj = $ax.getObjectFromScriptId(repeaterId); + + var html = $('#' + repeaterId + '_script').html(); + // var container = $('
    '); + // container.html(html); + // container.attr('id', '' + repeaterId + '_container'); + // container.css({ position: 'absolute' }); + // container.offset({ left: -obj.x, top: -obj.y }); + + var div = $('
    '); + div.html(html); + + + var top = 0; + var left = 0; + + //If there is no wrap, then set it to be above the number of rows + var propMap = obj.repeaterPropMap; + var viewId = $ax.adaptive.currentViewId || ''; + var wrap = _getAdaptiveProp(propMap, 'wrap', viewId); + var vertical = _getAdaptiveProp(propMap, 'vertical', viewId); + var offset = propMap[viewId]; + var xOffset = offset.width + _getAdaptiveProp(propMap, 'horizontalSpacing', viewId); + var yOffset = offset.height + _getAdaptiveProp(propMap, 'verticalSpacing', viewId); + div.css({ + width: xOffset, + height: yOffset + }); + + var background = _getAdaptiveProp(propMap, 'backColor', viewId); + _applyColorCss(background, div); + var hasAltColor = _getAdaptiveProp(propMap, 'hasAltColor', viewId); + var altDiv = div; + if(hasAltColor) altDiv = _applyColorCss(hasAltColor ? _getAdaptiveProp(propMap, 'altColor', viewId) : background, div.clone()); + + var orderedIds = getOrderedIds(repeaterId, eventInfo); + + // Hide repeater, if shown, while updating. + var shown = $ax.visibility.IsIdVisible(repeaterId); + if(shown) document.getElementById(repeaterId).style.visibility = 'hidden'; + + var start = 0; + var end = orderedIds.length; + var pageInfo = repeaterToPageInfo[repeaterId]; + if(!pageInfo.noLimit) { + end = pageInfo.itemsPerPage * pageInfo.currPage; + start = end - pageInfo.itemsPerPage; + + // If past the end, move to last page + if(start >= orderedIds.length) { + pageInfo.currPage = Math.floor(orderedIds.length - 1) + 1; + if(pageInfo.currPage <= 0) pageInfo.currPage = 1; + + end = pageInfo.itemsPerPage * pageInfo.currPage; + start = end - pageInfo.itemsPerPage; + } + end = Math.min(end, orderedIds.length); + } + var useAlt = false; + + var resized = $ax.getItemIdsForRepeater(repeaterId).length != (end - start); + + //clean up old items as late as possible + removeItems(repeaterId); + + var i = 0; + for(var pos = start; pos < end; pos++) { + var itemId = orderedIds[pos]; + + var itemElementId = _createElementId(repeaterId, itemId); + $ax.addItemIdToRepeater(itemId, repeaterId); + + var ids = [itemElementId]; + var processId = function(full, prop, id, suffix) { + var elementId = _createElementId('u' + id, itemId); + //If there is a suffix (ex. _img), then don't push the id. + if(!suffix) ids[ids.length] = elementId; + return prop + '="' + elementId + '"'; + }; + + var copy = (useAlt ? altDiv : div).clone(); + useAlt = !useAlt; + copy.attr('id', itemElementId); + copy.html(div.html().replace(/(id|for)="?u([0-9]+(_[_a-z0-9]*)?)"?/g, processId)); + + copy.css({ + 'position': 'absolute', + 'top': top + 'px', + 'left': left + 'px', + 'width': obj.width + 'px', + 'height': obj.height + 'px' + }); + $('#' + repeaterId).append(copy); + + var query = $ax(function(diagramObject, elementId) { + return _getItemIdFromElementId(elementId) == itemId && $ax.getParentRepeaterFromScriptId(_getScriptIdFromElementId(elementId)) == repeaterId; + }); + if(viewId) $ax.adaptive.applyView(viewId, query); + else { + var limbo = {}; + var hidden = {}; + query.each(function(diagramObject, elementId) { + // sigh, javascript. we need the === here because undefined means not overriden + if(diagramObject.style.visible === false) hidden[elementId] = true; + //todo: **mas** check if the limboed widgets are hidden by default by the generator + if(diagramObject.style.limbo) limbo[elementId] = true; + }); + $ax.visibility.addLimboAndHiddenIds(limbo, hidden, query); + $ax.dynamicPanelManager.updatePercentPanelCache(query); + } + $ax.annotation.InitializeAnnotations(query); + + i++; + if(wrap != -1 && i % wrap == 0) { + if(vertical) { + top = 0; + left += xOffset; + } else { + left = 0; + top += yOffset; + } + } else if(vertical) top += yOffset; + else left += xOffset; + + for(var index = 0; index < ids.length; index++) { + var id = ids[index]; + var childObj = $obj(id); + var childJobj = $jobj(id); + var childItemId = _getItemIdFromElementId(id); + if(obj.repeaterPropMap.isolateRadio && childObj.type == 'radioButton') { + var input = $jobj(_applySuffixToElementId(id, '_input')); + input.attr('name', _createElementId(input.attr('name'), childItemId)); + } + if(obj.repeaterPropMap.isolateSelection && childJobj.attr('selectiongroup')) { + childJobj.attr('selectiongroup', _createElementId(childJobj.attr('selectiongroup'), childItemId)); + } + $ax.initializeObjectEvents($ax('#' + id)); + $ax.dynamicPanelManager.initFitPanels($ax('#' + id)); + $ax.style.initializeObjectTextAlignment($ax('#' + id)); + } + + //$ax.event.raiseSyntheticEvent(itemElementId, 'onLoad', true); + //$ax.loadDynamicPanelsAndMasters(obj.objects, path, itemId); + } + + // Now load + for(pos = start; pos < end; pos++) { + itemId = orderedIds[pos]; + itemElementId = _createElementId(repeaterId, itemId); + + $ax.event.raiseSyntheticEvent(itemElementId, 'onItemLoad', true); + $ax.loadDynamicPanelsAndMasters(obj.objects, path, itemId); + } + + // Reshow repeater if it was originally shown (load is complete by now) + if(shown) document.getElementById(repeaterId).style.visibility = 'visible'; + + $ax.dynamicPanelManager.fitParentPanel(repeaterId); + + // If number of items changed, you need to resize the repeater + if(resized) { + var count = end - start; + + // When getting assume not vertical first. Get how many items wide and high it is. + var yCount = wrap == -1 ? 1 : Math.ceil(count / wrap); + var xCount = wrap == -1 ? count : count % wrap; + if(xCount == 0) xCount = wrap; + // Now swap if vertical + if(vertical) { + var temp = xCount; + xCount = yCount; + yCount = temp; + } + + // xOffset includes, the spacing, but first time that should be ignored. So just add the width/height once, and all the other times add the offset. + $jobj(repeaterId).css('width', offset.width + (xCount - 1) * xOffset); + $jobj(repeaterId).css('height', offset.height + (yCount - 1) * yOffset); + } + + // Right now we assume only one refresh at a time. If we can manually trigger refreshes, that may possibly change. + $ax.action.refreshEnd(); + }; + _repeaterManager.refreshRepeater = _refreshRepeater; + + _repeaterManager.refreshAllRepeaters = function() { + $ax('*').each(function(diagramObject, elementId) { + if(diagramObject.type != 'repeater') return; + + _initPageInfo(diagramObject, elementId); + _refreshRepeater(elementId, $ax.getEventInfoFromEvent($ax.getjBrowserEvent())); + }); + }; + + var _initPageInfo = function(obj, elementId) { + var pageInfo = {}; + var map = obj.repeaterPropMap; + + var currentViewId = $ax.adaptive.currentViewId || ''; + var itemsPerPage = _getAdaptiveProp(map, 'itemsPerPage', currentViewId); + if(itemsPerPage == -1) pageInfo.noLimit = true; + else { + pageInfo.itemsPerPage = itemsPerPage; + pageInfo.currPage = _getAdaptiveProp(map, 'currPage', currentViewId); + } + repeaterToPageInfo[elementId] = pageInfo; + }; + + var _applyColorCss = function(json, div) { + var args = json.r + ', ' + json.g + ', ' + json.b; + var background = json.a == 0 ? '' : json.a == 1 ? 'rgb(' + args + ')' : 'rgba(' + args + ', ' + json.a + ')'; + div.css('background-color', background); + return div; + }; + + var _getAdaptiveProp = _repeaterManager.getAdaptiveProp = function(map, prop, viewId) { + var viewChain = $ax.adaptive.getAdaptiveIdChain(viewId); + for(var i = viewChain.length - 1; i >= 0; i--) { + viewId = viewChain[i]; + var viewProps = map[viewId]; + if(viewProps.hasOwnProperty(prop)) return viewProps[prop]; + } + + var base = map['']; + if(base.hasOwnProperty(prop)) return base[prop]; + return map['default'][prop]; + }; + + _repeaterManager.getItemCount = function(repeaterId) { + var data = repeaterToActiveDataSet[repeaterId].length; + var info = repeaterToPageInfo[repeaterId]; + if(!info.noLimit) { + var start = Math.min(data, info.itemsPerPage * info.currPage); + var end = Math.min(data, start + info.itemsPerPage); + data = end - start; + } + return data; + }; + + _repeaterManager.setDisplayProps = function(obj, repeaterId, itemIndex) { + var data = repeaterToActiveDataSet[repeaterId]; + var info = repeaterToPageInfo[repeaterId]; + var start = 0; + var end = data.length; + if(!info.noLimit) { + start = Math.min(end, info.itemsPerPage * (info.currPage - 1)); + end = Math.min(end, start + info.itemsPerPage); + } + var count = end - start; + var index = -1; + for(var i = 0; i < count; i++) { + if(data[start + i].index == itemIndex) index = i + 1; + } + if(index == -1) return; + obj.index = index; + obj.isfirst = index == 1; + obj.islast = index == end - start; + obj.iseven = index % 2 == 0; + obj.isodd = index % 2 == 1; + }; + + _repeaterManager.getDataCount = function(repeaterId) { + return repeaterToCurrentDataSet[repeaterId].length; + }; + + var _getFilteredDataCount = _repeaterManager.getFilteredDataCount = function(repeaterId) { + return repeaterToActiveDataSet[repeaterId].length; + }; + + _repeaterManager.getPageCount = function(repeaterId) { + var info = repeaterToPageInfo[repeaterId]; + return info.noLimit ? 1 : Math.ceil(_getFilteredDataCount(repeaterId) / info.itemsPerPage); + }; + + _repeaterManager.getPageIndex = function(repeaterId) { + var info = repeaterToPageInfo[repeaterId]; + return info.noLimit ? 1 : info.currPage; + }; + + var getActiveDataSet = function(repeaterId) { + var active = $ax.deepCopy(repeaterToCurrentDataSet[repeaterId]); + // Set up 1 indexing each item. + for(var i = 0; i < active.length; i++) active[i].index = i + 1; + return active; + }; + + var getOrderedIds = function(repeaterId, eventInfo) { + var data = repeaterToActiveDataSet[repeaterId] = getActiveDataSet(repeaterId); + + // Filter first so less to sort + applyFilter(repeaterId, data, eventInfo); + + // Sort next + var sorts = repeaterToSorts[repeaterId] || []; + if(sorts.length != 0 && data.length > 1) { + // TODO: Make this generic and factor out if we want to use it elsewhere... + // Compare is a function that takes 2 arguments, and returns a number. A high number means the second should go first + // Otherwise the first stays first. + var mergesort = function(list, start, end, compare) { + var middle = Math.floor((start + end) / 2); + if(middle - start > 1) mergesort(list, start, middle, compare); + if(end - middle > 1) mergesort(list, middle, end, compare); + var index1 = start; + var index2 = middle; + var tempList = []; + while(index1 < middle && index2 < end) { + tempList[tempList.length] = list[compare(list[index1], list[index2]) > 0 ? index2++ : index1++]; + } + while(index1 < middle) tempList[tempList.length] = list[index1++]; + while(index2 < end) tempList[tempList.length] = list[index2++]; + + // transfer from temp list to the real list. + for(var i = 0; i < tempList.length; i++) list[start + i] = tempList[i]; + }; + // Compare is the tie breaking function to us if necessary. + var getComparator = function(columnName, ascending, type, compare) { + // If this needs to be sped up, break up into several smaller functions conditioned off of type + return function(row1, row2) { + // If column undefined, no way to measure this, so call it a tie. + if(row1[columnName] === undefined || row2[columnName] === undefined) return 0; + + var text1 = row1[columnName].text; + var text2 = row2[columnName].text; + + // This means we are case insensitive, so lowercase everything to kill casing + if(type == 'Text') { + text1 = text1.toLowerCase(); + text2 = text2.toLowerCase(); + } + + //If tied, go to tie breaker + if(text1 == text2) { + if(compare) return compare(row1.index, row2.index); + // Actually a tie. + return 0; + } + if(type == 'Text' || type == 'Text (Case Sensitive)') { + if(text1 < text2 ^ ascending) return 1; + else return -1; + } else if(type == 'Number') { + var num1 = Number(text1); + var num2 = Number(text2); + + if(isNaN(num1) && isNaN(num2)) return 0; + if(isNaN(num1) || isNaN(num2)) return isNaN(num1) ? 1 : -1; + if(num1 < num2 ^ ascending) return 1; + else return -1; + } else if(type == 'Date - YYYY-MM-DD' || type == 'Date - MM/DD/YYYY') { + var func = type == 'Date - YYYY-MM-DD' ? getDate1 : getDate2; + var date1 = func(text1); + var date2 = func(text2); + if(!date1.valid && !date2.valid) return 0; + if(!date1.valid || !date2.valid) return date1.valid ? -1 : 1; + var diff = date2.year - date1.year; + if(diff == 0) diff = date2.month - date1.month; + if(diff == 0) diff = date2.day - date1.day; + if(diff == 0) return 0; + return diff > 0 ^ ascending ? 1 : -1; + } + console.log('unhandled sort type'); + return 0; + }; + }; + var compareFunc = null; + for(var i = 0; i < sorts.length; i++) compareFunc = getComparator(sorts[i].columnName, sorts[i].ascending, sorts[i].sortType, compareFunc); + + mergesort(data, 0, data.length, compareFunc); + } + + var ids = []; + for(i = 0; i < data.length; i++) ids[i] = data[i].index; + + return ids; + }; + + var getDate1 = function(text) { + var date = { valid: false }; + var sections = text.split('-'); + if(sections.length == 1) sections = text.split('/'); + if(sections.length != 3) return date; + date.year = Number(sections[0]); + date.month = Number(sections[1]); + date.day = Number(sections[2]); + date.valid = !isNaN(date.year); + date.valid &= !isNaN(date.month) && date.month > 0 && date.month <= 12; + date.valid &= !isNaN(date.day) && date.day > 0 && date.day <= daysPerMonth(date.month, date.year); + return date; + }; + + var getDate2 = function(text) { + var date = { valid: false }; + var sections = text.split('-'); + if(sections.length == 1) sections = text.split('/'); + if(sections.length != 3) return date; + date.month = Number(sections[0]); + date.day = Number(sections[1]); + date.year = Number(sections[2]); + date.valid = !isNaN(date.year); + date.valid &= !isNaN(date.month) && date.month > 0 && date.month <= 12; + date.valid &= !isNaN(date.day) && date.day > 0 && date.day <= daysPerMonth(date.month, date.year); + return date; + }; + + var daysPerMonth = function(month, year) { + if(month == 9 || month == 4 || month == 6 || month == 11) return 30; + if(month != 2) return 31; + + if(year % 4 != 0) return 28; + if(year % 100 != 0) return 29; + return year % 400 == 0 ? 29 : 28; + }; + + var applyFilter = function(repeaterId, data, eventInfo) { + var dataFiltered = []; + var filters = repeaterToFilters[repeaterId] || []; + if(filters.length != 0) { + var oldSrc = eventInfo.srcElement; + var oldThis = eventInfo.thiswidget; + + outer: + for(var i = 1; i <= data.length; i++) { + for(var j = 0; j < filters.length; j++) { + eventInfo.targetElement = _createElementId(repeaterId, i); + eventInfo.srcElement = filters[j].thisId; + eventInfo.thiswidget = $ax.getWidgetInfo(eventInfo.srcElement); + if($ax.expr.evaluateExpr(filters[j].filter, eventInfo) != 'true') continue outer; + } + dataFiltered[dataFiltered.length] = data[i - 1]; + } + + for(i = 0; i < dataFiltered.length; i++) data[i] = dataFiltered[i]; + while(data.length > dataFiltered.length) data.pop(); + + eventInfo.srcElement = oldSrc; + eventInfo.thiswidget = oldThis; + } + }; + + var _addFilter = function(repeaterId, label, filter, thisId) { + var filterList = repeaterToFilters[repeaterId]; + if(!filterList) repeaterToFilters[repeaterId] = filterList = []; + + var filterObj = { filter: filter, thisId: thisId }; + if(label) filterObj.label = label; + filterList[filterList.length] = filterObj; + }; + _repeaterManager.addFilter = _addFilter; + + var _removeFilter = function(repeaterId, label) { + var filterList = repeaterToFilters[repeaterId]; + // If no list, nothing to remove + if(!filterList) return; + + // If no label, remove everything + if(!label) { + repeaterToFilters[repeaterId] = []; + return; + } + + for(var i = filterList.length - 1; i >= 0; i--) { + var filterObj = filterList[i]; + if(filterObj.label && filterObj.label == label) $ax.splice(filterList, i, 1); + } + }; + _repeaterManager.removeFilter = _removeFilter; + + var _addSort = function(repeaterId, label, columnName, ascending, toggle, sortType) { + var sortList = repeaterToSorts[repeaterId]; + if(!sortList) repeaterToSorts[repeaterId] = sortList = []; + + for(var i = 0; i < sortList.length; i++) { + if(columnName == sortList[i].columnName) { + var lastSortObj = $ax.splice(sortList, i, 1)[0]; + if(toggle) ascending = !lastSortObj.ascending; + break; + } + } + + var sortObj = { columnName: columnName, ascending: ascending, sortType: sortType }; + + if(label) sortObj.label = label; + sortList[sortList.length] = sortObj; + }; + _repeaterManager.addSort = _addSort; + + var _removeSort = function(repeaterId, label) { + var sortList = repeaterToSorts[repeaterId]; + // If no list, nothing to remove + if(!sortList) return; + + // If no label, remove everything + if(!label) { + repeaterToSorts[repeaterId] = []; + return; + } + + for(var i = sortList.length - 1; i >= 0; i--) { + var sortObj = sortList[i]; + if(sortObj.label && sortObj.label == label) $ax.splice(sortList, i, 1); + } + }; + _repeaterManager.removeSort = _removeSort; + + var _setRepeaterToPage = function(repeaterId, type, value, eventInfo) { + var pageInfo = repeaterToPageInfo[repeaterId]; + // page doesn't matter if there is no limit. + if(pageInfo.noLimit) return; + + var dataSet = repeaterToActiveDataSet[repeaterId]; + if(!dataSet) dataSet = repeaterToCurrentDataSet[repeaterId]; + var lastPage = Math.ceil(dataSet.length / pageInfo.itemsPerPage); + + if(type == 'Value') { + var val = Number($ax.expr.evaluateExpr(value, eventInfo)); + // if invalid, default to 1, otherwise, clamp the value + if(isNaN(val)) val = 1; + else if(val < 1) val = 1; + else if(val > lastPage) val = lastPage; + + pageInfo.currPage = val; + } else if(type == 'Previous') { + if(pageInfo.currPage > 1) pageInfo.currPage--; + } else if(type == 'Next') { + if(pageInfo.currPage < lastPage) pageInfo.currPage++; + } else if(type == 'Last') { + pageInfo.currPage = lastPage; + } else { + console.log('Unknown type'); + } + }; + _repeaterManager.setRepeaterToPage = _setRepeaterToPage; + + var _setNoItemLimit = function(repeaterId) { + var pageInfo = repeaterToPageInfo[repeaterId]; + delete pageInfo.currPage; + delete pageInfo.itemsPerPage; + pageInfo.noLimit = true; + }; + _repeaterManager.setNoItemLimit = _setNoItemLimit; + + var _setItemLimit = function(repeaterId, value, eventInfo) { + var pageInfo = repeaterToPageInfo[repeaterId]; + + if(pageInfo.noLimit) { + pageInfo.noLimit = false; + pageInfo.currPage = 1; + } + + var oldTarget = eventInfo.targetElement; + eventInfo.targetElement = repeaterId; + var itemLimit = Number($ax.expr.evaluateExpr(value, eventInfo)); + eventInfo.targetElement = oldTarget; + if(isNaN(itemLimit)) itemLimit = 20; + else if(itemLimit < 1) itemLimit = 1; + pageInfo.itemsPerPage = itemLimit; + }; + _repeaterManager.setItemLimit = _setItemLimit; + + var removeItems = function(repeaterId) { + var elementIds = $ax.getChildElementIdsForRepeater(repeaterId); + for(var i = 0; i < elementIds.length; i++) $('#' + elementIds[i]).remove(); + $ax.visibility.clearLimboAndHiddenIds(elementIds); + $ax.clearItemsForRepeater(repeaterId); + }; + + var _getDataFromDataSet = function(repeaterId, itemId, propName, type) { + var itemNum = Number(itemId) - 1; + // Default to obj with text as empty string, as we don't generate the data for empty props + var data = repeaterToCurrentDataSet[repeaterId][itemNum][propName] || { text: '' }; + //For now text is always the default. May change this to depend on context. + return type == 'data' && data.type != 'text' ? data : (type && data[type]) || data['text']; + }; + _repeaterManager.getData = _getDataFromDataSet; + + _repeaterManager.hasData = function(id, propName) { + var repeaterId = $ax.getParentRepeaterFromScriptId(_getScriptIdFromElementId(id)); + return Boolean(repeaterToCurrentDataSet[repeaterId] && repeaterToCurrentDataSet[repeaterId].props.indexOf(propName) != -1); + }; + + var _addItemToDataSet = function(repeaterId, row, itemEventInfo) { + itemEventInfo.data = true; + var oldTarget = itemEventInfo.targetElement; + itemEventInfo.targetElement = repeaterId; + var dataSet = repeaterToLocalDataSet[repeaterId]; + + for(var propName in row) { + if(!row.hasOwnProperty(propName)) continue; + var prop = row[propName]; + if(prop.type == 'literal') { + var retval = $ax.expr.evaluateExpr(prop.literal, itemEventInfo); + if(typeof (retval) == 'string') retval = { type: 'text', text: retval }; + row[propName] = retval; + } + } + + itemEventInfo.targetElement = oldTarget; + dataSet[dataSet.length] = row; + itemEventInfo.data = false; + }; + _repeaterManager.addItem = _addItemToDataSet; + + var _deleteItemsFromDataSet = function(repeaterId, eventInfo, type, rule) { + var dataSet = repeaterToCurrentDataSet[repeaterId]; + var items; + + // Should always be this, marked, or rule. + if(type == 'this') items = [_getItemIdFromElementId(eventInfo.srcElement)]; + else if(type == 'marked') items = repeaterToEditItems[repeaterId]; + else { + // This should be rule + var visibleData = repeaterToActiveDataSet[repeaterId]; + var items = []; + var oldTarget = eventInfo.targetElement; + for(var i = 0; i < visibleData.length; i++) { + eventInfo.targetElement = _createElementId(repeaterId, visibleData[i].index); + if($ax.expr.evaluateExpr(rule, eventInfo).toLowerCase() != 'true') continue; + items.push(visibleData[i].index); + } + eventInfo.targetElement = oldTarget; + } + // Want them decending + items.sort(function(a, b) { return b - a; }); + + for(i = 0; i < items.length; i++) { + var itemId = items[i]; + $ax.splice(dataSet, itemId - 1, 1); + } + repeaterToEditItems[repeaterId] = []; + }; + _repeaterManager.deleteItems = _deleteItemsFromDataSet; + + var _updateEditItemsInDataSet = function(repeaterId, propMap, eventInfo, type, rule) { + var oldTarget = eventInfo.targetElement; + var dataSet = repeaterToCurrentDataSet[repeaterId]; + var items; + + // Should always be this, marked, or rule. + if(type == 'this') items = [_getItemIdFromElementId(eventInfo.srcElement)]; + else if(type == 'marked') items = repeaterToEditItems[repeaterId]; + else { + // This should be rule + var visibleData = repeaterToActiveDataSet[repeaterId]; + var items = []; + var oldTarget = eventInfo.targetElement; + for(var i = 0; i < visibleData.length; i++) { + eventInfo.targetElement = _createElementId(repeaterId, visibleData[i].index); + if($ax.expr.evaluateExpr(rule, eventInfo).toLowerCase() != 'true') continue; + items.push(visibleData[i].index); + } + eventInfo.targetElement = oldTarget; + } + + eventInfo.data = true; + for(var prop in propMap) { + if(!propMap.hasOwnProperty(prop)) continue; + var data = propMap[prop]; + for(var i = 0; i < items.length; i++) { + var item = items[i]; + if(data.type == 'literal') { + eventInfo.targetElement = _createElementId(repeaterId, item); + data = $ax.expr.evaluateExpr(data.literal, eventInfo); + if(typeof (data) == 'string') data = { type: 'text', text: data }; + } + dataSet[item - 1][prop] = data; + } + } + eventInfo.targetElement = oldTarget; + eventInfo.data = false; + }; + _repeaterManager.updateEditItems = _updateEditItemsInDataSet; + + var _getAllItemIds = function(repeaterId) { + var retval = []; + var currDataSet = repeaterToCurrentDataSet[repeaterId]; + for(var i = 0; i < currDataSet.length; i++) retval.push(i + 1); + return retval; + }; + _repeaterManager.getAllItemIds = _getAllItemIds; + + var _addEditItemToRepeater = function(repeaterId, itemIds) { + for(var i = 0; i < itemIds.length; i++) { + var itemId = Number(itemIds[i]); + var items = repeaterToEditItems[repeaterId]; + if(items.indexOf(itemId) == -1) items[items.length] = itemId; + } + }; + _repeaterManager.addEditItems = _addEditItemToRepeater; + + var _removeEditItemFromRepeater = function(repeaterId, itemIds) { + for(var i = 0; i < itemIds.length; i++) { + var itemId = itemIds[i]; + var items = repeaterToEditItems[repeaterId]; + var index = items.indexOf(Number(itemId)); + if(index != -1) $ax.splice(items, index, 1); + } + }; + _repeaterManager.removeEditItems = _removeEditItemFromRepeater; + + _repeaterManager.isEditItem = function(repeaterId, itemId) { + var items = repeaterToEditItems[repeaterId]; + return items.indexOf(itemId) != -1; + }; + + var _createElementId = function(scriptId, itemId) { + if(!itemId) return scriptId; + var sections = scriptId.split(/_(.+)?/); + var retval = sections[0] + '-' + itemId; + return sections.length > 1 ? retval + '_' + sections[1] : retval; + }; + _repeaterManager.createElementId = _createElementId; + + var _getElementId = function(scriptId, childId) { + var elementId = scriptId; + if($ax.getParentRepeaterFromScriptId(scriptId)) { + // Must be in the same item as the child + var itemId = $ax.repeater.getItemIdFromElementId(childId); + elementId = $ax.repeater.createElementId(scriptId, itemId); + } + return elementId; + }; + _repeaterManager.getElementId = _getElementId; + + var _getScriptIdFromElementId = function(elementId) { + if(!elementId) return elementId; + var sections = elementId.split('-'); + var retval = sections[0]; + if(sections.length <= 1) return retval; + sections = sections[1].split('_'); + return sections.length > 1 ? retval + '_' + sections[1] : retval; + }; + _repeaterManager.getScriptIdFromElementId = _getScriptIdFromElementId; + + var _getItemIdFromElementId = function(elementId) { + var sections = elementId.split('-'); + if(sections.length < 2) return ''; + sections = sections[1].split('_'); + return sections[0]; + }; + _repeaterManager.getItemIdFromElementId = _getItemIdFromElementId; + + // TODO: Just inline this if we keep it this way. + var _applySuffixToElementId = function(id, suffix) { + return id + suffix; + // return _createElementId(_getScriptIdFromElementId(id) + suffix, _getItemIdFromElementId(id)); + }; + _repeaterManager.applySuffixToElementId = _applySuffixToElementId; + + // var _getRepeaterSize = function(repeaterId) { + // var itemCount = ($ax.getItemIdsForRepeater(repeaterId) || []).length; + // if(itemCount == 0) return { width: 0, height: 0 }; + + // var repeater = $obj(repeaterId); + // // Width and height per item; + // var width = repeater.width; + // var height = repeater.height; + + // var viewId = $ax.adaptive.currentViewId || ''; + // var widthIncrement = width + _getAdaptiveProp(repeater.repeaterPropMap, 'horizontalSpacing', viewId); + // var heightIncrement = height + _getAdaptiveProp(repeater.repeaterPropMap, 'verticalSpacing', viewId); + + // var wrap = _getAdaptiveProp(repeater.repeaterPropMap, 'wrap', viewId); + // var vertical = _getAdaptiveProp(repeater.repeaterPropMap, 'vertical', viewId); + + // if(wrap == -1 || itemCount <= wrap) { + // if(vertical) height += heightIncrement * (itemCount - 1); + // else width += widthIncrement * (itemCount - 1); + // } else { + // var primaryDim = wrap; + // var secondaryDim = Math.ceil(itemCount / primaryDim); + + // if(vertical) { + // height += heightIncrement * (primaryDim - 1); + // width += widthIncrement * (secondaryDim - 1); + // } else { + // width += widthIncrement * (primaryDim - 1); + // height += heightIncrement * (secondaryDim - 1); + // } + // } + // return { width: width, height: height }; + // }; + // _repeaterManager.getRepeaterSize = _getRepeaterSize; + +}); + +// ******* Dynamic Panel Manager ******** // +$axure.internal(function($ax) { + // TODO: Probably a lot of the dynamic panel functions from pagescript should be moved here at some point... + var _dynamicPanelManager = $ax.dynamicPanelManager = {}; + + var _isIdFitToContent = _dynamicPanelManager.isIdFitToContent = function(id) { + var obj = $obj(id); + if(!obj || obj.type != 'dynamicPanel' || !obj.fitToContent) return false; + + var jobj = $jobj($ax.visibility.GetPanelState(id)); + return jobj.css('position') == 'relative'; + }; + + var _fitParentPanel = function(widgetId) { + // Find parent panel if there is one. + var parentPanelInfo = getParentPanel(widgetId); + if(!parentPanelInfo) { + // Get size for the body and html, and set the their height + _updateFitPanel(); + return; + } + + var parentId = parentPanelInfo.parent; + if(_updateFitPanel(parentId, parentPanelInfo.state)) _fitParentPanel(parentId); + }; + _dynamicPanelManager.fitParentPanel = _fitParentPanel; + + _dynamicPanelManager.initialize = function() { + _dynamicPanelManager.initFitPanels($ax('*')); + + $axure.resize(_handleResize); + _handleResize(); + }; + + _dynamicPanelManager.initFitPanels = function(query) { + var fitToContent = []; + query.each(function(obj, elementId) { + if(obj.type == 'dynamicPanel' && obj.fitToContent) fitToContent[fitToContent.length] = elementId; + }); + for(var i = fitToContent.length - 1; i >= 0; i--) { + var panelId = fitToContent[i]; + var stateCount = $obj(panelId).diagrams.length; + for(var j = 0; j < stateCount; j++) { + // Traverse through children to find what size it should be. + var stateId = $ax.repeater.applySuffixToElementId(panelId, '_state' + j); + var stateContentId = stateId + '_content'; + var stateQuery = $jobj(stateId); + var size = getContainerSize(stateContentId); + if(!$obj(panelId).percentWidth) stateQuery.width(size.width); + stateQuery.height(size.height); + } + } + }; + + var percentPanelToLeftCache = []; + var _lastWindowHeight = 0; + var percentPanelsInitialized = false; + var _handleResize = function() { + var newHeight = $(window).height(); + if(newHeight != _lastWindowHeight) { + _updateBodyHeight(); + _lastWindowHeight = newHeight; + } + + if(percentPanelsInitialized) { + for(var key in percentPanelToLeftCache) { + //could optimize to only update non-contained panels + _updatePanelPercentWidth(key); + } + } else { + $ax('*').each(function(obj, elementId) { + if(_isPercentWidthPanel(obj)) _updatePanelPercentWidth(elementId); + }); + percentPanelsInitialized = true; + } + }; + + var _isPercentWidthPanel = _dynamicPanelManager.isPercentWidthPanel = function(obj) { + return obj && obj.type == 'dynamicPanel' && obj.percentWidth; + }; + + _dynamicPanelManager.updatePanelContentPercentWidth = function(elementId) { + // if(_isPercentWidthPanel($obj(elementId))) return; + var stateChildrenQuery = $jobj(elementId).children('.panel_state'); + stateChildrenQuery.children('.panel_state_content').each( + function() { + $(this).children('.ax_dynamic_panel').each( + function() { _updatePanelPercentWidth(this.id); } + ); + } + ); + }; + + _dynamicPanelManager.updatePercentPanelCache = function(query) { + query.each(function(obj, elementId) { + if(_isPercentWidthPanel(obj)) { + if(_updatePercentPanelToLeftCache(obj, elementId, true)) { + _updatePanelPercentWidth(elementId); + } + } + }); + }; + + _dynamicPanelManager.resetFixedPanel = function(obj, domElement) { + if(obj.fixedHorizontal == 'center') domElement.style.marginLeft = ""; + if(obj.fixedVertical == 'middle') domElement.style.marginTop = ""; + }; + + _dynamicPanelManager.resetAdaptivePercentPanel = function(obj, domElement) { + if(!_isPercentWidthPanel(obj)) return; + + if(obj.fixedHorizontal == 'center') domElement.style.marginLeft = ""; + else if(obj.fixedHorizontal == 'right') domElement.style.width = ""; + }; + + var _updatePercentPanelToLeftCache = function(obj, elementId, overwrite) { + var wasUpdated = false; + var jObj = $jobj(elementId); + if(!percentPanelToLeftCache[elementId] || overwrite) { + if(obj.fixedHorizontal == 'center') percentPanelToLeftCache[elementId] = Number(jObj.css('margin-left').replace("px", "")); + else if(obj.fixedHorizontal == 'right') percentPanelToLeftCache[elementId] = jObj.width() + Number(jObj.css('right').replace("px", "")); + else percentPanelToLeftCache[elementId] = Number(jObj.css('left').replace("px", "")); + wasUpdated = true; + } + + if(obj.fixedHorizontal == 'right' && _isIdFitToContent(elementId)) { + var fitWidth = getContainerSize($ax.visibility.GetPanelState(elementId) + '_content').width; + percentPanelToLeftCache[elementId] = fitWidth + Number(jObj.css('right').replace("px", "")); + wasUpdated = true; + } + return wasUpdated; + }; + + var _updatePanelPercentWidth = _dynamicPanelManager.updatePanelPercentWidth = function(elementId) { + var obj = $obj(elementId); + if(!_isPercentWidthPanel(obj)) return; + + _updatePercentPanelToLeftCache(obj, elementId, false); + + var width; + var x; + + if(obj.fixedHorizontal) { + x = 0; + width = $(window).width(); + } else { + var parentPanelInfo = getParentPanel(elementId); + if(parentPanelInfo) { + var parentId = parentPanelInfo.parent; + width = $jobj(parentId).width(); + var parentObj = $obj(parentId); + if(parentObj.percentWidth) { + var stateId = $ax.repeater.applySuffixToElementId(parentId, '_state' + parentPanelInfo.state); + var stateContentId = stateId + '_content'; + x = -Number($jobj(stateContentId).css('margin-left').replace("px", "")); + } else x = 0; + } else { + var parentRepeater = $ax.getParentRepeaterFromScriptId($ax.repeater.getScriptIdFromElementId(elementId)); + if(parentRepeater) { + var itemId = $ax.repeater.getItemIdFromElementId(elementId); + var itemContainerId = $ax.repeater.createElementId(parentRepeater, itemId); + x = 0; + width = $jobj(itemContainerId).width(); + } else { + var $window = $(window); + width = $window.width(); + var bodyLeft = Number($('body').css('left').replace("px", "")); + var bodyWidth = Number($('body').css('width').replace("px", "")); + var isCenter = $ax.adaptive.getPageStyle().pageAlignment == 'center'; + width = Math.max(width, bodyWidth); + x = isCenter ? -(width - bodyWidth) / 2 - bodyLeft : 0; + } + } + } + + var jObj = $jobj(elementId); + if(obj.fixedHorizontal == 'left') jObj.css('left', x + 'px'); + else if(obj.fixedHorizontal == 'center') { + jObj.css('left', x + 'px'); + jObj.css('margin-left', 0 + 'px'); + } else jObj.css('left', x + 'px'); + + jObj.css('width', width + 'px'); + + var panelLeft = percentPanelToLeftCache[elementId]; + var stateChildrenQuery = jObj.children('.panel_state'); + stateChildrenQuery.css('width', width + 'px'); + + if(obj.fixedHorizontal == 'center') + stateChildrenQuery.children('.panel_state_content').css('left', '50%').css('margin-left', panelLeft + 'px'); + else if(obj.fixedHorizontal == 'right') + stateChildrenQuery.children('.panel_state_content').css('left', width - panelLeft + 'px'); + else stateChildrenQuery.children('.panel_state_content').css('margin-left', panelLeft - x + 'px'); + }; + + _dynamicPanelManager.updateAllFitPanels = function() { + var fitToContent = []; + $ax('*').each(function(obj, elementId) { + if(obj.type == 'dynamicPanel' && obj.fitToContent) fitToContent[fitToContent.length] = elementId; + }); + for(var i = fitToContent.length - 1; i >= 0; i--) { + var panelId = fitToContent[i]; + var stateCount = $obj(panelId).diagrams.length; + for(var j = 0; j < stateCount; j++) { + $ax.dynamicPanelManager.setFitToContentCss(panelId, true); + _updateFitPanel(panelId, j, true); + } + } + + // Make sure the page itself updates its size + _updateFitPanel(); + }; + + _dynamicPanelManager.setFitToContentCss = function(elementId, fitToContent, oldWidth, oldHeight) { + + if($ax.dynamicPanelManager.isIdFitToContent(elementId) == fitToContent) return; + + var panel = $jobj(elementId); + var stateCss; + var scrollbars = $obj(elementId).scrollbars; + + if(fitToContent) { + panel.attr('style', ''); + stateCss = {}; + stateCss.position = 'relative'; + if(scrollbars != 'none') { + stateCss.overflow = 'visible'; + stateCss['-webkit-overflow-scrolling'] = 'visible'; + } + if(scrollbars == 'verticalAsNeeded') { + stateCss['overflow-x'] = 'visible'; + stateCss['-ms-overflow-x'] = 'visible'; + } else if(scrollbars == 'horizontalAsNeeded') { + stateCss['overflow-y'] = 'visible'; + stateCss['-ms-overflow-y'] = 'visible'; + } + panel.children().css(stateCss); + } else { + var panelCss = { width: oldWidth, height: oldHeight }; + stateCss = { width: oldWidth, height: oldHeight }; + panelCss.overflow = 'hidden'; + stateCss.position = 'absolute'; + if(scrollbars != 'none') { + stateCss.overflow = 'auto'; + stateCss['-webkit-overflow-scrolling'] = 'touch'; + } + if(scrollbars == 'verticalAsNeeded') { + stateCss['overflow-x'] = 'hidden'; + stateCss['-ms-overflow-x'] = 'hidden'; + } else if(scrollbars == 'horizontalAsNeeded') { + stateCss['overflow-y'] = 'hidden'; + stateCss['-ms-overflow-y'] = 'hidden'; + } + panel.css(panelCss); + panel.children().css(stateCss); + } + }; + + // TODO: [ben] This should be used in a lot more places... + var _getPanelJobj = _dynamicPanelManager.getPanelJobj = function(id) { + // Try for container first + var container = $jobj(id + '_container'); + return container.length ? container : $jobj(id); + }; + + var _getShownState = function(id) { + var obj = $obj(id); + if(!obj || obj.type != 'dynamicPanel') return $jobj(id); + + var children = $jobj(id).children(); + for(var i = 0; i < children.length; i++) { + var child = children[i]; + if(child && child.style && child.style.display != 'none') return $jobj(child.id); + } + + return $jobj(id); + }; + + var _updateBodyHeight = function() { + // Get size for the body and html, and set the their height + var winHeight = $(window).height(); + var contentHeight = getContainerSize().height; + var height = winHeight >= contentHeight ? '100%' : contentHeight + 'px'; + $('body').css('height', height); + $('html').css('height', height); + }; + + var _updateFitPanel = function(panelId, stateIndex, initializingView) { + // If no panelId, then we are trying to update the body. + if(!panelId) { + _updateBodyHeight(); + return false; + } + + // Only fit if fitToContent is true + if(!$ax.dynamicPanelManager.isIdFitToContent(panelId)) return false; + + // Traverse through children to find what size it should be. + var stateId = $ax.repeater.applySuffixToElementId(panelId, '_state' + stateIndex); + var stateContentId = stateId + '_content'; + var stateQuery = $jobj(stateId); + var size = getContainerSize(stateContentId); + + // Skip if size hasn't changed + var oldWidth = stateQuery.width(); + var oldHeight = stateQuery.height(); + if(oldWidth == size.width && oldHeight == size.height) return false; + + if(!$obj(panelId).percentWidth) stateQuery.width(size.width); + stateQuery.height(size.height); + + //updatePercentWidth on all child panels + $jobj(stateContentId).children('.ax_dynamic_panel').each( + function() { _updatePanelPercentWidth(this.id); } + ); + + //do the following only if it is the current state + if(stateId != $ax.visibility.GetPanelState(panelId)) return false; + + if(!initializingView) _adjustFixed(panelId, oldWidth, oldHeight, size.width, size.height); + else if(stateIndex != 0) { + var state0 = $jobj($ax.repeater.applySuffixToElementId(panelId, '_state0')); + _adjustFixed(panelId, state0.width(), state0.height(), size.width, size.height); + } + + $ax.event.raiseSyntheticEvent(panelId, 'onResize'); + $ax.flyoutManager.updateFlyout(panelId); + + return true; + }; + _dynamicPanelManager.updateFitPanel = _updateFitPanel; + + var getParentPanel = function(widgetId, path) { + path = path || $ax.getPathFromScriptId($ax.repeater.getScriptIdFromElementId(widgetId)); + + var obj = $obj(widgetId); + if(obj.parentDynamicPanel) { + path[path.length - 1] = obj.parentDynamicPanel; + var parentId = $ax.getScriptIdFromPath(path); + parentId = $ax.repeater.getElementId(parentId, widgetId); + var parentObj = $obj(parentId); + var retVal = { parent: parentId }; + for(var i = 0; i < parentObj.diagrams.length; i++) { + var stateId = $ax.repeater.applySuffixToElementId(parentId, '_state' + i); + var stateQuery = $jobj(stateId); + if(stateQuery.find('#' + widgetId).length != 0) { + retVal.state = i; + break; + } + } + return retVal; + } + + if(path.length == 1) return undefined; + + path.pop(); + var parentMaster = $ax.getScriptIdFromPath(path); + parentMaster = $ax.repeater.getElementId(parentMaster, widgetId); + + return getParentPanel(parentMaster, path); + }; + + // TODO: May be a better location for this. Used currently for rdo and panel state containers + var getContainerSize = function(containerId) { + var containerQuery = containerId ? $jobj(containerId) : $('#base'); + var children = containerQuery.children(); + // Default size + var size = { width: 0, height: 0 }; + for(var i = 0; i < children.length; i++) { + var child = $(children[i]); + var childId = child.attr('id'); + if(!childId || $ax.visibility.limboIds[childId] || !$ax.visibility.IsIdVisible(childId)) continue; + + var childObj = $obj(childId); + // On the body there are some children that should be ignored, as they are not objects. + if(!childObj) continue; + + // Ignore fixed + if(childObj.type == 'dynamicPanel' && childObj.fixedHorizontal) continue; + + var position = { left: Number(child.css('left').replace('px', '')), top: Number(child.css('top').replace('px', '')) }; + + // Default width and height (adjusted for widgets that are special) + var width = child.width(); + var height = child.height(); + if(childObj.type == 'master') { + var masterSize = getContainerSize(childId); + width = masterSize.width; + height = masterSize.height; + // } else if(childObj.type == 'repeater') { + // var repeaterSize = $ax.repeater.getRepeaterSize(childId); + // width = repeaterSize.width; + // height = repeaterSize.height; + + // if(width == 0 && height == 0) continue; + + // position.left += childObj.x; + // position.top += childObj.y; + } else if(childObj.type == 'dynamicPanel') { + if($ax.dynamicPanelManager.isIdFitToContent(childId)) { + var stateQuery = $jobj($ax.visibility.GetPanelState(childId)); + width = stateQuery.width(); + height = stateQuery.height(); + } + } + + size.width = Math.max(size.width, position.left + width); + size.height = Math.max(size.height, position.top + height); + } + + return size; + }; + + var _adjustFixed = _dynamicPanelManager.adjustFixed = function(panelId, oldWidth, oldHeight, width, height) { + var loc = _getFixedPosition(panelId, oldWidth, oldHeight, width, height); + if(loc) { + $ax.action.addAnimation(panelId, function() { + $ax.move.MoveWidget(panelId, loc[0], loc[1], 'none', 0, false, null, true); + }); + } + }; + + var _getFixedPosition = _dynamicPanelManager.getFixedPosition = function(panelId, oldWidth, oldHeight, width, height) { + var panelObj = $obj(panelId); + var x = 0; + var y = 0; + if(panelObj.fixedHorizontal == 'center') { + x = (oldWidth - width) / 2; + } + if(panelObj.fixedVertical == 'middle') { + y = (oldHeight - height) / 2; + } + return x == 0 && y == 0 ? undefined : [x, y]; + }; + + _dynamicPanelManager.getFixedInfo = function(panelId) { + var panelObj = $obj(panelId); + if(!panelObj || panelObj.type != 'dynamicPanel') return {}; + var jobj = $jobj(panelId); + if(jobj.css('position') == 'absolute') return {}; + + var info = {}; + var horizontal = panelObj.fixedHorizontal; + if(!horizontal) return info; + + info.fixed = true; + info.horizontal = horizontal; + info.vertical = panelObj.fixedVertical; + + if(info.horizontal == 'left') info.x = Number(jobj.css('left').replace('px', '')); + else if(info.horizontal == 'center') info.x = Number(jobj.css('margin-left').replace('px', '')); + else if(info.horizontal == 'right') info.x = Number(jobj.css('right').replace('px', '')); + + if(info.vertical == 'top') info.y = Number(jobj.css('top').replace('px', '')); + else if(info.vertical == 'middle') info.y = Number(jobj.css('margin-top').replace('px', '')); + else if(info.vertical == 'bottom') info.y = Number(jobj.css('bottom').replace('px', '')); + + return info; + }; + + // Show isn't necessary if this is always done before toggling (which is currently true), but I don't want that + // change (if it happened) to break this. + var _compressToggle = function(id, vert, show, easing, duration) { + var panelJobj = _getPanelJobj(id); + var threshold = Number(panelJobj.css(vert ? 'top' : 'left').replace('px', '')); + var delta = _getShownState(id)[vert ? 'height' : 'width'](); + + if(!show) { + // Need to make threshold bottom/right + threshold += delta; + // Delta is in the opposite direction + delta *= -1; + } + + _compress(id, vert, threshold, delta, easing, duration); + }; + _dynamicPanelManager.compressToggle = _compressToggle; + + // Used when setting state of dynamic panel + var _compressDelta = function(id, oldState, newState, vert, easing, duration) { + var panelQuery = $jobj(id); + var oldQuery = $jobj(oldState); + var newQuery = $jobj(newState); + + var thresholdProp = vert ? 'top' : 'left'; + var thresholdOffset = vert ? 'height' : 'width'; + var threshold = Number(panelQuery.css(thresholdProp).replace('px', '')); + threshold += oldQuery[thresholdOffset](); + + var delta = newQuery[thresholdOffset]() - oldQuery[thresholdOffset](); + + var clampProp = vert ? 'left' : 'top'; + var clampOffset = vert ? 'width' : 'height'; + var clamp = [Number(panelQuery.css(clampProp).replace('px', ''))]; + clamp[1] = clamp[0] + Math.max(oldQuery[clampOffset](), newQuery[clampOffset]()); + + _compress(id, vert, threshold, delta, easing, duration, clamp); + }; + _dynamicPanelManager.compressDelta = _compressDelta; + + var _compress = function(id, vert, threshold, delta, easing, duration, clamp) { + if(!easing) { + easing = 'none'; + duration = 0; + } + var parent = $ax('#' + id).getParents()[0]; + var obj = $ax.getObjectFromElementId(parent); + while(obj && obj.type == 'referenceDiagramObject') { + parent = $ax('#' + parent).getParents()[0]; + obj = $ax.getObjectFromElementId(parent); + } + + var jobj = _getPanelJobj(id); + + // If below, a horizantal clamp, otherwise a vertical clamp + var clampProp = vert ? 'left' : 'top'; + var clampOffset = vert ? 'width' : 'height'; + if(!clamp) { + clamp = [Number(jobj.css(clampProp).replace('px', ''))]; + clamp[1] = clamp[0] + jobj[clampOffset](); + } + + // If clamps, threshold, or delta is not a number, can't compress. + if(isNaN(clamp[0]) || isNaN(clamp[1]) || isNaN(threshold) || isNaN(delta)) return; + + // Note: If parent is body, some of these aren't widgets + if(parent && $jobj(parent + '_content').length > 0) parent = parent + '_content'; + var children = $(parent ? '#' + parent : '#base').children(); + for(var i = 0; i < children.length; i++) { + var child = $(children[i]); + var childId = child.attr('id'); + // Don't move self, and check id to make sure it is a widget. + if(childId == id || !childId || childId[0] != 'u') continue; + var numbers = childId.substring(1).split('-'); + if(numbers.length < 1 || isNaN(Number(numbers[0])) || (numbers.length == 2 && isNaN(Number(numbers[1]))) || numbers.length > 2) continue; + + var markerProp = vert ? 'top' : 'left'; + var marker = Number(child.css(markerProp).replace('px', '')); + + var childClamp = [Number(child.css(clampProp).replace('px', ''))]; + + // Dynamic panels are not reporting correct size sometimes, so pull it from the state. Get shown state just returns the widget if it is not a dynamic panel. + var sizeChild = _getShownState(childId); + childClamp[1] = childClamp[0] + sizeChild[clampOffset](); + if(isNaN(marker) || isNaN(childClamp[0]) || isNaN(childClamp[1]) || + marker < threshold || childClamp[1] <= clamp[0] || childClamp[0] >= clamp[1]) continue; + + marker += delta; + + var props = {}; + props[markerProp] = marker; + if(easing == 'none') child.css(props); + else child.animate(props, duration, easing); + } + }; + + var _parentHandlesStyles = function(id) { + var parents = $ax('#' + id).getParents(true)[0]; + if(!parents) return false; + var directParent = true; + for(var i = 0; i < parents.length; i++) { + var parentId = parents[i]; + // Because state parent panel id is the active state, must strip off the end of it. + var itemId = $ax.repeater.getItemIdFromElementId(parentId); + parentId = parentId.split('_')[0]; + if(itemId) parentId = $ax.repeater.createElementId(parentId, itemId); + var parentObj = $obj(parentId); + if(parentObj.type != 'dynamicPanel') continue; + if(!parentObj.propagate) { + directParent = false; + continue; + } + return { id: parentId, direct: directParent }; + } + return false; + }; + _dynamicPanelManager.parentHandlesStyles = _parentHandlesStyles; + + var _propagateMouseOver = function(id, value) { + propagate(id, true, value); + }; + _dynamicPanelManager.propagateMouseOver = _propagateMouseOver; + + var _propagateMouseDown = function(id, value) { + propagate(id, false, value); + }; + _dynamicPanelManager.propagateMouseDown = _propagateMouseDown; + + var propagate = function(id, hover, value) { + var hoverChildren = function(children) { + if(!children) return; + for(var i = 0; i < children.length; i++) { + var elementId = children[i].id; + var obj = $obj(elementId); + if(obj.type == 'dynamicPanel' && !obj.propagate) continue; + + if(hover) $ax.style.SetWidgetHover(elementId, value); + else $ax.style.SetWidgetMouseDown(elementId, value); + $ax.annotation.updateLinkLocations($ax.style.GetTextIdFromShape(elementId)); + + hoverChildren(children[i].children); + } + }; + hoverChildren($ax('#' + id).getChildren(true)[0].children); + }; +}); diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/sto.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/sto.js" new file mode 100644 index 0000000..f635efa --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/sto.js" @@ -0,0 +1,204 @@ + +$axure.internal(function($ax) { + var funcs = {}; + + var weekday = new Array(7); + weekday[0] = "Sunday"; + weekday[1] = "Monday"; + weekday[2] = "Tuesday"; + weekday[3] = "Wednesday"; + weekday[4] = "Thursday"; + weekday[5] = "Friday"; + weekday[6] = "Saturday"; + + funcs.getDayOfWeek = function() { + return _getDayOfWeek(this.getDay()); + }; + + var _getDayOfWeek = $ax.getDayOfWeek = function(day) { + return weekday[day]; + }; + + var month = new Array(12); + month[0] = "January"; + month[1] = "February"; + month[2] = "March"; + month[3] = "April"; + month[4] = "May"; + month[5] = "June"; + month[6] = "July"; + month[7] = "August"; + month[8] = "September"; + month[9] = "October"; + month[10] = "November"; + month[11] = "December"; + + funcs.getMonthName = function() { + return _getMonthName(this.getMonth()); + }; + + var _getMonthName = $ax.getMonthName = function(monthNum) { + return month[monthNum]; + }; + + funcs.addYears = function(years) { + var retVal = new Date(this.valueOf()); + retVal.setFullYear(this.getFullYear() + Number(years)); + return retVal; + }; + + funcs.addMonths = function(months) { + var retVal = new Date(this.valueOf()); + retVal.setMonth(this.getMonth() + Number(months)); + return retVal; + }; + + funcs.addDays = function(days) { + var retVal = new Date(this.valueOf()); + retVal.setDate(this.getDate() + Number(days)); + return retVal; + }; + + funcs.addHours = function(hours) { + var retVal = new Date(this.valueOf()); + retVal.setHours(this.getHours() + Number(hours)); + return retVal; + }; + + funcs.addMinutes = function(minutes) { + var retVal = new Date(this.valueOf()); + retVal.setMinutes(this.getMinutes() + Number(minutes)); + return retVal; + }; + + funcs.addSeconds = function(seconds) { + var retVal = new Date(this.valueOf()); + retVal.setSeconds(this.getSeconds() + Number(seconds)); + return retVal; + }; + + funcs.addMilliseconds = function(milliseconds) { + var retVal = new Date(this.valueOf()); + retVal.setMilliseconds(this.getMilliseconds() + Number(milliseconds)); + return retVal; + }; + + var _stoHandlers = {}; + + _stoHandlers.literal = function(sto, scope, eventInfo) { + return sto.value; + }; + + //need angle bracket syntax because var is a reserved word + _stoHandlers['var'] = function(sto, scope, eventInfo) { + var retVal = scope[sto.name] || $ax.globalVariableProvider.getVariableValue(sto.name, eventInfo); + // Handle desired type here? + if((sto.desiredType == 'int' || sto.desiredType == 'float')) { + var num = new Number(retVal); + retVal = isNaN(num.valueOf()) ? retVal : num; + } + return retVal; + }; + + //TODO: Perhaps repeaterId can be detirmined at generation, and stored in the sto info. + _stoHandlers.item = function(sto, scope, eventInfo, prop) { + prop = prop || (eventInfo.data ? 'data' : eventInfo.link ? 'url' : eventInfo.image ? 'img' : 'text'); + var id = sto.isTarget || !$ax.repeater.hasData(eventInfo.srcElement, sto.name) ? eventInfo.targetElement : eventInfo.srcElement; + return getData(id, sto.name, prop); + }; + + var getData = function(id, name, prop) { + var repeaterId = $ax.getParentRepeaterFromScriptId($ax.repeater.getScriptIdFromElementId(id)); + var itemId = $ax.repeater.getItemIdFromElementId(id); + return $ax.repeater.getData(repeaterId, itemId, name, prop); + }; + + _stoHandlers.paren = function(sto, scope, eventInfo) { + return _evaluateSTO(sto.innerSTO, scope, eventInfo); + }; + + _stoHandlers.fCall = function(sto, scope, eventInfo) { + //TODO: [mas] handle required type + var thisObj = _evaluateSTO(sto.thisSTO, scope, eventInfo); + var args = []; + for(var i = 0; i < sto.arguments.length; i++) { + args[i] = _evaluateSTO(sto.arguments[i], scope, eventInfo); + } + var fn = thisObj[sto.func] || funcs[sto.func]; + return fn.apply(thisObj, args); + }; + + _stoHandlers.propCall = function(sto, scope, eventInfo) { + //TODO: [mas] handle required type + if((sto.prop == 'url' || sto.prop == 'img') && sto.thisSTO.sto == 'item') return _stoHandlers.item(sto.thisSTO, scope, eventInfo, sto.prop); + var thisObj = _evaluateSTO(sto.thisSTO, scope, eventInfo); + return thisObj[sto.prop]; + }; + + var _binOps = {}; + _binOps['+'] = function(left, right) { + if(left instanceof Date) return addDayToDate(left, right); + if(right instanceof Date) return addDayToDate(right, left); + return Number(left) + Number(right); + }; + _binOps['-'] = function(left, right) { + if(left instanceof Date) return addDayToDate(left, -right); + return left - right; + }; + _binOps['*'] = function(left, right) { return Number(left) * Number(right); }; + _binOps['/'] = function(left, right) { return Number(left) / Number(right); }; + _binOps['%'] = function(left, right) { return Number(left) % Number(right); }; + _binOps['=='] = function(left, right) { return _getBool(left) == _getBool(right); }; + _binOps['!='] = function(left, right) { return _getBool(left) != _getBool(right); }; + _binOps['<'] = function(left, right) { return Number(left) < Number(right); }; + _binOps['<='] = function(left, right) { return Number(left) <= Number(right); }; + _binOps['>'] = function(left, right) { return Number(left) > Number(right); }; + _binOps['>='] = function(left, right) { return Number(left) >= Number(right); }; + _binOps['&&'] = function(left, right) { return _getBool(left) && _getBool(right); }; + _binOps['||'] = function(left, right) { return _getBool(left) || _getBool(right); }; + + // TODO: Move this to generic place to be used. + var addDayToDate = function(date, days) { + var retVal = new Date(date.valueOf()); + retVal.setDate(date.getDate() + days); + return retVal; + }; + + var _unOps = {}; + _unOps['+'] = function(arg) { return +arg; }; + _unOps['-'] = function(arg) { return -arg; }; + _unOps['!'] = function(arg) { return !_getBool(arg); }; + + _stoHandlers.binOp = function(sto, scope, eventInfo) { + var left = _evaluateSTO(sto.leftSTO, scope, eventInfo); + var right = _evaluateSTO(sto.rightSTO, scope, eventInfo); + return _binOps[sto.op](left, right); + }; + + _stoHandlers.unOp = function(sto, scope, eventInfo) { + var input = _evaluateSTO(sto.inputSTO, scope, eventInfo); + return _unOps[sto.op](input); + }; + + var _getBool = function(val) { + var lowerVal = val.toLowerCase ? val.toLowerCase() : val; + return lowerVal == "false" ? false : lowerVal == "true" ? true : val; + }; + $ax.getBool = _getBool; + + var _evaluateSTO = function(sto, scope, eventInfo) { + if(sto.sto == 'error') return undefined; + return castSto(_stoHandlers[sto.sto](sto, scope, eventInfo), sto); + }; + $ax.evaluateSTO = _evaluateSTO; + + var castSto = function(val, sto) { + var type = sto.computedType || sto.desiredType; + if(type == 'string') val = String(val); + else if(type == 'date') val = new Date(val); + else if(type == 'int' || type == 'float') val = Number(val); + else if(type == 'bool') val = Boolean(val); + + return val; + }; +}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/style.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/style.js" new file mode 100644 index 0000000..e0a7ee5 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/style.js" @@ -0,0 +1,964 @@ +$axure.internal(function($ax) { + var _style = {}; + $ax.style = _style; + + var _disabledWidgets = {}; + var _selectedWidgets = {}; + + // A table to cache the outerHTML of the _rtf elements before the rollover state is applied. + var _originalTextCache = {}; + // A table to exclude the normal style from adaptive overrides + var _shapesWithSetRichText = {}; + + // just a listing of shape ids + var _adaptiveStyledWidgets = {}; + + var _setLinkStyle = function(id, styleName) { + var textId = $ax.style.GetTextIdFromLink(id); + var style = _computeAllOverrides(id, textId, styleName, $ax.adaptive.currentViewId); + if(!_originalTextCache[textId]) { + $ax.style.CacheOriginalText(textId); + } + if($.isEmptyObject(style)) return; + + var parentObjectCache = _originalTextCache[textId].styleCache; + + _transformTextWithVerticalAlignment(textId, function() { + var cssProps = _getCssStyleProperties(style); + $('#' + id).find('*').andSelf().each(function(index, element) { + element.setAttribute('style', parentObjectCache[element.id]); + _applyCssProps(element, cssProps); + }); + }); + }; + + var _resetLinkStyle = function(id) { + var textId = $ax.style.GetTextIdFromLink(id); + var parentObjectCache = _originalTextCache[textId].styleCache; + + _transformTextWithVerticalAlignment(textId, function() { + $('#' + id).find('*').andSelf().each(function(index, element) { + element.style.cssText = parentObjectCache[element.id]; + }); + }); + if($ax.event.mouseDownObjectId) { + $ax.style.SetWidgetMouseDown($ax.event.mouseDownObjectId, true); + } else if($ax.event.mouseOverObjectId) { + $ax.style.SetWidgetHover($ax.event.mouseOverObjectId, true); + } + }; + + $ax.style.SetLinkHover = function(id) { + _setLinkStyle(id, MOUSE_OVER); + }; + + $ax.style.SetLinkNotHover = function(id) { + _resetLinkStyle(id); + }; + + $ax.style.SetLinkMouseDown = function(id) { + _setLinkStyle(id, MOUSE_DOWN); + }; + + $ax.style.SetLinkNotMouseDown = function(id) { + _resetLinkStyle(id); + var style = _computeAllOverrides(id, $ax.event.mouseOverObjectId, MOUSE_OVER, $ax.adaptive.currentViewId); + + if(!$.isEmptyObject(style)) $ax.style.SetLinkHover(id); + //we dont do anything here because the widget not mouse down has taken over here + }; + + var _widgetHasState = function(id, state) { + if($ax.style.getElementImageOverride(id, state)) return true; + var diagramObject = $ax.getObjectFromElementId(id); + + var adaptiveIdChain = $ax.adaptive.getAdaptiveIdChain($ax.adaptive.currentViewId); + + for(var i = 0; i < adaptiveIdChain.length; i++) { + var viewId = adaptiveIdChain[i]; + var adaptiveStyle = diagramObject.adaptiveStyles[viewId]; + if(adaptiveStyle && adaptiveStyle.stateStyles && adaptiveStyle.stateStyles[state]) return true; + } + + if(diagramObject.style.stateStyles) return diagramObject.style.stateStyles[state]; + + return false; + }; + + // Returns what overrides the hover, or false if nothing. + var _hoverOverride = function(id) { + if($ax.style.IsWidgetDisabled(id)) return DISABLED; + if($ax.style.IsWidgetSelected(id)) return SELECTED; + var obj = $ax.getObjectFromElementId(id); + if(!obj.isContained) return false; + var path = $ax.getPathFromScriptId($ax.repeater.getScriptIdFromElementId(id)); + path[path.length - 1] = obj.parent.id; + var itemId = $ax.repeater.getItemIdFromElementId(id); + return _hoverOverride($ax.getElementIdFromPath(path, { itemNum: itemId })); + }; + + $ax.style.SetWidgetHover = function(id, value) { + var override = _hoverOverride(id); + if(override == DISABLED) return; + if(!_widgetHasState(id, MOUSE_OVER)) return; + + var valToSet = value || _isRolloverOverride(id); + var state = _generateMouseState(id, valToSet ? MOUSE_OVER : NORMAL, override == SELECTED); + _applyImageAndTextJson(id, state); + _updateElementIdImageStyle(id, state); + }; + + var _rolloverOverrides = []; + var _isRolloverOverride = function(id) { + return _rolloverOverrides.indexOf(id) != -1; + }; + + $ax.style.AddRolloverOverride = function(id) { + if(_isRolloverOverride(id)) return; + _rolloverOverrides[_rolloverOverrides.length] = id; + if($ax.event.mouseOverIds.indexOf(id) == -1) $ax.style.SetWidgetHover(id, true); + }; + + $ax.style.RemoveRolloverOverride = function(id) { + var index = _rolloverOverrides.indexOf(id); + if(index == -1) return; + $ax.splice(_rolloverOverrides, index, 1); + if($ax.event.mouseOverIds.indexOf(id) == -1) $ax.style.SetWidgetHover(id, false); + }; + + // function GetWidgetCurrentState(id) { + // if($ax.style.IsWidgetDisabled(id)) return "disabled"; + // if($ax.style.IsWidgetSelected(id)) return "selected"; + // if($ax.event.mouseOverObjectId == id) return "mouseOver"; + // if($ax.event.mouseDownObjectId == id) return "mouseDown"; + + // return "normal"; + // } + + $ax.style.ObjHasMouseDown = function(id) { + var obj = $obj(id); + return $ax.style.getElementImageOverride(id, 'mouseDown') || obj.style && obj.style.stateStyles && obj.style.stateStyles.mouseDown; + }; + + $ax.style.SetWidgetMouseDown = function(id, value) { + if($ax.style.IsWidgetDisabled(id)) return; + if(!_widgetHasState(id, MOUSE_DOWN)) return; + + // ApplyImageAndTextJson(id, value ? 'mouseDown' : !$.isEmptyObject(GetStyleForState(id, null, 'mouseOver')) ? 'mouseOver' : 'normal'); + var state = _generateMouseState(id, value ? MOUSE_DOWN : MOUSE_OVER, $ax.style.IsWidgetSelected(id)); + _applyImageAndTextJson(id, state); + _updateElementIdImageStyle(id, state); + }; + + var _generateMouseState = function(id, mouseState, selected) { + if(selected) { + var viewChain = $ax.adaptive.getAdaptiveIdChain($ax.adaptive.currentViewId); + viewChain[viewChain.length] = ''; + var obj = $obj(id); + + var any = function(dict) { + for(var key in dict) return true; + return false; + }; + + for(var i = 0; i < viewChain.length; i++) { + var viewId = viewChain[i]; + // Need to check seperately for images. + if((obj.adaptiveStyles && obj.adaptiveStyles[viewId] && any(obj.adaptiveStyles[viewId])) || obj.images['selected~' + viewId]) return SELECTED; + } + var selectedStyle = obj.style && obj.style.stateStyles && obj.style.stateStyles.selected; + if(selectedStyle && any(selectedStyle)) return SELECTED; + } + + // Not using selected + return mouseState; + }; + + $ax.style.SetWidgetSelected = function(id, value, alwaysApply) { + if($ax.style.IsWidgetDisabled(id)) return; + + if(value) { + var group = $('#' + id).attr('selectiongroup'); + if(group) { + $("[selectiongroup='" + group + "']").each(function() { + var otherId = this.id; + if(otherId == id) return; + $ax.style.SetWidgetSelected(otherId, false); + }); + } + } + + var obj = $obj(id); + if(obj) { + if(obj.type == 'dynamicPanel') { + var children = $axure('#' + id).getChildren()[0].children; + for(var i = 0; i < children.length; i++) { + var childId = children[i]; + // Special case for trees + var childObj = $jobj(childId); + if(childObj.hasClass('treeroot')) { + var treenodes = childObj.find('.treenode'); + for(var j = 0; j < treenodes.length; j++) { + $axure('#' + treenodes[j].id).selected(value); + } + } else $axure('#' + childId).selected(value); + } + } else { + while(obj.isContained && !_widgetHasState(id, 'selected')) obj = obj.parent; + var itemId = $ax.repeater.getItemIdFromElementId(id); + var path = $ax.getPathFromScriptId($ax.repeater.getScriptIdFromElementId(id)); + path[path.length - 1] = obj.id; + id = $ax.getElementIdFromPath(path, { itemNum: itemId }); + if(alwaysApply || _widgetHasState(id, SELECTED)) { + var state = _generateSelectedState(id, value); + _applyImageAndTextJson(id, state); + _updateElementIdImageStyle(id, state); + } + } + } + + // ApplyImageAndTextJson(id, value ? 'selected' : 'normal'); + _selectedWidgets[id] = value; + }; + + var _generateSelectedState = function(id, selected) { + var mouseState = $ax.event.mouseDownObjectId == id ? MOUSE_DOWN : $ax.event.mouseOverIds.indexOf(id) != -1 ? MOUSE_OVER : NORMAL; + return _generateMouseState(id, mouseState, selected); + }; + + $ax.style.IsWidgetSelected = function(id) { + return Boolean(_selectedWidgets[id]); + }; + + $ax.style.SetWidgetEnabled = function(id, value) { + _disabledWidgets[id] = !value; + $('#' + id).find('a').css('cursor', value ? 'pointer' : 'default'); + + if(!_widgetHasState(id, DISABLED)) return; + if(!value) { + _applyImageAndTextJson(id, DISABLED); + _updateElementIdImageStyle(id, DISABLED); + } else $ax.style.SetWidgetSelected(id, $ax.style.IsWidgetSelected(id), true); + }; + + $ax.style.SetWidgetPlaceholder = function(id, value, text, password) { + var inputId = $ax.repeater.applySuffixToElementId(id, '_input'); + + // Right now this is the only style on the widget. If other styles (ex. Rollover), are allowed + // on TextBox/TextArea, or Placeholder is applied to more widgets, this may need to do more. + var obj = $jobj(inputId); + if(!value) { + obj.attr('style', ''); + if(password) document.getElementById(inputId).type = 'password'; + } else { + var style = _computeAllOverrides(id, undefined, HINT, $ax.adaptive.currentViewId); + var styleProperties = _getCssStyleProperties(style); + + //moved this out of GetCssStyleProperties for now because it was breaking un/rollovers with gradient fills + if(style.fill) styleProperties.runProps.backgroundColor = _getColorFromFill(style.fill); + + _applyCssProps($('#' + inputId)[0], styleProperties); + if(password) document.getElementById(inputId).type = 'text'; + } + obj.val(text); + }; + + var _isWidgetDisabled = $ax.style.IsWidgetDisabled = function(id) { + return Boolean(_disabledWidgets[id]); + }; + + var _elementIdsToImageOverrides = {}; + $ax.style.mapElementIdToImageOverrides = function(elementId, override) { + _elementIdsToImageOverrides[elementId] = override; + }; + + $ax.style.deleteElementIdToImageOverride = function(elementId) { + delete _elementIdsToImageOverrides[elementId]; + }; + + $ax.style.getElementImageOverride = function(elementId, state) { + var url = _elementIdsToImageOverrides[elementId] && _elementIdsToImageOverrides[elementId][state]; + return url; + }; + + $ax.style.elementHasAnyImageOverride = function(elementId) { + return Boolean(_elementIdsToImageOverrides[elementId]); + }; + + var NORMAL = 'normal'; + var MOUSE_OVER = 'mouseOver'; + var MOUSE_DOWN = 'mouseDown'; + var SELECTED = 'selected'; + var DISABLED = 'disabled'; + var HINT = 'hint'; + + var _generateState = _style.generateState = function(id) { + return _style.IsWidgetDisabled(id) ? DISABLED : _generateSelectedState(id, _style.IsWidgetSelected(id)); + }; + + var _progessState = _style.progessState = function(state) { + if(state == NORMAL) return false; + if(state == MOUSE_DOWN) return MOUSE_OVER; + return NORMAL; + }; + + var _updateElementIdImageStyle = _style.updateElementIdImageStyle = function(elementId, state) { + if(!_style.elementHasAnyImageOverride(elementId)) return; + + if(!state) state = _generateState(elementId); + + + var style = $obj(elementId).style; + var stateStyle = state == NORMAL ? style : style && style.stateStyles && style.stateStyles[state]; + if(!stateStyle && !_style.getElementImageOverride(elementId, state)) { + state = _progessState(state); + if(state) _updateElementIdImageStyle(elementId, state); + return; + } + + var computedStyle = _style.computeAllOverrides(elementId, undefined, state, $ax.adaptive.currentViewId); + + var query = $jobj($ax.repeater.applySuffixToElementId(elementId, '_img')); + var borderId = $ax.repeater.applySuffixToElementId(elementId, '_border'); + var borderQuery = $jobj(borderId); + if(!borderQuery.length) { + borderQuery = $('
    '); + borderQuery.attr('id', borderId); + query.after(borderQuery); + } + + borderQuery.attr('style', ''); + borderQuery.css('position', 'absolute'); + query.attr('style', ''); + + var borderWidth = computedStyle.borderWidth; + if(borderWidth) { + borderQuery.css('border-style', 'solid'); + borderQuery.css('border-width', borderWidth + 'px'); + borderQuery.css('width', style.size.width - borderWidth * 2); + borderQuery.css('height', style.size.height - borderWidth * 2); + } + + var linePattern = computedStyle.linePattern; + if(linePattern) borderQuery.css('border-style', linePattern); + + var borderFill = computedStyle.borderFill; + if(borderFill) { + var color = borderFill.fillType == 'solid' ? borderFill.color : + borderFill.fillType == 'linearGradient' ? borderFill.colors[0].color : 0; + + var alpha = Math.floor(color / 256 / 256 / 256); + color -= alpha * 256 * 256 * 256; + alpha = alpha / 255; + + var red = Math.floor(color / 256 / 256); + color -= red * 256 * 256; + var green = Math.floor(color / 256); + var blue = color - green * 256; + + borderQuery.css('border-color', _rgbaToFunc(red, green, blue, alpha)); + } + + var cornerRadiusTopLeft = computedStyle.cornerRadiusTopLeft; + if(cornerRadiusTopLeft) { + query.css('border-radius', cornerRadiusTopLeft + 'px'); + borderQuery.css('border-radius', cornerRadiusTopLeft + 'px'); + } + + var outerShadow = computedStyle.outerShadow; + if(outerShadow && outerShadow.on) { + var arg = ''; + arg += outerShadow.offsetX + 'px' + ' ' + outerShadow.offsetY + 'px' + ' '; + var rgba = outerShadow.color; + arg += outerShadow.blurRadius + 'px' + ' 0px ' + _rgbaToFunc(rgba.r, rgba.g, rgba.b, rgba.a); + query.css('-moz-box-shadow', arg); + query.css('-wibkit-box-shadow', arg); + query.css('box-shadow', arg); + query.css('width', style.size.width); + query.css('height', style.size.height); + query.css('left', '0px'); + query.css('top', '0px'); + } + }; + + var _rgbaToFunc = function(red, green, blue, alpha) { + return 'rgba(' + red + ',' + green + ',' + blue + ',' + alpha + ')'; + }; + + //function $ax.style.GetTextIdFromShape(id) { + // return $.grep( + // $('#' + id).children().map(function (i, obj) { return obj.id; }), // all the child ids + // function (item) { return item.indexOf(id) < 0; })[0]; // that are not similar to the parent + //} + + var _getButtonShape = function(id) { + var obj = $obj(id); + + // some treeNodeObjects don't have button shapes + return $jobj(obj.type == 'treeNodeObject' && obj.buttonShapeId ? $ax.getElementIdFromPath([obj.buttonShapeId], { relativeTo: id }) : id); + }; + + var _getTextIdFromShape = $ax.style.GetTextIdFromShape = function(id) { + return _getButtonShape(id).find('.text').attr('id'); + }; + + $ax.style.GetTextIdFromLink = function(id) { + return $jobj(id).parentsUntil('.text').parent().attr('id'); + }; + + var _getShapeIdFromText = $ax.style.GetShapeIdFromText = function(id) { + if(!id) return undefined; // this is to prevent an infinite loop. + //return $jobj(id).parent().attr('id'); + var current = $jobj(id).parent(); + while(!current.is("body")) { + var id = current.attr('id'); + if(id && id != 'base') return id; + current = current.parent(); + } + + return undefined; + }; + + $ax.style.GetImageIdFromShape = function(id) { + var image = _getButtonShape(id).find('img[id$=img]'); + if(!image.length) image = $jobj(id).find('img[id$=image_sketch]'); + return image.attr('id'); + }; + + var _applyImageAndTextJson = function(id, event) { + var textId = $ax.style.GetTextIdFromShape(id); + _resetTextJson(id, textId); + + // This should never be the case + //if(event != '') { + var imgQuery = $jobj($ax.style.GetImageIdFromShape(id)); + var e = imgQuery.data('events'); + if(e && e[event]) imgQuery.trigger(event); + + var imageUrl = $ax.adaptive.getImageForStateAndView(id, event); + if(imageUrl) _applyImage(id, imageUrl, event); + + var style = _computeAllOverrides(id, undefined, event, $ax.adaptive.currentViewId); + if(!$.isEmptyObject(style)) { + _applyTextStyle(textId, style); + } + }; + + + /* ------------------- + + here's the algorithm in a nutshell: + [DOWN] -- refers to navigation down the view inheritance heirarchy (default to most specific) + [UP] -- navigate up the heirarchy + + ComputeAllOverrides (object): + All view styles [DOWN] + If hyperlink + - DO ComputeStateStyle for parent object + - if (MouseOver || MouseDown) + - linkMouseOver Style + - if (MouseDown) + - linkMouseDown style + - ComputeStateStyleForViewChain (parent, STATE) + + if (MouseDown) DO ComputeStateStyleForViewChain for object, mouseOver + DO ComputeStateStyleForViewChain for object, style + + + ComputeStateStyleForViewChain (object, STATE) + FIRST STATE state style [UP] the chain OR default object STATE style + + ------------------- */ + + var FONT_PROPS = { + 'typeface': true, + 'fontName': true, + 'fontWeight': true, + 'fontStyle': true, + 'fontStretch': true, + 'fontSize': true, + 'underline': true, + 'foreGroundFill': true, + 'horizontalAlignment': true + }; + + var _computeAllOverrides = $ax.style.computeAllOverrides = function(id, parentId, state, currentViewId) { + var computedStyle = {}; + + var diagramObject = $ax.getObjectFromElementId(id); + var viewIdChain = $ax.adaptive.getAdaptiveIdChain(currentViewId); + + var excludeFont = _shapesWithSetRichText[id]; + for(var i = 0; i < viewIdChain.length; i++) { + var viewId = viewIdChain[i]; + var style = diagramObject.adaptiveStyles[viewId]; + if(style) { + // we want to exclude the normal font style for shapes where the rich text has been set with an interaction + // so we copy the style so we don't modify the original, then delete all the font props. + if(excludeFont) { + style = $ax.deepCopy(style); + for(var prop in FONT_PROPS) delete style[prop]; + } + + if(style) { + var customStyle = style.baseStyle && $ax.document.stylesheet.stylesById[style.baseStyle]; + //make sure not to extend the customStyle this can mutate it for future use + $.extend(computedStyle, customStyle); + } + $.extend(computedStyle, style); + } + } + + var isHyperlink = Boolean(parentId); + var currState = state; + while(state) { + if(isHyperlink && (currState == MOUSE_DOWN || currState == MOUSE_OVER)) { + var key = currState == MOUSE_OVER ? 'hyperlinkMouseOver' : 'hyperlinkMouseDown'; + $.extend(computedStyle, $ax.document.stylesheet.defaultStyles[key]); + } + $.extend(computedStyle, _computeStateStyleForViewChain(diagramObject, currState, viewIdChain, true)); + state = _progessState(state); + } + + return _removeUnsupportedProperties(computedStyle, diagramObject.type); + }; + + var _computeStateStyleForViewChain = function(diagramObject, state, viewIdChain, excludeNormal) { + var styleObject = diagramObject; + while(styleObject.isContained) styleObject = styleObject.parent; + + var adaptiveStyles = styleObject.adaptiveStyles; + + for(var i = viewIdChain.length - 1; i >= 0; i--) { + var viewId = viewIdChain[i]; + var viewStyle = adaptiveStyles[viewId]; + var stateStyle = viewStyle && _getFullStateStyle(viewStyle, state, excludeNormal); + if(stateStyle) return $.extend({}, stateStyle); + } + + // we dont want to actually include the object style because those are not overrides, hence the true for "excludeNormal" and not passing the val through + var stateStyleFromDefault = _getFullStateStyle(styleObject.style, state, true); + return $.extend({}, stateStyleFromDefault); + }; + + // returns the full effective style for an object in a state state and view + var _computeFullStyle = function(id, state, currentViewId) { + var obj = $obj(id); + var overrides = _computeAllOverrides(id, undefined, state, currentViewId); + // todo: account for image box + var objStyle = obj.style; + var customStyle = objStyle.baseStyle && $ax.document.stylesheet.stylesById[objStyle.baseStyle]; + var returnVal = $.extend({}, $ax.document.stylesheet.defaultStyles[obj.styleType], customStyle, objStyle, overrides); + return _removeUnsupportedProperties(returnVal, obj.type); + }; + + var _removeUnsupportedProperties = function(style, objectType) { + // for now all we need to do is remove padding from checkboxes and radio buttons + if(objectType == 'radioButton' || objectType == 'checkbox') { + style.paddingTop = 0; + style.paddingLeft = 0; + style.paddingRight = 0; + style.paddingBottom = 0; + } + return style; + }; + + var _getFullStateStyle = function(style, state, excludeNormal) { + //'normal' is needed because now DiagramObjects get their image from the Style and unapplying a rollover needs the image + var stateStyle = state == 'normal' && !excludeNormal ? style : style && style.stateStyles && style.stateStyles[state]; + if(stateStyle) { + var customStyle = stateStyle.baseStyle && $ax.document.stylesheet.stylesById[stateStyle.baseStyle]; + //make sure not to extend the customStyle this can mutate it for future use + return $.extend({}, customStyle, stateStyle); + } + return undefined; + }; + + // commented this out for now... we actually will probably need it for ie + var _applyOpacityFromStyle = $ax.style.applyOpacityFromStyle = function(id, style) { + return; + var opacity = style.opacity || ''; + $jobj(id).children().css('opacity', opacity); + }; + + var _initialize = function() { + $ax.style.initializeObjectTextAlignment($ax('*')); + }; + $ax.style.initialize = _initialize; + + var _initTextAlignment = function(elementId) { + var textId = _getTextIdFromShape(elementId); + _storeIdToAlignProps(textId); + // now handle vertical alignment + if(_getObjVisible(textId)) { + _setTextAlignment(textId, _idToAlignProps[textId], false); + } + }; + + $ax.style.initializeObjectTextAlignment = function(query) { + query.filter(function(diagramObject) { + return diagramObject.type == 'buttonShape' || diagramObject.type == 'flowShape' || diagramObject.type == 'imageBox'; + }).each(function(diagramObject, elementId) { + if($jobj(elementId).length == 0) return; + _initTextAlignment(elementId); + }); + }; + + var _storeIdToAlignProps = function(textId) { + var shapeId = _getShapeIdFromText(textId); + var state = _generateState(shapeId); + + var style = _computeFullStyle(shapeId, state, $ax.adaptive.currentViewId); + var vAlign = style.verticalAlignment || 'middle'; + var paddingTop = style.paddingTop || 0; + var paddingBottom = style.paddingBottom || 0; + _idToAlignProps[textId] = { vAlign: vAlign, paddingTop: paddingTop, paddingBottom: paddingBottom }; + }; + + var ALL_STATES = ['mouseOver', 'mouseDown', 'selected', 'disabled']; + var _applyImage = $ax.style.applyImage = function(id, imgUrl, state) { + var imgQuery = $jobj($ax.style.GetImageIdFromShape(id)); + var idQuery = $jobj(id); + + var _updateClass = function() { + for(var i = 0; i < ALL_STATES.length; i++) { + idQuery.removeClass(ALL_STATES[i]); + imgQuery.removeClass(ALL_STATES[i]); + } + if(state != 'normal') { + idQuery.addClass(state); + imgQuery.addClass(state); + } + }; + + if(imgQuery.attr('src') != imgUrl) { + imgQuery[0].onload = function() { + _updateClass(); + imgQuery[0].onload = undefined; + }; + } else { + _updateClass(); + } + + imgQuery.attr('src', imgUrl); + if(imgQuery.parents('a.basiclink').length > 0) imgQuery.css('border', 'none'); + if(imgUrl.indexOf(".png") > -1) $ax.utils.fixPng(imgQuery[0]); + }; + + var _resetTextJson = function(id, textid) { + // reset the opacity + $jobj(id).children().css('opacity', ''); + + var cacheObject = _originalTextCache[textid]; + if(cacheObject) { + _transformTextWithVerticalAlignment(textid, function() { + var styleCache = cacheObject.styleCache; + var textQuery = $('#' + textid); + textQuery.find('*').each(function(index, element) { + element.style.cssText = styleCache[element.id]; + }); + }); + } + }; + + // Preserves the alingment for the element textid after executing transformFn + + var _getRtfElementHeight = function(rtfElement) { + if(rtfElement.innerHTML == '') rtfElement.innerHTML = ' '; + + // To handle render text as image + var images = $(rtfElement).children('img'); + if(images.length) return images.height(); + return rtfElement.offsetHeight; + }; + + // why microsoft decided to default to round to even is beyond me... + var _roundToEven = function(number) { + var numString = number.toString(); + var parts = numString.split('.'); + if(parts.length == 1) return number; + if(parts[1].length == 1 && parts[1] == '5') { + var wholePart = Number(parts[0]); + return wholePart % 2 == 0 ? wholePart : wholePart + 1; + } else return Math.round(number); + }; + + var _transformTextWithVerticalAlignment = $ax.style.transformTextWithVerticalAlignment = function(textId, transformFn) { + if(!_originalTextCache[textId]) { + $ax.style.CacheOriginalText(textId); + } + + var rtfElement = window.document.getElementById(textId); + if(!rtfElement) return; + + transformFn(); + + _storeIdToAlignProps(textId); + + $ax.style.updateTextAlignmentForVisibility(textId); + }; + + // this is for vertical alignments set on hidden objects + var _idToAlignProps = {}; + + $ax.style.updateTextAlignmentForVisibility = function(textId) { + var alignProps = _idToAlignProps[textId]; + if(!alignProps || !_getObjVisible(textId)) return; + + _setTextAlignment(textId, alignProps); + }; + + var _getObjVisible = _style.getObjVisible = function(id) { + return $('#' + id).css('visibility') != 'hidden'; + }; + + var _setTextAlignment = function(textId, alignProps, updateProps) { + if(updateProps) { + _storeIdToAlignProps(textId); + } + if(!alignProps) return; + + var vAlign = alignProps.vAlign; + var paddingTop = Number(alignProps.paddingTop); + var paddingBottom = Number(alignProps.paddingBottom); + + var textObj = $jobj(textId); + var textHeight = _getRtfElementHeight(textObj[0]); + var textObjParent = textObj.parent(); + var containerHeight = textObjParent.height(); + + var newTop = 0; + if(vAlign == "middle") { + newTop = _roundToEven((containerHeight - textHeight + paddingTop - paddingBottom) / 2); + } else if(vAlign == "bottom") { + newTop = _roundToEven(containerHeight - textHeight - paddingBottom); + } else { // else top align + newTop = _roundToEven(paddingTop); + } + + var oldTop = $jobj(textId).css('top').replace('px', ''); + if(oldTop != newTop) { + textObj.css('top', newTop + 'px'); + _updateTransformOrigin(textId); + } + }; + + var _updateTransformOrigin = function(textId) { + var textObj = $jobj(textId); + var transformOrigin = textObj.css('-webkit-transform-origin') || + textObj.css('-moz-transform-origin') || + textObj.css('-ms-transform-origin') || + textObj.css('transform-origin'); + if(transformOrigin) { + var textObjParent = textObj.parent(); + var newX = (textObjParent.width() / 2 - textObj.css('left').replace('px', '')); + var newY = (textObjParent.height() / 2 - textObj.css('top').replace('px', '')); + var newOrigin = newX + 'px ' + newY + 'px'; + textObj.css('-webkit-transform-origin', newOrigin); + textObj.css('-moz-transform-origin', newOrigin); + textObj.css('-ms-transform-origin', newOrigin); + textObj.css('transform-origin', newOrigin); + } + }; + + $ax.style.clearAdaptiveStyles = function() { + for(var shapeId in _adaptiveStyledWidgets) { + var elementIds = [shapeId]; + var repeaterId = $ax.getParentRepeaterFromScriptId(shapeId); + if(repeaterId) { + var itemIds = $ax.getItemIdsForRepeater(repeaterId); + elementIds = []; + for(var i = 0; i < itemIds; i++) elementIds.push($ax.repeater.createElementId(shapeId, itemIds[i])); + } + for(var index = 0; index < elementIds.length; index++) { + var elementId = elementIds[index]; + var textId = $ax.style.GetTextIdFromShape(elementId); + _resetTextJson(elementId, textId); + _applyImageAndTextJson(elementId, $ax.style.generateState(elementId)); + } + } + + _adaptiveStyledWidgets = {}; + }; + + $ax.style.setAdaptiveStyle = function(shapeId, style) { + _adaptiveStyledWidgets[$ax.repeater.getScriptIdFromElementId(shapeId)] = style; + + var textId = $ax.style.GetTextIdFromShape(shapeId); + _applyTextStyle(textId, style); + + // removing this for now + // if(style.location) { + // $jobj(shapeId).css('top', style.location.x + "px") + // .css('left', style.location.y + "px"); + // } + }; + + //------------------------------------------------------------------------- + // _applyTextStyle + // + // Applies a rollover style to a text element. + // id : the id of the text object to set. + // styleProperties : an object mapping style properties to values. eg: + // { 'fontWeight' : 'bold', + // 'fontStyle' : 'italic' } + //------------------------------------------------------------------------- + var _applyTextStyle = function(id, style) { + _transformTextWithVerticalAlignment(id, function() { + var styleProperties = _getCssStyleProperties(style); + $('#' + id).find('*').each(function(index, element) { + _applyCssProps(element, styleProperties); + }); + }); + }; + + var _applyCssProps = function(element, styleProperties) { + var nodeName = element.nodeName.toLowerCase(); + if(nodeName == 'p') { + var parProps = styleProperties.parProps; + for(var prop in parProps) element.style[prop] = parProps[prop]; + } else if(nodeName != 'a') { + var runProps = styleProperties.runProps; + for(prop in runProps) element.style[prop] = runProps[prop]; + } + }; + + var _getCssShadow = function(shadow) { + return shadow.on + ? shadow.offsetX + "px " + shadow.offsetY + "px " + shadow.blurRadius + "px " + _getCssColor(shadow.color) + : ""; + }; + + var _getCssStyleProperties = function(style) { + var toApply = {}; + toApply.runProps = {}; + toApply.parProps = {}; + + if(style.fontName) toApply.runProps.fontFamily = style.fontName; + // we need to set font size on both runs and pars because otherwise it well mess up the measure and thereby vertical alignment + if(style.fontSize) toApply.runProps.fontSize = toApply.parProps.fontSize = style.fontSize; + if(style.fontWeight !== undefined) toApply.runProps.fontWeight = style.fontWeight; + if(style.fontStyle !== undefined) toApply.runProps.fontStyle = style.fontStyle; + if(style.underline !== undefined) toApply.runProps.textDecoration = style.underline ? 'underline' : 'none'; + if(style.foreGroundFill) { + toApply.runProps.color = _getColorFromFill(style.foreGroundFill); + if(style.foreGroundFill.opacity) toApply.runProps.opacity = style.foreGroundFill.opacity; + } + if(style.horizontalAlignment) toApply.parProps.textAlign = style.horizontalAlignment; + if(style.lineSpacing) toApply.parProps.lineHeight = style.lineSpacing; + if(style.textShadow) { + var cssShadow = _getCssShadow(style.textShadow); + toApply.parProps.textShadow = cssShadow; // we need this dumb hyphe + } + + return toApply; + }; + + var _getColorFromFill = function(fill) { + var fillString = '00000' + fill.color.toString(16); + return '#' + fillString.substring(fillString.length - 6); + }; + + var _getCssColor = function(rgbaObj) { + return "rgba(" + rgbaObj.r + ", " + rgbaObj.g + ", " + rgbaObj.b + ", " + rgbaObj.a + ")"; + }; + + // //-------------------------------------------------------------------------- + // // ApplyStyleRecursive + // // + // // Applies a style recursively to all span and div tags including elementNode + // // and all of its children. + // // + // // element : the element to apply the style to + // // styleName : the name of the style property to set (eg. 'font-weight') + // // styleValue : the value of the style to set (eg. 'bold') + // //-------------------------------------------------------------------------- + // function ApplyStyleRecursive(element, styleName, styleValue) { + // var nodeName = element.nodeName.toLowerCase(); + + // if (nodeName == 'div' || nodeName == 'span' || nodeName == 'p') { + // element.style[styleName] = styleValue; + // } + + // for (var i = 0; i < element.childNodes.length; i++) { + // ApplyStyleRecursive(element.childNodes[i], styleName, styleValue); + // } + // } + + // //--------------------------------------------------------------------------- + // // ApplyTextProperty + // // + // // Applies a text property to rtfElement. + // // + // // rtfElement : the the root text element of the rtf object (this is the + // // element named _rtf + // // prop : the style property to set. + // // value : the style value to set. + // //--------------------------------------------------------------------------- + // function ApplyTextProperty(rtfElement, prop, value) { + // /* + // var oldHtml = rtfElement.innerHTML; + // if (prop == 'fontWeight') { + // rtfElement.innerHTML = oldHtml.replace(/< *b *\/?>/gi, ""); + // } else if (prop == 'fontStyle') { + // rtfElement.innerHTML = oldHtml.replace(/< *i *\/?>/gi, ""); + // } else if (prop == 'textDecoration') { + // rtfElement.innerHTML = oldHtml.replace(/< *u *\/?>/gi, ""); + // } + // */ + + // for (var i = 0; i < rtfElement.childNodes.length; i++) { + // ApplyStyleRecursive(rtfElement.childNodes[i], prop, value); + // } + // } + //} + + //--------------------------------------------------------------------------- + // GetAndCacheOriginalText + // + // Gets the html for the pre-rollover state and returns the Html representing + // the Rich text. + //--------------------------------------------------------------------------- + var CACHE_COUNTER = 0; + + $ax.style.CacheOriginalText = function(textId, hasRichTextBeenSet) { + var rtfQuery = $('#' + textId); + if(rtfQuery.length > 0) { + + var styleCache = {}; + rtfQuery.find('*').each(function(index, element) { + var elementId = element.id; + if(!elementId) element.id = elementId = 'cache' + CACHE_COUNTER++; + styleCache[elementId] = element.style.cssText; + }); + + _originalTextCache[textId] = { + styleCache: styleCache + }; + if(hasRichTextBeenSet) { + var shapeId = _getShapeIdFromText(textId); + _shapesWithSetRichText[shapeId] = true; + } + } + }; + + $ax.style.ClearCacheForRepeater = function(repeaterId) { + for(var elementId in _originalTextCache) { + var scriptId = $ax.repeater.getScriptIdFromElementId(elementId); + if($ax.getParentRepeaterFromScriptId(scriptId) == repeaterId) delete _originalTextCache[elementId]; + } + }; + + + + $ax.style.prefetch = function() { + var scriptIds = $ax.getAllScriptIds(); + var image = new Image(); + for(var i = 0; i < scriptIds.length; i++) { + var obj = $obj(scriptIds[i]); + if(obj.type != 'imageBox') continue; + var images = obj.images; + for(var key in images) image.src = images[key]; + } + }; +}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/tree.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/tree.js" new file mode 100644 index 0000000..b4af3ae --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/tree.js" @@ -0,0 +1,168 @@ +// This is actually for BOTH trees and menus +$axure.internal(function($ax) { + var _tree = $ax.tree = {}; + var _menu = $ax.menu = {}; + + $ax.menu.InitializeSubmenu = function(subMenuId, cellId) { + var $submenudiv = $('#' + subMenuId); + + //mouseenter and leave for parent table cell + $('#' + cellId).mouseenter(function(e) { + //show current submenu + $ax.visibility.SetIdVisible(subMenuId, true); + $ax.legacy.BringToFront(subMenuId); + }).mouseleave(function(e) { + var offset = $submenudiv.offset(); + var subcontwidth = $submenudiv.width(); + var subcontheight = $submenudiv.height(); + //If mouse is not within the submenu (added 3 pixel margin to top and left calculations), then close the submenu... + if(e.pageX + 3 < offset.left || e.pageX > offset.left + subcontwidth || e.pageY + 3 < offset.top || e.pageY > offset.top + subcontheight) { + $submenudiv.find('.sub_menu').andSelf().each(function() { + $ax.visibility.SetVisible(this, false); + }); + $ax.style.SetWidgetHover(cellId, false); + } + }); + + $submenudiv.css('display', 'none'); + + //mouseleave for submenu + $submenudiv.mouseleave(function(e) { + //close this menu and all menus below it + $(this).find('.sub_menu').andSelf().css({ 'visibility': 'hidden', 'display': 'none' }); + $ax.style.SetWidgetHover(cellId, false); + }); + }; + + function IsNodeVisible(nodeId) { + var current = window.document.getElementById(nodeId); + var parent = current.parentNode; + + //move all the parent's children that are below the node and their annotations + while(!$(current).hasClass("treeroot")) { + if(!$ax.visibility.IsVisible(parent)) return false; + current = parent; + parent = parent.parentNode; + } + return true; + } + + $ax.tree.ExpandNode = function(nodeId, childContainerId, plusMinusId) { + var container = window.document.getElementById(childContainerId); + if($ax.visibility.IsVisible(container)) return; + $ax.visibility.SetVisible(container, true); + + if(plusMinusId != '') $ax.style.SetWidgetSelected(plusMinusId, true); + + var delta = _getExpandCollapseDelta(nodeId, childContainerId); + + var isVisible = IsNodeVisible(nodeId); + var current = window.document.getElementById(nodeId); + var parent = current.parentNode; + + //move all the parent's children that are below the node and their annotations + while(!$(current).hasClass("treeroot")) { + var after = false; + var i = 0; + for(i = 0; i < parent.childNodes.length; i++) { + var child = parent.childNodes[i]; + if(after && child.id && $(child).hasClass("treenode")) { + var elementId = child.id; + child.style.top = Number($(child).css('top').replace("px", "")) + delta + 'px'; + var ann = window.document.getElementById(elementId + "_ann"); + if(ann) ann.style.top = Number($(ann).css('top').replace("px", "")) + delta + 'px'; + } + if(child == current) after = true; + } + current = parent; + parent = parent.parentNode; + if(!isVisible && $ax.visibility.IsVisible(parent)) break; + } + }; + + $ax.tree.CollapseNode = function(nodeId, childContainerId, plusMinusId) { + var container = window.document.getElementById(childContainerId); + if(!$ax.visibility.IsVisible(container)) return; + + if(plusMinusId != '') $ax.style.SetWidgetSelected(plusMinusId, false); + + var delta = _getExpandCollapseDelta(nodeId, childContainerId); + + //hide it after getting the delta, otherwise the delta can't be calculated (offsetParent is null) + $ax.visibility.SetVisible(container, false); + + var isVisible = IsNodeVisible(nodeId); + var current = window.document.getElementById(nodeId); + var parent = current.parentNode; + + //move all the parent's children that are below the node and their annotations + while(!$(current).hasClass("treeroot")) { + var after = false; + var i = 0; + for(i = 0; i < parent.childNodes.length; i++) { + var child = parent.childNodes[i]; + if(after && child.id && $(child).hasClass("treenode")) { + var elementId = child.id; + child.style.top = Number($(child).css('top').replace("px", "")) - delta + 'px'; + var ann = window.document.getElementById(elementId + "_ann"); + if(ann) ann.style.top = Number($(ann).css('top').replace("px", "")) - delta + 'px'; + } + if(child == current) after = true; + } + current = parent; + parent = current.parentNode; + if(!isVisible && $ax.visibility.IsVisible(parent)) break; + } + }; + + var _getExpandCollapseDelta = function(nodeId, childContainerId) { + return _getChildContainerHeightHelper(childContainerId); + }; + + var _getChildContainerHeightHelper = function(childContainerId) { + var height = 0; + $('#' + childContainerId).children().each(function() { + if($(this).hasClass("treenode")) { + height += $(this).height(); + var subContainer = window.document.getElementById(this.id + '_children'); + if(subContainer && $ax.visibility.IsVisible(subContainer)) { + height += _getChildContainerHeightHelper(subContainer.id); + } + } + }); + return height; + }; + + $ax.tree.InitializeTreeNode = function(nodeId, plusminusid, childContainerId, selectText) { + var childContainer = window.document.getElementById(childContainerId); + if(childContainer) { + //relying on the html generator to put this inline so we know to collapse by default + var isCollapsed = childContainer.style.visibility == "hidden"; + if(isCollapsed) $ax.visibility.SetVisible(childContainer, false); + + if(!isCollapsed && plusminusid != '') $ax.style.SetWidgetSelected(plusminusid, true); + } + + if(plusminusid != '') { + $jobj(plusminusid).click(function() { + var visibleSet = $ax.visibility.IsIdVisible(childContainerId); + + if(visibleSet) $ax.tree.CollapseNode(nodeId, childContainerId, plusminusid); + else $ax.tree.ExpandNode(nodeId, childContainerId, plusminusid); + $ax.tree.SelectTreeNode(nodeId, true); + + return false; + }).css('cursor', 'default'); + } + }; + + var _getButtonShapeId = function(id) { + var obj = $obj(id); + return obj.type == 'treeNodeObject' ? $ax.getElementIdFromPath([obj.buttonShapeId], { relativeTo: id }) : id; + }; + + $ax.tree.SelectTreeNode = function(id, selected) { + $ax.style.SetWidgetSelected(_getButtonShapeId(id), selected); + }; + +}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/utils.temp.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/utils.temp.js" new file mode 100644 index 0000000..a582012 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/utils.temp.js" @@ -0,0 +1,100 @@ +// ******* Deep Copy ******** // +$axure.internal(function($ax) { + // TODO: [ben] Ah, infinite loops cause major issues here. Tried saving objects we've already hit, but that didn't seem to work (at least at my first shot). + var _deepCopy = function(original, trackCopies) { + if(trackCopies) { + var index = _getCopyIndex(original); + if(index != -1) return _originalToCopy[index][1]; + } + var isArray = original instanceof Array; + var isObject = !(original instanceof Function) && (original instanceof Object); + if(!isArray && !isObject) return original; + var copy = isArray ? [] : { }; + if(trackCopies) _originalToCopy.push([original, copy]); + isArray ? deepCopyArray(original, trackCopies, copy) : deepCopyObject(original, trackCopies, copy); + return copy; + }; + $ax.deepCopy = _deepCopy; + + // Hacky way to copy event info. Copying dragInfo causes major issues due to infinite loops + // Hashmap doesn't map objects well. It just toStrings them, making them all the same key. This has to be slow... + var _originalToCopy = []; + var _getCopyIndex = function(original) { + for(var i = 0; i < _originalToCopy.length; i++) if(original == _originalToCopy[i][0]) return i; + return -1; + }; + + $ax.eventCopy = function(eventInfo) { + var dragInfo = eventInfo.dragInfo; + delete eventInfo.dragInfo; + var copy = _deepCopy(eventInfo, true); + copy.dragInfo = dragInfo; + eventInfo.dragInfo = dragInfo; + // reset the map. + _originalToCopy = []; + + return copy; + }; + + var deepCopyArray = function(original, trackCopies, copy) { + for(var i = 0; i < original.length; i++) { + copy[i] = _deepCopy(original[i], trackCopies); + } + }; + + var deepCopyObject = function(original, trackCopies, copy) { + for(var key in original) { + if(!original.hasOwnProperty(key)) continue; + copy[key] = _deepCopy(original[key], trackCopies); + } + }; + + // Our implementation of splice because it is broken in IE8... + $ax.splice = function(array, startIndex, count) { + var retval = []; + if(startIndex >= array.length || startIndex < 0) return retval; + if(!count || startIndex + count > array.length) count = array.length - startIndex; + for(var i = 0; i < count; i++) retval[i] = array[startIndex + i]; + for(i = startIndex + count; i < array.length; i++) array[i - count] = array[i]; + for(i = 0; i < count; i++) array.pop(); + return retval; + }; +}); + + + +// ******* Flow Shape Links ******** // +$axure.internal(function($ax) { + + if(!$ax.document.configuration.linkFlowsToPages && !$ax.document.configuration.linkFlowsToPagesNewWindow) return; + + $(window.document).ready(function() { + $ax(function(dObj) { return dObj.type == 'flowShape' && dObj.referencePageUrl; }).each(function(dObj, elementId) { + + var elementIdQuery = $('#' + elementId); + + if($ax.document.configuration.linkFlowsToPages) { + elementIdQuery.css("cursor", "pointer"); + elementIdQuery.click(function() { + $ax.navigate({ + url: dObj.referencePageUrl, + target: "current", + includeVariables: true + }); + }); + } + + if($ax.document.configuration.linkFlowsToPagesNewWindow) { + $('#' + elementId + "_ref").append("
    "); + $('#' + elementId + "PagePopup").click(function() { + $ax.navigate({ + url: dObj.referencePageUrl, + target: "new", + includeVariables: true + }); + }); + } + }); + }); + +}); diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/variables.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/variables.js" new file mode 100644 index 0000000..443fe8a --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/variables.js" @@ -0,0 +1,156 @@ +// ******* GLOBAL VARIABLE PROVIDER ******** // +$axure.internal(function($ax) { + var _globalVariableValues = {}; + + var _globalVariableProvider = {}; + $ax.globalVariableProvider = _globalVariableProvider; + + var setVariableValue = function(variable, value, suppressBroadcast) { + if(!(value instanceof Object)) { + value = value.toString(); + //truncate values to prevent overflows. + if(value.length > 300) { + value = value.substring(0, 300); + } + } + + variable = variable.toLowerCase(); + _globalVariableValues[variable] = value; + + if(suppressBroadcast !== true) { + var varData = { + globalVarName: variable, + globalVarValue: value.toString() + }; + + $axure.messageCenter.postMessage('setGlobalVar', varData); + } + + //Post global var values only if pageData is loaded (suppresses exception which occurs when page loads) + if($ax.pageData) { + _postGlobalVarVals(); + } + }; + _globalVariableProvider.setVariableValue = setVariableValue; + + var getVariableValue = function(variable, eventInfo, ignoreDefaultsForLinkUrl) { + variable = variable.toLowerCase(); + if(_globalVariableValues[variable] !== undefined) { + //If this is for the GetLinkUrl function and + //the current value of the global variable is the same as the default defined in the document, don't return it + if(ignoreDefaultsForLinkUrl == true && $ax.document.globalVariables[variable] == _globalVariableValues[variable]) { + return null; + } + + return _globalVariableValues[variable]; + } + if($ax.document.globalVariables[variable] !== undefined) return ignoreDefaultsForLinkUrl == true ? null : $ax.document.globalVariables[variable]; + switch(variable) { + case "pagename": return $ax.pageData.page.name; + + case "now": return new Date(); + case "gendate": return $ax.pageData.generationDate; + + case "dragx": return $ax.drag.GetDragX(); + case "dragy": return $ax.drag.GetDragY(); + case "totaldragx": return $ax.drag.GetTotalDragX(); + case "totaldragy": return $ax.drag.GetTotalDragY(); + case "dragtime": return $ax.drag.GetDragTime(); + + case "math": return Math; + + case "window": return eventInfo && eventInfo.window; + case "this": return eventInfo && eventInfo.thiswidget; + case "item": return (eventInfo && eventInfo.item && eventInfo.item.valid && eventInfo.item) || getVariableValue('targetitem', eventInfo, ignoreDefaultsForLinkUrl); + case "targetitem": return eventInfo && eventInfo.targetElement && $ax.getItemInfo(eventInfo.targetElement); + case "repeater": return eventInfo && eventInfo.repeater; + case "target": return eventInfo && eventInfo.targetElement && $ax.getWidgetInfo(eventInfo.targetElement); + case "cursor": return eventInfo && eventInfo.cursor; + default: + var gen = variable.substr(0, 3) == "gen"; + var date = gen ? $ax.pageData.generationDate : new Date(); + var prop = gen ? variable.substr(3) : variable; + switch(prop) { + case "day": return date.getDate(); + case "month": return date.getMonth() + 1; + case "monthname": return $ax.getMonthName(date.getMonth()); + case "dayofweek": return $ax.getDayOfWeek(date.getDay()); + case "year": return date.getFullYear(); + case "time": return date.toLocaleTimeString(); + case "hours": return date.getHours(); + case "minutes": return date.getMinutes(); + case "seconds": return date.getSeconds(); + default: return ''; + } + } + }; + _globalVariableProvider.getVariableValue = getVariableValue; + + var load = function() { + var csum = false; + + var query = (window.location.href.split("#")[1] || ''); //hash.substring(1); Firefox decodes this so & in variables breaks + if(query.length > 0) { + var vars = query.split("&"); + for(var i = 0; i < vars.length; i++) { + var pair = vars[i].split("="); + var varName = pair[0]; + var varValue = pair[1]; + if(varName) { + if(varName == 'CSUM') { + csum = true; + } else setVariableValue(varName, decodeURIComponent(varValue), true); + } + } + + if(!csum && query.length > 250) { + window.alert('Prototype Warning: The variable values were too long to pass to this page.\nIf you are using IE, using Firefox will support more data.'); + } + } + }; + + var getLinkUrl = function(baseUrl) { + var toAdd = ''; + var definedVariables = _getDefinedVariables(); + for(var i = 0; i < definedVariables.length; i++) { + var key = definedVariables[i]; + var val = getVariableValue(key, undefined, true); + if(val != null && val.length > 0) { + if(toAdd.length > 0) toAdd += '&'; + toAdd += key + '=' + encodeURIComponent(val); + } + } + return toAdd.length > 0 ? baseUrl + '#' + toAdd + "&CSUM=1" : baseUrl; + }; + _globalVariableProvider.getLinkUrl = getLinkUrl; + + var _getDefinedVariables = function() { + return $ax.pageData.variables; + }; + _globalVariableProvider.getDefinedVariables = _getDefinedVariables; + + var _postGlobalVarVals = function() { + var retVal = {}; + var definedVariables = _getDefinedVariables(); + for(var i = 0; i < definedVariables.length; i++) { + var key = definedVariables[i]; + var val = getVariableValue(key); + if(val != null) { + retVal[key] = val; + } + } + + $ax.messageCenter.postMessage('globalVariableValues', retVal); + }; + + $ax.messageCenter.addMessageListener(function(message, data) { + if(message == 'getGlobalVariables') { + _postGlobalVarVals(); + } else if(message == 'resetGlobalVariables') { + _globalVariableValues = {}; + _postGlobalVarVals(); + } + }); + + load(); +}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/viewer.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/viewer.js" new file mode 100644 index 0000000..ff3dbc5 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/viewer.js" @@ -0,0 +1,53 @@ +// ******* SITEMAP TOOLBAR VIEWER ACTIONS ******** // +$axure.internal(function ($ax) { + var userTriggeredEventNames = ['onClick','onDoubleClick','onMouseOver','onMouseMove','onMouseOut','onMouseDown','onMouseUp','onKeyDown','onKeyUp','onFocus','onLostFocus','onTextChange','onSelectionChange','onCheckedChange','onSwipeLeft','onSwipeRight','onSwipeUp','onSwipeDown','onDragStart','onDrag','onDragDrop','onScroll','onContextMenu','onMouseHover','onLongClick']; + + $ax.messageCenter.addMessageListener(function (message, data) { + //If annotation toggle message received from sitemap, toggle footnotes + if (message == 'annotationToggle') { + if (data == true) { + $('div.annotation').show(); + $('div.annnotelabel').show(); + $('div.annnoteimage').show(); + } else { + $('div.annotation').hide(); + $('div.annnotelabel').hide(); + $('div.annnoteimage').hide(); + } + } + }); + + $ax.messageCenter.addMessageListener(function (message, data) { + if (message == 'highlightInteractive') { + //Do condition to check if legacy browser (all IE, except 10) and select appropriate pulsate css class name + var userAgentString = navigator.userAgent.toLowerCase(); + + var isIEpre10 = userAgentString.indexOf('msie 9.') != -1 || + userAgentString.indexOf('msie 8.') != -1 || + userAgentString.indexOf('msie 7.') != -1 || + userAgentString.indexOf('msie 6.') != -1; + + var pulsateClassName = isIEpre10 ? 'legacyPulsateBorder' : 'pulsateBorder'; + + //Find all widgets with a defined userTriggeredEventName specified in the array above + var $matchingElements = $ax(function (obj) { + if (obj.interactionMap) { + for (var index in userTriggeredEventNames) { + if (obj.interactionMap[userTriggeredEventNames[index]]) return true; + } + } + return false; + }).$(); + + var isHighlighted = $matchingElements.is('.' + pulsateClassName); + var enableHighlight = data == true; + + //Toggle the pulsate class on the matched elements + if (enableHighlight && !isHighlighted) { + $matchingElements.addClass(pulsateClassName); + } else if (!enableHighlight && isHighlighted) { + $matchingElements.removeClass(pulsateClassName); + } + } + }); +}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/visibility.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/visibility.js" new file mode 100644 index 0000000..12e5a0b --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axure/visibility.js" @@ -0,0 +1,410 @@ +$axure.internal(function($ax) { + var document = window.document; + var _visibility = {}; + $ax.visibility = _visibility; + + var _defaultHidden = {}; + var _defaultLimbo = {}; + + // ****************** Visibility and State Functions ****************** // + + var _isIdVisible = $ax.visibility.IsIdVisible = function(id) { + return $ax.visibility.IsVisible(window.document.getElementById(id)); + }; + + $ax.visibility.IsVisible = function(element) { + //cannot use css('visibility') because that gets the effective visiblity + //e.g. won't be able to set visibility on panels inside hidden panels + return element.style.visibility != 'hidden'; + }; + + $ax.visibility.SetIdVisible = function(id, visible) { + $ax.visibility.SetVisible(window.document.getElementById(id), visible); + // Hide lightbox if necessary + if(!visible) { + $jobj($ax.repeater.applySuffixToElementId(id, '_lightbox')).remove(); + $ax.flyoutManager.unregisterPanel(id, true); + } + }; + + $ax.visibility.SetVisible = function(element, visible) { + //todo -- ahhhh! I really don't want to add this, I don't know why it is necessary (right now sliding panel state out then in then out breaks + //and doesn't go hidden on the second out if we do not set display here. + element.style.display = visible ? '' : 'none'; + element.style.visibility = visible ? 'visible' : 'hidden'; + }; + + var _setWidgetVisibility = $ax.visibility.SetWidgetVisibility = function(elementId, options) { + if(_limboIds[elementId]) return; // do nothing if we set visibility on a limbo id + + var parentId = $jobj(elementId).parent().attr('id'); + _setVisibility(parentId, elementId, options); + + //set the visibility of the annotation box as well if it exists + var ann = document.getElementById(elementId + "_ann"); + if(ann) _visibility.SetVisible(ann, options.value); + + //set ref visibility for ref of flow shape, if that exists + var ref = document.getElementById(elementId + '_ref'); + if(ref) _visibility.SetVisible(ref, options.value); + }; + + var _setVisibility = function(parentId, childId, options) { + var widget = $jobj(childId); + + var visible = $ax.visibility.IsIdVisible(childId); + + if(visible == options.value) { + $ax.action.fireAnimationFromQueue(childId); + return; + } + + var child = $jobj(childId); + var parent = parentId ? $jobj(parentId) : child.parent(); + + var needContainer = options.easing && options.easing != 'none'; + var cullPosition = options.cull ? options.cull.css('position') : ''; + + if(needContainer) { + var fixedInfo = $ax.dynamicPanelManager.getFixedInfo(childId); + var containerId = childId + '_container'; + var container = _makeContainer(containerId, options.cull || child, fixedInfo); + container.insertBefore(child); + child.appendTo(container); + + if(!options.settingChild) { + child.css({ + position: 'absolute', + left: 0, + top: 0, + 'margin-left': 0, + 'margin-top': 0 + }); + } + } + + var onComplete = function() { + if(needContainer) { + var css = {}; + if(fixedInfo.fixed) { + css.position = 'fixed'; + + if(fixedInfo.horizontal == 'left') css.left = fixedInfo.x; + else if(fixedInfo.horizontal == 'center') { + css.left = '50%'; + css['margin-left'] = fixedInfo.x; + } else if(fixedInfo.horizontal == 'right') { + css.left = 'auto'; + css.right = fixedInfo.x; + } + + if(fixedInfo.vertical == 'top') css.top = fixedInfo.y; + else if(fixedInfo.vertical == 'middle') { + css.top = '50%'; + css['margin-top'] = fixedInfo.y; + } else if(fixedInfo.vertical == 'bottom') { + css.top = 'auto'; + css.bottom = fixedInfo.y; + } + } else { + css.top = Number(container.css('top').replace('px', '')) || 0; + css.left = Number(container.css('left').replace('px', '')) || 0; + } + + child.insertBefore(container); + container.remove(); + child.css(css); + + if(options.cull) options.cull.css('position', cullPosition); + } + options.onComplete && options.onComplete(); + if(options.fire) { + $ax.event.raiseSyntheticEvent(childId, options.value ? 'onShow' : 'onHide'); + $ax.action.fireAnimationFromQueue(childId); + } + }; + + var size = options.size || (needContainer ? child : parent); + if(!options.easing || options.easing == 'none') { + $ax.visibility.SetIdVisible(childId, options.value); + onComplete(); + } else if(options.easing == 'fade') { + if(options.value) { + // Can't use $ax.visibility.SetIdVisible, because we only want to set visible, we don't want to display, fadeIn will handle that. + widget.css('visibility', 'visible'); + widget.fadeIn(options.duration, onComplete); + } else { + // Fading here is being retarded... + widget.animate({ opacity: 0 }, options.duration, 'swing', function() { + $ax.visibility.SetIdVisible(childId, false); + widget.css('opacity', ''); + + onComplete(); + }); + } + } else { + if(options.value) { + _slideStateIn(childId, childId, options.easing, options.direction, options.duration, size, false, onComplete); + } else { + var top = child.css('top'); + var left = child.css('left'); + + var onOutComplete = function() { + $ax.visibility.SetIdVisible(childId, false); + child.css('top', top); + child.css('left', left); + + onComplete(); + }; + _slideStateOut(size, childId, options.easing, options.direction, options.duration, onOutComplete); + } + } + + + + // If showing, go through all rich text objects inside you, and try to redo alignment of them + if(options.value) { + var descendants = $jobj(childId).find('*'); + for(var i = 0; i < descendants.length; i++) { + var decendantId = descendants[i].id; + // This check is probably redundant? UpdateTextAlignment should ignore any text objects that haven't set the vAlign yet. + if($ax.getTypeFromElementId(decendantId) != 'richTextPanel') continue; + $ax.style.updateTextAlignmentForVisibility(decendantId); + } + } + }; + + $ax.visibility.GetPanelState = function(id) { + var children = $jobj(id).children(); + for(var i = 0; i < children.length; i++) { + if(children[i].style && $ax.visibility.IsVisible(children[i])) return children[i].id; + } + return ''; + }; + + + $ax.visibility.SetPanelState = function(id, stateId, easingOut, directionOut, durationOut, easingIn, directionIn, durationIn, showWhenSet) { + var show = !$ax.visibility.IsIdVisible(id) && showWhenSet; + if(show) $ax.visibility.SetIdVisible(id, true); + + // Exit here if already at desired state. + if($ax.visibility.IsIdVisible(stateId)) { + if(show) $ax.event.raiseSyntheticEvent(id, 'onShow'); + $ax.action.fireAnimationFromQueue(id); + return; + } + + var state = $jobj(stateId); + var oldStateId = $ax.visibility.GetPanelState(id); + var oldState = $jobj(oldStateId); + $ax.dynamicPanelManager.adjustFixed(id, oldState.width(), oldState.height(), state.width(), state.height()); + + _bringPanelStateToFront(id, oldStateId); + + var fitToContent = $ax.dynamicPanelManager.isIdFitToContent(id); + var resized = false; + if(fitToContent) { + // Set resized + resized = state.width() != oldState.width() || state.height() != oldState.height(); + } + + var movement = (directionOut == 'left' || directionOut == 'up' || state.children().length == 0) && oldState.children().length != 0 ? oldState : state; + var onCompleteCount = 0; + + var onComplete = function() { + $ax.dynamicPanelManager.fitParentPanel(id); + $ax.dynamicPanelManager.updatePanelPercentWidth(id); + $ax.dynamicPanelManager.updatePanelContentPercentWidth(id); + $ax.action.fireAnimationFromQueue(id); + $ax.event.raiseSyntheticEvent(id, "onPanelStateChange"); + }; + // Must do state out first, so if we cull by new state, location is correct + _setVisibility(id, oldStateId, { + value: false, + easing: easingOut, + direction: directionOut, + duration: durationOut, + onComplete: function() { _bringPanelStateToFront(id, stateId); if(++onCompleteCount == 2) onComplete(); }, + settingChild: true, + size: movement, + cull: easingOut == 'none' || state.children().length == 0 ? oldState : state + }); + + _setVisibility(id, stateId, { + value: true, + easing: easingIn, + direction: directionIn, + duration: durationIn, + onComplete: function() { if(++onCompleteCount == 2) onComplete(); }, + settingChild: true, + size: movement + }); + + if(show) $ax.event.raiseSyntheticEvent(id, 'onShow'); + if(resized) $ax.event.raiseSyntheticEvent(id, 'onResize'); + }; + + var _makeContainer = function(containerId, rect, fixedInfo) { + var container = $('
    '); + container.attr('id', containerId); + var css = { + position: 'absolute', + width: rect.width(), + height: rect.height(), + overflow: 'hidden' + }; + + // todo: **mas** make sure tihs is ok + if(fixedInfo.fixed) { + css.position = 'fixed'; + + if(fixedInfo.horizontal == 'left') css.left = fixedInfo.x; + else if(fixedInfo.horizontal == 'center') { + css.left = '50%'; + css['margin-left'] = fixedInfo.x; + } else if(fixedInfo.horizontal = 'right') { + css.left = 'auto'; + css.right = fixedInfo.x; + } + + if(fixedInfo.vertical == 'top') css.top = fixedInfo.y; + else if(fixedInfo.vertical == 'middle') { + css.top = '50%'; + css['margin-top'] = fixedInfo.y; + } else if(fixedInfo.vertical == 'bottom') { + css.top = 'auto'; + css.bottom = fixedInfo.y; + } + } else { + css.left = Number(rect.css('left').replace('px', '')) || 0; + css.top = Number(rect.css('top').replace('px', '')) || 0; + } + + container.css(css); + return container; + }; + + var _slideStateOut = function(container, stateId, easingOut, directionOut, durationOut, onComplete) { + var width = container.width(); + var height = container.height(); + + if(directionOut == "right") { + $ax.move.MoveWidget(stateId, width, 0, easingOut, durationOut, false, onComplete); + } else if(directionOut == "left") { + $ax.move.MoveWidget(stateId, -width, 0, easingOut, durationOut, false, onComplete); + } else if(directionOut == "up") { + $ax.move.MoveWidget(stateId, 0, -height, easingOut, durationOut, false, onComplete); + } else if(directionOut == "down") { + $ax.move.MoveWidget(stateId, 0, height, easingOut, durationOut, false, onComplete); + } + }; + + var _slideStateIn = function(id, stateId, easingIn, directionIn, durationIn, container, makePanelVisible, onComplete) { + var width = container.width(); + var height = container.height(); + + var state = $jobj(stateId); + + var oldTop = 0; + var oldLeft = 0; + + if(directionIn == "right") { + state.css('left', oldLeft - width + 'px'); + } else if(directionIn == "left") { + state.css('left', oldLeft + width + 'px'); + } else if(directionIn == "up") { + state.css('top', oldTop + height + 'px'); + } else if(directionIn == "down") { + state.css('top', oldTop - height + 'px'); + } + + if(makePanelVisible) $ax.visibility.SetIdVisible(id, true); + $ax.visibility.SetIdVisible(stateId, true); + + if(directionIn == "right") { + $ax.move.MoveWidget(stateId, width, 0, easingIn, durationIn, false, onComplete); + } else if(directionIn == "left") { + $ax.move.MoveWidget(stateId, -width, 0, easingIn, durationIn, false, onComplete); + } else if(directionIn == "up") { + $ax.move.MoveWidget(stateId, 0, -height, easingIn, durationIn, false, onComplete); + } else if(directionIn == "down") { + $ax.move.MoveWidget(stateId, 0, height, easingIn, durationIn, false, onComplete); + } + }; + + $ax.visibility.GetPanelStateId = function(dpId, index) { + var itemNum = $ax.repeater.getItemIdFromElementId(dpId); + var panelStateId = $ax.repeater.getScriptIdFromElementId(dpId) + '_state' + index; + return $ax.repeater.createElementId(panelStateId, itemNum); + }; + + var _bringPanelStateToFront = function(dpId, stateid) { + $('#' + stateid).appendTo($('#' + dpId)); + }; + + var _limboIds = _visibility.limboIds = {}; + // limboId's is a dictionary of id->true, essentially a set. + var _addLimboAndHiddenIds = $ax.visibility.addLimboAndHiddenIds = function(newLimboIds, newHiddenIds, query) { + var limboedByMaster = {}; + for(var key in newLimboIds) { + if($ax.getObjectFromElementId(key).type != 'referenceDiagramObject') continue; + var ids = $ax.model.idsInRdo(key); + for(var i = 0; i < ids.length; i++) limboedByMaster[ids[i]] = true; + } + + var hiddenByMaster = {}; + for(key in newHiddenIds) { + if($ax.getObjectFromElementId(key).type != 'referenceDiagramObject') continue; + ids = $ax.model.idsInRdo(key); + for(i = 0; i < ids.length; i++) hiddenByMaster[ids[i]] = true; + } + + // Extend with children of rdos + newLimboIds = $.extend(newLimboIds, limboedByMaster); + newHiddenIds = $.extend(newHiddenIds, hiddenByMaster); + + // something is only visible if it's not hidden and limboed + + //if(!skipSetting) { + query.each(function(diagramObject, elementId) { + // Rdos already handled, contained widgets are limboed by the parent, and sub menus should be ignored + if(diagramObject.type == 'referenceDiagramObject' || diagramObject.type == 'tableCell' || diagramObject.isContained || $jobj(elementId).hasClass('sub_menu')) return; + if(diagramObject.type == 'table' && $jobj(elementId).parent().hasClass('ax_menu')) return; + var shouldBeVisible = Boolean(!newLimboIds[elementId] && !newHiddenIds[elementId]); + var isVisible = Boolean(_isIdVisible(elementId)); + if(shouldBeVisible != isVisible) { + _setWidgetVisibility(elementId, { value: shouldBeVisible }); + } + }); + //} + + _limboIds = _visibility.limboIds = $.extend(_limboIds, newLimboIds); + + }; + + var _clearLimboAndHidden = $ax.visibility.clearLimboAndHidden = function(ids) { + _limboIds = _visibility.limboIds = {}; + }; + + $ax.visibility.clearLimboAndHiddenIds = function(ids) { + for(var i = 0; i < ids.length; i++) delete _limboIds[ids[i]]; + }; + + $ax.visibility.resetLimboAndHiddenToDefaults = function() { + _clearLimboAndHidden(); + _addLimboAndHiddenIds(_defaultLimbo, _defaultHidden, $ax('*')); + }; + + $ax.visibility.initialize = function() { + // initialize initial visible states + $axure('*').each(function(diagramObject, elementId) { + // sigh, javascript. we need the === here because undefined means not overriden + if(diagramObject.style.visible === false) _defaultHidden[elementId] = true; + //todo: **mas** check if the limboed widgets are hidden by default by the generator + if(diagramObject.style.limbo) _defaultLimbo[elementId] = true; + }); + $ax.visibility.addLimboAndHiddenIds(_defaultLimbo, _defaultHidden, $ax('*')); + + }; + +}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axutils.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axutils.js" new file mode 100644 index 0000000..63b952b --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/axutils.js" @@ -0,0 +1,240 @@ +/* + * + * + * + * + */ + + (function() { + // define the root namespace object + if(!window.$axure) window.$axure = {}; + + $axure.utils = {}; + + // ------------------------------------------------------------------------ + // Makes an object bindable + // ------------------------------------------------------------------------ + $axure.utils.makeBindable = function(obj, events) { + if(obj.registeredBindings != null) return; + + // copy the events + obj.bindableEvents = events.slice(); + obj.registeredBindings = {}; + + obj.bind = function(eventName, fn) { + var binding = {}; + binding.eventName = eventName; + binding.action = fn; + + var bindingList = this.registeredBindings[eventName]; + if(bindingList == null) { + bindingList = []; + this.registeredBindings[eventName] = bindingList; + } + bindingList[bindingList.length] = binding; + }; + + obj.unbind = function(eventName) { + if(eventName.indexOf('.') >= 0) { + this.registeredBindings[eventName] = null; + } else { + var event = eventName.split('.')[0]; + for(var bindingKey in this.registeredBindings) { + if(bindingKey.split('.')[0] == event) { + this.registeredBindings[bindingKey] = null; + } + } + } + }; + + obj.triggerEvent = function(eventName, arg) { + for(var bindingKey in this.registeredBindings) { + if(bindingKey.split('.')[0] == eventName) { + var bindings = this.registeredBindings[bindingKey]; + for(var i = 0; i < bindings.length; i++) { + if(arg == null) { + bindings[i].action(); + } else { + bindings[i].action(arg); + } + } + } + } + }; + }; + + + $axure.utils.loadCSS = function(url) { + $('head').append(''); + }; + + $axure.utils.loadJS = function(url) { + $('head').append(''); + }; + + $axure.utils.curry = function(fn) { + var curriedArgs = Array.prototype.slice.call(arguments, [1]); + return function() { + fn.apply(this, curriedArgs.concat(Array.prototype.slice.call(arguments))); + }; + }; + + $axure.utils.succeeded = function(result) { + return result && result.success; + }; + + $axure.utils.createUniqueTag = function() { + return Math.random().toString().substring(2) + + Math.random().toString().substring(2) + + Math.random().toString().substring(2) + + Math.random().toString().substring(2); + }; + + $axure.utils.formatDate = function(date) { + var months = [ + "Jan", "Feb", "Mar", "Apr", "May", "Jun", + "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]; + var hours = date.getHours(); + var amPm = (hours > 11 ? 'PM' : 'AM'); + hours = hours % 12; + if(hours == '0') hours = '12'; + var minutes = date.getMinutes() + ''; + if(minutes.length == 1) { + minutes = '0' + minutes; + } + return [ + months[date.getMonth()], ' ', date.getDate(), ' ', date.getFullYear(), ' ', + hours, ':', minutes, ' ', amPm].join(''); + + }; + + $axure.utils.quickObject = function() { + var returnVal = {}; + for(var i = 0; i < arguments.length; i += 2) { + returnVal[arguments[i]] = arguments[i + 1]; + } + return returnVal; + }; + + var matrixBase = { + mul: function(val) { + if(val.x !== undefined) { + return $axure.utils.Vector2D( + this.m11 * val.x + this.m12 * val.y + this.tx, + this.m21 * val.x + this.m22 * val.y + this.ty); + } else if(val.m11) { + return $axure.utils.Matrix2D( + this.m11 * val.m11 + this.m12 * val.m21, + this.m11 * val.m12 + this.m12 * val.m22, + this.m21 * val.m11 + this.m22 * val.m21, + this.m21 * val.m12 + this.m22 * val.m22, + val.tx + this.tx * val.m11 + this.ty * val.m21, + val.ty + this.tx * val.m12 + this.ty * val.m22 + ); + } else if(Number(val)) { + var num = Number(val); + return $axure.utils.Matrix2D(this.m11 * num, this.m12 * num, + this.m21 * num, this.m22 * num, + this.tx * num, this.ty * num); + } else return undefined; + }, + rotate: function(angle) { + var angleRad = angle * Math.PI / 180; + var c = Math.cos(angleRad); + var s = Math.sin(angleRad); + + return this.mul($axure.utils.Matrix2D(c, -s, s, c)); + }, + translate: function(tx, ty) { + return this.mul($axure.utils.Matrix2D(1, 0, 0, 1, tx, ty)); + } + }; + + $axure.utils.Matrix2D = function(m11, m12, m21, m22, tx, ty) { + return $.extend({ + m11: m11 || 0, + m12: m12 || 0, + m21: m21 || 0, + m22: m22 || 0, + tx: tx || 0, + ty: ty || 0 + }, matrixBase); + }; + + $axure.utils.Vector2D = function(x, y) { + return { x: x || 0, y: y || 0 }; + }; + + $axure.utils.Matrix2D.identity = function() { + return $axure.utils.Matrix2D(1, 0, 0, 1, 0, 0); + }; + + $axure.utils.fixPng = function(png) { + if(!(/MSIE ((5\.5)|6)/.test(navigator.userAgent) && navigator.platform == "Win32")) return; + + var src = png.src; + if(!png.style.width) { png.style.width = $(png).width(); } + if(!png.style.height) { png.style.height = $(png).height(); } + png.onload = function() { }; + png.src = $axure.utils.getTransparentGifPath(); + png.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + src + "',sizingMethod='scale')"; + }; + })(); + + // TODO: [mas] simplify this + if(window.$axure && window.$axure.internal) { + $axure.internal(function($ax) { $ax.utils = $axure.utils; }); + } + + // Its too much of a pain to escape everything and use regular expresions, just replace manually + (function () { + var original = String.prototype.replace; + // TODO: maybe use flags or object instead to pass options in + String.prototype.replace = function (search, newVal, replaceFirst, ignoreCase) { + // Use original is some cases + if (search instanceof RegExp) return original.apply(this, arguments); + + var searchCompare = ignoreCase ? this.toLowerCase() : this; + if (ignoreCase) search = search.toLowerCase(); + + var searchLength = search.length; + var thisLength = this.length; + + var index = 0; + var retVal = ''; + while (index != -1) { + var nextIndex = searchCompare.indexOf(search, index); + if (nextIndex != -1) { + retVal += this.substring(index, nextIndex) + newVal; + index = nextIndex + searchLength; + if (index >= thisLength) index = -1; + } else { + retVal += this.substring(index); + index = -1; + } + if (replaceFirst) break; + } + + return retVal; + }; + + if (!Array.prototype.indexOf) { + Array.prototype.indexOf = function (elt /*, from*/) { + var len = this.length >>> 0; + + var from = Number(arguments[1]) || 0; + from = (from < 0) + ? Math.ceil(from) + : Math.floor(from); + if (from < 0) + from += len; + + for (; from < len; from++) { + if (from in this && + this[from] === elt) + return from; + } + return -1; + }; + } + })(); diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/jquery-1.7.1.min.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/jquery-1.7.1.min.js" new file mode 100644 index 0000000..198b3ff --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/jquery-1.7.1.min.js" @@ -0,0 +1,4 @@ +/*! jQuery v1.7.1 jquery.com | jquery.org/license */ +(function(a,b){function cy(a){return f.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cv(a){if(!ck[a]){var b=c.body,d=f("<"+a+">").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){cl||(cl=c.createElement("iframe"),cl.frameBorder=cl.width=cl.height=0),b.appendChild(cl);if(!cm||!cl.createElement)cm=(cl.contentWindow||cl.contentDocument).document,cm.write((c.compatMode==="CSS1Compat"?"":"")+""),cm.close();d=cm.createElement(a),cm.body.appendChild(d),e=f.css(d,"display"),b.removeChild(cl)}ck[a]=e}return ck[a]}function cu(a,b){var c={};f.each(cq.concat.apply([],cq.slice(0,b)),function(){c[this]=a});return c}function ct(){cr=b}function cs(){setTimeout(ct,0);return cr=f.now()}function cj(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function ci(){try{return new a.XMLHttpRequest}catch(b){}}function cc(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var d=a.dataTypes,e={},g,h,i=d.length,j,k=d[0],l,m,n,o,p;for(g=1;g0){if(c!=="border")for(;g=0===c})}function S(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function K(){return!0}function J(){return!1}function n(a,b,c){var d=b+"defer",e=b+"queue",g=b+"mark",h=f._data(a,d);h&&(c==="queue"||!f._data(a,e))&&(c==="mark"||!f._data(a,g))&&setTimeout(function(){!f._data(a,e)&&!f._data(a,g)&&(f.removeData(a,d,!0),h.fire())},0)}function m(a){for(var b in a){if(b==="data"&&f.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function l(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(k,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:f.isNumeric(d)?parseFloat(d):j.test(d)?f.parseJSON(d):d}catch(g){}f.data(a,c,d)}else d=b}return d}function h(a){var b=g[a]={},c,d;a=a.split(/\s+/);for(c=0,d=a.length;c)[^>]*$|#([\w\-]*)$)/,j=/\S/,k=/^\s+/,l=/\s+$/,m=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,n=/^[\],:{}\s]*$/,o=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,p=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,q=/(?:^|:|,)(?:\s*\[)+/g,r=/(webkit)[ \/]([\w.]+)/,s=/(opera)(?:.*version)?[ \/]([\w.]+)/,t=/(msie) ([\w.]+)/,u=/(mozilla)(?:.*? rv:([\w.]+))?/,v=/-([a-z]|[0-9])/ig,w=/^-ms-/,x=function(a,b){return(b+"").toUpperCase()},y=d.userAgent,z,A,B,C=Object.prototype.toString,D=Object.prototype.hasOwnProperty,E=Array.prototype.push,F=Array.prototype.slice,G=String.prototype.trim,H=Array.prototype.indexOf,I={};e.fn=e.prototype={constructor:e,init:function(a,d,f){var g,h,j,k;if(!a)return this;if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!d&&c.body){this.context=c,this[0]=c.body,this.selector=a,this.length=1;return this}if(typeof a=="string"){a.charAt(0)!=="<"||a.charAt(a.length-1)!==">"||a.length<3?g=i.exec(a):g=[null,a,null];if(g&&(g[1]||!d)){if(g[1]){d=d instanceof e?d[0]:d,k=d?d.ownerDocument||d:c,j=m.exec(a),j?e.isPlainObject(d)?(a=[c.createElement(j[1])],e.fn.attr.call(a,d,!0)):a=[k.createElement(j[1])]:(j=e.buildFragment([g[1]],[k]),a=(j.cacheable?e.clone(j.fragment):j.fragment).childNodes);return e.merge(this,a)}h=c.getElementById(g[2]);if(h&&h.parentNode){if(h.id!==g[2])return f.find(a);this.length=1,this[0]=h}this.context=c,this.selector=a;return this}return!d||d.jquery?(d||f).find(a):this.constructor(d).find(a)}if(e.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return e.makeArray(a,this)},selector:"",jquery:"1.7.1",length:0,size:function(){return this.length},toArray:function(){return F.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=this.constructor();e.isArray(a)?E.apply(d,a):e.merge(d,a),d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")");return d},each:function(a,b){return e.each(this,a,b)},ready:function(a){e.bindReady(),A.add(a);return this},eq:function(a){a=+a;return a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(F.apply(this,arguments),"slice",F.call(arguments).join(","))},map:function(a){return this.pushStack(e.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:E,sort:[].sort,splice:[].splice},e.fn.init.prototype=e.fn,e.extend=e.fn.extend=function(){var a,c,d,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i=="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!="object"&&!e.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j0)return;A.fireWith(c,[e]),e.fn.trigger&&e(c).trigger("ready").off("ready")}},bindReady:function(){if(!A){A=e.Callbacks("once memory");if(c.readyState==="complete")return setTimeout(e.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",B,!1),a.addEventListener("load",e.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",B),a.attachEvent("onload",e.ready);var b=!1;try{b=a.frameElement==null}catch(d){}c.documentElement.doScroll&&b&&J()}}},isFunction:function(a){return e.type(a)==="function"},isArray:Array.isArray||function(a){return e.type(a)==="array"},isWindow:function(a){return a&&typeof a=="object"&&"setInterval"in a},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):I[C.call(a)]||"object"},isPlainObject:function(a){if(!a||e.type(a)!=="object"||a.nodeType||e.isWindow(a))return!1;try{if(a.constructor&&!D.call(a,"constructor")&&!D.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||D.call(a,d)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw new Error(a)},parseJSON:function(b){if(typeof b!="string"||!b)return null;b=e.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(n.test(b.replace(o,"@").replace(p,"]").replace(q,"")))return(new Function("return "+b))();e.error("Invalid JSON: "+b)},parseXML:function(c){var d,f;try{a.DOMParser?(f=new DOMParser,d=f.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(g){d=b}(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&e.error("Invalid XML: "+c);return d},noop:function(){},globalEval:function(b){b&&j.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(w,"ms-").replace(v,x)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,d){var f,g=0,h=a.length,i=h===b||e.isFunction(a);if(d){if(i){for(f in a)if(c.apply(a[f],d)===!1)break}else for(;g0&&a[0]&&a[j-1]||j===0||e.isArray(a));if(k)for(;i1?i.call(arguments,0):b,j.notifyWith(k,e)}}function l(a){return function(c){b[a]=arguments.length>1?i.call(arguments,0):c,--g||j.resolveWith(j,b)}}var b=i.call(arguments,0),c=0,d=b.length,e=Array(d),g=d,h=d,j=d<=1&&a&&f.isFunction(a.promise)?a:f.Deferred(),k=j.promise();if(d>1){for(;c
    a",d=q.getElementsByTagName("*"),e=q.getElementsByTagName("a")[0];if(!d||!d.length||!e)return{};g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=q.getElementsByTagName("input")[0],b={leadingWhitespace:q.firstChild.nodeType===3,tbody:!q.getElementsByTagName("tbody").length,htmlSerialize:!!q.getElementsByTagName("link").length,style:/top/.test(e.getAttribute("style")),hrefNormalized:e.getAttribute("href")==="/a",opacity:/^0.55/.test(e.style.opacity),cssFloat:!!e.style.cssFloat,checkOn:i.value==="on",optSelected:h.selected,getSetAttribute:q.className!=="t",enctype:!!c.createElement("form").enctype,html5Clone:c.createElement("nav").cloneNode(!0).outerHTML!=="<:nav>",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0},i.checked=!0,b.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,b.optDisabled=!h.disabled;try{delete q.test}catch(s){b.deleteExpando=!1}!q.addEventListener&&q.attachEvent&&q.fireEvent&&(q.attachEvent("onclick",function(){b.noCloneEvent=!1}),q.cloneNode(!0).fireEvent("onclick")),i=c.createElement("input"),i.value="t",i.setAttribute("type","radio"),b.radioValue=i.value==="t",i.setAttribute("checked","checked"),q.appendChild(i),k=c.createDocumentFragment(),k.appendChild(q.lastChild),b.checkClone=k.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=i.checked,k.removeChild(i),k.appendChild(q),q.innerHTML="",a.getComputedStyle&&(j=c.createElement("div"),j.style.width="0",j.style.marginRight="0",q.style.width="2px",q.appendChild(j),b.reliableMarginRight=(parseInt((a.getComputedStyle(j,null)||{marginRight:0}).marginRight,10)||0)===0);if(q.attachEvent)for(o in{submit:1,change:1,focusin:1})n="on"+o,p=n in q,p||(q.setAttribute(n,"return;"),p=typeof q[n]=="function"),b[o+"Bubbles"]=p;k.removeChild(q),k=g=h=j=q=i=null,f(function(){var a,d,e,g,h,i,j,k,m,n,o,r=c.getElementsByTagName("body")[0];!r||(j=1,k="position:absolute;top:0;left:0;width:1px;height:1px;margin:0;",m="visibility:hidden;border:0;",n="style='"+k+"border:5px solid #000;padding:0;'",o="
    "+""+"
    ",a=c.createElement("div"),a.style.cssText=m+"width:0;height:0;position:static;top:0;margin-top:"+j+"px",r.insertBefore(a,r.firstChild),q=c.createElement("div"),a.appendChild(q),q.innerHTML="
    t
    ",l=q.getElementsByTagName("td"),p=l[0].offsetHeight===0,l[0].style.display="",l[1].style.display="none",b.reliableHiddenOffsets=p&&l[0].offsetHeight===0,q.innerHTML="",q.style.width=q.style.paddingLeft="1px",f.boxModel=b.boxModel=q.offsetWidth===2,typeof q.style.zoom!="undefined"&&(q.style.display="inline",q.style.zoom=1,b.inlineBlockNeedsLayout=q.offsetWidth===2,q.style.display="",q.innerHTML="
    ",b.shrinkWrapBlocks=q.offsetWidth!==2),q.style.cssText=k+m,q.innerHTML=o,d=q.firstChild,e=d.firstChild,h=d.nextSibling.firstChild.firstChild,i={doesNotAddBorder:e.offsetTop!==5,doesAddBorderForTableAndCells:h.offsetTop===5},e.style.position="fixed",e.style.top="20px",i.fixedPosition=e.offsetTop===20||e.offsetTop===15,e.style.position=e.style.top="",d.style.overflow="hidden",d.style.position="relative",i.subtractsBorderForOverflowNotVisible=e.offsetTop===-5,i.doesNotIncludeMarginInBodyOffset=r.offsetTop!==j,r.removeChild(a),q=a=null,f.extend(b,i))});return b}();var j=/^(?:\{.*\}|\[.*\])$/,k=/([A-Z])/g;f.extend({cache:{},uuid:0,expando:"jQuery"+(f.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?f.cache[a[f.expando]]:a[f.expando];return!!a&&!m(a)},data:function(a,c,d,e){if(!!f.acceptData(a)){var g,h,i,j=f.expando,k=typeof c=="string",l=a.nodeType,m=l?f.cache:a,n=l?a[j]:a[j]&&j,o=c==="events";if((!n||!m[n]||!o&&!e&&!m[n].data)&&k&&d===b)return;n||(l?a[j]=n=++f.uuid:n=j),m[n]||(m[n]={},l||(m[n].toJSON=f.noop));if(typeof c=="object"||typeof c=="function")e?m[n]=f.extend(m[n],c):m[n].data=f.extend(m[n].data,c);g=h=m[n],e||(h.data||(h.data={}),h=h.data),d!==b&&(h[f.camelCase(c)]=d);if(o&&!h[c])return g.events;k?(i=h[c],i==null&&(i=h[f.camelCase(c)])):i=h;return i}},removeData:function(a,b,c){if(!!f.acceptData(a)){var d,e,g,h=f.expando,i=a.nodeType,j=i?f.cache:a,k=i?a[h]:h;if(!j[k])return;if(b){d=c?j[k]:j[k].data;if(d){f.isArray(b)||(b in d?b=[b]:(b=f.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,g=b.length;e-1)return!0;return!1},val:function(a){var c,d,e,g=this[0];{if(!!arguments.length){e=f.isFunction(a);return this.each(function(d){var g=f(this),h;if(this.nodeType===1){e?h=a.call(this,d,g.val()):h=a,h==null?h="":typeof h=="number"?h+="":f.isArray(h)&&(h=f.map(h,function(a){return a==null?"":a+""})),c=f.valHooks[this.nodeName.toLowerCase()]||f.valHooks[this.type];if(!c||!("set"in c)||c.set(this,h,"value")===b)this.value=h}})}if(g){c=f.valHooks[g.nodeName.toLowerCase()]||f.valHooks[g.type];if(c&&"get"in c&&(d=c.get(g,"value"))!==b)return d;d=g.value;return typeof d=="string"?d.replace(q,""):d==null?"":d}}}}),f.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,g=a.selectedIndex,h=[],i=a.options,j=a.type==="select-one";if(g<0)return null;c=j?g:0,d=j?g+1:i.length;for(;c=0}),c.length||(a.selectedIndex=-1);return c}}},attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attr:function(a,c,d,e){var g,h,i,j=a.nodeType;if(!!a&&j!==3&&j!==8&&j!==2){if(e&&c in f.attrFn)return f(a)[c](d);if(typeof a.getAttribute=="undefined")return f.prop(a,c,d);i=j!==1||!f.isXMLDoc(a),i&&(c=c.toLowerCase(),h=f.attrHooks[c]||(u.test(c)?x:w));if(d!==b){if(d===null){f.removeAttr(a,c);return}if(h&&"set"in h&&i&&(g=h.set(a,d,c))!==b)return g;a.setAttribute(c,""+d);return d}if(h&&"get"in h&&i&&(g=h.get(a,c))!==null)return g;g=a.getAttribute(c);return g===null?b:g}},removeAttr:function(a,b){var c,d,e,g,h=0;if(b&&a.nodeType===1){d=b.toLowerCase().split(p),g=d.length;for(;h=0}})});var z=/^(?:textarea|input|select)$/i,A=/^([^\.]*)?(?:\.(.+))?$/,B=/\bhover(\.\S+)?\b/,C=/^key/,D=/^(?:mouse|contextmenu)|click/,E=/^(?:focusinfocus|focusoutblur)$/,F=/^(\w*)(?:#([\w\-]+))?(?:\.([\w\-]+))?$/,G=function(a){var b=F.exec(a);b&&(b[1]=(b[1]||"").toLowerCase(),b[3]=b[3]&&new RegExp("(?:^|\\s)"+b[3]+"(?:\\s|$)"));return b},H=function(a,b){var c=a.attributes||{};return(!b[1]||a.nodeName.toLowerCase()===b[1])&&(!b[2]||(c.id||{}).value===b[2])&&(!b[3]||b[3].test((c["class"]||{}).value))},I=function(a){return f.event.special.hover?a:a.replace(B,"mouseenter$1 mouseleave$1")}; +f.event={add:function(a,c,d,e,g){var h,i,j,k,l,m,n,o,p,q,r,s;if(!(a.nodeType===3||a.nodeType===8||!c||!d||!(h=f._data(a)))){d.handler&&(p=d,d=p.handler),d.guid||(d.guid=f.guid++),j=h.events,j||(h.events=j={}),i=h.handle,i||(h.handle=i=function(a){return typeof f!="undefined"&&(!a||f.event.triggered!==a.type)?f.event.dispatch.apply(i.elem,arguments):b},i.elem=a),c=f.trim(I(c)).split(" ");for(k=0;k=0&&(h=h.slice(0,-1),k=!0),h.indexOf(".")>=0&&(i=h.split("."),h=i.shift(),i.sort());if((!e||f.event.customEvent[h])&&!f.event.global[h])return;c=typeof c=="object"?c[f.expando]?c:new f.Event(h,c):new f.Event(h),c.type=h,c.isTrigger=!0,c.exclusive=k,c.namespace=i.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+i.join("\\.(?:.*\\.)?")+"(\\.|$)"):null,o=h.indexOf(":")<0?"on"+h:"";if(!e){j=f.cache;for(l in j)j[l].events&&j[l].events[h]&&f.event.trigger(c,d,j[l].handle.elem,!0);return}c.result=b,c.target||(c.target=e),d=d!=null?f.makeArray(d):[],d.unshift(c),p=f.event.special[h]||{};if(p.trigger&&p.trigger.apply(e,d)===!1)return;r=[[e,p.bindType||h]];if(!g&&!p.noBubble&&!f.isWindow(e)){s=p.delegateType||h,m=E.test(s+h)?e:e.parentNode,n=null;for(;m;m=m.parentNode)r.push([m,s]),n=m;n&&n===e.ownerDocument&&r.push([n.defaultView||n.parentWindow||a,s])}for(l=0;le&&i.push({elem:this,matches:d.slice(e)});for(j=0;j0?this.on(b,null,a,c):this.trigger(b)},f.attrFn&&(f.attrFn[b]=!0),C.test(b)&&(f.event.fixHooks[b]=f.event.keyHooks),D.test(b)&&(f.event.fixHooks[b]=f.event.mouseHooks)}),function(){function x(a,b,c,e,f,g){for(var h=0,i=e.length;h0){k=j;break}}j=j[a]}e[h]=k}}}function w(a,b,c,e,f,g){for(var h=0,i=e.length;h+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,d="sizcache"+(Math.random()+"").replace(".",""),e=0,g=Object.prototype.toString,h=!1,i=!0,j=/\\/g,k=/\r\n/g,l=/\W/;[0,0].sort(function(){i=!1;return 0});var m=function(b,d,e,f){e=e||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!="string")return e;var i,j,k,l,n,q,r,t,u=!0,v=m.isXML(d),w=[],x=b;do{a.exec(""),i=a.exec(x);if(i){x=i[3],w.push(i[1]);if(i[2]){l=i[3];break}}}while(i);if(w.length>1&&p.exec(b))if(w.length===2&&o.relative[w[0]])j=y(w[0]+w[1],d,f);else{j=o.relative[w[0]]?[d]:m(w.shift(),d);while(w.length)b=w.shift(),o.relative[b]&&(b+=w.shift()),j=y(b,j,f)}else{!f&&w.length>1&&d.nodeType===9&&!v&&o.match.ID.test(w[0])&&!o.match.ID.test(w[w.length-1])&&(n=m.find(w.shift(),d,v),d=n.expr?m.filter(n.expr,n.set)[0]:n.set[0]);if(d){n=f?{expr:w.pop(),set:s(f)}:m.find(w.pop(),w.length===1&&(w[0]==="~"||w[0]==="+")&&d.parentNode?d.parentNode:d,v),j=n.expr?m.filter(n.expr,n.set):n.set,w.length>0?k=s(j):u=!1;while(w.length)q=w.pop(),r=q,o.relative[q]?r=w.pop():q="",r==null&&(r=d),o.relative[q](k,r,v)}else k=w=[]}k||(k=j),k||m.error(q||b);if(g.call(k)==="[object Array]")if(!u)e.push.apply(e,k);else if(d&&d.nodeType===1)for(t=0;k[t]!=null;t++)k[t]&&(k[t]===!0||k[t].nodeType===1&&m.contains(d,k[t]))&&e.push(j[t]);else for(t=0;k[t]!=null;t++)k[t]&&k[t].nodeType===1&&e.push(j[t]);else s(k,e);l&&(m(l,h,e,f),m.uniqueSort(e));return e};m.uniqueSort=function(a){if(u){h=i,a.sort(u);if(h)for(var b=1;b0},m.find=function(a,b,c){var d,e,f,g,h,i;if(!a)return[];for(e=0,f=o.order.length;e":function(a,b){var c,d=typeof b=="string",e=0,f=a.length;if(d&&!l.test(b)){b=b.toLowerCase();for(;e=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(j,"")},TAG:function(a,b){return a[1].replace(j,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||m.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&m.error(a[0]);a[0]=e++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(j,"");!f&&o.attrMap[g]&&(a[1]=o.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(j,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=m(b[3],null,null,c);else{var g=m.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(o.match.POS.test(b[0])||o.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!m(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){var b=a.getAttribute("type"),c=a.type;return a.nodeName.toLowerCase()==="input"&&"text"===c&&(b===c||b===null)},radio:function(a){return a.nodeName.toLowerCase()==="input"&&"radio"===a.type},checkbox:function(a){return a.nodeName.toLowerCase()==="input"&&"checkbox"===a.type},file:function(a){return a.nodeName.toLowerCase()==="input"&&"file"===a.type},password:function(a){return a.nodeName.toLowerCase()==="input"&&"password"===a.type},submit:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"submit"===a.type},image:function(a){return a.nodeName.toLowerCase()==="input"&&"image"===a.type},reset:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"reset"===a.type},button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&"button"===a.type||b==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)},focus:function(a){return a===a.ownerDocument.activeElement}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return bc[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=o.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||n([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||!!a.nodeName&&a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=m.attr?m.attr(a,c):o.attrHandle[c]?o.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":!f&&m.attr?d!=null:f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=o.setFilters[e];if(f)return f(a,c,b,d)}}},p=o.match.POS,q=function(a,b){return"\\"+(b-0+1)};for(var r in o.match)o.match[r]=new RegExp(o.match[r].source+/(?![^\[]*\])(?![^\(]*\))/.source),o.leftMatch[r]=new RegExp(/(^(?:.|\r|\n)*?)/.source+o.match[r].source.replace(/\\(\d+)/g,q));var s=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(t){s=function(a,b){var c=0,d=b||[];if(g.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length=="number")for(var e=a.length;c",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(o.find.ID=function(a,c,d){if(typeof c.getElementById!="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},o.filter.ID=function(a,b){var c=typeof a.getAttributeNode!="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(o.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML="",a.firstChild&&typeof a.firstChild.getAttribute!="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(o.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=m,b=c.createElement("div"),d="__sizzle__";b.innerHTML="

    ";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){m=function(b,e,f,g){e=e||c;if(!g&&!m.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1])return s(e.getElementsByTagName(b),f);if(h[2]&&o.find.CLASS&&e.getElementsByClassName)return s(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){if(b==="body"&&e.body)return s([e.body],f);if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode)return s([],f);if(i.id===h[3])return s([i],f)}try{return s(e.querySelectorAll(b),f)}catch(j){}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var k=e,l=e.getAttribute("id"),n=l||d,p=e.parentNode,q=/^\s*[+~]/.test(b);l?n=n.replace(/'/g,"\\$&"):e.setAttribute("id",n),q&&p&&(e=e.parentNode);try{if(!q||p)return s(e.querySelectorAll("[id='"+n+"'] "+b),f)}catch(r){}finally{l||k.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)m[e]=a[e];b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector;if(b){var d=!b.call(c.createElement("div"),"div"),e=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(f){e=!0}m.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!m.isXML(a))try{if(e||!o.match.PSEUDO.test(c)&&!/!=/.test(c)){var f=b.call(a,c);if(f||!d||a.document&&a.document.nodeType!==11)return f}}catch(g){}return m(c,null,null,[a]).length>0}}}(),function(){var a=c.createElement("div");a.innerHTML="
    ";if(!!a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;o.order.splice(1,0,"CLASS"),o.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?m.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?m.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16)}:m.contains=function(){return!1},m.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var y=function(a,b,c){var d,e=[],f="",g=b.nodeType?[b]:b;while(d=o.match.PSEUDO.exec(a))f+=d[0],a=a.replace(o.match.PSEUDO,"");a=o.relative[a]?a+"*":a;for(var h=0,i=g.length;h0)for(h=g;h=0:f.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c=[],d,e,g=this[0];if(f.isArray(a)){var h=1;while(g&&g.ownerDocument&&g!==b){for(d=0;d-1:f.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b||g.nodeType===11)break}}c=c.length>1?f.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a)return this[0]&&this[0].parentNode?this.prevAll().length:-1;if(typeof a=="string")return f.inArray(this[0],f(a));return f.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a=="string"?f(a,b):f.makeArray(a&&a.nodeType?[a]:a),d=f.merge(this.get(),c);return this.pushStack(S(c[0])||S(d[0])?d:f.unique(d))},andSelf:function(){return this.add(this.prevObject)}}),f.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return f.dir(a,"parentNode")},parentsUntil:function(a,b,c){return f.dir(a,"parentNode",c)},next:function(a){return f.nth(a,2,"nextSibling")},prev:function(a){return f.nth(a,2,"previousSibling")},nextAll:function(a){return f.dir(a,"nextSibling")},prevAll:function(a){return f.dir(a,"previousSibling")},nextUntil:function(a,b,c){return f.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return f.dir(a,"previousSibling",c)},siblings:function(a){return f.sibling(a.parentNode.firstChild,a)},children:function(a){return f.sibling(a.firstChild)},contents:function(a){return f.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:f.makeArray(a.childNodes)}},function(a,b){f.fn[a]=function(c,d){var e=f.map(this,b,c);L.test(a)||(d=c),d&&typeof d=="string"&&(e=f.filter(d,e)),e=this.length>1&&!R[a]?f.unique(e):e,(this.length>1||N.test(d))&&M.test(a)&&(e=e.reverse());return this.pushStack(e,a,P.call(arguments).join(","))}}),f.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?f.find.matchesSelector(b[0],a)?[b[0]]:[]:f.find.matches(a,b)},dir:function(a,c,d){var e=[],g=a[c];while(g&&g.nodeType!==9&&(d===b||g.nodeType!==1||!f(g).is(d)))g.nodeType===1&&e.push(g),g=g[c];return e},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var V="abbr|article|aside|audio|canvas|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",W=/ jQuery\d+="(?:\d+|null)"/g,X=/^\s+/,Y=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,Z=/<([\w:]+)/,$=/",""],legend:[1,"
    ","
    "],thead:[1,"","
    "],tr:[2,"","
    "],td:[3,"","
    "],col:[2,"","
    "],area:[1,"",""],_default:[0,"",""]},bh=U(c);bg.optgroup=bg.option,bg.tbody=bg.tfoot=bg.colgroup=bg.caption=bg.thead,bg.th=bg.td,f.support.htmlSerialize||(bg._default=[1,"div
    ","
    "]),f.fn.extend({text:function(a){if(f.isFunction(a))return this.each(function(b){var c=f(this);c.text(a.call(this,b,c.text()))});if(typeof a!="object"&&a!==b)return this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a));return f.text(this)},wrapAll:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapAll(a.call(this,b))});if(this[0]){var b=f(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapInner(a.call(this,b))});return this.each(function(){var b=f(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=f.isFunction(a);return this.each(function(c){f(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){f.nodeName(this,"body")||f(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=f.clean(arguments);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,f.clean(arguments));return a}},remove:function(a,b){for(var c=0,d;(d=this[c])!=null;c++)if(!a||f.filter(a,[d]).length)!b&&d.nodeType===1&&(f.cleanData(d.getElementsByTagName("*")),f.cleanData([d])),d.parentNode&&d.parentNode.removeChild(d);return this},empty:function() +{for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&f.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){a=a==null?!1:a,b=b==null?a:b;return this.map(function(){return f.clone(this,a,b)})},html:function(a){if(a===b)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(W,""):null;if(typeof a=="string"&&!ba.test(a)&&(f.support.leadingWhitespace||!X.test(a))&&!bg[(Z.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Y,"<$1>");try{for(var c=0,d=this.length;c1&&l0?this.clone(!0):this).get();f(e[h])[b](j),d=d.concat(j)}return this.pushStack(d,a,e.selector)}}),f.extend({clone:function(a,b,c){var d,e,g,h=f.support.html5Clone||!bc.test("<"+a.nodeName)?a.cloneNode(!0):bo(a);if((!f.support.noCloneEvent||!f.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!f.isXMLDoc(a)){bk(a,h),d=bl(a),e=bl(h);for(g=0;d[g];++g)e[g]&&bk(d[g],e[g])}if(b){bj(a,h);if(c){d=bl(a),e=bl(h);for(g=0;d[g];++g)bj(d[g],e[g])}}d=e=null;return h},clean:function(a,b,d,e){var g;b=b||c,typeof b.createElement=="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);var h=[],i;for(var j=0,k;(k=a[j])!=null;j++){typeof k=="number"&&(k+="");if(!k)continue;if(typeof k=="string")if(!_.test(k))k=b.createTextNode(k);else{k=k.replace(Y,"<$1>");var l=(Z.exec(k)||["",""])[1].toLowerCase(),m=bg[l]||bg._default,n=m[0],o=b.createElement("div");b===c?bh.appendChild(o):U(b).appendChild(o),o.innerHTML=m[1]+k+m[2];while(n--)o=o.lastChild;if(!f.support.tbody){var p=$.test(k),q=l==="table"&&!p?o.firstChild&&o.firstChild.childNodes:m[1]===""&&!p?o.childNodes:[];for(i=q.length-1;i>=0;--i)f.nodeName(q[i],"tbody")&&!q[i].childNodes.length&&q[i].parentNode.removeChild(q[i])}!f.support.leadingWhitespace&&X.test(k)&&o.insertBefore(b.createTextNode(X.exec(k)[0]),o.firstChild),k=o.childNodes}var r;if(!f.support.appendChecked)if(k[0]&&typeof (r=k.length)=="number")for(i=0;i=0)return b+"px"}}}),f.support.opacity||(f.cssHooks.opacity={get:function(a,b){return br.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=f.isNumeric(b)?"alpha(opacity="+b*100+")":"",g=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&f.trim(g.replace(bq,""))===""){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bq.test(g)?g.replace(bq,e):g+" "+e}}),f(function(){f.support.reliableMarginRight||(f.cssHooks.marginRight={get:function(a,b){var c;f.swap(a,{display:"inline-block"},function(){b?c=bz(a,"margin-right","marginRight"):c=a.style.marginRight});return c}})}),c.defaultView&&c.defaultView.getComputedStyle&&(bA=function(a,b){var c,d,e;b=b.replace(bs,"-$1").toLowerCase(),(d=a.ownerDocument.defaultView)&&(e=d.getComputedStyle(a,null))&&(c=e.getPropertyValue(b),c===""&&!f.contains(a.ownerDocument.documentElement,a)&&(c=f.style(a,b)));return c}),c.documentElement.currentStyle&&(bB=function(a,b){var c,d,e,f=a.currentStyle&&a.currentStyle[b],g=a.style;f===null&&g&&(e=g[b])&&(f=e),!bt.test(f)&&bu.test(f)&&(c=g.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),g.left=b==="fontSize"?"1em":f||0,f=g.pixelLeft+"px",g.left=c,d&&(a.runtimeStyle.left=d));return f===""?"auto":f}),bz=bA||bB,f.expr&&f.expr.filters&&(f.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!f.support.reliableHiddenOffsets&&(a.style&&a.style.display||f.css(a,"display"))==="none"},f.expr.filters.visible=function(a){return!f.expr.filters.hidden(a)});var bD=/%20/g,bE=/\[\]$/,bF=/\r?\n/g,bG=/#.*$/,bH=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bI=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bJ=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,bK=/^(?:GET|HEAD)$/,bL=/^\/\//,bM=/\?/,bN=/)<[^<]*)*<\/script>/gi,bO=/^(?:select|textarea)/i,bP=/\s+/,bQ=/([?&])_=[^&]*/,bR=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,bS=f.fn.load,bT={},bU={},bV,bW,bX=["*/"]+["*"];try{bV=e.href}catch(bY){bV=c.createElement("a"),bV.href="",bV=bV.href}bW=bR.exec(bV.toLowerCase())||[],f.fn.extend({load:function(a,c,d){if(typeof a!="string"&&bS)return bS.apply(this,arguments);if(!this.length)return this;var e=a.indexOf(" ");if(e>=0){var g=a.slice(e,a.length);a=a.slice(0,e)}var h="GET";c&&(f.isFunction(c)?(d=c,c=b):typeof c=="object"&&(c=f.param(c,f.ajaxSettings.traditional),h="POST"));var i=this;f.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?f("
    ").append(c.replace(bN,"")).find(g):c)),d&&i.each(d,[c,b,a])}});return this},serialize:function(){return f.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?f.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bO.test(this.nodeName)||bI.test(this.type))}).map(function(a,b){var c=f(this).val();return c==null?null:f.isArray(c)?f.map(c,function(a,c){return{name:b.name,value:a.replace(bF,"\r\n")}}):{name:b.name,value:c.replace(bF,"\r\n")}}).get()}}),f.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){f.fn[b]=function(a){return this.on(b,a)}}),f.each(["get","post"],function(a,c){f[c]=function(a,d,e,g){f.isFunction(d)&&(g=g||e,e=d,d=b);return f.ajax({type:c,url:a,data:d,success:e,dataType:g})}}),f.extend({getScript:function(a,c){return f.get(a,b,c,"script")},getJSON:function(a,b,c){return f.get(a,b,c,"json")},ajaxSetup:function(a,b){b?b_(a,f.ajaxSettings):(b=a,a=f.ajaxSettings),b_(a,b);return a},ajaxSettings:{url:bV,isLocal:bJ.test(bW[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":bX},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":f.parseJSON,"text xml":f.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:bZ(bT),ajaxTransport:bZ(bU),ajax:function(a,c){function w(a,c,l,m){if(s!==2){s=2,q&&clearTimeout(q),p=b,n=m||"",v.readyState=a>0?4:0;var o,r,u,w=c,x=l?cb(d,v,l):b,y,z;if(a>=200&&a<300||a===304){if(d.ifModified){if(y=v.getResponseHeader("Last-Modified"))f.lastModified[k]=y;if(z=v.getResponseHeader("Etag"))f.etag[k]=z}if(a===304)w="notmodified",o=!0;else try{r=cc(d,x),w="success",o=!0}catch(A){w="parsererror",u=A}}else{u=w;if(!w||a)w="error",a<0&&(a=0)}v.status=a,v.statusText=""+(c||w),o?h.resolveWith(e,[r,w,v]):h.rejectWith(e,[v,w,u]),v.statusCode(j),j=b,t&&g.trigger("ajax"+(o?"Success":"Error"),[v,d,o?r:u]),i.fireWith(e,[v,w]),t&&(g.trigger("ajaxComplete",[v,d]),--f.active||f.event.trigger("ajaxStop"))}}typeof a=="object"&&(c=a,a=b),c=c||{};var d=f.ajaxSetup({},c),e=d.context||d,g=e!==d&&(e.nodeType||e instanceof f)?f(e):f.event,h=f.Deferred(),i=f.Callbacks("once memory"),j=d.statusCode||{},k,l={},m={},n,o,p,q,r,s=0,t,u,v={readyState:0,setRequestHeader:function(a,b){if(!s){var c=a.toLowerCase();a=m[c]=m[c]||a,l[a]=b}return this},getAllResponseHeaders:function(){return s===2?n:null},getResponseHeader:function(a){var c;if(s===2){if(!o){o={};while(c=bH.exec(n))o[c[1].toLowerCase()]=c[2]}c=o[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){s||(d.mimeType=a);return this},abort:function(a){a=a||"abort",p&&p.abort(a),w(0,a);return this}};h.promise(v),v.success=v.done,v.error=v.fail,v.complete=i.add,v.statusCode=function(a){if(a){var b;if(s<2)for(b in a)j[b]=[j[b],a[b]];else b=a[v.status],v.then(b,b)}return this},d.url=((a||d.url)+"").replace(bG,"").replace(bL,bW[1]+"//"),d.dataTypes=f.trim(d.dataType||"*").toLowerCase().split(bP),d.crossDomain==null&&(r=bR.exec(d.url.toLowerCase()),d.crossDomain=!(!r||r[1]==bW[1]&&r[2]==bW[2]&&(r[3]||(r[1]==="http:"?80:443))==(bW[3]||(bW[1]==="http:"?80:443)))),d.data&&d.processData&&typeof d.data!="string"&&(d.data=f.param(d.data,d.traditional)),b$(bT,d,c,v);if(s===2)return!1;t=d.global,d.type=d.type.toUpperCase(),d.hasContent=!bK.test(d.type),t&&f.active++===0&&f.event.trigger("ajaxStart");if(!d.hasContent){d.data&&(d.url+=(bM.test(d.url)?"&":"?")+d.data,delete d.data),k=d.url;if(d.cache===!1){var x=f.now(),y=d.url.replace(bQ,"$1_="+x);d.url=y+(y===d.url?(bM.test(d.url)?"&":"?")+"_="+x:"")}}(d.data&&d.hasContent&&d.contentType!==!1||c.contentType)&&v.setRequestHeader("Content-Type",d.contentType),d.ifModified&&(k=k||d.url,f.lastModified[k]&&v.setRequestHeader("If-Modified-Since",f.lastModified[k]),f.etag[k]&&v.setRequestHeader("If-None-Match",f.etag[k])),v.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+(d.dataTypes[0]!=="*"?", "+bX+"; q=0.01":""):d.accepts["*"]);for(u in d.headers)v.setRequestHeader(u,d.headers[u]);if(d.beforeSend&&(d.beforeSend.call(e,v,d)===!1||s===2)){v.abort();return!1}for(u in{success:1,error:1,complete:1})v[u](d[u]);p=b$(bU,d,c,v);if(!p)w(-1,"No Transport");else{v.readyState=1,t&&g.trigger("ajaxSend",[v,d]),d.async&&d.timeout>0&&(q=setTimeout(function(){v.abort("timeout")},d.timeout));try{s=1,p.send(l,w)}catch(z){if(s<2)w(-1,z);else throw z}}return v},param:function(a,c){var d=[],e=function(a,b){b=f.isFunction(b)?b():b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=f.ajaxSettings.traditional);if(f.isArray(a)||a.jquery&&!f.isPlainObject(a))f.each(a,function(){e(this.name,this.value)});else for(var g in a)ca(g,a[g],c,e);return d.join("&").replace(bD,"+")}}),f.extend({active:0,lastModified:{},etag:{}});var cd=f.now(),ce=/(\=)\?(&|$)|\?\?/i;f.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return f.expando+"_"+cd++}}),f.ajaxPrefilter("json jsonp",function(b,c,d){var e=b.contentType==="application/x-www-form-urlencoded"&&typeof b.data=="string";if(b.dataTypes[0]==="jsonp"||b.jsonp!==!1&&(ce.test(b.url)||e&&ce.test(b.data))){var g,h=b.jsonpCallback=f.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2";b.jsonp!==!1&&(j=j.replace(ce,l),b.url===j&&(e&&(k=k.replace(ce,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},d.always(function(){a[h]=i,g&&f.isFunction(i)&&a[h](g[0])}),b.converters["script json"]=function(){g||f.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),f.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){f.globalEval(a);return a}}}),f.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),f.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(c||!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var cf=a.ActiveXObject?function(){for(var a in ch)ch[a](0,1)}:!1,cg=0,ch;f.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&ci()||cj()}:ci,function(a){f.extend(f.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(f.ajaxSettings.xhr()),f.support.ajax&&f.ajaxTransport(function(c){if(!c.crossDomain||f.support.cors){var d;return{send:function(e,g){var h=c.xhr(),i,j;c.username?h.open(c.type,c.url,c.async,c.username,c.password):h.open(c.type,c.url,c.async);if(c.xhrFields)for(j in c.xhrFields)h[j]=c.xhrFields[j];c.mimeType&&h.overrideMimeType&&h.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(j in e)h.setRequestHeader(j,e[j])}catch(k){}h.send(c.hasContent&&c.data||null),d=function(a,e){var j,k,l,m,n;try{if(d&&(e||h.readyState===4)){d=b,i&&(h.onreadystatechange=f.noop,cf&&delete ch[i]);if(e)h.readyState!==4&&h.abort();else{j=h.status,l=h.getAllResponseHeaders(),m={},n=h.responseXML,n&&n.documentElement&&(m.xml=n),m.text=h.responseText;try{k=h.statusText}catch(o){k=""}!j&&c.isLocal&&!c.crossDomain?j=m.text?200:404:j===1223&&(j=204)}}}catch(p){e||g(-1,p)}m&&g(j,k,m,l)},!c.async||h.readyState===4?d():(i=++cg,cf&&(ch||(ch={},f(a).unload(cf)),ch[i]=d),h.onreadystatechange=d)},abort:function(){d&&d(0,1)}}}});var ck={},cl,cm,cn=/^(?:toggle|show|hide)$/,co=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,cp,cq=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]],cr;f.fn.extend({show:function(a,b,c){var d,e;if(a||a===0)return this.animate(cu("show",3),a,b,c);for(var g=0,h=this.length;g=i.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),i.animatedProperties[this.prop]=!0;for(b in i.animatedProperties)i.animatedProperties[b]!==!0&&(g=!1);if(g){i.overflow!=null&&!f.support.shrinkWrapBlocks&&f.each(["","X","Y"],function(a,b){h.style["overflow"+b]=i.overflow[a]}),i.hide&&f(h).hide();if(i.hide||i.show)for(b in i.animatedProperties)f.style(h,b,i.orig[b]),f.removeData(h,"fxshow"+b,!0),f.removeData(h,"toggle"+b,!0);d=i.complete,d&&(i.complete=!1,d.call(h))}return!1}i.duration==Infinity?this.now=e:(c=e-this.startTime,this.state=c/i.duration,this.pos=f.easing[i.animatedProperties[this.prop]](this.state,c,0,1,i.duration),this.now=this.start+(this.end-this.start)*this.pos),this.update();return!0}},f.extend(f.fx,{tick:function(){var a,b=f.timers,c=0;for(;c-1,k={},l={},m,n;j?(l=e.position(),m=l.top,n=l.left):(m=parseFloat(h)||0,n=parseFloat(i)||0),f.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):e.css(k)}},f.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),d=cx.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(f.css(a,"marginTop"))||0,c.left-=parseFloat(f.css(a,"marginLeft"))||0,d.top+=parseFloat(f.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(f.css(b[0],"borderLeftWidth"))||0;return{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&!cx.test(a.nodeName)&&f.css(a,"position")==="static")a=a.offsetParent;return a})}}),f.each(["Left","Top"],function(a,c){var d="scroll"+c;f.fn[d]=function(c){var e,g;if(c===b){e=this[0];if(!e)return null;g=cy(e);return g?"pageXOffset"in g?g[a?"pageYOffset":"pageXOffset"]:f.support.boxModel&&g.document.documentElement[d]||g.document.body[d]:e[d]}return this.each(function(){g=cy(this),g?g.scrollTo(a?f(g).scrollLeft():c,a?c:f(g).scrollTop()):this[d]=c})}}),f.each(["Height","Width"],function(a,c){var d=c.toLowerCase();f.fn["inner"+c]=function(){var a=this[0];return a?a.style?parseFloat(f.css(a,d,"padding")):this[d]():null},f.fn["outer"+c]=function(a){var b=this[0];return b?b.style?parseFloat(f.css(b,d,a?"margin":"border")):this[d]():null},f.fn[d]=function(a){var e=this[0];if(!e)return a==null?null:this;if(f.isFunction(a))return this.each(function(b){var c=f(this);c[d](a.call(this,b,c[d]()))});if(f.isWindow(e)){var g=e.document.documentElement["client"+c],h=e.document.body;return e.document.compatMode==="CSS1Compat"&&g||h&&h["client"+c]||g}if(e.nodeType===9)return Math.max(e.documentElement["client"+c],e.body["scroll"+c],e.documentElement["scroll"+c],e.body["offset"+c],e.documentElement["offset"+c]);if(a===b){var i=f.css(e,d),j=parseFloat(i);return f.isNumeric(j)?j:i}return this.css(d,typeof a=="string"?a:a+"px")}}),a.jQuery=a.$=f,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return f})})(window); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/jquery-ui-1.8.10.custom.min.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/jquery-ui-1.8.10.custom.min.js" new file mode 100644 index 0000000..a7e1293 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/jquery-ui-1.8.10.custom.min.js" @@ -0,0 +1,233 @@ +/*! + * jQuery UI 1.8.10 + * + * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT or GPL Version 2 licenses. + * http://jquery.org/license + * + * http://docs.jquery.com/UI + */ +(function(c,j){function k(a){return!c(a).parents().andSelf().filter(function(){return c.curCSS(this,"visibility")==="hidden"||c.expr.filters.hidden(this)}).length}c.ui=c.ui||{};if(!c.ui.version){c.extend(c.ui,{version:"1.8.10",keyCode:{ALT:18,BACKSPACE:8,CAPS_LOCK:20,COMMA:188,COMMAND:91,COMMAND_LEFT:91,COMMAND_RIGHT:93,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,MENU:93,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106, +NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SHIFT:16,SPACE:32,TAB:9,UP:38,WINDOWS:91}});c.fn.extend({_focus:c.fn.focus,focus:function(a,b){return typeof a==="number"?this.each(function(){var d=this;setTimeout(function(){c(d).focus();b&&b.call(d)},a)}):this._focus.apply(this,arguments)},scrollParent:function(){var a;a=c.browser.msie&&/(static|relative)/.test(this.css("position"))||/absolute/.test(this.css("position"))?this.parents().filter(function(){return/(relative|absolute|fixed)/.test(c.curCSS(this, +"position",1))&&/(auto|scroll)/.test(c.curCSS(this,"overflow",1)+c.curCSS(this,"overflow-y",1)+c.curCSS(this,"overflow-x",1))}).eq(0):this.parents().filter(function(){return/(auto|scroll)/.test(c.curCSS(this,"overflow",1)+c.curCSS(this,"overflow-y",1)+c.curCSS(this,"overflow-x",1))}).eq(0);return/fixed/.test(this.css("position"))||!a.length?c(document):a},zIndex:function(a){if(a!==j)return this.css("zIndex",a);if(this.length){a=c(this[0]);for(var b;a.length&&a[0]!==document;){b=a.css("position"); +if(b==="absolute"||b==="relative"||b==="fixed"){b=parseInt(a.css("zIndex"),10);if(!isNaN(b)&&b!==0)return b}a=a.parent()}}return 0},disableSelection:function(){return this.bind((c.support.selectstart?"selectstart":"mousedown")+".ui-disableSelection",function(a){a.preventDefault()})},enableSelection:function(){return this.unbind(".ui-disableSelection")}});c.each(["Width","Height"],function(a,b){function d(f,g,l,m){c.each(e,function(){g-=parseFloat(c.curCSS(f,"padding"+this,true))||0;if(l)g-=parseFloat(c.curCSS(f, +"border"+this+"Width",true))||0;if(m)g-=parseFloat(c.curCSS(f,"margin"+this,true))||0});return g}var e=b==="Width"?["Left","Right"]:["Top","Bottom"],h=b.toLowerCase(),i={innerWidth:c.fn.innerWidth,innerHeight:c.fn.innerHeight,outerWidth:c.fn.outerWidth,outerHeight:c.fn.outerHeight};c.fn["inner"+b]=function(f){if(f===j)return i["inner"+b].call(this);return this.each(function(){c(this).css(h,d(this,f)+"px")})};c.fn["outer"+b]=function(f,g){if(typeof f!=="number")return i["outer"+b].call(this,f);return this.each(function(){c(this).css(h, +d(this,f,true,g)+"px")})}});c.extend(c.expr[":"],{data:function(a,b,d){return!!c.data(a,d[3])},focusable:function(a){var b=a.nodeName.toLowerCase(),d=c.attr(a,"tabindex");if("area"===b){b=a.parentNode;d=b.name;if(!a.href||!d||b.nodeName.toLowerCase()!=="map")return false;a=c("img[usemap=#"+d+"]")[0];return!!a&&k(a)}return(/input|select|textarea|button|object/.test(b)?!a.disabled:"a"==b?a.href||!isNaN(d):!isNaN(d))&&k(a)},tabbable:function(a){var b=c.attr(a,"tabindex");return(isNaN(b)||b>=0)&&c(a).is(":focusable")}}); +c(function(){var a=document.body,b=a.appendChild(b=document.createElement("div"));c.extend(b.style,{minHeight:"100px",height:"auto",padding:0,borderWidth:0});c.support.minHeight=b.offsetHeight===100;c.support.selectstart="onselectstart"in b;a.removeChild(b).style.display="none"});c.extend(c.ui,{plugin:{add:function(a,b,d){a=c.ui[a].prototype;for(var e in d){a.plugins[e]=a.plugins[e]||[];a.plugins[e].push([b,d[e]])}},call:function(a,b,d){if((b=a.plugins[b])&&a.element[0].parentNode)for(var e=0;e0)return true;a[b]=1;d=a[b]>0;a[b]=0;return d},isOverAxis:function(a,b,d){return a>b&&a=9)&&!a.button)return this._mouseUp(a);if(this._mouseStarted){this._mouseDrag(a); +return a.preventDefault()}if(this._mouseDistanceMet(a)&&this._mouseDelayMet(a))(this._mouseStarted=this._mouseStart(this._mouseDownEvent,a)!==false)?this._mouseDrag(a):this._mouseUp(a);return!this._mouseStarted},_mouseUp:function(a){c(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate);if(this._mouseStarted){this._mouseStarted=false;a.target==this._mouseDownEvent.target&&c.data(a.target,this.widgetName+".preventClickEvent", +true);this._mouseStop(a)}return false},_mouseDistanceMet:function(a){return Math.max(Math.abs(this._mouseDownEvent.pageX-a.pageX),Math.abs(this._mouseDownEvent.pageY-a.pageY))>=this.options.distance},_mouseDelayMet:function(){return this.mouseDelayMet},_mouseStart:function(){},_mouseDrag:function(){},_mouseStop:function(){},_mouseCapture:function(){return true}})})(jQuery); +;/* + * jQuery UI Position 1.8.10 + * + * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT or GPL Version 2 licenses. + * http://jquery.org/license + * + * http://docs.jquery.com/UI/Position + */ +(function(c){c.ui=c.ui||{};var n=/left|center|right/,o=/top|center|bottom/,t=c.fn.position,u=c.fn.offset;c.fn.position=function(b){if(!b||!b.of)return t.apply(this,arguments);b=c.extend({},b);var a=c(b.of),d=a[0],g=(b.collision||"flip").split(" "),e=b.offset?b.offset.split(" "):[0,0],h,k,j;if(d.nodeType===9){h=a.width();k=a.height();j={top:0,left:0}}else if(d.setTimeout){h=a.width();k=a.height();j={top:a.scrollTop(),left:a.scrollLeft()}}else if(d.preventDefault){b.at="left top";h=k=0;j={top:b.of.pageY, +left:b.of.pageX}}else{h=a.outerWidth();k=a.outerHeight();j=a.offset()}c.each(["my","at"],function(){var f=(b[this]||"").split(" ");if(f.length===1)f=n.test(f[0])?f.concat(["center"]):o.test(f[0])?["center"].concat(f):["center","center"];f[0]=n.test(f[0])?f[0]:"center";f[1]=o.test(f[1])?f[1]:"center";b[this]=f});if(g.length===1)g[1]=g[0];e[0]=parseInt(e[0],10)||0;if(e.length===1)e[1]=e[0];e[1]=parseInt(e[1],10)||0;if(b.at[0]==="right")j.left+=h;else if(b.at[0]==="center")j.left+=h/2;if(b.at[1]==="bottom")j.top+= +k;else if(b.at[1]==="center")j.top+=k/2;j.left+=e[0];j.top+=e[1];return this.each(function(){var f=c(this),l=f.outerWidth(),m=f.outerHeight(),p=parseInt(c.curCSS(this,"marginLeft",true))||0,q=parseInt(c.curCSS(this,"marginTop",true))||0,v=l+p+(parseInt(c.curCSS(this,"marginRight",true))||0),w=m+q+(parseInt(c.curCSS(this,"marginBottom",true))||0),i=c.extend({},j),r;if(b.my[0]==="right")i.left-=l;else if(b.my[0]==="center")i.left-=l/2;if(b.my[1]==="bottom")i.top-=m;else if(b.my[1]==="center")i.top-= +m/2;i.left=Math.round(i.left);i.top=Math.round(i.top);r={left:i.left-p,top:i.top-q};c.each(["left","top"],function(s,x){c.ui.position[g[s]]&&c.ui.position[g[s]][x](i,{targetWidth:h,targetHeight:k,elemWidth:l,elemHeight:m,collisionPosition:r,collisionWidth:v,collisionHeight:w,offset:e,my:b.my,at:b.at})});c.fn.bgiframe&&f.bgiframe();f.offset(c.extend(i,{using:b.using}))})};c.ui.position={fit:{left:function(b,a){var d=c(window);d=a.collisionPosition.left+a.collisionWidth-d.width()-d.scrollLeft();b.left= +d>0?b.left-d:Math.max(b.left-a.collisionPosition.left,b.left)},top:function(b,a){var d=c(window);d=a.collisionPosition.top+a.collisionHeight-d.height()-d.scrollTop();b.top=d>0?b.top-d:Math.max(b.top-a.collisionPosition.top,b.top)}},flip:{left:function(b,a){if(a.at[0]!=="center"){var d=c(window);d=a.collisionPosition.left+a.collisionWidth-d.width()-d.scrollLeft();var g=a.my[0]==="left"?-a.elemWidth:a.my[0]==="right"?a.elemWidth:0,e=a.at[0]==="left"?a.targetWidth:-a.targetWidth,h=-2*a.offset[0];b.left+= +a.collisionPosition.left<0?g+e+h:d>0?g+e+h:0}},top:function(b,a){if(a.at[1]!=="center"){var d=c(window);d=a.collisionPosition.top+a.collisionHeight-d.height()-d.scrollTop();var g=a.my[1]==="top"?-a.elemHeight:a.my[1]==="bottom"?a.elemHeight:0,e=a.at[1]==="top"?a.targetHeight:-a.targetHeight,h=-2*a.offset[1];b.top+=a.collisionPosition.top<0?g+e+h:d>0?g+e+h:0}}}};if(!c.offset.setOffset){c.offset.setOffset=function(b,a){if(/static/.test(c.curCSS(b,"position")))b.style.position="relative";var d=c(b), +g=d.offset(),e=parseInt(c.curCSS(b,"top",true),10)||0,h=parseInt(c.curCSS(b,"left",true),10)||0;g={top:a.top-g.top+e,left:a.left-g.left+h};"using"in a?a.using.call(b,g):d.css(g)};c.fn.offset=function(b){var a=this[0];if(!a||!a.ownerDocument)return null;if(b)return this.each(function(){c.offset.setOffset(this,b)});return u.call(this)}}})(jQuery); +;/* + * jQuery UI Draggable 1.8.10 + * + * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT or GPL Version 2 licenses. + * http://jquery.org/license + * + * http://docs.jquery.com/UI/Draggables + * + * Depends: + * jquery.ui.core.js + * jquery.ui.mouse.js + * jquery.ui.widget.js + */ +(function(d){d.widget("ui.draggable",d.ui.mouse,{widgetEventPrefix:"drag",options:{addClasses:true,appendTo:"parent",axis:false,connectToSortable:false,containment:false,cursor:"auto",cursorAt:false,grid:false,handle:false,helper:"original",iframeFix:false,opacity:false,refreshPositions:false,revert:false,revertDuration:500,scope:"default",scroll:true,scrollSensitivity:20,scrollSpeed:20,snap:false,snapMode:"both",snapTolerance:20,stack:false,zIndex:false},_create:function(){if(this.options.helper== +"original"&&!/^(?:r|a|f)/.test(this.element.css("position")))this.element[0].style.position="relative";this.options.addClasses&&this.element.addClass("ui-draggable");this.options.disabled&&this.element.addClass("ui-draggable-disabled");this._mouseInit()},destroy:function(){if(this.element.data("draggable")){this.element.removeData("draggable").unbind(".draggable").removeClass("ui-draggable ui-draggable-dragging ui-draggable-disabled");this._mouseDestroy();return this}},_mouseCapture:function(a){var b= +this.options;if(this.helper||b.disabled||d(a.target).is(".ui-resizable-handle"))return false;this.handle=this._getHandle(a);if(!this.handle)return false;return true},_mouseStart:function(a){var b=this.options;this.helper=this._createHelper(a);this._cacheHelperProportions();if(d.ui.ddmanager)d.ui.ddmanager.current=this;this._cacheMargins();this.cssPosition=this.helper.css("position");this.scrollParent=this.helper.scrollParent();this.offset=this.positionAbs=this.element.offset();this.offset={top:this.offset.top- +this.margins.top,left:this.offset.left-this.margins.left};d.extend(this.offset,{click:{left:a.pageX-this.offset.left,top:a.pageY-this.offset.top},parent:this._getParentOffset(),relative:this._getRelativeOffset()});this.originalPosition=this.position=this._generatePosition(a);this.originalPageX=a.pageX;this.originalPageY=a.pageY;b.cursorAt&&this._adjustOffsetFromHelper(b.cursorAt);b.containment&&this._setContainment();if(this._trigger("start",a)===false){this._clear();return false}this._cacheHelperProportions(); +d.ui.ddmanager&&!b.dropBehaviour&&d.ui.ddmanager.prepareOffsets(this,a);this.helper.addClass("ui-draggable-dragging");this._mouseDrag(a,true);return true},_mouseDrag:function(a,b){this.position=this._generatePosition(a);this.positionAbs=this._convertPositionTo("absolute");if(!b){b=this._uiHash();if(this._trigger("drag",a,b)===false){this._mouseUp({});return false}this.position=b.position}if(!this.options.axis||this.options.axis!="y")this.helper[0].style.left=this.position.left+"px";if(!this.options.axis|| +this.options.axis!="x")this.helper[0].style.top=this.position.top+"px";d.ui.ddmanager&&d.ui.ddmanager.drag(this,a);return false},_mouseStop:function(a){var b=false;if(d.ui.ddmanager&&!this.options.dropBehaviour)b=d.ui.ddmanager.drop(this,a);if(this.dropped){b=this.dropped;this.dropped=false}if((!this.element[0]||!this.element[0].parentNode)&&this.options.helper=="original")return false;if(this.options.revert=="invalid"&&!b||this.options.revert=="valid"&&b||this.options.revert===true||d.isFunction(this.options.revert)&& +this.options.revert.call(this.element,b)){var c=this;d(this.helper).animate(this.originalPosition,parseInt(this.options.revertDuration,10),function(){c._trigger("stop",a)!==false&&c._clear()})}else this._trigger("stop",a)!==false&&this._clear();return false},cancel:function(){this.helper.is(".ui-draggable-dragging")?this._mouseUp({}):this._clear();return this},_getHandle:function(a){var b=!this.options.handle||!d(this.options.handle,this.element).length?true:false;d(this.options.handle,this.element).find("*").andSelf().each(function(){if(this== +a.target)b=true});return b},_createHelper:function(a){var b=this.options;a=d.isFunction(b.helper)?d(b.helper.apply(this.element[0],[a])):b.helper=="clone"?this.element.clone():this.element;a.parents("body").length||a.appendTo(b.appendTo=="parent"?this.element[0].parentNode:b.appendTo);a[0]!=this.element[0]&&!/(fixed|absolute)/.test(a.css("position"))&&a.css("position","absolute");return a},_adjustOffsetFromHelper:function(a){if(typeof a=="string")a=a.split(" ");if(d.isArray(a))a={left:+a[0],top:+a[1]|| +0};if("left"in a)this.offset.click.left=a.left+this.margins.left;if("right"in a)this.offset.click.left=this.helperProportions.width-a.right+this.margins.left;if("top"in a)this.offset.click.top=a.top+this.margins.top;if("bottom"in a)this.offset.click.top=this.helperProportions.height-a.bottom+this.margins.top},_getParentOffset:function(){this.offsetParent=this.helper.offsetParent();var a=this.offsetParent.offset();if(this.cssPosition=="absolute"&&this.scrollParent[0]!=document&&d.ui.contains(this.scrollParent[0], +this.offsetParent[0])){a.left+=this.scrollParent.scrollLeft();a.top+=this.scrollParent.scrollTop()}if(this.offsetParent[0]==document.body||this.offsetParent[0].tagName&&this.offsetParent[0].tagName.toLowerCase()=="html"&&d.browser.msie)a={top:0,left:0};return{top:a.top+(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:a.left+(parseInt(this.offsetParent.css("borderLeftWidth"),10)||0)}},_getRelativeOffset:function(){if(this.cssPosition=="relative"){var a=this.element.position();return{top:a.top- +(parseInt(this.helper.css("top"),10)||0)+this.scrollParent.scrollTop(),left:a.left-(parseInt(this.helper.css("left"),10)||0)+this.scrollParent.scrollLeft()}}else return{top:0,left:0}},_cacheMargins:function(){this.margins={left:parseInt(this.element.css("marginLeft"),10)||0,top:parseInt(this.element.css("marginTop"),10)||0}},_cacheHelperProportions:function(){this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()}},_setContainment:function(){var a=this.options;if(a.containment== +"parent")a.containment=this.helper[0].parentNode;if(a.containment=="document"||a.containment=="window")this.containment=[(a.containment=="document"?0:d(window).scrollLeft())-this.offset.relative.left-this.offset.parent.left,(a.containment=="document"?0:d(window).scrollTop())-this.offset.relative.top-this.offset.parent.top,(a.containment=="document"?0:d(window).scrollLeft())+d(a.containment=="document"?document:window).width()-this.helperProportions.width-this.margins.left,(a.containment=="document"? +0:d(window).scrollTop())+(d(a.containment=="document"?document:window).height()||document.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top];if(!/^(document|window|parent)$/.test(a.containment)&&a.containment.constructor!=Array){var b=d(a.containment)[0];if(b){a=d(a.containment).offset();var c=d(b).css("overflow")!="hidden";this.containment=[a.left+(parseInt(d(b).css("borderLeftWidth"),10)||0)+(parseInt(d(b).css("paddingLeft"),10)||0)-this.margins.left,a.top+(parseInt(d(b).css("borderTopWidth"), +10)||0)+(parseInt(d(b).css("paddingTop"),10)||0)-this.margins.top,a.left+(c?Math.max(b.scrollWidth,b.offsetWidth):b.offsetWidth)-(parseInt(d(b).css("borderLeftWidth"),10)||0)-(parseInt(d(b).css("paddingRight"),10)||0)-this.helperProportions.width-this.margins.left,a.top+(c?Math.max(b.scrollHeight,b.offsetHeight):b.offsetHeight)-(parseInt(d(b).css("borderTopWidth"),10)||0)-(parseInt(d(b).css("paddingBottom"),10)||0)-this.helperProportions.height-this.margins.top]}}else if(a.containment.constructor== +Array)this.containment=a.containment},_convertPositionTo:function(a,b){if(!b)b=this.position;a=a=="absolute"?1:-1;var c=this.cssPosition=="absolute"&&!(this.scrollParent[0]!=document&&d.ui.contains(this.scrollParent[0],this.offsetParent[0]))?this.offsetParent:this.scrollParent,f=/(html|body)/i.test(c[0].tagName);return{top:b.top+this.offset.relative.top*a+this.offset.parent.top*a-(d.browser.safari&&d.browser.version<526&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollTop(): +f?0:c.scrollTop())*a),left:b.left+this.offset.relative.left*a+this.offset.parent.left*a-(d.browser.safari&&d.browser.version<526&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():f?0:c.scrollLeft())*a)}},_generatePosition:function(a){var b=this.options,c=this.cssPosition=="absolute"&&!(this.scrollParent[0]!=document&&d.ui.contains(this.scrollParent[0],this.offsetParent[0]))?this.offsetParent:this.scrollParent,f=/(html|body)/i.test(c[0].tagName),e=a.pageX,g=a.pageY; +if(this.originalPosition){if(this.containment){if(a.pageX-this.offset.click.leftthis.containment[2])e=this.containment[2]+this.offset.click.left;if(a.pageY-this.offset.click.top>this.containment[3])g=this.containment[3]+this.offset.click.top}if(b.grid){g=this.originalPageY+Math.round((g-this.originalPageY)/ +b.grid[1])*b.grid[1];g=this.containment?!(g-this.offset.click.topthis.containment[3])?g:!(g-this.offset.click.topthis.containment[2])?e:!(e-this.offset.click.left
    ').css({width:this.offsetWidth+"px",height:this.offsetHeight+"px",position:"absolute",opacity:"0.001",zIndex:1E3}).css(d(this).offset()).appendTo("body")})}, +stop:function(){d("div.ui-draggable-iframeFix").each(function(){this.parentNode.removeChild(this)})}});d.ui.plugin.add("draggable","opacity",{start:function(a,b){a=d(b.helper);b=d(this).data("draggable").options;if(a.css("opacity"))b._opacity=a.css("opacity");a.css("opacity",b.opacity)},stop:function(a,b){a=d(this).data("draggable").options;a._opacity&&d(b.helper).css("opacity",a._opacity)}});d.ui.plugin.add("draggable","scroll",{start:function(){var a=d(this).data("draggable");if(a.scrollParent[0]!= +document&&a.scrollParent[0].tagName!="HTML")a.overflowOffset=a.scrollParent.offset()},drag:function(a){var b=d(this).data("draggable"),c=b.options,f=false;if(b.scrollParent[0]!=document&&b.scrollParent[0].tagName!="HTML"){if(!c.axis||c.axis!="x")if(b.overflowOffset.top+b.scrollParent[0].offsetHeight-a.pageY=0;h--){var i=c.snapElements[h].left,k=i+c.snapElements[h].width,j=c.snapElements[h].top,l=j+c.snapElements[h].height;if(i-e').css({position:this.element.css("position"),width:this.element.outerWidth(),height:this.element.outerHeight(), +top:this.element.css("top"),left:this.element.css("left")}));this.element=this.element.parent().data("resizable",this.element.data("resizable"));this.elementIsWrapper=true;this.element.css({marginLeft:this.originalElement.css("marginLeft"),marginTop:this.originalElement.css("marginTop"),marginRight:this.originalElement.css("marginRight"),marginBottom:this.originalElement.css("marginBottom")});this.originalElement.css({marginLeft:0,marginTop:0,marginRight:0,marginBottom:0});this.originalResizeStyle= +this.originalElement.css("resize");this.originalElement.css("resize","none");this._proportionallyResizeElements.push(this.originalElement.css({position:"static",zoom:1,display:"block"}));this.originalElement.css({margin:this.originalElement.css("margin")});this._proportionallyResize()}this.handles=a.handles||(!e(".ui-resizable-handle",this.element).length?"e,s,se":{n:".ui-resizable-n",e:".ui-resizable-e",s:".ui-resizable-s",w:".ui-resizable-w",se:".ui-resizable-se",sw:".ui-resizable-sw",ne:".ui-resizable-ne", +nw:".ui-resizable-nw"});if(this.handles.constructor==String){if(this.handles=="all")this.handles="n,e,s,w,se,sw,ne,nw";var c=this.handles.split(",");this.handles={};for(var d=0;d');/sw|se|ne|nw/.test(f)&&g.css({zIndex:++a.zIndex});"se"==f&&g.addClass("ui-icon ui-icon-gripsmall-diagonal-se");this.handles[f]=".ui-resizable-"+f;this.element.append(g)}}this._renderAxis=function(h){h=h||this.element;for(var i in this.handles){if(this.handles[i].constructor== +String)this.handles[i]=e(this.handles[i],this.element).show();if(this.elementIsWrapper&&this.originalElement[0].nodeName.match(/textarea|input|select|button/i)){var j=e(this.handles[i],this.element),k=0;k=/sw|ne|nw|se|n|s/.test(i)?j.outerHeight():j.outerWidth();j=["padding",/ne|nw|n/.test(i)?"Top":/se|sw|s/.test(i)?"Bottom":/^e$/.test(i)?"Right":"Left"].join("");h.css(j,k);this._proportionallyResize()}e(this.handles[i])}};this._renderAxis(this.element);this._handles=e(".ui-resizable-handle",this.element).disableSelection(); +this._handles.mouseover(function(){if(!b.resizing){if(this.className)var h=this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i);b.axis=h&&h[1]?h[1]:"se"}});if(a.autoHide){this._handles.hide();e(this.element).addClass("ui-resizable-autohide").hover(function(){e(this).removeClass("ui-resizable-autohide");b._handles.show()},function(){if(!b.resizing){e(this).addClass("ui-resizable-autohide");b._handles.hide()}})}this._mouseInit()},destroy:function(){this._mouseDestroy();var b=function(c){e(c).removeClass("ui-resizable ui-resizable-disabled ui-resizable-resizing").removeData("resizable").unbind(".resizable").find(".ui-resizable-handle").remove()}; +if(this.elementIsWrapper){b(this.element);var a=this.element;a.after(this.originalElement.css({position:a.css("position"),width:a.outerWidth(),height:a.outerHeight(),top:a.css("top"),left:a.css("left")})).remove()}this.originalElement.css("resize",this.originalResizeStyle);b(this.originalElement);return this},_mouseCapture:function(b){var a=false;for(var c in this.handles)if(e(this.handles[c])[0]==b.target)a=true;return!this.options.disabled&&a},_mouseStart:function(b){var a=this.options,c=this.element.position(), +d=this.element;this.resizing=true;this.documentScroll={top:e(document).scrollTop(),left:e(document).scrollLeft()};if(d.is(".ui-draggable")||/absolute/.test(d.css("position")))d.css({position:"absolute",top:c.top,left:c.left});e.browser.opera&&/relative/.test(d.css("position"))&&d.css({position:"relative",top:"auto",left:"auto"});this._renderProxy();c=m(this.helper.css("left"));var f=m(this.helper.css("top"));if(a.containment){c+=e(a.containment).scrollLeft()||0;f+=e(a.containment).scrollTop()||0}this.offset= +this.helper.offset();this.position={left:c,top:f};this.size=this._helper?{width:d.outerWidth(),height:d.outerHeight()}:{width:d.width(),height:d.height()};this.originalSize=this._helper?{width:d.outerWidth(),height:d.outerHeight()}:{width:d.width(),height:d.height()};this.originalPosition={left:c,top:f};this.sizeDiff={width:d.outerWidth()-d.width(),height:d.outerHeight()-d.height()};this.originalMousePosition={left:b.pageX,top:b.pageY};this.aspectRatio=typeof a.aspectRatio=="number"?a.aspectRatio: +this.originalSize.width/this.originalSize.height||1;a=e(".ui-resizable-"+this.axis).css("cursor");e("body").css("cursor",a=="auto"?this.axis+"-resize":a);d.addClass("ui-resizable-resizing");this._propagate("start",b);return true},_mouseDrag:function(b){var a=this.helper,c=this.originalMousePosition,d=this._change[this.axis];if(!d)return false;c=d.apply(this,[b,b.pageX-c.left||0,b.pageY-c.top||0]);if(this._aspectRatio||b.shiftKey)c=this._updateRatio(c,b);c=this._respectSize(c,b);this._propagate("resize", +b);a.css({top:this.position.top+"px",left:this.position.left+"px",width:this.size.width+"px",height:this.size.height+"px"});!this._helper&&this._proportionallyResizeElements.length&&this._proportionallyResize();this._updateCache(c);this._trigger("resize",b,this.ui());return false},_mouseStop:function(b){this.resizing=false;var a=this.options,c=this;if(this._helper){var d=this._proportionallyResizeElements,f=d.length&&/textarea/i.test(d[0].nodeName);d=f&&e.ui.hasScroll(d[0],"left")?0:c.sizeDiff.height; +f=f?0:c.sizeDiff.width;f={width:c.helper.width()-f,height:c.helper.height()-d};d=parseInt(c.element.css("left"),10)+(c.position.left-c.originalPosition.left)||null;var g=parseInt(c.element.css("top"),10)+(c.position.top-c.originalPosition.top)||null;a.animate||this.element.css(e.extend(f,{top:g,left:d}));c.helper.height(c.size.height);c.helper.width(c.size.width);this._helper&&!a.animate&&this._proportionallyResize()}e("body").css("cursor","auto");this.element.removeClass("ui-resizable-resizing"); +this._propagate("stop",b);this._helper&&this.helper.remove();return false},_updateCache:function(b){this.offset=this.helper.offset();if(l(b.left))this.position.left=b.left;if(l(b.top))this.position.top=b.top;if(l(b.height))this.size.height=b.height;if(l(b.width))this.size.width=b.width},_updateRatio:function(b){var a=this.position,c=this.size,d=this.axis;if(b.height)b.width=c.height*this.aspectRatio;else if(b.width)b.height=c.width/this.aspectRatio;if(d=="sw"){b.left=a.left+(c.width-b.width);b.top= +null}if(d=="nw"){b.top=a.top+(c.height-b.height);b.left=a.left+(c.width-b.width)}return b},_respectSize:function(b){var a=this.options,c=this.axis,d=l(b.width)&&a.maxWidth&&a.maxWidthb.width,h=l(b.height)&&a.minHeight&&a.minHeight>b.height;if(g)b.width=a.minWidth;if(h)b.height=a.minHeight;if(d)b.width=a.maxWidth;if(f)b.height=a.maxHeight;var i=this.originalPosition.left+this.originalSize.width,j=this.position.top+ +this.size.height,k=/sw|nw|w/.test(c);c=/nw|ne|n/.test(c);if(g&&k)b.left=i-a.minWidth;if(d&&k)b.left=i-a.maxWidth;if(h&&c)b.top=j-a.minHeight;if(f&&c)b.top=j-a.maxHeight;if((a=!b.width&&!b.height)&&!b.left&&b.top)b.top=null;else if(a&&!b.top&&b.left)b.left=null;return b},_proportionallyResize:function(){if(this._proportionallyResizeElements.length)for(var b=this.helper||this.element,a=0;a');var a=e.browser.msie&&e.browser.version<7,c=a?1:0;a=a?2:-1;this.helper.addClass(this._helper).css({width:this.element.outerWidth()+a,height:this.element.outerHeight()+a,position:"absolute",left:this.elementOffset.left-c+"px",top:this.elementOffset.top-c+"px",zIndex:++b.zIndex});this.helper.appendTo("body").disableSelection()}else this.helper=this.element},_change:{e:function(b, +a){return{width:this.originalSize.width+a}},w:function(b,a){return{left:this.originalPosition.left+a,width:this.originalSize.width-a}},n:function(b,a,c){return{top:this.originalPosition.top+c,height:this.originalSize.height-c}},s:function(b,a,c){return{height:this.originalSize.height+c}},se:function(b,a,c){return e.extend(this._change.s.apply(this,arguments),this._change.e.apply(this,[b,a,c]))},sw:function(b,a,c){return e.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[b,a, +c]))},ne:function(b,a,c){return e.extend(this._change.n.apply(this,arguments),this._change.e.apply(this,[b,a,c]))},nw:function(b,a,c){return e.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[b,a,c]))}},_propagate:function(b,a){e.ui.plugin.call(this,b,[a,this.ui()]);b!="resize"&&this._trigger(b,a,this.ui())},plugins:{},ui:function(){return{originalElement:this.originalElement,element:this.element,helper:this.helper,position:this.position,size:this.size,originalSize:this.originalSize, +originalPosition:this.originalPosition}}});e.extend(e.ui.resizable,{version:"1.8.10"});e.ui.plugin.add("resizable","alsoResize",{start:function(){var b=e(this).data("resizable").options,a=function(c){e(c).each(function(){var d=e(this);d.data("resizable-alsoresize",{width:parseInt(d.width(),10),height:parseInt(d.height(),10),left:parseInt(d.css("left"),10),top:parseInt(d.css("top"),10),position:d.css("position")})})};if(typeof b.alsoResize=="object"&&!b.alsoResize.parentNode)if(b.alsoResize.length){b.alsoResize= +b.alsoResize[0];a(b.alsoResize)}else e.each(b.alsoResize,function(c){a(c)});else a(b.alsoResize)},resize:function(b,a){var c=e(this).data("resizable");b=c.options;var d=c.originalSize,f=c.originalPosition,g={height:c.size.height-d.height||0,width:c.size.width-d.width||0,top:c.position.top-f.top||0,left:c.position.left-f.left||0},h=function(i,j){e(i).each(function(){var k=e(this),q=e(this).data("resizable-alsoresize"),p={},r=j&&j.length?j:k.parents(a.originalElement[0]).length?["width","height"]:["width", +"height","top","left"];e.each(r,function(n,o){if((n=(q[o]||0)+(g[o]||0))&&n>=0)p[o]=n||null});if(e.browser.opera&&/relative/.test(k.css("position"))){c._revertToRelativePosition=true;k.css({position:"absolute",top:"auto",left:"auto"})}k.css(p)})};typeof b.alsoResize=="object"&&!b.alsoResize.nodeType?e.each(b.alsoResize,function(i,j){h(i,j)}):h(b.alsoResize)},stop:function(){var b=e(this).data("resizable"),a=b.options,c=function(d){e(d).each(function(){var f=e(this);f.css({position:f.data("resizable-alsoresize").position})})}; +if(b._revertToRelativePosition){b._revertToRelativePosition=false;typeof a.alsoResize=="object"&&!a.alsoResize.nodeType?e.each(a.alsoResize,function(d){c(d)}):c(a.alsoResize)}e(this).removeData("resizable-alsoresize")}});e.ui.plugin.add("resizable","animate",{stop:function(b){var a=e(this).data("resizable"),c=a.options,d=a._proportionallyResizeElements,f=d.length&&/textarea/i.test(d[0].nodeName),g=f&&e.ui.hasScroll(d[0],"left")?0:a.sizeDiff.height;f={width:a.size.width-(f?0:a.sizeDiff.width),height:a.size.height- +g};g=parseInt(a.element.css("left"),10)+(a.position.left-a.originalPosition.left)||null;var h=parseInt(a.element.css("top"),10)+(a.position.top-a.originalPosition.top)||null;a.element.animate(e.extend(f,h&&g?{top:h,left:g}:{}),{duration:c.animateDuration,easing:c.animateEasing,step:function(){var i={width:parseInt(a.element.css("width"),10),height:parseInt(a.element.css("height"),10),top:parseInt(a.element.css("top"),10),left:parseInt(a.element.css("left"),10)};d&&d.length&&e(d[0]).css({width:i.width, +height:i.height});a._updateCache(i);a._propagate("resize",b)}})}});e.ui.plugin.add("resizable","containment",{start:function(){var b=e(this).data("resizable"),a=b.element,c=b.options.containment;if(a=c instanceof e?c.get(0):/parent/.test(c)?a.parent().get(0):c){b.containerElement=e(a);if(/document/.test(c)||c==document){b.containerOffset={left:0,top:0};b.containerPosition={left:0,top:0};b.parentData={element:e(document),left:0,top:0,width:e(document).width(),height:e(document).height()||document.body.parentNode.scrollHeight}}else{var d= +e(a),f=[];e(["Top","Right","Left","Bottom"]).each(function(i,j){f[i]=m(d.css("padding"+j))});b.containerOffset=d.offset();b.containerPosition=d.position();b.containerSize={height:d.innerHeight()-f[3],width:d.innerWidth()-f[1]};c=b.containerOffset;var g=b.containerSize.height,h=b.containerSize.width;h=e.ui.hasScroll(a,"left")?a.scrollWidth:h;g=e.ui.hasScroll(a)?a.scrollHeight:g;b.parentData={element:a,left:c.left,top:c.top,width:h,height:g}}}},resize:function(b){var a=e(this).data("resizable"),c=a.options, +d=a.containerOffset,f=a.position;b=a._aspectRatio||b.shiftKey;var g={top:0,left:0},h=a.containerElement;if(h[0]!=document&&/static/.test(h.css("position")))g=d;if(f.left<(a._helper?d.left:0)){a.size.width+=a._helper?a.position.left-d.left:a.position.left-g.left;if(b)a.size.height=a.size.width/c.aspectRatio;a.position.left=c.helper?d.left:0}if(f.top<(a._helper?d.top:0)){a.size.height+=a._helper?a.position.top-d.top:a.position.top;if(b)a.size.width=a.size.height*c.aspectRatio;a.position.top=a._helper? +d.top:0}a.offset.left=a.parentData.left+a.position.left;a.offset.top=a.parentData.top+a.position.top;c=Math.abs((a._helper?a.offset.left-g.left:a.offset.left-g.left)+a.sizeDiff.width);d=Math.abs((a._helper?a.offset.top-g.top:a.offset.top-d.top)+a.sizeDiff.height);f=a.containerElement.get(0)==a.element.parent().get(0);g=/relative|absolute/.test(a.containerElement.css("position"));if(f&&g)c-=a.parentData.left;if(c+a.size.width>=a.parentData.width){a.size.width=a.parentData.width-c;if(b)a.size.height= +a.size.width/a.aspectRatio}if(d+a.size.height>=a.parentData.height){a.size.height=a.parentData.height-d;if(b)a.size.width=a.size.height*a.aspectRatio}},stop:function(){var b=e(this).data("resizable"),a=b.options,c=b.containerOffset,d=b.containerPosition,f=b.containerElement,g=e(b.helper),h=g.offset(),i=g.outerWidth()-b.sizeDiff.width;g=g.outerHeight()-b.sizeDiff.height;b._helper&&!a.animate&&/relative/.test(f.css("position"))&&e(this).css({left:h.left-d.left-c.left,width:i,height:g});b._helper&&!a.animate&& +/static/.test(f.css("position"))&&e(this).css({left:h.left-d.left-c.left,width:i,height:g})}});e.ui.plugin.add("resizable","ghost",{start:function(){var b=e(this).data("resizable"),a=b.options,c=b.size;b.ghost=b.originalElement.clone();b.ghost.css({opacity:0.25,display:"block",position:"relative",height:c.height,width:c.width,margin:0,left:0,top:0}).addClass("ui-resizable-ghost").addClass(typeof a.ghost=="string"?a.ghost:"");b.ghost.appendTo(b.helper)},resize:function(){var b=e(this).data("resizable"); +b.ghost&&b.ghost.css({position:"relative",height:b.size.height,width:b.size.width})},stop:function(){var b=e(this).data("resizable");b.ghost&&b.helper&&b.helper.get(0).removeChild(b.ghost.get(0))}});e.ui.plugin.add("resizable","grid",{resize:function(){var b=e(this).data("resizable"),a=b.options,c=b.size,d=b.originalSize,f=b.originalPosition,g=b.axis;a.grid=typeof a.grid=="number"?[a.grid,a.grid]:a.grid;var h=Math.round((c.width-d.width)/(a.grid[0]||1))*(a.grid[0]||1);a=Math.round((c.height-d.height)/ +(a.grid[1]||1))*(a.grid[1]||1);if(/^(se|s|e)$/.test(g)){b.size.width=d.width+h;b.size.height=d.height+a}else if(/^(ne)$/.test(g)){b.size.width=d.width+h;b.size.height=d.height+a;b.position.top=f.top-a}else{if(/^(sw)$/.test(g)){b.size.width=d.width+h;b.size.height=d.height+a}else{b.size.width=d.width+h;b.size.height=d.height+a;b.position.top=f.top-a}b.position.left=f.left-h}}});var m=function(b){return parseInt(b,10)||0},l=function(b){return!isNaN(parseInt(b,10))}})(jQuery); +;/* + * jQuery UI Dialog 1.8.10 + * + * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT or GPL Version 2 licenses. + * http://jquery.org/license + * + * http://docs.jquery.com/UI/Dialog + * + * Depends: + * jquery.ui.core.js + * jquery.ui.widget.js + * jquery.ui.button.js + * jquery.ui.draggable.js + * jquery.ui.mouse.js + * jquery.ui.position.js + * jquery.ui.resizable.js + */ +(function(c,j){var k={buttons:true,height:true,maxHeight:true,maxWidth:true,minHeight:true,minWidth:true,width:true},l={maxHeight:true,maxWidth:true,minHeight:true,minWidth:true};c.widget("ui.dialog",{options:{autoOpen:true,buttons:{},closeOnEscape:true,closeText:"close",dialogClass:"",draggable:true,hide:null,height:"auto",maxHeight:false,maxWidth:false,minHeight:150,minWidth:150,modal:false,position:{my:"center",at:"center",collision:"fit",using:function(a){var b=c(this).css(a).offset().top;b<0&& +c(this).css("top",a.top-b)}},resizable:true,show:null,stack:true,title:"",width:300,zIndex:1E3},_create:function(){this.originalTitle=this.element.attr("title");if(typeof this.originalTitle!=="string")this.originalTitle="";this.options.title=this.options.title||this.originalTitle;var a=this,b=a.options,d=b.title||" ",e=c.ui.dialog.getTitleId(a.element),g=(a.uiDialog=c("
    ")).appendTo(document.body).hide().addClass("ui-dialog ui-widget ui-widget-content ui-corner-all "+b.dialogClass).css({zIndex:b.zIndex}).attr("tabIndex", +-1).css("outline",0).keydown(function(i){if(b.closeOnEscape&&i.keyCode&&i.keyCode===c.ui.keyCode.ESCAPE){a.close(i);i.preventDefault()}}).attr({role:"dialog","aria-labelledby":e}).mousedown(function(i){a.moveToTop(false,i)});a.element.show().removeAttr("title").addClass("ui-dialog-content ui-widget-content").appendTo(g);var f=(a.uiDialogTitlebar=c("
    ")).addClass("ui-dialog-titlebar ui-widget-header ui-corner-all ui-helper-clearfix").prependTo(g),h=c('').addClass("ui-dialog-titlebar-close ui-corner-all").attr("role", +"button").hover(function(){h.addClass("ui-state-hover")},function(){h.removeClass("ui-state-hover")}).focus(function(){h.addClass("ui-state-focus")}).blur(function(){h.removeClass("ui-state-focus")}).click(function(i){a.close(i);return false}).appendTo(f);(a.uiDialogTitlebarCloseText=c("")).addClass("ui-icon ui-icon-closethick").text(b.closeText).appendTo(h);c("").addClass("ui-dialog-title").attr("id",e).html(d).prependTo(f);if(c.isFunction(b.beforeclose)&&!c.isFunction(b.beforeClose))b.beforeClose= +b.beforeclose;f.find("*").add(f).disableSelection();b.draggable&&c.fn.draggable&&a._makeDraggable();b.resizable&&c.fn.resizable&&a._makeResizable();a._createButtons(b.buttons);a._isOpen=false;c.fn.bgiframe&&g.bgiframe()},_init:function(){this.options.autoOpen&&this.open()},destroy:function(){var a=this;a.overlay&&a.overlay.destroy();a.uiDialog.hide();a.element.unbind(".dialog").removeData("dialog").removeClass("ui-dialog-content ui-widget-content").hide().appendTo("body");a.uiDialog.remove();a.originalTitle&& +a.element.attr("title",a.originalTitle);return a},widget:function(){return this.uiDialog},close:function(a){var b=this,d,e;if(false!==b._trigger("beforeClose",a)){b.overlay&&b.overlay.destroy();b.uiDialog.unbind("keypress.ui-dialog");b._isOpen=false;if(b.options.hide)b.uiDialog.hide(b.options.hide,function(){b._trigger("close",a)});else{b.uiDialog.hide();b._trigger("close",a)}c.ui.dialog.overlay.resize();if(b.options.modal){d=0;c(".ui-dialog").each(function(){if(this!==b.uiDialog[0]){e=c(this).css("z-index"); +isNaN(e)||(d=Math.max(d,e))}});c.ui.dialog.maxZ=d}return b}},isOpen:function(){return this._isOpen},moveToTop:function(a,b){var d=this,e=d.options;if(e.modal&&!a||!e.stack&&!e.modal)return d._trigger("focus",b);if(e.zIndex>c.ui.dialog.maxZ)c.ui.dialog.maxZ=e.zIndex;if(d.overlay){c.ui.dialog.maxZ+=1;d.overlay.$el.css("z-index",c.ui.dialog.overlay.maxZ=c.ui.dialog.maxZ)}a={scrollTop:d.element.attr("scrollTop"),scrollLeft:d.element.attr("scrollLeft")};c.ui.dialog.maxZ+=1;d.uiDialog.css("z-index",c.ui.dialog.maxZ); +d.element.attr(a);d._trigger("focus",b);return d},open:function(){if(!this._isOpen){var a=this,b=a.options,d=a.uiDialog;a.overlay=b.modal?new c.ui.dialog.overlay(a):null;a._size();a._position(b.position);d.show(b.show);a.moveToTop(true);b.modal&&d.bind("keypress.ui-dialog",function(e){if(e.keyCode===c.ui.keyCode.TAB){var g=c(":tabbable",this),f=g.filter(":first");g=g.filter(":last");if(e.target===g[0]&&!e.shiftKey){f.focus(1);return false}else if(e.target===f[0]&&e.shiftKey){g.focus(1);return false}}}); +c(a.element.find(":tabbable").get().concat(d.find(".ui-dialog-buttonpane :tabbable").get().concat(d.get()))).eq(0).focus();a._isOpen=true;a._trigger("open");return a}},_createButtons:function(a){var b=this,d=false,e=c("
    ").addClass("ui-dialog-buttonpane ui-widget-content ui-helper-clearfix"),g=c("
    ").addClass("ui-dialog-buttonset").appendTo(e);b.uiDialog.find(".ui-dialog-buttonpane").remove();typeof a==="object"&&a!==null&&c.each(a,function(){return!(d=true)});if(d){c.each(a,function(f, +h){h=c.isFunction(h)?{click:h,text:f}:h;f=c('').attr(h,true).unbind("click").click(function(){h.click.apply(b.element[0],arguments)}).appendTo(g);c.fn.button&&f.button()});e.appendTo(b.uiDialog)}},_makeDraggable:function(){function a(f){return{position:f.position,offset:f.offset}}var b=this,d=b.options,e=c(document),g;b.uiDialog.draggable({cancel:".ui-dialog-content, .ui-dialog-titlebar-close",handle:".ui-dialog-titlebar",containment:"document",start:function(f,h){g= +d.height==="auto"?"auto":c(this).height();c(this).height(c(this).height()).addClass("ui-dialog-dragging");b._trigger("dragStart",f,a(h))},drag:function(f,h){b._trigger("drag",f,a(h))},stop:function(f,h){d.position=[h.position.left-e.scrollLeft(),h.position.top-e.scrollTop()];c(this).removeClass("ui-dialog-dragging").height(g);b._trigger("dragStop",f,a(h));c.ui.dialog.overlay.resize()}})},_makeResizable:function(a){function b(f){return{originalPosition:f.originalPosition,originalSize:f.originalSize, +position:f.position,size:f.size}}a=a===j?this.options.resizable:a;var d=this,e=d.options,g=d.uiDialog.css("position");a=typeof a==="string"?a:"n,e,s,w,se,sw,ne,nw";d.uiDialog.resizable({cancel:".ui-dialog-content",containment:"document",alsoResize:d.element,maxWidth:e.maxWidth,maxHeight:e.maxHeight,minWidth:e.minWidth,minHeight:d._minHeight(),handles:a,start:function(f,h){c(this).addClass("ui-dialog-resizing");d._trigger("resizeStart",f,b(h))},resize:function(f,h){d._trigger("resize",f,b(h))},stop:function(f, +h){c(this).removeClass("ui-dialog-resizing");e.height=c(this).height();e.width=c(this).width();d._trigger("resizeStop",f,b(h));c.ui.dialog.overlay.resize()}}).css("position",g).find(".ui-resizable-se").addClass("ui-icon ui-icon-grip-diagonal-se")},_minHeight:function(){var a=this.options;return a.height==="auto"?a.minHeight:Math.min(a.minHeight,a.height)},_position:function(a){var b=[],d=[0,0],e;if(a){if(typeof a==="string"||typeof a==="object"&&"0"in a){b=a.split?a.split(" "):[a[0],a[1]];if(b.length=== +1)b[1]=b[0];c.each(["left","top"],function(g,f){if(+b[g]===b[g]){d[g]=b[g];b[g]=f}});a={my:b.join(" "),at:b.join(" "),offset:d.join(" ")}}a=c.extend({},c.ui.dialog.prototype.options.position,a)}else a=c.ui.dialog.prototype.options.position;(e=this.uiDialog.is(":visible"))||this.uiDialog.show();this.uiDialog.css({top:0,left:0}).position(c.extend({of:window},a));e||this.uiDialog.hide()},_setOptions:function(a){var b=this,d={},e=false;c.each(a,function(g,f){b._setOption(g,f);if(g in k)e=true;if(g in +l)d[g]=f});e&&this._size();this.uiDialog.is(":data(resizable)")&&this.uiDialog.resizable("option",d)},_setOption:function(a,b){var d=this,e=d.uiDialog;switch(a){case "beforeclose":a="beforeClose";break;case "buttons":d._createButtons(b);break;case "closeText":d.uiDialogTitlebarCloseText.text(""+b);break;case "dialogClass":e.removeClass(d.options.dialogClass).addClass("ui-dialog ui-widget ui-widget-content ui-corner-all "+b);break;case "disabled":b?e.addClass("ui-dialog-disabled"):e.removeClass("ui-dialog-disabled"); +break;case "draggable":var g=e.is(":data(draggable)");g&&!b&&e.draggable("destroy");!g&&b&&d._makeDraggable();break;case "position":d._position(b);break;case "resizable":(g=e.is(":data(resizable)"))&&!b&&e.resizable("destroy");g&&typeof b==="string"&&e.resizable("option","handles",b);!g&&b!==false&&d._makeResizable(b);break;case "title":c(".ui-dialog-title",d.uiDialogTitlebar).html(""+(b||" "));break}c.Widget.prototype._setOption.apply(d,arguments)},_size:function(){var a=this.options,b,d,e= +this.uiDialog.is(":visible");this.element.show().css({width:"auto",minHeight:0,height:0});if(a.minWidth>a.width)a.width=a.minWidth;b=this.uiDialog.css({height:"auto",width:a.width}).height();d=Math.max(0,a.minHeight-b);if(a.height==="auto")if(c.support.minHeight)this.element.css({minHeight:d,height:"auto"});else{this.uiDialog.show();a=this.element.css("height","auto").height();e||this.uiDialog.hide();this.element.height(Math.max(a,d))}else this.element.height(Math.max(a.height-b,0));this.uiDialog.is(":data(resizable)")&& +this.uiDialog.resizable("option","minHeight",this._minHeight())}});c.extend(c.ui.dialog,{version:"1.8.10",uuid:0,maxZ:0,getTitleId:function(a){a=a.attr("id");if(!a){this.uuid+=1;a=this.uuid}return"ui-dialog-title-"+a},overlay:function(a){this.$el=c.ui.dialog.overlay.create(a)}});c.extend(c.ui.dialog.overlay,{instances:[],oldInstances:[],maxZ:0,events:c.map("focus,mousedown,mouseup,keydown,keypress,click".split(","),function(a){return a+".dialog-overlay"}).join(" "),create:function(a){if(this.instances.length=== +0){setTimeout(function(){c.ui.dialog.overlay.instances.length&&c(document).bind(c.ui.dialog.overlay.events,function(d){if(c(d.target).zIndex()").addClass("ui-widget-overlay")).appendTo(document.body).css({width:this.width(), +height:this.height()});c.fn.bgiframe&&b.bgiframe();this.instances.push(b);return b},destroy:function(a){var b=c.inArray(a,this.instances);b!=-1&&this.oldInstances.push(this.instances.splice(b,1)[0]);this.instances.length===0&&c([document,window]).unbind(".dialog-overlay");a.remove();var d=0;c.each(this.instances,function(){d=Math.max(d,this.css("z-index"))});this.maxZ=d},height:function(){var a,b;if(c.browser.msie&&c.browser.version<7){a=Math.max(document.documentElement.scrollHeight,document.body.scrollHeight); +b=Math.max(document.documentElement.offsetHeight,document.body.offsetHeight);return a").addClass("ui-effects-wrapper").css({fontSize:"100%",background:"transparent", +border:"none",margin:0,padding:0});c.wrap(b);b=c.parent();if(c.css("position")=="static"){b.css({position:"relative"});c.css({position:"relative"})}else{f.extend(a,{position:c.css("position"),zIndex:c.css("z-index")});f.each(["top","left","bottom","right"],function(d,e){a[e]=c.css(e);if(isNaN(parseInt(a[e],10)))a[e]="auto"});c.css({position:"relative",top:0,left:0,right:"auto",bottom:"auto"})}return b.css(a).show()},removeWrapper:function(c){if(c.parent().is(".ui-effects-wrapper"))return c.parent().replaceWith(c); +return c},setTransition:function(c,a,b,d){d=d||{};f.each(a,function(e,g){unit=c.cssUnit(g);if(unit[0]>0)d[g]=unit[0]*b+unit[1]});return d}});f.fn.extend({effect:function(c){var a=k.apply(this,arguments),b={options:a[1],duration:a[2],callback:a[3]};a=b.options.mode;var d=f.effects[c];if(f.fx.off||!d)return a?this[a](b.duration,b.callback):this.each(function(){b.callback&&b.callback.call(this)});return d.call(this,b)},_show:f.fn.show,show:function(c){if(m(c))return this._show.apply(this,arguments); +else{var a=k.apply(this,arguments);a[1].mode="show";return this.effect.apply(this,a)}},_hide:f.fn.hide,hide:function(c){if(m(c))return this._hide.apply(this,arguments);else{var a=k.apply(this,arguments);a[1].mode="hide";return this.effect.apply(this,a)}},__toggle:f.fn.toggle,toggle:function(c){if(m(c)||typeof c==="boolean"||f.isFunction(c))return this.__toggle.apply(this,arguments);else{var a=k.apply(this,arguments);a[1].mode="toggle";return this.effect.apply(this,a)}},cssUnit:function(c){var a=this.css(c), +b=[];f.each(["em","px","%","pt"],function(d,e){if(a.indexOf(e)>0)b=[parseFloat(a),e]});return b}});f.easing.jswing=f.easing.swing;f.extend(f.easing,{def:"easeOutQuad",swing:function(c,a,b,d,e){return f.easing[f.easing.def](c,a,b,d,e)},easeInQuad:function(c,a,b,d,e){return d*(a/=e)*a+b},easeOutQuad:function(c,a,b,d,e){return-d*(a/=e)*(a-2)+b},easeInOutQuad:function(c,a,b,d,e){if((a/=e/2)<1)return d/2*a*a+b;return-d/2*(--a*(a-2)-1)+b},easeInCubic:function(c,a,b,d,e){return d*(a/=e)*a*a+b},easeOutCubic:function(c, +a,b,d,e){return d*((a=a/e-1)*a*a+1)+b},easeInOutCubic:function(c,a,b,d,e){if((a/=e/2)<1)return d/2*a*a*a+b;return d/2*((a-=2)*a*a+2)+b},easeInQuart:function(c,a,b,d,e){return d*(a/=e)*a*a*a+b},easeOutQuart:function(c,a,b,d,e){return-d*((a=a/e-1)*a*a*a-1)+b},easeInOutQuart:function(c,a,b,d,e){if((a/=e/2)<1)return d/2*a*a*a*a+b;return-d/2*((a-=2)*a*a*a-2)+b},easeInQuint:function(c,a,b,d,e){return d*(a/=e)*a*a*a*a+b},easeOutQuint:function(c,a,b,d,e){return d*((a=a/e-1)*a*a*a*a+1)+b},easeInOutQuint:function(c, +a,b,d,e){if((a/=e/2)<1)return d/2*a*a*a*a*a+b;return d/2*((a-=2)*a*a*a*a+2)+b},easeInSine:function(c,a,b,d,e){return-d*Math.cos(a/e*(Math.PI/2))+d+b},easeOutSine:function(c,a,b,d,e){return d*Math.sin(a/e*(Math.PI/2))+b},easeInOutSine:function(c,a,b,d,e){return-d/2*(Math.cos(Math.PI*a/e)-1)+b},easeInExpo:function(c,a,b,d,e){return a==0?b:d*Math.pow(2,10*(a/e-1))+b},easeOutExpo:function(c,a,b,d,e){return a==e?b+d:d*(-Math.pow(2,-10*a/e)+1)+b},easeInOutExpo:function(c,a,b,d,e){if(a==0)return b;if(a== +e)return b+d;if((a/=e/2)<1)return d/2*Math.pow(2,10*(a-1))+b;return d/2*(-Math.pow(2,-10*--a)+2)+b},easeInCirc:function(c,a,b,d,e){return-d*(Math.sqrt(1-(a/=e)*a)-1)+b},easeOutCirc:function(c,a,b,d,e){return d*Math.sqrt(1-(a=a/e-1)*a)+b},easeInOutCirc:function(c,a,b,d,e){if((a/=e/2)<1)return-d/2*(Math.sqrt(1-a*a)-1)+b;return d/2*(Math.sqrt(1-(a-=2)*a)+1)+b},easeInElastic:function(c,a,b,d,e){c=1.70158;var g=0,h=d;if(a==0)return b;if((a/=e)==1)return b+d;g||(g=e*0.3);if(h= 5 && + location.href.indexOf('file://') >= 0; + + var webkitRegex = /WebKit\//g ; + WEBKIT = Boolean(webkitRegex.exec(window.navigator.userAgent)); + + var macRegex = /Mac/g ; + OS_MAC = Boolean(macRegex.exec(window.navigator.platform)); +})(); + +(function() { + var _topMessageCenter; + var _messageCenter = {}; + var _listeners = []; + var _stateListeners = []; + var _state = {}; + var _eventObject = null; + + var _queuedMessages = []; + var _initialized = false; + + // this is for the non Chrome 5 local scenarios. The "top" message center will dispatch to all the bottom ones + var _childrenMessageCenters = []; + + // create $axure if it hasn't been created + if (!window.$axure) window.$axure = function() {}; + $axure.messageCenter = _messageCenter; + + // isolate scope, and initialize _topMessageCenter. + (function() { + if (!CHROME_5_LOCAL) { + var topAxureWindow = window; + while (topAxureWindow.parent && topAxureWindow.parent !== topAxureWindow + && topAxureWindow.parent.$axure) topAxureWindow = topAxureWindow.parent; + _topMessageCenter = topAxureWindow.$axure.messageCenter; + } + })(); + + $(window.document).ready(function() { + if (CHROME_5_LOCAL) { + $('body').append("" + + ""); + + _eventObject = window.document.createEvent('Event'); + _eventObject.initEvent('axureMessageSenderEvent', true, true); + + $('#axureEventReceiverDiv').bind('axureMessageReceiverEvent', function () { + var request = JSON.parse($(this).text()); + _handleRequest(request); + }); + } else { + if (_topMessageCenter != _messageCenter) { + _topMessageCenter.addChildMessageCenter(_messageCenter); + console.log('adding from ' + window.location.toString()); + } + } + }); + + var _handleRequest = function (request) { + // route the request to all the listeners + for(var i = 0; i < _listeners.length; i++) _listeners[i](request.message, request.data); + + // now handle the queued messages if we're initializing + if (request.message == 'initialize') { + _initialized = true; + // send all the queued messages and return + for (var i = 0; i < _queuedMessages.length; i++) { + var qRequest = _queuedMessages[i]; + _messageCenter.postMessage(qRequest.message, qRequest.data); + } + _queuedMessages = []; + } + + // and then handle the set state messages, if necessary + if (request.message == 'setState') { + _state[request.data.key] = request.data.value; + for (var i = 0; i < _stateListeners.length; i++) { + var keyListener = _stateListeners[i]; + // if thep passed a null or empty value, always post the message + if (!keyListener.key || keyListener.key == request.data.key) { + keyListener.listener(request.data.key, request.data.value); + } + } + } + + }; + + // ----------------------------------------------------------------------------------------- + // This method allows for dispatching messages in the non-chromelocal scenario. + // Each child calls this on _topMessageCenter + // ----------------------------------------------------------------------------------------- + _messageCenter.addChildMessageCenter = function(messageCenter) { + _childrenMessageCenters[_childrenMessageCenters.length] = messageCenter; + }; + + // ----------------------------------------------------------------------------------------- + // This method allows for dispatching messages in the non-chromelocal scenario. + // Each child calls this on _topMessageCenter + // ----------------------------------------------------------------------------------------- + _messageCenter.dispatchMessage = function(message, data) { + _handleRequest({ + message: message, + data: data + }); + }; + + // ----------------------------------------------------------------------------------------- + // ----------------------------------------------------------------------------------------- + _messageCenter.dispatchMessageRecursively = function(message, data) { + console.log("dispatched to " + window.location.toString()); + + // dispatch to the top center first + _messageCenter.dispatchMessage(message, data); + + $('iframe').each(function(index, frame) { + //try,catch to handle permissions error in FF when loading pages from another domain + try { + if (frame.contentWindow.$axure && frame.contentWindow.$axure.messageCenter) { + frame.contentWindow.$axure.messageCenter.dispatchMessageRecursively(message, data); + } + }catch(e) {} + }); + }; + + _messageCenter.postMessage = function(message, data) { + if(!CHROME_5_LOCAL) { + _topMessageCenter.dispatchMessageRecursively(message, data); + } else { + var request = { + message: message, + data: data + }; + + if(_initialized) { + var senderDiv = window.document.getElementById('axureEventSenderDiv'); + var messageText = JSON.stringify(request); + // console.log('sending event: ' + messageText); + senderDiv.innerText = messageText; + senderDiv.dispatchEvent(_eventObject); + // console.log('event sent'); + } else { + _queuedMessages[_queuedMessages.length] = request; + } + } + }; + + _messageCenter.setState = function(key, value) { + var data = { + key: key, + value: value + }; + _messageCenter.postMessage('setState', data); + }; + + _messageCenter.getState = function(key) { + return _state[key]; + }; + + _messageCenter.addMessageListener = function(listener) { + _listeners[_listeners.length] = listener; + }; + + _messageCenter.addStateListener = function(key, listener) { + _stateListeners[_stateListeners.length] = { + key: key, + listener: listener + }; + }; + +})(); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/player/axplayer.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/player/axplayer.js" new file mode 100644 index 0000000..efce350 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/player/axplayer.js" @@ -0,0 +1,172 @@ +if (!window.$axure) window.$axure = function () { }; +if (typeof console == 'undefined') console = { + log: function () { } +}; +if(window._axUtils) $axure.utils = _axUtils; + +$axure.loadDocument = function(document) { + $axure.document = document; +}; + +function setUpController() { + + //$axure.utils = _axUtils; + + var _page = {}; + $axure.page = _page; + + $axure.utils.makeBindable(_page, ['load']); + + var _player = function() { + }; + $axure.player = _player; + + //----------------------------------------- + //Global Var array, getLinkUrl function and setGlobalVar listener are + //for use in setting global vars in page url string when clicking a + //page in the sitemap + //----------------------------------------- + var _globalVars = {}; + + var _getLinkUrl = function(baseUrl) { + var toAdd = ''; + for (var globalVarName in _globalVars) { + var val = _globalVars[globalVarName]; + if (val != null && val.length > 0) { + if (toAdd.length > 0) toAdd += '&'; + toAdd += globalVarName + '=' + encodeURIComponent(val); + } + } + return toAdd.length > 0 ? baseUrl + '#' + toAdd + "&CSUM=1" : baseUrl; + }; + $axure.getLinkUrlWithVars = _getLinkUrl; + + $axure.messageCenter.addMessageListener(function(message, data) { + if (message == 'setGlobalVar'){ + _globalVars[data.globalVarName] = data.globalVarValue; + } + }); + + $axure.messageCenter.addStateListener('page.data', function (key, value) { + for (var subKey in value) { + _page[subKey] = value[subKey]; + } + $axure.page.triggerEvent('load'); + }); + + // --------------------------------------------- + // Navigates the main frame (setting the currently visible page). If the link is relative, + // this method should test if it is actually a axure rp page being loaded and properly set + // up all the controller for the page if it is + // --------------------------------------------- + _page.navigate = function (url, includeVariables) { + var mainFrame = document.getElementById("mainFrame"); + //var mainFrame = window.parent.mainFrame; + // if this is a relative url... + var urlToLoad; + if (url.indexOf(':') < 0 || url[0] == '/') { + var winHref = window.location.href; + var page = winHref.substring(0, winHref.lastIndexOf('/') + 1) + url; + urlToLoad = page; + } else { + urlToLoad = url; + } + if (!includeVariables) { + mainFrame.contentWindow.location.href = urlToLoad; + return; + } + var urlWithVars = $axure.getLinkUrlWithVars(urlToLoad); + var currentData = $axure.messageCenter.getState('page.data'); + var currentUrl = currentData && currentData.location; + if(currentUrl && currentUrl.indexOf('#') != -1) currentUrl = currentUrl.substring(0, currentUrl.indexOf('#')) + + // this is so we can make sure the current frame reloads if the variables have changed + // by default, if the location is the same but the hash code is different, the browser will not + // trigger a reload + mainFrame.contentWindow.location.href = + currentUrl && urlToLoad.toLowerCase() != currentUrl.toLowerCase() + ? urlWithVars + : 'resources/reload.html#' + encodeURI(urlWithVars); + + }; + + var pluginIds = []; + var currentVisibleHostId = null; + // --------------------------------------------- + // Adds a tool box frame from a url to the interface. This is useful for loading plugins + // settings is an object that supports the following properties: + // - id : the id of the element for the plugin + // - context : the context to create the plugin host for + // - title : the user-visible caption for the plugin + // --------------------------------------------- + _player.createPluginHost = function (settings) { + // right now we only understand an interface context + if (!(!settings.context || settings.context === 'interface')) { + throw ('unknown context type'); + } + if (!settings.id) throw ('each plugin host needs an id'); + + var host = $('
    ') + .appendTo('#interfaceControlFrameContainer'); + + var isCurrentDefault = (pluginIds.length == 0); + if (!isCurrentDefault) { + host.hide(); + } else { + currentVisibleHostId = settings.id; + } + + + //$('#interfaceControlFrameHeader').append('
  • ' + settings.title + '
  • '); + var headerLink = $('' + settings.title + ''); + + headerLink + .click($axure.utils.curry(interfaceControlHeaderButton_click, settings.id)).wrap('
  • ') + .parent().appendTo('#interfaceControlFrameHeader'); + + if (isCurrentDefault) { + headerLink.addClass('selected'); + } + + pluginIds[pluginIds.length] = settings.id; + }; + + // private methods + var interfaceControlHeaderButton_click = function (id) { + $('#interfaceControlFrameHeader a').removeClass('selected'); + $('#interfaceControlFrameHeader a[pluginId=' + id + ']').addClass('selected'); + + $('#' + currentVisibleHostId).hide(); + $('#' + id).show(); + currentVisibleHostId = id; + }; +} + +function setUpDocumentStateManager() { + var mgr = $axure.prototype.documentStateManager = {}; + $axure.utils.makeBindable(mgr, ['globalVariableChanged']); + + mgr.globalVariableValues = {}; + + mgr.setGlobalVariable = function(varname, value, source) { + var arg = {}; + arg.variableName = varname; + arg.newValue = value; + arg.oldValue = this.getGlobalVariable(varname); + arg.source = source; + + mgr.globalVariableValues[varname] = value; + this.triggerEvent('globalVariableChanged', arg); + }; + + mgr.getGlobalVariable = function(varname) { + return mgr.globalVariableValues[varname]; + }; +} + + +function setUpPageStateManager() { + var mgr = $axure.prototype.pageStateManager = {}; + + mgr.panelToStateIds = {}; +} diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/player/splitter.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/player/splitter.js" new file mode 100644 index 0000000..b62a8fb --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/resources/scripts/player/splitter.js" @@ -0,0 +1,215 @@ +/* +* jQuery.splitter.js - two-pane splitter window plugin +* +* version 1.51 (2009/01/09) +* +* Dual licensed under the MIT and GPL licenses: +* http://www.opensource.org/licenses/mit-license.php +* http://www.gnu.org/licenses/gpl.html +*/ + +/** +* The splitter() plugin implements a two-pane resizable splitter window. +* The selected elements in the jQuery object are converted to a splitter; +* each selected element should have two child elements, used for the panes +* of the splitter. The plugin adds a third child element for the splitbar. +* +* For more details see: http://methvin.com/splitter/ +* +* +* @example $('#MySplitter').splitter(); +* @desc Create a vertical splitter with default settings +* +* @example $('#MySplitter').splitter({type: 'h', accessKey: 'M'}); +* @desc Create a horizontal splitter resizable via Alt+Shift+M +* +* @name splitter +* @type jQuery +* @param Object options Options for the splitter (not required) +* @cat Plugins/Splitter +* @return jQuery +* @author Dave Methvin (dave.methvin@gmail.com) +*/ +;(function($){ + +$.fn.splitter = function(args){ + args = args || {}; + return this.each(function() { + var zombie; // left-behind splitbar for outline resizes + function startSplitMouse(evt) { + if ( opts.outline ) + zombie = zombie || bar.clone(false).insertAfter(A); + panes.css("-webkit-user-select", "none"); // Safari selects A/B text on a move + bar.addClass(opts.activeClass); + $('
    ').insertAfter(bar); + A._posSplit = A[0][opts.pxSplit] - evt[opts.eventPos]; + $(document) + .bind("mousemove", doSplitMouse) + .bind("mouseup", endSplitMouse); + } + function doSplitMouse(evt) { + var newPos = A._posSplit+evt[opts.eventPos]; + if ( opts.outline ) { + newPos = Math.max(0, Math.min(newPos, splitter._DA - bar._DA)); + bar.css(opts.origin, newPos); + } else + resplit(newPos); + } + function endSplitMouse(evt) { + $('div.splitterMask').remove(); + bar.removeClass(opts.activeClass); + var newPos = A._posSplit+evt[opts.eventPos]; + if ( opts.outline ) { + zombie.remove(); zombie = null; + resplit(newPos); + } + panes.css("-webkit-user-select", "text"); // let Safari select text again + $(document) + .unbind("mousemove", doSplitMouse) + .unbind("mouseup", endSplitMouse); + } + function resplit(newPos) { + // Constrain new splitbar position to fit pane size limits + newPos = Math.max(A._min, splitter._DA - B._max, + Math.min(newPos, A._max, splitter._DA - bar._DA - B._min)); + // Resize/position the two panes + bar._DA = bar[0][opts.pxSplit]; // bar size may change during dock + bar.css(opts.origin, newPos).css(opts.fixed, splitter._DF); + A.css(opts.origin, 0).css(opts.split, newPos).css(opts.fixed, splitter._DF); + B.css(opts.origin, newPos+bar._DA) + .css(opts.split, splitter._DA-bar._DA-newPos).css(opts.fixed, splitter._DF); + // IE fires resize for us; all others pay cash + if ( !$.browser.msie ) + panes.trigger("resize"); + } + function dimSum(jq, dims) { + // Opera returns -1 for missing min/max width, turn into 0 + var sum = 0; + for ( var i=1; i < arguments.length; i++ ) + sum += Math.max(parseInt(jq.css(arguments[i])) || 0, 0); + return sum; + } + + // Determine settings based on incoming opts, element classes, and defaults + var vh = (args.splitHorizontal? 'h' : args.splitVertical? 'v' : args.type) || 'v'; + var opts = $.extend({ + activeClass: 'active', // class name for active splitter + pxPerKey: 8, // splitter px moved per keypress + tabIndex: 0, // tab order indicator + accessKey: '' // accessKey for splitbar + },{ + v: { // Vertical splitters: + keyLeft: 39, keyRight: 37, cursor: "col-resize", + splitbarClass: "vsplitbar", outlineClass: "voutline", + type: 'v', eventPos: "pageX", origin: "left", + split: "width", pxSplit: "offsetWidth", side1: "Left", side2: "Right", + fixed: "height", pxFixed: "offsetHeight", side3: "Top", side4: "Bottom" + }, + h: { // Horizontal splitters: + keyTop: 40, keyBottom: 38, cursor: "row-resize", + splitbarClass: "hsplitbar", outlineClass: "houtline", + type: 'h', eventPos: "pageY", origin: "top", + split: "height", pxSplit: "offsetHeight", side1: "Top", side2: "Bottom", + fixed: "width", pxFixed: "offsetWidth", side3: "Left", side4: "Right" + } + }[vh], args); + + // Create jQuery object closures for splitter and both panes + var splitter = $(this).css({position: "relative"}); + var panes = $(">*", splitter[0]).css({ + position: "absolute", // positioned inside splitter container + "z-index": "1", // splitbar is positioned above + "-moz-outline-style": "none" // don't show dotted outline + }); + var A = $(panes[0]); // left or top + var B = $(panes[1]); // right or bottom + + // Focuser element, provides keyboard support; title is shown by Opera accessKeys + var focuser = $('') + .attr({accessKey: opts.accessKey, tabIndex: opts.tabIndex, title: opts.splitbarClass}) + .bind($.browser.opera?"click":"focus", function(){ this.focus(); bar.addClass(opts.activeClass) }) + .bind("keydown", function(e){ + var key = e.which || e.keyCode; + var dir = key==opts["key"+opts.side1]? 1 : key==opts["key"+opts.side2]? -1 : 0; + if ( dir ) + resplit(A[0][opts.pxSplit]+dir*opts.pxPerKey, false); + }) + .bind("blur", function(){ bar.removeClass(opts.activeClass) }); + + // Splitbar element, can be already in the doc or we create one + var bar = $(panes[2] || '
    ') + .insertAfter(A).css("z-index", "100").append(focuser) + .attr({"class": opts.splitbarClass, unselectable: "on"}) + .css({position: "absolute", "user-select": "none", "-webkit-user-select": "none", + "-khtml-user-select": "none", "-moz-user-select": "none", "top": "0px"}) + .bind("mousedown", startSplitMouse); + // Use our cursor unless the style specifies a non-default cursor + if ( /^(auto|default|)$/.test(bar.css("cursor")) ) + bar.css("cursor", opts.cursor); + + // Cache several dimensions for speed, rather than re-querying constantly + bar._DA = bar[0][opts.pxSplit]; + splitter._PBF = $.boxModel? dimSum(splitter, "border"+opts.side3+"Width", "border"+opts.side4+"Width") : 0; + splitter._PBA = $.boxModel? dimSum(splitter, "border"+opts.side1+"Width", "border"+opts.side2+"Width") : 0; + A._pane = opts.side1; + B._pane = opts.side2; + $.each([A,B], function(){ + this._min = opts["min"+this._pane] || dimSum(this, "min-"+opts.split); + this._max = opts["max"+this._pane] || dimSum(this, "max-"+opts.split) || 9999; + this._init = opts["size"+this._pane]===true ? + parseInt($.curCSS(this[0],opts.split)) : opts["size"+this._pane]; + }); + + // Determine initial position, get from cookie if specified + var initPos = A._init; + if ( !isNaN(B._init) ) // recalc initial B size as an offset from the top or left side + initPos = splitter[0][opts.pxSplit] - splitter._PBA - B._init - bar._DA; + if ( opts.cookie ) { + if ( !$.cookie ) + alert('jQuery.splitter(): jQuery cookie plugin required'); + var ckpos = parseInt($.cookie(opts.cookie)); + if ( !isNaN(ckpos) ) + initPos = ckpos; + $(window).bind("unload", function(){ + var state = String(bar.css(opts.origin)); // current location of splitbar + $.cookie(opts.cookie, state, {expires: opts.cookieExpires || 365, + path: opts.cookiePath || document.location.pathname}); + }); + } + if ( isNaN(initPos) ) // King Solomon's algorithm + initPos = Math.round((splitter[0][opts.pxSplit] - splitter._PBA - bar._DA)/2); + + // Resize event propagation and splitter sizing + if ( opts.anchorToWindow ) { + // Account for margin or border on the splitter container and enforce min height + splitter._hadjust = dimSum(splitter, "borderTopWidth", "borderBottomWidth", "marginBottom"); + splitter._hmin = Math.max(dimSum(splitter, "minHeight"), 20); + $(window).bind("resize", function(){ + var top = splitter.offset().top; + var wh = $(window).height(); + splitter.css("height", Math.max(wh-top-splitter._hadjust, splitter._hmin)+"px"); + if ( !$.browser.msie ) splitter.trigger("resize"); + }).trigger("resize"); + } + else if ( opts.resizeToWidth && !$.browser.msie ) + $(window).bind("resize", function(){ + splitter.trigger("resize"); + }); + + // Resize event handler; triggered immediately to set initial position + splitter.bind("resize", function(e, size){ + // Custom events bubble in jQuery 1.3; don't Yo Dawg + if ( e.target != this ) return; + // Determine new width/height of splitter container + splitter._DF = splitter[0][opts.pxFixed] - splitter._PBF; + splitter._DA = splitter[0][opts.pxSplit] - splitter._PBA; + // Bail if splitter isn't visible or content isn't there yet + if ( splitter._DF <= 0 || splitter._DA <= 0 ) return; + // Re-divvy the adjustable dimension; maintain size of the preferred pane + resplit(!isNaN(size)? size : (!(opts.sizeRight||opts.sizeBottom)? A[0][opts.pxSplit] : + splitter._DA-B[0][opts.pxSplit]-bar._DA)); + }).trigger("resize" , [initPos]); + }); +}; + +})(jQuery); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/start.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/start.html" new file mode 100644 index 0000000..1742793 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/start.html" @@ -0,0 +1,350 @@ + + + + Untitled Document + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    +
    +   +
    +   +
    +
    +
    +
    +
    +
    +
    +
      +
    +
    +
    +
    +
    +
    +
    + +
    + +
    + +
    + +
    + + + diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/start_c_1.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/start_c_1.html" new file mode 100644 index 0000000..82de5fd --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/start_c_1.html" @@ -0,0 +1,12 @@ + + + + + + + + + + diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\344\274\201\344\270\232\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\345\220\216\345\217\260\357\274\211.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\344\274\201\344\270\232\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\345\220\216\345\217\260\357\274\211.html" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\344\274\201\344\270\232\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\345\220\216\345\217\260\357\274\211.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\344\274\201\344\270\232\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\345\220\216\345\217\260\357\274\211.html" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\344\274\201\344\270\232\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\210\215\345\274\203\357\274\211.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\344\274\201\344\270\232\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\210\215\345\274\203\357\274\211.html" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\344\274\201\344\270\232\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\210\215\345\274\203\357\274\211.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\344\274\201\344\270\232\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\210\215\345\274\203\357\274\211.html" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\345\217\221\346\224\276\345\216\206\345\217\262.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\345\217\221\346\224\276\345\216\206\345\217\262.html" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\345\217\221\346\224\276\345\216\206\345\217\262.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\345\217\221\346\224\276\345\216\206\345\217\262.html" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\345\217\221\346\224\276\345\267\245\350\265\204.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\345\217\221\346\224\276\345\267\245\350\265\204.html" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\345\217\221\346\224\276\345\267\245\350\265\204.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\345\217\221\346\224\276\345\267\245\350\265\204.html" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\345\221\230\345\267\245\345\267\245\350\265\204\347\231\273\350\256\260.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\345\221\230\345\267\245\345\267\245\350\265\204\347\231\273\350\256\260.html" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\345\221\230\345\267\245\345\267\245\350\265\204\347\231\273\350\256\260.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\345\221\230\345\267\245\345\267\245\350\265\204\347\231\273\350\256\260.html" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\345\267\245\350\265\204\345\217\221\346\224\276.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\345\267\245\350\265\204\345\217\221\346\224\276.html" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\345\267\245\350\265\204\345\217\221\346\224\276.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\345\267\245\350\265\204\345\217\221\346\224\276.html" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\345\267\245\350\265\204\346\224\266\345\217\221.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\345\267\245\350\265\204\346\224\266\345\217\221.html" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\345\267\245\350\265\204\346\224\266\345\217\221.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\345\267\245\350\265\204\346\224\266\345\217\221.html" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\345\267\245\350\265\204\346\230\216\347\273\206\344\277\256\346\224\271\357\274\210\350\210\215\345\274\203\357\274\211.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\345\267\245\350\265\204\346\230\216\347\273\206\344\277\256\346\224\271\357\274\210\350\210\215\345\274\203\357\274\211.html" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\345\267\245\350\265\204\346\230\216\347\273\206\344\277\256\346\224\271\357\274\210\350\210\215\345\274\203\357\274\211.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\345\267\245\350\265\204\346\230\216\347\273\206\344\277\256\346\224\271\357\274\210\350\210\215\345\274\203\357\274\211.html" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\345\267\245\350\265\204\347\255\276\346\224\266.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\345\267\245\350\265\204\347\255\276\346\224\266.html" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\345\267\245\350\265\204\347\255\276\346\224\266.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\345\267\245\350\265\204\347\255\276\346\224\266.html" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\345\267\245\350\265\204\346\230\216\347\273\206\344\277\256\346\224\271\357\274\211.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\345\267\245\350\265\204\346\230\216\347\273\206\344\277\256\346\224\271\357\274\211.html" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\345\267\245\350\265\204\346\230\216\347\273\206\344\277\256\346\224\271\357\274\211.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\345\267\245\350\265\204\346\230\216\347\273\206\344\277\256\346\224\271\357\274\211.html" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\210\215\345\274\203\357\274\211.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\210\215\345\274\203\357\274\211.html" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\210\215\345\274\203\357\274\211.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\210\215\345\274\203\357\274\211.html" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\264\242\345\212\241\357\274\211.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\264\242\345\212\241\357\274\211.html" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\264\242\345\212\241\357\274\211.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\345\267\245\350\265\204\347\256\241\347\220\206\357\274\210\350\264\242\345\212\241\357\274\211.html" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\346\214\207\345\256\232\350\264\242\345\212\241.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\346\214\207\345\256\232\350\264\242\345\212\241.html" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\346\214\207\345\256\232\350\264\242\345\212\241.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\346\214\207\345\256\232\350\264\242\345\212\241.html" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\346\214\207\345\256\232\350\264\242\345\212\241\357\274\210\350\210\215\345\274\203\357\274\211.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\346\214\207\345\256\232\350\264\242\345\212\241\357\274\210\350\210\215\345\274\203\357\274\211.html" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\346\214\207\345\256\232\350\264\242\345\212\241\357\274\210\350\210\215\345\274\203\357\274\211.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\346\214\207\345\256\232\350\264\242\345\212\241\357\274\210\350\210\215\345\274\203\357\274\211.html" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\346\224\257\344\273\230\345\256\214\346\210\220.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\346\224\257\344\273\230\345\256\214\346\210\220.html" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\346\224\257\344\273\230\345\256\214\346\210\220.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\346\224\257\344\273\230\345\256\214\346\210\220.html" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\346\224\257\344\273\230\345\256\214\346\210\220\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\346\224\257\344\273\230\345\256\214\346\210\220\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211.html" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\346\224\257\344\273\230\345\256\214\346\210\220\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\346\224\257\344\273\230\345\256\214\346\210\220\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211.html" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\346\224\257\344\273\230\345\267\245\350\265\204.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\346\224\257\344\273\230\345\267\245\350\265\204.html" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\346\224\257\344\273\230\345\267\245\350\265\204.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\346\224\257\344\273\230\345\267\245\350\265\204.html" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\346\224\257\344\273\230\345\267\245\350\265\204\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\346\224\257\344\273\230\345\267\245\350\265\204\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211.html" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\346\224\257\344\273\230\345\267\245\350\265\204\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\346\224\257\344\273\230\345\267\245\350\265\204\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211.html" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\346\224\266\346\254\276\351\223\266\350\241\214\345\215\241\357\274\210\347\224\250\346\210\267\344\277\241\346\201\257\344\270\255\357\274\211.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\346\224\266\346\254\276\351\223\266\350\241\214\345\215\241\357\274\210\347\224\250\346\210\267\344\277\241\346\201\257\344\270\255\357\274\211.html" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\346\224\266\346\254\276\351\223\266\350\241\214\345\215\241\357\274\210\347\224\250\346\210\267\344\277\241\346\201\257\344\270\255\357\274\211.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\346\224\266\346\254\276\351\223\266\350\241\214\345\215\241\357\274\210\347\224\250\346\210\267\344\277\241\346\201\257\344\270\255\357\274\211.html" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\347\255\276\346\224\266\345\216\206\345\217\262.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\347\255\276\346\224\266\345\216\206\345\217\262.html" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\347\255\276\346\224\266\345\216\206\345\217\262.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\347\255\276\346\224\266\345\216\206\345\217\262.html" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\347\255\276\346\224\266\345\244\261\350\264\245.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\347\255\276\346\224\266\345\244\261\350\264\245.html" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\347\255\276\346\224\266\345\244\261\350\264\245.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\347\255\276\346\224\266\345\244\261\350\264\245.html" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\347\255\276\346\224\266\346\210\220\345\212\237.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\347\255\276\346\224\266\346\210\220\345\212\237.html" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\347\255\276\346\224\266\346\210\220\345\212\237.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\347\255\276\346\224\266\346\210\220\345\212\237.html" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\351\252\214\350\257\201\346\224\257\344\273\230.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\351\252\214\350\257\201\346\224\257\344\273\230.html" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\351\252\214\350\257\201\346\224\257\344\273\230.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\351\252\214\350\257\201\346\224\257\344\273\230.html" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\351\252\214\350\257\201\346\224\257\344\273\230\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\351\252\214\350\257\201\346\224\257\344\273\230\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211.html" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.4.0/\345\267\245\350\265\204\345\217\221\346\224\276/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\351\252\214\350\257\201\346\224\257\344\273\230\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.5.0/\351\234\200\346\261\202\346\226\207\346\241\243/\345\217\221\345\267\245\350\265\204\347\263\273\347\273\237_\345\216\237\345\236\213/\351\252\214\350\257\201\346\224\257\344\273\230\357\274\210\344\273\245\346\224\257\344\273\230\345\216\237\345\236\213\344\270\272\345\207\206\357\274\211.html" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\344\273\243\347\220\206\345\225\206\351\241\265\351\235\242\346\224\271\347\211\210/UI\346\226\207\346\241\243/\344\273\243\347\220\206\345\225\206\346\224\271\347\211\2101.jpg" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\344\273\243\347\220\206\345\225\206\351\241\265\351\235\242\346\224\271\347\211\210/UI\346\226\207\346\241\243/\344\273\243\347\220\206\345\225\206\346\224\271\347\211\2101.jpg" new file mode 100644 index 0000000..9e744db Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\344\273\243\347\220\206\345\225\206\351\241\265\351\235\242\346\224\271\347\211\210/UI\346\226\207\346\241\243/\344\273\243\347\220\206\345\225\206\346\224\271\347\211\2101.jpg" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\344\273\243\347\220\206\345\225\206\351\241\265\351\235\242\346\224\271\347\211\210/UI\346\226\207\346\241\243/\344\273\243\347\220\206\345\225\206\346\224\271\347\211\2102.jpg" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\344\273\243\347\220\206\345\225\206\351\241\265\351\235\242\346\224\271\347\211\210/UI\346\226\207\346\241\243/\344\273\243\347\220\206\345\225\206\346\224\271\347\211\2102.jpg" new file mode 100644 index 0000000..597db12 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\344\273\243\347\220\206\345\225\206\351\241\265\351\235\242\346\224\271\347\211\210/UI\346\226\207\346\241\243/\344\273\243\347\220\206\345\225\206\346\224\271\347\211\2102.jpg" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/1\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/1@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/1\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/1@2x.png" new file mode 100644 index 0000000..2d1a9b1 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/1\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/1@2x.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/1\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/1\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201.jpg" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/1\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/1\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201.jpg" new file mode 100644 index 0000000..d8b773b Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/1\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/1\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201.jpg" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/1\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/2@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/1\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/2@2x.png" new file mode 100644 index 0000000..2cce0f2 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/1\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/2@2x.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/1\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/3@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/1\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/3@2x.png" new file mode 100644 index 0000000..468d23d Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/1\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/3@2x.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/1\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/4@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/1\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/4@2x.png" new file mode 100644 index 0000000..64e3074 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/1\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/4@2x.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/1\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/historybtn_normal@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/1\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/historybtn_normal@2x.png" new file mode 100644 index 0000000..95cc690 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/1\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/historybtn_normal@2x.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/1\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/historybtn_pressed@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/1\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/historybtn_pressed@2x.png" new file mode 100644 index 0000000..eef2790 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/1\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/historybtn_pressed@2x.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/1\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/yellowbtn@2x@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/1\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/yellowbtn@2x@2x.png" new file mode 100644 index 0000000..794b59d Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/1\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/yellowbtn@2x@2x.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/1\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/yellowbtn_selected@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/1\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/yellowbtn_selected@2x.png" new file mode 100644 index 0000000..748de93 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/1\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/yellowbtn_selected@2x.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/1\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/\346\216\210\346\235\203\347\240\201gif3.swf" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/1\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/\346\216\210\346\235\203\347\240\201gif3.swf" new file mode 100644 index 0000000..071e8e1 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/1\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/\346\216\210\346\235\203\347\240\201gif3.swf" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/2\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/normal_card@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/2\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/normal_card@2x.png" new file mode 100644 index 0000000..52f1e98 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/2\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/normal_card@2x.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/2\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/slipped_card@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/2\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/slipped_card@2x.png" new file mode 100644 index 0000000..2f18c45 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/2\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/slipped_card@2x.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/2\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201.jpg" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/2\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201.jpg" new file mode 100644 index 0000000..96a9979 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/2\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201.jpg" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/2\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201\346\217\220\347\244\2721.jpg" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/2\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201\346\217\220\347\244\2721.jpg" new file mode 100644 index 0000000..2c0c2ee Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/2\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201\346\217\220\347\244\2721.jpg" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/2\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201\346\217\220\347\244\2722.jpg" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/2\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201\346\217\220\347\244\2722.jpg" new file mode 100644 index 0000000..7b7ab09 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/2\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201\346\217\220\347\244\2722.jpg" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/2\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201\346\217\220\347\244\2723.jpg" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/2\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201\346\217\220\347\244\2723.jpg" new file mode 100644 index 0000000..fe1a15a Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/2\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201\346\217\220\347\244\2723.jpg" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/inputtext@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/inputtext@2x.png" new file mode 100644 index 0000000..362151f Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/inputtext@2x.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/longline@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/longline@2x.png" new file mode 100644 index 0000000..f5e6a38 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/longline@2x.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/news_inputtext@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/news_inputtext@2x.png" new file mode 100644 index 0000000..a2adbdc Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/news_inputtext@2x.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/newsline@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/newsline@2x.png" new file mode 100644 index 0000000..ffd718c Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/newsline@2x.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\345\225\206\345\212\241\346\224\266\346\254\276/card@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\345\225\206\345\212\241\346\224\266\346\254\276/card@2x.png" new file mode 100644 index 0000000..26639df Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\345\225\206\345\212\241\346\224\266\346\254\276/card@2x.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\345\225\206\345\212\241\346\224\266\346\254\276/exclamation_mark@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\345\225\206\345\212\241\346\224\266\346\254\276/exclamation_mark@2x.png" new file mode 100644 index 0000000..bdb8832 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\345\225\206\345\212\241\346\224\266\346\254\276/exclamation_mark@2x.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\345\225\206\345\212\241\346\224\266\346\254\276/smallblue_btn_nor@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\345\225\206\345\212\241\346\224\266\346\254\276/smallblue_btn_nor@2x.png" new file mode 100644 index 0000000..849e826 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\345\225\206\345\212\241\346\224\266\346\254\276/smallblue_btn_nor@2x.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\345\225\206\345\212\241\346\224\266\346\254\276/smallblue_btn_pressed@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\345\225\206\345\212\241\346\224\266\346\254\276/smallblue_btn_pressed@2x.png" new file mode 100644 index 0000000..9698703 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\345\225\206\345\212\241\346\224\266\346\254\276/smallblue_btn_pressed@2x.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\345\225\206\345\212\241\346\224\266\346\254\276/smallyellow_btu_normal@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\345\225\206\345\212\241\346\224\266\346\254\276/smallyellow_btu_normal@2x.png" new file mode 100644 index 0000000..31c1383 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\345\225\206\345\212\241\346\224\266\346\254\276/smallyellow_btu_normal@2x.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\345\225\206\345\212\241\346\224\266\346\254\276/smallyellow_btu_pressed@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\345\225\206\345\212\241\346\224\266\346\254\276/smallyellow_btu_pressed@2x.png" new file mode 100644 index 0000000..10bc9e5 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\345\225\206\345\212\241\346\224\266\346\254\276/smallyellow_btu_pressed@2x.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\345\225\206\345\212\241\346\224\266\346\254\276/yellowbtn@2x@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\345\225\206\345\212\241\346\224\266\346\254\276/yellowbtn@2x@2x.png" new file mode 100644 index 0000000..794b59d Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\345\225\206\345\212\241\346\224\266\346\254\276/yellowbtn@2x@2x.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\345\225\206\345\212\241\346\224\266\346\254\276/yellowbtn_selected@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\345\225\206\345\212\241\346\224\266\346\254\276/yellowbtn_selected@2x.png" new file mode 100644 index 0000000..748de93 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\345\225\206\345\212\241\346\224\266\346\254\276/yellowbtn_selected@2x.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\345\225\206\345\212\241\346\224\266\346\254\276/\345\225\206\345\212\241\346\224\266\346\254\276.jpg" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\345\225\206\345\212\241\346\224\266\346\254\276/\345\225\206\345\212\241\346\224\266\346\254\276.jpg" new file mode 100644 index 0000000..7170f75 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\345\225\206\345\212\241\346\224\266\346\254\276/\345\225\206\345\212\241\346\224\266\346\254\276.jpg" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\345\225\206\345\212\241\346\224\266\346\254\276/\345\225\206\345\212\241\346\224\266\346\254\2762.jpg" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\345\225\206\345\212\241\346\224\266\346\254\276/\345\225\206\345\212\241\346\224\266\346\254\2762.jpg" new file mode 100644 index 0000000..1743ffe Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\345\225\206\345\212\241\346\224\266\346\254\276/\345\225\206\345\212\241\346\224\266\346\254\2762.jpg" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\345\225\206\345\212\241\346\224\266\346\254\276/\345\225\206\345\212\241\346\224\266\346\254\2763.jpg" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\345\225\206\345\212\241\346\224\266\346\254\276/\345\225\206\345\212\241\346\224\266\346\254\2763.jpg" new file mode 100644 index 0000000..513e73b Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\345\225\206\345\212\241\346\224\266\346\254\276/\345\225\206\345\212\241\346\224\266\346\254\2763.jpg" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\345\225\206\345\212\241\346\224\266\346\254\276/\346\216\210\346\235\203\347\240\2012.0-15.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\345\225\206\345\212\241\346\224\266\346\254\276/\346\216\210\346\235\203\347\240\2012.0-15.png" new file mode 100644 index 0000000..762ef93 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\345\225\206\345\212\241\346\224\266\346\254\276/\346\216\210\346\235\203\347\240\2012.0-15.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201.jpg" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201.jpg" new file mode 100644 index 0000000..70210ad Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201.jpg" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\346\216\210\346\235\203\347\240\201\345\210\206\351\205\215/bl_btn_nor@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\346\216\210\346\235\203\347\240\201\345\210\206\351\205\215/bl_btn_nor@2x.png" new file mode 100644 index 0000000..6a22d2b Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\346\216\210\346\235\203\347\240\201\345\210\206\351\205\215/bl_btn_nor@2x.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\346\216\210\346\235\203\347\240\201\345\210\206\351\205\215/bl_btn_pre@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\346\216\210\346\235\203\347\240\201\345\210\206\351\205\215/bl_btn_pre@2x.png" new file mode 100644 index 0000000..bdbdac5 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\346\216\210\346\235\203\347\240\201\345\210\206\351\205\215/bl_btn_pre@2x.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\346\216\210\346\235\203\347\240\201\345\210\206\351\205\215/historybtn_normal@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\346\216\210\346\235\203\347\240\201\345\210\206\351\205\215/historybtn_normal@2x.png" new file mode 100644 index 0000000..95cc690 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\346\216\210\346\235\203\347\240\201\345\210\206\351\205\215/historybtn_normal@2x.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\346\216\210\346\235\203\347\240\201\345\210\206\351\205\215/historybtn_pressed@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\346\216\210\346\235\203\347\240\201\345\210\206\351\205\215/historybtn_pressed@2x.png" new file mode 100644 index 0000000..eef2790 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\346\216\210\346\235\203\347\240\201\345\210\206\351\205\215/historybtn_pressed@2x.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\346\216\210\346\235\203\347\240\201\345\210\206\351\205\215/\346\216\210\346\235\203\347\240\201\345\210\206\351\205\215.jpg" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\346\216\210\346\235\203\347\240\201\345\210\206\351\205\215/\346\216\210\346\235\203\347\240\201\345\210\206\351\205\215.jpg" new file mode 100644 index 0000000..ad47f8e Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\346\216\210\346\235\203\347\240\201\345\210\206\351\205\215/\346\216\210\346\235\203\347\240\201\345\210\206\351\205\215.jpg" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\346\216\210\346\235\203\347\240\201\345\267\262\345\210\206\351\205\215\350\256\260\345\275\225.jpg" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\346\216\210\346\235\203\347\240\201\345\267\262\345\210\206\351\205\215\350\256\260\345\275\225.jpg" new file mode 100644 index 0000000..2dc3ea1 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\346\216\210\346\235\203\347\240\201\345\267\262\345\210\206\351\205\215\350\256\260\345\275\225.jpg" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\346\224\257\344\273\230\347\273\223\346\236\234/midblu_btn_nor@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\346\224\257\344\273\230\347\273\223\346\236\234/midblu_btn_nor@2x.png" new file mode 100644 index 0000000..71ab29d Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\346\224\257\344\273\230\347\273\223\346\236\234/midblu_btn_nor@2x.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\346\224\257\344\273\230\347\273\223\346\236\234/midblu_btn_pre@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\346\224\257\344\273\230\347\273\223\346\236\234/midblu_btn_pre@2x.png" new file mode 100644 index 0000000..9c0525e Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\346\224\257\344\273\230\347\273\223\346\236\234/midblu_btn_pre@2x.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\346\224\257\344\273\230\347\273\223\346\236\234/midyel_btn_nor@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\346\224\257\344\273\230\347\273\223\346\236\234/midyel_btn_nor@2x.png" new file mode 100644 index 0000000..4cc048a Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\346\224\257\344\273\230\347\273\223\346\236\234/midyel_btn_nor@2x.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\346\224\257\344\273\230\347\273\223\346\236\234/midyel_btn_pre@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\346\224\257\344\273\230\347\273\223\346\236\234/midyel_btn_pre@2x.png" new file mode 100644 index 0000000..111dca2 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\346\224\257\344\273\230\347\273\223\346\236\234/midyel_btn_pre@2x.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\346\224\257\344\273\230\347\273\223\346\236\234/\346\216\210\346\235\203\347\240\2012.0-15.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\346\224\257\344\273\230\347\273\223\346\236\234/\346\216\210\346\235\203\347\240\2012.0-15.png" new file mode 100644 index 0000000..762ef93 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\346\224\257\344\273\230\347\273\223\346\236\234/\346\216\210\346\235\203\347\240\2012.0-15.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\346\224\257\344\273\230\347\273\223\346\236\234/\346\224\257\344\273\230\347\273\223\346\236\234.jpg" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\346\224\257\344\273\230\347\273\223\346\236\234/\346\224\257\344\273\230\347\273\223\346\236\234.jpg" new file mode 100644 index 0000000..08b9e84 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\346\224\257\344\273\230\347\273\223\346\236\234/\346\224\257\344\273\230\347\273\223\346\236\234.jpg" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/add@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/add@2x.png" new file mode 100644 index 0000000..3d0951f Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/add@2x.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/historybtn_normal@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/historybtn_normal@2x.png" new file mode 100644 index 0000000..95cc690 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/historybtn_normal@2x.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/historybtn_pressed@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/historybtn_pressed@2x.png" new file mode 100644 index 0000000..eef2790 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/historybtn_pressed@2x.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/next@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/next@2x.png" new file mode 100644 index 0000000..c799738 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/next@2x.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/\346\216\210\346\235\203\347\240\2012.0-23.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/\346\216\210\346\235\203\347\240\2012.0-23.png" new file mode 100644 index 0000000..c474594 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/\346\216\210\346\235\203\347\240\2012.0-23.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260.jpg" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260.jpg" new file mode 100644 index 0000000..0f9c374 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260.jpg" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\347\272\247\345\210\253\350\257\264\346\230\216/b_btn@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\347\272\247\345\210\253\350\257\264\346\230\216/b_btn@2x.png" new file mode 100644 index 0000000..d3c9099 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\347\272\247\345\210\253\350\257\264\346\230\216/b_btn@2x.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\347\272\247\345\210\253\350\257\264\346\230\216/blue_bg@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\347\272\247\345\210\253\350\257\264\346\230\216/blue_bg@2x.png" new file mode 100644 index 0000000..c6a41b6 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\347\272\247\345\210\253\350\257\264\346\230\216/blue_bg@2x.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\347\272\247\345\210\253\350\257\264\346\230\216/blue_click@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\347\272\247\345\210\253\350\257\264\346\230\216/blue_click@2x.png" new file mode 100644 index 0000000..8057817 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\347\272\247\345\210\253\350\257\264\346\230\216/blue_click@2x.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\347\272\247\345\210\253\350\257\264\346\230\216/g_bg@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\347\272\247\345\210\253\350\257\264\346\230\216/g_bg@2x.png" new file mode 100644 index 0000000..d1898a9 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\347\272\247\345\210\253\350\257\264\346\230\216/g_bg@2x.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\347\272\247\345\210\253\350\257\264\346\230\216/gray_btn@@x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\347\272\247\345\210\253\350\257\264\346\230\216/gray_btn@@x.png" new file mode 100644 index 0000000..18ab641 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\347\272\247\345\210\253\350\257\264\346\230\216/gray_btn@@x.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\347\272\247\345\210\253\350\257\264\346\230\216/green_btn@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\347\272\247\345\210\253\350\257\264\346\230\216/green_btn@2x.png" new file mode 100644 index 0000000..90cad3f Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\347\272\247\345\210\253\350\257\264\346\230\216/green_btn@2x.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\347\272\247\345\210\253\350\257\264\346\230\216/green_click@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\347\272\247\345\210\253\350\257\264\346\230\216/green_click@2x.png" new file mode 100644 index 0000000..d64dcdf Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\347\272\247\345\210\253\350\257\264\346\230\216/green_click@2x.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\347\272\247\345\210\253\350\257\264\346\230\216/id@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\347\272\247\345\210\253\350\257\264\346\230\216/id@2x.png" new file mode 100644 index 0000000..b12a612 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\347\272\247\345\210\253\350\257\264\346\230\216/id@2x.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\347\272\247\345\210\253\350\257\264\346\230\216/next@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\347\272\247\345\210\253\350\257\264\346\230\216/next@2x.png" new file mode 100644 index 0000000..12eca0f Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\347\272\247\345\210\253\350\257\264\346\230\216/next@2x.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\347\272\247\345\210\253\350\257\264\346\230\216/normal@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\347\272\247\345\210\253\350\257\264\346\230\216/normal@2x.png" new file mode 100644 index 0000000..84c7528 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\347\272\247\345\210\253\350\257\264\346\230\216/normal@2x.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\347\272\247\345\210\253\350\257\264\346\230\216/o_bg@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\347\272\247\345\210\253\350\257\264\346\230\216/o_bg@2x.png" new file mode 100644 index 0000000..4282abe Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\347\272\247\345\210\253\350\257\264\346\230\216/o_bg@2x.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\347\272\247\345\210\253\350\257\264\346\230\216/o_btn@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\347\272\247\345\210\253\350\257\264\346\230\216/o_btn@2x.png" new file mode 100644 index 0000000..61e8044 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\347\272\247\345\210\253\350\257\264\346\230\216/o_btn@2x.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\347\272\247\345\210\253\350\257\264\346\230\216/o_click@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\347\272\247\345\210\253\350\257\264\346\230\216/o_click@2x.png" new file mode 100644 index 0000000..525d132 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\347\272\247\345\210\253\350\257\264\346\230\216/o_click@2x.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\347\272\247\345\210\253\350\257\264\346\230\216/phone@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\347\272\247\345\210\253\350\257\264\346\230\216/phone@2x.png" new file mode 100644 index 0000000..e78618a Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\347\272\247\345\210\253\350\257\264\346\230\216/phone@2x.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\347\272\247\345\210\253\350\257\264\346\230\216/picture@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\347\272\247\345\210\253\350\257\264\346\230\216/picture@2x.png" new file mode 100644 index 0000000..2b0fd33 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\347\272\247\345\210\253\350\257\264\346\230\216/picture@2x.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\347\272\247\345\210\253\350\257\264\346\230\216/selected@2x.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\347\272\247\345\210\253\350\257\264\346\230\216/selected@2x.png" new file mode 100644 index 0000000..58c5c73 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\347\272\247\345\210\253\350\257\264\346\230\216/selected@2x.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\347\272\247\345\210\253\350\257\264\346\230\216/\347\224\250\346\210\267\347\272\247\345\210\253\350\257\264\346\230\216.jpg" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\347\272\247\345\210\253\350\257\264\346\230\216/\347\224\250\346\210\267\347\272\247\345\210\253\350\257\264\346\230\216.jpg" new file mode 100644 index 0000000..b9dde26 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/UI\346\226\207\346\241\243/\347\224\250\346\210\267\347\272\247\345\210\253\350\257\264\346\230\216/\347\224\250\346\210\267\347\272\247\345\210\253\350\257\264\346\230\216.jpg" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213.rp" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213.rp" new file mode 100644 index 0000000..aec9639 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213.rp" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/chm_start.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/chm_start.html" new file mode 100644 index 0000000..d4ad31c --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/chm_start.html" @@ -0,0 +1,25 @@ + + + + + +
    +This HTML was created with Axure RP Pro
    +

    Help

    +

    If you are viewing this in the HTML +Help Viewer and would like to open the it in a web browser, click +here.

    +

    Click on a page or flow diagram in the contents +tree to navigate directly to a page or flow diagram in the design.

    +

    Click on note icons + +to display annotations related to the +elements on the screen.

    +

    Some elements on the screen may be interactive. +For example, clicking on a link may take you to another page.

    +

    In some cases a menu will appear displaying +multiple paths a user may take after performing an action. Clicking on an item in that menu will perform the +action for that path.

    + + + \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/data/document.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/data/document.js" new file mode 100644 index 0000000..fc067a4 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/data/document.js" @@ -0,0 +1,1828 @@ +$axure.loadDocument({ + "configuration":{ + "showPageNotes":true, + "showPageNoteNames":false, + "showAnnotations":true, + "linkStyle":"b", + "linkFlowsToPages":true, + "linkFlowsToPagesNewWindow":true, + "hideAddress":false, + "preventScroll":false, + "useLabels":false, + "enabledViewIds":[], + "loadFeedbackPlugin":false}, + "sitemap":{ + "rootNodes":[{ + "pageName":"购买授权码", + "type":"Wireframe", + "url":"购买授权码.html", + "children":[{ + "pageName":"我的授权码", + "type":"Wireframe", + "url":"我的授权码.html"}, +{ + "pageName":"刷卡器获取授权码", + "type":"Wireframe", + "url":"刷卡器获取授权码.html"}, +{ + "pageName":"收银台付款", + "type":"Wireframe", + "url":"收银台付款.html"}, +{ + "pageName":"获得授权码", + "type":"Wireframe", + "url":"获得授权码.html"}, +{ + "pageName":"用户信息登记", + "type":"Wireframe", + "url":"用户信息登记.html", + "children":[{ + "pageName":"用户级别示意", + "type":"Wireframe", + "url":"用户级别示意.html"}]}]}, +{ + "pageName":"代理商分配授权码", + "type":"Wireframe", + "url":"代理商分配授权码.html", + "children":[{ + "pageName":"授权码出售", + "type":"Wireframe", + "url":"授权码出售.html"}, +{ + "pageName":"已分配记录", + "type":"Wireframe", + "url":"已分配记录.html"}]}, +{ + "pageName":"授权码使用界面(有授权码)", + "type":"Wireframe", + "url":"授权码使用界面(有授权码).html"}, +{ + "pageName":"授权码使用界面(无授权码)", + "type":"Wireframe", + "url":"授权码使用界面(无授权码).html"}, +{ + "pageName":"授权码绑定设备(暂时废弃)", + "type":"Wireframe", + "url":"授权码绑定设备(暂时废弃).html", + "children":[{ + "pageName":"我的授权码(已绑定设备)", + "type":"Wireframe", + "url":"我的授权码(已绑定设备).html"}, +{ + "pageName":"我的授权码(未绑定设备)", + "type":"Wireframe", + "url":"我的授权码(未绑定设备).html"}, +{ + "pageName":"我的授权码(绑定验证)", + "type":"Wireframe", + "url":"我的授权码(绑定验证).html"}]}]}, + "globalVariables":{ + "onloadvariable":""}, + "defaultAdaptiveView":{ + "name":"", + "size":{ + "width":0, + "height":0}, + "condition":"<="}, + "adaptiveViews":[], + "stylesheet":{ + "defaultStyles":{ + "buttonShape":{ + "id":"f0bf80b1d23d4b29972009818b671fd2", + "fontName":"'Arial Normal', 'Arial'", + "fontSize":"13px", + "fontWeight":"400", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"center", + "verticalAlignment":"middle", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF333333, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"2", + "paddingBottom":"2", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"1", + "borderFill":{ + "fillType":"solid", + "color":0xFF797979}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "paragraph":{ + "id":"d7a329d81d3d4ec1a9b127f16db8e465", + "fontName":"'Arial Normal', 'Arial'", + "fontSize":"13px", + "fontWeight":"400", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"left", + "verticalAlignment":"top", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF333333, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"0", + "paddingBottom":"0", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "h1":{ + "id":"0d0e202982894eb2968b91edae679aec", + "fontName":"'Arial Negreta', 'Arial'", + "fontSize":"32px", + "fontWeight":"700", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"left", + "verticalAlignment":"top", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF333333, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"0", + "paddingBottom":"0", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "h2":{ + "id":"097eea9a49244a4fac730f5cbacb9eec", + "fontName":"'Arial Negreta', 'Arial'", + "fontSize":"24px", + "fontWeight":"700", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"left", + "verticalAlignment":"top", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF333333, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"0", + "paddingBottom":"0", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "h3":{ + "id":"c7b3f880ce884a25985df8a4ba9c88c3", + "fontName":"'Arial Negreta', 'Arial'", + "fontSize":"18px", + "fontWeight":"700", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"left", + "verticalAlignment":"top", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF333333, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"0", + "paddingBottom":"0", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "h4":{ + "id":"3ca20df3f4bf406cbdb72873f35fbba4", + "fontName":"'Arial Negreta', 'Arial'", + "fontSize":"14px", + "fontWeight":"700", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"left", + "verticalAlignment":"top", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF333333, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"0", + "paddingBottom":"0", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "h5":{ + "id":"ecf0c29590bd4677bc646b23126a610d", + "fontName":"'Arial Negreta', 'Arial'", + "fontSize":"13px", + "fontWeight":"700", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"left", + "verticalAlignment":"top", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF333333, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"0", + "paddingBottom":"0", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "h6":{ + "id":"fca4a2d353c4426e8ee485f69089182a", + "fontName":"'Arial Negreta', 'Arial'", + "fontSize":"10px", + "fontWeight":"700", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"left", + "verticalAlignment":"top", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF333333, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"0", + "paddingBottom":"0", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "imageBox":{ + "id":"740bdd0b20b54bb9a4818bd21ab4da78", + "fontName":"'Arial Normal', 'Arial'", + "fontSize":"13px", + "fontWeight":"400", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"center", + "verticalAlignment":"middle", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF000000, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"2", + "paddingBottom":"2", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF797979}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "hyperlink":{ + "id":"41546c0f68b1458ca5b5c750c67e27eb", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF0000FF, + "opacity":1}, + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false}, + "hyperlinkMouseOver":{ + "id":"f7a00cbe20844eb0a9029cb6360d1ddf", + "underline":true}, + "hyperlinkMouseDown":{ + "id":"3e7b227a07b746c1917a7d6926d073fe"}, + "textBox":{ + "id":"536071a370c44991945e207f5f8aadb2", + "fontName":"'Arial Normal', 'Arial'", + "fontSize":"13px", + "fontWeight":"400", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"left", + "verticalAlignment":"middle", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF000000, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"2", + "paddingBottom":"2", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"1", + "borderFill":{ + "fillType":"solid", + "color":0xFF797979}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "textArea":{ + "id":"da89acd404ca41af969c8b51be386426", + "fontName":"'Arial Normal', 'Arial'", + "fontSize":"13px", + "fontWeight":"400", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"left", + "verticalAlignment":"top", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF000000, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"2", + "paddingBottom":"2", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"1", + "borderFill":{ + "fillType":"solid", + "color":0xFF797979}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "comboBox":{ + "id":"d533764ca907434dbd735414e3b96f34", + "fontName":"'Arial Normal', 'Arial'", + "fontSize":"13px", + "fontWeight":"400", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"left", + "verticalAlignment":"top", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF000000, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"2", + "paddingBottom":"2", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"1", + "borderFill":{ + "fillType":"solid", + "color":0xFF797979}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "listBox":{ + "id":"ab279510b085466eb1ee06af5f45e8e4", + "fontName":"'Arial Normal', 'Arial'", + "fontSize":"13px", + "fontWeight":"400", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"left", + "verticalAlignment":"top", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF000000, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"2", + "paddingBottom":"2", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"1", + "borderFill":{ + "fillType":"solid", + "color":0xFF797979}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "checkbox":{ + "id":"a7137153b9af4a9e943184176497cb9e", + "fontName":"'Arial Normal', 'Arial'", + "fontSize":"13px", + "fontWeight":"400", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"left", + "verticalAlignment":"top", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF333333, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"2", + "paddingBottom":"2", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF797979}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "radioButton":{ + "id":"01de9debdad44381b9af64141f24aa37", + "fontName":"'Arial Normal', 'Arial'", + "fontSize":"13px", + "fontWeight":"400", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"left", + "verticalAlignment":"top", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF333333, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"2", + "paddingBottom":"2", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF797979}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "flowShape":{ + "id":"6ac087addcd54cdfab415f0a834e6124", + "fontName":"'Arial Normal', 'Arial'", + "fontSize":"13px", + "fontWeight":"400", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"center", + "verticalAlignment":"middle", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF333333, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"linearGradient", + "colors":[{ + "color":0xFFFFFFFF}, +{ + "color":0xFFF2F2F2}, +{ + "color":0xFFE4E4E4}, +{ + "color":0xFFFFFFFF}]}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"2", + "paddingBottom":"2", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"1", + "borderFill":{ + "fillType":"solid", + "color":0xFF797979}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "treeNodeObject":{ + "id":"334d66d93bd34ea89b800f6a0abc4e45", + "fontName":"'Arial Normal', 'Arial'", + "fontSize":"13px", + "fontWeight":"400", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"left", + "verticalAlignment":"middle", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF333333, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"2", + "paddingBottom":"2", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF797979}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "button":{ + "id":"4e31c3fb9ef94246b49541911a165cce", + "fontName":"'Arial Normal', 'Arial'", + "fontSize":"13px", + "fontWeight":"400", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"center", + "verticalAlignment":"middle", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF000000, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"2", + "paddingBottom":"2", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"1", + "borderFill":{ + "fillType":"solid", + "color":0xFF797979}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "imageMapRegion":{ + "id":"ea42c07246664611acdde4c0f68842e4", + "fontName":"'Arial Normal', 'Arial'", + "fontSize":"13px", + "fontWeight":"400", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"center", + "verticalAlignment":"middle", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF333333, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"2", + "paddingBottom":"2", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF797979}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "inlineFrame":{ + "id":"57ba595834a54d1f9820065479aa1e2d", + "fontName":"'Arial Normal', 'Arial'", + "fontSize":"13px", + "fontWeight":"400", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"center", + "verticalAlignment":"middle", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF333333, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"2", + "paddingBottom":"2", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF797979}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "dynamicPanel":{ + "id":"c81ad6a82fde4952b9b92256bf0d12ba", + "fontName":"'Arial Normal', 'Arial'", + "fontSize":"13px", + "fontWeight":"400", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"center", + "verticalAlignment":"middle", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF333333, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"2", + "paddingBottom":"2", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF797979}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "referenceDiagramObject":{ + "id":"46471eef7842408cb74b8fef441a16ea", + "fontName":"'Arial Normal', 'Arial'", + "fontSize":"13px", + "fontWeight":"400", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"center", + "verticalAlignment":"middle", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF333333, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"2", + "paddingBottom":"2", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF797979}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "repeater":{ + "id":"eb75b898f9d44f338df51144fb772532", + "fontName":"'Arial Normal', 'Arial'", + "fontSize":"13px", + "fontWeight":"400", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"center", + "verticalAlignment":"middle", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF333333, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"2", + "paddingBottom":"2", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF797979}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "table":{ + "id":"b44d335184784308bce477a1a3328115", + "fontName":"'Arial Normal', 'Arial'", + "fontSize":"13px", + "fontWeight":"400", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"center", + "verticalAlignment":"middle", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF333333, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"2", + "paddingBottom":"2", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"1", + "borderFill":{ + "fillType":"solid", + "color":0xFF797979}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "tableCell":{ + "id":"1b857df9ef93403bbe86e98e7893000a", + "fontName":"'Arial Normal', 'Arial'", + "fontSize":"13px", + "fontWeight":"400", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"left", + "verticalAlignment":"top", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF333333, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"2", + "paddingBottom":"2", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"1", + "borderFill":{ + "fillType":"solid", + "color":0xFF797979}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "menuObject":{ + "id":"72ec6d0b8dc5466481126ce5dce84ff6", + "fontName":"'Arial Normal', 'Arial'", + "fontSize":"13px", + "fontWeight":"400", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"center", + "verticalAlignment":"middle", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF000000, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"2", + "paddingBottom":"2", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"1", + "borderFill":{ + "fillType":"solid", + "color":0xFF797979}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "horizontalLine":{ + "id":"ac38a2ce407a4909866a8151c87de948", + "fontName":"'Arial Normal', 'Arial'", + "fontSize":"13px", + "fontWeight":"400", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"center", + "verticalAlignment":"middle", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF333333, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"2", + "paddingBottom":"2", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "verticalLine":{ + "id":"5d1d74d5dbba43838a4e680a2e797f8f", + "fontName":"'Arial Normal', 'Arial'", + "fontSize":"13px", + "fontWeight":"400", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"center", + "verticalAlignment":"middle", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF333333, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"2", + "paddingBottom":"2", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}, + "connector":{ + "id":"b36bc3827a4c4f34b766b1dad31192cc", + "fontName":"'Arial Normal', 'Arial'", + "fontSize":"13px", + "fontWeight":"400", + "fontStyle":"normal", + "underline":false, + "horizontalAlignment":"center", + "verticalAlignment":"middle", + "foreGroundFill":{ + "fillType":"solid", + "color":0xFF333333, + "opacity":1}, + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "lineSpacing":"0px", + "stateStyles":{ +}, + "opacity":"1", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "textShadow":{ + "on":false, + "offsetX":1, + "offsetY":1, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.647058823529412}}, + "paddingTop":"2", + "paddingBottom":"2", + "location":{ + "x":0, + "y":0}, + "size":{ + "width":0, + "height":0}, + "visible":true, + "limbo":false, + "rotation":"0", + "textRotation":"0", + "borderWidth":"1", + "borderFill":{ + "fillType":"solid", + "color":0xFF0099CC}, + "linePattern":"solid", + "cornerRadiusTopLeft":"0", + "outerShadow":{ + "on":false, + "offsetX":5, + "offsetY":5, + "blurRadius":5, + "color":{ + "r":0, + "g":0, + "b":0, + "a":0.349019607843137}}}}, + "customStyles":{ +}}}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/data/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/data/styles.css" new file mode 100644 index 0000000..bc4b8bb --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/data/styles.css" @@ -0,0 +1,268 @@ +.ax_形状 { + font-family:'Arial Normal', 'Arial'; + font-weight:400; + font-style:normal; + font-size:13px; + color:#333333; + text-align:center; + line-height:normal; +} +.ax_文本 { + font-family:'Arial Normal', 'Arial'; + font-weight:400; + font-style:normal; + font-size:13px; + color:#333333; + text-align:left; + line-height:normal; +} +.ax_h1 { + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + font-style:normal; + font-size:32px; + color:#333333; + text-align:left; + line-height:normal; +} +.ax_h2 { + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + font-style:normal; + font-size:24px; + color:#333333; + text-align:left; + line-height:normal; +} +.ax_h3 { + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + font-style:normal; + font-size:18px; + color:#333333; + text-align:left; + line-height:normal; +} +.ax_h4 { + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + font-style:normal; + font-size:14px; + color:#333333; + text-align:left; + line-height:normal; +} +.ax_h5 { + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + font-style:normal; + font-size:13px; + color:#333333; + text-align:left; + line-height:normal; +} +.ax_h6 { + font-family:'Arial Negreta', 'Arial'; + font-weight:700; + font-style:normal; + font-size:10px; + color:#333333; + text-align:left; + line-height:normal; +} +.ax_图片 { + font-family:'Arial Normal', 'Arial'; + font-weight:400; + font-style:normal; + font-size:13px; + color:#000000; + text-align:center; + line-height:normal; +} +.ax_文本链接 { + color:#0000FF; +} +.ax_鼠标悬停文本链接 { +} +.ax_鼠标按下文本链接 { +} +.ax_文本框_单行_ { + font-family:'Arial Normal', 'Arial'; + font-weight:400; + font-style:normal; + font-size:13px; + color:#000000; + text-align:left; + line-height:normal; +} +.ax_文本框_多行_ { + font-family:'Arial Normal', 'Arial'; + font-weight:400; + font-style:normal; + font-size:13px; + color:#000000; + text-align:left; + line-height:normal; +} +.ax_下拉列表框 { + font-family:'Arial Normal', 'Arial'; + font-weight:400; + font-style:normal; + font-size:13px; + color:#000000; + text-align:left; + line-height:normal; +} +.ax_列表选择框 { + font-family:'Arial Normal', 'Arial'; + font-weight:400; + font-style:normal; + font-size:13px; + color:#000000; + text-align:left; + line-height:normal; +} +.ax_复选框 { + font-family:'Arial Normal', 'Arial'; + font-weight:400; + font-style:normal; + font-size:13px; + color:#333333; + text-align:left; + line-height:normal; +} +.ax_单选框 { + font-family:'Arial Normal', 'Arial'; + font-weight:400; + font-style:normal; + font-size:13px; + color:#333333; + text-align:left; + line-height:normal; +} +.ax_流程形状 { + font-family:'Arial Normal', 'Arial'; + font-weight:400; + font-style:normal; + font-size:13px; + color:#333333; + text-align:center; + line-height:normal; +} +.ax_树节点 { + font-family:'Arial Normal', 'Arial'; + font-weight:400; + font-style:normal; + font-size:13px; + color:#333333; + text-align:left; + line-height:normal; +} +.ax_html_button { + font-family:'Arial Normal', 'Arial'; + font-weight:400; + font-style:normal; + font-size:13px; + color:#000000; + text-align:center; + line-height:normal; +} +.ax_hot_spot { + font-family:'Arial Normal', 'Arial'; + font-weight:400; + font-style:normal; + font-size:13px; + color:#333333; + text-align:center; + line-height:normal; +} +.ax_内部框架 { + font-family:'Arial Normal', 'Arial'; + font-weight:400; + font-style:normal; + font-size:13px; + color:#333333; + text-align:center; + line-height:normal; +} +.ax_动态面板 { + font-family:'Arial Normal', 'Arial'; + font-weight:400; + font-style:normal; + font-size:13px; + color:#333333; + text-align:center; + line-height:normal; +} +.ax_编辑选项 { + font-family:'Arial Normal', 'Arial'; + font-weight:400; + font-style:normal; + font-size:13px; + color:#333333; + text-align:center; + line-height:normal; +} +.ax_中继器 { + font-family:'Arial Normal', 'Arial'; + font-weight:400; + font-style:normal; + font-size:13px; + color:#333333; + text-align:center; + line-height:normal; +} +.ax_表格 { + font-family:'Arial Normal', 'Arial'; + font-weight:400; + font-style:normal; + font-size:13px; + color:#333333; + text-align:center; + line-height:normal; +} +.ax_表格单元 { + font-family:'Arial Normal', 'Arial'; + font-weight:400; + font-style:normal; + font-size:13px; + color:#333333; + text-align:left; + line-height:normal; +} +.ax_菜单 { + font-family:'Arial Normal', 'Arial'; + font-weight:400; + font-style:normal; + font-size:13px; + color:#000000; + text-align:center; + line-height:normal; +} +.ax_水平线 { + font-family:'Arial Normal', 'Arial'; + font-weight:400; + font-style:normal; + font-size:13px; + color:#333333; + text-align:center; + line-height:normal; +} +.ax_垂直线 { + font-family:'Arial Normal', 'Arial'; + font-weight:400; + font-style:normal; + font-size:13px; + color:#333333; + text-align:center; + line-height:normal; +} +.ax_connector { + font-family:'Arial Normal', 'Arial'; + font-weight:400; + font-style:normal; + font-size:13px; + color:#333333; + text-align:center; + line-height:normal; +} diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\344\273\243\347\220\206\345\225\206\345\210\206\351\205\215\346\216\210\346\235\203\347\240\201/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\344\273\243\347\220\206\345\225\206\345\210\206\351\205\215\346\216\210\346\235\203\347\240\201/data.js" new file mode 100644 index 0000000..538ceeb --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\344\273\243\347\220\206\345\225\206\345\210\206\351\205\215\346\216\210\346\235\203\347\240\201/data.js" @@ -0,0 +1,638 @@ +$axure.loadCurrentPage({ + "url":"代理商分配授权码.html", + "generationDate":new Date(1416631107375), + "isCanvasEnabled":false, + "variables":["OnLoadVariable"], + "page":{ + "packageId":"66f25c3f90e84bd6b6c625aa7c555123", + "type":"Axure:Page", + "name":"代理商分配授权码", + "notes":{ +}, + "style":{ + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "pageAlignment":"near", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "image":null, + "imageHorizontalAlignment":"near", + "imageVerticalAlignment":"near", + "imageRepeat":"auto", + "favicon":null, + "sketchFactor":"0", + "colorStyle":"appliedColor", + "fontName":"Applied Font", + "borderWidth":"0"}, + "adaptiveStyles":{ +}, + "interactionMap":{ +}, + "diagram":{ + "objects":[{ + "id":"f2224b1254594005929e32f48cf35d30", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":30, + "y":20}, + "size":{ + "width":380, + "height":744}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ef034a122cfb405c87bd012bf8e5b6be", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":30, + "y":20}, + "size":{ + "width":380, + "height":744}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/购买授权码/u0.png"}}, +{ + "id":"f8a00e8ba35d4fff9cfa58fb26884bbf", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":62, + "y":163}, + "size":{ + "width":308, + "height":13}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a96cf75000e24ad58a071749db203cc6", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":62, + "y":163}, + "size":{ + "width":308, + "height":13}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/购买授权码/u2.png"}}, +{ + "id":"891c19ecfe1f4f6387c5602196b4b503", + "label":"", + "type":"buttonShape", + "styleType":"h1", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":166.5, + "y":193}, + "size":{ + "width":177, + "height":37}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"3746b5eb27604bedb7a97472e26cecd2", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":166.5, + "y":193}, + "size":{ + "width":177, + "height":37}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"f897b0b3addc4464b40e362dc4f731e1", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":70, + "y":360}, + "size":{ + "width":300, + "height":70}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"f666b06c6d674f19b78529eca7fe8944", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":70, + "y":360}, + "size":{ + "width":300, + "height":70}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/代理商分配授权码/u6.png"}}, +{ + "id":"ff651c157d32449fb4a81d92e4670c72", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":70, + "y":263}, + "size":{ + "width":300, + "height":87}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c994f250d6fd426e9cfc22b2ad9fd43b", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":70, + "y":263}, + "size":{ + "width":300, + "height":87}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/代理商分配授权码/u8.png"}}, +{ + "id":"b7b4c32b35654af788786603c612ee61", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":80, + "y":460}, + "size":{ + "width":70, + "height":70}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d9cd443640ed462fad966a4e39420781", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":80, + "y":460}, + "size":{ + "width":70, + "height":70}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/代理商分配授权码/u10.png"}}, +{ + "id":"03109b7cfe7b423f81ceb30e04dba598", + "label":"", + "type":"horizontalLine", + "styleType":"horizontalLine", + "visible":true, + "style":{ + "location":{ + "x":70, + "y":440}, + "size":{ + "width":300, + "height":10}}, + "adaptiveStyles":{ +}, + "images":{ + "start~":"resources/images/transparent.gif", + "end~":"resources/images/transparent.gif", + "line~":"images/代理商分配授权码/u12_line.png"}}, +{ + "id":"5f2f1bebc8154b0586b38f73b01b421e", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":150, + "y":460}, + "size":{ + "width":70, + "height":70}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"36199fb767fa4ca3a796116eea1ca2d1", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":150, + "y":460}, + "size":{ + "width":70, + "height":70}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/代理商分配授权码/u10.png"}}, +{ + "id":"3d373267ed6d4a2aa3cc12f1215e4103", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":220, + "y":460}, + "size":{ + "width":70, + "height":70}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"082886b4966b4647af7386758258e310", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":220, + "y":460}, + "size":{ + "width":70, + "height":70}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/代理商分配授权码/u10.png"}}, +{ + "id":"fc433715859b485db3c261293354dc38", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":290, + "y":460}, + "size":{ + "width":70, + "height":70}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"e4801d354766499a9c3dda9c03bc77bc", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":290, + "y":460}, + "size":{ + "width":70, + "height":70}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 授权码出售", + "target":{ + "targetType":"page", + "url":"授权码出售.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true, + "images":{ + "normal~":"images/代理商分配授权码/u10.png"}}, +{ + "id":"aad9dda5463b4052a95cf0d7150a2216", + "label":"", + "type":"buttonShape", + "styleType":"h1", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "fontSize":"14px", + "location":{ + "x":70, + "y":203}, + "size":{ + "width":86, + "height":27}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"1db5c9d3f3ac46c1a29ded870037805a", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "fontSize":"14px", + "location":{ + "x":70, + "y":203}, + "size":{ + "width":86, + "height":27}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"6786bc08897f43dca202fba764bada41", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":80, + "y":530}, + "size":{ + "width":70, + "height":70}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"f018be1a54e845d2a732bb339fb4dca3", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":80, + "y":530}, + "size":{ + "width":70, + "height":70}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/代理商分配授权码/u10.png"}}, +{ + "id":"4af8caad95934a36a0c4aca205dc4fb4", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":150, + "y":530}, + "size":{ + "width":70, + "height":70}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ab7ffb3f67554249b54caf77cc42a92b", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":150, + "y":530}, + "size":{ + "width":70, + "height":70}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/代理商分配授权码/u10.png"}}, +{ + "id":"529483374baa4d37814ea6c976d3d5c4", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":220, + "y":530}, + "size":{ + "width":70, + "height":70}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"e21607a05c5f42eabd819b72f29005ea", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":220, + "y":530}, + "size":{ + "width":70, + "height":70}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/代理商分配授权码/u10.png"}}, +{ + "id":"08b1981241a24894b19b909c120f109e", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":290, + "y":530}, + "size":{ + "width":70, + "height":70}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"fc9565fa3ea548b0b1afa8fbfa5b2bf8", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":290, + "y":530}, + "size":{ + "width":70, + "height":70}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/代理商分配授权码/u10.png"}}]}}, + "masters":{ +}, + "objectPaths":{ + "f2224b1254594005929e32f48cf35d30":{ + "scriptId":"u0"}, + "ef034a122cfb405c87bd012bf8e5b6be":{ + "scriptId":"u1"}, + "f8a00e8ba35d4fff9cfa58fb26884bbf":{ + "scriptId":"u2"}, + "a96cf75000e24ad58a071749db203cc6":{ + "scriptId":"u3"}, + "891c19ecfe1f4f6387c5602196b4b503":{ + "scriptId":"u4"}, + "3746b5eb27604bedb7a97472e26cecd2":{ + "scriptId":"u5"}, + "f897b0b3addc4464b40e362dc4f731e1":{ + "scriptId":"u6"}, + "f666b06c6d674f19b78529eca7fe8944":{ + "scriptId":"u7"}, + "ff651c157d32449fb4a81d92e4670c72":{ + "scriptId":"u8"}, + "c994f250d6fd426e9cfc22b2ad9fd43b":{ + "scriptId":"u9"}, + "b7b4c32b35654af788786603c612ee61":{ + "scriptId":"u10"}, + "d9cd443640ed462fad966a4e39420781":{ + "scriptId":"u11"}, + "03109b7cfe7b423f81ceb30e04dba598":{ + "scriptId":"u12"}, + "5f2f1bebc8154b0586b38f73b01b421e":{ + "scriptId":"u13"}, + "36199fb767fa4ca3a796116eea1ca2d1":{ + "scriptId":"u14"}, + "3d373267ed6d4a2aa3cc12f1215e4103":{ + "scriptId":"u15"}, + "082886b4966b4647af7386758258e310":{ + "scriptId":"u16"}, + "fc433715859b485db3c261293354dc38":{ + "scriptId":"u17"}, + "e4801d354766499a9c3dda9c03bc77bc":{ + "scriptId":"u18"}, + "aad9dda5463b4052a95cf0d7150a2216":{ + "scriptId":"u19"}, + "1db5c9d3f3ac46c1a29ded870037805a":{ + "scriptId":"u20"}, + "6786bc08897f43dca202fba764bada41":{ + "scriptId":"u21"}, + "f018be1a54e845d2a732bb339fb4dca3":{ + "scriptId":"u22"}, + "4af8caad95934a36a0c4aca205dc4fb4":{ + "scriptId":"u23"}, + "ab7ffb3f67554249b54caf77cc42a92b":{ + "scriptId":"u24"}, + "529483374baa4d37814ea6c976d3d5c4":{ + "scriptId":"u25"}, + "e21607a05c5f42eabd819b72f29005ea":{ + "scriptId":"u26"}, + "08b1981241a24894b19b909c120f109e":{ + "scriptId":"u27"}, + "fc9565fa3ea548b0b1afa8fbfa5b2bf8":{ + "scriptId":"u28"}}}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\344\273\243\347\220\206\345\225\206\345\210\206\351\205\215\346\216\210\346\235\203\347\240\201/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\344\273\243\347\220\206\345\225\206\345\210\206\351\205\215\346\216\210\346\235\203\347\240\201/styles.css" new file mode 100644 index 0000000..a4d5200 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\344\273\243\347\220\206\345\225\206\345\210\206\351\205\215\346\216\210\346\235\203\347\240\201/styles.css" @@ -0,0 +1,341 @@ +body { + margin:0px; + background-image:none; + position:static; + left:auto; + width:410px; + margin-left:0; + margin-right:0; + text-align:left; +} +#base { + position:absolute; + z-index:0; +} +#u0 { + position:absolute; + left:30px; + top:20px; + width:380px; + height:744px; +} +#u0_img { + position:absolute; + left:0px; + top:0px; + width:380px; + height:744px; +} +#u1 { + position:absolute; + left:2px; + top:364px; + width:376px; + visibility:hidden; + word-wrap:break-word; +} +#u2 { + position:absolute; + left:62px; + top:163px; + width:308px; + height:13px; +} +#u2_img { + position:absolute; + left:0px; + top:0px; + width:308px; + height:13px; +} +#u3 { + position:absolute; + left:2px; + top:-2px; + width:304px; + visibility:hidden; + word-wrap:break-word; +} +#u4 { + position:absolute; + left:166px; + top:193px; + width:177px; + height:37px; +} +#u4_img { + position:absolute; + left:0px; + top:0px; + width:177px; + height:37px; +} +#u5 { + position:absolute; + left:0px; + top:0px; + width:177px; + word-wrap:break-word; +} +#u6 { + position:absolute; + left:70px; + top:360px; + width:300px; + height:70px; + text-align:left; +} +#u6_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:70px; +} +#u7 { + position:absolute; + left:2px; + top:19px; + width:296px; + word-wrap:break-word; +} +#u8 { + position:absolute; + left:70px; + top:263px; + width:300px; + height:87px; + text-align:left; +} +#u8_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:87px; +} +#u9 { + position:absolute; + left:2px; + top:4px; + width:296px; + word-wrap:break-word; +} +#u10 { + position:absolute; + left:80px; + top:460px; + width:70px; + height:70px; +} +#u10_img { + position:absolute; + left:0px; + top:0px; + width:70px; + height:70px; +} +#u11 { + position:absolute; + left:2px; + top:27px; + width:66px; + word-wrap:break-word; +} +#u12 { + position:absolute; + left:70px; + top:440px; + width:300px; + height:10px; +} +#u12_start { + position:absolute; + left:0px; + top:-5px; + width:18px; + height:20px; +} +#u12_end { + position:absolute; + left:283px; + top:-5px; + width:18px; + height:20px; +} +#u12_line { + position:absolute; + left:0px; + top:5px; + width:300px; + height:1px; +} +#u13 { + position:absolute; + left:150px; + top:460px; + width:70px; + height:70px; +} +#u13_img { + position:absolute; + left:0px; + top:0px; + width:70px; + height:70px; +} +#u14 { + position:absolute; + left:2px; + top:27px; + width:66px; + word-wrap:break-word; +} +#u15 { + position:absolute; + left:220px; + top:460px; + width:70px; + height:70px; +} +#u15_img { + position:absolute; + left:0px; + top:0px; + width:70px; + height:70px; +} +#u16 { + position:absolute; + left:2px; + top:27px; + width:66px; + word-wrap:break-word; +} +#u17 { + position:absolute; + left:290px; + top:460px; + width:70px; + height:70px; +} +#u17_img { + position:absolute; + left:0px; + top:0px; + width:70px; + height:70px; +} +#u18 { + position:absolute; + left:2px; + top:27px; + width:66px; + word-wrap:break-word; +} +#u19 { + position:absolute; + left:70px; + top:203px; + width:86px; + height:27px; + font-size:14px; +} +#u19_img { + position:absolute; + left:0px; + top:0px; + width:86px; + height:27px; +} +#u20 { + position:absolute; + left:0px; + top:0px; + width:86px; + word-wrap:break-word; +} +#u21 { + position:absolute; + left:80px; + top:530px; + width:70px; + height:70px; +} +#u21_img { + position:absolute; + left:0px; + top:0px; + width:70px; + height:70px; +} +#u22 { + position:absolute; + left:2px; + top:27px; + width:66px; + word-wrap:break-word; +} +#u23 { + position:absolute; + left:150px; + top:530px; + width:70px; + height:70px; +} +#u23_img { + position:absolute; + left:0px; + top:0px; + width:70px; + height:70px; +} +#u24 { + position:absolute; + left:2px; + top:27px; + width:66px; + word-wrap:break-word; +} +#u25 { + position:absolute; + left:220px; + top:530px; + width:70px; + height:70px; +} +#u25_img { + position:absolute; + left:0px; + top:0px; + width:70px; + height:70px; +} +#u26 { + position:absolute; + left:2px; + top:27px; + width:66px; + word-wrap:break-word; +} +#u27 { + position:absolute; + left:290px; + top:530px; + width:70px; + height:70px; +} +#u27_img { + position:absolute; + left:0px; + top:0px; + width:70px; + height:70px; +} +#u28 { + position:absolute; + left:2px; + top:27px; + width:66px; + word-wrap:break-word; +} diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/data.js" new file mode 100644 index 0000000..200d2ef --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/data.js" @@ -0,0 +1,616 @@ +$axure.loadCurrentPage({ + "url":"刷卡器获取授权码.html", + "generationDate":new Date(1416631106843.75), + "isCanvasEnabled":false, + "variables":["OnLoadVariable"], + "page":{ + "packageId":"7fd33a96dfa74f528325d5097faa084a", + "type":"Axure:Page", + "name":"刷卡器获取授权码", + "notes":{ +}, + "style":{ + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "pageAlignment":"near", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "image":null, + "imageHorizontalAlignment":"near", + "imageVerticalAlignment":"near", + "imageRepeat":"auto", + "favicon":null, + "sketchFactor":"0", + "colorStyle":"appliedColor", + "fontName":"Applied Font", + "borderWidth":"0"}, + "adaptiveStyles":{ +}, + "interactionMap":{ +}, + "diagram":{ + "objects":[{ + "id":"de7bbe0d583b479ebe0c1f25248657a6", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":30, + "y":20}, + "size":{ + "width":380, + "height":744}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"6ed7f7f69c50460a865fdb768f4f1ce8", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":30, + "y":20}, + "size":{ + "width":380, + "height":744}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/购买授权码/u0.png"}}, +{ + "id":"16ab17687c1a428d9e11a5e955420497", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":62, + "y":163}, + "size":{ + "width":308, + "height":13}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"83fd5768576d4673a1ee7eed420c227d", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":62, + "y":163}, + "size":{ + "width":308, + "height":13}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/购买授权码/u2.png"}}, +{ + "id":"fd635b93a2004d2b873af238369eecf6", + "label":"", + "type":"buttonShape", + "styleType":"h1", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":150, + "y":194}, + "size":{ + "width":177, + "height":37}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"8d004ffa8ecf42c4a1dacda2345eca94", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":150, + "y":194}, + "size":{ + "width":177, + "height":37}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"f5d33db5c4e148feab92ff3f18056515", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":86, + "y":260}, + "size":{ + "width":260, + "height":40}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ecad1cee42bf4fdca3d2f5cad0a3fe93", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":86, + "y":260}, + "size":{ + "width":260, + "height":40}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/刷卡器获取授权码/u6.png"}}, +{ + "id":"2a82e9880a4c4104a50a96cbddbd322b", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":198}, + "size":{ + "width":30, + "height":29}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d615cae5a3044bf9af3e7b999b16be43", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":198}, + "size":{ + "width":30, + "height":29}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 我的授权码(已绑定设备)", + "target":{ + "targetType":"page", + "url":"我的授权码(已绑定设备).html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true, + "images":{ + "normal~":"images/购买授权码/u21.png"}}, +{ + "id":"63fb7a1a60f7420494884067bb5041ac", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":170, + "y":377}, + "size":{ + "width":100, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a0625f98ec4a4ab0ac404be443d10747", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":170, + "y":377}, + "size":{ + "width":100, + "height":30}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 我的授权码(已绑定设备)", + "target":{ + "targetType":"page", + "url":"我的授权码(已绑定设备).html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true, + "images":{ + "normal~":"images/刷卡器获取授权码/u10.png"}}, +{ + "id":"4242ae44e99d45c49dd4f1b1ee015b15", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":86, + "y":320}, + "size":{ + "width":180, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"3d9f214d8d8040058bb9aef8fbdbd727", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":86, + "y":320}, + "size":{ + "width":180, + "height":30}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/刷卡器获取授权码/u12.png"}}, +{ + "id":"6085a16a236d404a8bf481a2a3c1a432", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":280, + "y":320}, + "size":{ + "width":70, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"35d4126c600a4d1c9a005c927d2ff0ed", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":280, + "y":320}, + "size":{ + "width":70, + "height":30}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/刷卡器获取授权码/u14.png"}}, +{ + "id":"54f8aeeeb67a4496a9bd6ebf937373db", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":430, + "y":260}, + "size":{ + "width":250, + "height":40}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c28f04e761154110ae53df51e0c3f578", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":430, + "y":260}, + "size":{ + "width":250, + "height":40}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/刷卡器获取授权码/u16.png"}}, +{ + "id":"670a1c57fc66473fa8e8076201e39358", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":430, + "y":320}, + "size":{ + "width":250, + "height":100}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"1de0c4ee0d844fb984484ddbbaf13dd9", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":430, + "y":320}, + "size":{ + "width":250, + "height":100}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/刷卡器获取授权码/u18.png"}}, +{ + "id":"9da2a6afcefe4536ab2d2c5e8600893b", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":430, + "y":430}, + "size":{ + "width":250, + "height":80}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a5322dcebf1a44e68906dc26da9f0e74", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":430, + "y":430}, + "size":{ + "width":250, + "height":80}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/刷卡器获取授权码/u20.png"}}, +{ + "id":"73867276e4404ead8528270b107a4156", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":430, + "y":530}, + "size":{ + "width":250, + "height":90}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"bffbf980c8504944bcee43724f4bd1bb", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":430, + "y":530}, + "size":{ + "width":250, + "height":90}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/刷卡器获取授权码/u22.png"}}, +{ + "id":"4049f868163f42178d19dd5f117ecd98", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":520, + "y":580}, + "size":{ + "width":70, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"bc23f8b46227459b95584207f7267232", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":520, + "y":580}, + "size":{ + "width":70, + "height":30}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 用户信息登记", + "target":{ + "targetType":"page", + "url":"用户信息登记.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true, + "images":{ + "normal~":"images/刷卡器获取授权码/u14.png"}}]}}, + "masters":{ +}, + "objectPaths":{ + "de7bbe0d583b479ebe0c1f25248657a6":{ + "scriptId":"u0"}, + "6ed7f7f69c50460a865fdb768f4f1ce8":{ + "scriptId":"u1"}, + "16ab17687c1a428d9e11a5e955420497":{ + "scriptId":"u2"}, + "83fd5768576d4673a1ee7eed420c227d":{ + "scriptId":"u3"}, + "fd635b93a2004d2b873af238369eecf6":{ + "scriptId":"u4"}, + "8d004ffa8ecf42c4a1dacda2345eca94":{ + "scriptId":"u5"}, + "f5d33db5c4e148feab92ff3f18056515":{ + "scriptId":"u6"}, + "ecad1cee42bf4fdca3d2f5cad0a3fe93":{ + "scriptId":"u7"}, + "2a82e9880a4c4104a50a96cbddbd322b":{ + "scriptId":"u8"}, + "d615cae5a3044bf9af3e7b999b16be43":{ + "scriptId":"u9"}, + "63fb7a1a60f7420494884067bb5041ac":{ + "scriptId":"u10"}, + "a0625f98ec4a4ab0ac404be443d10747":{ + "scriptId":"u11"}, + "4242ae44e99d45c49dd4f1b1ee015b15":{ + "scriptId":"u12"}, + "3d9f214d8d8040058bb9aef8fbdbd727":{ + "scriptId":"u13"}, + "6085a16a236d404a8bf481a2a3c1a432":{ + "scriptId":"u14"}, + "35d4126c600a4d1c9a005c927d2ff0ed":{ + "scriptId":"u15"}, + "54f8aeeeb67a4496a9bd6ebf937373db":{ + "scriptId":"u16"}, + "c28f04e761154110ae53df51e0c3f578":{ + "scriptId":"u17"}, + "670a1c57fc66473fa8e8076201e39358":{ + "scriptId":"u18"}, + "1de0c4ee0d844fb984484ddbbaf13dd9":{ + "scriptId":"u19"}, + "9da2a6afcefe4536ab2d2c5e8600893b":{ + "scriptId":"u20"}, + "a5322dcebf1a44e68906dc26da9f0e74":{ + "scriptId":"u21"}, + "73867276e4404ead8528270b107a4156":{ + "scriptId":"u22"}, + "bffbf980c8504944bcee43724f4bd1bb":{ + "scriptId":"u23"}, + "4049f868163f42178d19dd5f117ecd98":{ + "scriptId":"u24"}, + "bc23f8b46227459b95584207f7267232":{ + "scriptId":"u25"}}}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/styles.css" new file mode 100644 index 0000000..26db72c --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/styles.css" @@ -0,0 +1,296 @@ +body { + margin:0px; + background-image:none; + position:static; + left:auto; + width:680px; + margin-left:0; + margin-right:0; + text-align:left; +} +#base { + position:absolute; + z-index:0; +} +#u0 { + position:absolute; + left:30px; + top:20px; + width:380px; + height:744px; +} +#u0_img { + position:absolute; + left:0px; + top:0px; + width:380px; + height:744px; +} +#u1 { + position:absolute; + left:2px; + top:364px; + width:376px; + visibility:hidden; + word-wrap:break-word; +} +#u2 { + position:absolute; + left:62px; + top:163px; + width:308px; + height:13px; +} +#u2_img { + position:absolute; + left:0px; + top:0px; + width:308px; + height:13px; +} +#u3 { + position:absolute; + left:2px; + top:-2px; + width:304px; + visibility:hidden; + word-wrap:break-word; +} +#u4 { + position:absolute; + left:150px; + top:194px; + width:177px; + height:37px; +} +#u4_img { + position:absolute; + left:0px; + top:0px; + width:177px; + height:37px; +} +#u5 { + position:absolute; + left:0px; + top:0px; + width:177px; + word-wrap:break-word; +} +#u6 { + position:absolute; + left:86px; + top:260px; + width:260px; + height:40px; + text-align:left; +} +#u6_img { + position:absolute; + left:0px; + top:0px; + width:260px; + height:40px; +} +#u7 { + position:absolute; + left:2px; + top:12px; + width:256px; + word-wrap:break-word; +} +#u8 { + position:absolute; + left:90px; + top:198px; + width:30px; + height:29px; + text-align:left; +} +#u8_img { + position:absolute; + left:0px; + top:0px; + width:30px; + height:29px; +} +#u9 { + position:absolute; + left:2px; + top:6px; + width:26px; + word-wrap:break-word; +} +#u10 { + position:absolute; + left:170px; + top:377px; + width:100px; + height:30px; +} +#u10_img { + position:absolute; + left:0px; + top:0px; + width:100px; + height:30px; +} +#u11 { + position:absolute; + left:2px; + top:7px; + width:96px; + word-wrap:break-word; +} +#u12 { + position:absolute; + left:86px; + top:320px; + width:180px; + height:30px; + text-align:left; +} +#u12_img { + position:absolute; + left:0px; + top:0px; + width:180px; + height:30px; +} +#u13 { + position:absolute; + left:2px; + top:7px; + width:176px; + word-wrap:break-word; +} +#u14 { + position:absolute; + left:280px; + top:320px; + width:70px; + height:30px; +} +#u14_img { + position:absolute; + left:0px; + top:0px; + width:70px; + height:30px; +} +#u15 { + position:absolute; + left:2px; + top:7px; + width:66px; + word-wrap:break-word; +} +#u16 { + position:absolute; + left:430px; + top:260px; + width:250px; + height:40px; + text-align:left; +} +#u16_img { + position:absolute; + left:0px; + top:0px; + width:250px; + height:40px; +} +#u17 { + position:absolute; + left:2px; + top:12px; + width:246px; + word-wrap:break-word; +} +#u18 { + position:absolute; + left:430px; + top:320px; + width:250px; + height:100px; + text-align:left; +} +#u18_img { + position:absolute; + left:0px; + top:0px; + width:250px; + height:100px; +} +#u19 { + position:absolute; + left:2px; + top:18px; + width:246px; + word-wrap:break-word; +} +#u20 { + position:absolute; + left:430px; + top:430px; + width:250px; + height:80px; + text-align:left; +} +#u20_img { + position:absolute; + left:0px; + top:0px; + width:250px; + height:80px; +} +#u21 { + position:absolute; + left:2px; + top:8px; + width:246px; + word-wrap:break-word; +} +#u22 { + position:absolute; + left:430px; + top:530px; + width:250px; + height:90px; + text-align:left; +} +#u22_img { + position:absolute; + left:0px; + top:0px; + width:250px; + height:90px; +} +#u23 { + position:absolute; + left:2px; + top:5px; + width:246px; + word-wrap:break-word; +} +#u24 { + position:absolute; + left:520px; + top:580px; + width:70px; + height:30px; +} +#u24_img { + position:absolute; + left:0px; + top:0px; + width:70px; + height:30px; +} +#u25 { + position:absolute; + left:2px; + top:7px; + width:66px; + word-wrap:break-word; +} diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\345\267\262\345\210\206\351\205\215\350\256\260\345\275\225/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\345\267\262\345\210\206\351\205\215\350\256\260\345\275\225/data.js" new file mode 100644 index 0000000..83e2126 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\345\267\262\345\210\206\351\205\215\350\256\260\345\275\225/data.js" @@ -0,0 +1,266 @@ +$axure.loadCurrentPage({ + "url":"已分配记录.html", + "generationDate":new Date(1416631107484.38), + "isCanvasEnabled":false, + "variables":["OnLoadVariable"], + "page":{ + "packageId":"1db664a85c65441badd4e3b339a186b8", + "type":"Axure:Page", + "name":"已分配记录", + "notes":{ +}, + "style":{ + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "pageAlignment":"near", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "image":null, + "imageHorizontalAlignment":"near", + "imageVerticalAlignment":"near", + "imageRepeat":"auto", + "favicon":null, + "sketchFactor":"0", + "colorStyle":"appliedColor", + "fontName":"Applied Font", + "borderWidth":"0"}, + "adaptiveStyles":{ +}, + "interactionMap":{ +}, + "diagram":{ + "objects":[{ + "id":"6c05684279ab47a4bf87490560311406", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":30, + "y":20}, + "size":{ + "width":380, + "height":744}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"b7e7ccc5f7c54849bbefe7c2ae1dadc1", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":30, + "y":20}, + "size":{ + "width":380, + "height":744}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/购买授权码/u0.png"}}, +{ + "id":"891ad7159616494484f2df686ffe4cc3", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":62, + "y":163}, + "size":{ + "width":308, + "height":13}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d8594de556804259b3729795702210d5", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":62, + "y":163}, + "size":{ + "width":308, + "height":13}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/购买授权码/u2.png"}}, +{ + "id":"d7a4156fdb3846bbaa425640d3444270", + "label":"", + "type":"buttonShape", + "styleType":"h1", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "fontSize":"28px", + "location":{ + "x":166, + "y":193}, + "size":{ + "width":154, + "height":33}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"cb2266b99f7546e28e327e113f9022b2", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "fontSize":"28px", + "location":{ + "x":166, + "y":193}, + "size":{ + "width":154, + "height":33}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"b8a7383dcc9146a197619e54d26b7644", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":70, + "y":236}, + "size":{ + "width":300, + "height":134}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"455f77f1f32c4f93b45c33b08a167115", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":70, + "y":236}, + "size":{ + "width":300, + "height":134}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/已分配记录/u6.png"}}, +{ + "id":"30be1fcc331c48d08086721d819227d9", + "label":"", + "type":"buttonShape", + "styleType":"h1", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "fontSize":"14px", + "location":{ + "x":70, + "y":203}, + "size":{ + "width":60, + "height":27}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"acdd890abe084ffba40f0fa8fdc31a28", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "fontSize":"14px", + "location":{ + "x":70, + "y":203}, + "size":{ + "width":60, + "height":27}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 授权码出售", + "target":{ + "targetType":"page", + "url":"授权码出售.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true, + "images":{ + "normal~":"resources/images/transparent.gif"}}]}}, + "masters":{ +}, + "objectPaths":{ + "6c05684279ab47a4bf87490560311406":{ + "scriptId":"u0"}, + "b7e7ccc5f7c54849bbefe7c2ae1dadc1":{ + "scriptId":"u1"}, + "891ad7159616494484f2df686ffe4cc3":{ + "scriptId":"u2"}, + "d8594de556804259b3729795702210d5":{ + "scriptId":"u3"}, + "d7a4156fdb3846bbaa425640d3444270":{ + "scriptId":"u4"}, + "cb2266b99f7546e28e327e113f9022b2":{ + "scriptId":"u5"}, + "b8a7383dcc9146a197619e54d26b7644":{ + "scriptId":"u6"}, + "455f77f1f32c4f93b45c33b08a167115":{ + "scriptId":"u7"}, + "30be1fcc331c48d08086721d819227d9":{ + "scriptId":"u8"}, + "acdd890abe084ffba40f0fa8fdc31a28":{ + "scriptId":"u9"}}}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\345\267\262\345\210\206\351\205\215\350\256\260\345\275\225/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\345\267\262\345\210\206\351\205\215\350\256\260\345\275\225/styles.css" new file mode 100644 index 0000000..dcf6755 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\345\267\262\345\210\206\351\205\215\350\256\260\345\275\225/styles.css" @@ -0,0 +1,124 @@ +body { + margin:0px; + background-image:none; + position:static; + left:auto; + width:410px; + margin-left:0; + margin-right:0; + text-align:left; +} +#base { + position:absolute; + z-index:0; +} +#u0 { + position:absolute; + left:30px; + top:20px; + width:380px; + height:744px; +} +#u0_img { + position:absolute; + left:0px; + top:0px; + width:380px; + height:744px; +} +#u1 { + position:absolute; + left:2px; + top:364px; + width:376px; + visibility:hidden; + word-wrap:break-word; +} +#u2 { + position:absolute; + left:62px; + top:163px; + width:308px; + height:13px; +} +#u2_img { + position:absolute; + left:0px; + top:0px; + width:308px; + height:13px; +} +#u3 { + position:absolute; + left:2px; + top:-2px; + width:304px; + visibility:hidden; + word-wrap:break-word; +} +#u4 { + position:absolute; + left:166px; + top:193px; + width:154px; + height:33px; + font-size:28px; +} +#u4_img { + position:absolute; + left:0px; + top:0px; + width:154px; + height:33px; +} +#u5 { + position:absolute; + left:0px; + top:0px; + width:154px; + word-wrap:break-word; +} +#u6 { + position:absolute; + left:70px; + top:236px; + width:300px; + height:134px; + text-align:left; +} +#u6_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:134px; +} +#u7 { + position:absolute; + left:2px; + top:11px; + width:296px; + word-wrap:break-word; +} +#u8 { + position:absolute; + left:70px; + top:203px; + width:60px; + height:27px; + font-size:14px; +} +#u8_img { + position:absolute; + left:0px; + top:0px; + width:60px; + height:27px; +} +#u9 { + position:absolute; + left:0px; + top:0px; + width:60px; + word-wrap:break-word; +} diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201/data.js" new file mode 100644 index 0000000..b425dd9 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201/data.js" @@ -0,0 +1,301 @@ +$axure.loadCurrentPage({ + "url":"我的授权码.html", + "generationDate":new Date(1416631106703.13), + "isCanvasEnabled":false, + "variables":["OnLoadVariable"], + "page":{ + "packageId":"54dc0a273ca14ae7be3fb97c7698a77b", + "type":"Axure:Page", + "name":"我的授权码", + "notes":{ +}, + "style":{ + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "pageAlignment":"near", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "image":null, + "imageHorizontalAlignment":"near", + "imageVerticalAlignment":"near", + "imageRepeat":"auto", + "favicon":null, + "sketchFactor":"0", + "colorStyle":"appliedColor", + "fontName":"Applied Font", + "borderWidth":"0"}, + "adaptiveStyles":{ +}, + "interactionMap":{ +}, + "diagram":{ + "objects":[{ + "id":"dd5a9da2b3e6420ebdd9b0d99f56c911", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":30, + "y":20}, + "size":{ + "width":380, + "height":744}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"11c34f3d5fd84340a25bf7ccb5101199", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":30, + "y":20}, + "size":{ + "width":380, + "height":744}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/购买授权码/u0.png"}}, +{ + "id":"7bc8d26a9edc485e80bea32115963ff0", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":62, + "y":163}, + "size":{ + "width":308, + "height":13}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c0f4aa884d194b5b895439a54eb4f2dc", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":62, + "y":163}, + "size":{ + "width":308, + "height":13}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/购买授权码/u2.png"}}, +{ + "id":"c70317f3bea7496a80ebe93f15d58f0a", + "label":"", + "type":"buttonShape", + "styleType":"h1", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":143, + "y":194}, + "size":{ + "width":177, + "height":37}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"175a0e558c3643df8da1f4bfde2c42a1", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":143, + "y":194}, + "size":{ + "width":177, + "height":37}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"4c26824c71a54c6288265cdc0452896f", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":90, + "y":250}, + "size":{ + "width":260, + "height":70}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"0595aa2ebcda4fc381b1494a75b7bd86", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":90, + "y":250}, + "size":{ + "width":260, + "height":70}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我的授权码/u6.png"}}, +{ + "id":"a9cb2ac2cc0c4f5c8c3f5e206a3f5fe9", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":198}, + "size":{ + "width":30, + "height":29}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"82f288f17cd445d7a52618ebd1dc6caf", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":198}, + "size":{ + "width":30, + "height":29}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 购买授权码", + "target":{ + "targetType":"page", + "url":"购买授权码.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true, + "images":{ + "normal~":"images/购买授权码/u21.png"}}, +{ + "id":"c4b6abbe3b674e6da15bf5dd1f79b2f7", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":420, + "y":265}, + "size":{ + "width":300, + "height":40}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"036b05867bc642be975a80886a7253ea", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":420, + "y":265}, + "size":{ + "width":300, + "height":40}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/购买授权码/u14.png"}}]}}, + "masters":{ +}, + "objectPaths":{ + "dd5a9da2b3e6420ebdd9b0d99f56c911":{ + "scriptId":"u0"}, + "11c34f3d5fd84340a25bf7ccb5101199":{ + "scriptId":"u1"}, + "7bc8d26a9edc485e80bea32115963ff0":{ + "scriptId":"u2"}, + "c0f4aa884d194b5b895439a54eb4f2dc":{ + "scriptId":"u3"}, + "c70317f3bea7496a80ebe93f15d58f0a":{ + "scriptId":"u4"}, + "175a0e558c3643df8da1f4bfde2c42a1":{ + "scriptId":"u5"}, + "4c26824c71a54c6288265cdc0452896f":{ + "scriptId":"u6"}, + "0595aa2ebcda4fc381b1494a75b7bd86":{ + "scriptId":"u7"}, + "a9cb2ac2cc0c4f5c8c3f5e206a3f5fe9":{ + "scriptId":"u8"}, + "82f288f17cd445d7a52618ebd1dc6caf":{ + "scriptId":"u9"}, + "c4b6abbe3b674e6da15bf5dd1f79b2f7":{ + "scriptId":"u10"}, + "036b05867bc642be975a80886a7253ea":{ + "scriptId":"u11"}}}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201/styles.css" new file mode 100644 index 0000000..2bcd924 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201/styles.css" @@ -0,0 +1,143 @@ +body { + margin:0px; + background-image:none; + position:static; + left:auto; + width:720px; + margin-left:0; + margin-right:0; + text-align:left; +} +#base { + position:absolute; + z-index:0; +} +#u0 { + position:absolute; + left:30px; + top:20px; + width:380px; + height:744px; +} +#u0_img { + position:absolute; + left:0px; + top:0px; + width:380px; + height:744px; +} +#u1 { + position:absolute; + left:2px; + top:364px; + width:376px; + visibility:hidden; + word-wrap:break-word; +} +#u2 { + position:absolute; + left:62px; + top:163px; + width:308px; + height:13px; +} +#u2_img { + position:absolute; + left:0px; + top:0px; + width:308px; + height:13px; +} +#u3 { + position:absolute; + left:2px; + top:-2px; + width:304px; + visibility:hidden; + word-wrap:break-word; +} +#u4 { + position:absolute; + left:143px; + top:194px; + width:177px; + height:37px; +} +#u4_img { + position:absolute; + left:0px; + top:0px; + width:177px; + height:37px; +} +#u5 { + position:absolute; + left:0px; + top:0px; + width:177px; + word-wrap:break-word; +} +#u6 { + position:absolute; + left:90px; + top:250px; + width:260px; + height:70px; +} +#u6_img { + position:absolute; + left:0px; + top:0px; + width:260px; + height:70px; +} +#u7 { + position:absolute; + left:2px; + top:27px; + width:256px; + word-wrap:break-word; +} +#u8 { + position:absolute; + left:90px; + top:198px; + width:30px; + height:29px; + text-align:left; +} +#u8_img { + position:absolute; + left:0px; + top:0px; + width:30px; + height:29px; +} +#u9 { + position:absolute; + left:2px; + top:6px; + width:26px; + word-wrap:break-word; +} +#u10 { + position:absolute; + left:420px; + top:265px; + width:300px; + height:40px; +} +#u10_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:40px; +} +#u11 { + position:absolute; + left:2px; + top:12px; + width:296px; + word-wrap:break-word; +} diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\345\267\262\347\273\221\345\256\232\350\256\276\345\244\207\357\274\211/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\345\267\262\347\273\221\345\256\232\350\256\276\345\244\207\357\274\211/data.js" new file mode 100644 index 0000000..e222e83 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\345\267\262\347\273\221\345\256\232\350\256\276\345\244\207\357\274\211/data.js" @@ -0,0 +1,318 @@ +$axure.loadCurrentPage({ + "url":"我的授权码(已绑定设备).html", + "generationDate":new Date(1416631107703.13), + "isCanvasEnabled":false, + "variables":["OnLoadVariable"], + "page":{ + "packageId":"f431d5340da944e39bc7e2243541c540", + "type":"Axure:Page", + "name":"我的授权码(已绑定设备)", + "notes":{ +}, + "style":{ + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "pageAlignment":"near", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "image":null, + "imageHorizontalAlignment":"near", + "imageVerticalAlignment":"near", + "imageRepeat":"auto", + "favicon":null, + "sketchFactor":"0", + "colorStyle":"appliedColor", + "fontName":"Applied Font", + "borderWidth":"0"}, + "adaptiveStyles":{ +}, + "interactionMap":{ +}, + "diagram":{ + "objects":[{ + "id":"3c56708db0c448489fa4ea4a01f0d5aa", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":30, + "y":20}, + "size":{ + "width":380, + "height":744}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"8fbfc12b49474f83b758f4dff07b938f", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":30, + "y":20}, + "size":{ + "width":380, + "height":744}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/购买授权码/u0.png"}}, +{ + "id":"d17b465a7942478283b841b0140a7ee0", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":62, + "y":163}, + "size":{ + "width":308, + "height":13}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"44844ec47ded442eb95d2bec2f6017c1", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":62, + "y":163}, + "size":{ + "width":308, + "height":13}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/购买授权码/u2.png"}}, +{ + "id":"71eb606a1fb248faa8567531ccbd04a2", + "label":"", + "type":"buttonShape", + "styleType":"h1", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":143, + "y":194}, + "size":{ + "width":177, + "height":37}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"74e4713c8d364c828857f8c984b25325", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":143, + "y":194}, + "size":{ + "width":177, + "height":37}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"135fed1dde8943e2b977e0c9d93bf385", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":250}, + "size":{ + "width":260, + "height":150}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"1575da2868a14bc093215328b75942e6", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":250}, + "size":{ + "width":260, + "height":150}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我的授权码(已绑定设备)/u6.png"}}, +{ + "id":"bc7a34ee9b4e4941969838ccca383bd0", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":198}, + "size":{ + "width":30, + "height":29}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"3f2d0605c41c42a281d3856f43f5b157", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":198}, + "size":{ + "width":30, + "height":29}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 购买授权码", + "target":{ + "targetType":"page", + "url":"购买授权码.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true, + "images":{ + "normal~":"images/购买授权码/u21.png"}}, +{ + "id":"d4225a64a0564d669814c64042af52ef", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":250, + "y":320}, + "size":{ + "width":90, + "height":40}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"623e76f185244e728bc6e2cf75fd8f7e", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":250, + "y":320}, + "size":{ + "width":90, + "height":40}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 我的授权码(绑定验证)", + "target":{ + "targetType":"page", + "url":"我的授权码(绑定验证).html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true, + "images":{ + "normal~":"images/我的授权码(已绑定设备)/u10.png"}}]}}, + "masters":{ +}, + "objectPaths":{ + "3c56708db0c448489fa4ea4a01f0d5aa":{ + "scriptId":"u0"}, + "8fbfc12b49474f83b758f4dff07b938f":{ + "scriptId":"u1"}, + "d17b465a7942478283b841b0140a7ee0":{ + "scriptId":"u2"}, + "44844ec47ded442eb95d2bec2f6017c1":{ + "scriptId":"u3"}, + "71eb606a1fb248faa8567531ccbd04a2":{ + "scriptId":"u4"}, + "74e4713c8d364c828857f8c984b25325":{ + "scriptId":"u5"}, + "135fed1dde8943e2b977e0c9d93bf385":{ + "scriptId":"u6"}, + "1575da2868a14bc093215328b75942e6":{ + "scriptId":"u7"}, + "bc7a34ee9b4e4941969838ccca383bd0":{ + "scriptId":"u8"}, + "3f2d0605c41c42a281d3856f43f5b157":{ + "scriptId":"u9"}, + "d4225a64a0564d669814c64042af52ef":{ + "scriptId":"u10"}, + "623e76f185244e728bc6e2cf75fd8f7e":{ + "scriptId":"u11"}}}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\345\267\262\347\273\221\345\256\232\350\256\276\345\244\207\357\274\211/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\345\267\262\347\273\221\345\256\232\350\256\276\345\244\207\357\274\211/styles.css" new file mode 100644 index 0000000..7fbc8f7 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\345\267\262\347\273\221\345\256\232\350\256\276\345\244\207\357\274\211/styles.css" @@ -0,0 +1,144 @@ +body { + margin:0px; + background-image:none; + position:static; + left:auto; + width:410px; + margin-left:0; + margin-right:0; + text-align:left; +} +#base { + position:absolute; + z-index:0; +} +#u0 { + position:absolute; + left:30px; + top:20px; + width:380px; + height:744px; +} +#u0_img { + position:absolute; + left:0px; + top:0px; + width:380px; + height:744px; +} +#u1 { + position:absolute; + left:2px; + top:364px; + width:376px; + visibility:hidden; + word-wrap:break-word; +} +#u2 { + position:absolute; + left:62px; + top:163px; + width:308px; + height:13px; +} +#u2_img { + position:absolute; + left:0px; + top:0px; + width:308px; + height:13px; +} +#u3 { + position:absolute; + left:2px; + top:-2px; + width:304px; + visibility:hidden; + word-wrap:break-word; +} +#u4 { + position:absolute; + left:143px; + top:194px; + width:177px; + height:37px; +} +#u4_img { + position:absolute; + left:0px; + top:0px; + width:177px; + height:37px; +} +#u5 { + position:absolute; + left:0px; + top:0px; + width:177px; + word-wrap:break-word; +} +#u6 { + position:absolute; + left:90px; + top:250px; + width:260px; + height:150px; + text-align:left; +} +#u6_img { + position:absolute; + left:0px; + top:0px; + width:260px; + height:150px; +} +#u7 { + position:absolute; + left:2px; + top:35px; + width:256px; + word-wrap:break-word; +} +#u8 { + position:absolute; + left:90px; + top:198px; + width:30px; + height:29px; + text-align:left; +} +#u8_img { + position:absolute; + left:0px; + top:0px; + width:30px; + height:29px; +} +#u9 { + position:absolute; + left:2px; + top:6px; + width:26px; + word-wrap:break-word; +} +#u10 { + position:absolute; + left:250px; + top:320px; + width:90px; + height:40px; +} +#u10_img { + position:absolute; + left:0px; + top:0px; + width:90px; + height:40px; +} +#u11 { + position:absolute; + left:2px; + top:12px; + width:86px; + word-wrap:break-word; +} diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\346\234\252\347\273\221\345\256\232\350\256\276\345\244\207\357\274\211/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\346\234\252\347\273\221\345\256\232\350\256\276\345\244\207\357\274\211/data.js" new file mode 100644 index 0000000..07133ba --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\346\234\252\347\273\221\345\256\232\350\256\276\345\244\207\357\274\211/data.js" @@ -0,0 +1,318 @@ +$axure.loadCurrentPage({ + "url":"我的授权码(未绑定设备).html", + "generationDate":new Date(1416631107734.38), + "isCanvasEnabled":false, + "variables":["OnLoadVariable"], + "page":{ + "packageId":"0d5e22cac8bc45c898b09cd07d460388", + "type":"Axure:Page", + "name":"我的授权码(未绑定设备)", + "notes":{ +}, + "style":{ + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "pageAlignment":"near", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "image":null, + "imageHorizontalAlignment":"near", + "imageVerticalAlignment":"near", + "imageRepeat":"auto", + "favicon":null, + "sketchFactor":"0", + "colorStyle":"appliedColor", + "fontName":"Applied Font", + "borderWidth":"0"}, + "adaptiveStyles":{ +}, + "interactionMap":{ +}, + "diagram":{ + "objects":[{ + "id":"7a9f18763e6c47e099a0b8b705b40f1e", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":30, + "y":20}, + "size":{ + "width":380, + "height":744}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"83fb1e75d6f24785bd268e728c3c8ba0", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":30, + "y":20}, + "size":{ + "width":380, + "height":744}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/购买授权码/u0.png"}}, +{ + "id":"ccbb062c642e4e3c8118ee2e5e92ad10", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":62, + "y":163}, + "size":{ + "width":308, + "height":13}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"83d9cbc6d35c4e68a38e7ed875152f3d", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":62, + "y":163}, + "size":{ + "width":308, + "height":13}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/购买授权码/u2.png"}}, +{ + "id":"0567b822b6ff44d0b20d2478f8c8e306", + "label":"", + "type":"buttonShape", + "styleType":"h1", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":143, + "y":194}, + "size":{ + "width":177, + "height":37}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"1aebb41c764543cf87e5286b37ddf7ae", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":143, + "y":194}, + "size":{ + "width":177, + "height":37}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"b2df7ccc52084d32a589d4e83a4f8519", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":250}, + "size":{ + "width":260, + "height":150}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"927f3569f4634fadbc626febb6cb630f", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":250}, + "size":{ + "width":260, + "height":150}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我的授权码(已绑定设备)/u6.png"}}, +{ + "id":"7a73772d1bd240e1a7f4ba4512f080be", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":198}, + "size":{ + "width":30, + "height":29}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"af23c05857c041e29ea163a05720f73c", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":198}, + "size":{ + "width":30, + "height":29}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 购买授权码", + "target":{ + "targetType":"page", + "url":"购买授权码.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true, + "images":{ + "normal~":"images/购买授权码/u21.png"}}, +{ + "id":"8fef253961ec4e40aa2b4815a8cd754e", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":250, + "y":330}, + "size":{ + "width":90, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"17add5a646c54228a6f48331b1ea11c0", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":250, + "y":330}, + "size":{ + "width":90, + "height":30}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 我的授权码(绑定验证)", + "target":{ + "targetType":"page", + "url":"我的授权码(绑定验证).html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true, + "images":{ + "normal~":"images/我的授权码(未绑定设备)/u10.png"}}]}}, + "masters":{ +}, + "objectPaths":{ + "7a9f18763e6c47e099a0b8b705b40f1e":{ + "scriptId":"u0"}, + "83fb1e75d6f24785bd268e728c3c8ba0":{ + "scriptId":"u1"}, + "ccbb062c642e4e3c8118ee2e5e92ad10":{ + "scriptId":"u2"}, + "83d9cbc6d35c4e68a38e7ed875152f3d":{ + "scriptId":"u3"}, + "0567b822b6ff44d0b20d2478f8c8e306":{ + "scriptId":"u4"}, + "1aebb41c764543cf87e5286b37ddf7ae":{ + "scriptId":"u5"}, + "b2df7ccc52084d32a589d4e83a4f8519":{ + "scriptId":"u6"}, + "927f3569f4634fadbc626febb6cb630f":{ + "scriptId":"u7"}, + "7a73772d1bd240e1a7f4ba4512f080be":{ + "scriptId":"u8"}, + "af23c05857c041e29ea163a05720f73c":{ + "scriptId":"u9"}, + "8fef253961ec4e40aa2b4815a8cd754e":{ + "scriptId":"u10"}, + "17add5a646c54228a6f48331b1ea11c0":{ + "scriptId":"u11"}}}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\346\234\252\347\273\221\345\256\232\350\256\276\345\244\207\357\274\211/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\346\234\252\347\273\221\345\256\232\350\256\276\345\244\207\357\274\211/styles.css" new file mode 100644 index 0000000..bb488d9 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\346\234\252\347\273\221\345\256\232\350\256\276\345\244\207\357\274\211/styles.css" @@ -0,0 +1,144 @@ +body { + margin:0px; + background-image:none; + position:static; + left:auto; + width:410px; + margin-left:0; + margin-right:0; + text-align:left; +} +#base { + position:absolute; + z-index:0; +} +#u0 { + position:absolute; + left:30px; + top:20px; + width:380px; + height:744px; +} +#u0_img { + position:absolute; + left:0px; + top:0px; + width:380px; + height:744px; +} +#u1 { + position:absolute; + left:2px; + top:364px; + width:376px; + visibility:hidden; + word-wrap:break-word; +} +#u2 { + position:absolute; + left:62px; + top:163px; + width:308px; + height:13px; +} +#u2_img { + position:absolute; + left:0px; + top:0px; + width:308px; + height:13px; +} +#u3 { + position:absolute; + left:2px; + top:-2px; + width:304px; + visibility:hidden; + word-wrap:break-word; +} +#u4 { + position:absolute; + left:143px; + top:194px; + width:177px; + height:37px; +} +#u4_img { + position:absolute; + left:0px; + top:0px; + width:177px; + height:37px; +} +#u5 { + position:absolute; + left:0px; + top:0px; + width:177px; + word-wrap:break-word; +} +#u6 { + position:absolute; + left:90px; + top:250px; + width:260px; + height:150px; + text-align:left; +} +#u6_img { + position:absolute; + left:0px; + top:0px; + width:260px; + height:150px; +} +#u7 { + position:absolute; + left:2px; + top:51px; + width:256px; + word-wrap:break-word; +} +#u8 { + position:absolute; + left:90px; + top:198px; + width:30px; + height:29px; + text-align:left; +} +#u8_img { + position:absolute; + left:0px; + top:0px; + width:30px; + height:29px; +} +#u9 { + position:absolute; + left:2px; + top:6px; + width:26px; + word-wrap:break-word; +} +#u10 { + position:absolute; + left:250px; + top:330px; + width:90px; + height:30px; +} +#u10_img { + position:absolute; + left:0px; + top:0px; + width:90px; + height:30px; +} +#u11 { + position:absolute; + left:2px; + top:7px; + width:86px; + word-wrap:break-word; +} diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\347\273\221\345\256\232\351\252\214\350\257\201\357\274\211/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\347\273\221\345\256\232\351\252\214\350\257\201\357\274\211/data.js" new file mode 100644 index 0000000..419689b --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\347\273\221\345\256\232\351\252\214\350\257\201\357\274\211/data.js" @@ -0,0 +1,400 @@ +$axure.loadCurrentPage({ + "url":"我的授权码(绑定验证).html", + "generationDate":new Date(1416631107796.88), + "isCanvasEnabled":false, + "variables":["OnLoadVariable"], + "page":{ + "packageId":"4671086f4fe24dee9f711ca997b70855", + "type":"Axure:Page", + "name":"我的授权码(绑定验证)", + "notes":{ +}, + "style":{ + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "pageAlignment":"near", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "image":null, + "imageHorizontalAlignment":"near", + "imageVerticalAlignment":"near", + "imageRepeat":"auto", + "favicon":null, + "sketchFactor":"0", + "colorStyle":"appliedColor", + "fontName":"Applied Font", + "borderWidth":"0"}, + "adaptiveStyles":{ +}, + "interactionMap":{ +}, + "diagram":{ + "objects":[{ + "id":"b250f0e122c64eb4a3710caed28fbaab", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":30, + "y":20}, + "size":{ + "width":380, + "height":744}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"36549a72641c42ee981bf88afd537b79", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":30, + "y":20}, + "size":{ + "width":380, + "height":744}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/购买授权码/u0.png"}}, +{ + "id":"3e388104b8794e859c6cdc0c143362c5", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":62, + "y":163}, + "size":{ + "width":308, + "height":13}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"4d8ebb90a15843ada53a51b0193b04ee", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":62, + "y":163}, + "size":{ + "width":308, + "height":13}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/购买授权码/u2.png"}}, +{ + "id":"d3ab366a0b3c4f3ea2045c243caf481a", + "label":"", + "type":"buttonShape", + "styleType":"h1", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":163, + "y":194}, + "size":{ + "width":147, + "height":37}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"419dfcd7405848818b037b8fdb2e2c55", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":163, + "y":194}, + "size":{ + "width":147, + "height":37}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"26233fe49ce044cd987a93b223e8a987", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":250}, + "size":{ + "width":260, + "height":40}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"bb556f3200284a9dbdbe7fd2fb1a6c96", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":250}, + "size":{ + "width":260, + "height":40}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/刷卡器获取授权码/u6.png"}}, +{ + "id":"54326ae72b324365ac15160bb5a0f332", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":198}, + "size":{ + "width":30, + "height":29}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a6f51daee50a475ba9e8b1870349e115", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":198}, + "size":{ + "width":30, + "height":29}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 我的授权码(已绑定设备)", + "target":{ + "targetType":"page", + "url":"我的授权码(已绑定设备).html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true, + "images":{ + "normal~":"images/购买授权码/u21.png"}}, +{ + "id":"a32653e4988a4213bc8667242d70ae80", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":260, + "y":310}, + "size":{ + "width":90, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ca4b740881d444e49266d65ac224c127", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":260, + "y":310}, + "size":{ + "width":90, + "height":30}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 我的授权码(已绑定设备)", + "target":{ + "targetType":"page", + "url":"我的授权码(已绑定设备).html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true, + "images":{ + "normal~":"images/我的授权码(未绑定设备)/u10.png"}}, +{ + "id":"3c0451b1bd9c4243aa1947845eefb453", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":310}, + "size":{ + "width":150, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"24be8943818c4e8aa8a389b77956250f", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":310}, + "size":{ + "width":150, + "height":30}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我的授权码(绑定验证)/u12.png"}}, +{ + "id":"af40306844164b01888d714135a7f630", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":430, + "y":228}, + "size":{ + "width":320, + "height":152}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"b43916eef4d94c53a8573be2bffff5f5", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":430, + "y":228}, + "size":{ + "width":320, + "height":152}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/我的授权码(绑定验证)/u14.png"}}]}}, + "masters":{ +}, + "objectPaths":{ + "b250f0e122c64eb4a3710caed28fbaab":{ + "scriptId":"u0"}, + "36549a72641c42ee981bf88afd537b79":{ + "scriptId":"u1"}, + "3e388104b8794e859c6cdc0c143362c5":{ + "scriptId":"u2"}, + "4d8ebb90a15843ada53a51b0193b04ee":{ + "scriptId":"u3"}, + "d3ab366a0b3c4f3ea2045c243caf481a":{ + "scriptId":"u4"}, + "419dfcd7405848818b037b8fdb2e2c55":{ + "scriptId":"u5"}, + "26233fe49ce044cd987a93b223e8a987":{ + "scriptId":"u6"}, + "bb556f3200284a9dbdbe7fd2fb1a6c96":{ + "scriptId":"u7"}, + "54326ae72b324365ac15160bb5a0f332":{ + "scriptId":"u8"}, + "a6f51daee50a475ba9e8b1870349e115":{ + "scriptId":"u9"}, + "a32653e4988a4213bc8667242d70ae80":{ + "scriptId":"u10"}, + "ca4b740881d444e49266d65ac224c127":{ + "scriptId":"u11"}, + "3c0451b1bd9c4243aa1947845eefb453":{ + "scriptId":"u12"}, + "24be8943818c4e8aa8a389b77956250f":{ + "scriptId":"u13"}, + "af40306844164b01888d714135a7f630":{ + "scriptId":"u14"}, + "b43916eef4d94c53a8573be2bffff5f5":{ + "scriptId":"u15"}}}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\346\234\252\350\264\255\344\271\260\357\274\211/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\347\273\221\345\256\232\351\252\214\350\257\201\357\274\211/styles.css" similarity index 71% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\346\234\252\350\264\255\344\271\260\357\274\211/styles.css" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\347\273\221\345\256\232\351\252\214\350\257\201\357\274\211/styles.css" index b7f9e88..97e1df8 100644 --- "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\346\234\252\350\264\255\344\271\260\357\274\211/styles.css" +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\347\273\221\345\256\232\351\252\214\350\257\201\357\274\211/styles.css" @@ -3,7 +3,7 @@ background-image:none; position:static; left:auto; - width:740px; + width:750px; margin-left:0; margin-right:0; text-align:left; @@ -58,29 +58,29 @@ } #u4 { position:absolute; - left:150px; + left:163px; top:194px; - width:177px; + width:147px; height:37px; } #u4_img { position:absolute; left:0px; top:0px; - width:177px; + width:147px; height:37px; } #u5 { position:absolute; left:0px; top:0px; - width:177px; + width:147px; word-wrap:break-word; } #u6 { position:absolute; left:90px; - top:320px; + top:250px; width:260px; height:40px; text-align:left; @@ -123,30 +123,30 @@ } #u10 { position:absolute; - left:250px; - top:390px; - width:100px; + left:260px; + top:310px; + width:90px; height:30px; } #u10_img { position:absolute; left:0px; top:0px; - width:100px; + width:90px; height:30px; } #u11 { position:absolute; left:2px; top:7px; - width:96px; + width:86px; word-wrap:break-word; } #u12 { position:absolute; left:90px; - top:390px; - width:140px; + top:310px; + width:150px; height:30px; text-align:left; } @@ -154,22 +154,22 @@ position:absolute; left:0px; top:0px; - width:140px; + width:150px; height:30px; } #u13 { position:absolute; left:2px; top:7px; - width:136px; + width:146px; word-wrap:break-word; } #u14 { position:absolute; - left:420px; - top:350px; + left:430px; + top:228px; width:320px; - height:96px; + height:152px; text-align:left; } #u14_img { @@ -177,56 +177,12 @@ left:0px; top:0px; width:320px; - height:96px; + height:152px; } #u15 { position:absolute; left:2px; - top:8px; - width:316px; - word-wrap:break-word; -} -#u16 { - position:absolute; - left:420px; - top:252px; - width:320px; - height:62px; - text-align:left; -} -#u16_img { - position:absolute; - left:0px; - top:0px; - width:320px; - height:62px; -} -#u17 { - position:absolute; - left:2px; - top:15px; + top:12px; width:316px; word-wrap:break-word; } -#u18 { - position:absolute; - left:90px; - top:252px; - width:260px; - height:40px; - text-align:left; -} -#u18_img { - position:absolute; - left:0px; - top:0px; - width:260px; - height:40px; -} -#u19 { - position:absolute; - left:2px; - top:4px; - width:256px; - word-wrap:break-word; -} diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\227\240\346\216\210\346\235\203\347\240\201\357\274\211/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\227\240\346\216\210\346\235\203\347\240\201\357\274\211/data.js" new file mode 100644 index 0000000..e11c0b7 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\227\240\346\216\210\346\235\203\347\240\201\357\274\211/data.js" @@ -0,0 +1,696 @@ +$axure.loadCurrentPage({ + "url":"授权码使用界面(无授权码).html", + "generationDate":new Date(1416631107640.63), + "isCanvasEnabled":false, + "variables":["OnLoadVariable"], + "page":{ + "packageId":"2b6d8229ee554e6e8d95d462c2ea1149", + "type":"Axure:Page", + "name":"授权码使用界面(无授权码)", + "notes":{ +}, + "style":{ + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "pageAlignment":"near", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "image":null, + "imageHorizontalAlignment":"near", + "imageVerticalAlignment":"near", + "imageRepeat":"auto", + "favicon":null, + "sketchFactor":"0", + "colorStyle":"appliedColor", + "fontName":"Applied Font", + "borderWidth":"0"}, + "adaptiveStyles":{ +}, + "interactionMap":{ +}, + "diagram":{ + "objects":[{ + "id":"c095182440094d8eb982b9de65b2f80d", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":30, + "y":20}, + "size":{ + "width":380, + "height":744}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"0838d4ee34284bbf9b25dd3641929c16", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":30, + "y":20}, + "size":{ + "width":380, + "height":744}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/购买授权码/u0.png"}}, +{ + "id":"81612aa2d7a140baa7cdda0a3ef8e10e", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":62, + "y":163}, + "size":{ + "width":308, + "height":13}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"795f12a37383465fb4bad2861b2b59bc", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":62, + "y":163}, + "size":{ + "width":308, + "height":13}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/购买授权码/u2.png"}}, +{ + "id":"ef4073f2571042a2bace31c9d619a1fe", + "label":"", + "type":"buttonShape", + "styleType":"h1", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"center", + "location":{ + "x":141, + "y":193}, + "size":{ + "width":150, + "height":37}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c7350c4740214a54a4701ddfad914b07", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"center", + "location":{ + "x":141, + "y":193}, + "size":{ + "width":150, + "height":37}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"ebc4eaac62ab4bb98afa75a67cebd943", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":70, + "y":400}, + "size":{ + "width":300, + "height":130}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"f431f6a80f454bfa972b98e3065fb521", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":70, + "y":400}, + "size":{ + "width":300, + "height":130}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/授权码使用界面(无授权码)/u6.png"}}, +{ + "id":"636f787d948a4d7189d6c62982887091", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":70, + "y":540}, + "size":{ + "width":300, + "height":40}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"36cdff1978b24b3f8517c5d3f032a9ac", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":70, + "y":540}, + "size":{ + "width":300, + "height":40}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/购买授权码/u14.png"}}, +{ + "id":"642ede9c390e48d5bb5da38c4f076795", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":430, + "y":250}, + "size":{ + "width":260, + "height":29}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"45667d9fe4874ce9a6ef381905cd3b16", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":430, + "y":250}, + "size":{ + "width":260, + "height":29}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/授权码使用界面(有授权码)/u10.png"}}, +{ + "id":"1d615693f7f145128002acdf0077d904", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":70, + "y":250}, + "size":{ + "width":300, + "height":29}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"df067213836e4541a586cedbe6f79bd7", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":70, + "y":250}, + "size":{ + "width":300, + "height":29}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/授权码使用界面(有授权码)/u12.png"}}, +{ + "id":"9e0c6414db7340248a5e014db5884c7d", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":70, + "y":289}, + "size":{ + "width":300, + "height":52}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"fb43932a99164674a8783da8e63938c9", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":70, + "y":289}, + "size":{ + "width":300, + "height":52}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/授权码使用界面(无授权码)/u14.png"}}, +{ + "id":"fbb9ff87907e4452a2122a54f591c5f2", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":430, + "y":310}, + "size":{ + "width":260, + "height":117}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"1ed2cd3001cf45b1a30c7648a808ea0c", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":430, + "y":310}, + "size":{ + "width":260, + "height":117}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/授权码使用界面(无授权码)/u16.png"}}, +{ + "id":"30a9ff86616d4de1b9c595db17444a3e", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":180, + "y":351}, + "size":{ + "width":80, + "height":29}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"8e3f3a7ff9e14f4bb81b48703e5707c8", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":180, + "y":351}, + "size":{ + "width":80, + "height":29}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 购买授权码", + "target":{ + "targetType":"page", + "url":"购买授权码.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true, + "images":{ + "normal~":"images/授权码使用界面(无授权码)/u18.png"}}, +{ + "id":"61269b0b1c4a4e3e96160cdcd7065051", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":280, + "y":351}, + "size":{ + "width":90, + "height":29}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"35dda7f88bac4e538d7d924830388fe1", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":280, + "y":351}, + "size":{ + "width":90, + "height":29}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 授权码使用界面(有授权码)", + "target":{ + "targetType":"page", + "url":"授权码使用界面(有授权码).html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true, + "images":{ + "normal~":"images/授权码使用界面(无授权码)/u20.png"}}, +{ + "id":"18a977c9bc5e4b5b930d4150c8b147d4", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":70, + "y":351}, + "size":{ + "width":80, + "height":29}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"5c11088769b941c1a536e7169f132790", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":70, + "y":351}, + "size":{ + "width":80, + "height":29}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/授权码使用界面(无授权码)/u18.png"}}, +{ + "id":"97d1272e47144bed818a3ff82ae9fb15", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":435, + "y":427}, + "size":{ + "width":250, + "height":90}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"7141747da0884486a5c0ffbb391c8404", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":435, + "y":427}, + "size":{ + "width":250, + "height":90}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/刷卡器获取授权码/u22.png"}}, +{ + "id":"662c758c5ddb46cb9197be1682403a8c", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":525, + "y":477}, + "size":{ + "width":70, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"905bbab757934520a813d0b63a9bf230", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":525, + "y":477}, + "size":{ + "width":70, + "height":30}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 用户信息登记", + "target":{ + "targetType":"page", + "url":"用户信息登记.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true, + "images":{ + "normal~":"images/刷卡器获取授权码/u14.png"}}, +{ + "id":"9d699dc2889f41159588b92591a03e8c", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":430, + "y":517}, + "size":{ + "width":260, + "height":83}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"3b6f2483d5ca4399af6954b5e5ec3850", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":430, + "y":517}, + "size":{ + "width":260, + "height":83}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/授权码使用界面(无授权码)/u28.png"}}]}}, + "masters":{ +}, + "objectPaths":{ + "c095182440094d8eb982b9de65b2f80d":{ + "scriptId":"u0"}, + "0838d4ee34284bbf9b25dd3641929c16":{ + "scriptId":"u1"}, + "81612aa2d7a140baa7cdda0a3ef8e10e":{ + "scriptId":"u2"}, + "795f12a37383465fb4bad2861b2b59bc":{ + "scriptId":"u3"}, + "ef4073f2571042a2bace31c9d619a1fe":{ + "scriptId":"u4"}, + "c7350c4740214a54a4701ddfad914b07":{ + "scriptId":"u5"}, + "ebc4eaac62ab4bb98afa75a67cebd943":{ + "scriptId":"u6"}, + "f431f6a80f454bfa972b98e3065fb521":{ + "scriptId":"u7"}, + "636f787d948a4d7189d6c62982887091":{ + "scriptId":"u8"}, + "36cdff1978b24b3f8517c5d3f032a9ac":{ + "scriptId":"u9"}, + "642ede9c390e48d5bb5da38c4f076795":{ + "scriptId":"u10"}, + "45667d9fe4874ce9a6ef381905cd3b16":{ + "scriptId":"u11"}, + "1d615693f7f145128002acdf0077d904":{ + "scriptId":"u12"}, + "df067213836e4541a586cedbe6f79bd7":{ + "scriptId":"u13"}, + "9e0c6414db7340248a5e014db5884c7d":{ + "scriptId":"u14"}, + "fb43932a99164674a8783da8e63938c9":{ + "scriptId":"u15"}, + "fbb9ff87907e4452a2122a54f591c5f2":{ + "scriptId":"u16"}, + "1ed2cd3001cf45b1a30c7648a808ea0c":{ + "scriptId":"u17"}, + "30a9ff86616d4de1b9c595db17444a3e":{ + "scriptId":"u18"}, + "8e3f3a7ff9e14f4bb81b48703e5707c8":{ + "scriptId":"u19"}, + "61269b0b1c4a4e3e96160cdcd7065051":{ + "scriptId":"u20"}, + "35dda7f88bac4e538d7d924830388fe1":{ + "scriptId":"u21"}, + "18a977c9bc5e4b5b930d4150c8b147d4":{ + "scriptId":"u22"}, + "5c11088769b941c1a536e7169f132790":{ + "scriptId":"u23"}, + "97d1272e47144bed818a3ff82ae9fb15":{ + "scriptId":"u24"}, + "7141747da0884486a5c0ffbb391c8404":{ + "scriptId":"u25"}, + "662c758c5ddb46cb9197be1682403a8c":{ + "scriptId":"u26"}, + "905bbab757934520a813d0b63a9bf230":{ + "scriptId":"u27"}, + "9d699dc2889f41159588b92591a03e8c":{ + "scriptId":"u28"}, + "3b6f2483d5ca4399af6954b5e5ec3850":{ + "scriptId":"u29"}}}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\227\240\346\216\210\346\235\203\347\240\201\357\274\211/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\227\240\346\216\210\346\235\203\347\240\201\357\274\211/styles.css" new file mode 100644 index 0000000..2e8b79a --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\227\240\346\216\210\346\235\203\347\240\201\357\274\211/styles.css" @@ -0,0 +1,339 @@ +body { + margin:0px; + background-image:none; + position:static; + left:auto; + width:690px; + margin-left:0; + margin-right:0; + text-align:left; +} +#base { + position:absolute; + z-index:0; +} +#u0 { + position:absolute; + left:30px; + top:20px; + width:380px; + height:744px; +} +#u0_img { + position:absolute; + left:0px; + top:0px; + width:380px; + height:744px; +} +#u1 { + position:absolute; + left:2px; + top:364px; + width:376px; + visibility:hidden; + word-wrap:break-word; +} +#u2 { + position:absolute; + left:62px; + top:163px; + width:308px; + height:13px; +} +#u2_img { + position:absolute; + left:0px; + top:0px; + width:308px; + height:13px; +} +#u3 { + position:absolute; + left:2px; + top:-2px; + width:304px; + visibility:hidden; + word-wrap:break-word; +} +#u4 { + position:absolute; + left:141px; + top:193px; + width:150px; + height:37px; + text-align:center; +} +#u4_img { + position:absolute; + left:0px; + top:0px; + width:150px; + height:37px; +} +#u5 { + position:absolute; + left:0px; + top:0px; + width:150px; + word-wrap:break-word; +} +#u6 { + position:absolute; + left:70px; + top:400px; + width:300px; + height:130px; + text-align:left; +} +#u6_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:130px; +} +#u7 { + position:absolute; + left:2px; + top:9px; + width:296px; + word-wrap:break-word; +} +#u8 { + position:absolute; + left:70px; + top:540px; + width:300px; + height:40px; +} +#u8_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:40px; +} +#u9 { + position:absolute; + left:2px; + top:12px; + width:296px; + word-wrap:break-word; +} +#u10 { + position:absolute; + left:430px; + top:250px; + width:260px; + height:29px; + text-align:left; +} +#u10_img { + position:absolute; + left:0px; + top:0px; + width:260px; + height:29px; +} +#u11 { + position:absolute; + left:2px; + top:6px; + width:256px; + word-wrap:break-word; +} +#u12 { + position:absolute; + left:70px; + top:250px; + width:300px; + height:29px; + text-align:left; +} +#u12_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:29px; +} +#u13 { + position:absolute; + left:2px; + top:6px; + width:296px; + word-wrap:break-word; +} +#u14 { + position:absolute; + left:70px; + top:289px; + width:300px; + height:52px; + text-align:left; +} +#u14_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:52px; +} +#u15 { + position:absolute; + left:2px; + top:2px; + width:296px; + word-wrap:break-word; +} +#u16 { + position:absolute; + left:430px; + top:310px; + width:260px; + height:117px; + text-align:left; +} +#u16_img { + position:absolute; + left:0px; + top:0px; + width:260px; + height:117px; +} +#u17 { + position:absolute; + left:2px; + top:18px; + width:256px; + word-wrap:break-word; +} +#u18 { + position:absolute; + left:180px; + top:351px; + width:80px; + height:29px; +} +#u18_img { + position:absolute; + left:0px; + top:0px; + width:80px; + height:29px; +} +#u19 { + position:absolute; + left:2px; + top:6px; + width:76px; + word-wrap:break-word; +} +#u20 { + position:absolute; + left:280px; + top:351px; + width:90px; + height:29px; +} +#u20_img { + position:absolute; + left:0px; + top:0px; + width:90px; + height:29px; +} +#u21 { + position:absolute; + left:2px; + top:6px; + width:86px; + word-wrap:break-word; +} +#u22 { + position:absolute; + left:70px; + top:351px; + width:80px; + height:29px; +} +#u22_img { + position:absolute; + left:0px; + top:0px; + width:80px; + height:29px; +} +#u23 { + position:absolute; + left:2px; + top:6px; + width:76px; + word-wrap:break-word; +} +#u24 { + position:absolute; + left:435px; + top:427px; + width:250px; + height:90px; + text-align:left; +} +#u24_img { + position:absolute; + left:0px; + top:0px; + width:250px; + height:90px; +} +#u25 { + position:absolute; + left:2px; + top:5px; + width:246px; + word-wrap:break-word; +} +#u26 { + position:absolute; + left:525px; + top:477px; + width:70px; + height:30px; +} +#u26_img { + position:absolute; + left:0px; + top:0px; + width:70px; + height:30px; +} +#u27 { + position:absolute; + left:2px; + top:7px; + width:66px; + word-wrap:break-word; +} +#u28 { + position:absolute; + left:430px; + top:517px; + width:260px; + height:83px; + text-align:left; +} +#u28_img { + position:absolute; + left:0px; + top:0px; + width:260px; + height:83px; +} +#u29 { + position:absolute; + left:2px; + top:18px; + width:256px; + word-wrap:break-word; +} diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\234\211\346\216\210\346\235\203\347\240\201\357\274\211/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\234\211\346\216\210\346\235\203\347\240\201\357\274\211/data.js" new file mode 100644 index 0000000..f6c3065 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\234\211\346\216\210\346\235\203\347\240\201\357\274\211/data.js" @@ -0,0 +1,413 @@ +$axure.loadCurrentPage({ + "url":"授权码使用界面(有授权码).html", + "generationDate":new Date(1416631107546.88), + "isCanvasEnabled":false, + "variables":["OnLoadVariable"], + "page":{ + "packageId":"15c316634a074ab3923c6f87eef5e6ec", + "type":"Axure:Page", + "name":"授权码使用界面(有授权码)", + "notes":{ +}, + "style":{ + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "pageAlignment":"near", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "image":null, + "imageHorizontalAlignment":"near", + "imageVerticalAlignment":"near", + "imageRepeat":"auto", + "favicon":null, + "sketchFactor":"0", + "colorStyle":"appliedColor", + "fontName":"Applied Font", + "borderWidth":"0"}, + "adaptiveStyles":{ +}, + "interactionMap":{ +}, + "diagram":{ + "objects":[{ + "id":"d686c9dc9d714a089eb1f4137b0f8a5b", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":30, + "y":20}, + "size":{ + "width":380, + "height":744}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"36f421f727d34a5691eb188832976ea8", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":30, + "y":20}, + "size":{ + "width":380, + "height":744}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/购买授权码/u0.png"}}, +{ + "id":"644b8dce9526495e992e0585e3b46568", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":62, + "y":163}, + "size":{ + "width":308, + "height":13}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a44fdd9541574647868694ce09a7be7f", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":62, + "y":163}, + "size":{ + "width":308, + "height":13}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/购买授权码/u2.png"}}, +{ + "id":"ea60e4b22b714fbd8523cc16933840f9", + "label":"", + "type":"buttonShape", + "styleType":"h1", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"center", + "location":{ + "x":141, + "y":193}, + "size":{ + "width":150, + "height":37}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"904cce76e2924f20a830ef4edccb9a4b", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"center", + "location":{ + "x":141, + "y":193}, + "size":{ + "width":150, + "height":37}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"8e6d4673b0dd460dbb7cee08df008725", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":70, + "y":340}, + "size":{ + "width":300, + "height":150}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"3ad7426af08f4684ba0f47ca5cebd046", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":70, + "y":340}, + "size":{ + "width":300, + "height":150}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/购买授权码/u8.png"}}, +{ + "id":"0888ccbc3b3e4fe5823e162d429267b1", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":70, + "y":520}, + "size":{ + "width":300, + "height":40}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"547fd2306537459fb6ff4c01e07ec1b7", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":70, + "y":520}, + "size":{ + "width":300, + "height":40}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/购买授权码/u14.png"}}, +{ + "id":"88de1b80aed14302a77c05d5ab96667c", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":430, + "y":250}, + "size":{ + "width":260, + "height":29}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"f6ef43fcf1754b39bb8a00c938fae526", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":430, + "y":250}, + "size":{ + "width":260, + "height":29}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/授权码使用界面(有授权码)/u10.png"}}, +{ + "id":"283998c94cdf43d9a6b8322959be2ce7", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":70, + "y":250}, + "size":{ + "width":300, + "height":29}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"73bc315d3bd74671bffdf4dc0a9c2979", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":70, + "y":250}, + "size":{ + "width":300, + "height":29}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/授权码使用界面(有授权码)/u12.png"}}, +{ + "id":"c7c0bb0e2bfd49ad9a289b7173bf6354", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":70, + "y":301}, + "size":{ + "width":300, + "height":29}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a08956ce3c054e098f2edf8adf86088d", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":70, + "y":301}, + "size":{ + "width":300, + "height":29}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/授权码使用界面(有授权码)/u12.png"}}, +{ + "id":"05610d51eba247f9bcdeca50c285259d", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":430, + "y":340}, + "size":{ + "width":260, + "height":46}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"7fee107a3f944ee0b732ffbfc5652f1d", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":430, + "y":340}, + "size":{ + "width":260, + "height":46}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/授权码使用界面(有授权码)/u16.png"}}]}}, + "masters":{ +}, + "objectPaths":{ + "d686c9dc9d714a089eb1f4137b0f8a5b":{ + "scriptId":"u0"}, + "36f421f727d34a5691eb188832976ea8":{ + "scriptId":"u1"}, + "644b8dce9526495e992e0585e3b46568":{ + "scriptId":"u2"}, + "a44fdd9541574647868694ce09a7be7f":{ + "scriptId":"u3"}, + "ea60e4b22b714fbd8523cc16933840f9":{ + "scriptId":"u4"}, + "904cce76e2924f20a830ef4edccb9a4b":{ + "scriptId":"u5"}, + "8e6d4673b0dd460dbb7cee08df008725":{ + "scriptId":"u6"}, + "3ad7426af08f4684ba0f47ca5cebd046":{ + "scriptId":"u7"}, + "0888ccbc3b3e4fe5823e162d429267b1":{ + "scriptId":"u8"}, + "547fd2306537459fb6ff4c01e07ec1b7":{ + "scriptId":"u9"}, + "88de1b80aed14302a77c05d5ab96667c":{ + "scriptId":"u10"}, + "f6ef43fcf1754b39bb8a00c938fae526":{ + "scriptId":"u11"}, + "283998c94cdf43d9a6b8322959be2ce7":{ + "scriptId":"u12"}, + "73bc315d3bd74671bffdf4dc0a9c2979":{ + "scriptId":"u13"}, + "c7c0bb0e2bfd49ad9a289b7173bf6354":{ + "scriptId":"u14"}, + "a08956ce3c054e098f2edf8adf86088d":{ + "scriptId":"u15"}, + "05610d51eba247f9bcdeca50c285259d":{ + "scriptId":"u16"}, + "7fee107a3f944ee0b732ffbfc5652f1d":{ + "scriptId":"u17"}}}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\234\211\346\216\210\346\235\203\347\240\201\357\274\211/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\234\211\346\216\210\346\235\203\347\240\201\357\274\211/styles.css" new file mode 100644 index 0000000..6431df3 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\234\211\346\216\210\346\235\203\347\240\201\357\274\211/styles.css" @@ -0,0 +1,211 @@ +body { + margin:0px; + background-image:none; + position:static; + left:auto; + width:690px; + margin-left:0; + margin-right:0; + text-align:left; +} +#base { + position:absolute; + z-index:0; +} +#u0 { + position:absolute; + left:30px; + top:20px; + width:380px; + height:744px; +} +#u0_img { + position:absolute; + left:0px; + top:0px; + width:380px; + height:744px; +} +#u1 { + position:absolute; + left:2px; + top:364px; + width:376px; + visibility:hidden; + word-wrap:break-word; +} +#u2 { + position:absolute; + left:62px; + top:163px; + width:308px; + height:13px; +} +#u2_img { + position:absolute; + left:0px; + top:0px; + width:308px; + height:13px; +} +#u3 { + position:absolute; + left:2px; + top:-2px; + width:304px; + visibility:hidden; + word-wrap:break-word; +} +#u4 { + position:absolute; + left:141px; + top:193px; + width:150px; + height:37px; + text-align:center; +} +#u4_img { + position:absolute; + left:0px; + top:0px; + width:150px; + height:37px; +} +#u5 { + position:absolute; + left:0px; + top:0px; + width:150px; + word-wrap:break-word; +} +#u6 { + position:absolute; + left:70px; + top:340px; + width:300px; + height:150px; + text-align:left; +} +#u6_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:150px; +} +#u7 { + position:absolute; + left:2px; + top:19px; + width:296px; + word-wrap:break-word; +} +#u8 { + position:absolute; + left:70px; + top:520px; + width:300px; + height:40px; +} +#u8_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:40px; +} +#u9 { + position:absolute; + left:2px; + top:12px; + width:296px; + word-wrap:break-word; +} +#u10 { + position:absolute; + left:430px; + top:250px; + width:260px; + height:29px; + text-align:left; +} +#u10_img { + position:absolute; + left:0px; + top:0px; + width:260px; + height:29px; +} +#u11 { + position:absolute; + left:2px; + top:6px; + width:256px; + word-wrap:break-word; +} +#u12 { + position:absolute; + left:70px; + top:250px; + width:300px; + height:29px; + text-align:left; +} +#u12_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:29px; +} +#u13 { + position:absolute; + left:2px; + top:6px; + width:296px; + word-wrap:break-word; +} +#u14 { + position:absolute; + left:70px; + top:301px; + width:300px; + height:29px; + text-align:left; +} +#u14_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:29px; +} +#u15 { + position:absolute; + left:2px; + top:6px; + width:296px; + word-wrap:break-word; +} +#u16 { + position:absolute; + left:430px; + top:340px; + width:260px; + height:46px; + text-align:left; +} +#u16_img { + position:absolute; + left:0px; + top:0px; + width:260px; + height:46px; +} +#u17 { + position:absolute; + left:2px; + top:7px; + width:256px; + word-wrap:break-word; +} diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\216\210\346\235\203\347\240\201\345\207\272\345\224\256/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\216\210\346\235\203\347\240\201\345\207\272\345\224\256/data.js" new file mode 100644 index 0000000..b6d0d2b --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\216\210\346\235\203\347\240\201\345\207\272\345\224\256/data.js" @@ -0,0 +1,601 @@ +$axure.loadCurrentPage({ + "url":"授权码出售.html", + "generationDate":new Date(1416631107453.13), + "isCanvasEnabled":false, + "variables":["OnLoadVariable"], + "page":{ + "packageId":"7b47b2c5c018492b81d1832e2c2b66c0", + "type":"Axure:Page", + "name":"授权码出售", + "notes":{ +}, + "style":{ + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "pageAlignment":"near", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "image":null, + "imageHorizontalAlignment":"near", + "imageVerticalAlignment":"near", + "imageRepeat":"auto", + "favicon":null, + "sketchFactor":"0", + "colorStyle":"appliedColor", + "fontName":"Applied Font", + "borderWidth":"0"}, + "adaptiveStyles":{ +}, + "interactionMap":{ +}, + "diagram":{ + "objects":[{ + "id":"5a82cffa0c714609ab4e5f6a59dad51c", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":30, + "y":20}, + "size":{ + "width":380, + "height":744}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ae8a8fd7edae42099767dba803d3de9c", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":30, + "y":20}, + "size":{ + "width":380, + "height":744}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/购买授权码/u0.png"}}, +{ + "id":"a3dc4ba907884c03be379030f5675bf8", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":62, + "y":163}, + "size":{ + "width":308, + "height":13}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a47f119b7aac4ebc89375dc0956ad290", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":62, + "y":163}, + "size":{ + "width":308, + "height":13}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/购买授权码/u2.png"}}, +{ + "id":"2ff2dd873ca04ebb8dbc3d0eb571ee92", + "label":"", + "type":"buttonShape", + "styleType":"h1", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "fontSize":"28px", + "location":{ + "x":156, + "y":193}, + "size":{ + "width":154, + "height":33}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c576667327ff4539a54fc192676f5947", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "fontSize":"28px", + "location":{ + "x":156, + "y":193}, + "size":{ + "width":154, + "height":33}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"9e17a4ee6c584cd187bc7d311136056e", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":70, + "y":320}, + "size":{ + "width":300, + "height":170}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ba03bbf3c90c442d8d01e94f6c259978", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":70, + "y":320}, + "size":{ + "width":300, + "height":170}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/授权码出售/u6.png"}}, +{ + "id":"142f349c982f401fa4ac127e6238710d", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":70, + "y":250}, + "size":{ + "width":300, + "height":37}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"05b0ad70df054e9ab3cbe672d602fe8a", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":70, + "y":250}, + "size":{ + "width":300, + "height":37}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/授权码出售/u8.png"}}, +{ + "id":"0634da42dce540d197f0d540e2ac4f34", + "label":"", + "type":"buttonShape", + "styleType":"h1", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "fontSize":"14px", + "location":{ + "x":70, + "y":203}, + "size":{ + "width":60, + "height":27}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"fa92a2ecbd1842f896d2513aab3e0532", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "fontSize":"14px", + "location":{ + "x":70, + "y":203}, + "size":{ + "width":60, + "height":27}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 代理商分配授权码", + "target":{ + "targetType":"page", + "url":"代理商分配授权码.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true, + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"86e02e0d5de245a5ab81e6363aa15294", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":310, + "y":197.5}, + "size":{ + "width":70, + "height":28}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"37bcf89629384568bbf7fdc97e64fcdc", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":310, + "y":197.5}, + "size":{ + "width":70, + "height":28}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 已分配记录", + "target":{ + "targetType":"page", + "url":"已分配记录.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true, + "images":{ + "normal~":"images/授权码出售/u12.png"}}, +{ + "id":"9e677bce76884373a4e76c55ae374be6", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":161, + "y":391}, + "size":{ + "width":110, + "height":23}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"4b137109fb134e73b9e146bdf8834bfa", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":161, + "y":391}, + "size":{ + "width":110, + "height":23}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/授权码出售/u14.png"}}, +{ + "id":"2fdf36cd04a548dc9d6b5b12cd4e7059", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":161, + "y":424}, + "size":{ + "width":110, + "height":23}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"211cb5d7e2434208afce8ae81bc76eda", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":161, + "y":424}, + "size":{ + "width":110, + "height":23}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/授权码出售/u14.png"}}, +{ + "id":"426321dcebb2461ebd1773d865f286c8", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":161, + "y":457}, + "size":{ + "width":110, + "height":23}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"fd47e4e95ca143939964d56ed9ee3ac5", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":161, + "y":457}, + "size":{ + "width":110, + "height":23}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/授权码出售/u14.png"}}, +{ + "id":"032bbcb1e653404bb88bd3623d236041", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":300, + "y":391}, + "size":{ + "width":50, + "height":23}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"aaaf83fdc28f4d7e9072de958124f304", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":300, + "y":391}, + "size":{ + "width":50, + "height":23}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/授权码出售/u20.png"}}, +{ + "id":"0fcc068b7e0c4fddbbcc30856881e9f1", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":300, + "y":424}, + "size":{ + "width":50, + "height":23}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"4081ea64f57947cba178976a3112a383", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":300, + "y":424}, + "size":{ + "width":50, + "height":23}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/授权码出售/u20.png"}}, +{ + "id":"f8f5e9a498e54b3d986a489eba958a74", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":300, + "y":457}, + "size":{ + "width":50, + "height":23}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"5d23072c19224cf2b78ceaff641df0b6", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":300, + "y":457}, + "size":{ + "width":50, + "height":23}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/授权码出售/u20.png"}}]}}, + "masters":{ +}, + "objectPaths":{ + "5a82cffa0c714609ab4e5f6a59dad51c":{ + "scriptId":"u0"}, + "ae8a8fd7edae42099767dba803d3de9c":{ + "scriptId":"u1"}, + "a3dc4ba907884c03be379030f5675bf8":{ + "scriptId":"u2"}, + "a47f119b7aac4ebc89375dc0956ad290":{ + "scriptId":"u3"}, + "2ff2dd873ca04ebb8dbc3d0eb571ee92":{ + "scriptId":"u4"}, + "c576667327ff4539a54fc192676f5947":{ + "scriptId":"u5"}, + "9e17a4ee6c584cd187bc7d311136056e":{ + "scriptId":"u6"}, + "ba03bbf3c90c442d8d01e94f6c259978":{ + "scriptId":"u7"}, + "142f349c982f401fa4ac127e6238710d":{ + "scriptId":"u8"}, + "05b0ad70df054e9ab3cbe672d602fe8a":{ + "scriptId":"u9"}, + "0634da42dce540d197f0d540e2ac4f34":{ + "scriptId":"u10"}, + "fa92a2ecbd1842f896d2513aab3e0532":{ + "scriptId":"u11"}, + "86e02e0d5de245a5ab81e6363aa15294":{ + "scriptId":"u12"}, + "37bcf89629384568bbf7fdc97e64fcdc":{ + "scriptId":"u13"}, + "9e677bce76884373a4e76c55ae374be6":{ + "scriptId":"u14"}, + "4b137109fb134e73b9e146bdf8834bfa":{ + "scriptId":"u15"}, + "2fdf36cd04a548dc9d6b5b12cd4e7059":{ + "scriptId":"u16"}, + "211cb5d7e2434208afce8ae81bc76eda":{ + "scriptId":"u17"}, + "426321dcebb2461ebd1773d865f286c8":{ + "scriptId":"u18"}, + "fd47e4e95ca143939964d56ed9ee3ac5":{ + "scriptId":"u19"}, + "032bbcb1e653404bb88bd3623d236041":{ + "scriptId":"u20"}, + "aaaf83fdc28f4d7e9072de958124f304":{ + "scriptId":"u21"}, + "0fcc068b7e0c4fddbbcc30856881e9f1":{ + "scriptId":"u22"}, + "4081ea64f57947cba178976a3112a383":{ + "scriptId":"u23"}, + "f8f5e9a498e54b3d986a489eba958a74":{ + "scriptId":"u24"}, + "5d23072c19224cf2b78ceaff641df0b6":{ + "scriptId":"u25"}}}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\216\210\346\235\203\347\240\201\345\207\272\345\224\256/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\216\210\346\235\203\347\240\201\345\207\272\345\224\256/styles.css" new file mode 100644 index 0000000..df4a2ee --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\216\210\346\235\203\347\240\201\345\207\272\345\224\256/styles.css" @@ -0,0 +1,299 @@ +body { + margin:0px; + background-image:none; + position:static; + left:auto; + width:410px; + margin-left:0; + margin-right:0; + text-align:left; +} +#base { + position:absolute; + z-index:0; +} +#u0 { + position:absolute; + left:30px; + top:20px; + width:380px; + height:744px; +} +#u0_img { + position:absolute; + left:0px; + top:0px; + width:380px; + height:744px; +} +#u1 { + position:absolute; + left:2px; + top:364px; + width:376px; + visibility:hidden; + word-wrap:break-word; +} +#u2 { + position:absolute; + left:62px; + top:163px; + width:308px; + height:13px; +} +#u2_img { + position:absolute; + left:0px; + top:0px; + width:308px; + height:13px; +} +#u3 { + position:absolute; + left:2px; + top:-2px; + width:304px; + visibility:hidden; + word-wrap:break-word; +} +#u4 { + position:absolute; + left:156px; + top:193px; + width:154px; + height:33px; + font-size:28px; +} +#u4_img { + position:absolute; + left:0px; + top:0px; + width:154px; + height:33px; +} +#u5 { + position:absolute; + left:0px; + top:0px; + width:154px; + word-wrap:break-word; +} +#u6 { + position:absolute; + left:70px; + top:320px; + width:300px; + height:170px; +} +#u6_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:170px; +} +#u7 { + position:absolute; + left:2px; + top:13px; + width:296px; + word-wrap:break-word; +} +#u8 { + position:absolute; + left:70px; + top:250px; + width:300px; + height:37px; + text-align:left; +} +#u8_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:37px; +} +#u9 { + position:absolute; + left:2px; + top:10px; + width:296px; + word-wrap:break-word; +} +#u10 { + position:absolute; + left:70px; + top:203px; + width:60px; + height:27px; + font-size:14px; +} +#u10_img { + position:absolute; + left:0px; + top:0px; + width:60px; + height:27px; +} +#u11 { + position:absolute; + left:0px; + top:0px; + width:60px; + word-wrap:break-word; +} +#u12 { + position:absolute; + left:310px; + top:198px; + width:70px; + height:28px; + text-align:left; +} +#u12_img { + position:absolute; + left:0px; + top:0px; + width:70px; + height:28px; +} +#u13 { + position:absolute; + left:2px; + top:6px; + width:66px; + word-wrap:break-word; +} +#u14 { + position:absolute; + left:161px; + top:391px; + width:110px; + height:23px; + text-align:left; +} +#u14_img { + position:absolute; + left:0px; + top:0px; + width:110px; + height:23px; +} +#u15 { + position:absolute; + left:2px; + top:4px; + width:106px; + visibility:hidden; + word-wrap:break-word; +} +#u16 { + position:absolute; + left:161px; + top:424px; + width:110px; + height:23px; + text-align:left; +} +#u16_img { + position:absolute; + left:0px; + top:0px; + width:110px; + height:23px; +} +#u17 { + position:absolute; + left:2px; + top:4px; + width:106px; + visibility:hidden; + word-wrap:break-word; +} +#u18 { + position:absolute; + left:161px; + top:457px; + width:110px; + height:23px; + text-align:left; +} +#u18_img { + position:absolute; + left:0px; + top:0px; + width:110px; + height:23px; +} +#u19 { + position:absolute; + left:2px; + top:4px; + width:106px; + visibility:hidden; + word-wrap:break-word; +} +#u20 { + position:absolute; + left:300px; + top:391px; + width:50px; + height:23px; +} +#u20_img { + position:absolute; + left:0px; + top:0px; + width:50px; + height:23px; +} +#u21 { + position:absolute; + left:2px; + top:4px; + width:46px; + word-wrap:break-word; +} +#u22 { + position:absolute; + left:300px; + top:424px; + width:50px; + height:23px; +} +#u22_img { + position:absolute; + left:0px; + top:0px; + width:50px; + height:23px; +} +#u23 { + position:absolute; + left:2px; + top:4px; + width:46px; + word-wrap:break-word; +} +#u24 { + position:absolute; + left:300px; + top:457px; + width:50px; + height:23px; +} +#u24_img { + position:absolute; + left:0px; + top:0px; + width:50px; + height:23px; +} +#u25 { + position:absolute; + left:2px; + top:4px; + width:46px; + word-wrap:break-word; +} diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\216\210\346\235\203\347\240\201\347\273\221\345\256\232\350\256\276\345\244\207\357\274\210\346\232\202\346\227\266\345\272\237\345\274\203\357\274\211/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\216\210\346\235\203\347\240\201\347\273\221\345\256\232\350\256\276\345\244\207\357\274\210\346\232\202\346\227\266\345\272\237\345\274\203\357\274\211/data.js" new file mode 100644 index 0000000..31f2d6d --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\216\210\346\235\203\347\240\201\347\273\221\345\256\232\350\256\276\345\244\207\357\274\210\346\232\202\346\227\266\345\272\237\345\274\203\357\274\211/data.js" @@ -0,0 +1,36 @@ +$axure.loadCurrentPage({ + "url":"授权码绑定设备(暂时废弃).html", + "generationDate":new Date(1416631107671.88), + "isCanvasEnabled":false, + "variables":["OnLoadVariable"], + "page":{ + "packageId":"c8e8b43008e04eacb61ee6e11c6e823b", + "type":"Axure:Page", + "name":"授权码绑定设备(暂时废弃)", + "notes":{ +}, + "style":{ + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "pageAlignment":"near", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "image":null, + "imageHorizontalAlignment":"near", + "imageVerticalAlignment":"near", + "imageRepeat":"auto", + "favicon":null, + "sketchFactor":"0", + "colorStyle":"appliedColor", + "fontName":"Applied Font", + "borderWidth":"0"}, + "adaptiveStyles":{ +}, + "interactionMap":{ +}, + "diagram":{ + "objects":[]}}, + "masters":{ +}, + "objectPaths":{ +}}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\216\210\346\235\203\347\240\201\347\273\221\345\256\232\350\256\276\345\244\207\357\274\210\346\232\202\346\227\266\345\272\237\345\274\203\357\274\211/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\216\210\346\235\203\347\240\201\347\273\221\345\256\232\350\256\276\345\244\207\357\274\210\346\232\202\346\227\266\345\272\237\345\274\203\357\274\211/styles.css" new file mode 100644 index 0000000..59a81a5 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\216\210\346\235\203\347\240\201\347\273\221\345\256\232\350\256\276\345\244\207\357\274\210\346\232\202\346\227\266\345\272\237\345\274\203\357\274\211/styles.css" @@ -0,0 +1,14 @@ +body { + margin:0px; + background-image:none; + position:static; + left:auto; + width:0px; + margin-left:0; + margin-right:0; + text-align:left; +} +#base { + position:absolute; + z-index:0; +} diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\224\266\351\223\266\345\217\260\344\273\230\346\254\276/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\224\266\351\223\266\345\217\260\344\273\230\346\254\276/data.js" new file mode 100644 index 0000000..a6e07a5 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\224\266\351\223\266\345\217\260\344\273\230\346\254\276/data.js" @@ -0,0 +1,558 @@ +$axure.loadCurrentPage({ + "url":"收银台付款.html", + "generationDate":new Date(1416631106937.5), + "isCanvasEnabled":false, + "variables":["OnLoadVariable"], + "page":{ + "packageId":"5eacf77e1e1c4d308baa7d694f51c652", + "type":"Axure:Page", + "name":"收银台付款", + "notes":{ +}, + "style":{ + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "pageAlignment":"near", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "image":null, + "imageHorizontalAlignment":"near", + "imageVerticalAlignment":"near", + "imageRepeat":"auto", + "favicon":null, + "sketchFactor":"0", + "colorStyle":"appliedColor", + "fontName":"Applied Font", + "borderWidth":"0"}, + "adaptiveStyles":{ +}, + "interactionMap":{ +}, + "diagram":{ + "objects":[{ + "id":"7b2de315ab974688b1b0eeb194ce61c7", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":40, + "y":30}, + "size":{ + "width":390, + "height":744}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"8b3722676c25454aaf1149acd1e4e208", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":40, + "y":30}, + "size":{ + "width":390, + "height":744}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/购买授权码/u0.png"}}, +{ + "id":"6d15781c4cdf4d0fab5172f13dbe6c13", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":72, + "y":173}, + "size":{ + "width":308, + "height":13}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"16a2a55f3668477cb9808957723f5b05", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":72, + "y":173}, + "size":{ + "width":308, + "height":13}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/购买授权码/u2.png"}}, +{ + "id":"ac30c8353a3f495cba9fcfc2ca5e71f7", + "label":"", + "type":"buttonShape", + "styleType":"h1", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"center", + "location":{ + "x":153, + "y":196}, + "size":{ + "width":164, + "height":37}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a33b59c78b904ce092fcf6d4f7fd0784", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"center", + "location":{ + "x":153, + "y":196}, + "size":{ + "width":164, + "height":37}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"361311cbfc5942df9b9eb1692c1eedca", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":105, + "y":590}, + "size":{ + "width":260, + "height":40}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d700f54338674a23b1d9a0573ecec5b7", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":105, + "y":590}, + "size":{ + "width":260, + "height":40}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 获得授权码", + "target":{ + "targetType":"page", + "url":"获得授权码.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true, + "images":{ + "normal~":"images/刷卡器获取授权码/u6.png"}}, +{ + "id":"3ab43b21a8e646289cfe73dde2a29c9b", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":80, + "y":243}, + "size":{ + "width":310, + "height":178}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"4c0f23f55cae4813873bfe70a3de713a", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":80, + "y":243}, + "size":{ + "width":310, + "height":178}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/收银台付款/u8.png"}}, +{ + "id":"9c82cdb429bc47ceb45789f834f58a01", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":80, + "y":421}, + "size":{ + "width":310, + "height":149}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"9536616eceff480f88bb81b49b879842", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":80, + "y":421}, + "size":{ + "width":310, + "height":149}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/收银台付款/u10.png"}}, +{ + "id":"2c86bd0eaed343b3bf199ec82208a8cc", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":90, + "y":458}, + "size":{ + "width":227, + "height":32}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"af51782c4e56484eb8299d774d4f1d81", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":90, + "y":458}, + "size":{ + "width":227, + "height":32}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"d94228dfd7ae4f24a3f82c2b7e3d7c79", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":327, + "y":470}, + "size":{ + "width":53, + "height":20}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"8deb5593c5dd4eb4b5065bc127170b80", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":327, + "y":470}, + "size":{ + "width":53, + "height":20}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/收银台付款/u14.png"}}, +{ + "id":"f05ad99b0fa1404e8990abcd1346ce65", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":90, + "y":500}, + "size":{ + "width":140, + "height":20}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"b75e6cbf4e7f4347b22418a382ec48af", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":90, + "y":500}, + "size":{ + "width":140, + "height":20}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"fec105a900db4d4eb5b95a3efbb634ed", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":440, + "y":470}, + "size":{ + "width":260, + "height":40}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a2552e40a2214c9698b86ef075a29473", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":440, + "y":470}, + "size":{ + "width":260, + "height":40}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/刷卡器获取授权码/u6.png"}}, +{ + "id":"7357ccf0e30f4967ba39dc4e10a72970", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":80, + "y":204}, + "size":{ + "width":30, + "height":29}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"64167004aac64def9fd0b7b4209ec346", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":80, + "y":204}, + "size":{ + "width":30, + "height":29}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 购买授权码", + "target":{ + "targetType":"page", + "url":"购买授权码.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true, + "images":{ + "normal~":"images/购买授权码/u21.png"}}, +{ + "id":"5d6dc64658114e97a169498b4337dad0", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":440, + "y":243}, + "size":{ + "width":260, + "height":137}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ad21833f57384939b3c39c63e23daee7", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":440, + "y":243}, + "size":{ + "width":260, + "height":137}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/收银台付款/u22.png"}}]}}, + "masters":{ +}, + "objectPaths":{ + "7b2de315ab974688b1b0eeb194ce61c7":{ + "scriptId":"u0"}, + "8b3722676c25454aaf1149acd1e4e208":{ + "scriptId":"u1"}, + "6d15781c4cdf4d0fab5172f13dbe6c13":{ + "scriptId":"u2"}, + "16a2a55f3668477cb9808957723f5b05":{ + "scriptId":"u3"}, + "ac30c8353a3f495cba9fcfc2ca5e71f7":{ + "scriptId":"u4"}, + "a33b59c78b904ce092fcf6d4f7fd0784":{ + "scriptId":"u5"}, + "361311cbfc5942df9b9eb1692c1eedca":{ + "scriptId":"u6"}, + "d700f54338674a23b1d9a0573ecec5b7":{ + "scriptId":"u7"}, + "3ab43b21a8e646289cfe73dde2a29c9b":{ + "scriptId":"u8"}, + "4c0f23f55cae4813873bfe70a3de713a":{ + "scriptId":"u9"}, + "9c82cdb429bc47ceb45789f834f58a01":{ + "scriptId":"u10"}, + "9536616eceff480f88bb81b49b879842":{ + "scriptId":"u11"}, + "2c86bd0eaed343b3bf199ec82208a8cc":{ + "scriptId":"u12"}, + "af51782c4e56484eb8299d774d4f1d81":{ + "scriptId":"u13"}, + "d94228dfd7ae4f24a3f82c2b7e3d7c79":{ + "scriptId":"u14"}, + "8deb5593c5dd4eb4b5065bc127170b80":{ + "scriptId":"u15"}, + "f05ad99b0fa1404e8990abcd1346ce65":{ + "scriptId":"u16"}, + "b75e6cbf4e7f4347b22418a382ec48af":{ + "scriptId":"u17"}, + "fec105a900db4d4eb5b95a3efbb634ed":{ + "scriptId":"u18"}, + "a2552e40a2214c9698b86ef075a29473":{ + "scriptId":"u19"}, + "7357ccf0e30f4967ba39dc4e10a72970":{ + "scriptId":"u20"}, + "64167004aac64def9fd0b7b4209ec346":{ + "scriptId":"u21"}, + "5d6dc64658114e97a169498b4337dad0":{ + "scriptId":"u22"}, + "ad21833f57384939b3c39c63e23daee7":{ + "scriptId":"u23"}}}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\224\266\351\223\266\345\217\260\344\273\230\346\254\276/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\224\266\351\223\266\345\217\260\344\273\230\346\254\276/styles.css" new file mode 100644 index 0000000..1b85f16 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\346\224\266\351\223\266\345\217\260\344\273\230\346\254\276/styles.css" @@ -0,0 +1,273 @@ +body { + margin:0px; + background-image:none; + position:static; + left:auto; + width:700px; + margin-left:0; + margin-right:0; + text-align:left; +} +#base { + position:absolute; + z-index:0; +} +#u0 { + position:absolute; + left:40px; + top:30px; + width:390px; + height:744px; +} +#u0_img { + position:absolute; + left:0px; + top:0px; + width:390px; + height:744px; +} +#u1 { + position:absolute; + left:2px; + top:364px; + width:386px; + visibility:hidden; + word-wrap:break-word; +} +#u2 { + position:absolute; + left:72px; + top:173px; + width:308px; + height:13px; +} +#u2_img { + position:absolute; + left:0px; + top:0px; + width:308px; + height:13px; +} +#u3 { + position:absolute; + left:2px; + top:-2px; + width:304px; + visibility:hidden; + word-wrap:break-word; +} +#u4 { + position:absolute; + left:153px; + top:196px; + width:164px; + height:37px; + text-align:center; +} +#u4_img { + position:absolute; + left:0px; + top:0px; + width:164px; + height:37px; +} +#u5 { + position:absolute; + left:0px; + top:0px; + width:164px; + word-wrap:break-word; +} +#u6 { + position:absolute; + left:105px; + top:590px; + width:260px; + height:40px; +} +#u6_img { + position:absolute; + left:0px; + top:0px; + width:260px; + height:40px; +} +#u7 { + position:absolute; + left:2px; + top:12px; + width:256px; + word-wrap:break-word; +} +#u8 { + position:absolute; + left:80px; + top:243px; + width:310px; + height:178px; + text-align:left; +} +#u8_img { + position:absolute; + left:0px; + top:0px; + width:310px; + height:178px; +} +#u9 { + position:absolute; + left:2px; + top:53px; + width:306px; + word-wrap:break-word; +} +#u10 { + position:absolute; + left:80px; + top:421px; + width:310px; + height:149px; + text-align:left; +} +#u10_img { + position:absolute; + left:0px; + top:0px; + width:310px; + height:149px; +} +#u11 { + position:absolute; + left:2px; + top:2px; + width:306px; + word-wrap:break-word; +} +#u12 { + position:absolute; + left:90px; + top:458px; + width:227px; + height:32px; +} +#u12_img { + position:absolute; + left:0px; + top:0px; + width:227px; + height:32px; +} +#u13 { + position:absolute; + left:0px; + top:0px; + width:227px; + word-wrap:break-word; +} +#u14 { + position:absolute; + left:327px; + top:470px; + width:53px; + height:20px; +} +#u14_img { + position:absolute; + left:0px; + top:0px; + width:53px; + height:20px; +} +#u15 { + position:absolute; + left:2px; + top:2px; + width:49px; + word-wrap:break-word; +} +#u16 { + position:absolute; + left:90px; + top:500px; + width:140px; + height:20px; +} +#u16_img { + position:absolute; + left:0px; + top:0px; + width:140px; + height:20px; +} +#u17 { + position:absolute; + left:0px; + top:0px; + width:140px; + word-wrap:break-word; +} +#u18 { + position:absolute; + left:440px; + top:470px; + width:260px; + height:40px; +} +#u18_img { + position:absolute; + left:0px; + top:0px; + width:260px; + height:40px; +} +#u19 { + position:absolute; + left:2px; + top:12px; + width:256px; + word-wrap:break-word; +} +#u20 { + position:absolute; + left:80px; + top:204px; + width:30px; + height:29px; + text-align:left; +} +#u20_img { + position:absolute; + left:0px; + top:0px; + width:30px; + height:29px; +} +#u21 { + position:absolute; + left:2px; + top:6px; + width:26px; + word-wrap:break-word; +} +#u22 { + position:absolute; + left:440px; + top:243px; + width:260px; + height:137px; + text-align:left; +} +#u22_img { + position:absolute; + left:0px; + top:0px; + width:260px; + height:137px; +} +#u23 { + position:absolute; + left:2px; + top:12px; + width:256px; + word-wrap:break-word; +} diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/data.js" new file mode 100644 index 0000000..590f965 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/data.js" @@ -0,0 +1,760 @@ +$axure.loadCurrentPage({ + "url":"用户信息登记.html", + "generationDate":new Date(1416631107187.5), + "isCanvasEnabled":false, + "variables":["OnLoadVariable"], + "page":{ + "packageId":"96134f47cbd9489ca58135ac38957127", + "type":"Axure:Page", + "name":"用户信息登记", + "notes":{ +}, + "style":{ + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "pageAlignment":"near", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "image":null, + "imageHorizontalAlignment":"near", + "imageVerticalAlignment":"near", + "imageRepeat":"auto", + "favicon":null, + "sketchFactor":"0", + "colorStyle":"appliedColor", + "fontName":"Applied Font", + "borderWidth":"0"}, + "adaptiveStyles":{ +}, + "interactionMap":{ +}, + "diagram":{ + "objects":[{ + "id":"b12f6d77f28e4d5fab1777623e20539c", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":20, + "y":26}, + "size":{ + "width":380, + "height":744}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d2dae44d72c346d4b0ff3356d4e57196", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":20, + "y":26}, + "size":{ + "width":380, + "height":744}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/购买授权码/u0.png"}}, +{ + "id":"ec7333d8ce564e39b495ac7e197535a2", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":51, + "y":178}, + "size":{ + "width":320, + "height":46}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a50cceabd444466d9d1d6ec62d2ad28a", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":51, + "y":178}, + "size":{ + "width":320, + "height":46}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/用户信息登记/u2.png"}}, +{ + "id":"4121ddd2f4a14f6e8e4f1e1f3c8d8efd", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":62, + "y":163}, + "size":{ + "width":308, + "height":13}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"1519ae0f4e754f2cb64faacd127b2603", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":62, + "y":163}, + "size":{ + "width":308, + "height":13}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/购买授权码/u2.png"}}, +{ + "id":"094a98fbc128403e9570259137ab3267", + "label":"", + "type":"buttonShape", + "styleType":"h1", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":90, + "y":182}, + "size":{ + "width":228, + "height":37}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c434a3248fe649689ddfd46fead4c4bb", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":90, + "y":182}, + "size":{ + "width":228, + "height":37}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"70268ac75ecb4ed89712749561c50c51", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":270}, + "size":{ + "width":260, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ec5a7eba0d0d40b9b40a356b4cd4f561", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":270}, + "size":{ + "width":260, + "height":30}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 用户级别示意", + "target":{ + "targetType":"page", + "url":"用户级别示意.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true, + "images":{ + "normal~":"images/用户信息登记/u8.png"}}, +{ + "id":"331caf8171d94744ba3eb029d4702db8", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":290, + "y":186}, + "size":{ + "width":70, + "height":30}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"525251cf34144b7695e8506d022a1963", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":290, + "y":186}, + "size":{ + "width":70, + "height":30}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/刷卡器获取授权码/u14.png"}}, +{ + "id":"bf69d35690b04eaea74fc373b7dbed21", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":310}, + "size":{ + "width":260, + "height":40}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"941c4af8b1134fb7acedfe72bb02150e", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":310}, + "size":{ + "width":260, + "height":40}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/刷卡器获取授权码/u6.png"}}, +{ + "id":"f07c2eeaf5854c378ec430eaff30d5c4", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":350}, + "size":{ + "width":260, + "height":37}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"2cf63736148742cda45ddff57b14d0f9", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":350}, + "size":{ + "width":260, + "height":37}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/用户信息登记/u14.png"}}, +{ + "id":"f847898e5b444351af49099842a2fcb6", + "label":"", + "type":"buttonShape", + "styleType":"h1", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "fontSize":"16px", + "location":{ + "x":90, + "y":241}, + "size":{ + "width":177, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"408736d938a648318420f7518a0301b1", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "fontSize":"16px", + "location":{ + "x":90, + "y":241}, + "size":{ + "width":177, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"bcfad8a670d043098505b7925f58f88c", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":387}, + "size":{ + "width":260, + "height":37}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"d67739c0b42b479e9ddbf5d61749ad18", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":387}, + "size":{ + "width":260, + "height":37}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/用户信息登记/u14.png"}}, +{ + "id":"f67529f22f0246e2a60d37242a3886a5", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":420}, + "size":{ + "width":260, + "height":37}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"71e124007f7f47a1936fa6c7d2b8cccd", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":420}, + "size":{ + "width":260, + "height":37}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/用户信息登记/u14.png"}}, +{ + "id":"4d2626c90e8e442fb81ff8ad7fc1096c", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":590}, + "size":{ + "width":260, + "height":40}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"206202df0c464396939244070d57c5b0", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":590}, + "size":{ + "width":260, + "height":40}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/刷卡器获取授权码/u6.png"}}, +{ + "id":"573fe065db4a4eb195234101101fef1f", + "label":"", + "type":"buttonShape", + "styleType":"h1", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "fontSize":"16px", + "location":{ + "x":90, + "y":471}, + "size":{ + "width":187, + "height":19}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"fd2220f419e2487e99059561c2d26b51", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "fontSize":"16px", + "location":{ + "x":90, + "y":471}, + "size":{ + "width":187, + "height":19}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"ad500ff2a86d472dbe1ec19476e29a00", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":550}, + "size":{ + "width":260, + "height":40}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"8598923dcdcf405e8b1ac63da414503c", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":550}, + "size":{ + "width":260, + "height":40}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/刷卡器获取授权码/u6.png"}}, +{ + "id":"2a0ae3c7941b4fb48a3e8e110b3518bd", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":510}, + "size":{ + "width":260, + "height":40}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c14ae7aba2af4d4c8042a6bcb23cb1d8", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":510}, + "size":{ + "width":260, + "height":40}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/刷卡器获取授权码/u6.png"}}, +{ + "id":"4b43890aa4e8415d9585e315235aa5bb", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":420, + "y":186}, + "size":{ + "width":270, + "height":54}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c797f18d9a914abbaad6c2904230ab18", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":420, + "y":186}, + "size":{ + "width":270, + "height":54}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/用户信息登记/u30.png"}}, +{ + "id":"e974950eea464336b6aad070d38c3c6e", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":420, + "y":250}, + "size":{ + "width":270, + "height":80}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"0908e9e624444114b03ef1127c85d4ae", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":420, + "y":250}, + "size":{ + "width":270, + "height":80}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/用户信息登记/u32.png"}}]}}, + "masters":{ +}, + "objectPaths":{ + "b12f6d77f28e4d5fab1777623e20539c":{ + "scriptId":"u0"}, + "d2dae44d72c346d4b0ff3356d4e57196":{ + "scriptId":"u1"}, + "ec7333d8ce564e39b495ac7e197535a2":{ + "scriptId":"u2"}, + "a50cceabd444466d9d1d6ec62d2ad28a":{ + "scriptId":"u3"}, + "4121ddd2f4a14f6e8e4f1e1f3c8d8efd":{ + "scriptId":"u4"}, + "1519ae0f4e754f2cb64faacd127b2603":{ + "scriptId":"u5"}, + "094a98fbc128403e9570259137ab3267":{ + "scriptId":"u6"}, + "c434a3248fe649689ddfd46fead4c4bb":{ + "scriptId":"u7"}, + "70268ac75ecb4ed89712749561c50c51":{ + "scriptId":"u8"}, + "ec5a7eba0d0d40b9b40a356b4cd4f561":{ + "scriptId":"u9"}, + "331caf8171d94744ba3eb029d4702db8":{ + "scriptId":"u10"}, + "525251cf34144b7695e8506d022a1963":{ + "scriptId":"u11"}, + "bf69d35690b04eaea74fc373b7dbed21":{ + "scriptId":"u12"}, + "941c4af8b1134fb7acedfe72bb02150e":{ + "scriptId":"u13"}, + "f07c2eeaf5854c378ec430eaff30d5c4":{ + "scriptId":"u14"}, + "2cf63736148742cda45ddff57b14d0f9":{ + "scriptId":"u15"}, + "f847898e5b444351af49099842a2fcb6":{ + "scriptId":"u16"}, + "408736d938a648318420f7518a0301b1":{ + "scriptId":"u17"}, + "bcfad8a670d043098505b7925f58f88c":{ + "scriptId":"u18"}, + "d67739c0b42b479e9ddbf5d61749ad18":{ + "scriptId":"u19"}, + "f67529f22f0246e2a60d37242a3886a5":{ + "scriptId":"u20"}, + "71e124007f7f47a1936fa6c7d2b8cccd":{ + "scriptId":"u21"}, + "4d2626c90e8e442fb81ff8ad7fc1096c":{ + "scriptId":"u22"}, + "206202df0c464396939244070d57c5b0":{ + "scriptId":"u23"}, + "573fe065db4a4eb195234101101fef1f":{ + "scriptId":"u24"}, + "fd2220f419e2487e99059561c2d26b51":{ + "scriptId":"u25"}, + "ad500ff2a86d472dbe1ec19476e29a00":{ + "scriptId":"u26"}, + "8598923dcdcf405e8b1ac63da414503c":{ + "scriptId":"u27"}, + "2a0ae3c7941b4fb48a3e8e110b3518bd":{ + "scriptId":"u28"}, + "c14ae7aba2af4d4c8042a6bcb23cb1d8":{ + "scriptId":"u29"}, + "4b43890aa4e8415d9585e315235aa5bb":{ + "scriptId":"u30"}, + "c797f18d9a914abbaad6c2904230ab18":{ + "scriptId":"u31"}, + "e974950eea464336b6aad070d38c3c6e":{ + "scriptId":"u32"}, + "0908e9e624444114b03ef1127c85d4ae":{ + "scriptId":"u33"}}}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/styles.css" new file mode 100644 index 0000000..3848217 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/styles.css" @@ -0,0 +1,386 @@ +body { + margin:0px; + background-image:none; + position:static; + left:auto; + width:690px; + margin-left:0; + margin-right:0; + text-align:left; +} +#base { + position:absolute; + z-index:0; +} +#u0 { + position:absolute; + left:20px; + top:26px; + width:380px; + height:744px; +} +#u0_img { + position:absolute; + left:0px; + top:0px; + width:380px; + height:744px; +} +#u1 { + position:absolute; + left:2px; + top:364px; + width:376px; + visibility:hidden; + word-wrap:break-word; +} +#u2 { + position:absolute; + left:51px; + top:178px; + width:320px; + height:46px; +} +#u2_img { + position:absolute; + left:0px; + top:0px; + width:320px; + height:46px; +} +#u3 { + position:absolute; + left:2px; + top:15px; + width:316px; + visibility:hidden; + word-wrap:break-word; +} +#u4 { + position:absolute; + left:62px; + top:163px; + width:308px; + height:13px; +} +#u4_img { + position:absolute; + left:0px; + top:0px; + width:308px; + height:13px; +} +#u5 { + position:absolute; + left:2px; + top:-2px; + width:304px; + visibility:hidden; + word-wrap:break-word; +} +#u6 { + position:absolute; + left:90px; + top:182px; + width:228px; + height:37px; +} +#u6_img { + position:absolute; + left:0px; + top:0px; + width:228px; + height:37px; +} +#u7 { + position:absolute; + left:0px; + top:0px; + width:228px; + word-wrap:break-word; +} +#u8 { + position:absolute; + left:90px; + top:270px; + width:260px; + height:30px; + text-align:left; +} +#u8_img { + position:absolute; + left:0px; + top:0px; + width:260px; + height:30px; +} +#u9 { + position:absolute; + left:2px; + top:7px; + width:256px; + word-wrap:break-word; +} +#u10 { + position:absolute; + left:290px; + top:186px; + width:70px; + height:30px; +} +#u10_img { + position:absolute; + left:0px; + top:0px; + width:70px; + height:30px; +} +#u11 { + position:absolute; + left:2px; + top:7px; + width:66px; + word-wrap:break-word; +} +#u12 { + position:absolute; + left:90px; + top:310px; + width:260px; + height:40px; + text-align:left; +} +#u12_img { + position:absolute; + left:0px; + top:0px; + width:260px; + height:40px; +} +#u13 { + position:absolute; + left:2px; + top:4px; + width:256px; + word-wrap:break-word; +} +#u14 { + position:absolute; + left:90px; + top:350px; + width:260px; + height:37px; + text-align:left; +} +#u14_img { + position:absolute; + left:0px; + top:0px; + width:260px; + height:37px; +} +#u15 { + position:absolute; + left:2px; + top:10px; + width:256px; + word-wrap:break-word; +} +#u16 { + position:absolute; + left:90px; + top:241px; + width:177px; + height:19px; + font-size:16px; +} +#u16_img { + position:absolute; + left:0px; + top:0px; + width:177px; + height:19px; +} +#u17 { + position:absolute; + left:0px; + top:0px; + width:177px; + white-space:nowrap; +} +#u18 { + position:absolute; + left:90px; + top:387px; + width:260px; + height:37px; + text-align:left; +} +#u18_img { + position:absolute; + left:0px; + top:0px; + width:260px; + height:37px; +} +#u19 { + position:absolute; + left:2px; + top:10px; + width:256px; + word-wrap:break-word; +} +#u20 { + position:absolute; + left:90px; + top:420px; + width:260px; + height:37px; + text-align:left; +} +#u20_img { + position:absolute; + left:0px; + top:0px; + width:260px; + height:37px; +} +#u21 { + position:absolute; + left:2px; + top:10px; + width:256px; + word-wrap:break-word; +} +#u22 { + position:absolute; + left:90px; + top:590px; + width:260px; + height:40px; + text-align:left; +} +#u22_img { + position:absolute; + left:0px; + top:0px; + width:260px; + height:40px; +} +#u23 { + position:absolute; + left:2px; + top:12px; + width:256px; + word-wrap:break-word; +} +#u24 { + position:absolute; + left:90px; + top:471px; + width:187px; + height:19px; + font-size:16px; +} +#u24_img { + position:absolute; + left:0px; + top:0px; + width:187px; + height:19px; +} +#u25 { + position:absolute; + left:0px; + top:0px; + width:187px; + white-space:nowrap; +} +#u26 { + position:absolute; + left:90px; + top:550px; + width:260px; + height:40px; + text-align:left; +} +#u26_img { + position:absolute; + left:0px; + top:0px; + width:260px; + height:40px; +} +#u27 { + position:absolute; + left:2px; + top:12px; + width:256px; + word-wrap:break-word; +} +#u28 { + position:absolute; + left:90px; + top:510px; + width:260px; + height:40px; + text-align:left; +} +#u28_img { + position:absolute; + left:0px; + top:0px; + width:260px; + height:40px; +} +#u29 { + position:absolute; + left:2px; + top:12px; + width:256px; + word-wrap:break-word; +} +#u30 { + position:absolute; + left:420px; + top:186px; + width:270px; + height:54px; + text-align:left; +} +#u30_img { + position:absolute; + left:0px; + top:0px; + width:270px; + height:54px; +} +#u31 { + position:absolute; + left:2px; + top:3px; + width:266px; + word-wrap:break-word; +} +#u32 { + position:absolute; + left:420px; + top:250px; + width:270px; + height:80px; + text-align:left; +} +#u32_img { + position:absolute; + left:0px; + top:0px; + width:270px; + height:80px; +} +#u33 { + position:absolute; + left:2px; + top:8px; + width:266px; + word-wrap:break-word; +} diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\347\224\250\346\210\267\347\272\247\345\210\253\347\244\272\346\204\217/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\347\224\250\346\210\267\347\272\247\345\210\253\347\244\272\346\204\217/data.js" new file mode 100644 index 0000000..802e6f0 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\347\224\250\346\210\267\347\272\247\345\210\253\347\244\272\346\204\217/data.js" @@ -0,0 +1,348 @@ +$axure.loadCurrentPage({ + "url":"用户级别示意.html", + "generationDate":new Date(1416631107281.25), + "isCanvasEnabled":false, + "variables":["OnLoadVariable"], + "page":{ + "packageId":"5d8e14813a3c47548c9a2f530de4b50c", + "type":"Axure:Page", + "name":"用户级别示意", + "notes":{ +}, + "style":{ + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "pageAlignment":"near", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "image":null, + "imageHorizontalAlignment":"near", + "imageVerticalAlignment":"near", + "imageRepeat":"auto", + "favicon":null, + "sketchFactor":"0", + "colorStyle":"appliedColor", + "fontName":"Applied Font", + "borderWidth":"0"}, + "adaptiveStyles":{ +}, + "interactionMap":{ +}, + "diagram":{ + "objects":[{ + "id":"aa95675ba7f9462799e68c2d119a0fbb", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":26, + "y":20}, + "size":{ + "width":674, + "height":744}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a04ebc591bb44cd386092fac57782306", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":26, + "y":20}, + "size":{ + "width":674, + "height":744}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/购买授权码/u0.png"}}, +{ + "id":"ddf2023f36684dc383c9b0a4a44a4d38", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":265, + "y":178}, + "size":{ + "width":190, + "height":46}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"373fb163b08d4a898c9dea1181c9a562", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":265, + "y":178}, + "size":{ + "width":190, + "height":46}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/用户信息登记/u2.png"}}, +{ + "id":"8023ec09ee1b46ca918b251a3a11fef1", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":190, + "y":159}, + "size":{ + "width":308, + "height":13}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"5b180b1e87e64fb7950307233d628743", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":190, + "y":159}, + "size":{ + "width":308, + "height":13}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/购买授权码/u2.png"}}, +{ + "id":"d97afe1aab6b454586f2085044e9d364", + "label":"", + "type":"buttonShape", + "styleType":"h1", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":300, + "y":182}, + "size":{ + "width":177, + "height":37}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"b96728b9b2214569ae61aa0bd90f17a4", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":300, + "y":182}, + "size":{ + "width":177, + "height":37}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"9bb84bc8bd7a4e2d8f61e96d408118f3", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":176}, + "size":{ + "width":50, + "height":40}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"010279a8a2d54e1b8fb634ea7616ff8b", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":90, + "y":176}, + "size":{ + "width":50, + "height":40}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 购买授权码", + "target":{ + "targetType":"page", + "url":"购买授权码.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true, + "images":{ + "normal~":"images/用户级别示意/u8.png"}}, +{ + "id":"bc5bbae20abb49dc97bc8fe729c60021", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":90, + "y":252}, + "size":{ + "width":540, + "height":138}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"b26884152b4c4635bcd13ff296688805", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":90, + "y":252}, + "size":{ + "width":540, + "height":138}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"35d435d8023c4dda914c93898ca34dfe", + "label":"", + "type":"buttonShape", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":90, + "y":416}, + "size":{ + "width":540, + "height":44}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a5295272e4814f558da37f58e0cbddb1", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":90, + "y":416}, + "size":{ + "width":540, + "height":44}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}]}}, + "masters":{ +}, + "objectPaths":{ + "aa95675ba7f9462799e68c2d119a0fbb":{ + "scriptId":"u0"}, + "a04ebc591bb44cd386092fac57782306":{ + "scriptId":"u1"}, + "ddf2023f36684dc383c9b0a4a44a4d38":{ + "scriptId":"u2"}, + "373fb163b08d4a898c9dea1181c9a562":{ + "scriptId":"u3"}, + "8023ec09ee1b46ca918b251a3a11fef1":{ + "scriptId":"u4"}, + "5b180b1e87e64fb7950307233d628743":{ + "scriptId":"u5"}, + "d97afe1aab6b454586f2085044e9d364":{ + "scriptId":"u6"}, + "b96728b9b2214569ae61aa0bd90f17a4":{ + "scriptId":"u7"}, + "9bb84bc8bd7a4e2d8f61e96d408118f3":{ + "scriptId":"u8"}, + "010279a8a2d54e1b8fb634ea7616ff8b":{ + "scriptId":"u9"}, + "bc5bbae20abb49dc97bc8fe729c60021":{ + "scriptId":"u10"}, + "b26884152b4c4635bcd13ff296688805":{ + "scriptId":"u11"}, + "35d435d8023c4dda914c93898ca34dfe":{ + "scriptId":"u12"}, + "a5295272e4814f558da37f58e0cbddb1":{ + "scriptId":"u13"}}}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\347\224\250\346\210\267\347\272\247\345\210\253\347\244\272\346\204\217/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\347\224\250\346\210\267\347\272\247\345\210\253\347\244\272\346\204\217/styles.css" new file mode 100644 index 0000000..98a2cb0 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\347\224\250\346\210\267\347\272\247\345\210\253\347\244\272\346\204\217/styles.css" @@ -0,0 +1,165 @@ +body { + margin:0px; + background-image:none; + position:static; + left:auto; + width:700px; + margin-left:0; + margin-right:0; + text-align:left; +} +#base { + position:absolute; + z-index:0; +} +#u0 { + position:absolute; + left:26px; + top:20px; + width:674px; + height:744px; +} +#u0_img { + position:absolute; + left:0px; + top:0px; + width:674px; + height:744px; +} +#u1 { + position:absolute; + left:2px; + top:364px; + width:670px; + visibility:hidden; + word-wrap:break-word; +} +#u2 { + position:absolute; + left:265px; + top:178px; + width:190px; + height:46px; +} +#u2_img { + position:absolute; + left:0px; + top:0px; + width:190px; + height:46px; +} +#u3 { + position:absolute; + left:2px; + top:15px; + width:186px; + visibility:hidden; + word-wrap:break-word; +} +#u4 { + position:absolute; + left:190px; + top:159px; + width:308px; + height:13px; +} +#u4_img { + position:absolute; + left:0px; + top:0px; + width:308px; + height:13px; +} +#u5 { + position:absolute; + left:2px; + top:-2px; + width:304px; + visibility:hidden; + word-wrap:break-word; +} +#u6 { + position:absolute; + left:300px; + top:182px; + width:177px; + height:37px; +} +#u6_img { + position:absolute; + left:0px; + top:0px; + width:177px; + height:37px; +} +#u7 { + position:absolute; + left:0px; + top:0px; + width:177px; + word-wrap:break-word; +} +#u8 { + position:absolute; + left:90px; + top:176px; + width:50px; + height:40px; + text-align:left; +} +#u8_img { + position:absolute; + left:0px; + top:0px; + width:50px; + height:40px; +} +#u9 { + position:absolute; + left:2px; + top:12px; + width:46px; + word-wrap:break-word; +} +#u10 { + position:absolute; + left:90px; + top:252px; + width:540px; + height:138px; +} +#u10_img { + position:absolute; + left:0px; + top:0px; + width:540px; + height:138px; +} +#u11 { + position:absolute; + left:0px; + top:0px; + width:540px; + word-wrap:break-word; +} +#u12 { + position:absolute; + left:90px; + top:416px; + width:540px; + height:44px; +} +#u12_img { + position:absolute; + left:0px; + top:0px; + width:540px; + height:44px; +} +#u13 { + position:absolute; + left:0px; + top:0px; + width:540px; + word-wrap:break-word; +} diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\350\216\267\345\276\227\346\216\210\346\235\203\347\240\201/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\350\216\267\345\276\227\346\216\210\346\235\203\347\240\201/data.js" new file mode 100644 index 0000000..1e748e5 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\350\216\267\345\276\227\346\216\210\346\235\203\347\240\201/data.js" @@ -0,0 +1,366 @@ +$axure.loadCurrentPage({ + "url":"获得授权码.html", + "generationDate":new Date(1416631107062.5), + "isCanvasEnabled":false, + "variables":["OnLoadVariable"], + "page":{ + "packageId":"2b44c7baf64e402a9949fca23f8c5467", + "type":"Axure:Page", + "name":"获得授权码", + "notes":{ +}, + "style":{ + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "pageAlignment":"near", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "image":null, + "imageHorizontalAlignment":"near", + "imageVerticalAlignment":"near", + "imageRepeat":"auto", + "favicon":null, + "sketchFactor":"0", + "colorStyle":"appliedColor", + "fontName":"Applied Font", + "borderWidth":"0"}, + "adaptiveStyles":{ +}, + "interactionMap":{ +}, + "diagram":{ + "objects":[{ + "id":"db0a4a576ab94fa1b87cc9ab909f9e99", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":30, + "y":20}, + "size":{ + "width":390, + "height":744}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"152df14432b044f5b4fe502d6b76f8f0", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":30, + "y":20}, + "size":{ + "width":390, + "height":744}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/购买授权码/u0.png"}}, +{ + "id":"83af31aa3c70426782719dabc264286b", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":62, + "y":163}, + "size":{ + "width":308, + "height":13}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"bf2db76c06a34d8dae6baf2d889cfeeb", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":62, + "y":163}, + "size":{ + "width":308, + "height":13}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/购买授权码/u2.png"}}, +{ + "id":"e76d26061d42470ea1648d76f26a057f", + "label":"", + "type":"buttonShape", + "styleType":"h1", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"center", + "location":{ + "x":138, + "y":193}, + "size":{ + "width":164, + "height":37}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"6a7a35516a1b4020b03b5d9432a5acae", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"center", + "location":{ + "x":138, + "y":193}, + "size":{ + "width":164, + "height":37}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"475eb5872f254630984999a40c245099", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":70, + "y":240}, + "size":{ + "width":310, + "height":120}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"ef9ff18eb76a4f7dacc2fff951c27f8f", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":70, + "y":240}, + "size":{ + "width":310, + "height":120}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/获得授权码/u6.png"}}, +{ + "id":"a975bd9b33d54eec83dded3bc634c82a", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":70, + "y":380}, + "size":{ + "width":135, + "height":40}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"3f8462583f5144ffba2affd05399ab3f", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":70, + "y":380}, + "size":{ + "width":135, + "height":40}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/获得授权码/u8.png"}}, +{ + "id":"27c87b9dd3c04d128d9187d88b8e55df", + "label":"", + "type":"checkbox", + "styleType":"checkbox", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "fontSize":"18px", + "location":{ + "x":160, + "y":264}, + "size":{ + "width":30, + "height":16}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"e9554a7a80074e3cbf72038fce43ec99", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "fontSize":"18px", + "location":{ + "x":160, + "y":264}, + "size":{ + "width":30, + "height":16}}, + "adaptiveStyles":{ +}}]}, +{ + "id":"46eab98219bc42baa76742c3ba6ab82d", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":245, + "y":380}, + "size":{ + "width":135, + "height":40}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"2aecec26f77a41f7bcb62a5e9bbd0aef", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":245, + "y":380}, + "size":{ + "width":135, + "height":40}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/获得授权码/u8.png"}}, +{ + "id":"9b2abcdcba974a2f9317db54c9091994", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":430, + "y":380}, + "size":{ + "width":275, + "height":70}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"c63d85bbb76b4c29b46c5f433123a955", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":430, + "y":380}, + "size":{ + "width":275, + "height":70}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/获得授权码/u14.png"}}]}}, + "masters":{ +}, + "objectPaths":{ + "db0a4a576ab94fa1b87cc9ab909f9e99":{ + "scriptId":"u0"}, + "152df14432b044f5b4fe502d6b76f8f0":{ + "scriptId":"u1"}, + "83af31aa3c70426782719dabc264286b":{ + "scriptId":"u2"}, + "bf2db76c06a34d8dae6baf2d889cfeeb":{ + "scriptId":"u3"}, + "e76d26061d42470ea1648d76f26a057f":{ + "scriptId":"u4"}, + "6a7a35516a1b4020b03b5d9432a5acae":{ + "scriptId":"u5"}, + "475eb5872f254630984999a40c245099":{ + "scriptId":"u6"}, + "ef9ff18eb76a4f7dacc2fff951c27f8f":{ + "scriptId":"u7"}, + "a975bd9b33d54eec83dded3bc634c82a":{ + "scriptId":"u8"}, + "3f8462583f5144ffba2affd05399ab3f":{ + "scriptId":"u9"}, + "27c87b9dd3c04d128d9187d88b8e55df":{ + "scriptId":"u10"}, + "e9554a7a80074e3cbf72038fce43ec99":{ + "scriptId":"u11"}, + "46eab98219bc42baa76742c3ba6ab82d":{ + "scriptId":"u12"}, + "2aecec26f77a41f7bcb62a5e9bbd0aef":{ + "scriptId":"u13"}, + "9b2abcdcba974a2f9317db54c9091994":{ + "scriptId":"u14"}, + "c63d85bbb76b4c29b46c5f433123a955":{ + "scriptId":"u15"}}}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\350\216\267\345\276\227\346\216\210\346\235\203\347\240\201/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\350\216\267\345\276\227\346\216\210\346\235\203\347\240\201/styles.css" new file mode 100644 index 0000000..246037f --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\350\216\267\345\276\227\346\216\210\346\235\203\347\240\201/styles.css" @@ -0,0 +1,186 @@ +body { + margin:0px; + background-image:none; + position:static; + left:auto; + width:705px; + margin-left:0; + margin-right:0; + text-align:left; +} +#base { + position:absolute; + z-index:0; +} +#u0 { + position:absolute; + left:30px; + top:20px; + width:390px; + height:744px; +} +#u0_img { + position:absolute; + left:0px; + top:0px; + width:390px; + height:744px; +} +#u1 { + position:absolute; + left:2px; + top:364px; + width:386px; + visibility:hidden; + word-wrap:break-word; +} +#u2 { + position:absolute; + left:62px; + top:163px; + width:308px; + height:13px; +} +#u2_img { + position:absolute; + left:0px; + top:0px; + width:308px; + height:13px; +} +#u3 { + position:absolute; + left:2px; + top:-2px; + width:304px; + visibility:hidden; + word-wrap:break-word; +} +#u4 { + position:absolute; + left:138px; + top:193px; + width:164px; + height:37px; + text-align:center; +} +#u4_img { + position:absolute; + left:0px; + top:0px; + width:164px; + height:37px; +} +#u5 { + position:absolute; + left:0px; + top:0px; + width:164px; + word-wrap:break-word; +} +#u6 { + position:absolute; + left:70px; + top:240px; + width:310px; + height:120px; +} +#u6_img { + position:absolute; + left:0px; + top:0px; + width:310px; + height:120px; +} +#u7 { + position:absolute; + left:2px; + top:16px; + width:306px; + word-wrap:break-word; +} +#u8 { + position:absolute; + left:70px; + top:380px; + width:135px; + height:40px; +} +#u8_img { + position:absolute; + left:0px; + top:0px; + width:135px; + height:40px; +} +#u9 { + position:absolute; + left:2px; + top:12px; + width:131px; + word-wrap:break-word; +} +#u10 { + position:absolute; + left:160px; + top:264px; + width:30px; + height:16px; + font-size:18px; +} +#u11 { + position:absolute; + left:16px; + top:0px; + width:12px; + visibility:hidden; + word-wrap:break-word; +} +#u10_input { + position:absolute; + left:-3px; + top:-2px; +} +#u12 { + position:absolute; + left:245px; + top:380px; + width:135px; + height:40px; +} +#u12_img { + position:absolute; + left:0px; + top:0px; + width:135px; + height:40px; +} +#u13 { + position:absolute; + left:2px; + top:12px; + width:131px; + word-wrap:break-word; +} +#u14 { + position:absolute; + left:430px; + top:380px; + width:275px; + height:70px; + text-align:left; +} +#u14_img { + position:absolute; + left:0px; + top:0px; + width:275px; + height:70px; +} +#u15 { + position:absolute; + left:2px; + top:19px; + width:271px; + word-wrap:break-word; +} diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/data.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/data.js" new file mode 100644 index 0000000..4a25cf8 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/data.js" @@ -0,0 +1,641 @@ +$axure.loadCurrentPage({ + "url":"购买授权码.html", + "generationDate":new Date(1416631106171.88), + "isCanvasEnabled":false, + "variables":["OnLoadVariable"], + "page":{ + "packageId":"dd3f6cbdca3c4e5c819c4001d519df1f", + "type":"Axure:Page", + "name":"购买授权码", + "notes":{ +}, + "style":{ + "baseStyle":"627587b6038d43cca051c114ac41ad32", + "pageAlignment":"near", + "fill":{ + "fillType":"solid", + "color":0xFFFFFFFF}, + "image":null, + "imageHorizontalAlignment":"near", + "imageVerticalAlignment":"near", + "imageRepeat":"auto", + "favicon":null, + "sketchFactor":"0", + "colorStyle":"appliedColor", + "fontName":"Applied Font", + "borderWidth":"0"}, + "adaptiveStyles":{ +}, + "interactionMap":{ +}, + "diagram":{ + "objects":[{ + "id":"4c24a52bb0a64a358d4be67f26ad248f", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":30, + "y":20}, + "size":{ + "width":380, + "height":744}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"4851d3f098524ff3af28ba924895e843", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":30, + "y":20}, + "size":{ + "width":380, + "height":744}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/购买授权码/u0.png"}}, +{ + "id":"d1b12ebc18a64dde915c04ccb047d60f", + "label":"", + "type":"imageBox", + "styleType":"imageBox", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":62, + "y":163}, + "size":{ + "width":308, + "height":13}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"3cdf83d5e4474836ac4b3fa94b7b2247", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":62, + "y":163}, + "size":{ + "width":308, + "height":13}, + "borderWidth":"-1", + "borderFill":{ + "fillType":"solid", + "color":0xFF000000}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/购买授权码/u2.png"}}, +{ + "id":"33bde4a31e66404baf561e000fd26999", + "label":"", + "type":"buttonShape", + "styleType":"h1", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":127.5, + "y":196}, + "size":{ + "width":177, + "height":37}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"03c38b5a8bf04488a7a4f6187ef4c10e", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":127.5, + "y":196}, + "size":{ + "width":177, + "height":37}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"2f175be5309942d89de4fc2ab247dc85", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":430, + "y":336}, + "size":{ + "width":260, + "height":50}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"9f640fd6fb59464e831041f9f956e6d9", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":430, + "y":336}, + "size":{ + "width":260, + "height":50}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/购买授权码/u6.png"}}, +{ + "id":"6fdf9973487f4b64889b33b0fb7488a0", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":70, + "y":388}, + "size":{ + "width":300, + "height":150}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"49a6c89503eb4cccae8766eae433e34a", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":70, + "y":388}, + "size":{ + "width":300, + "height":150}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/购买授权码/u8.png"}}, +{ + "id":"44097b4184224ce480e363c3b3ceee48", + "label":"", + "type":"buttonShape", + "styleType":"h1", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "fontSize":"16px", + "location":{ + "x":70, + "y":250}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"f0b17d167d634eff882eccaac6020250", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "fontSize":"16px", + "location":{ + "x":70, + "y":250}, + "size":{ + "width":300, + "height":60}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"resources/images/transparent.gif"}}, +{ + "id":"99cc865882c9454fae1f23e04a8388f6", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":70, + "y":320}, + "size":{ + "width":180, + "height":50}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"dc8fbeb81d394719898354515f693409", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":70, + "y":320}, + "size":{ + "width":180, + "height":50}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/购买授权码/u12.png"}}, +{ + "id":"c31c262e7ada43b68c0c273c68e7e50f", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":70, + "y":548}, + "size":{ + "width":300, + "height":40}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"33f4b0cd17fa4b579d282ebeba6f9310", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "location":{ + "x":70, + "y":548}, + "size":{ + "width":300, + "height":40}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 收银台付款", + "target":{ + "targetType":"page", + "url":"收银台付款.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true, + "images":{ + "normal~":"images/购买授权码/u14.png"}}, +{ + "id":"da685df324ee41e38617b982c745fadc", + "label":"", + "type":"horizontalLine", + "styleType":"horizontalLine", + "visible":true, + "style":{ + "location":{ + "x":90, + "y":350}, + "size":{ + "width":60, + "height":10}}, + "adaptiveStyles":{ +}, + "images":{ + "start~":"resources/images/transparent.gif", + "end~":"resources/images/transparent.gif", + "line~":"images/购买授权码/u16_line.png"}}, +{ + "id":"68d2d316216945e1a5cba8a7bf65b6da", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":430, + "y":252}, + "size":{ + "width":260, + "height":74}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"e54d9dde05514ef180ad55ffb82680da", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":430, + "y":252}, + "size":{ + "width":260, + "height":74}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/购买授权码/u17.png"}}, +{ + "id":"6b29a9eaef074169afbed7d87d6274ee", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":300, + "y":198}, + "size":{ + "width":70, + "height":33}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"851452cafea8421eb6721ecc328e626f", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":300, + "y":198}, + "size":{ + "width":70, + "height":33}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 我的授权码(已绑定设备)", + "target":{ + "targetType":"page", + "url":"我的授权码(已绑定设备).html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true, + "images":{ + "normal~":"images/购买授权码/u19.png"}}, +{ + "id":"2aa88fd783eb4998a9682f64917f5f8b", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":70, + "y":198}, + "size":{ + "width":30, + "height":29}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"044a27d198be492ca14cf42563ca14f9", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":70, + "y":198}, + "size":{ + "width":30, + "height":29}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/购买授权码/u21.png"}}, +{ + "id":"0be5ba191de24864bd4ab7bf528397df", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":270, + "y":349}, + "size":{ + "width":100, + "height":29}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"b42bc2e0125b4b94be69bb5277431fe3", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":270, + "y":349}, + "size":{ + "width":100, + "height":29}}, + "adaptiveStyles":{ +}}], + "interactionMap":{ + "onClick":{ + "description":"OnClick", + "cases":[{ + "description":"用例 1", + "isNewIfGroup":false, + "actions":[{ + "action":"linkWindow", + "description":"在 当前窗口 打开 刷卡器获取授权码", + "target":{ + "targetType":"page", + "url":"刷卡器获取授权码.html", + "includeVariables":true}, + "linkType":"current"}]}]}}, + "tabbable":true, + "images":{ + "normal~":"images/购买授权码/u23.png"}}, +{ + "id":"c97a0d0d87fa4832b6ffe5fd3e8d743c", + "label":"", + "type":"buttonShape", + "styleType":"buttonShape", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":270, + "y":320}, + "size":{ + "width":100, + "height":29}}, + "adaptiveStyles":{ +}, + "objects":[{ + "id":"a8beefb2d8834a4193d48c28f7ce9016", + "label":"", + "isContained":true, + "type":"richTextPanel", + "styleType":"paragraph", + "visible":true, + "style":{ + "fontName":"'Applied Font Regular', 'Applied Font'", + "horizontalAlignment":"left", + "location":{ + "x":270, + "y":320}, + "size":{ + "width":100, + "height":29}}, + "adaptiveStyles":{ +}}], + "images":{ + "normal~":"images/购买授权码/u23.png"}}]}}, + "masters":{ +}, + "objectPaths":{ + "4c24a52bb0a64a358d4be67f26ad248f":{ + "scriptId":"u0"}, + "4851d3f098524ff3af28ba924895e843":{ + "scriptId":"u1"}, + "d1b12ebc18a64dde915c04ccb047d60f":{ + "scriptId":"u2"}, + "3cdf83d5e4474836ac4b3fa94b7b2247":{ + "scriptId":"u3"}, + "33bde4a31e66404baf561e000fd26999":{ + "scriptId":"u4"}, + "03c38b5a8bf04488a7a4f6187ef4c10e":{ + "scriptId":"u5"}, + "2f175be5309942d89de4fc2ab247dc85":{ + "scriptId":"u6"}, + "9f640fd6fb59464e831041f9f956e6d9":{ + "scriptId":"u7"}, + "6fdf9973487f4b64889b33b0fb7488a0":{ + "scriptId":"u8"}, + "49a6c89503eb4cccae8766eae433e34a":{ + "scriptId":"u9"}, + "44097b4184224ce480e363c3b3ceee48":{ + "scriptId":"u10"}, + "f0b17d167d634eff882eccaac6020250":{ + "scriptId":"u11"}, + "99cc865882c9454fae1f23e04a8388f6":{ + "scriptId":"u12"}, + "dc8fbeb81d394719898354515f693409":{ + "scriptId":"u13"}, + "c31c262e7ada43b68c0c273c68e7e50f":{ + "scriptId":"u14"}, + "33f4b0cd17fa4b579d282ebeba6f9310":{ + "scriptId":"u15"}, + "da685df324ee41e38617b982c745fadc":{ + "scriptId":"u16"}, + "68d2d316216945e1a5cba8a7bf65b6da":{ + "scriptId":"u17"}, + "e54d9dde05514ef180ad55ffb82680da":{ + "scriptId":"u18"}, + "6b29a9eaef074169afbed7d87d6274ee":{ + "scriptId":"u19"}, + "851452cafea8421eb6721ecc328e626f":{ + "scriptId":"u20"}, + "2aa88fd783eb4998a9682f64917f5f8b":{ + "scriptId":"u21"}, + "044a27d198be492ca14cf42563ca14f9":{ + "scriptId":"u22"}, + "0be5ba191de24864bd4ab7bf528397df":{ + "scriptId":"u23"}, + "b42bc2e0125b4b94be69bb5277431fe3":{ + "scriptId":"u24"}, + "c97a0d0d87fa4832b6ffe5fd3e8d743c":{ + "scriptId":"u25"}, + "a8beefb2d8834a4193d48c28f7ce9016":{ + "scriptId":"u26"}}}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/styles.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/styles.css" new file mode 100644 index 0000000..0ada7a3 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/files/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/styles.css" @@ -0,0 +1,326 @@ +body { + margin:0px; + background-image:none; + position:static; + left:auto; + width:690px; + margin-left:0; + margin-right:0; + text-align:left; +} +#base { + position:absolute; + z-index:0; +} +#u0 { + position:absolute; + left:30px; + top:20px; + width:380px; + height:744px; +} +#u0_img { + position:absolute; + left:0px; + top:0px; + width:380px; + height:744px; +} +#u1 { + position:absolute; + left:2px; + top:364px; + width:376px; + visibility:hidden; + word-wrap:break-word; +} +#u2 { + position:absolute; + left:62px; + top:163px; + width:308px; + height:13px; +} +#u2_img { + position:absolute; + left:0px; + top:0px; + width:308px; + height:13px; +} +#u3 { + position:absolute; + left:2px; + top:-2px; + width:304px; + visibility:hidden; + word-wrap:break-word; +} +#u4 { + position:absolute; + left:128px; + top:196px; + width:177px; + height:37px; +} +#u4_img { + position:absolute; + left:0px; + top:0px; + width:177px; + height:37px; +} +#u5 { + position:absolute; + left:0px; + top:0px; + width:177px; + word-wrap:break-word; +} +#u6 { + position:absolute; + left:430px; + top:336px; + width:260px; + height:50px; + text-align:left; +} +#u6_img { + position:absolute; + left:0px; + top:0px; + width:260px; + height:50px; +} +#u7 { + position:absolute; + left:2px; + top:9px; + width:256px; + word-wrap:break-word; +} +#u8 { + position:absolute; + left:70px; + top:388px; + width:300px; + height:150px; + text-align:left; +} +#u8_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:150px; +} +#u9 { + position:absolute; + left:2px; + top:11px; + width:296px; + word-wrap:break-word; +} +#u10 { + position:absolute; + left:70px; + top:250px; + width:300px; + height:60px; + font-size:16px; +} +#u10_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:60px; +} +#u11 { + position:absolute; + left:0px; + top:0px; + width:300px; + word-wrap:break-word; +} +#u12 { + position:absolute; + left:70px; + top:320px; + width:180px; + height:50px; + text-align:left; +} +#u12_img { + position:absolute; + left:0px; + top:0px; + width:180px; + height:50px; +} +#u13 { + position:absolute; + left:2px; + top:5px; + width:176px; + word-wrap:break-word; +} +#u14 { + position:absolute; + left:70px; + top:548px; + width:300px; + height:40px; +} +#u14_img { + position:absolute; + left:0px; + top:0px; + width:300px; + height:40px; +} +#u15 { + position:absolute; + left:2px; + top:12px; + width:296px; + word-wrap:break-word; +} +#u16 { + position:absolute; + left:90px; + top:350px; + width:60px; + height:10px; +} +#u16_start { + position:absolute; + left:0px; + top:-5px; + width:18px; + height:20px; +} +#u16_end { + position:absolute; + left:43px; + top:-5px; + width:18px; + height:20px; +} +#u16_line { + position:absolute; + left:0px; + top:5px; + width:60px; + height:1px; +} +#u17 { + position:absolute; + left:430px; + top:252px; + width:260px; + height:74px; + text-align:left; +} +#u17_img { + position:absolute; + left:0px; + top:0px; + width:260px; + height:74px; +} +#u18 { + position:absolute; + left:2px; + top:13px; + width:256px; + word-wrap:break-word; +} +#u19 { + position:absolute; + left:300px; + top:198px; + width:70px; + height:33px; + text-align:left; +} +#u19_img { + position:absolute; + left:0px; + top:0px; + width:70px; + height:33px; +} +#u20 { + position:absolute; + left:2px; + top:8px; + width:66px; + word-wrap:break-word; +} +#u21 { + position:absolute; + left:70px; + top:198px; + width:30px; + height:29px; + text-align:left; +} +#u21_img { + position:absolute; + left:0px; + top:0px; + width:30px; + height:29px; +} +#u22 { + position:absolute; + left:2px; + top:6px; + width:26px; + word-wrap:break-word; +} +#u23 { + position:absolute; + left:270px; + top:349px; + width:100px; + height:29px; + text-align:left; +} +#u23_img { + position:absolute; + left:0px; + top:0px; + width:100px; + height:29px; +} +#u24 { + position:absolute; + left:2px; + top:6px; + width:96px; + word-wrap:break-word; +} +#u25 { + position:absolute; + left:270px; + top:320px; + width:100px; + height:29px; + text-align:left; +} +#u25_img { + position:absolute; + left:0px; + top:0px; + width:100px; + height:29px; +} +#u26 { + position:absolute; + left:2px; + top:6px; + width:96px; + word-wrap:break-word; +} diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\344\273\243\347\220\206\345\225\206\345\210\206\351\205\215\346\216\210\346\235\203\347\240\201/u10.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\344\273\243\347\220\206\345\225\206\345\210\206\351\205\215\346\216\210\346\235\203\347\240\201/u10.png" new file mode 100644 index 0000000..9815cac Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\344\273\243\347\220\206\345\225\206\345\210\206\351\205\215\346\216\210\346\235\203\347\240\201/u10.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\344\273\243\347\220\206\345\225\206\345\210\206\351\205\215\346\216\210\346\235\203\347\240\201/u12_line.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\344\273\243\347\220\206\345\225\206\345\210\206\351\205\215\346\216\210\346\235\203\347\240\201/u12_line.png" new file mode 100644 index 0000000..049948a Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\344\273\243\347\220\206\345\225\206\345\210\206\351\205\215\346\216\210\346\235\203\347\240\201/u12_line.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\344\273\243\347\220\206\345\225\206\345\210\206\351\205\215\346\216\210\346\235\203\347\240\201/u6.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\344\273\243\347\220\206\345\225\206\345\210\206\351\205\215\346\216\210\346\235\203\347\240\201/u6.png" new file mode 100644 index 0000000..39e8657 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\344\273\243\347\220\206\345\225\206\345\210\206\351\205\215\346\216\210\346\235\203\347\240\201/u6.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\344\273\243\347\220\206\345\225\206\345\210\206\351\205\215\346\216\210\346\235\203\347\240\201/u8.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\344\273\243\347\220\206\345\225\206\345\210\206\351\205\215\346\216\210\346\235\203\347\240\201/u8.png" new file mode 100644 index 0000000..5ebca40 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\344\273\243\347\220\206\345\225\206\345\210\206\351\205\215\346\216\210\346\235\203\347\240\201/u8.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/u10.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/u10.png" new file mode 100644 index 0000000..c61ada4 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/u10.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/u12.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/u12.png" new file mode 100644 index 0000000..347ba49 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/u12.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/u14.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/u14.png" new file mode 100644 index 0000000..c158ba2 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/u14.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/u16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/u16.png" new file mode 100644 index 0000000..09dd7d3 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/u16.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/u18.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/u18.png" new file mode 100644 index 0000000..2b453c8 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/u18.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/u20.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/u20.png" new file mode 100644 index 0000000..8eb5963 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/u20.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/u22.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/u22.png" new file mode 100644 index 0000000..3ae492f Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/u22.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/u6.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/u6.png" new file mode 100644 index 0000000..51e54c4 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201/u6.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\345\267\262\345\210\206\351\205\215\350\256\260\345\275\225/u6.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\345\267\262\345\210\206\351\205\215\350\256\260\345\275\225/u6.png" new file mode 100644 index 0000000..e10bae1 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\345\267\262\345\210\206\351\205\215\350\256\260\345\275\225/u6.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201/u6.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201/u6.png" new file mode 100644 index 0000000..1d8fe46 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201/u6.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\345\267\262\347\273\221\345\256\232\350\256\276\345\244\207\357\274\211/u10.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\345\267\262\347\273\221\345\256\232\350\256\276\345\244\207\357\274\211/u10.png" new file mode 100644 index 0000000..5e33c08 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\345\267\262\347\273\221\345\256\232\350\256\276\345\244\207\357\274\211/u10.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\345\267\262\347\273\221\345\256\232\350\256\276\345\244\207\357\274\211/u6.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\345\267\262\347\273\221\345\256\232\350\256\276\345\244\207\357\274\211/u6.png" new file mode 100644 index 0000000..f58df92 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\345\267\262\347\273\221\345\256\232\350\256\276\345\244\207\357\274\211/u6.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\346\234\252\347\273\221\345\256\232\350\256\276\345\244\207\357\274\211/u10.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\346\234\252\347\273\221\345\256\232\350\256\276\345\244\207\357\274\211/u10.png" new file mode 100644 index 0000000..27b73e3 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\346\234\252\347\273\221\345\256\232\350\256\276\345\244\207\357\274\211/u10.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\347\273\221\345\256\232\351\252\214\350\257\201\357\274\211/u12.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\347\273\221\345\256\232\351\252\214\350\257\201\357\274\211/u12.png" new file mode 100644 index 0000000..7c16316 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\347\273\221\345\256\232\351\252\214\350\257\201\357\274\211/u12.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\346\234\252\350\264\255\344\271\260\357\274\211/u14.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\347\273\221\345\256\232\351\252\214\350\257\201\357\274\211/u14.png" similarity index 56% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\346\234\252\350\264\255\344\271\260\357\274\211/u14.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\347\273\221\345\256\232\351\252\214\350\257\201\357\274\211/u14.png" index cd3d50c..95744e5 100644 Binary files "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\346\234\252\350\264\255\344\271\260\357\274\211/u14.png" and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\347\273\221\345\256\232\351\252\214\350\257\201\357\274\211/u14.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\227\240\346\216\210\346\235\203\347\240\201\357\274\211/u14.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\227\240\346\216\210\346\235\203\347\240\201\357\274\211/u14.png" new file mode 100644 index 0000000..3563e94 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\227\240\346\216\210\346\235\203\347\240\201\357\274\211/u14.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\227\240\346\216\210\346\235\203\347\240\201\357\274\211/u16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\227\240\346\216\210\346\235\203\347\240\201\357\274\211/u16.png" new file mode 100644 index 0000000..4476696 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\227\240\346\216\210\346\235\203\347\240\201\357\274\211/u16.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\227\240\346\216\210\346\235\203\347\240\201\357\274\211/u18.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\227\240\346\216\210\346\235\203\347\240\201\357\274\211/u18.png" new file mode 100644 index 0000000..7242fb9 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\227\240\346\216\210\346\235\203\347\240\201\357\274\211/u18.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\227\240\346\216\210\346\235\203\347\240\201\357\274\211/u20.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\227\240\346\216\210\346\235\203\347\240\201\357\274\211/u20.png" new file mode 100644 index 0000000..d8513f7 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\227\240\346\216\210\346\235\203\347\240\201\357\274\211/u20.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\227\240\346\216\210\346\235\203\347\240\201\357\274\211/u28.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\227\240\346\216\210\346\235\203\347\240\201\357\274\211/u28.png" new file mode 100644 index 0000000..e6944ca Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\227\240\346\216\210\346\235\203\347\240\201\357\274\211/u28.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\227\240\346\216\210\346\235\203\347\240\201\357\274\211/u6.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\227\240\346\216\210\346\235\203\347\240\201\357\274\211/u6.png" new file mode 100644 index 0000000..a8aa270 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\227\240\346\216\210\346\235\203\347\240\201\357\274\211/u6.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\234\211\346\216\210\346\235\203\347\240\201\357\274\211/u10.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\234\211\346\216\210\346\235\203\347\240\201\357\274\211/u10.png" new file mode 100644 index 0000000..4f94a3c Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\234\211\346\216\210\346\235\203\347\240\201\357\274\211/u10.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\234\211\346\216\210\346\235\203\347\240\201\357\274\211/u12.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\234\211\346\216\210\346\235\203\347\240\201\357\274\211/u12.png" new file mode 100644 index 0000000..f877ef4 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\234\211\346\216\210\346\235\203\347\240\201\357\274\211/u12.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\234\211\346\216\210\346\235\203\347\240\201\357\274\211/u16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\234\211\346\216\210\346\235\203\347\240\201\357\274\211/u16.png" new file mode 100644 index 0000000..9dcd7a0 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\234\211\346\216\210\346\235\203\347\240\201\357\274\211/u16.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\345\207\272\345\224\256/u12.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\345\207\272\345\224\256/u12.png" new file mode 100644 index 0000000..df7d1ae Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\345\207\272\345\224\256/u12.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\345\207\272\345\224\256/u14.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\345\207\272\345\224\256/u14.png" new file mode 100644 index 0000000..9d99293 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\345\207\272\345\224\256/u14.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\345\207\272\345\224\256/u20.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\345\207\272\345\224\256/u20.png" new file mode 100644 index 0000000..a9b5982 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\345\207\272\345\224\256/u20.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\345\207\272\345\224\256/u6.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\345\207\272\345\224\256/u6.png" new file mode 100644 index 0000000..4987fad Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\345\207\272\345\224\256/u6.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\345\207\272\345\224\256/u8.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\345\207\272\345\224\256/u8.png" new file mode 100644 index 0000000..ec59ebf Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\216\210\346\235\203\347\240\201\345\207\272\345\224\256/u8.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\224\266\351\223\266\345\217\260\344\273\230\346\254\276/u10.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\224\266\351\223\266\345\217\260\344\273\230\346\254\276/u10.png" new file mode 100644 index 0000000..151e32f Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\224\266\351\223\266\345\217\260\344\273\230\346\254\276/u10.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\224\266\351\223\266\345\217\260\344\273\230\346\254\276/u14.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\224\266\351\223\266\345\217\260\344\273\230\346\254\276/u14.png" new file mode 100644 index 0000000..a8e4717 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\224\266\351\223\266\345\217\260\344\273\230\346\254\276/u14.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\224\266\351\223\266\345\217\260\344\273\230\346\254\276/u22.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\224\266\351\223\266\345\217\260\344\273\230\346\254\276/u22.png" new file mode 100644 index 0000000..ebfd26f Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\224\266\351\223\266\345\217\260\344\273\230\346\254\276/u22.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\224\266\351\223\266\345\217\260\344\273\230\346\254\276/u8.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\224\266\351\223\266\345\217\260\344\273\230\346\254\276/u8.png" new file mode 100644 index 0000000..96e5499 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\346\224\266\351\223\266\345\217\260\344\273\230\346\254\276/u8.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/u14.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/u14.png" new file mode 100644 index 0000000..9077086 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/u14.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/u2.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/u2.png" new file mode 100644 index 0000000..986e91f Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/u2.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/u30.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/u30.png" new file mode 100644 index 0000000..109bc43 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/u30.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/u32.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/u32.png" new file mode 100644 index 0000000..660dd55 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/u32.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/u8.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/u8.png" new file mode 100644 index 0000000..2d02693 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260/u8.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\347\224\250\346\210\267\347\272\247\345\210\253\347\244\272\346\204\217/u8.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\347\224\250\346\210\267\347\272\247\345\210\253\347\244\272\346\204\217/u8.png" new file mode 100644 index 0000000..8a0b393 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\347\224\250\346\210\267\347\272\247\345\210\253\347\244\272\346\204\217/u8.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\216\267\345\276\227\346\216\210\346\235\203\347\240\201/u14.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\216\267\345\276\227\346\216\210\346\235\203\347\240\201/u14.png" new file mode 100644 index 0000000..7294b9e Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\216\267\345\276\227\346\216\210\346\235\203\347\240\201/u14.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\216\267\345\276\227\346\216\210\346\235\203\347\240\201/u6.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\216\267\345\276\227\346\216\210\346\235\203\347\240\201/u6.png" new file mode 100644 index 0000000..fe41646 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\216\267\345\276\227\346\216\210\346\235\203\347\240\201/u6.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\216\267\345\276\227\346\216\210\346\235\203\347\240\201/u8.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\216\267\345\276\227\346\216\210\346\235\203\347\240\201/u8.png" new file mode 100644 index 0000000..356583a Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\216\267\345\276\227\346\216\210\346\235\203\347\240\201/u8.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u0.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u0.png" new file mode 100644 index 0000000..e42262d Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u0.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u12.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u12.png" new file mode 100644 index 0000000..d812d4d Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u12.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u14.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u14.png" new file mode 100644 index 0000000..eb48d99 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u14.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u16_line.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u16_line.png" new file mode 100644 index 0000000..63428e8 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u16_line.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u17.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u17.png" new file mode 100644 index 0000000..1898f59 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u17.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u19.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u19.png" new file mode 100644 index 0000000..0622912 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u19.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u2.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u2.png" new file mode 100644 index 0000000..97f9b24 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u2.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u21.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u21.png" new file mode 100644 index 0000000..52cb0d9 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u21.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u25.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u23.png" similarity index 100% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u25.png" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u23.png" diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u6.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u6.png" new file mode 100644 index 0000000..99fcce1 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u6.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u8.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u8.png" new file mode 100644 index 0000000..500c210 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/images/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201/u8.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/index.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/index.html" new file mode 100644 index 0000000..1742793 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/index.html" @@ -0,0 +1,350 @@ + + + + Untitled Document + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    +
    +   +
    +   +
    +
    +
    +
    +
    +
    +
    +
      +
    +
    +
    +
    +
    +
    +
    + +
    + +
    + +
    + +
    + + + diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/plugins/page_notes/page_notes.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/plugins/page_notes/page_notes.js" new file mode 100644 index 0000000..b57edc7 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/plugins/page_notes/page_notes.js" @@ -0,0 +1,52 @@ +// use this to isolate the scope +(function () { + + if (!$axure.document.configuration.showPageNotes) { return; } + + $(window.document).ready(function () { + $axure.player.createPluginHost({ + id: 'pageNotesHost', + context: 'interface', + title: 'Page Notes' + }); + + generatePageNotes(); + + // bind to the page load + $axure.page.bind('load.page_notes', function () { + + $('#pageNameHeader').html(""); + $('#pageNotesContent').html(""); + + //populate the notes + var notes = $axure.page.notes; + if (notes) { + var pageName = $axure.page.pageName; + $('#pageNameHeader').html(pageName); + var showNames = $axure.document.configuration.showPageNoteNames; + + for (var noteName in notes) { + if (showNames) { + $('#pageNotesContent').append("
    " + noteName + "
    "); + } + $('#pageNotesContent').append("
    " + notes[noteName] + "
    "); + } + } + + return false; + }); + + + }); + + function generatePageNotes() { + var pageNotesUi = "
    "; + pageNotesUi += "
    "; + pageNotesUi += "
    "; + pageNotesUi += ""; + pageNotesUi += "
    "; + + $('#pageNotesHost').html(pageNotesUi); + } + +})(); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/plugins/page_notes/styles/page_notes.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/plugins/page_notes/styles/page_notes.css" new file mode 100644 index 0000000..e933962 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/plugins/page_notes/styles/page_notes.css" @@ -0,0 +1,43 @@ +#pageNotesHost { + font-size: 12px; + color:#333; + height: 100%; +} + +#pageNotesScrollContainer +{ + overflow: auto; + width: 100%; + height: 100%; +} + +#pageNotesContainer +{ + padding: 10px 10px 10px 10px; +} + +#pageNameHeader +{ + font-size: 13px; + font-weight: bold; + height: 23px; + white-space: nowrap; +} + +#pageNotesContent +{ + overflow: visible; +} + +.pageNoteName +{ + font-size: 12px; + margin-bottom: 5px; + text-decoration: underline; + white-space: nowrap; +} + +.pageNote +{ + margin-bottom: 10px; +} \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/plugins/sitemap/sitemap.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/plugins/sitemap/sitemap.js" new file mode 100644 index 0000000..7a20691 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/plugins/sitemap/sitemap.js" @@ -0,0 +1,635 @@ +// use this to isolate the scope +(function() { + + var SHOW_HIDE_ANIMATION_DURATION = 0; + + var HIGHLIGHT_INTERACTIVE_VAR_NAME = 'hi'; + var FOOTNOTES_VAR_NAME = 'fn'; + var SITEMAP_COLLAPSE_VAR_NAME = 'c'; + var ADAPTIVE_VIEW_VAR_NAME = 'view'; + + var currentPageLoc = ''; + var currentPlayerLoc = ''; + var currentPageHashString = ''; + + $(window.document).ready(function() { + $axure.player.createPluginHost({ + id: 'sitemapHost', + context: 'interface', + title: 'Sitemap' + }); + + generateSitemap(); + + $('.sitemapPlusMinusLink').toggle(collapse_click, expand_click); + $('.sitemapPageLink').click(node_click); + + $('#sitemapLinksAndOptionsContainer').hide(); + $('#searchDiv').hide(); + $('#linksButton').click(links_click); + $('#adaptiveButton').click(adaptive_click); + $('#footnotesButton').click(footnotes_click).addClass('sitemapToolbarButtonSelected'); + $('#highlightInteractiveButton').click(highlight_interactive); + $('#variablesButton').click(showvars_click); + $('#variablesClearLink').click(clearvars_click); + $('#searchButton').click(search_click); + $('#searchBox').keyup(search_input_keyup); + $('.sitemapLinkField').click(function() { this.select(); }); + $('input[value="withoutmap"]').click(withoutSitemapRadio_click); + $('input[value="withmap"]').click(withSitemapRadio_click); + $('#minimizeBox, #footnotesBox, #highlightBox').change(sitemapUrlOptions_change); + $('#viewSelect').change(sitemapUrlViewSelect_change); + + // $('#sitemapHost').parent().resize(function () { + // $('#sitemapHost').height($(this).height()); + // }); + + // bind to the page load + $axure.page.bind('load.sitemap', function() { + currentPageLoc = $axure.page.location.split("#")[0]; + var decodedPageLoc = decodeURI(currentPageLoc); + var nodeUrl = decodedPageLoc.substr(decodedPageLoc.lastIndexOf('/') ? decodedPageLoc.lastIndexOf('/') + 1 : 0); + currentPlayerLoc = $(location).attr('href').split("#")[0].split("?")[0]; + currentPageHashString = '#p=' + nodeUrl.substr(0, nodeUrl.lastIndexOf('.')); + + setVarInCurrentUrlHash('p', nodeUrl.substring(0, nodeUrl.lastIndexOf('.html'))); + + $('.sitemapPageLink').parent().parent().removeClass('sitemapHighlight'); + $('.sitemapPageLink[nodeUrl="' + nodeUrl + '"]').parent().parent().addClass('sitemapHighlight'); + + $('#sitemapLinksPageName').html($('.sitemapHighlight > .sitemapPageLinkContainer > .sitemapPageLink > .sitemapPageName').html()); + + //Click the "With sitemap" radio button so that it's selected by default + $('input[value="withmap"]').click(); + + //Update variable div with latest global variable values after page has loaded + $axure.messageCenter.postMessage('getGlobalVariables', ''); + + //If footnotes enabled for this prototype... + if($axure.document.configuration.showAnnotations == true) { + //If the fn var is defined and set to 0, hide footnotes + //else if hide-footnotes button selected, hide them + var fnVal = getHashStringVar(FOOTNOTES_VAR_NAME); + if(fnVal.length > 0 && fnVal == 0) { + $('#footnotesButton').removeClass('sitemapToolbarButtonSelected'); + $axure.messageCenter.postMessage('annotationToggle', false); + } else if(!$('#footnotesButton').is('.sitemapToolbarButtonSelected')) { + //If the footnotes button isn't selected, hide them on this loaded page + $axure.messageCenter.postMessage('annotationToggle', false); + } + } + + //If highlight var is present and set to 1 or else if + //sitemap highlight button is selected then highlight interactive elements + var hiVal = getHashStringVar(HIGHLIGHT_INTERACTIVE_VAR_NAME); + if(hiVal.length > 0 && hiVal == 1) { + $('#highlightInteractiveButton').addClass('sitemapToolbarButtonSelected'); + $axure.messageCenter.postMessage('highlightInteractive', true); + } else if($('#highlightInteractiveButton').is('.sitemapToolbarButtonSelected')) { + $axure.messageCenter.postMessage('highlightInteractive', true); + } + + //Set the current view if it is defined in the hash string + //If the view is invalid, set it to 'auto' in the string + //ELSE set the view based on the currently selected view in the toolbar menu + var viewStr = getHashStringVar(ADAPTIVE_VIEW_VAR_NAME); + if(viewStr.length > 0) { + var $view = $('.adaptiveViewOption[val="' + viewStr + '"]'); + if($view.length > 0) { + $view.click(); + } else { + setVarInCurrentUrlHash(ADAPTIVE_VIEW_VAR_NAME, 'auto'); + } + } else if($('.checkedAdaptive').length > 0) { + var $viewOption = $('.checkedAdaptive').parents('.adaptiveViewOption'); + if($viewOption.attr('val') != 'auto') { + $viewOption.click(); + } + } + + $('#mainFrame').focus(); + + return false; + }); + + var $adaptiveViewsContainer = $('#adaptiveViewsContainer'); + var $viewSelect = $('#viewSelect'); + + //Fill out adaptive view container with prototype's defined adaptive views, as well as the default, and Auto + $adaptiveViewsContainer.append('
    Auto
    '); + $viewSelect.append(''); + if(typeof $axure.document.defaultAdaptiveView.name != 'undefined') { + //If the name is a blank string, make the view name the width if non-zero, else 'any' + var defaultViewName = $axure.document.defaultAdaptiveView.name; + if(defaultViewName == '') { + defaultViewName = $axure.document.defaultAdaptiveView.size.width != 0 ? $axure.document.defaultAdaptiveView.size.width : 'Base'; + } + + $adaptiveViewsContainer.append('
    ' + defaultViewName + '
    '); + $viewSelect.append(''); + } + + var enabledViewIds = $axure.document.configuration.enabledViewIds; + for(var viewIndex = 0; viewIndex < $axure.document.adaptiveViews.length; viewIndex++) { + var currView = $axure.document.adaptiveViews[viewIndex]; + if(enabledViewIds.indexOf(currView.id) < 0) continue; + + var widthString = currView.size.width == 0 ? 'any' : currView.size.width; + var heightString = currView.size.height == 0 ? 'any' : currView.size.height; + var conditionString = ''; + if(currView.condition == '>' || currView.condition == '>=') { + conditionString = ' and above'; + } else if(currView.condition == '<' || currView.condition == '<=') { + conditionString = ' and below'; + } + + var viewString = currView.name + ' (' + widthString + ' x ' + heightString + conditionString + ')'; + $adaptiveViewsContainer.append('
    ' + viewString + '
    '); + $viewSelect.append(''); + } + + $('.adaptiveViewOption').click(adaptiveViewOption_click); + + $('#leftPanel').mouseup(function() { + $('.sitemapPopupContainer').hide(); + $('#variablesButton').removeClass('sitemapToolbarButtonSelected'); + $('#adaptiveButton').removeClass('sitemapToolbarButtonSelected'); + $('#linksButton').removeClass('sitemapToolbarButtonSelected'); + }); + + $('#variablesContainer,#sitemapLinksContainer').mouseup(function(event) { + event.stopPropagation(); + }); + $('#variablesButton').mouseup(function(event) { + hideAllContainersExcept(2); + event.stopPropagation(); + }); + $('#adaptiveButton').mouseup(function(event) { + hideAllContainersExcept(1); + event.stopPropagation(); + }); + $('.adaptiveViewOption').mouseup(function(event) { + event.stopPropagation(); + }); + $('#linksButton').mouseup(function(event) { + hideAllContainersExcept(3); + event.stopPropagation(); + }); + + $('#searchBox').focusin(function() { + if($(this).is('.searchBoxHint')) { + $(this).val(''); + $(this).removeClass('searchBoxHint'); + } + }).focusout(function() { + if($(this).val() == '') { + $(this).addClass('searchBoxHint'); + $(this).val('Search'); + } + }); + + var $varContainer = $('#variablesContainer'); + $(window).resize(function() { + if($varContainer.is(":visible")) { + var newHeight = $(this).height() - 120; + if(newHeight < 100) newHeight = 100; + $varContainer.css('max-height', newHeight); + } + }); + }); + + function hideAllContainersExcept(exceptContainer) { + //1 - adaptive container, 2 - vars container, 3 - links container + if(exceptContainer != 1) { + $('#adaptiveViewsContainer').hide(); + $('#adaptiveButton').removeClass('sitemapToolbarButtonSelected'); + } + if(exceptContainer != 2) { + $('#variablesContainer').hide(); + $('#variablesButton').removeClass('sitemapToolbarButtonSelected'); + } + if(exceptContainer != 3) { + $('#sitemapLinksContainer').hide(); + $('#linksButton').removeClass('sitemapToolbarButtonSelected'); + } + } + + function collapse_click(event) { + $(this) + .children('.sitemapMinus').removeClass('sitemapMinus').addClass('sitemapPlus').end() + .closest('li').children('ul').hide(SHOW_HIDE_ANIMATION_DURATION); + + $(this).next('.sitemapFolderOpenIcon').removeClass('sitemapFolderOpenIcon').addClass('sitemapFolderIcon'); + } + + function expand_click(event) { + $(this) + .children('.sitemapPlus').removeClass('sitemapPlus').addClass('sitemapMinus').end() + .closest('li').children('ul').show(SHOW_HIDE_ANIMATION_DURATION); + + $(this).next('.sitemapFolderIcon').removeClass('sitemapFolderIcon').addClass('sitemapFolderOpenIcon'); + } + + function node_click(event) { + $axure.page.navigate(this.getAttribute('nodeUrl'), true); + } + + function links_click(event) { + $('#sitemapLinksContainer').toggle(); + if($('#sitemapLinksContainer').is(":visible")) { + + $('#linksButton').addClass('sitemapToolbarButtonSelected'); + + var linksButtonBottom = $('#linksButton').position().top + $('#linksButton').height(); + $('#sitemapLinksContainer').css('top', linksButtonBottom + 'px'); + } else { + $('#linksButton').removeClass('sitemapToolbarButtonSelected'); + } + } + + $axure.messageCenter.addMessageListener(function(message, data) { + if(message == 'globalVariableValues') { + //If variables container isn't visible, then ignore + if(!$('#variablesContainer').is(":visible")) { + return; + } + + $('#variablesDiv').empty(); + for(var key in data) { + var value = data[key] == '' ? '(blank)' : data[key]; + $('#variablesDiv').append('
    ' + key + '
    ' + value + '
    '); + } + } else if(message == 'adaptiveViewChange') { + $('.adaptiveViewOption').removeClass('currentAdaptiveView'); + if(data) $('div[val="' + data + '"]').addClass('currentAdaptiveView'); + else $('div[val="default"]').addClass('currentAdaptiveView'); + } + }); + + function showvars_click(event) { + $('#variablesContainer').toggle(); + if(!$('#variablesContainer').is(":visible")) { + $('#variablesButton').removeClass('sitemapToolbarButtonSelected'); + } else { + $(window).resize(); + $('#variablesButton').addClass('sitemapToolbarButtonSelected'); + + var variablesButtonBottom = $('#variablesButton').position().top + $('#variablesButton').height(); + $('#variablesContainer').css('top', variablesButtonBottom + 'px'); + $('#variablesContainer').css('left', '30px'); + $('#variablesContainer').css('right', '30px'); + + $axure.messageCenter.postMessage('getGlobalVariables', ''); + } + } + + function clearvars_click(event) { + $axure.messageCenter.postMessage('resetGlobalVariables', ''); + } + + function footnotes_click(event) { + if($('#footnotesButton').is('.sitemapToolbarButtonSelected')) { + $('#footnotesButton').removeClass('sitemapToolbarButtonSelected'); + $axure.messageCenter.postMessage('annotationToggle', false); + //Add 'fn' hash string var so that footnotes stay hidden across reloads + setVarInCurrentUrlHash(FOOTNOTES_VAR_NAME, 0); + } else { + $('#footnotesButton').addClass('sitemapToolbarButtonSelected'); + $axure.messageCenter.postMessage('annotationToggle', true); + //Delete 'fn' hash string var if it exists since default is visible + deleteVarFromCurrentUrlHash(FOOTNOTES_VAR_NAME); + } + } + + function highlight_interactive(event) { + if($('#highlightInteractiveButton').is('.sitemapToolbarButtonSelected')) { + $('#highlightInteractiveButton').removeClass('sitemapToolbarButtonSelected'); + $axure.messageCenter.postMessage('highlightInteractive', false); + //Delete 'hi' hash string var if it exists since default is unselected + deleteVarFromCurrentUrlHash(HIGHLIGHT_INTERACTIVE_VAR_NAME); + } else { + $('#highlightInteractiveButton').addClass('sitemapToolbarButtonSelected'); + $axure.messageCenter.postMessage('highlightInteractive', true); + //Add 'hi' hash string var so that stay highlighted across reloads + setVarInCurrentUrlHash(HIGHLIGHT_INTERACTIVE_VAR_NAME, 1); + } + } + + function adaptive_click(event) { + $('#adaptiveViewsContainer').toggle(); + if(!$('#adaptiveViewsContainer').is(":visible")) { + $('#adaptiveButton').removeClass('sitemapToolbarButtonSelected'); + } else { + $('#adaptiveButton').addClass('sitemapToolbarButtonSelected'); + + var adaptiveButtonBottom = $('#adaptiveButton').position().top + $('#adaptiveButton').height(); + $('#adaptiveViewsContainer').css('top', adaptiveButtonBottom + 'px'); + $('#adaptiveViewsContainer').css('left', $('#adaptiveButton').position().left); + } + } + + function adaptiveViewOption_click(event) { + var currVal = $(this).attr('val'); + + $('.checkedAdaptive').removeClass('checkedAdaptive'); + $(this).find('.adaptiveCheckboxDiv').addClass('checkedAdaptive'); + + if(currVal == 'auto') { + $axure.messageCenter.postMessage('setAdaptiveAuto', ''); + + //Remove view in hash string if one is set + deleteVarFromCurrentUrlHash(ADAPTIVE_VIEW_VAR_NAME); + } else { + $axure.messageCenter.postMessage('switchAdaptiveView', currVal); + + //Set current view in hash string so that it can be maintained across reloads + setVarInCurrentUrlHash(ADAPTIVE_VIEW_VAR_NAME, currVal); + } + } + + function search_click(event) { + $('#searchDiv').toggle(); + if(!$('#searchDiv').is(":visible")) { + $('#searchButton').removeClass('sitemapToolbarButtonSelected'); + $('#searchBox').val(''); + $('#searchBox').keyup(); + $('#sitemapToolbar').css('height', '22px'); + $('#sitemapTreeContainer').css('top', '31px'); + } else { + $('#searchButton').addClass('sitemapToolbarButtonSelected'); + $('#searchBox').focus(); + $('#sitemapToolbar').css('height', '50px'); + $('#sitemapTreeContainer').css('top', '63px'); + } + } + + function search_input_keyup(event) { + var searchVal = $(this).val().toLowerCase(); + //If empty search field, show all nodes, else grey+hide all nodes and + //ungrey+unhide all matching nodes, as well as unhide their parent nodes + if(searchVal == '') { + $('.sitemapPageName').removeClass('sitemapGreyedName'); + $('.sitemapNode').show(); + } else { + $('.sitemapNode').hide(); + + $('.sitemapPageName').addClass('sitemapGreyedName').each(function() { + var nodeName = $(this).text().toLowerCase(); + if(nodeName.indexOf(searchVal) != -1) { + $(this).removeClass('sitemapGreyedName').parents('.sitemapNode:first').show().parents('.sitemapExpandableNode').show(); + } + }); + } + } + + function withoutSitemapRadio_click() { + $('#sitemapLinkWithPlayer').val(currentPageLoc); + $('#minimizeBox').attr('disabled', 'disabled'); + $('#footnotesBox').attr('disabled', 'disabled'); + $('#highlightBox').attr('disabled', 'disabled'); + $('#viewSelect').attr('disabled', 'disabled'); + } + + function withSitemapRadio_click() { + $('#sitemapLinkWithPlayer').val(currentPlayerLoc + currentPageHashString); + $('#minimizeBox').removeAttr('disabled').change(); + $('#footnotesBox').removeAttr('disabled').change(); + $('#highlightBox').removeAttr('disabled').change(); + $('#viewSelect').removeAttr('disabled').change(); + } + + function sitemapUrlOptions_change() { + var currLinkHash = '#' + $('#sitemapLinkWithPlayer').val().split("#")[1]; + var newHash = null; + var varName = ''; + var defVal = 1; + if($(this).is('#minimizeBox')) { + varName = SITEMAP_COLLAPSE_VAR_NAME; + } else if($(this).is('#footnotesBox')) { + varName = FOOTNOTES_VAR_NAME; + defVal = 0; + } else if($(this).is('#highlightBox')) { + varName = HIGHLIGHT_INTERACTIVE_VAR_NAME; + } + + newHash = $(this).is(':checked') ? setHashStringVar(currLinkHash, varName, defVal) : deleteHashStringVar(currLinkHash, varName); + + if(newHash != null) { + $('#sitemapLinkWithPlayer').val(currentPlayerLoc + newHash); + } + } + + function sitemapUrlViewSelect_change() { + var currLinkHash = '#' + $('#sitemapLinkWithPlayer').val().split("#")[1]; + var newHash = null; + var $selectedOption = $(this).find('option:selected'); + if($selectedOption.length == 0) return; + var selectedVal = $selectedOption.attr('value'); + + newHash = selectedVal == 'auto' ? deleteHashStringVar(currLinkHash, ADAPTIVE_VIEW_VAR_NAME) : setHashStringVar(currLinkHash, ADAPTIVE_VIEW_VAR_NAME, selectedVal); + + if(newHash != null) { + $('#sitemapLinkWithPlayer').val(currentPlayerLoc + newHash); + } + } + + function generateSitemap() { + var treeUl = "
    "; + + treeUl += "
    "; + + if($axure.document.configuration.enabledViewIds.length > 0) { + treeUl += ""; + } + + if($axure.document.configuration.showAnnotations == true) { + treeUl += ""; + } + + treeUl += ""; + treeUl += ""; + treeUl += ""; + treeUl += ""; + treeUl += "
    "; + + treeUl += '
    '; + + treeUl += ""; + + treeUl += ""; + + if($axure.document.adaptiveViews.length > 0) { + treeUl += "
    "; + } + treeUl += "
    "; + + treeUl += "
    "; + + treeUl += "
      "; + var rootNodes = $axure.document.sitemap.rootNodes; + for(var i = 0; i < rootNodes.length; i++) { + treeUl += generateNode(rootNodes[i], 0); + } + treeUl += "
    "; + + $('#sitemapHost').html(treeUl); + } + + function generateNode(node, level) { + var hasChildren = (node.children && node.children.length > 0); + if(hasChildren) { + var returnVal = "
  • "; + + if(hasChildren) { + returnVal += "
      "; + for(var i = 0; i < node.children.length; i++) { + var child = node.children[i]; + returnVal += generateNode(child, level + 1); + } + returnVal += "
    "; + } + returnVal += "
  • "; + return returnVal; + } + + function getHashStringVar(query) { + var qstring = window.location.href.split("#"); + if(qstring.length < 2) return ""; + + var prms = qstring[1].split("&"); + var frmelements = new Array(); + var currprmeter, querystr = ""; + + for(var i = 0; i < prms.length; i++) { + currprmeter = prms[i].split("="); + frmelements[i] = new Array(); + frmelements[i][0] = currprmeter[0]; + frmelements[i][1] = currprmeter[1]; + } + + for(var j = 0; j < frmelements.length; j++) { + if(frmelements[j][0] == query) { + querystr = frmelements[j][1]; + break; + } + } + return querystr; + } + + function replaceHash(newHash) { + var currentLocWithoutHash = window.location.toString().split('#')[0]; + + //We use replace so that every hash change doesn't get appended to the history stack. + //We use replaceState in browsers that support it, else replace the location + if(typeof window.history.replaceState != 'undefined') { + window.history.replaceState(null, null, currentLocWithoutHash + newHash); + } else { + window.location.replace(currentLocWithoutHash + newHash); + } + } + + function setHashStringVar(currentHash, varName, varVal) { + var varWithEqual = varName + '='; + var hashToSet = ''; + + var pageIndex = currentHash.indexOf('#' + varWithEqual); + if(pageIndex == -1) pageIndex = currentHash.indexOf('&' + varWithEqual); + if(pageIndex != -1) { + var newHash = currentHash.substring(0, pageIndex); + + newHash = newHash == '' ? '#' + varWithEqual + varVal : newHash + '&' + varWithEqual + varVal; + + var ampIndex = currentHash.indexOf('&', pageIndex + 1); + if(ampIndex != -1) { + newHash = newHash + currentHash.substring(ampIndex); + } + hashToSet = newHash; + } else if(currentHash.indexOf('#') != -1) { + hashToSet = currentHash + '&' + varWithEqual + varVal; + } else { + hashToSet = '#' + varWithEqual + varVal; + } + + if(hashToSet != '') { + return hashToSet; + } + + return null; + } + + function setVarInCurrentUrlHash(varName, varVal) { + var newHash = setHashStringVar(window.location.hash, varName, varVal); + + if(newHash != null) { + replaceHash(newHash); + } + } + + function deleteHashStringVar(currentHash, varName) { + var varWithEqual = varName + '='; + + var pageIndex = currentHash.indexOf('#' + varWithEqual); + if(pageIndex == -1) pageIndex = currentHash.indexOf('&' + varWithEqual); + if(pageIndex != -1) { + var newHash = currentHash.substring(0, pageIndex); + + var ampIndex = currentHash.indexOf('&', pageIndex + 1); + + //IF begin of string....if none blank, ELSE # instead of & and rest + //IF in string....prefix + if none blank, ELSE &-rest + if(newHash == '') { //beginning of string + newHash = ampIndex != -1 ? '#' + currentHash.substring(ampIndex + 1) : ''; + } else { //somewhere in the middle + newHash = newHash + (ampIndex != -1 ? currentHash.substring(ampIndex) : ''); + } + + return newHash; + } + + return null; + } + + function deleteVarFromCurrentUrlHash(varName) { + var newHash = deleteHashStringVar(window.location.hash, varName); + + if(newHash != null) { + replaceHash(newHash); + } + } +})(); diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/plugins/sitemap/styles/images/079_page_16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/plugins/sitemap/styles/images/079_page_16.png" new file mode 100644 index 0000000..2df8317 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/plugins/sitemap/styles/images/079_page_16.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/plugins/sitemap/styles/images/086_case_16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/plugins/sitemap/styles/images/086_case_16.png" new file mode 100644 index 0000000..6665ef4 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/plugins/sitemap/styles/images/086_case_16.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/plugins/sitemap/styles/images/225_responsive_16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/plugins/sitemap/styles/images/225_responsive_16.png" new file mode 100644 index 0000000..1ae8edd Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/plugins/sitemap/styles/images/225_responsive_16.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/plugins/sitemap/styles/images/228_togglenotes_16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/plugins/sitemap/styles/images/228_togglenotes_16.png" new file mode 100644 index 0000000..f0f5f0f Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/plugins/sitemap/styles/images/228_togglenotes_16.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/plugins/sitemap/styles/images/229_variables_16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/plugins/sitemap/styles/images/229_variables_16.png" new file mode 100644 index 0000000..0d21988 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/plugins/sitemap/styles/images/229_variables_16.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/plugins/sitemap/styles/images/231_event_16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/plugins/sitemap/styles/images/231_event_16.png" new file mode 100644 index 0000000..1d763a6 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/plugins/sitemap/styles/images/231_event_16.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/plugins/sitemap/styles/images/232_search_16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/plugins/sitemap/styles/images/232_search_16.png" new file mode 100644 index 0000000..4fdfe78 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/plugins/sitemap/styles/images/232_search_16.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/plugins/sitemap/styles/images/233_hyperlink_16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/plugins/sitemap/styles/images/233_hyperlink_16.png" new file mode 100644 index 0000000..bb8b282 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/plugins/sitemap/styles/images/233_hyperlink_16.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/plugins/sitemap/styles/images/235_folderclosed_16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/plugins/sitemap/styles/images/235_folderclosed_16.png" new file mode 100644 index 0000000..dd7d132 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/plugins/sitemap/styles/images/235_folderclosed_16.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/plugins/sitemap/styles/images/236_folderopen_16.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/plugins/sitemap/styles/images/236_folderopen_16.png" new file mode 100644 index 0000000..6e46b58 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/plugins/sitemap/styles/images/236_folderopen_16.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/plugins/sitemap/styles/images/adaptivecheck.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/plugins/sitemap/styles/images/adaptivecheck.png" new file mode 100644 index 0000000..18914ae Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/plugins/sitemap/styles/images/adaptivecheck.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/plugins/sitemap/styles/images/images.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/plugins/sitemap/styles/images/images.html" new file mode 100644 index 0000000..854cbeb --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/plugins/sitemap/styles/images/images.html" @@ -0,0 +1,22 @@ + + + + + + +

    + + + + + + + + + + + + +

    + + \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/plugins/sitemap/styles/images/minus.gif" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/plugins/sitemap/styles/images/minus.gif" new file mode 100644 index 0000000..3284f66 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/plugins/sitemap/styles/images/minus.gif" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/plugins/sitemap/styles/images/plus.gif" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/plugins/sitemap/styles/images/plus.gif" new file mode 100644 index 0000000..373f060 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/plugins/sitemap/styles/images/plus.gif" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/plugins/sitemap/styles/sitemap.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/plugins/sitemap/styles/sitemap.css" new file mode 100644 index 0000000..c5c92c0 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/plugins/sitemap/styles/sitemap.css" @@ -0,0 +1,310 @@ + +#sitemapHost { + font-size: 12px; + color:#333; + background-color:#FFF; + height: 100%; +} + +#sitemapTreeContainer { + /*margin: 0px 8px 0px 10px;*/ + position: absolute; + overflow: auto; + width: 100%; + /*height: 100%;*/ + top: 31px; + bottom: 0px; +} + +.sitemapTree { + /* list-style-type: none; */ + margin: 5px 0px 10px -9px; + overflow:visible; +} + +.sitemapTree ul { + list-style-type: none; + margin: 0px 0px 0px 0px; + padding-left: 0px; +} + +.sitemapPlusMinusLink +{ +} + +.sitemapMinus +{ + vertical-align:middle; + background: url('images/minus.gif'); + background-repeat: no-repeat; + margin-right: 3px; + margin-bottom: 1px; + height:9px; + width:9px; + display:inline-block; +} + +.sitemapPlus +{ + vertical-align:middle; + background: url('images/plus.gif'); + background-repeat: no-repeat; + margin-right: 3px; + margin-bottom: 1px; + height:9px; + width:9px; + display:inline-block; +} + +.sitemapPageLink +{ + margin-left: 0px; +} + +.sitemapPageIcon +{ + margin-bottom:-3px; + width: 16px; + height: 16px; + display: inline-block; + background: url('images/079_page_16.png'); + background-repeat: no-repeat; +} + +.sitemapFlowIcon +{ + background: url('images/086_case_16.png'); +} + +.sitemapFolderIcon +{ + background: url('images/235_folderclosed_16.png'); +} + +.sitemapFolderOpenIcon +{ + background: url('images/236_folderopen_16.png'); +} + +.sitemapPageName +{ + margin-left: 3px; +} + +.sitemapNode +{ + margin:4px 0px 4px 0px; + white-space:nowrap; +} + +.sitemapPageLinkContainer { + margin-left: 0px; + padding-bottom: 1px; +} +/* +.sitemapNode div +{ + padding-top: 1px; + padding-bottom: 3px; + padding-left: 20px; + height: 14px; +} +*/ + +.sitemapExpandableNode +{ + margin-left: 0px; +} + +.sitemapHighlight +{ + background-color : rgb(204,235,248); + font-weight: bold; +} + +.sitemapGreyedName +{ + color: #AAA; +} + +#sitemapToolbar +{ + margin: 5px 5px 5px 5px; + height: 22px; +} + +#sitemapToolbar .sitemapToolbarButton +{ + float: left; + width: 22px; + height: 22px; + border: 1px solid transparent; +} + +#sitemapToolbar .sitemapToolbarButton:hover +{ + border: 1px solid rgb(0,157,217); + background-color : rgb(166,221,242); +} + +#sitemapToolbar .sitemapToolbarButton:active +{ + border: 1px solid rgb(0,157,217); + background-color : rgb(204,235,248); +} + +#sitemapToolbar .sitemapToolbarButtonSelected { + border: 1px solid rgb(0,157,217); + background-color : rgb(204,235,248); +} + +#linksButton { + background: url('images/233_hyperlink_16.png') no-repeat center center; +} + +#adaptiveButton { + background: url('images/225_responsive_16.png') no-repeat center center; +} + +#footnotesButton { + background: url('images/228_togglenotes_16.png') no-repeat center center; +} + +#highlightInteractiveButton { + background: url('images/231_event_16.png') no-repeat center center; +} + +#variablesButton { + background: url('images/229_variables_16.png') no-repeat center center; +} + +#searchButton { + background: url('images/232_search_16.png') no-repeat center center; +} + +.sitemapLinkContainer +{ + margin-top: 8px; + padding-right: 5px; + font-size: 12px; +} + +.sitemapLinkField +{ + width: 100%; + font-size: 12px; + margin-top: 3px; +} + +.sitemapOptionContainer +{ + margin-top: 8px; + padding-right: 5px; + font-size: 12px; +} + +#sitemapOptionsDiv +{ + margin-top: 5px; + margin-left: 16px; +} + +#viewSelectDiv +{ + margin-left: 5px; +} + +#viewSelect +{ + width: 70%; +} + +.sitemapUrlOption +{ + padding-bottom: 5px; +} + +.optionLabel +{ + font-size: 12px; +} + +.sitemapPopupContainer +{ + display: none; + position: absolute; + background-color: #F4F4F4; + border: 1px solid #B9B9B9; + padding: 5px 5px 5px 5px; + margin: 5px 0px 0px 5px; + z-index: 1; +} + +#adaptiveViewsContainer +{ + margin-left: 0px; + padding: 0px; +} + +.adaptiveViewOption +{ + padding: 2px; +} + +.adaptiveViewOption:hover +{ + background-color: rgb(204,235,248); + cursor: pointer; +} + +.currentAdaptiveView { + font-weight: bold; +} + +.adaptiveCheckboxDiv { + height: 15px; + width: 15px; + float: left; +} + +.checkedAdaptive { + background: url('images/adaptivecheck.png') no-repeat center center; +} + +#variablesContainer +{ + max-height: 350px; + overflow: auto; +} + +.variableName +{ + font-weight: bold; +} + +.variableDiv +{ + margin-bottom: 10px; +} + +#variablesClearLink +{ + color: #069; + left: 5px; +} + +.searchBoxHint +{ + color: #AAA; + font-style: italic; +} + +#sitemapLinksPageName +{ + font-weight: bold; +} + +#sitemapOptionsHeader +{ + font-weight: bold; +} \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/Other.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/Other.html" new file mode 100644 index 0000000..d0fa808 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/Other.html" @@ -0,0 +1,35 @@ + + + + + +
    +
    +
    +
    + +
    + + + + + + + \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/chrome/allow_access.gif" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/chrome/allow_access.gif" new file mode 100644 index 0000000..11a6086 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/chrome/allow_access.gif" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/chrome/axure-chrome-extension.crx" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/chrome/axure-chrome-extension.crx" new file mode 100644 index 0000000..fde7743 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/chrome/axure-chrome-extension.crx" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/chrome/axure_logo.gif" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/chrome/axure_logo.gif" new file mode 100644 index 0000000..0e2357c Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/chrome/axure_logo.gif" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/chrome/axure_logo.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/chrome/axure_logo.png" new file mode 100644 index 0000000..cd6f727 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/chrome/axure_logo.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/chrome/chrome.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/chrome/chrome.html" new file mode 100644 index 0000000..9df5cd6 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/chrome/chrome.html" @@ -0,0 +1,175 @@ + + + Install the Axure RP Chrome Extension + + + +
    +
    +
    + axure +
    +

    + AXURE RP EXTENSION
    + For Chrome

    +

    + Google Chrome requires an extension to view locally stored projects. Alternatively, + upload your RP file to AxShare or use a different + browser.

    +

    + VIEW LOCAL PROJECTS IN CHROME

    +
    +

    + 1. Install Extension from Chrome Store

    + +
    +
    +

    + 2. Open the Extensions Options

    + extensions +
    +
    +  
    +
    +

    + 3. Check "Allow access to file URLs"

    + allow access +
    +
    +

    + 4. Click the button below

    + +
    +
    +
    +

    + EXTENSION FAQ

    +

    + What is a Chrome Extension? Extensions are downloadable + plug-ins for Google Chrome that modify the browser
    + and allow you additional capabilities. +

    +

    + Why do I need to install the extension? Google requires + this extension to be installed to allow the viewing of local files in
    + Chrome +

    +

    + Why does this extension require a high access level? This + extension requires a high access level to allow the viewing of the file://
    + protocol. Axure does not track or access any of your information. +

    +

    + ROUND UP

    +

    + Chrome requires this extension to be installed to view local files.

    +

    + Need help or have any questions? Drop us a line at + support@axure.com. +

    +
    +
    +
    + + diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/chrome/extensions_menu.gif" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/chrome/extensions_menu.gif" new file mode 100644 index 0000000..1c8b1a1 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/chrome/extensions_menu.gif" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/chrome/splitter.gif" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/chrome/splitter.gif" new file mode 100644 index 0000000..3f8bca9 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/chrome/splitter.gif" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/chrome/splitter.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/chrome/splitter.png" new file mode 100644 index 0000000..8e354e7 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/chrome/splitter.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/axure_rp_page.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/axure_rp_page.css" new file mode 100644 index 0000000..ab6f818 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/axure_rp_page.css" @@ -0,0 +1,163 @@ +/* so the window resize fires within a frame in IE7 */ +html, body { + height: 100%; +} + +p { + margin: 0px; +} + +iframe { + background: #FFFFFF; +} + +/* to match IE with C, FF */ +input { + padding: 1px 0px 1px 0px; + box-sizing: border-box; + -moz-box-sizing: border-box; +} + +textarea { + margin: 0px; + box-sizing: border-box; + -moz-box-sizing: border-box; +} + +div.intcases { + font-family: arial; + font-size: 12px; + text-align:left; + border:1px solid #AAA; + background:#FFF none repeat scroll 0% 0%; + z-index:9999; + visibility:hidden; + position:absolute; + padding: 0px; + border-radius: 3px; + white-space: nowrap; +} + +div.intcaselink { + cursor: pointer; + padding: 3px 8px 3px 8px; + margin: 5px; + background:#EEE none repeat scroll 0% 0%; + border:1px solid #AAA; + border-radius: 3px; +} + +div.refpageimage { + position: absolute; + left: 0px; + top: 0px; + font-size: 0px; + width: 16px; + height: 16px; + cursor: pointer; + background-image: url(images/newwindow.gif); + background-repeat: no-repeat; +} + +div.annnoteimage { + position: absolute; + left: 0px; + top: 0px; + font-size: 0px; + width: 16px; + height: 12px; + cursor: help; + background-image: url(images/note.gif); + background-repeat: no-repeat; +} + +div.annnotelabel { + position: absolute; + left: 0px; + top: 0px; + font-family: Arial; + font-size: 10px; + border: 1px solid rgb(166,221,242); + cursor: help; + background:rgb(0,157,217) none repeat scroll 0% 0%; + padding-left:3px; + padding-right:3px; + white-space: nowrap; + color: white; +} + +.annotationName { + font-size: 13px; + font-weight: bold; + margin-bottom: 3px; + white-space: nowrap; +} + +.annotation { + font-size: 12px; + padding-left: 2px; + margin-bottom: 5px; +} + +/* this is a fix for the issue where dialogs jump around and takes the text-align from the body */ +.dialogFix { + position:absolute; + text-align:left; +} + + +@keyframes pulsate { + from { + box-shadow: 0 0 10px #74BA11; + } + to { + box-shadow: 0 0 20px #74BA11; + } +} + +@-webkit-keyframes pulsate { + from { + -webkit-box-shadow: 0 0 10px #74BA11; + box-shadow: 0 0 10px #74BA11; + } + to { + -webkit-box-shadow: 0 0 20px #74BA11; + box-shadow: 0 0 20px #74BA11; + } +} + +@-moz-keyframes pulsate { + from { + -moz-box-shadow: 0 0 10px #74BA11; + box-shadow: 0 0 10px #74BA11; + } + to { + -moz-box-shadow: 0 0 20px #74BA11; + box-shadow: 0 0 20px #74BA11; + } +} + +.legacyPulsateBorder { + border: 5px solid #74BA11; + margin: -5px; +} + +.pulsateBorder { + animation-name: pulsate; + animation-timing-function: ease-in-out; + animation-duration: 0.9s; + animation-iteration-count: infinite; + animation-direction: alternate; + + -webkit-animation-name: pulsate; + -webkit-animation-timing-function: ease-in-out; + -webkit-animation-duration: 0.9s; + -webkit-animation-iteration-count: infinite; + -webkit-animation-direction: alternate; + + -moz-animation-name: pulsate; + -moz-animation-timing-function: ease-in-out; + -moz-animation-duration: 0.9s; + -moz-animation-iteration-count: infinite; + -moz-animation-direction: alternate; +} \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/default.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/default.css" new file mode 100644 index 0000000..81581ae --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/default.css" @@ -0,0 +1,128 @@ +body { + font-family : Helvetica, Arial, Sans-Serif; + background-color: #B9B9B9; + overflow:hidden; +} +a { + cursor: pointer; +} +#maximizePanelContainer { + font-size: 4px; + position:absolute; + left: 0px; + top: 0px; + width: 15px; + height: 13px; + overflow: visible; + z-index: 1000; +} +.maximizePanel { + position:absolute; + left: 0px; + top: 0px; + width: 20px; + height: 20px; + margin: 2px 0px 0px 1px; + background: url('../images/261_expand_12rollover1.png') no-repeat; + cursor: pointer; +} +.maximizePanelOver { + background: url('../images/261_expand_12rollover2.png') no-repeat; +} + +#interfaceControlFrameMinimizeContainer { + position:relative; + font-size: 2px; /*for IE*/ + text-align: right; + z-index: 100; + height: 20px; +} +#interfaceControlFrameMinimizeContainer a +{ + display: inline-block; + width: 15px; + height: 20px; + font-size: 2px; + background: url('../images/260_collapse_12rollover1.png') no-repeat; + text-decoration: none; + margin: 5px 5px 0px 0px; +} +#interfaceControlFrame { + margin: 0px; +} +#interfaceControlFrameMinimizeContainer a:hover { + background: url('../images/260_collapse_12rollover2.png') no-repeat; +} +#interfaceControlFrameCloseContainer { + display: inline; + width: 15px; + height: 20px; + font-size: 2px; + margin: 5px 2px 0px 0px; +} +#interfaceControlFrameCloseContainer a +{ + background: url('../images/259_close_12rollover1.png') no-repeat; + margin: 0px; + text-decoration: none; +} +#interfaceControlFrameCloseContainer a:hover +{ + background: url('../images/259_close_12rollover2.png') no-repeat; +} +#interfaceControlFrameHeader li { + display: inline; +} +#interfaceControlFrameHeader a { + outline: none; + padding: 3px 10px 3px 10px; + margin-right: 1px; + text-decoration: none; + color: #575757; + white-space: nowrap; + background-color: #D3D3D3; +} +#interfaceControlFrameHeader a:link {} +#interfaceControlFrameHeader a:hover { + color: #000000; +} +#interfaceControlFrameHeader a.selected { + background-color: White; + font-weight:bold; + padding: 3px 10px 4px 10px; +} +#interfaceControlFrameHeaderContainer { + overflow: visible; + width: 250px; +} +#interfaceControlFrameHeader { + position:relative; + list-style: none; + padding : 4px 0px 4px 0px; + font-size: 11px; + z-index: 50; +} +#interfaceControlFrameContainer { + position: absolute; + background-color: White; + overflow: hidden; + width: 100%; + /*height:100%;*/ +} + +#interfaceControlFrameLogoContainer { + background-color: White; + border-bottom: 1px solid #EFEFEF; + margin: -5px 0px 5px 0px; + padding: 10px 5px 5px 5px; + overflow: hidden; +} +#interfaceControlFrameLogoImageContainer { + text-align: center; +} +#interfaceControlFrameLogoCaptionContainer { + text-align: center; + margin: 5px 10px 0px 10px; + font-size: 11px; + color: #333; +} diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/images/images.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/images/images.html" new file mode 100644 index 0000000..335d9c9 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/images/images.html" @@ -0,0 +1,25 @@ + + + + + + +

    + + + + + + + + + + + + + + + +

    + + \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/images/newwindow.gif" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/images/newwindow.gif" new file mode 100644 index 0000000..7b14cb0 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/images/newwindow.gif" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/images/note.gif" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/images/note.gif" new file mode 100644 index 0000000..a8c2762 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/images/note.gif" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/images/ui-bg_flat_0_aaaaaa_40x100.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/images/ui-bg_flat_0_aaaaaa_40x100.png" new file mode 100644 index 0000000..5b5dab2 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/images/ui-bg_flat_0_aaaaaa_40x100.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/images/ui-bg_glass_55_fbf9ee_1x400.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/images/ui-bg_glass_55_fbf9ee_1x400.png" new file mode 100644 index 0000000..ad3d634 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/images/ui-bg_glass_55_fbf9ee_1x400.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/images/ui-bg_glass_65_ffffff_1x400.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/images/ui-bg_glass_65_ffffff_1x400.png" new file mode 100644 index 0000000..42ccba2 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/images/ui-bg_glass_65_ffffff_1x400.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/images/ui-bg_glass_75_dadada_1x400.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/images/ui-bg_glass_75_dadada_1x400.png" new file mode 100644 index 0000000..5a46b47 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/images/ui-bg_glass_75_dadada_1x400.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/images/ui-bg_glass_75_e6e6e6_1x400.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/images/ui-bg_glass_75_e6e6e6_1x400.png" new file mode 100644 index 0000000..86c2baa Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/images/ui-bg_glass_75_e6e6e6_1x400.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/images/ui-bg_glass_75_ffffff_1x400.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/images/ui-bg_glass_75_ffffff_1x400.png" new file mode 100644 index 0000000..e65ca12 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/images/ui-bg_glass_75_ffffff_1x400.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/images/ui-bg_highlight-soft_75_cccccc_1x100.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/images/ui-bg_highlight-soft_75_cccccc_1x100.png" new file mode 100644 index 0000000..7c9fa6c Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/images/ui-bg_highlight-soft_75_cccccc_1x100.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/images/ui-bg_inset-soft_95_fef1ec_1x100.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/images/ui-bg_inset-soft_95_fef1ec_1x100.png" new file mode 100644 index 0000000..0e05810 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/images/ui-bg_inset-soft_95_fef1ec_1x100.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/images/ui-icons_222222_256x240.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/images/ui-icons_222222_256x240.png" new file mode 100644 index 0000000..b273ff1 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/images/ui-icons_222222_256x240.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/images/ui-icons_2e83ff_256x240.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/images/ui-icons_2e83ff_256x240.png" new file mode 100644 index 0000000..09d1cdc Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/images/ui-icons_2e83ff_256x240.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/images/ui-icons_454545_256x240.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/images/ui-icons_454545_256x240.png" new file mode 100644 index 0000000..59bd45b Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/images/ui-icons_454545_256x240.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/images/ui-icons_888888_256x240.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/images/ui-icons_888888_256x240.png" new file mode 100644 index 0000000..6d02426 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/images/ui-icons_888888_256x240.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/images/ui-icons_cd0a0a_256x240.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/images/ui-icons_cd0a0a_256x240.png" new file mode 100644 index 0000000..2ab019b Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/images/ui-icons_cd0a0a_256x240.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/jquery-ui-themes.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/jquery-ui-themes.css" new file mode 100644 index 0000000..017ebc5 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/jquery-ui-themes.css" @@ -0,0 +1,408 @@ +/* +* jQuery UI CSS Framework +* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about) +* Dual licensed under the MIT (MIT-LICENSE.txt) and GPL (GPL-LICENSE.txt) licenses. +*/ + +/* Layout helpers +----------------------------------*/ +.ui-helper-hidden { display: none; } +.ui-helper-hidden-accessible { position: absolute; left: -99999999px; } +.ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; } +.ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; } +.ui-helper-clearfix { display: inline-block; } +/* required comment for clearfix to work in Opera \*/ +* html .ui-helper-clearfix { height:1%; } +.ui-helper-clearfix { display:block; } +/* end clearfix */ +.ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); } + + +/* Interaction Cues +----------------------------------*/ +.ui-state-disabled { cursor: default !important; } + + +/* Icons +----------------------------------*/ + +/* states and images */ +.ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; } + + +/* Misc visuals +----------------------------------*/ + +/* Overlays */ +.ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }/* Accordion +----------------------------------*/ +.ui-accordion .ui-accordion-header { cursor: pointer; position: relative; margin-top: 1px; zoom: 1; } +.ui-accordion .ui-accordion-li-fix { display: inline; } +.ui-accordion .ui-accordion-header-active { border-bottom: 0 !important; } +.ui-accordion .ui-accordion-header a { display: block; font-size: 1em; padding: .5em .5em .5em 2.2em; } +.ui-accordion .ui-accordion-header .ui-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; } +.ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; margin-top: -2px; position: relative; top: 1px; margin-bottom: 2px; overflow: auto; display: none; } +.ui-accordion .ui-accordion-content-active { display: block; } + +/* Datepicker +----------------------------------*/ +.ui-datepicker { width: 17em; padding: .2em .2em 0; } +.ui-datepicker .ui-datepicker-header { position:relative; padding:.2em 0; } +.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 2px; width: 1.8em; height: 1.8em; } +.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { top: 1px; } +.ui-datepicker .ui-datepicker-prev { left:2px; } +.ui-datepicker .ui-datepicker-next { right:2px; } +.ui-datepicker .ui-datepicker-prev-hover { left:1px; } +.ui-datepicker .ui-datepicker-next-hover { right:1px; } +.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span { display: block; position: absolute; left: 50%; margin-left: -8px; top: 50%; margin-top: -8px; } +.ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; } +.ui-datepicker .ui-datepicker-title select { float:left; font-size:1em; margin:1px 0; } +.ui-datepicker select.ui-datepicker-month-year {width: 100%;} +.ui-datepicker select.ui-datepicker-month, +.ui-datepicker select.ui-datepicker-year { width: 49%;} +.ui-datepicker .ui-datepicker-title select.ui-datepicker-year { float: right; } +.ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; } +.ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0; } +.ui-datepicker td { border: 0; padding: 1px; } +.ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; } +.ui-datepicker .ui-datepicker-buttonpane { background-image: none; margin: .7em 0 0 0; padding:0 .2em; border-left: 0; border-right: 0; border-bottom: 0; } +.ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; } +.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; } + +/* with multiple calendars */ +.ui-datepicker.ui-datepicker-multi { width:auto; } +.ui-datepicker-multi .ui-datepicker-group { float:left; } +.ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; } +.ui-datepicker-multi-2 .ui-datepicker-group { width:50%; } +.ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; } +.ui-datepicker-multi-4 .ui-datepicker-group { width:25%; } +.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; } +.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; } +.ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; } +.ui-datepicker-row-break { clear:both; width:100%; } + +/* RTL support */ +.ui-datepicker-rtl { direction: rtl; } +.ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; } +.ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; } +.ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; } +.ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; } +.ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; } +.ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; } +.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; } +.ui-datepicker-rtl .ui-datepicker-group { float:right; } +.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; } +.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; } + +/* IE6 IFRAME FIX (taken from datepicker 1.5.3 */ +.ui-datepicker-cover { + display: none; /*sorry for IE5*/ + display/**/: block; /*sorry for IE5*/ + position: absolute; /*must have*/ + z-index: -1; /*must have*/ + filter: mask(); /*must have*/ + top: -4px; /*must have*/ + left: -4px; /*must have*/ + width: 200px; /*must have*/ + height: 200px; /*must have*/ +} + +/* Dialog +----------------------------------*/ +.ui-dialog { position: relative; padding: 0px; width: 300px;} +.ui-dialog .ui-dialog-titlebar { padding: .3em .3em .1em .8em; font-size:.7em; position: relative; background-image: none; } +.ui-dialog .ui-dialog-title { float: left; margin: .1em 0 .2em; } +.ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .1em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; } +.ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; } +.ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { /*padding: 0;*/ } +.ui-dialog .ui-dialog-content { border: 0; padding: .5em .2em; background: none; overflow: auto; zoom: 1; } +.ui-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; padding: .3em 1em .5em .4em; } +.ui-dialog .ui-dialog-buttonpane button { float: right; margin: .5em .4em .5em 0; cursor: pointer; padding: .2em .6em .3em .6em; line-height: 1.4em; width:auto; overflow:visible; } +.ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; } +.ui-draggable .ui-dialog-titlebar { cursor: move; } + +/* Progressbar +----------------------------------*/ +.ui-progressbar { height:2em; text-align: left; } +.ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; }/* Resizable +----------------------------------*/ +.ui-resizable { position: relative;} +.ui-resizable-handle { position: absolute;font-size: 0.1px;z-index: 99999; display: block;} +.ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; } +.ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0px; } +.ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0px; } +.ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0px; height: 100%; } +.ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0px; height: 100%; } +.ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; } +.ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; } +.ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; } +.ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;}/* Slider +----------------------------------*/ +.ui-slider { position: relative; text-align: left; } +.ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; } +.ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; } + +.ui-slider-horizontal { height: .8em; } +.ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; } +.ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; } +.ui-slider-horizontal .ui-slider-range-min { left: 0; } +.ui-slider-horizontal .ui-slider-range-max { right: 0; } + +.ui-slider-vertical { width: .8em; height: 100px; } +.ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; } +.ui-slider-vertical .ui-slider-range { left: 0; width: 100%; } +.ui-slider-vertical .ui-slider-range-min { bottom: 0; } +.ui-slider-vertical .ui-slider-range-max { top: 0; }/* Tabs +----------------------------------*/ +.ui-tabs { padding: .2em; zoom: 1; } +.ui-tabs .ui-tabs-nav { list-style: none; position: relative; padding: .2em .2em 0; } +.ui-tabs .ui-tabs-nav li { position: relative; float: left; border-bottom-width: 0 !important; margin: 0 .2em -1px 0; padding: 0; } +.ui-tabs .ui-tabs-nav li a { float: left; text-decoration: none; padding: .5em 1em; } +.ui-tabs .ui-tabs-nav li.ui-tabs-selected { padding-bottom: 1px; border-bottom-width: 0; } +.ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: text; } +.ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */ +.ui-tabs .ui-tabs-panel { padding: 1em 1.4em; display: block; border-width: 0; background: none; } +.ui-tabs .ui-tabs-hide { display: none !important; } +/* +* jQuery UI CSS Framework +* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about) +* Dual licensed under the MIT (MIT-LICENSE.txt) and GPL (GPL-LICENSE.txt) licenses. +* To view and modify this theme, visit http://jqueryui.com/themeroller/ +*/ + + +/* Component containers +----------------------------------*/ +.ui-widget { font-family: Verdana,Arial,sans-serif/*{ffDefault}*/; font-size: 1.1em/*{fsDefault}*/; } +.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Verdana,Arial,sans-serif/*{ffDefault}*/; font-size: 1em; } +.ui-widget-content { border: 1px solid #aaaaaa/*{borderColorContent}*/; background: #ffffff/*{bgColorContent}*/ url(images/ui-bg_glass_75_ffffff_1x400.png)/*{bgImgUrlContent}*/ 0/*{bgContentXPos}*/ 0/*{bgContentYPos}*/ repeat-x/*{bgContentRepeat}*/; color: #222222/*{fcContent}*/; } +.ui-widget-content a { color: #222222/*{fcContent}*/; } +.ui-widget-header { border: none /*1px solid #aaaaaa*//*{borderColorHeader}*/; background: #D3D3D3/*{bgColorHeader}*/ url(images/ui-bg_highlight-soft_75_cccccc_1x100.png)/*{bgImgUrlHeader}*/ 0/*{bgHeaderXPos}*/ 50%/*{bgHeaderYPos}*/ repeat-x/*{bgHeaderRepeat}*/; color: #000000/*{fcHeader}*/; font-weight: bold; } +.ui-widget-header a { color: #222222/*{fcHeader}*/; } + +/* Interaction states +----------------------------------*/ +.ui-state-default, .ui-widget-content .ui-state-default { border: none /*1px solid #d3d3d3*//*{borderColorDefault}*/; /*background: #e6e6e6*//*{bgColorDefault}*/ /*url(images/ui-bg_glass_75_e6e6e6_1x400.png)*//*{bgImgUrlDefault}*/ /*0*//*{bgDefaultXPos}*/ /*50%*//*{bgDefaultYPos}*/ /*repeat-x*//*{bgDefaultRepeat}*/ font-weight: normal/*{fwDefault}*/; color: #555555/*{fcDefault}*/; outline: none; } +.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #555555/*{fcDefault}*/; text-decoration: none; outline: none; } +.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus { border: none /*1px solid #999999*//*{borderColorHover}*/; /*background: #dadada*//*{bgColorHover}*/ /*url(images/ui-bg_glass_75_dadada_1x400.png)*//*{bgImgUrlHover}*/ /*0*//*{bgHoverXPos}*/ /*50%*//*{bgHoverYPos}*/ /*repeat-x*//*{bgHoverRepeat}*/ font-weight: normal/*{fwDefault}*/; color: #212121/*{fcHover}*/; outline: none; } +.ui-state-hover a, .ui-state-hover a:hover { color: #212121/*{fcHover}*/; text-decoration: none; outline: none; } +.ui-state-active, .ui-widget-content .ui-state-active { border: 1px solid #aaaaaa/*{borderColorActive}*/; background: #ffffff/*{bgColorActive}*/ url(images/ui-bg_glass_65_ffffff_1x400.png)/*{bgImgUrlActive}*/ 0/*{bgActiveXPos}*/ 50%/*{bgActiveYPos}*/ repeat-x/*{bgActiveRepeat}*/; font-weight: normal/*{fwDefault}*/; color: #212121/*{fcActive}*/; outline: none; } +.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #212121/*{fcActive}*/; outline: none; text-decoration: none; } + +/* Interaction Cues +----------------------------------*/ +.ui-state-highlight, .ui-widget-content .ui-state-highlight {border: 1px solid #fcefa1/*{borderColorHighlight}*/; background: #fbf9ee/*{bgColorHighlight}*/ url(images/ui-bg_glass_55_fbf9ee_1x400.png)/*{bgImgUrlHighlight}*/ 0/*{bgHighlightXPos}*/ 50%/*{bgHighlightYPos}*/ repeat-x/*{bgHighlightRepeat}*/; color: #363636/*{fcHighlight}*/; } +.ui-state-highlight a, .ui-widget-content .ui-state-highlight a { color: #363636/*{fcHighlight}*/; } +.ui-state-error, .ui-widget-content .ui-state-error {border: 1px solid #cd0a0a/*{borderColorError}*/; background: #fef1ec/*{bgColorError}*/ url(images/ui-bg_inset-soft_95_fef1ec_1x100.png)/*{bgImgUrlError}*/ 0/*{bgErrorXPos}*/ 50%/*{bgErrorYPos}*/ repeat-x/*{bgErrorRepeat}*/; color: #cd0a0a/*{fcError}*/; } +.ui-state-error a, .ui-widget-content .ui-state-error a { color: #363636/*{fcError}*/; } +.ui-state-error-text, .ui-widget-content .ui-state-error-text { color: #cd0a0a/*{fcError}*/; } +.ui-state-disabled, .ui-widget-content .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; } +.ui-priority-primary, .ui-widget-content .ui-priority-primary { font-weight: bold; } +.ui-priority-secondary, .ui-widget-content .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; } + +/* Icons +----------------------------------*/ + +/* states and images */ +.ui-icon { width: 16px; height: 16px; background-image: url(images/ui-icons_222222_256x240.png)/*{iconsContent}*/; } +.ui-widget-content .ui-icon {background-image: url(images/ui-icons_222222_256x240.png)/*{iconsContent}*/; } +.ui-widget-header .ui-icon {background-image: url(images/ui-icons_222222_256x240.png)/*{iconsHeader}*/; } +.ui-state-default .ui-icon { background-image: url(images/ui-icons_888888_256x240.png)/*{iconsDefault}*/; } +.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(images/ui-icons_454545_256x240.png)/*{iconsHover}*/; } +.ui-state-active .ui-icon {background-image: url(images/ui-icons_454545_256x240.png)/*{iconsActive}*/; } +.ui-state-highlight .ui-icon {background-image: url(images/ui-icons_2e83ff_256x240.png)/*{iconsHighlight}*/; } +.ui-state-error .ui-icon, .ui-state-error-text .ui-icon {background-image: url(images/ui-icons_cd0a0a_256x240.png)/*{iconsError}*/; } + +/* positioning */ +.ui-icon-carat-1-n { background-position: 0 0; } +.ui-icon-carat-1-ne { background-position: -16px 0; } +.ui-icon-carat-1-e { background-position: -32px 0; } +.ui-icon-carat-1-se { background-position: -48px 0; } +.ui-icon-carat-1-s { background-position: -64px 0; } +.ui-icon-carat-1-sw { background-position: -80px 0; } +.ui-icon-carat-1-w { background-position: -96px 0; } +.ui-icon-carat-1-nw { background-position: -112px 0; } +.ui-icon-carat-2-n-s { background-position: -128px 0; } +.ui-icon-carat-2-e-w { background-position: -144px 0; } +.ui-icon-triangle-1-n { background-position: 0 -16px; } +.ui-icon-triangle-1-ne { background-position: -16px -16px; } +.ui-icon-triangle-1-e { background-position: -32px -16px; } +.ui-icon-triangle-1-se { background-position: -48px -16px; } +.ui-icon-triangle-1-s { background-position: -64px -16px; } +.ui-icon-triangle-1-sw { background-position: -80px -16px; } +.ui-icon-triangle-1-w { background-position: -96px -16px; } +.ui-icon-triangle-1-nw { background-position: -112px -16px; } +.ui-icon-triangle-2-n-s { background-position: -128px -16px; } +.ui-icon-triangle-2-e-w { background-position: -144px -16px; } +.ui-icon-arrow-1-n { background-position: 0 -32px; } +.ui-icon-arrow-1-ne { background-position: -16px -32px; } +.ui-icon-arrow-1-e { background-position: -32px -32px; } +.ui-icon-arrow-1-se { background-position: -48px -32px; } +.ui-icon-arrow-1-s { background-position: -64px -32px; } +.ui-icon-arrow-1-sw { background-position: -80px -32px; } +.ui-icon-arrow-1-w { background-position: -96px -32px; } +.ui-icon-arrow-1-nw { background-position: -112px -32px; } +.ui-icon-arrow-2-n-s { background-position: -128px -32px; } +.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; } +.ui-icon-arrow-2-e-w { background-position: -160px -32px; } +.ui-icon-arrow-2-se-nw { background-position: -176px -32px; } +.ui-icon-arrowstop-1-n { background-position: -192px -32px; } +.ui-icon-arrowstop-1-e { background-position: -208px -32px; } +.ui-icon-arrowstop-1-s { background-position: -224px -32px; } +.ui-icon-arrowstop-1-w { background-position: -240px -32px; } +.ui-icon-arrowthick-1-n { background-position: 0 -48px; } +.ui-icon-arrowthick-1-ne { background-position: -16px -48px; } +.ui-icon-arrowthick-1-e { background-position: -32px -48px; } +.ui-icon-arrowthick-1-se { background-position: -48px -48px; } +.ui-icon-arrowthick-1-s { background-position: -64px -48px; } +.ui-icon-arrowthick-1-sw { background-position: -80px -48px; } +.ui-icon-arrowthick-1-w { background-position: -96px -48px; } +.ui-icon-arrowthick-1-nw { background-position: -112px -48px; } +.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; } +.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; } +.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; } +.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; } +.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; } +.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; } +.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; } +.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; } +.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; } +.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; } +.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; } +.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; } +.ui-icon-arrowreturn-1-w { background-position: -64px -64px; } +.ui-icon-arrowreturn-1-n { background-position: -80px -64px; } +.ui-icon-arrowreturn-1-e { background-position: -96px -64px; } +.ui-icon-arrowreturn-1-s { background-position: -112px -64px; } +.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; } +.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; } +.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; } +.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; } +.ui-icon-arrow-4 { background-position: 0 -80px; } +.ui-icon-arrow-4-diag { background-position: -16px -80px; } +.ui-icon-extlink { background-position: -32px -80px; } +.ui-icon-newwin { background-position: -48px -80px; } +.ui-icon-refresh { background-position: -64px -80px; } +.ui-icon-shuffle { background-position: -80px -80px; } +.ui-icon-transfer-e-w { background-position: -96px -80px; } +.ui-icon-transferthick-e-w { background-position: -112px -80px; } +.ui-icon-folder-collapsed { background-position: 0 -96px; } +.ui-icon-folder-open { background-position: -16px -96px; } +.ui-icon-document { background-position: -32px -96px; } +.ui-icon-document-b { background-position: -48px -96px; } +.ui-icon-note { background-position: -64px -96px; } +.ui-icon-mail-closed { background-position: -80px -96px; } +.ui-icon-mail-open { background-position: -96px -96px; } +.ui-icon-suitcase { background-position: -112px -96px; } +.ui-icon-comment { background-position: -128px -96px; } +.ui-icon-person { background-position: -144px -96px; } +.ui-icon-print { background-position: -160px -96px; } +.ui-icon-trash { background-position: -176px -96px; } +.ui-icon-locked { background-position: -192px -96px; } +.ui-icon-unlocked { background-position: -208px -96px; } +.ui-icon-bookmark { background-position: -224px -96px; } +.ui-icon-tag { background-position: -240px -96px; } +.ui-icon-home { background-position: 0 -112px; } +.ui-icon-flag { background-position: -16px -112px; } +.ui-icon-calendar { background-position: -32px -112px; } +.ui-icon-cart { background-position: -48px -112px; } +.ui-icon-pencil { background-position: -64px -112px; } +.ui-icon-clock { background-position: -80px -112px; } +.ui-icon-disk { background-position: -96px -112px; } +.ui-icon-calculator { background-position: -112px -112px; } +.ui-icon-zoomin { background-position: -128px -112px; } +.ui-icon-zoomout { background-position: -144px -112px; } +.ui-icon-search { background-position: -160px -112px; } +.ui-icon-wrench { background-position: -176px -112px; } +.ui-icon-gear { background-position: -192px -112px; } +.ui-icon-heart { background-position: -208px -112px; } +.ui-icon-star { background-position: -224px -112px; } +.ui-icon-link { background-position: -240px -112px; } +.ui-icon-cancel { background-position: 0 -128px; } +.ui-icon-plus { background-position: -16px -128px; } +.ui-icon-plusthick { background-position: -32px -128px; } +.ui-icon-minus { background-position: -48px -128px; } +.ui-icon-minusthick { background-position: -64px -128px; } +.ui-icon-close { background-position: -80px -128px; } +.ui-icon-closethick { background-position: -96px -128px; } +.ui-icon-key { background-position: -112px -128px; } +.ui-icon-lightbulb { background-position: -128px -128px; } +.ui-icon-scissors { background-position: -144px -128px; } +.ui-icon-clipboard { background-position: -160px -128px; } +.ui-icon-copy { background-position: -176px -128px; } +.ui-icon-contact { background-position: -192px -128px; } +.ui-icon-image { background-position: -208px -128px; } +.ui-icon-video { background-position: -224px -128px; } +.ui-icon-script { background-position: -240px -128px; } +.ui-icon-alert { background-position: 0 -144px; } +.ui-icon-info { background-position: -16px -144px; } +.ui-icon-notice { background-position: -32px -144px; } +.ui-icon-help { background-position: -48px -144px; } +.ui-icon-check { background-position: -64px -144px; } +.ui-icon-bullet { background-position: -80px -144px; } +.ui-icon-radio-off { background-position: -96px -144px; } +.ui-icon-radio-on { background-position: -112px -144px; } +.ui-icon-pin-w { background-position: -128px -144px; } +.ui-icon-pin-s { background-position: -144px -144px; } +.ui-icon-play { background-position: 0 -160px; } +.ui-icon-pause { background-position: -16px -160px; } +.ui-icon-seek-next { background-position: -32px -160px; } +.ui-icon-seek-prev { background-position: -48px -160px; } +.ui-icon-seek-end { background-position: -64px -160px; } +.ui-icon-seek-first { background-position: -80px -160px; } +.ui-icon-stop { background-position: -96px -160px; } +.ui-icon-eject { background-position: -112px -160px; } +.ui-icon-volume-off { background-position: -128px -160px; } +.ui-icon-volume-on { background-position: -144px -160px; } +.ui-icon-power { background-position: 0 -176px; } +.ui-icon-signal-diag { background-position: -16px -176px; } +.ui-icon-signal { background-position: -32px -176px; } +.ui-icon-battery-0 { background-position: -48px -176px; } +.ui-icon-battery-1 { background-position: -64px -176px; } +.ui-icon-battery-2 { background-position: -80px -176px; } +.ui-icon-battery-3 { background-position: -96px -176px; } +.ui-icon-circle-plus { background-position: 0 -192px; } +.ui-icon-circle-minus { background-position: -16px -192px; } +.ui-icon-circle-close { background-position: -32px -192px; } +.ui-icon-circle-triangle-e { background-position: -48px -192px; } +.ui-icon-circle-triangle-s { background-position: -64px -192px; } +.ui-icon-circle-triangle-w { background-position: -80px -192px; } +.ui-icon-circle-triangle-n { background-position: -96px -192px; } +.ui-icon-circle-arrow-e { background-position: -112px -192px; } +.ui-icon-circle-arrow-s { background-position: -128px -192px; } +.ui-icon-circle-arrow-w { background-position: -144px -192px; } +.ui-icon-circle-arrow-n { background-position: -160px -192px; } +.ui-icon-circle-zoomin { background-position: -176px -192px; } +.ui-icon-circle-zoomout { background-position: -192px -192px; } +.ui-icon-circle-check { background-position: -208px -192px; } +.ui-icon-circlesmall-plus { background-position: 0 -208px; } +.ui-icon-circlesmall-minus { background-position: -16px -208px; } +.ui-icon-circlesmall-close { background-position: -32px -208px; } +.ui-icon-squaresmall-plus { background-position: -48px -208px; } +.ui-icon-squaresmall-minus { background-position: -64px -208px; } +.ui-icon-squaresmall-close { background-position: -80px -208px; } +.ui-icon-grip-dotted-vertical { background-position: 0 -224px; } +.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; } +.ui-icon-grip-solid-vertical { background-position: -32px -224px; } +.ui-icon-grip-solid-horizontal { background-position: -48px -224px; } +.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; } +.ui-icon-grip-diagonal-se { background-position: -80px -224px; } + + +/* Misc visuals +----------------------------------*/ + +/* Corner radius */ +.ui-corner-tl { -moz-border-radius-topleft: 4px/*{cornerRadius}*/; -webkit-border-top-left-radius: 4px/*{cornerRadius}*/; } +.ui-corner-tr { -moz-border-radius-topright: 4px/*{cornerRadius}*/; -webkit-border-top-right-radius: 4px/*{cornerRadius}*/; } +.ui-corner-bl { -moz-border-radius-bottomleft: 4px/*{cornerRadius}*/; -webkit-border-bottom-left-radius: 4px/*{cornerRadius}*/; } +.ui-corner-br { -moz-border-radius-bottomright: 4px/*{cornerRadius}*/; -webkit-border-bottom-right-radius: 4px/*{cornerRadius}*/; } +.ui-corner-top { -moz-border-radius-topleft: 4px/*{cornerRadius}*/; -webkit-border-top-left-radius: 4px/*{cornerRadius}*/; -moz-border-radius-topright: 4px/*{cornerRadius}*/; -webkit-border-top-right-radius: 4px/*{cornerRadius}*/; } +.ui-corner-bottom { -moz-border-radius-bottomleft: 4px/*{cornerRadius}*/; -webkit-border-bottom-left-radius: 4px/*{cornerRadius}*/; -moz-border-radius-bottomright: 4px/*{cornerRadius}*/; -webkit-border-bottom-right-radius: 4px/*{cornerRadius}*/; } +.ui-corner-right { -moz-border-radius-topright: 4px/*{cornerRadius}*/; -webkit-border-top-right-radius: 4px/*{cornerRadius}*/; -moz-border-radius-bottomright: 4px/*{cornerRadius}*/; -webkit-border-bottom-right-radius: 4px/*{cornerRadius}*/; } +.ui-corner-left { -moz-border-radius-topleft: 4px/*{cornerRadius}*/; -webkit-border-top-left-radius: 4px/*{cornerRadius}*/; -moz-border-radius-bottomleft: 4px/*{cornerRadius}*/; -webkit-border-bottom-left-radius: 4px/*{cornerRadius}*/; } +.ui-corner-all { -moz-border-radius: 0px/*{cornerRadius}*/; -webkit-border-radius: 0px/*{cornerRadius}*/; } + +/* Overlays */ +.ui-widget-overlay { background: #aaaaaa/*{bgColorOverlay}*/ none/*{bgImgUrlOverlay}*/ 0/*{bgOverlayXPos}*/ 0/*{bgOverlayYPos}*/ repeat-x/*{bgOverlayRepeat}*/; opacity: .3;filter:Alpha(Opacity=30)/*{opacityOverlay}*/; } +.ui-widget-shadow { margin: -4px/*{offsetTopShadow}*/ 0 0 -4px/*{offsetLeftShadow}*/; padding: 4px/*{thicknessShadow}*/; background: #aaaaaa/*{bgColorShadow}*/ none/*{bgImgUrlShadow}*/ 0/*{bgShadowXPos}*/ 0/*{bgShadowYPos}*/ repeat-x/*{bgShadowRepeat}*/; opacity: .35;filter:Alpha(Opacity=35)/*{opacityShadow}*/; -moz-border-radius: 4px/*{cornerRadiusShadow}*/; -webkit-border-radius: 4px/*{cornerRadiusShadow}*/; } \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/reset.css" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/reset.css" new file mode 100644 index 0000000..01a4271 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/css/reset.css" @@ -0,0 +1,24 @@ +html,body,div,span, +applet,object,iframe, +h1,h2,h3,h4,h5,h6,p,blockquote,pre, +a,abbr,acronym,address,big,cite,code, +del,dfn,em,font,img,ins,kbd,q,s,samp, +small,strike,strong,sub,sup,tt,var, +dd,dl,dt,li,ol,ul, +fieldset,form,label,legend, +table,caption,tbody,tfoot,thead,tr,th,td { + margin: 0; + padding: 0; + border: 0; +} +table { + border-collapse: collapse; + border-spacing: 0; +} +ol,ul { + list-style: none; +} +q:before,q:after, +blockquote:before,blockquote:after { + content: ""; +} \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/expand.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/expand.html" new file mode 100644 index 0000000..10dfa4c --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/expand.html" @@ -0,0 +1,27 @@ + + + + + + + + + + +
    +
    + + \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/images/259_close_12rollover1.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/images/259_close_12rollover1.png" new file mode 100644 index 0000000..a19bf8a Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/images/259_close_12rollover1.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/images/259_close_12rollover2.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/images/259_close_12rollover2.png" new file mode 100644 index 0000000..2f57c5d Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/images/259_close_12rollover2.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/images/260_collapse_12rollover1.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/images/260_collapse_12rollover1.png" new file mode 100644 index 0000000..426621f Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/images/260_collapse_12rollover1.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/images/260_collapse_12rollover2.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/images/260_collapse_12rollover2.png" new file mode 100644 index 0000000..8450723 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/images/260_collapse_12rollover2.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/images/261_expand_12rollover1.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/images/261_expand_12rollover1.png" new file mode 100644 index 0000000..5c7ec92 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/images/261_expand_12rollover1.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/images/261_expand_12rollover2.png" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/images/261_expand_12rollover2.png" new file mode 100644 index 0000000..81ce138 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/images/261_expand_12rollover2.png" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/images/images.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/images/images.html" new file mode 100644 index 0000000..6b26a37 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/images/images.html" @@ -0,0 +1,17 @@ + + + + + + +

    + + + + + + + +

    + + \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/images/transparent.gif" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/images/transparent.gif" new file mode 100644 index 0000000..35d42e8 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/images/transparent.gif" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/reload.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/reload.html" new file mode 100644 index 0000000..5f99f0b --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/reload.html" @@ -0,0 +1,24 @@ + + + + + + + + + + \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/action.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/action.js" new file mode 100644 index 0000000..2446e53 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/action.js" @@ -0,0 +1,785 @@ +$axure.internal(function($ax) { + var _actionHandlers = {}; + var _action = $ax.action = {}; + + var animationQueue = {}; + var getAnimation = function(id) { + return animationQueue[id] && animationQueue[id][0]; + }; + + var _addAnimation = _action.addAnimation = function(id, func) { + var wasEmpty = !getAnimation(id); + + // Add the func to the queue. Create the queue if necessary. + var queue = animationQueue[id]; + if(!queue) { + animationQueue[id] = queue = []; + } + queue[queue.length] = func; + + // If it was empty, there isn't a callback waiting to be called on this. You have to fire it manually. + if(wasEmpty) func(); + }; + + var _fireAnimationFromQueue = _action.fireAnimationFromQueue = function(id) { + // Remove the function that was just fired + if(animationQueue[id]) $ax.splice(animationQueue[id], 0, 1); + + // Fire the next func if there is one + var func = getAnimation(id); + if(func) func(); + }; + + var _refreshing; + _action.refreshStart = function(repeaterId) { _refreshing = repeaterId; }; + _action.refreshEnd = function() { _refreshing = undefined; }; + + var _repeatersToRefeash = _action.repeatersToRefresh = []; + var _ignoreAction = function(repeaterId) { + return _refreshing == repeaterId; + }; + + var _addRefresh = function(repeaterId) { + if(_repeatersToRefeash.indexOf(repeaterId) == -1) _repeatersToRefeash.push(repeaterId); + }; + + var _dispatchAction = $ax.action.dispatchAction = function(eventInfo, actions, currentIndex) { + currentIndex = currentIndex || 0; + //If no actions, you can bubble + if(currentIndex >= actions.length) return; + //actions are responsible for doing their own dispatching + _actionHandlers[actions[currentIndex].action](eventInfo, actions, currentIndex); + }; + + _actionHandlers.wait = function(eventInfo, actions, index) { + var action = actions[index]; + var infoCopy = $ax.eventCopy(eventInfo); + window.setTimeout(function() { + _dispatchAction(infoCopy, actions, index + 1); + }, action.waitTime); + }; + + _actionHandlers.expr = function(eventInfo, actions, index) { + var action = actions[index]; + + $ax.expr.evaluateExpr(action.expr, eventInfo); //this should be a block + + _dispatchAction(eventInfo, actions, index + 1); + }; + + _actionHandlers.setFunction = _actionHandlers.expr; + + _actionHandlers.linkWindow = function(eventInfo, actions, index) { + linkActionHelper(eventInfo, actions, index); + }; + + _actionHandlers.closeCurrent = function(eventInfo, actions, index) { + $ax.closeWindow(); + _dispatchAction(eventInfo, actions, index + 1); + }; + + _actionHandlers.linkFrame = function(eventInfo, actions, index) { + linkActionHelper(eventInfo, actions, index); + }; + + var linkActionHelper = function(eventInfo, actions, index) { + var action = actions[index]; + eventInfo.link = true; + + if(action.linkType != 'frame') { + if(action.target.targetType == "reloadPage") { + $ax.reload(action.target.includeVariables); + } else if(action.target.targetType == "backUrl") { + $ax.back(); + } + + var url = action.target.url; + if(!url && action.target.urlLiteral) { + url = $ax.expr.evaluateExpr(action.target.urlLiteral, eventInfo, true); + } + + if(url) { + if(action.linkType == "popup") { + $ax.navigate({ + url: url, + target: action.linkType, + includeVariables: action.target.includeVariables, + popupOptions: action.popup + }); + } else { + $ax.navigate({ + url: url, + target: action.linkType, + includeVariables: action.target.includeVariables + }); + } + } + } else linkFrame(eventInfo, action); + eventInfo.link = false; + + _dispatchAction(eventInfo, actions, index + 1); + }; + + var linkFrame = function(eventInfo, action) { + for(var i = 0; i < action.framesToTargets.length; i++) { + var framePath = action.framesToTargets[i].framePath; + var target = action.framesToTargets[i].target; + + var url = target.url; + if(!url && target.urlLiteral) { + url = $ax.expr.evaluateExpr(target.urlLiteral, eventInfo, true); + } + + $ax('#' + $ax.getElementIdsFromPath(framePath, eventInfo)[0]).openLink(url, target.includeVariables); + } + }; + + var _repeatPanelMap = {}; + + _actionHandlers.setPanelState = function(eventInfo, actions, index) { + var action = actions[index]; + + for(var i = 0; i < action.panelsToStates.length; i++) { + var panelToState = action.panelsToStates[i]; + var stateInfo = panelToState.stateInfo; + var elementIds = $ax.getElementIdsFromPath(panelToState.panelPath, eventInfo); + + for(var j = 0; j < elementIds.length; j++) { + var elementId = elementIds[j]; + // Need new scope for elementId and info + (function(elementId, stateInfo) { + _addAnimation(elementId, function() { + var stateNumber = stateInfo.stateNumber; + if(stateInfo.setStateType == "value") { + var oldTarget = eventInfo.targetElement; + eventInfo.targetElement = elementId; + var stateName = $ax.expr.evaluateExpr(stateInfo.stateValue, eventInfo); + eventInfo.targetElement = oldTarget; + stateNumber = Number(stateName); + var panelCount = $('#' + elementId).children().length; + // If not number, or too low or high, try to get it as a name rather than id + if(isNaN(stateNumber) || stateNumber <= 0 || stateNumber > panelCount) { + var states = $ax.getObjectFromElementId(elementId).diagrams; + var stateNameFound = false; + for(var k = 0; k < states.length; k++) { + if(states[k].label == stateName) { + stateNumber = k + 1; + stateNameFound = true; + } + } + // Wasn't a state number, or a state name, so return + if(!stateNameFound) { + return $ax.action.fireAnimationFromQueue(elementId); + } + } + } else if(stateInfo.setStateType == 'next' || stateInfo.setStateType == 'previous') { + var info = $ax.deepCopy(stateInfo); + var repeat = info.repeat; + + // Only map it, if repeat exists. + if(typeof (repeat) == 'number') _repeatPanelMap[elementId] = info; + return _progessPanelState(elementId, info); + } + delete _repeatPanelMap[elementId]; + + // If setting to current (to stop repeat) break here + if(stateInfo.setStateType == 'current') return $ax.action.fireAnimationFromQueue(elementId); + + $ax('#' + elementId).SetPanelState(stateNumber, stateInfo.options, stateInfo.showWhenSet); + }); + })(elementId, stateInfo); + } + } + + _dispatchAction(eventInfo, actions, index + 1); + }; + + var _progessPanelState = function(id, info) { + var direction = info.setStateType; + var loop = info.loop; + var repeat = info.repeat; + var options = info.options; + + var hasRepeat = typeof (repeat) == 'number'; + var currentStateId = $ax.visibility.GetPanelState(id); + var stateNumber = ''; + if(currentStateId != '') { + currentStateId = $ax.repeater.getScriptIdFromElementId(currentStateId); + var currentStateNumber = Number(currentStateId.substr(currentStateId.indexOf('state') + 5)); + if(direction == "next") { + stateNumber = currentStateNumber + 2; + if(stateNumber > $('#' + id).children().length) { + if(loop) stateNumber = 1; + else { + delete _repeatPanelMap[id]; + return $ax.action.fireAnimationFromQueue(id); + } + } + } else if(direction == "previous") { + stateNumber = currentStateNumber; + if(stateNumber <= 0) { + if(loop) stateNumber = $('#' + id).children().length; + else { + delete _repeatPanelMap[id]; + return $ax.action.fireAnimationFromQueue(id); + } + } + } + + $ax('#' + id).SetPanelState(stateNumber, options, info.showWhenSet); + + if(hasRepeat) { + var animate = options && options.animateIn; + if(animate && animate.easing && animate.easing != 'none' && animate.duration > repeat) repeat = animate.duration; + animate = options && options.animateOut; + if(animate && animate.easing && animate.easing != 'none' && animate.duration > repeat) repeat = animate.duration; + + window.setTimeout(function() { + // Either new repeat, or no repeat anymore. + if(_repeatPanelMap[id] != info) return; + _addAnimation(id, function() { + _progessPanelState(id, info); + }); + }, repeat); + } else delete _repeatPanelMap[id]; + } + }; + + _actionHandlers.fadeWidget = function(eventInfo, actions, index) { + var action = actions[index]; + + for(var i = 0; i < action.objectsToFades.length; i++) { + var fadeInfo = action.objectsToFades[i].fadeInfo; + var elementIds = $ax.getElementIdsFromPath(action.objectsToFades[i].objectPath, eventInfo); + + for(var j = 0; j < elementIds.length; j++) { + var elementId = elementIds[j]; + // Need new scope for elementId and info + (function(elementId, fadeInfo) { + _addAnimation(elementId, function() { + if(fadeInfo.fadeType == "hide") { + $ax('#' + elementId).hide(fadeInfo.options); + } else if(fadeInfo.fadeType == "show") { + $ax('#' + elementId).show(fadeInfo.options, eventInfo); + } else if(fadeInfo.fadeType == "toggle") { + $ax('#' + elementId).toggleVisibility(fadeInfo.options); + } + }); + })(elementId, fadeInfo); + } + } + + _dispatchAction(eventInfo, actions, index + 1); + }; + + _actionHandlers.moveWidget = function(eventInfo, actions, index) { + var action = actions[index]; + for(var i = 0; i < action.objectsToMoves.length; i++) { + var moveInfo = action.objectsToMoves[i].moveInfo; + var elementIds = $ax.getElementIdsFromPath(action.objectsToMoves[i].objectPath, eventInfo); + + for(var j = 0; j < elementIds.length; j++) { + var elementId = elementIds[j]; + // Need new scope for elementId and info + (function(elementId, moveInfo) { + var oldTarget = eventInfo.targetElement; + eventInfo.targetElement = elementId; + var xValue = $ax.expr.evaluateExpr(moveInfo.xValue, eventInfo); + var yValue = $ax.expr.evaluateExpr(moveInfo.yValue, eventInfo); + eventInfo.targetElement = oldTarget; + + var widgetDragInfo = eventInfo.dragInfo; + _addAnimation(elementId, function() { + if(moveInfo.moveType == "location") { + $ax('#' + elementId).moveTo(xValue, yValue, moveInfo.options); + } else if(moveInfo.moveType == "delta") { + $ax('#' + elementId).moveBy(xValue, yValue, moveInfo.options); + } else if(moveInfo.moveType == "drag") { + $ax('#' + elementId).moveBy(widgetDragInfo.xDelta, widgetDragInfo.yDelta, moveInfo.options); + } else if(moveInfo.moveType == "dragX") { + $ax('#' + elementId).moveBy(widgetDragInfo.xDelta, 0, moveInfo.options); + } else if(moveInfo.moveType == "dragY") { + $ax('#' + elementId).moveBy(0, widgetDragInfo.yDelta, moveInfo.options); + } else if(moveInfo.moveType == "locationBeforeDrag") { + var loc = widgetDragInfo.movedWidgets[elementId]; + if(loc) $ax('#' + elementId).moveTo(loc.x, loc.y, moveInfo.options); + else _fireAnimationFromQueue(elementId); + } else if(moveInfo.moveType == "withThis") { + var widgetMoveInfo = $ax.move.GetWidgetMoveInfo(); + var srcElementId = $ax.getElementIdsFromEventAndScriptId(eventInfo, eventInfo.srcElement)[0]; + var delta = widgetMoveInfo[srcElementId]; + if(delta) $ax('#' + elementId).moveBy(delta.x, delta.y, delta.options); + else _fireAnimationFromQueue(elementId); + } + }); + })(elementId, moveInfo); + } + } + + _dispatchAction(eventInfo, actions, index + 1); + }; + + _actionHandlers.setWidgetSize = function(eventInfo, actions, index) { + var action = actions[index]; + for(var i = 0; i < action.objectsToResize.length; i++) { + var resizeInfo = action.objectsToResize[i].sizeInfo; + var elementIds = $ax.getElementIdsFromPath(action.objectsToResize[i].objectPath, eventInfo); + + for(var j = 0; j < elementIds.length; j++) { + var elementId = elementIds[j]; + + // Need new scope for elementId and info + (function(elementId, resizeInfo) { + var oldTarget = eventInfo.targetElement; + eventInfo.targetElement = elementId; + var width = $ax.expr.evaluateExpr(resizeInfo.width, eventInfo); + var height = $ax.expr.evaluateExpr(resizeInfo.height, eventInfo); + eventInfo.targetElement = oldTarget; + // TODO:[bf] Does this merit it's own file? Is there another file it should be refactored out to? Just refactored out to another function? + _addAnimation(elementId, function() { + var query = $jobj(elementId); + + // Get the current width and height + var oldWidth = query.css('width'); + oldWidth = Number(oldWidth && oldWidth.substring(0, oldWidth.length - 2)); + var oldHeight = query.css('height'); + oldHeight = Number(oldHeight && oldHeight.substring(0, oldHeight.length - 2)); + + // If either one is not a number, use the old value + width = width != "" ? Number(width) : oldWidth; + height = height != "" ? Number(height) : oldHeight; + + width = isNaN(width) ? oldWidth : width; + height = isNaN(height) ? oldHeight : height; + + // can't be negative + width = Math.max(width, 0); + height = Math.max(height, 0); + if(height == oldHeight && width == oldWidth) { + _fireAnimationFromQueue(elementId); + return; + } + + var css = { width: width, height: height }; + var obj = $obj(elementId); + if(obj.percentWidth) css = { height: height }; + + // No longer fitToContent, calculate additional styling that needs to be done. + $ax.dynamicPanelManager.setFitToContentCss(elementId, false, oldWidth, oldHeight); + + var easing = resizeInfo.easing || 'none'; + var duration = resizeInfo.duration || 0; + + var stateCss = $ax.deepCopy(css); + // This will move panel if fixed. The callback will make sure resizing ends there. + if((obj.fixedHorizontal && obj.fixedHorizontal == 'center') || (obj.fixedVertical && obj.fixedVertical == 'middle')) { + var loc = $ax.dynamicPanelManager.getFixedPosition(elementId, oldWidth, oldHeight, width, height); + if(loc) { + if(loc[0] != 0 && !$ax.dynamicPanelManager.isPercentWidthPanel(obj)) css['margin-left'] = '+=' + loc[0]; + if(loc[1] != 0) css['margin-top'] = '+=' + loc[1]; + } + } + + var onComplete = function() { + $ax.flyoutManager.updateFlyout(elementId); + $ax.dynamicPanelManager.fitParentPanel(elementId); + $ax.dynamicPanelManager.updatePanelPercentWidth(elementId); + $ax.dynamicPanelManager.updatePanelContentPercentWidth(elementId); + $ax.event.raiseSyntheticEvent(elementId, 'onResize'); + _fireAnimationFromQueue(elementId); + }; + + // This does the resize animation. Moving is handled elsewhere. + if(easing == 'none') { + query.animate(css, 0); + query.children().animate(css, 0); + onComplete(); + } else { + query.children().animate(stateCss, duration, easing); + query.animate(css, duration, easing, onComplete); + } + }); + })(elementId, resizeInfo); + } + } + + _dispatchAction(eventInfo, actions, index + 1); + }; + + _actionHandlers.setPanelOrder = function(eventInfo, actions, index) { + var action = actions[index]; + for(var i = 0; i < action.panelPaths.length; i++) { + var func = action.panelPaths[i].setOrderInfo.bringToFront ? 'bringToFront' : 'sendToBack'; + var elementIds = $ax.getElementIdsFromPath(action.panelPaths[i].panelPath, eventInfo); + for(var j = 0; j < elementIds.length; j++) $ax('#' + elementIds[j])[func](); + } + + _dispatchAction(eventInfo, actions, index + 1); + }; + + _actionHandlers.modifyDataSetEditItems = function(eventInfo, actions, index) { + var action = actions[index]; + var add = action.repeatersToAddTo; + var repeaters = add || action.repeatersToRemoveFrom; + var itemId; + for(var i = 0; i < repeaters.length; i++) { + var data = repeaters[i]; + // Grab the first one because repeaters must have only element id, as they cannot be inside repeaters + var id = $ax.getElementIdsFromPath(data.path, eventInfo)[0]; + + if(data.addType == 'this') { + var scriptId = $ax.repeater.getScriptIdFromElementId(eventInfo.srcElement); + itemId = $ax.repeater.getItemIdFromElementId(eventInfo.srcElement); + var repeaterId = $ax.getParentRepeaterFromScriptId(scriptId); + if(add) $ax.repeater.addEditItems(repeaterId, [itemId]); + else $ax.repeater.removeEditItems(repeaterId, [itemId]); + } else if(data.addType == 'all') { + var allItems = $ax.repeater.getAllItemIds(id); + if(add) $ax.repeater.addEditItems(id, allItems); + else $ax.repeater.removeEditItems(id, allItems); + } else { + var oldTarget = eventInfo.targetElement; + var itemIds = $ax.repeater.getAllItemIds(id); + var itemIdsToAdd = []; + for(var j = 0; j < itemIds.length; j++) { + itemId = itemIds[j]; + eventInfo.targetElement = $ax.repeater.createElementId(id, itemId); + if($ax.expr.evaluateExpr(data.query, eventInfo) == "true") { + itemIdsToAdd[itemIdsToAdd.length] = String(itemId); + } + eventInfo.targetElement = oldTarget; + } + if(add) $ax.repeater.addEditItems(id, itemIdsToAdd); + else $ax.repeater.removeEditItems(id, itemIdsToAdd); + } + } + + _dispatchAction(eventInfo, actions, index + 1); + }; + + _actionHandlers.addItemsToDataSet = function(eventInfo, actions, index) { + var action = actions[index]; + for(var i = 0; i < action.dataSetsToAddTo.length; i++) { + var datasetInfo = action.dataSetsToAddTo[i]; + // Grab the first one because repeaters must have only element id, as they cannot be inside repeaters + var id = $ax.getElementIdsFromPath(datasetInfo.path, eventInfo)[0]; + if(_ignoreAction(id)) continue; + var dataset = datasetInfo.data; + + for(var j = 0; j < dataset.length; j++) $ax.repeater.addItem(id, $ax.deepCopy(dataset[j]), eventInfo); + if(dataset.length) _addRefresh(id); + } + + _dispatchAction(eventInfo, actions, index + 1); + }; + + _actionHandlers.deleteItemsFromDataSet = function(eventInfo, actions, index) { + var action = actions[index]; + for(var i = 0; i < action.dataSetItemsToRemove.length; i++) { + // Grab the first one because repeaters must have only element id, as they cannot be inside repeaters + var deleteInfo = action.dataSetItemsToRemove[i]; + var id = $ax.getElementIdsFromPath(deleteInfo.path, eventInfo)[0]; + if(_ignoreAction(id)) continue; + $ax.repeater.deleteItems(id, eventInfo, deleteInfo.type, deleteInfo.rule); + _addRefresh(id); + } + + _dispatchAction(eventInfo, actions, index + 1); + }; + + _actionHandlers.updateItemsInDataSet = function(eventInfo, actions, index) { + var action = actions[index]; + for(var i = 0; i < action.dataSetsToUpdate.length; i++) { + var dataSet = action.dataSetsToUpdate[i]; + // Grab the first one because repeaters must have only element id, as they cannot be inside repeaters + var id = $ax.getElementIdsFromPath(dataSet.path, eventInfo)[0]; + if(_ignoreAction(id)) continue; + + $ax.repeater.updateEditItems(id, dataSet.props, eventInfo, dataSet.type, dataSet.rule); + _addRefresh(id); + } + + _dispatchAction(eventInfo, actions, index + 1); + }; + + _actionHandlers.setRepeaterToDataSet = function(eventInfo, actions, index) { + var action = actions[index]; + + for(var i = 0; i < action.repeatersToSet.length; i++) { + var setRepeaterInfo = action.repeatersToSet[i]; + // Grab the first one because repeaters must have only element id, as they cannot be inside repeaters + var id = $ax.getElementIdsFromPath(setRepeaterInfo.path, eventInfo)[0]; + $ax.repeater.setDataSet(id, setRepeaterInfo.localDataSetId); + } + + _dispatchAction(eventInfo, actions, index + 1); + }; + + _actionHandlers.addFilterToRepeater = function(eventInfo, actions, index) { + var action = actions[index]; + + for(var i = 0; i < action.repeatersToAddFilter.length; i++) { + var addFilterInfo = action.repeatersToAddFilter[i]; + // Grab the first one because repeaters must have only element id, as they cannot be inside repeaters + var id = $ax.getElementIdsFromPath(addFilterInfo.path, eventInfo)[0]; + if(_ignoreAction(id)) continue; + + $ax.repeater.addFilter(id, addFilterInfo.label, addFilterInfo.filter, eventInfo.srcElement); + _addRefresh(id); + } + + _dispatchAction(eventInfo, actions, index + 1); + }; + + _actionHandlers.removeFilterFromRepeater = function(eventInfo, actions, index) { + var action = actions[index]; + + for(var i = 0; i < action.repeatersToRemoveFilter.length; i++) { + var removeFilterInfo = action.repeatersToRemoveFilter[i]; + // Grab the first one because repeaters must have only element id, as they cannot be inside repeaters + var id = $ax.getElementIdsFromPath(removeFilterInfo.path, eventInfo)[0]; + if(_ignoreAction(id)) continue; + + if(removeFilterInfo.removeAll) $ax.repeater.removeFilter(id); + else if(removeFilterInfo.filterName != '') { + $ax.repeater.removeFilter(id, removeFilterInfo.filterName); + } + _addRefresh(id); + } + + _dispatchAction(eventInfo, actions, index + 1); + }; + + _actionHandlers.addSortToRepeater = function(eventInfo, actions, index) { + var action = actions[index]; + + for(var i = 0; i < action.repeatersToAddSort.length; i++) { + var addSortInfo = action.repeatersToAddSort[i]; + // Grab the first one because repeaters must have only element id, as they cannot be inside repeaters + var id = $ax.getElementIdsFromPath(addSortInfo.path, eventInfo)[0]; + if(_ignoreAction(id)) continue; + + $ax.repeater.addSort(id, addSortInfo.label, addSortInfo.columnName, addSortInfo.ascending, addSortInfo.toggle, addSortInfo.sortType); + _addRefresh(id); + } + + _dispatchAction(eventInfo, actions, index + 1); + }; + + _actionHandlers.removeSortFromRepeater = function(eventInfo, actions, index) { + var action = actions[index]; + + for(var i = 0; i < action.repeatersToRemoveSort.length; i++) { + var removeSortInfo = action.repeatersToRemoveSort[i]; + // Grab the first one because repeaters must have only element id, as they cannot be inside repeaters + var id = $ax.getElementIdsFromPath(removeSortInfo.path, eventInfo)[0]; + if(_ignoreAction(id)) continue; + + if(removeSortInfo.removeAll) $ax.repeater.removeSort(id); + else if(removeSortInfo.sortName != '') $ax.repeater.removeSort(id, removeSortInfo.sortName); + _addRefresh(id); + } + + _dispatchAction(eventInfo, actions, index + 1); + }; + + _actionHandlers.setRepeaterToPage = function(eventInfo, actions, index) { + var action = actions[index]; + + for(var i = 0; i < action.repeatersToSetPage.length; i++) { + var setPageInfo = action.repeatersToSetPage[i]; + // Grab the first one because repeaters must have only element id, as they cannot be inside repeaters + var id = $ax.getElementIdsFromPath(setPageInfo.path, eventInfo)[0]; + if(_ignoreAction(id)) continue; + + var oldTarget = eventInfo.targetElement; + eventInfo.targetElement = id; + $ax.repeater.setRepeaterToPage(id, setPageInfo.pageType, setPageInfo.pageValue, eventInfo); + eventInfo.targetElement = oldTarget; + _addRefresh(id); + } + + _dispatchAction(eventInfo, actions, index + 1); + }; + + _actionHandlers.setItemsPerRepeaterPage = function(eventInfo, actions, index) { + var action = actions[index]; + + for(var i = 0; i < action.repeatersToSetItemCount.length; i++) { + var setItemCountInfo = action.repeatersToSetItemCount[i]; + // Grab the first one because repeaters must have only element id, as they cannot be inside repeaters + var id = $ax.getElementIdsFromPath(setItemCountInfo.path, eventInfo)[0]; + if(_ignoreAction(id)) continue; + + if(setItemCountInfo.noLimit) $ax.repeater.setNoItemLimit(id); + else $ax.repeater.setItemLimit(id, setItemCountInfo.itemCountValue, eventInfo); + _addRefresh(id); + } + + _dispatchAction(eventInfo, actions, index + 1); + }; + + _actionHandlers.refreshRepeater = function(eventInfo, actions, index) { + // This should not be doing anything right now. We refresh automatically + // var action = actions[index]; + // for(var i = 0; i < action.repeatersToRefresh.length; i++) { + // $ax.repeater.refreshRepeater(action.repeatersToRefresh[i], eventInfo); + // } + + _dispatchAction(eventInfo, actions, index + 1); + }; + + _actionHandlers.scrollToWidget = function(eventInfo, actions, index) { + var action = actions[index]; + var elementIds = $ax.getElementIdsFromPath(action.objectPath, eventInfo); + if(elementIds.length > 0) $ax('#' + elementIds[0]).scroll(action.options); + + _dispatchAction(eventInfo, actions, index + 1); + }; + + + _actionHandlers.enableDisableWidgets = function(eventInfo, actions, index) { + var action = actions[index]; + for(var i = 0; i < action.pathToInfo.length; i++) { + var elementIds = $ax.getElementIdsFromPath(action.pathToInfo[i].objectPath, eventInfo); + var enable = action.pathToInfo[i].enableDisableInfo.enable; + for(var j = 0; j < elementIds.length; j++) $ax('#' + elementIds[j]).enabled(enable); + } + + _dispatchAction(eventInfo, actions, index + 1); + }; + + _actionHandlers.setImage = function(eventInfo, actions, index) { + var oldTarget = eventInfo.targetElement; + var action = actions[index]; + var view = $ax.adaptive.currentViewId; + + eventInfo.image = true; + for(var i = 0; i < action.imagesToSet.length; i++) { + var imgInfo = action.imagesToSet[i]; + imgInfo = view ? imgInfo.adaptive[view] : imgInfo.base; + var elementIds = $ax.getElementIdsFromPath(action.imagesToSet[i].objectPath, eventInfo); + + for(var j = 0; j < elementIds.length; j++) { + var elementId = elementIds[j]; + + eventInfo.targetElement = elementId; + var evaluatedImgs = _evaluateImages(imgInfo, eventInfo); + + var img = evaluatedImgs.normal; + if($ax.style.IsWidgetDisabled(elementId)) { + if(imgInfo.disabled) img = evaluatedImgs.disabled; + } else if($ax.style.IsWidgetSelected(elementId)) { + if(imgInfo.selected) img = evaluatedImgs.selected; + } else if($ax.event.mouseDownObjectId == elementId && imgInfo.mouseDown) img = evaluatedImgs.mouseDown; + else if($ax.event.mouseOverIds.indexOf(elementId) != -1 && imgInfo.mouseOver) { + img = evaluatedImgs.mouseOver; + //Update mouseOverObjectId + var currIndex = $ax.event.mouseOverIds.indexOf($ax.event.mouseOverObjectId); + var imgIndex = $ax.event.mouseOverIds.indexOf(elementId); + if(currIndex < imgIndex) $ax.event.mouseOverObjectId = elementId; + } + + // $('#' + $ax.repeater.applySuffixToElementId(elementId, '_img')).attr('src', img); + $jobj($ax.style.GetImageIdFromShape(elementId)).attr('src', img); + + //Set up overrides + $ax.style.mapElementIdToImageOverrides(elementId, evaluatedImgs); + $ax.style.updateElementIdImageStyle(elementId); + } + } + eventInfo.targetElement = oldTarget; + eventInfo.image = false; + + _dispatchAction(eventInfo, actions, index + 1); + }; + + var _evaluateImages = function(imgInfo, eventInfo) { + var retVal = {}; + for(var state in imgInfo) { + if(!imgInfo.hasOwnProperty(state)) continue; + var img = imgInfo[state].path || $ax.expr.evaluateExpr(imgInfo[state].literal, eventInfo); + if(!img) img = $axure.utils.getTransparentGifPath(); + retVal[state] = img; + } + return retVal; + }; + + $ax.clearRepeaterImageOverrides = function(repeaterId) { + var childIds = $ax.getChildElementIdsForRepeater(repeaterId); + for(var i = childIds; i < childIds.length; i++) $ax.style.deleteElementIdToImageOverride(childIds[i]); + }; + + _actionHandlers.setFocusOnWidget = function(eventInfo, actions, index) { + var action = actions[index]; + if(action.objectPaths.length > 0) { + var elementIds = $ax.getElementIdsFromPath(action.objectPaths[0], eventInfo); + if(elementIds.length > 0) $ax('#' + elementIds[0]).focus(); + } + + _dispatchAction(eventInfo, actions, index + 1); + }; + + _actionHandlers.expandCollapseTree = function(eventInfo, actions, index) { + var action = actions[index]; + for(var i = 0; i < action.pathToInfo.length; i++) { + var pair = action.pathToInfo[i]; + var elementIds = $ax.getElementIdsFromPath(pair.treeNodePath, eventInfo); + for(var j = 0; j < elementIds.length; j++) $ax('#' + elementIds[j]).expanded(pair.expandCollapseInfo.expand); + } + + _dispatchAction(eventInfo, actions, index + 1); + }; + + _actionHandlers.other = function(eventInfo, actions, index) { + var action = actions[index]; + $ax.navigate({ + url: $axure.utils.getOtherPath() + "#other=" + encodeURI(action.description), + target: "popup", + includeVariables: false, + popupOptions: action.popup + }); + + _dispatchAction(eventInfo, actions, index + 1); + }; + + _actionHandlers.raiseEvent = function(eventInfo, actions, index) { + var action = actions[index]; + //look for the nearest element id + + if(eventInfo.srcElement) { + var objId = eventInfo.srcElement; + var obj = $ax.getObjectFromElementId(objId); + var rdoId = $ax.getRdoParentFromElementId(objId); + var rdo = $ax.getObjectFromElementId(rdoId); + + // Check if rdo should be this + var oldIsMasterEvent = eventInfo.isMasterEvent; + if(obj.type == 'referenceDiagramObject' && eventInfo.isMasterEvent) { + rdoId = objId; + rdo = obj; + // It is now an rdo event + eventInfo.isMasterEvent = false; + } + + for(var i = 0; i < action.raisedEvents.length; i++) { + var raisedEvent = action.raisedEvents[i]; + var oldRaisedId = eventInfo.raisedId; + var event = rdo.interactionMap && rdo.interactionMap && rdo.interactionMap.raised[raisedEvent]; + + // raised event will optimize away if it doesn't do anything. Whole interaction map may be optimized away as well. + if(event) { + var oldSrc = eventInfo.srcElement; + eventInfo.srcElement = rdoId; + eventInfo.raisedId = rdoId; + $ax.event.handleEvent(rdoId, eventInfo, event, false, true); + eventInfo.raisedId = oldRaisedId; + eventInfo.srcElement = oldSrc; + } + } + eventInfo.isMasterEvent = oldIsMasterEvent; + } + + _dispatchAction(eventInfo, actions, index + 1); + }; +}); diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/adaptive.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/adaptive.js" new file mode 100644 index 0000000..d47017c --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/adaptive.js" @@ -0,0 +1,378 @@ +$axure.internal(function($ax) { + $ax.adaptive = {}; + + $axure.utils.makeBindable($ax.adaptive, ["viewChanged"]); + + var _auto = true; + var _views; + var _idToView; + var _enabledViews = []; + + var _initialViewToLoad; + + var _handleResize = function() { + if(!_auto) return; + + var $window = $(window); + var height = $window.height(); + var width = $window.width(); + + var toView = _getAdaptiveView(width, height); + var toViewId = toView && toView.id; + + if(toViewId == $ax.adaptive.currentViewId) return; + + _switchView(toViewId); + }; + + var _setAuto = $ax.adaptive.setAuto = function(val) { + if(_auto != val) { + _auto = Boolean(val); + if(val) _handleResize(); + } + }; + + var _setLineImage = function(id, imageUrl) { + var imageQuery = $jobj(id).attr('src', imageUrl); + if(imageUrl.indexOf(".png") > -1) $ax.utils.fixPng(imageQuery[0]); + }; + + var _switchView = $ax.adaptive.switchView = function(viewId) { + // reset all the positioning on the style tags + $axure('*').each(function(diagramObject, elementId) { + var element = document.getElementById(elementId); + if(element && !diagramObject.isContained) { + element.style.top = ""; + element.style.left = ""; + + $ax.dynamicPanelManager.resetFixedPanel(diagramObject, element); + $ax.dynamicPanelManager.resetAdaptivePercentPanel(diagramObject, element); + } + }); + + var previousViewId = $ax.adaptive.currentViewId; + $ax.adaptive.currentViewId = viewId; // we need to set this so the enabled and selected styles will apply properly + if(previousViewId) { + $ax.style.clearAdaptiveStyles(); + $('*').removeClass(previousViewId); + } + + // reset all the images only if we're going back to the default view + if(!viewId) { + _updateInputVisibility('', $axure('*')); + $axure('*').each(function(diagramObject, elementId) { + var images = diagramObject.images; + if(diagramObject.type == 'horizontalLine' || diagramObject.type == 'verticalLine') { + var startImg = images['start~']; + _setLineImage(elementId + "_start", startImg); + var endImg = images['end~']; + _setLineImage(elementId + "_end", endImg); + var lineImg = images['line~']; + _setLineImage(elementId + "_line", lineImg); + } else { + if(!images) return; + if($ax.style.IsWidgetDisabled(elementId)) { + var disabledImage = $ax.style.getElementImageOverride(elementId, 'disabled') || images['disabled~']; + if(disabledImage) $ax.style.applyImage(elementId, disabledImage, 'disabled'); + return; + } + if($ax.style.IsWidgetSelected(elementId)) { + var selectedImage = $ax.style.getElementImageOverride(elementId, 'selected') || images['selected~']; + if(selectedImage) $ax.style.applyImage(elementId, selectedImage, 'selected'); + return; + } + $ax.style.applyImage(elementId, $ax.style.getElementImageOverride(elementId, 'normal') || images['normal~']); + } + + var child = $jobj(elementId).children('.text'); + if(child.length) $ax.style.transformTextWithVerticalAlignment(child[0].id, function() { }); + }); + // we have to reset visibility if we aren't applying a new view + $ax.visibility.resetLimboAndHiddenToDefaults(); + $ax.repeater.refreshAllRepeaters(); + $ax.dynamicPanelManager.updateAllFitPanels(); + $ax.dynamicPanelManager.updatePercentPanelCache($ax('*')); + } else { + $ax.visibility.clearLimboAndHidden(); + _applyView(viewId); + $ax.repeater.refreshAllRepeaters(); + } + + $ax.adaptive.triggerEvent('viewChanged', {}); + $ax.viewChangePageAndMasters(); + }; + + // gets if input is hidden due to sketch + var BORDER_WIDTH = "borderWidth"; + var COLOR_STYLE = "colorStyle"; + var SKETCH_FACTOR = "sketchFactor"; + var _areInputsHidden = function(viewId) { + var chain = _getAdaptiveIdChain(viewId); + var page = $ax.pageData.page; + var adaptiveStyles = page.adaptiveStyles; + // keep track of props that are not sketchy, as you continue to climb up your parents; + var notSketch = []; + for(var i = chain.length - 1; i >= -1; i--) { + var style = i == -1 ? page.style : adaptiveStyles[chain[i]]; + if(notSketch.indexOf(BORDER_WIDTH) == -1 && style.hasOwnProperty(BORDER_WIDTH)) { + if(style[BORDER_WIDTH] != 0) return true; + notSketch.push(BORDER_WIDTH); + } + if(notSketch.indexOf(COLOR_STYLE) == -1 && style.hasOwnProperty(COLOR_STYLE)) { + if(style[COLOR_STYLE] != 'appliedColor') return true; + notSketch.push(COLOR_STYLE); + } + if(notSketch.indexOf(SKETCH_FACTOR) == -1 && style.hasOwnProperty(SKETCH_FACTOR)) { + if(style[SKETCH_FACTOR] != 0) return true; + notSketch.push(SKETCH_FACTOR); + } + } + return false; + }; + + var _updateInputVisibility = function(viewId, query) { + var func = _areInputsHidden(viewId) ? 'addClass' : 'removeClass'; + query.each(function(obj, elementId) { + var input = $jobj($ax.repeater.applySuffixToElementId(elementId, '_input')); + if(input.length == 0) return; + input[func]('form_sketch'); + }); + }; + + // gets the inheritance chain of a particular view. + var _getAdaptiveIdChain = $ax.adaptive.getAdaptiveIdChain = function(viewId) { + if(!viewId) return []; + var view = _idToView[viewId]; + var chain = []; + var current = view; + while(current) { + chain[chain.length] = current.id; + current = _idToView[current.baseViewId]; + } + return chain.reverse(); + }; + + var _getPageStyle = $ax.adaptive.getPageStyle = function() { + var currentViewId = $ax.adaptive.currentViewId; + var adaptiveChain = _getAdaptiveIdChain(currentViewId); + + var currentStyle = $.extend({}, $ax.pageData.page.style); + for(var i = 0; i < adaptiveChain.length; i++) { + var viewId = adaptiveChain[i]; + $.extend(currentStyle, $ax.pageData.page.adaptiveStyles[viewId]); + } + + return currentStyle; + }; + + var _setAdaptiveLineImages = function(elementId, images, viewIdChain) { + for(var i = viewIdChain.length - 1; i >= 0; i--) { + var viewId = viewIdChain[i]; + var startImg = images['start~' + viewId]; + if(startImg) { + _setLineImage(elementId + "_start", startImg); + var endImg = images['end~' + viewId]; + _setLineImage(elementId + "_end", endImg); + var lineImg = images['line~' + viewId]; + _setLineImage(elementId + "_line", lineImg); + break; + } + } + }; + + var _applyView = $ax.adaptive.applyView = function(viewId, query) { + var limboIds = {}; + var hiddenIds = {}; + + var jquery; + if(query) { + jquery = query.jQuery(); + jquery = jquery.add(jquery.find('*')); + var jqueryAnn = $ax.annotation.jQueryAnn(query); + jquery = jquery.add(jqueryAnn); + } else { + jquery = $('*'); + query = $ax('*'); + } + jquery.addClass(viewId); + _updateInputVisibility(viewId, query); + var viewIdChain = _getAdaptiveIdChain(viewId); + // this could be made more efficient by computing it only once per object + query.each(function(diagramObject, elementId) { + _applyAdaptiveViewOnObject(diagramObject, elementId, viewIdChain, viewId, limboIds, hiddenIds); + }); + + $ax.visibility.addLimboAndHiddenIds(limboIds, hiddenIds, query); + $ax.dynamicPanelManager.updateAllFitPanels(); + $ax.dynamicPanelManager.updatePercentPanelCache(query); + }; + + var _applyAdaptiveViewOnObject = function(diagramObject, elementId, viewIdChain, viewId, limboIds, hiddenIds) { + var adaptiveChain = []; + for(var i = 0; i < viewIdChain.length; i++) { + var viewId = viewIdChain[i]; + var viewStyle = diagramObject.adaptiveStyles[viewId]; + if(viewStyle) adaptiveChain[adaptiveChain.length] = viewStyle; + } + + var state = $ax.style.generateState(elementId); + + // set the image + var images = diagramObject.images; + if(images) { + if(diagramObject.type == 'horizontalLine' || diagramObject.type == 'verticalLine') { + _setAdaptiveLineImages(elementId, images, viewIdChain); + } else { + var imgUrl = _matchImage(elementId, images, viewIdChain, state); + if(imgUrl) $ax.style.applyImage(elementId, imgUrl, state); + } + // for(var i = viewIdChain.length - 1; i >= 0; i--) { + // var viewId = viewIdChain[i]; + // var imgUrl = $ax.style.getElementImageOverride(elementId, state) || images[state + '~' + viewId] || images['normal~' + viewId]; + // if(imgUrl) { + // $ax.style.applyImage(elementId, imgUrl, state); + // break; + // } + // } + + // } + } + // addaptive override style (not including default style props) + var adaptiveStyle = $ax.style.computeAllOverrides(elementId, undefined, state, viewId); + + // this style INCLUDES the object's my style + var compoundStyle = $.extend({}, diagramObject.style, adaptiveStyle); + + //$ax.style.setAdaptiveStyle(elementId, adaptiveStyle); + if(!diagramObject.isContained) { + $ax.style.setAdaptiveStyle(elementId, adaptiveStyle); + } + + if(compoundStyle.limbo) limboIds[elementId] = true; + // sigh, javascript. we need the === here because undefined means not overriden + if(compoundStyle.visible === false) hiddenIds[elementId] = true; + }; + + var _matchImage = function(id, images, viewIdChain, state) { + var override = $ax.style.getElementImageOverride(id, state); + if(override) return override; + + if(!images) return undefined; + + // first check all the images for this state + for(var i = viewIdChain.length - 1; i >= 0; i--) { + var viewId = viewIdChain[i]; + var img = images[state + "~" + viewId]; + if(img) return img; + } + // check for the default state style + var defaultStateImage = images[state + '~']; + if(defaultStateImage) return defaultStateImage; + + state = $ax.style.progessState(state); + if(state) return _matchImage(id, images, viewIdChain, state); + + // SHOULD NOT REACH HERE! NORMAL SHOULD ALWAYS CATCH AT THE DEFAULT! + return images['normal~']; // this is the default + }; + + $ax.adaptive.getImageForStateAndView = function(id, state) { + var viewIdChain = _getAdaptiveIdChain($ax.adaptive.currentViewId); + var diagramObject = $ax.getObjectFromElementId(id); + var images = diagramObject.images; + + return _matchImage(id, images, viewIdChain, state); + }; + + + + var _getAdaptiveView = function(winWidth, winHeight) { + var _isViewOneGreaterThanTwo = function(view1, view2) { + return view1.size.width > view2.size.width || (view1.size.width == view2.size.width && view1.size.height > view2.size.height); + }; + + var _isViewOneLessThanTwo = function(view1, view2) { + var width2 = view2.size.width || 1000000; // artificially large number + var height2 = view2.size.height || 1000000; + + var width1 = view1.size.width || 1000000; + var height1 = view1.size.height || 1000000; + + return width1 < width2 || (width1 == width2 && height1 < height2); + }; + + var _isWindowGreaterThanView = function(view, width, height) { + return width >= view.size.width && height >= view.size.height; + }; + + var _isWindowLessThanView = function(view1, width, height) { + var viewWidth = view1.size.width || 1000000; + var viewHeight = view1.size.height || 1000000; + + return width <= viewWidth && height <= viewHeight; + }; + + var greater = undefined; + var less = undefined; + + for(var i = 0; i < _enabledViews.length; i++) { + var view = _enabledViews[i]; + if(view.condition == ">=") { + if(_isWindowGreaterThanView(view, winWidth, winHeight)) { + if(!greater || _isViewOneGreaterThanTwo(view, greater)) greater = view; + } + } else { + if(_isWindowLessThanView(view, winWidth, winHeight)) { + if(!less || _isViewOneLessThanTwo(view, less)) less = view; + } + } + } + return less || greater; + }; + + $ax.messageCenter.addMessageListener(function(message, data) { + if(message == 'setAdaptiveAuto') { + _setAuto(true); + } else if(message == 'switchAdaptiveView') { + if(data == 'default') { + data = null; + } + + //If the adaptive plugin hasn't been initialized yet then + //save the view to load so that it can get set when initialize occurs + if(typeof _idToView != 'undefined') { + _setAuto(false); + _switchView(data); + } else { + _initialViewToLoad = data; + } + } + }); + + + $ax.adaptive.initialize = function() { + _views = $ax.document.adaptiveViews; + _idToView = {}; + + if(_views && _views.length > 0) { + for(var i = 0; i < _views.length; i++) { + var view = _views[i]; + _idToView[view.id] = view; + } + + var enabledViewIds = $ax.document.configuration.enabledViewIds; + for(var i = 0; i < enabledViewIds.length; i++) { + _enabledViews[_enabledViews.length] = _idToView[enabledViewIds[i]]; + } + + $axure.resize(_handleResize); + _handleResize(); + } + + //If there is a viewToLoad (switchAdaptiveView message was received prior to init), set it now + if(typeof _initialViewToLoad != 'undefined') { + _setAuto(false); + _switchView(_initialViewToLoad); + } + }; +}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/annotation.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/annotation.js" new file mode 100644 index 0000000..258f26c --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/annotation.js" @@ -0,0 +1,168 @@ +// ******* Annotation MANAGER ******** // +$axure.internal(function($ax) { + var NOTE_SIZE = 10; + + var _annotationManager = $ax.annotation = {}; + + var _updateLinkLocations = $ax.annotation.updateLinkLocations = function(textId) { + var diagramObject = $ax.getObjectFromElementId(textId); + var rotation = (diagramObject && diagramObject.style.rotation); + var shapeId = $ax.style.GetShapeIdFromText(textId); + + //we have to do this because webkit reports the post-transform position but when you set + //positions it's pre-transform + if(WEBKIT && rotation) { + $('#' + shapeId).css('-webkit-transform', 'scale(1)'); + $('#' + textId).css('-webkit-transform', 'scale(1)'); + } + + $('#' + textId).find('span[id$="_ann"]').each(function(index, value) { + var elementId = value.id.replace('_ann', ''); + + var annPos = $(value).position(); + var left = annPos.left - NOTE_SIZE; + var top = annPos.top; + + $('#' + elementId + 'Note').css('left', left).css('top', top); + }); + + //undo the transform reset + if(WEBKIT && rotation) { + $('#' + shapeId).css('-webkit-transform', ''); + $('#' + textId).css('-webkit-transform', ''); + } + }; + + var dialogs = {}; + $ax.annotation.ToggleWorkflow = function(event, id, width, height) { + + if(dialogs[id]) { + var $dialog = dialogs[id]; + // reset the dialog + dialogs[id] = undefined; + if($dialog.dialog("isOpen")) { + $dialog.dialog("close"); + return; + } + } + + // we'll need to save the scroll position just for stupid IE which will skip otherwise + var win = $(window); + var scrollY = win.scrollTop(); + var scrollX = win.scrollLeft(); + + var bufferH = 10; + var bufferV = 10; + var blnLeft = false; + var blnAbove = false; + var sourceTop = event.pageY - scrollY; + var sourceLeft = event.pageX - scrollX; + + if(sourceLeft > width + bufferH) { + blnLeft = true; + } + if(sourceTop > height + bufferV) { + blnAbove = true; + } + + var top = 0; + var left = 0; + if(blnAbove) top = sourceTop - height - 20; + else top = sourceTop + 10; + if(blnLeft) left = sourceLeft - width - 4; + else left = sourceLeft - 6; + + $ax.globals.MaxZIndex = $ax.globals.MaxZIndex + 1; + if($.browser.msie) height += 50; + + var dObj = $ax.getObjectFromElementId(id); + var ann = dObj.annotation; + var $dialog = $('
    ') + .appendTo('body') + .html($ax.legacy.GetAnnotationHtml(ann)) + .dialog({ + title: dObj.label, + width: width, + height: height, + minHeight: 150, + zIndex: $ax.globals.MaxZIndex, + position: [left, top], + dialogClass: 'dialogFix', + autoOpen: false + }); + $dialog.parent().appendTo('#base'); + $dialog.dialog('open'); + dialogs[id] = $dialog; + + // scroll ... just for IE + window.scrollTo(scrollX, scrollY); + }; + + $ax.annotation.InitializeAnnotations = function(query) { + query.each(function(dObj, elementId) { + if(!dObj.annotation) return; + + if(dObj.type == 'hyperlink') { + var textId = $ax.style.GetTextIdFromLink(elementId); + + var elementIdQuery = $('#' + elementId); + elementIdQuery.after(""); + + if($ax.document.configuration.useLabels) { + var label = $('#' + elementId).attr("data-label"); + if(!label || label == "") label = "?"; + $('#' + textId).append("
    " + label + "
    "); + } else { + $('#' + textId).append("
    "); + } + $('#' + elementId + 'Note').click(function(e) { + $ax.annotation.ToggleWorkflow(e, elementId, 300, 150, false); + return false; + }); + + _updateLinkLocations(textId); + } else { + if($ax.document.configuration.useLabels) { + var label = $('#' + elementId).attr("data-label"); + if(!label || label == "") label = "?"; + $('#' + elementId + "_ann").append("
    " + label + "
    "); + } else { + $('#' + elementId + "_ann").append("
    "); + } + $('#' + elementId + 'Note').click(function(e) { + $ax.annotation.ToggleWorkflow(e, elementId, 300, 150, false); + return false; + }); + } + }); + }; + + $ax.annotation.jQueryAnn = function(query) { + var elementIds = []; + query.each(function(diagramObject, elementId) { + if(diagramObject.annotation) elementIds[elementIds.length] = elementId; + }); + var elementIdSelectors = jQuery.map(elementIds, function(elementId) { return '#' + elementId + '_ann'; }); + var jQuerySelectorText = (elementIdSelectors.length > 0) ? elementIdSelectors.join(', ') : ''; + return $(jQuerySelectorText); + }; + + $(window.document).ready(function() { + $ax.annotation.InitializeAnnotations($ax(function(dObj) { return dObj.annotation; })); + + $ax.messageCenter.addMessageListener(function(message, data) { + //If the annotations are being hidden via the Sitemap toggle button, hide any open dialogs + if(message == 'annotationToggle') { + if(data == false) { + for(var index in dialogs) { + var $dialog = dialogs[index]; + if($dialog.dialog("isOpen")) { + $dialog.dialog("close"); + } + } + } + } + }); + }); + +}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/axQuery.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/axQuery.js" new file mode 100644 index 0000000..94fd5b7 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/axQuery.js" @@ -0,0 +1,295 @@ +$axure = function(query) { + return $axure.query(query); +}; + +// ******* AxQuery and Page metadata ******** // +(function() { + var $ax = function() { + var returnVal = $axure.apply(this, arguments); + var axFn = $ax.fn; + for (var key in axFn) { + returnVal[key] = axFn[key]; + } + + return returnVal; + }; + + $ax.public = $axure; + $ax.fn = {}; + + $axure.internal = function(initFunction) { + //Attach messagecenter to $ax object so that it can be used in viewer.js, etc in internal scope + if(!$ax.messageCenter) $ax.messageCenter = $axure.messageCenter; + + return initFunction($ax); + }; + + var _lastFiredResize = 0; + var _resizeFunctions = []; + var _lastTimeout; + var _fireResize = function() { + if (_lastTimeout) window.clearTimeout(_lastTimeout); + _lastTimeout = undefined; + _lastFiredResize = new Date().getTime(); + for(var i = 0; i < _resizeFunctions.length; i++) _resizeFunctions[i](); + }; + + $axure.resize = function(fn) { + if(fn) _resizeFunctions[_resizeFunctions.length] = fn; + else $(window).resize(); + }; + + $(window).resize(function() { + var THRESHOLD = 200; + var now = new Date().getTime(); + if(now - _lastFiredResize > THRESHOLD) { + _fireResize(); + } else if(!_lastTimeout) { + _lastTimeout = window.setTimeout(_fireResize, THRESHOLD); + } + }); + + window.$obj = function(id) { + return $ax.getObjectFromElementId(id); + }; + + window.$id = function(obj) { + return obj.scriptIds[0]; + }; + + window.$jobj = function(id) { + return $('#' + id); + }; + + $ax.INPUT = function(id) { return id + "_input"; }; + $ax.IsButtonShape = function(type) { return type == 'buttonShape'; }; + $ax.IsTreeNodeObject = function(type) { return type == 'treeNodeObject'; }; + $ax.IsSelectionButton = function(type) { return type == 'checkbox' || type == 'radioButton'; }; + + var _fn = {}; + $axure.fn = _fn; + $axure.fn.jQuery = function() { + var elementIds = this.getElementIds(); + var elementIdSelectors = jQuery.map(elementIds, function(elementId) { return '#' + elementId; }); + var jQuerySelectorText = (elementIds.length > 0) ? elementIdSelectors.join(', ') : ''; + return $(jQuerySelectorText); + }; + $axure.fn.$ = $axure.fn.jQuery; + + var _query = function(query, queryArg) { + var returnVal = {}; + var _axQueryObject = returnVal.query = { }; + _axQueryObject.filterFunctions = []; + + if (query == '*') { + _axQueryObject.filterFunctions[0] = function() { return true; }; + } else if (typeof(query) === 'function') { + _axQueryObject.filterFunctions[0] = query; + } else { + var firstString = $.trim(query.toString()); + if (firstString.charAt(0) == '@') { + _axQueryObject.filterFunctions[0] = function(diagramObject) { + return diagramObject.label == firstString.substring(1); + }; + } else if (firstString.charAt(0) == '#') { + _axQueryObject.elementId = firstString.substring(1); + } else { + if (firstString == 'label') { + _axQueryObject.filterFunctions[0] = function(diagramObject) { + return queryArg instanceof Array && queryArg.indexOf(diagramObject.label) > 0 || + queryArg instanceof RegExp && queryArg.test(diagramObject.label) || + diagramObject.label == queryArg; + }; + } else if(firstString == 'elementId') { + _axQueryObject.filterFunctions[0] = function(diagramObject, elementId) { + return queryArg instanceof Array && queryArg.indexOf(elementId) > 0 || + elementId == queryArg; + }; + } + } + } + + var axureFn = $axure.fn; + for (var key in axureFn) { + returnVal[key] = axureFn[key]; + } + return returnVal; + }; + $axure.query = _query; + + var _getFilterFnFromQuery = function(query) { + var filter = function(diagramObject, elementId) { + // Non diagram objects are allowed to be queryed, such as text inputs. + if(diagramObject && diagramObject.type != 'referenceDiagramObject' && $jobj(elementId).length == 0) return false; + var retVal = true; + for(var i = 0; i < query.filterFunctions.length && retVal; i++) { + retVal = query.filterFunctions[i](diagramObject, elementId); + } + return retVal; + }; + return filter; + }; + + $ax.public.fn.filter = function(query, queryArg) { + var returnVal = _query(query, queryArg); + + if(this.query.elementId) returnVal.query.elementId = this.query.elementId; + + //If there is already a function, offset by 1 when copying other functions over. + var offset = returnVal.query.filterFunctions[0] ? 1 : 0; + + //Copy all functions over to new array. + for(var i = 0; i < this.query.filterFunctions.length; i++) returnVal.query.filterFunctions[i+offset] = this.query.filterFunctions[i]; + + //Functions are in reverse order now + returnVal.query.filterFunctions.reverse(); + + return returnVal; + }; + + $ax.public.fn.each = function(fn) { + var filter = _getFilterFnFromQuery(this.query); + var elementIds = this.query.elementId ? [this.query.elementId] : $ax.getAllElementIds(); + for (var i = 0; i < elementIds.length; i++) { + var elementId = elementIds[i]; + var diagramObject = $ax.getObjectFromElementId(elementId); + if (filter(diagramObject, elementId)) { + fn.apply(diagramObject, [diagramObject, elementId]); + } + } + }; + + $ax.public.fn.getElementIds = function() { + var elementIds = []; + this.each(function(dObj, elementId) { elementIds[elementIds.length] = elementId; }); + return elementIds; + }; + + // Deep means to keep getting parents parent until at the root parent. Parent is then an array instead of an id. + $ax.public.fn.getParents = function(deep) { + var elementIds = this.getElementIds(); + var parentIds = []; + + var getParent = function(elementId) { + var parent = undefined; + var scriptId = $ax.repeater.getScriptIdFromElementId(elementId); + var itemNum = $ax.repeater.getItemIdFromElementId(elementId); + var parentRepeater = $ax.getParentRepeaterFromScriptId(scriptId); + // Repeater references self, constantly if it is treated as its own parent in this case infinite recursion occurs. + if(parentRepeater == scriptId) parentRepeater = undefined; + + if(parentRepeater) { + parentRepeater = $ax.repeater.createElementId(parentRepeater, itemNum); + parent = parentRepeater; + } + + var masterPath = $ax.getPathFromScriptId($ax.repeater.getScriptIdFromElementId(elementId)); + masterPath.pop(); + if(masterPath.length > 0) { + var masterId = $ax.getElementIdFromPath(masterPath, {itemNum: itemNum}); + var masterRepeater = $ax.getParentRepeaterFromScriptId($ax.repeater.getScriptIdFromElementId(masterId)); + if(!parentRepeater || masterRepeater) parent = masterId; + } + + var parentDynamicPanel = $obj(elementId).parentDynamicPanel; + if(parentDynamicPanel) { + // Make sure the parent if not parentRepeater, or dynamic panel is also in that repeater + // If there is a parent master, the dynamic panel must be in it, otherwise parentDynamicPanel would be undefined. + var panelPath = masterPath; + panelPath[panelPath.length] = parentDynamicPanel; + var panelId = $ax.getElementIdFromPath(panelPath, {itemNum: itemNum}); + var panelRepeater = $ax.getParentRepeaterFromScriptId($ax.repeater.getScriptIdFromElementId(panelId)); + if(!parentRepeater || panelRepeater) { + parent = $ax.visibility.GetPanelState(panelId); + } + } + + return parent; + }; + + for(var i = 0; i < elementIds.length; i++) { + var parent = getParent(elementIds[i]); + if(deep) { + var parents = []; + while(parent) { + parents[parents.length] = parent; + // If id is not a valid object, you are either repeater item or dynamic panel state. + // Either way, get parents id in that case. + if(!$obj(parent)) parent = $jobj(parent).parent().attr('id'); + parent = getParent(parent); + } + parent = parents; + } + parentIds[parentIds.length] = parent; + } + return parentIds; + }; + + // Get the path to the child, where non leaf nodes can be masters, dynamic panels, and repeaters. + $ax.public.fn.getChildren = function(deep) { + var elementIds = this.getElementIds(); + var children = []; + + var getChildren = function(elementId) { + var obj = $obj(elementId); + if(!obj) return undefined; + + var isRepeater = obj.type == 'repeater'; + var isDynamicPanel = obj.type == 'dynamicPanel'; + var isMaster = obj.type == 'master'; + + var isMenu = obj.type == 'menuObject'; + var isTreeNode = obj.type == 'treeNodeObject'; + var isTable = obj.type == 'table'; + + if(isRepeater || isDynamicPanel || isMaster || isMenu || isTreeNode || isTable) { + // Find parent that children should be pulled from. Default is just the elementId query (used by table and master) + var parent = $jobj(elementId); + if(isRepeater) { + parent = $(); + var itemIds = $ax.getItemIdsForRepeater(elementId); + for(var itemIndex = 0; itemIndex < itemIds.length; itemIndex++) parent = parent.add($jobj($ax.repeater.createElementId(elementId, itemIds[itemIndex]))); + } else if(isDynamicPanel) { + // Really only need to do active state probably... + parent = $jobj(elementId).children().children(); + } else if(isTreeNode) parent = $jobj($ax.repeater.applySuffixToElementId(elementId, '_children')); + + // Menu doesn't want all children, only tables and menus, so it must be handled specially + var children = isMenu ? parent.children('.ax_table').add(parent.children('.ax_menu')) : parent.children(); + + // For tree nodes you want the the button shape contained by the elementQuery too + if(isTreeNode) { + var treeNodeChildren = $jobj(elementId).children(); + for(var treeNodeIndex = 0; treeNodeIndex < treeNodeChildren.length; treeNodeIndex++) { + var treeNodeChild = $(treeNodeChildren[treeNodeIndex]); + var childObj = $obj(treeNodeChild.attr('id')); + if(childObj && childObj.type == 'buttonShape') children = children.add(treeNodeChild); + } + } + + + var childrenIds = []; + for(var childIndex = 0; childIndex < children.length; childIndex++) childrenIds.push($(children[childIndex]).attr('id')); + + if(deep) { + var childObjs = []; + for(var i = 0; i < childrenIds.length; i++) { + var childId = childrenIds[i]; + childObjs[i] = { id: childId, children: getChildren(childId) }; + } + childrenIds = childObjs; + } + + return childrenIds; + } + + return undefined; + }; + + for(var i = 0; i < elementIds.length; i++) { + children[children.length] = { id : elementIds[i], children : getChildren(elementIds[i])}; + } + return children; + }; + +})(); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/axQuery.std.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/axQuery.std.js" new file mode 100644 index 0000000..d032ac3 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/axQuery.std.js" @@ -0,0 +1,737 @@ +// ******* AxQuery Plugins ******** // + +$axure.internal(function($ax) { + var DYNAMIC_PANEL_TYPE = 'dynamicPanel'; + var TEXT_BOX_TYPE = 'textBox'; + var TEXT_AREA_TYPE = 'textArea'; + var LIST_BOX_TYPE = 'listBox'; + var COMBO_BOX_TYPE = 'comboBox'; + var CHECK_BOX_TYPE = 'checkbox'; + var RADIO_BUTTON_TYPE = 'radioButton'; + var IMAGE_MAP_REGION_TYPE = 'imageMapRegion'; + var IMAGE_BOX_TYPE = 'imageBox'; + var BUTTON_SHAPE_TYPE = 'buttonShape'; + var FLOW_SHAPE_TYPE = 'flowShape'; + var TREE_NODE_OBJECT_TYPE = 'treeNodeObject'; + var TABLE_CELL_TYPE = 'tableCell'; + + var _addJQueryFunction = function(name) { + $ax.public.fn[name] = function() { + var val = $.fn[name].apply(this.jQuery(), arguments); + return arguments[0] ? this : val; + }; + }; + var _jQueryFunctionsToAdd = ['text', 'val', 'css']; + for(var i = 0; i < _jQueryFunctionsToAdd.length; i++) _addJQueryFunction(_jQueryFunctionsToAdd[i]); + + + // var _addJQueryEventFunction = function(name) { + // $ax.public.fn[name] = function() { + // $.fn[name].apply(this.jQuery(), arguments); + // return this; + // }; + // }; + + // var _addJQueryEventFunction = function(name) { + // $ax.public.fn[name] = (function(nn) { + // return function() { + // $.fn[nn].apply(this.jQuery(), arguments); + // return this; + // }; + // })(name); + // }; + + var _addJQueryEventFunction = function(name) { + $ax.public.fn[name] = function() { + //With Martin - No idea why this is necessary. We tried encapsulating the function thinking it was related to closure (above), + //but that didn't fix the problem. If we don't add this Repeaters will give "Uncaught TypeError: Object # has no method 'apply'" + //here (but Indeterminately, often on larger/slower Repeaters) because it is Undefined. However it seems the catch is never hit + //if we surround the statement with the try/catch. Perhaps the try/catch block creates a scope or closure. + try { + $.fn[name].apply(this.jQuery(), arguments); + } catch(e) { + console.log("Couldn't find the event: " + name); + } + + return this; + }; + }; + var _jQueryEventFunctionsToAdd = ['click', 'mouseenter', 'mouseleave', 'bind']; + for(var i = 0; i < _jQueryEventFunctionsToAdd.length; i++) _addJQueryEventFunction(_jQueryEventFunctionsToAdd[i]); + + + $ax.public.fn.openLink = function(url, includeVariables) { + this.jQuery().each(function() { + if(!($(this).is('iframe'))) { + return; + } + + var objIframe = $(this).get(0); + + $ax.navigate({ + url: url, + target: "frame", + includeVariables: includeVariables, + frame: objIframe + }); + }); + + return this; + }; + + $ax.public.fn.SetPanelState = function(stateNumber, options, showWhenSet) { + var easingIn = 'none'; + var easingOut = 'none'; + var directionIn = ''; + var directionOut = ''; + var durationIn = 500; + var durationOut = 500; + + if(options && options.animateIn) { + easingIn = 'fade'; + directionIn = _getEasingDirection(options.animateIn); + if(directionIn != '') easingIn = 'swing'; + if(options.animateIn.duration) { + durationIn = options.animateIn.duration; + } + } + + if(options && options.animateOut) { + easingOut = 'fade'; + directionOut = _getEasingDirection(options.animateOut); + if(directionOut != '') easingOut = 'swing'; + if(options.animateOut.duration) { + durationOut = options.animateOut.duration; + } + } + + var elementIds = this.getElementIds(); + + for(var index = 0; index < elementIds.length; index++) { + var elementId = elementIds[index]; + if($ax.getTypeFromElementId(elementId) == DYNAMIC_PANEL_TYPE) { + var stateName = $ax.visibility.GetPanelStateId(elementId, Number(stateNumber) - 1); + var wasVisible = $ax.visibility.IsIdVisible(elementId); + // If compressing because you are fit to content and the change of state may change size, must be before the change. + if(options.compress && $ax.dynamicPanelManager.isIdFitToContent(elementId) && wasVisible) { + $ax.dynamicPanelManager.compressDelta(elementId, $ax.visibility.GetPanelState(elementId), stateName, options.vertical, options.compressEasing, options.compressDuration); + } + $ax.visibility.SetPanelState(elementId, stateName, easingOut, directionOut, durationOut, easingIn, directionIn, durationIn, showWhenSet); + // If compressing because of a show, must be after state is set. + if(options.compress && !wasVisible && showWhenSet) { + $ax.dynamicPanelManager.compressToggle(elementId, options.vertical, true, options.compressEasing, options.compressDuration); + } + } + } + + return this; + }; + + $ax.public.fn.show = function(options, eventInfo) { + var easing = options && options.easing || 'none'; + var duration = options && options.duration || 0; + + var direction = _getEasingDirection(options); + if(direction != '') easing = 'swing'; + + var elementIds = this.getElementIds(); + + for(var index = 0; index < elementIds.length; index++) { + var elementId = elementIds[index]; + + var lightboxId = $ax.repeater.applySuffixToElementId(elementId, '_lightbox'); + var lightbox = $jobj(lightboxId); + if(options && options.showType == 'lightbox') { + $ax.flyoutManager.unregisterPanel(elementId, true); + // Add lightbox if there isn't one + if(lightbox.length == 0) { + lightbox = $('
    '); + lightbox.attr('id', lightboxId); + var color = 'rgb(' + options.lightbox.r + ',' + options.lightbox.g + ',' + options.lightbox.b + ')'; + lightbox.css({ + position: 'fixed', + left: '0px', + top: '0px', + width: '10000px', + height: '10000px', + 'background-color': color, + opacity: options.lightbox.a / 255 + }); + + var parents = $ax('#' + elementId).getParents(true)[0]; + var fixedParentPanelId = undefined; + for(var j = 0; j < parents.length; j++) { + var parentId = parents[j].split('_')[0]; + var parentObj = $obj(parentId); + if(parentObj.type == 'dynamicPanel' && $jobj(parentId).css('z-index') != 'auto') { + fixedParentPanelId = parentId; + break; + } + } + + if(!fixedParentPanelId) $('#base').append(lightbox); + else $jobj(fixedParentPanelId).append(lightbox); + + var wasVisible = $ax.visibility.IsIdVisible(elementId); + + (function(lightbox, query) { + $ax.event.attachClick(lightbox, function() { + $ax.action.addAnimation(elementId, function() { + if(!wasVisible) query.hide(); + else $ax.action.fireAnimationFromQueue(elementId); + lightbox.remove(); + }); + }); + })(lightbox, this); + } + $ax.legacy.BringToFront(lightboxId, true); + $ax.legacy.BringToFront(elementId, true); + } else if(options && options.showType == 'flyout') { + // Remove lightbox if there is one + lightbox.remove(); + + var src = eventInfo.thiswidget; + var target = $ax.getWidgetInfo(elementId); + var rects = {}; + if(src.valid) rects.src = $ax.geometry.genRect(src); + if(target.valid) rects.target = $ax.geometry.genRect(target); + $ax.flyoutManager.registerFlyout(rects, elementId, eventInfo.srcElement); + $ax.style.AddRolloverOverride(elementId); + $ax.legacy.BringToFront(elementId); + } else { + // Remove lightbox, unregister flyout + lightbox.remove(); + $ax.flyoutManager.unregisterPanel(elementId, true); + + var wasShown = $ax.visibility.IsIdVisible(elementId); + _setVisibility(elementId, true, easing, direction, duration); + if(options && options.showType == 'front') $ax.legacy.BringToFront(elementId); + else if(options && options.showType == 'compress' && !wasShown) $ax.dynamicPanelManager.compressToggle(elementId, options.vertical, true, options.compressEasing, options.compressDuration); + + continue; + } + _setVisibility(elementId, true, easing, direction, duration); + } + + return this; + }; + + var _getEasingDirection = function(options) { + if(options && options.easing) { + if(options.easing == 'slideLeft') { + return 'left'; + } else if(options.easing == 'slideRight') { + return 'right'; + } else if(options.easing == 'slideUp') { + return 'up'; + } else if(options.easing == 'slideDown') { + return 'down'; + } + } + return ''; + }; + + $ax.public.fn.hide = function(options) { + var easing = options && options.easing || 'none'; + var duration = options && options.duration || 0; + + var direction = _getEasingDirection(options); + if(direction != '') easing = 'swing'; + + var elementIds = this.getElementIds(); + + for(var index = 0; index < elementIds.length; index++) { + var elementId = elementIds[index]; + var wasShown = $ax.visibility.IsIdVisible(elementId); + _setVisibility(elementId, false, easing, direction, duration); + if(options && options.showType == 'compress' && wasShown) $ax.dynamicPanelManager.compressToggle(elementId, options.vertical, false, options.compressEasing, options.compressDuration); + } + + return this; + }; + + $ax.public.fn.toggleVisibility = function(options) { + var easing = options && options.easing || 'none'; + var duration = options && options.duration || 0; + + var direction = _getEasingDirection(options); + if(direction != '') easing = 'swing'; + + var elementIds = this.getElementIds(); + for(var index = 0; index < elementIds.length; index++) { + var elementId = elementIds[index]; + var show = !$ax.visibility.IsIdVisible(elementId); + _setVisibility(elementId, show, easing, direction, duration); + if(options && options.showType == 'compress') $ax.dynamicPanelManager.compressToggle(elementId, options.vertical, show, options.compressEasing, options.compressDuration); + } + + return this; + }; + + var _setVisibility = function(elementId, value, easing, direction, duration) { + $ax.visibility.SetWidgetVisibility(elementId, { + value: value, + easing: easing, + direction: direction, + duration: duration, + fire: true, + onComplete: function() { $ax.dynamicPanelManager.fitParentPanel(elementId); } + }); + }; + + $ax.public.fn.moveTo = function(x, y, options) { + var easing = 'none'; + var duration = 500; + + if(options && options.easing) { + easing = options.easing; + + if(options.duration) { + duration = options.duration; + } + } + + var elementIds = this.getElementIds(); + + for(var index = 0; index < elementIds.length; index++) { + var elementId = elementIds[index]; + $ax.move.MoveWidget(elementId, x, y, easing, duration, true, function() { $ax.dynamicPanelManager.fitParentPanel(elementId); }, true); + } + + return this; + }; + + $ax.public.fn.moveBy = function(x, y, options) { + var elementIds = this.getElementIds(); + + if(x == 0 && y == 0) { + for(var i = 0; i < elementIds.length; i++) { + var id = this.getElementIds()[i]; + $ax.event.raiseSyntheticEvent(id, "onMove"); + $ax.action.fireAnimationFromQueue(id); + } + return this; + } + var easing = 'none'; + var duration = 500; + + if(options && options.easing) { + easing = options.easing; + + if(options.duration) { + duration = options.duration; + } + } + + for(var index = 0; index < elementIds.length; index++) { + var elementId = elementIds[index]; + $ax.move.MoveWidget(elementId, x, y, easing, duration, false, function() { $ax.dynamicPanelManager.fitParentPanel(elementId); }, true); + } + + return this; + }; + + $ax.public.fn.bringToFront = function() { + var elementIds = this.getElementIds(); + + for(var index = 0; index < elementIds.length; index++) { + $ax.legacy.BringToFront(elementIds[index]); + } + + return this; + }; + + $ax.public.fn.sendToBack = function() { + var elementIds = this.getElementIds(); + + for(var index = 0; index < elementIds.length; index++) { + $ax.legacy.SendToBack(elementIds[index]); + } + + return this; + }; + + $ax.public.fn.text = function() { + if(arguments[0] == undefined) { + var firstId = this.getElementIds()[0]; + + if(!firstId) { + return undefined; + } + + return getWidgetText(firstId); + } else { + var elementIds = this.getElementIds(); + + for(var index = 0; index < elementIds.length; index++) { + var currentItem = elementIds[index]; + + var widgetType = $ax.getTypeFromElementId(currentItem); + + if(widgetType == TEXT_BOX_TYPE || widgetType == TEXT_AREA_TYPE) { //For non rtf + SetWidgetFormText(currentItem, arguments[0]); + } else { + var idRtf = '#' + currentItem; + if($(idRtf).length == 0) idRtf = '#u' + (Number(currentItem.substring(1)) + 1); + + if($(idRtf).length != 0) { + //If the richtext div already has some text in it, + //preserve only the first style and get rid of the rest + //If no pre-existing p-span tags, don't do anything + if($(idRtf).find('p').find('span').length > 0) { + $(idRtf).find('p:not(:first)').remove(); + $(idRtf).find('p').find('span:not(:first)').remove(); + + //Replace new-lines with NEWLINE token, then html encode the string, + //finally replace NEWLINE token with linebreak + var textWithLineBreaks = arguments[0].replace(/\n/g, '--NEWLINE--'); + var textHtml = $('
    ').text(textWithLineBreaks).html(); + $(idRtf).find('span').html(textHtml.replace(/--NEWLINE--/g, '
    ')); + } + } + } + } + + return this; + } + }; + + var getWidgetText = function(id) { + var idQuery = $('#' + id); + + if(idQuery.is('div')) { + var $rtfObj = idQuery.hasClass('text') ? idQuery : idQuery.find('.text'); + if($rtfObj.length == 0) return undefined; + + var textOut = ''; + $rtfObj.children('p').each(function(index) { + if(index != 0) textOut += '\n'; + + //Replace line breaks (set in SetWidgetRichText) with newlines and nbsp's with regular spaces. + var htmlContent = $(this).html().replace(/]*>/ig, '\n').replace(/ /ig, ' '); + textOut += $(htmlContent).text(); + }); + + return textOut; + } else if(idQuery.is('input') && + (idQuery.attr('type') == 'checkbox' || idQuery.attr('type') == 'radio')) { + return idQuery.parent().find('label').find('.text').text(); + } else { + return idQuery.val(); + } + }; + + $ax.public.fn.setRichTextHtml = function() { + if(arguments[0] == undefined) { + //No getter function, so just return undefined + return undefined; + } else { + var elementIds = this.getElementIds(); + + for(var index = 0; index < elementIds.length; index++) { + var currentItem = elementIds[index]; + + var widgetType = $ax.getTypeFromElementId(currentItem); + if(widgetType == TEXT_BOX_TYPE || widgetType == TEXT_AREA_TYPE) { //Do nothing for non rtf + continue; + } else { + //TODO -- [mas] fix this! + var idRtf = '#' + currentItem; + if($(idRtf).length == 0) idRtf = '#u' + (parseInt(currentItem.substring(1)) + 1); + if($(idRtf).length != 0) SetWidgetRichText(idRtf, arguments[0]); + } + } + + return this; + } + }; + + $ax.public.fn.value = function() { + if(arguments[0] == undefined) { + var firstId = this.getElementIds()[0]; + + if(!firstId) { + return undefined; + } + + var widgetType = $ax.getTypeFromElementId(firstId); + + if(widgetType == COMBO_BOX_TYPE || widgetType == LIST_BOX_TYPE) { //for select lists and drop lists + return $('#' + firstId + ' :selected').text(); + } else if(widgetType == CHECK_BOX_TYPE || widgetType == RADIO_BUTTON_TYPE) { //for radio/checkboxes + return $('#' + firstId + '_input').is(':checked'); + } else if(widgetType == TEXT_BOX_TYPE) { //for text box + return $('#' + firstId + '_input').val(); + } else { //for text based form elements + return this.jQuery().first().val(); + } + } else { + var elementIds = this.getElementIds(); + + for(var index = 0; index < elementIds.length; index++) { + var widgetType = $ax.getTypeFromElementId(elementIds[index]); + + var elementIdQuery = $('#' + elementIds[index]); + + if(widgetType == CHECK_BOX_TYPE || widgetType == RADIO_BUTTON_TYPE) { //for radio/checkboxes + if(arguments[0] == true) { + elementIdQuery.attr('checked', true); + } else if(arguments[0] == false) { + elementIdQuery.removeAttr('checked'); + } + } else { //For select lists, drop lists, text based form elements + elementIdQuery.val(arguments[0]); + } + } + + return this; + } + }; + + $ax.public.fn.checked = function() { + if(arguments[0] == undefined) { + return this.selected(); + } else { + this.selected(arguments[0]); + return this; + } + }; + + var _getRelativeLeft = function(node, parent) { + var currentNode = node; + var left = 0; + while(currentNode != null && currentNode.tagName != "BODY") { + left += currentNode.offsetLeft; + currentNode = currentNode.offsetParent; + if(currentNode == parent) break; + } + return left; + }; + + var _getRelativeTop = function(node, parent) { + var currentNode = node; + var top = 0; + while(currentNode != null && currentNode.tagName != "BODY") { + top += currentNode.offsetTop; + currentNode = currentNode.offsetParent; + if(currentNode == parent) break; + } + return top; + }; + + var _scrollHelper = function(id, scrollX, scrollY, easing, duration) { + var target = window.document.getElementById(id); + var scrollable = $ax.legacy.GetScrollable(target); + var targetLeft = _getRelativeLeft(target, scrollable); + var targetTop = _getRelativeTop(target, scrollable); + if(!scrollX) targetLeft = scrollable.scrollLeft; + if(!scrollY) targetTop = scrollable.scrollTop; + + var $scrollable = $(scrollable); + if($scrollable.is('body')) { + $scrollable = $('html,body'); + } + + if(easing == 'none') { + if(scrollY) $scrollable.scrollTop(targetTop); + if(scrollX) $scrollable.scrollLeft(targetLeft); + } else { + if(!scrollX) { + $scrollable.animate({ scrollTop: targetTop }, duration, easing); + } else if(!scrollY) { + $scrollable.animate({ scrollLeft: targetLeft }, duration, easing); + } else { + $scrollable.animate({ scrollTop: targetTop, scrollLeft: targetLeft }, duration, easing); + } + } + }; + + $ax.public.fn.scroll = function(scrollOption) { + var easing = 'none'; + var duration = 500; + + if(scrollOption && scrollOption.easing) { + easing = scrollOption.easing; + + if(scrollOption.duration) { + duration = scrollOption.duration; + } + } + + var scrollX = true; + var scrollY = true; + + if(scrollOption.direction == 'vertical') { + scrollX = false; + } else if(scrollOption.direction == 'horizontal') { + scrollY = false; + } + + var elementIds = this.getElementIds(); + for(var index = 0; index < elementIds.length; index++) { + // if($ax.getTypeFromElementId(elementIds[index]) == IMAGE_MAP_REGION_TYPE) { + _scrollHelper(elementIds[index], scrollX, scrollY, easing, duration); + // } + } + + return this; + }; + + $ax.public.fn.enabled = function() { + if(arguments[0] == undefined) { + var firstId = this.getElementIds()[0]; + if(!firstId) return undefined; + + var widgetType = $ax.getTypeFromElementId(firstId); + if(widgetType == IMAGE_BOX_TYPE || widgetType == BUTTON_SHAPE_TYPE || widgetType == FLOW_SHAPE_TYPE) return !$ax.style.IsWidgetDisabled(firstId); + else return this.jQuery().first().not(':disabled').length > 0; + } else { + var elementIds = this.getElementIds(); + + for(var index = 0; index < elementIds.length; index++) { + var elementId = elementIds[index]; + var widgetType = $ax.getTypeFromElementId(elementId); + + var enabled = arguments[0]; + if(widgetType == IMAGE_BOX_TYPE || widgetType == BUTTON_SHAPE_TYPE || widgetType == FLOW_SHAPE_TYPE) $ax.style.SetWidgetEnabled(elementId, enabled); + if(widgetType == DYNAMIC_PANEL_TYPE) { + $ax.style.SetWidgetEnabled(elementId, enabled); + var children = this.getChildren()[index].children; + for(var i = 0; i < children.length; i++) { + var childId = children[i]; + // Need to check this because of radio button and checkbox + var end = '_container'; + if(childId.length > end.length && childId.substring(childId.length - end.length) == end) { + childId = childId.substring(0, childId.length - end.length); + } + + $axure('#' + childId).enabled(enabled); + } + } + var jobj = $jobj(elementId); + var input = $jobj($ax.INPUT(elementId)); + if(input.length) jobj = input; + + if(enabled) jobj.removeAttr('disabled'); + else jobj.attr('disabled', 'disabled'); + } + + return this; + } + }; + + $ax.public.fn.visible = function() { + var ids = this.getElementIds(); + for(var index = 0; index < ids.length; index++) $ax.visibility.SetIdVisible(ids[index], arguments[0]); + return this; + }; + + $ax.public.fn.selected = function() { + if(arguments[0] == undefined) { + var firstId = this.getElementIds()[0]; + if(!firstId) return undefined; + + var widgetType = $ax.getTypeFromElementId(firstId); + if(widgetType == TREE_NODE_OBJECT_TYPE) { + var treeNodeButtonShapeId = ''; + var allElementIds = $ax.getAllElementIds(); + for(var i = 0; i < allElementIds.length; i++) { + var elementId = allElementIds[i]; + var currObj = $ax.getObjectFromElementId(elementId); + + if(currObj.type == BUTTON_SHAPE_TYPE && currObj.parent && currObj.parent.scriptIds && currObj.parent.scriptIds[0] == firstId) { + treeNodeButtonShapeId = elementId; + break; + } + } + + if(treeNodeButtonShapeId == '') return undefined; + return $ax.style.IsWidgetSelected(treeNodeButtonShapeId); + } else if(widgetType == IMAGE_BOX_TYPE || widgetType == BUTTON_SHAPE_TYPE || widgetType == FLOW_SHAPE_TYPE || widgetType == TABLE_CELL_TYPE | widgetType == DYNAMIC_PANEL_TYPE) { + return $ax.style.IsWidgetSelected(firstId); + } else if(widgetType == CHECK_BOX_TYPE || widgetType == RADIO_BUTTON_TYPE) { + return $jobj($ax.INPUT(firstId)).prop('checked'); + } + return this; + } + var elementIds = this.getElementIds(); + var func = typeof (arguments[0]) === 'function' ? arguments[0] : null; + var enabled = arguments[0]; // If this is a function it will be overridden with the return value; + + for(var index = 0; index < elementIds.length; index++) { + var elementId = elementIds[index]; + if(func) { + enabled = func($axure('#' + elementId)); + } + + var widgetType = $ax.getTypeFromElementId(elementId); + + if(widgetType == TREE_NODE_OBJECT_TYPE) { //for tree node + var treeRootId = $('#' + elementIds[index]).parents('.treeroot').attr('id'); + + var treeNodeButtonShapeId = ''; + var childElementIds = $jobj(elementId).children(); + for(var i = 0; i < childElementIds.length; i++) { + var elementId = childElementIds[i].id; + var currObj = $ax.getObjectFromElementId(elementId); + + if(currObj && currObj.type == BUTTON_SHAPE_TYPE && currObj.parent && + currObj.parent.scriptIds && currObj.parent.scriptIds[0] == elementIds[index]) { + treeNodeButtonShapeId = elementId; + break; + } + } + + if(treeNodeButtonShapeId == '') continue; + + $ax.tree.SelectTreeNode(elementId, enabled); + } else if(widgetType == IMAGE_BOX_TYPE || widgetType == BUTTON_SHAPE_TYPE || widgetType == FLOW_SHAPE_TYPE || widgetType == TABLE_CELL_TYPE || widgetType == DYNAMIC_PANEL_TYPE) { + $ax.style.SetWidgetSelected(elementIds[index], enabled); + } else if(widgetType == CHECK_BOX_TYPE || widgetType == RADIO_BUTTON_TYPE) { + var query = $jobj($ax.INPUT(elementId)); + var curr = query.prop('checked'); + if(curr != enabled) { + query.prop('checked', enabled); + $ax.event.raiseSyntheticEvent(elementId, 'onCheckedChange'); + } + } + } + return this; + }; + + $ax.public.fn.focus = function() { + var firstId = this.getElementIds()[0]; + var focusableId = $ax.event.getFocusableWidgetOrChildId(firstId); + $('#' + focusableId).focus(); + + return this; + }; + + $ax.public.fn.expanded = function() { + if(arguments[0] == undefined) { + var firstId = this.getElementIds()[0]; + return firstId && $ax.getTypeFromElementId(firstId) !== TREE_NODE_OBJECT_TYPE && $ax.visibility.IsIdVisible(firstId + '_children'); + } else { + var elementIds = this.getElementIds(); + + for(var index = 0; index < elementIds.length; index++) { + if($ax.getTypeFromElementId(elementIds[index]) == TREE_NODE_OBJECT_TYPE) { + var treeNodeId = elementIds[index]; + var childContainerId = elementIds[index] + '_children'; + + var plusMinusId = 'u' + (parseInt(elementIds[index].substring(1)) + 1); + if($('#' + childContainerId).length == 0 || !$jobj(plusMinusId).hasClass('ax_image')) + plusMinusId = ''; + + if(arguments[0] == true) { + $ax.tree.ExpandNode(treeNodeId, childContainerId, plusMinusId); + } else if(arguments[0] == false) { + $ax.tree.CollapseNode(treeNodeId, childContainerId, plusMinusId); + } + } + } + + return this; + } + }; +}); diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/doc.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/doc.js" new file mode 100644 index 0000000..7e3a138 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/doc.js" @@ -0,0 +1,658 @@ +$axure.internal(function($ax) { + var _pageData; + + + var _initializePageFragment = function(pageFragment, objIdToObject) { + var objectArrayHelper = function(objects, parent) { + for(var i = 0; i < objects.length; i++) { + diagramObjectHelper(objects[i], parent); + } + }; + + var diagramObjectHelper = function(diagramObject, parent) { + $ax.initializeObject('diagramObject', diagramObject); + objIdToObject[pageFragment.packageId + '~' + diagramObject.id] = diagramObject; + diagramObject.parent = parent; + diagramObject.owner = pageFragment; + diagramObject.scriptIds = []; + if(diagramObject.diagrams) { //dynamic panel + for(var i = 0; i < diagramObject.diagrams.length; i++) { + var diagram = diagramObject.diagrams[i]; + objectArrayHelper(diagram.objects, diagram); + } + } + if(diagramObject.objects) objectArrayHelper(diagramObject.objects, diagramObject); + }; + + objectArrayHelper(pageFragment.diagram.objects, pageFragment.diagram); + }; + + var _initalizeStylesheet = function(stylesheet) { + var stylesById = {}; + var customStyles = stylesheet.customStyles; + for(var key in customStyles) { + var style = customStyles[key]; + stylesById[style.id] = style; + } + stylesheet.stylesById = stylesById; + }; + + + var _initializeDocumentData = function() { + _initalizeStylesheet($ax.document.stylesheet); + }; + + + var _initializePageData; + // ******* Dictionaries ******** // + (function() { + var elementIdToObject = {}; + var scriptIdToObject = {}; + var scriptIdToRepeaterId = {}; + var repeaterIdToScriptIds = {}; + var repeaterIdToItemIds = {}; + var scriptIdToPath = {}; + var elementIdToText = {}; + var radioGroupToSelectedElementId = {}; + _initializePageData = function() { + if(!_pageData || !_pageData.page || !_pageData.page.diagram) return; + + var objIdToObject = {}; + _initializePageFragment(_pageData.page, objIdToObject); + for(var masterId in _pageData.masters) { + var master = _pageData.masters[masterId]; + _initializePageFragment(master, objIdToObject); + } + + var _pathsToScriptIds = []; + _pathToScriptIdHelper(_pageData.objectPaths, [], _pathsToScriptIds, scriptIdToPath); + + for(var i = 0; i < _pathsToScriptIds.length; i++) { + var path = _pathsToScriptIds[i].idPath; + var scriptId = _pathsToScriptIds[i].scriptId; + + var packageId = _pageData.page.packageId; + if(path.length > 1) { + for(var j = 0; j < path.length - 1; j++) { + var rdoId = path[j]; + var rdo = objIdToObject[packageId + '~' + rdoId]; + packageId = rdo.masterId; + } + } + var diagramObject = objIdToObject[packageId + '~' + path[path.length - 1]]; + diagramObject.scriptIds[diagramObject.scriptIds.length] = scriptId; + + scriptIdToObject[scriptId] = diagramObject; + } + + // Now map scriptIds to repeaters + var mapScriptIdToRepeaterId = function(scriptId, repeaterId) { + scriptIdToRepeaterId[scriptId] = repeaterId; + var scriptIds = repeaterIdToScriptIds[repeaterId]; + if(scriptIds) scriptIds[scriptIds.length] = scriptId; + else repeaterIdToScriptIds[repeaterId] = [scriptId]; + }; + var mapIdsToRepeaterId = function(path, objs, repeaterId) { + var pathCopy = $ax.deepCopy(path); + + for(var i = 0; i < objs.length; i++) { + var obj = objs[i]; + pathCopy[path.length] = obj.id; + var scriptId = $ax.getScriptIdFromPath(pathCopy); + // Rdo have no element on page and are not mapped to the repeater + if(repeaterId) mapScriptIdToRepeaterId(scriptId, repeaterId); + + if(obj.type == 'dynamicPanel') { + for(var j = 0; j < obj.diagrams.length; j++) mapIdsToRepeaterId(path, obj.diagrams[j].objects, repeaterId); + } else if(obj.type == 'referenceDiagramObject') { + mapIdsToRepeaterId(pathCopy, $ax.pageData.masters[obj.masterId].diagram.objects, repeaterId); + } else if(obj.type == 'repeater') { + mapScriptIdToRepeaterId(scriptId, scriptId); + mapIdsToRepeaterId(path, obj.objects, scriptId); + } else if(obj.objects && obj.objects.length) { + if(repeaterId) { + for(var j = 0; j < obj.objects.length; j++) { + mapIdsToRepeaterId(path, obj.objects, repeaterId); + } + } + } + } + }; + mapIdsToRepeaterId([], $ax.pageData.page.diagram.objects); + }; + + + + $ax.getPathFromScriptId = function(scriptId) { + var reversedPath = []; + var path = scriptIdToPath[scriptId]; + while(path && path.uniqueId) { + reversedPath[reversedPath.length] = path.uniqueId; + path = path.parent; + } + return reversedPath.reverse(); + }; + + var _getScriptIdFromFullPath = function(path) { + var current = $ax.pageData.objectPaths; + for(var i = 0; i < path.length; i++) { + current = current[path[i]]; + } + return current && current.scriptId; + }; + + + var _getScriptIdFromPath = function(path, relativeTo) { + var relativePath = []; + var includeMasterInPath = false; + if(relativeTo) { + var relativeToScriptId; + if(relativeTo.srcElement) { //this is eventInfo + relativeToScriptId = $ax.repeater.getScriptIdFromElementId(relativeTo.raisedId || relativeTo.srcElement); + includeMasterInPath = relativeTo.isMasterEvent; + } else if(typeof relativeTo === 'string') { //this is an element id + relativeToScriptId = relativeTo; + } + + if(relativeToScriptId) { + relativePath = $ax.getPathFromScriptId(relativeToScriptId); + if(!includeMasterInPath) relativePath = relativePath.slice(0, relativePath.length - 1); + } else if(relativeTo instanceof Array) { //this is a path + relativePath = relativeTo; + } + } + var fullPath = relativePath.concat(path); + return _getScriptIdFromFullPath(fullPath); + }; + $ax.getScriptIdFromPath = _getScriptIdFromPath; + + var _getElementIdsFromPath = function(path, eventInfo) { + var scriptId = _getScriptIdFromPath(path, eventInfo); + return $ax.getElementIdsFromEventAndScriptId(eventInfo, scriptId); + }; + $ax.getElementIdsFromPath = _getElementIdsFromPath; + + var _getElementIdFromPath = function(path, params) { + var itemNum = params.itemNum; + if(params.relativeTo && typeof params.relativeTo === 'string') { + if($jobj(params.relativeTo)) itemNum = $ax.repeater.getItemIdFromElementId(params.relativeTo); + } + return $ax.repeater.createElementId(_getScriptIdFromPath(path, params.relativeTo), itemNum); + }; + $ax.getElementIdFromPath = _getElementIdFromPath; + + var _getElementsIdFromEventAndScriptId = function(eventInfo, scriptId) { + var itemId = eventInfo && $ax.repeater.getItemIdFromElementId(eventInfo.srcElement); + + var parentRepeater = $ax.getParentRepeaterFromScriptId(scriptId); + if(parentRepeater && scriptId != parentRepeater) { + if(itemId && (!eventInfo || parentRepeater == $ax.getParentRepeaterFromScriptId($ax.repeater.getScriptIdFromElementId(eventInfo.srcElement)))) { + return [$ax.repeater.createElementId(scriptId, itemId)]; + } + var elementIds = []; + var itemIds = $ax.getItemIdsForRepeater(parentRepeater); + if(!itemIds) return []; + + for(var i = 0; i < itemIds.length; i++) elementIds[i] = $ax.repeater.createElementId(scriptId, itemIds[i]); + return elementIds; + } + return [scriptId]; + }; + $ax.getElementIdsFromEventAndScriptId = _getElementsIdFromEventAndScriptId; + + var _getSrcElementIdFromEvent = function(event) { + var currentQuery = $(event.srcElement || event.target); + while(currentQuery && currentQuery.length && (!$obj(currentQuery.attr('id')) || $jobj(currentQuery.attr('id')).hasClass('text'))) { + currentQuery = currentQuery.parent(); + }; + return currentQuery.attr('id'); + }; + $ax.getSrcElementIdFromEvent = _getSrcElementIdFromEvent; + + var _getEventInfoFromEvent = function(event, skipShowDescriptions, elementId) { + var eventInfo = {}; + eventInfo.srcElement = elementId; + + if(event != null) { + //elementId can be empty string, so can't simple use "or" assignment here. + eventInfo.srcElement = elementId || elementId == '' ? elementId : _getSrcElementIdFromEvent(event); + eventInfo.which = event.which; + + // When getting locations in mobile, need to extract the touch object to get the mouse location attributes + var mouseEvent = (event.originalEvent && event.originalEvent.changedTouches && event.originalEvent.changedTouches[0]) || event.originalEvent; + + if(skipShowDescriptions) eventInfo.skipShowDescriptions = true; + + // Always update mouse location if possible + $ax.event.updateMouseLocation(mouseEvent); + } + + // Always set event info about cursor + var _cursor = eventInfo.cursor = {}; + _cursor.x = $ax.mouseLocation.x; + _cursor.y = $ax.mouseLocation.y; + + eventInfo.pageX = _cursor.x + 'px'; + eventInfo.pageY = _cursor.y + 'px'; + + // Do Keyboard Info + eventInfo.keyInfo = $ax.event.keyState(); + + eventInfo.window = _getWindowInfo(); + + eventInfo.thiswidget = _getWidgetInfo(eventInfo.srcElement); + eventInfo.item = _getItemInfo(eventInfo.srcElement); + eventInfo.dragInfo = $ax.drag.GetWidgetDragInfo(); + + return eventInfo; + }; + $ax.getEventInfoFromEvent = _getEventInfoFromEvent; + + var _getWindowInfo = function() { + var win = {}; + win.width = $(window).width(); + win.height = $(window).height(); + win.scrollx = $(window).scrollLeft(); + win.scrolly = $(window).scrollTop(); + return win; + }; + $ax.getWindowInfo = _getWindowInfo; + + var _getItemInfo = function(elementId) { + if(!elementId) return { valid: false }; + + elementId = _getParentElement(elementId); + + var itemId = $ax.repeater.getItemIdFromElementId(elementId); + if(!itemId) return { valid: false }; + + + var item = { valid: true }; + + var index = $ax.repeater.getItemIdFromElementId(elementId); + var scriptId = $ax.repeater.getScriptIdFromElementId(elementId); + var repeaterId = $ax.getParentRepeaterFromScriptId(scriptId); + item.repeater = _getWidgetInfo(repeaterId); + $ax.repeater.setDisplayProps(item, repeaterId, index); + item.ismarked = $ax.repeater.isEditItem(repeaterId, index); + item.isvisible = Boolean($jobj(elementId).length); + + return item; + }; + $ax.getItemInfo = _getItemInfo; + + var _getWidgetInfo = function(elementId) { + if(!elementId) return { valid: false }; + + elementId = _getParentElement(elementId); + + var elementQuery = $jobj(elementId); + var obj = $obj(elementId); + var widget = { valid: true, isWidget: true }; + widget.elementId = elementId; + widget.name = widget.label = (elementQuery.data('label') ? elementQuery.data('label') : ''); + widget.text = $ax('#' + elementId).text(); + var scriptId = $ax.repeater.getScriptIdFromElementId(elementId); + var repeaterId = $ax.getParentRepeaterFromScriptId(scriptId); + if(repeaterId) widget.repeater = obj.type == 'repeater' ? widget : _getWidgetInfo(repeaterId); + + var x = elementQuery.css('left'); + if(x !== undefined) x = Number(x.replace('px', '')); + var y = elementQuery.css('top'); + if(y !== undefined) y = Number(y.replace('px', '')); + + if(elementQuery.length != 0) { + widget.pagex = $ax.legacy.getAbsoluteLeft(elementQuery); + widget.pagey = $ax.legacy.getAbsoluteTop(elementQuery); + } + + widget.x = x; + widget.y = y; + widget.width = elementQuery.width(); + widget.height = elementQuery.height(); + + // Right now only dynamic panel can scroll + if(obj.type == 'dynamicPanel') { + var stateQuery = $('#' + $ax.visibility.GetPanelState(elementId)); + widget.scrollx = stateQuery.scrollLeft(); + widget.scrolly = stateQuery.scrollTop(); + + if($ax.dynamicPanelManager.isIdFitToContent(elementId)) { + widget.width = stateQuery.width(); + widget.height = stateQuery.height(); + } + } else { + widget.scrollx = 0; + widget.scrolly = 0; + } + + // repeater only props + if(obj.type == 'repeater' && repeaterIdToItemIds[elementId]) { + widget.visibleitemcount = repeaterIdToItemIds[elementId].length; + widget.itemcount = $ax.repeater.getFilteredDataCount(elementId); + widget.datacount = $ax.repeater.getDataCount(elementId); + widget.pagecount = $ax.repeater.getPageCount(elementId); + widget.pageindex = $ax.repeater.getPageIndex(elementId); + } + + widget.left = widget.x; + widget.top = widget.y; + widget.right = widget.x + widget.width; + widget.bottom = widget.y + widget.height; + + return widget; + }; + $ax.getWidgetInfo = _getWidgetInfo; + + var _getParentElement = $ax.getParentElement = function(elementId) { + var obj = $obj(elementId); + while(obj.isContained) { + var path = $ax.getPathFromScriptId($ax.repeater.getScriptIdFromElementId(elementId)); + var itemId = $ax.repeater.getItemIdFromElementId(elementId); + path[path.length - 1] = obj.parent.id; + elementId = $ax.getElementIdFromPath(path, { itemNum: itemId }); + obj = $obj(elementId); + } + + return elementId; + }; + + $ax.addItemIdToRepeater = function(itemId, repeaterId) { + var itemIds = repeaterIdToItemIds[repeaterId]; + if(itemIds) itemIds[itemIds.length] = itemId; + else repeaterIdToItemIds[repeaterId] = [itemId]; + + var scriptIds = repeaterIdToScriptIds[repeaterId]; + for(var i = 0; i < scriptIds.length; i++) elementIdToObject[$ax.repeater.createElementId(scriptIds[i], itemId)] = $ax.getObjectFromScriptId(scriptIds[i]); + }; + + $ax.getAllElementIds = function() { + var elementIds = []; + for(var scriptId in scriptIdToObject) { + var repeaterId = scriptIdToRepeaterId[scriptId]; + if(repeaterId && repeaterId != scriptId) { + var itemIds = repeaterIdToItemIds[repeaterId] || []; + for(var i = 0; i < itemIds.length; i++) elementIds[elementIds.length] = $ax.repeater.createElementId(scriptId, itemIds[i]); + } else elementIds[elementIds.length] = scriptId; + } + return elementIds; + }; + + $ax.getAllScriptIds = function() { + var scriptIds = []; + for(var scriptId in scriptIdToObject) scriptIds.push(scriptId); + return scriptIds; + }; + + $ax.getObjectFromElementId = function(elementId) { + return $ax.getObjectFromScriptId($ax.repeater.getScriptIdFromElementId(elementId)); + }; + + $ax.getObjectFromScriptId = function(scriptId) { + return scriptIdToObject[scriptId]; + }; + + $ax.getParentRepeaterFromScriptId = function(scriptId) { + return scriptIdToRepeaterId[scriptId]; + }; + + var _getChildScriptIdsForRepeater = function(repeaterId) { + return repeaterIdToScriptIds[repeaterId]; + }; + + var _getItemIdsForRepeater = function(repeaterId) { + return repeaterIdToItemIds[repeaterId] || []; + }; + $ax.getItemIdsForRepeater = _getItemIdsForRepeater; + + var _clearItemIdsForRepeater = function(repeaterId) { + repeaterIdToItemIds[repeaterId] = []; + }; + $ax.clearItemsForRepeater = _clearItemIdsForRepeater; + + $ax.getChildElementIdsForRepeater = function(repeaterId) { + var scriptIds = _getChildScriptIdsForRepeater(repeaterId); + var itemIds = _getItemIdsForRepeater(repeaterId); + + var retVal = []; + if(!itemIds || !scriptIds) return retVal; + + for(var i = 0; i < scriptIds.length; i++) { + for(var j = 0; j < itemIds.length; j++) { + retVal[retVal.length] = $ax.repeater.createElementId(scriptIds[i], itemIds[j]); + } + } + return retVal; + }; + + $ax.getRdoParentFromElementId = function(elementId) { + var scriptId = $ax.repeater.getScriptIdFromElementId(elementId); + var rdoId = scriptIdToPath[scriptId].parent.scriptId; + if($ax.getParentRepeaterFromScriptId(rdoId)) rdoId = $ax.repeater.createElementId(rdoId, $ax.repeater.getItemIdFromElementId(elementId)); + return rdoId; + }; + + $ax.updateElementText = function(elementId, text) { + elementIdToText[elementId] = text; + }; + + $ax.hasElementTextChanged = function(elementId, text) { + return elementIdToText[elementId] != text; + }; + + $ax.updateRadioButtonSelected = function(group, elementId) { + var old = radioGroupToSelectedElementId[group]; + radioGroupToSelectedElementId[group] = elementId; + return old; + }; + + $ax.hasRadioButtonSelectedChanged = function(group, elementId) { + return radioGroupToSelectedElementId[group] != elementId; + }; + })(); + + //Recursively populates fullPathArray with: + // [ { idPath, scriptId }, ... ] + //for every scriptId in the object + //also populates an object of scriptId -> path + var _pathToScriptIdHelper = function(currentPath, currentChain, fullPathArray, scriptIdToPath) { + for(var key in currentPath) { + if(key != "scriptId") { + var nextPath = currentPath[key]; + _pathToScriptIdHelper(nextPath, currentChain.concat(key), fullPathArray, scriptIdToPath); + nextPath.parent = currentPath; + nextPath.uniqueId = key; + } else { + fullPathArray[fullPathArray.length] = { idPath: currentChain, scriptId: currentPath.scriptId }; + scriptIdToPath[currentPath.scriptId] = currentPath; + } + } + }; + + $ax.public.loadCurrentPage = $ax.loadCurrentPage = function(pageData) { + $ax.pageData = _pageData = pageData; + _initializePageData(); + }; + + $ax.public.loadDocument = $ax.loadDocument = function(document) { + $ax.document = document; + _initializeDocumentData(); + }; + + + /** + Navigates to a page + + + */ + $ax.public.navigate = $ax.navigate = function(to) { //url, includeVariables, type) { + var targetUrl; + if(typeof (to) === 'object') { + includeVariables = to.includeVariables; + targetUrl = !includeVariables ? to.url : $ax.globalVariableProvider.getLinkUrl(to.url); + + if(to.target == "new") { + window.open(targetUrl, to.name); + } else if(to.target == "popup") { + var features = _getPopupFeatures(to.popupOptions); + window.open(targetUrl, to.name, features); + } else { + var targetLocation = window.location; + if(to.target == "current") { + } else if(to.target == "parent") { + targetLocation = top.opener.window.location; + } else if(to.target == "parentFrame") { + targetLocation = parent.location; + } else if(to.target == "frame") { + targetLocation = to.frame.contentWindow.location; + } + + if(!_needsReload(targetLocation, to.url)) { + targetLocation.href = targetUrl || 'about:blank'; + } else { + targetLocation.href = $axure.utils.getReloadPath() + "#" + encodeURI(targetUrl); + } + } + } else { + $ax.navigate({ + url: to, + target: "current", + includeVariables: arguments[1] + }); + } + }; + + var _needsReload = function(oldLocation, newBaseUrl) { + var reload = false; + try { + var oldUrl = oldLocation.href; + var oldBaseUrl = oldUrl.split("#")[0]; + var lastslash = oldBaseUrl.lastIndexOf("/"); + if(lastslash > 0) { + oldBaseUrl = oldBaseUrl.substring(lastslash + 1, oldBaseUrl.length); + if(oldBaseUrl == encodeURI(newBaseUrl)) { + reload = true; + } + } + } catch(e) { + } + return reload; + }; + + var _getPopupFeatures = function(options) { + var defaultOptions = { + toolbar: true, + scrollbars: true, + location: true, + status: true, + menubar: true, + directories: true, + resizable: true, + centerwindow: true, + left: -1, + top: -1, + height: -1, + width: -1 + }; + + var selectedOptions = $.extend({}, defaultOptions, options); + + var optionsList = []; + optionsList.push('toolbar=' + (selectedOptions.toolbar ? 'yes' : 'no')); + optionsList.push('scrollbars=' + (selectedOptions.scrollbars ? 'yes' : 'no')); + optionsList.push('location=' + (selectedOptions.location ? 'yes' : 'no')); + optionsList.push('status=' + (selectedOptions.status ? 'yes' : 'no')); + optionsList.push('menubar=' + (selectedOptions.menubar ? 'yes' : 'no')); + optionsList.push('directories=' + (selectedOptions.directories ? 'yes' : 'no')); + optionsList.push('resizable=' + (selectedOptions.resizable ? 'yes' : 'no')); + + if(selectedOptions.centerwindow == false) { + if(selectedOptions.left > -1) { + optionsList.push('left=' + selectedOptions.left); + } + + if(selectedOptions.top > -1) { + optionsList.push('top=' + selectedOptions.top); + } + } + + var height = 0; + var width = 0; + if(selectedOptions.height > 0) { + optionsList.push('height=' + selectedOptions.height); + height = selectedOptions.height; + } + + if(selectedOptions.width > 0) { + optionsList.push('width=' + selectedOptions.width); + width = selectedOptions.width; + } + + var features = optionsList.join(','); + if(selectedOptions.centerwindow) { + var winl = (window.screen.width - width) / 2; + var wint = (window.screen.height - height) / 2; + features = features + ',left=' + winl + ',top=' + wint; + } + + return features; + }; + + /** + Closes a window + + + */ + $ax.public.closeWindow = $ax.closeWindow = function() { + parent.window.close(); + }; + + /** + Goes back + + + */ + $ax.public.back = $ax.back = function() { + window.history.go(-1); + }; + + /** + Reloads the current page. + # includeVariables: true if it should re-include the variables when the page is reloaded + */ + $ax.public.reload = $ax.reload = function(includeVariables) { + var targetUrl = (includeVariables === false) + ? $axure.utils.getReloadPath() + "#" + encodeURI($ax.pageData.url) + : $axure.utils.getReloadPath() + "#" + encodeURI($ax.globalVariableProvider.getLinkUrl($ax.pageData.url)); + window.location.href = targetUrl; + }; + + /** + Sets a variable. + # name: The name of the global variable to set + # value: The value that should be set + */ + $ax.public.setGlobalVariable = $ax.setGlobalVariable = function(name, value) { + if(!name || !value) { + return; + } + + $ax.globalVariableProvider.setVariableValue(name, value); + }; + + /** + Gets the value of a global variable + # name: The name of the global variable value to get + */ + $ax.public.getGlobalVariable = $ax.getGlobalVariable = function(name) { + $ax.globalVariableProvider.getVariableValue(name); + }; + + + $ax.getTypeFromElementId = function(elementId) { + var elementIdInput = elementId.charAt(0) == '#' ? elementId.substring(1) : elementId; + var obj = this.getObjectFromElementId(elementIdInput); + return obj && obj.type; + }; + +}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/drag.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/drag.js" new file mode 100644 index 0000000..a27c746 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/drag.js" @@ -0,0 +1,265 @@ +$axure.internal(function($ax) { + var widgetDragInfo = new Object(); + var _drag = {}; + $ax.drag = _drag; + + $ax.drag.GetWidgetDragInfo = function() { + return $.extend({}, widgetDragInfo); + }; + + $ax.drag.StartDragWidget = function(event, id) { + $ax.setjBrowserEvent(jQuery.Event(event)); + + var x, y; + var tg; + if($.browser.msie) { + x = window.event.clientX + window.document.documentElement.scrollLeft + window.document.body.scrollLeft; + y = window.event.clientY + window.document.documentElement.scrollTop + window.document.body.scrollTop; + tg = window.event.srcElement; + } else { + if(event.changedTouches) { + x = event.changedTouches[0].pageX; + y = event.changedTouches[0].pageY; + } else { + x = event.pageX; + y = event.pageY; + event.preventDefault(); + } + tg = event.target; + } + + widgetDragInfo.hasStarted = false; + widgetDragInfo.widgetId = id; + widgetDragInfo.cursorStartX = x; + widgetDragInfo.cursorStartY = y; + widgetDragInfo.lastX = x; + widgetDragInfo.lastY = y; + widgetDragInfo.currentX = x; + widgetDragInfo.currentY = y; + + widgetDragInfo.movedWidgets = new Object(); + widgetDragInfo.startTime = (new Date()).getTime(); + widgetDragInfo.targetWidget = tg; + + if($.browser.msie) { + window.document.attachEvent("onmousemove", _dragWidget); + window.document.attachEvent("onmouseup", _stopDragWidget); + } else { + window.document.addEventListener("mousemove", _dragWidget, true); + window.document.addEventListener("mouseup", _stopDragWidget, true); + window.document.addEventListener("touchmove", _dragWidget, true); + window.document.addEventListener("touchend", _stopDragWidget, true); + } + $ax.legacy.SuppressBubble(event); + }; + + var _dragWidget = function(event) { + $ax.setjBrowserEvent(jQuery.Event(event)); + + var x, y; + if($.browser.msie) { + x = window.event.clientX + window.document.documentElement.scrollLeft + window.document.body.scrollLeft; + y = window.event.clientY + window.document.documentElement.scrollTop + window.document.body.scrollTop; + } else { + if(event.changedTouches) { + x = event.changedTouches[0].pageX; + y = event.changedTouches[0].pageY; + //allow scroll (defaults) if only swipe events have cases and delta x is less than 5px and not blocking scrolling + var deltaX = x - widgetDragInfo.currentX; + var target = window.document.getElementById(widgetDragInfo.widgetId); + if($ax.event.hasSyntheticEvent(widgetDragInfo.widgetId, "onDrag") || $ax.event.hasSyntheticEvent(widgetDragInfo.widgetId, "onSwipeUp") || + $ax.event.hasSyntheticEvent(widgetDragInfo.widgetId, "onSwipeDown") || (deltaX * deltaX) > 25 + || ($ax.document.configuration.preventScroll && $ax.legacy.GetScrollable(target) == window.document.body)) { + event.preventDefault(); + } + } else { + x = event.pageX; + y = event.pageY; + } + } + widgetDragInfo.xDelta = x - widgetDragInfo.currentX; + widgetDragInfo.yDelta = y - widgetDragInfo.currentY; + widgetDragInfo.lastX = widgetDragInfo.currentX; + widgetDragInfo.lastY = widgetDragInfo.currentY; + widgetDragInfo.currentX = x; + widgetDragInfo.currentY = y; + + widgetDragInfo.currentTime = (new Date()).getTime(); + + $ax.legacy.SuppressBubble(event); + + if(!widgetDragInfo.hasStarted) { + widgetDragInfo.hasStarted = true; + $ax.event.raiseSyntheticEvent(widgetDragInfo.widgetId, "onDragStart"); + + widgetDragInfo.oldBodyCursor = window.document.body.style.cursor; + window.document.body.style.cursor = 'move'; + var widget = window.document.getElementById(widgetDragInfo.widgetId); + widgetDragInfo.oldCursor = widget.style.cursor; + widget.style.cursor = 'move'; + } + + $ax.event.raiseSyntheticEvent(widgetDragInfo.widgetId, "onDrag"); + }; + + var _suppressClickAfterDrag = function(event) { + if($.browser.msie) { + window.event.srcElement.detachEvent("onclick", _suppressClickAfterDrag); + } else { + window.document.removeEventListener("click", _suppressClickAfterDrag, true); + } + $ax.legacy.SuppressBubble(event); + }; + + var _stopDragWidget = function(event) { + $ax.setjBrowserEvent(jQuery.Event(event)); + + var tg; + if($.browser.msie) { + window.document.detachEvent("onmousemove", _dragWidget); + window.document.detachEvent("onmouseup", _stopDragWidget); + tg = window.event.srcElement; + } else { + window.document.removeEventListener("mousemove", _dragWidget, true); + window.document.removeEventListener("mouseup", _stopDragWidget, true); + window.document.removeEventListener("touchmove", _dragWidget, true); + window.document.removeEventListener("touchend", _stopDragWidget, true); + tg = event.target; + } + + if(widgetDragInfo.hasStarted) { + widgetDragInfo.currentTime = (new Date()).getTime(); + $ax.event.raiseSyntheticEvent(widgetDragInfo.widgetId, "onDragDrop"); + + if($ax.globalVariableProvider.getVariableValue('totaldragx') < -30 && $ax.globalVariableProvider.getVariableValue('dragtime') < 1000) { + $ax.event.raiseSyntheticEvent(widgetDragInfo.widgetId, "onSwipeLeft"); + } + + if($ax.globalVariableProvider.getVariableValue('totaldragx') > 30 && $ax.globalVariableProvider.getVariableValue('dragtime') < 1000) { + $ax.event.raiseSyntheticEvent(widgetDragInfo.widgetId, "onSwipeRight"); + } + + var totalDragY = $ax.globalVariableProvider.getVariableValue('totaldragy'); + if(totalDragY < -30 && $ax.globalVariableProvider.getVariableValue('dragtime') < 1000) { + $ax.event.raiseSyntheticEvent(widgetDragInfo.widgetId, "onSwipeUp"); + } + + if(totalDragY > 30 && $ax.globalVariableProvider.getVariableValue('dragtime') < 1000) { + $ax.event.raiseSyntheticEvent(widgetDragInfo.widgetId, "onSwipeDown"); + } + + window.document.body.style.cursor = widgetDragInfo.oldBodyCursor; + var widget = window.document.getElementById(widgetDragInfo.widgetId); + widget.style.cursor = widgetDragInfo.oldCursor; + + if(widgetDragInfo.targetWidget == tg && !event.changedTouches) { + // suppress the click after the drag on desktop browsers + if($.browser.msie && widgetDragInfo.targetWidget) { + widgetDragInfo.targetWidget.attachEvent("onclick", _suppressClickAfterDrag); + } else { + window.document.addEventListener("click", _suppressClickAfterDrag, true); + } + } + } + + widgetDragInfo.hasStarted = false; + widgetDragInfo.movedWidgets = new Object(); + + return false; + }; + + $ax.drag.GetDragX = function() { + if(widgetDragInfo.hasStarted) return widgetDragInfo.xDelta; + return 0; + }; + + $ax.drag.GetDragY = function() { + if(widgetDragInfo.hasStarted) return widgetDragInfo.yDelta; + return 0; + }; + + $ax.drag.GetTotalDragX = function() { + if(widgetDragInfo.hasStarted) return widgetDragInfo.currentX - widgetDragInfo.cursorStartX; + return 0; + }; + + $ax.drag.GetTotalDragY = function() { + if(widgetDragInfo.hasStarted) return widgetDragInfo.currentY - widgetDragInfo.cursorStartY; + return 0; + }; + + $ax.drag.GetDragTime = function() { + if(widgetDragInfo.hasStarted) return widgetDragInfo.currentTime - widgetDragInfo.startTime; + return 600000; + }; + +// $ax.drag.GetCursorRectangles = function() { +// var rects = new Object(); +// rects.lastRect = new Rectangle($ax.lastMouseLocation.x, $ax.lastMouseLocation.y, 1, 1); +// rects.currentRect = new Rectangle($ax.mouseLocation.x, $ax.mouseLocation.y, 1, 1); +// return rects; +// }; + + // $ax.drag.GetWidgetRectangles = function(id) { + // var widget = window.document.getElementById(id); + // var rects = new Object(); + // rects.lastRect = new Rectangle($ax.legacy.getAbsoluteLeft(widget), $ax.legacy.getAbsoluteTop(widget), Number($('#' + id).css('width').replace("px", "")), Number($('#' + id).css('height').replace("px", ""))); + // rects.currentRect = rects.lastRect; + // return rects; + // }; + + // $ax.drag.IsEntering = function(movingRects, targetRects) { + // return !movingRects.lastRect.IntersectsWith(targetRects.currentRect) && movingRects.currentRect.IntersectsWith(targetRects.currentRect); + // }; + + // $ax.drag.IsLeaving = function(movingRects, targetRects) { + // return movingRects.lastRect.IntersectsWith(targetRects.currentRect) && !movingRects.currentRect.IntersectsWith(targetRects.currentRect); + // }; + + // function IsOver(movingRects, targetRects) { + // return movingRects.currentRect.IntersectsWith(targetRects.currentRect); + // } + + // function IsNotOver(movingRects, targetRects) { + // return !IsOver(movingRects, targetRects); + // } + + $ax.drag.LogMovedWidgetForDrag = function(id) { + if(widgetDragInfo.hasStarted) { + var widget = $('#' + id); + var y = Number(widget.css('top').replace("px", "")); + var x = Number(widget.css('left').replace("px", "")); + var movedWidgets = widgetDragInfo.movedWidgets; + if(!movedWidgets[id]) { + movedWidgets[id] = new Location(x, y); + } + } + }; + + var Location = function(x, y) { + this.x = x; + this.y = y; + }; + $ax.drag.location = Location; + + var Rectangle = $ax.drag.Rectangle = function(x, y, width, height) { + this.x = x; + this.y = y; + this.width = width; + this.height = height; + this.right = x + width; + this.bottom = y + height; + }; + + Rectangle.prototype.IntersectsWith = function(rect) { + if(rect.length) { + for(var i = 0; i < rect.length; i++) if(this.IntersectsWith(rect[i])) return true; + return false; + } + return this.x < rect.right && this.right > rect.x && this.y < rect.bottom && this.bottom > rect.y; + }; + + Rectangle.prototype.Move = function(x, y) { + return new Rectangle(x, y, this.width, this.height); + }; +}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/events.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/events.js" new file mode 100644 index 0000000..9b25259 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/events.js" @@ -0,0 +1,1267 @@ +// ******* Features MANAGER ******** // + +$axure.internal(function($ax) { + var _features = $ax.features = {}; + var _supports = _features.supports = {}; + _supports.touchstart = typeof window.ontouchstart !== 'undefined'; + _supports.touchmove = typeof window.ontouchmove !== 'undefined'; + _supports.touchend = typeof window.ontouchend !== 'undefined'; + + _supports.mobile = _supports.touchstart && _supports.touchend && _supports.touchmove; + // Got this from http://stackoverflow.com/questions/11381673/javascript-solution-to-detect-mobile-browser + var check = navigator.userAgent.match(/Android/i) + || navigator.userAgent.match(/webOS/i) + || navigator.userAgent.match(/iPhone/i) + || navigator.userAgent.match(/iPad/i) + || navigator.userAgent.match(/iPod/i) + || navigator.userAgent.match(/BlackBerry/i) + || navigator.userAgent.match(/Windows Phone/i); + + if(!check && _supports.mobile) { + _supports.touchstart = false; + _supports.touchmove = false; + _supports.touchend = false; + _supports.mobile = false; + } + + var _eventNames = _features.eventNames = {}; + _eventNames.mouseDownName = _supports.touchstart ? 'touchstart' : 'mousedown'; + _eventNames.mouseUpName = _supports.touchend ? 'touchend' : 'mouseup'; + _eventNames.mouseMoveName = _supports.touchmove ? 'touchmove' : 'mousemove'; +}); + +// ******* EVENT MANAGER ******** // +$axure.internal(function($ax) { + var _objectIdToEventHandlers = {}; + + var _jBrowserEvent = undefined; + $ax.setjBrowserEvent = function(event) { + _jBrowserEvent = event; + }; + + $ax.getjBrowserEvent = function() { + return _jBrowserEvent; + }; + + var _event = {}; + $ax.event = _event; + + //initilize state + _event.mouseOverObjectId = ''; + _event.mouseDownObjectId = ''; + _event.mouseOverIds = []; + + var EVENT_NAMES = ['mouseenter', 'mouseleave', 'contextmenu', 'change', 'focus', 'blur']; + + + // Tap, double tap, and touch move, or synthetic. + if(!$ax.features.supports.mobile) { + EVENT_NAMES[EVENT_NAMES.length] = 'click'; + EVENT_NAMES[EVENT_NAMES.length] = 'dblclick'; + EVENT_NAMES[EVENT_NAMES.length] = 'mousemove'; + } + + // add the event names for the touch events + EVENT_NAMES[EVENT_NAMES.length] = $ax.features.eventNames.mouseDownName; + EVENT_NAMES[EVENT_NAMES.length] = $ax.features.eventNames.mouseUpName; + + for(var i = 0; i < EVENT_NAMES.length; i++) { + var eventName = EVENT_NAMES[i]; + //we need the function here to circumvent closure modifying eventName + _event[eventName] = (function(event_Name) { + return function(elementId, fn) { + var elementIdQuery = $jobj(elementId); + var type = $ax.getTypeFromElementId(elementId); + + //we need specially track link events so we can enable and disable them along with + //their parent widgets + if(elementIdQuery.is('a')) _attachCustomObjectEvent(elementId, event_Name, fn); + //see notes below + else if($ax.IsTreeNodeObject(type)) _attachTreeNodeEvent(elementId, event_Name, fn); + else if($ax.IsButtonShape(type) && (event_Name == 'focus' || event_Name == 'blur')) { + _attachDefaultObjectEvent($jobj($ax.repeater.applySuffixToElementId(elementId, '_img')), elementId, event_Name, fn); + } else { + var inputId = $ax.INPUT(elementId); + var isInput = $jobj(inputId).length != 0; + var id = isInput && (event_Name == 'focus' || event_Name == 'blur') ? inputId : elementId; + _attachDefaultObjectEvent($jobj(id), elementId, event_Name, fn); + } + }; + })(eventName); + } + + var AXURE_TO_JQUERY_EVENT_NAMES = { + 'onMouseOver': 'mouseenter', + 'onMouseOut': 'mouseleave', + 'onContextMenu': 'contextmenu', + 'onChange': 'change', + 'onFocus': 'focus', + 'onLostFocus': 'blur' + }; + + // Tap, double tap, and touch move, or synthetic. + if(!$ax.features.supports.mobile) { + AXURE_TO_JQUERY_EVENT_NAMES.onClick = 'click'; + AXURE_TO_JQUERY_EVENT_NAMES.onDoubleClick = 'dblclick'; + AXURE_TO_JQUERY_EVENT_NAMES.onMouseMove = 'mousemove'; + } + + AXURE_TO_JQUERY_EVENT_NAMES.onMouseDown = $ax.features.eventNames.mouseDownName; + AXURE_TO_JQUERY_EVENT_NAMES.onMouseUp = $ax.features.eventNames.mouseUpName; + + var _attachEvents = function(diagramObject, elementId) { + var inputId = $ax.repeater.applySuffixToElementId(elementId, '_input'); + var id = $jobj(inputId).length ? inputId : elementId; + + for(var eventName in diagramObject.interactionMap) { + var jQueryEventName = AXURE_TO_JQUERY_EVENT_NAMES[eventName]; + if(!jQueryEventName) continue; + + _event[jQueryEventName](id, + //this is needed to escape closure + (function(axEventObject) { + return function(e) { + $ax.setjBrowserEvent(e); + _handleEvent(elementId, $ax.getEventInfoFromEvent($ax.getjBrowserEvent(), false, elementId), axEventObject); + }; + })(diagramObject.interactionMap[eventName]) + ); + } + + }; + + var _initilizeEventHandlers = function(query) { + query.filter(function(diagramObject) { + return diagramObject.interactionMap; + }).each(_attachEvents); + }; + + var preventDefaultEvents = ['OnContextMenu', 'OnKeyUp', 'OnKeyDown']; + + var _handleEvent = $ax.event.handleEvent = function(elementId, eventInfo, axEventObject, skipShowDescriptions, synthetic) { + var eventDescription = axEventObject.description; + // If you are supposed to suppress, do that right away. + if(suppressedEventStatus[eventDescription]) { + return; + } + + var currentEvent = $ax.getjBrowserEvent(); + + if(!synthetic && currentEvent && currentEvent.originalEvent && currentEvent.originalEvent.handled && !eventInfo.isMasterEvent) return; + if(!synthetic && elementId && !$ax.style.getObjVisible(elementId)) return; + + var bubble = true; + if(skipShowDescriptions || !_shouldShowCaseDescriptions(axEventObject)) { + //handle case descriptions + var caseGroups = []; + var currentCaseGroup = []; + caseGroups[0] = currentCaseGroup; + for(var i = 0; i < axEventObject.cases.length; i++) { + var currentCase = axEventObject.cases[i]; + if(currentCase.isNewIfGroup) { + currentCaseGroup = []; + caseGroups[caseGroups.length] = currentCaseGroup; + } + currentCaseGroup[currentCaseGroup.length] = currentCase; + } + + for(var i = 0; i < caseGroups.length; i++) { + bubble = _handleCaseGroup(eventInfo, caseGroups[i]) && bubble; + } + } else { + _showCaseDescriptions(elementId, eventInfo, axEventObject, synthetic); + bubble = false; + } + + // Only trigger a supression if it handled this event + if(!bubble && suppressingEvents[eventDescription]) { + suppressedEventStatus[suppressingEvents[eventDescription]] = true; + } + var repeaters = $ax.deepCopy($ax.action.repeatersToRefresh); + while($ax.action.repeatersToRefresh.length) $ax.action.repeatersToRefresh.pop(); + for(i = 0; i < repeaters.length; i++) $ax.repeater.refreshRepeater(repeaters[i], eventInfo); + + if(currentEvent && currentEvent.originalEvent) { + currentEvent.originalEvent.handled = !synthetic && !bubble && eventDescription != 'OnFocus' && eventDescription != 'OnResize'; + + // Prevent default if necessary + if(currentEvent.originalEvent.handled && preventDefaultEvents.indexOf(eventDescription) != -1) { + currentEvent.preventDefault(); + } + } + }; + + var _showCaseDescriptions = function(elementId, eventInfo, axEventObject, synthetic) { + + if(axEventObject.cases.length == 0) return true; + + var linksId = elementId + "linkBox"; + $('#' + linksId).remove(); + + var $container = $("
    "); + + if(!_isEventSimulating(axEventObject)) { + for(var i = 0; i < axEventObject.cases.length; i++) { + var $link = $(""); + $link.click(function(j) { + return function() { + var bubble = $ax.action.dispatchAction(eventInfo, axEventObject.cases[j].actions); + $('#' + linksId).remove(); + return bubble; + }; + } (i) + ); + + $container.append($link); + } + } else { + var fullDescription = axEventObject.description + ":
    "; + for(var i = 0; i < axEventObject.cases.length; i++) { + var currentCase = axEventObject.cases[i]; + fullDescription += "  " + currentCase.description.replace(/
    /g, '
      ') + ":
    "; + for(var j = 0; j < currentCase.actions.length; j++) { + fullDescription += "    " + currentCase.actions[j].description.replace(/
    /g, '
          ') + "
    "; + } + } + fullDescription = fullDescription.substring(0, fullDescription.length - 4); + + var $link = $(""); + $link.click(function() { + _handleEvent(elementId, eventInfo, axEventObject, true, synthetic); + $('#' + linksId).remove(); + return; + }); + $container.append($link); + } + $container.mouseleave(function(e) { $ax.legacy.SuppressBubble(e); }); + $('body').append($container); + _showCaseLinks(eventInfo, linksId); + }; + + var _showCaseLinks = function(eventInfo, linksId) { + var links = window.document.getElementById(linksId); + + links.style.top = eventInfo.pageY; + + var left = eventInfo.pageX; + links.style.left = left; + $ax.visibility.SetVisible(links, true); + $ax.legacy.BringToFront(linksId, true); + $ax.legacy.RefreshScreen(); + }; + + + var _shouldShowCaseDescriptions = function(axEventObject) { + if($ax.document.configuration.linkStyle == "alwaysDisplayTargets") return true; + if($ax.document.configuration.linkStyle == "neverDisplayTargets") return false; + if(axEventObject.cases.length == 0) return false; + for(var i = 0; i < axEventObject.cases.length; i++) { + if(axEventObject.cases[i].condition) return false; + } + if(axEventObject.cases.length >= 2) return true; + return false; + }; + + var _isEventSimulating = function(axEventObject) { + for(var i = 0; i < axEventObject.cases.length; i++) { + if(axEventObject.cases[i].condition) return true; + } + return false; + }; + + var _handleCaseGroup = function(eventInfo, caseGroup) { + for(var i = 0; i < caseGroup.length; i++) { + var currentCase = caseGroup[i]; + if(!currentCase.condition || _processCondition(currentCase.condition, eventInfo)) { + + $ax.action.dispatchAction(eventInfo, currentCase.actions); + return false; + } + } + return true; + }; + + var _processCondition = function(expr, eventInfo) { + return $ax.expr.evaluateExpr(expr, eventInfo); + }; + + var _attachTreeNodeEvent = function(elementId, eventName, fn) { + //we need to set the cursor here because we want to make sure that every tree node has the default + //cursor set and then it's overridden if it has a click + if(eventName == 'click') window.document.getElementById(elementId).style.cursor = 'pointer'; + + _attachCustomObjectEvent(elementId, eventName, fn); + }; + + var _attachDefaultObjectEvent = function(elementIdQuery, elementId, eventName, fn) { + var func = function() { + if(!$ax.style.IsWidgetDisabled(elementId)) return fn.apply(this, arguments); + return true; + }; + + var bind = !elementIdQuery[eventName]; + if(bind) elementIdQuery.bind(eventName, func); + else elementIdQuery[eventName](func); + }; + + var _attachCustomObjectEvent = function(elementId, eventName, fn) { + var handlers = _objectIdToEventHandlers[elementId]; + if(!handlers) _objectIdToEventHandlers[elementId] = handlers = {}; + + var fnList = handlers[eventName]; + if(!fnList) handlers[eventName] = fnList = []; + + fnList[fnList.length] = fn; + }; + + var _fireObjectEvent = function(elementId, event, originalArgs) { + var element = window.document.getElementById(elementId); + + var handlerList = _objectIdToEventHandlers[elementId] && _objectIdToEventHandlers[elementId][event]; + if(handlerList) { + for(var i = 0; i < handlerList.length; i++) handlerList[i].apply(element, originalArgs); + } + }; + + //for button shapes and images the img is focusable instead of the div to get better outlines + + $ax.event.getFocusableWidgetOrChildId = function(elementId) { + var imgId = $ax.repeater.applySuffixToElementId(elementId, '_img'); + var imgQuery = $jobj(imgId); + + var inputId = $ax.repeater.applySuffixToElementId(elementId, '_input'); + var inputQuery = $jobj(inputId); + + return imgQuery.length > 0 ? imgId : inputQuery.length > 0 ? inputId : elementId; + }; + + // key is the suppressing event, and the value is the event that is supressed + var suppressingEvents = {}; + // key is the event that will cancel the suppression, and value is the event that was being suppressed + var cancelSuppressions = {}; + // suppressed event maps to true if it is supressed + var suppressedEventStatus = {}; + + // Attempt at a generic way to supress events + var initSuppressingEvents = function(query) { + suppressingEvents['OnLongClick'] = 'OnClick'; + cancelSuppressions['onMouseDown'] = 'OnClick'; + + // Have to cancel suppressed event here. Only works for non-synthetic events currently + for(var key in cancelSuppressions) { + var eventName = AXURE_TO_JQUERY_EVENT_NAMES[key]; + if(!eventName) continue; + (function(eventName, suppressed) { + query.bind(eventName, function() { + suppressedEventStatus[suppressed] = false; + }); + })(eventName, cancelSuppressions[key]); + } + + // Otherwise see if you have the chance to cancel a supression + // if(cancelSuppressions[eventDescription]) { + // suppressedEventStatus[cancelSuppressions[eventDescription]] = false; + // } + }; + + // TODO: It may be a good idea to split this into multiple functions, or at least pull out more similar functions into private methods + var _initializeObjectEvents = function(query) { + // Must init the supressing eventing before the handlers, so that it has the ability to supress those events. + initSuppressingEvents(query); + _initilizeEventHandlers(query); + + //attach button shape alternate styles + var mouseFilter = query.filter(function(obj) { + return obj.type != 'hyperlink' && obj.type != 'dynamicPanel' && obj.type != 'richTextPanel' && + obj.type != 'repeater' && obj.type != 'checkbox' && obj.type != 'radioButton' && obj.type != 'treeNodeObject'; + }); + mouseFilter.mouseenter(function() { + var elementId = this.id; + var parent = $ax.dynamicPanelManager.parentHandlesStyles(elementId); + if(parent) { + dynamicPanelMouseOver(parent.id); + if(parent.direct) return; + } + if($.inArray(elementId, _event.mouseOverIds) != -1) return; + _event.mouseOverIds[_event.mouseOverIds.length] = elementId; + + if(elementId == _event.mouseOverObjectId) return; + _event.mouseOverObjectId = elementId; + $ax.style.SetWidgetHover(elementId, true); + var textId = $ax.style.GetTextIdFromShape(elementId); + if(textId) $ax.annotation.updateLinkLocations(textId); + }).mouseleave(function() { + var elementId = this.id; + var parent = $ax.dynamicPanelManager.parentHandlesStyles(elementId); + if(parent) { + dynamicPanelMouseLeave(parent.id); + if(parent.direct) return; + } + $ax.splice(_event.mouseOverIds, $.inArray(elementId, _event.mouseOverIds), 1); + + if(elementId == _event.mouseOverObjectId) { + _event.mouseOverObjectId = ''; + } + $ax.style.SetWidgetHover(elementId, false); + var textId = $ax.style.GetTextIdFromShape(elementId); + if(textId) $ax.annotation.updateLinkLocations(textId); + }); + + mouseFilter.bind($ax.features.eventNames.mouseDownName, function() { + var elementId = this.id; + var parent = $ax.dynamicPanelManager.parentHandlesStyles(elementId); + if(parent) { + dynamicPanelMouseDown(parent.id); + if(parent.direct) return; + } + _event.mouseDownObjectId = elementId; + + $ax.style.SetWidgetMouseDown(this.id, true); + $ax.annotation.updateLinkLocations($ax.style.GetTextIdFromShape(elementId)); + }).bind($ax.features.eventNames.mouseUpName, function() { + var elementId = this.id; + var parent = $ax.dynamicPanelManager.parentHandlesStyles(elementId); + if(parent) { + dynamicPanelMouseUp(parent.id); + if(parent.direct) return; + } + var mouseDownId = _event.mouseDownObjectId; + _event.mouseDownObjectId = ''; + if(!$ax.style.ObjHasMouseDown(elementId)) return; + + $ax.style.SetWidgetMouseDown(elementId, false); + $ax.annotation.updateLinkLocations($ax.style.GetTextIdFromShape(elementId)); + + //there used to be something we needed to make images click, because swapping out the images prevents the click + // this is a note that we can eventually delete. + }); + + // Initialize selected elements + query.filter(function(obj) { + return (obj.type == 'buttonShape' || obj.type == 'imageBox' || obj.type == 'dynamicPanel') && obj.selected; + }).selected(true); + + //initialize disabled elements + query.filter(function(obj) { + return (obj.type == 'buttonShape' || obj.type == 'imageBox' || obj.type == 'dynamicPanel') && obj.disabled; + }).enabled(false); + + // Initialize Placeholders. Right now this is text boxes and text areas. + // Also, the assuption is being made that these widgets with the placeholder, have no other styles (this may change...) + query.filter(function(obj) { + var hasPlaceholder = obj.placeholderText == '' ? true : Boolean(obj.placeholderText); + return (obj.type == 'textArea' || obj.type == 'textBox') && hasPlaceholder; + }).each(function(diagramObject, elementId) { + // This is needed to initialize the placeholder state + $jobj($ax.INPUT(elementId)).bind('keydown', function() { + var id = this.id; + var inputIndex = id.indexOf('_input'); + if(inputIndex == -1) return; + var inputId = id.substring(0, inputIndex); + + if(!$ax.placeholderManager.isActive(inputId)) return; + $ax.placeholderManager.updatePlaceholder(inputId, false, true); + }).bind('keyup', function() { + var id = this.id; + var inputIndex = id.indexOf('_input'); + if(inputIndex == -1) return; + var inputId = id.substring(0, inputIndex); + + if($ax.placeholderManager.isActive(inputId)) return; + if(!$jobj(id).val()) { + $ax.placeholderManager.updatePlaceholder(inputId, true); + $ax.placeholderManager.moveCaret(id, 0); + } + }).bind('focus', function() { + $ax.placeholderManager.moveCaret(this.id); + }).bind('mousedown', function() { + $ax.placeholderManager.moveCaret(this.id); + }).bind('mouseup', function() { + $ax.placeholderManager.moveCaret(this.id); + }).bind('blur', function() { + var id = this.id; + var inputIndex = id.indexOf('_input'); + if(inputIndex == -1) return; + var inputId = id.substring(0, inputIndex); + + if($jobj(id).val()) return; + $ax.placeholderManager.updatePlaceholder(inputId, true); + }); + + $ax.placeholderManager.registerPlaceholder(elementId, diagramObject.placeholderText, $jobj($ax.INPUT(elementId)).attr('type') == 'password'); + $ax.placeholderManager.updatePlaceholder(elementId, !($jobj($ax.repeater.applySuffixToElementId(elementId, '_input')).val())); + }); + + // Initialize assigned submit buttons + query.filter(function(dObj) { return dObj.submitButton; }).each(function(dObj, elementId) { + $('#' + elementId).keyup(function(e) { + if(e.keyCode == '13') { + var scriptId = $ax.repeater.getScriptIdFromElementId(elementId); + var path = $ax.deepCopy(dObj.submitButton.path); + path[path.length] = dObj.submitButton.id; + var itemNum = $ax.repeater.getItemIdFromElementId(elementId); + var submitId = $ax.getScriptIdFromPath(path, scriptId); + + if(itemNum && $ax.getParentRepeaterFromScriptId(submitId) == $ax.getParentRepeaterFromScriptId(scriptId)) { + submitId = $ax.repeater.createElementId(submitId, itemNum); + } + var inputId = $ax.INPUT(submitId); + if($jobj(inputId).length) submitId = inputId; + + $ax.setjBrowserEvent(e); + $ax.event.fireClick(submitId); + } + }).keydown(function(e) { + if(e.keyCode == '13') { + e.preventDefault(); + } + }); + }); + + //initialize tree node cursors to default so they will override their parent + query.filter(function(obj) { + return obj.type == 'treeNodeObject' && !(obj.interactionMap && obj.interactionMap.onClick); + }).each(function(obj, id) { + $jobj(id).css('cursor', 'default'); + }); + + //initialize widgets that are clickable to have the pointer over them when hovering + query.filter(function(obj) { + return obj.interactionMap && obj.interactionMap.onClick; + }).each(function(obj, id) { + var jobj = $jobj(id); + if(jobj) jobj.css('cursor', 'pointer'); + }); + + // TODO: not sure if we need this. It appears to be working without + //initialize panels for DynamicPanels + query.filter(function(obj) { + return (obj.type == 'dynamicPanel'); + }).$().children().each(function() { + var parts = this.id.split('_'); + var state = parts[parts.length - 1].substring(5); + if(state != 0) $ax.visibility.SetVisible(this, false); + }); + + //initialize TreeNodes + query.filter(function(obj) { + return (obj.type == 'treeNodeObject'); + }).each(function(otehnutohe, id) { + //var id = ids[index]; + var obj = $jobj(id); + if(obj.hasClass('treeroot')) return; + + var childrenId = id + '_children'; + var children = obj.children('[id="' + childrenId + '"]:first'); + if(children.length > 0) { + var plusMinusId = 'u' + (parseInt($ax.repeater.getScriptIdFromElementId(id).substring(1)) + 1); + var itemId = $ax.repeater.getItemIdFromElementId(id); + if(itemId) plusMinusId = $ax.repeater.createElementId(plusMinusId, itemId); + if(!$jobj(plusMinusId).hasClass('ax_image')) plusMinusId = ''; + $ax.tree.InitializeTreeNode(id, plusMinusId, childrenId); + } + obj.click(function() { $ax.tree.SelectTreeNode(id, true); }); + }); + + //initialize submenus + query.filter(function(obj) { + return (obj.type == 'menuObject'); + }).each(function(obj, elementId) { + var jobj = $jobj(elementId); + if(jobj.hasClass('sub_menu')) { + var tableCellElementId = $ax.getElementIdFromPath([obj.parentCellId], { relativeTo: elementId }); + $ax.menu.InitializeSubmenu(elementId, tableCellElementId); + } + }); + + + // Attach handles for dynamic panels that propagate styles to inner items. + query.filter(function(obj) { + return obj.type == 'dynamicPanel' && obj.propagate; + }).mouseenter(function() { + var elementId = this.id; + dynamicPanelMouseOver(elementId); + }).mouseleave(function() { + var elementId = this.id; + dynamicPanelMouseLeave(elementId); + }).bind($ax.features.eventNames.mouseDownName, function() { + var elementId = this.id; + dynamicPanelMouseDown(elementId); + }).bind($ax.features.eventNames.mouseUpName, function() { + var elementId = this.id; + dynamicPanelMouseUp(elementId); + }); + + // These are the dynamic panel functions for propagating rollover styles and mouse down styles to inner objects + var dynamicPanelMouseOver = function(elementId, fromChild) { + var parent = $ax.dynamicPanelManager.parentHandlesStyles(elementId); + if(parent) { + dynamicPanelMouseOver(parent.id, true); + if(parent.direct) return; + } + if($.inArray(elementId, _event.mouseOverIds) != -1) return; + // If this event is coming from a child, don't mark that it's actually entered. + // Only mark that this has been entered if this event has naturally been triggered. (For reason see mouseleave) + if(!fromChild) _event.mouseOverIds[_event.mouseOverIds.length] = elementId; + if(elementId == _event.mouseOverObjectId) return; + _event.mouseOverObjectId = elementId; + $ax.dynamicPanelManager.propagateMouseOver(elementId, true); + }; + var dynamicPanelMouseLeave = function(elementId, fromChild) { + var parent = $ax.dynamicPanelManager.parentHandlesStyles(elementId); + if(parent) { + dynamicPanelMouseLeave(parent.id, true); + if(parent.direct) return; + } + var index = $.inArray(elementId, _event.mouseOverIds); + // If index != -1, this has been natuarally entered. If naturally entered, then leaving child should not trigger leaving, + // but instead wait for natural mouse leave. If natural mouse enter never triggered, natural mouse leave won't so do this now. + if((index != -1) && fromChild) return; + $ax.splice(_event.mouseOverIds, index, 1); + + if(elementId == _event.mouseOverObjectId) { + _event.mouseOverObjectId = ''; + } + $ax.dynamicPanelManager.propagateMouseOver(elementId, false); + }; + var dynamicPanelMouseDown = function(elementId) { + var parent = $ax.dynamicPanelManager.parentHandlesStyles(elementId); + if(parent) { + dynamicPanelMouseDown(parent.id); + if(parent.direct) return; + } + _event.mouseDownObjectId = elementId; + $ax.dynamicPanelManager.propagateMouseDown(elementId, true); + }; + var dynamicPanelMouseUp = function(elementId) { + var parent = $ax.dynamicPanelManager.parentHandlesStyles(elementId); + if(parent) { + dynamicPanelMouseUp(parent.id); + if(parent.direct) return; + } + _event.mouseDownObjectId = ''; + $ax.dynamicPanelManager.propagateMouseDown(elementId, false); + }; + + //attach handlers for button shape and tree node mouse over styles + // TODO: Can this really be removed? Trees seem to work with out (the generic hover case works for it). + // query.filter(function(obj) { + // return obj.type == 'buttonShape' && obj.parent.type == 'treeNodeObject' && + // obj.parent.style && obj.parent.style.stateStyles && + // obj.parent.style.stateStyles.mouseOver; + // }).mouseenter(function() { + // $ax.style.SetWidgetHover(this.id, true); + // }).mouseleave(function() { + // $ax.style.SetWidgetHover(this.id, false); + // }); + + //handle treeNodeObject events and prevent them from bubbling up. this is necessary because otherwise + //both a sub menu and it's parent would get a click + query.filter(function(obj) { + return obj.type == 'treeNodeObject'; + }).click(function() { + //todo -- this was bubbling, but then selecting a child tree node would bubble and select the parent (don't know if there is a better way) + _fireObjectEvent(this.id, 'click', arguments); + return false; + }).$().each(function() { + if(!this.style.cursor) { + this.style.cursor = 'default'; + } + }); + + // Synthetic events + + // Attach dynamic panel synthetic drag and swipe events + query.filter(function(diagramObject) { + if(diagramObject.type != "dynamicPanel") return false; + var map = diagramObject.interactionMap; + return map && ( + map.onDragStart || map.onDrag || + map.onDragDrop || map.onSwipeLeft || map.onSwipeRight || map.onSwipeUp || map.onSwipeDown); + }).each(function(diagramObject, elementId) { + $('#' + elementId) + .bind($ax.features.eventNames.mouseDownName, function(e) { $ax.drag.StartDragWidget(e.originalEvent, elementId); }); + }); + + // Attach dynamic panel synthetic scroll event + query.filter(function(diagramObject) { + if(diagramObject.type != 'dynamicPanel') return false; + var map = diagramObject.interactionMap; + return map && map.onScroll; + }).each(function(diagramObject, elementId) { + var diagrams = diagramObject.diagrams; + for(var i = 0; i < diagrams.length; i++) { + var panelId = $ax.repeater.applySuffixToElementId(elementId, '_state' + i); + (function(id) { + _attachDefaultObjectEvent($('#' + id), elementId, 'scroll', function(e) { + $ax.setjBrowserEvent(e); + _handleEvent(elementId, $ax.getEventInfoFromEvent($ax.getjBrowserEvent(), false, elementId), diagramObject.interactionMap.onScroll); + }); + })(panelId); + } + }); + + // Attach synthetic hover event + query.filter(function(diagramObject) { + var map = diagramObject.interactionMap; + return map && map.onMouseHover; + }).each(function(diagramObject, elementId) { + var MIN_HOLD_TIME = 1000; + + // So when the timeout fires, you know whether it is the same mouseenter that is active or not. + var mouseCount = 0; + // Update eventInfo regularly, so position is accurate. + var eventInfo; + + $('#' + elementId).mouseenter(function(e) { + $ax.setjBrowserEvent(e); + eventInfo = $ax.getEventInfoFromEvent($ax.getjBrowserEvent(), false, elementId); + (function(currCount) { + window.setTimeout(function() { + if(currCount == mouseCount) _raiseSyntheticEvent(elementId, 'onMouseHover', false, eventInfo, true); + }, MIN_HOLD_TIME); + })(mouseCount); + }).mouseleave(function(e) { + $ax.setjBrowserEvent(e); + mouseCount++; + }).mousemove(function(e) { + $ax.setjBrowserEvent(e); + eventInfo = $ax.getEventInfoFromEvent($ax.getjBrowserEvent(), false, elementId); + }); + }); + + // Attach synthetic tap and hold event. + query.filter(function(diagramObject) { + var map = diagramObject.interactionMap; + return map && map.onLongClick; + }).each(function(diagramObject, elementId) { + var MIN_HOLD_TIME = 750; + + // So when the timeout fires, you know whether it is the same mousedown that is active or not. + var mouseCount = 0; + + $('#' + elementId).bind($ax.features.eventNames.mouseDownName, function(e) { + (function(currCount) { + $ax.setjBrowserEvent(e); + var eventInfo = $ax.getEventInfoFromEvent($ax.getjBrowserEvent(), false, elementId); + window.setTimeout(function() { + if(currCount == mouseCount) _raiseSyntheticEvent(elementId, 'onLongClick', false, eventInfo, true); + }, MIN_HOLD_TIME); + if(e.preventDefault) e.preventDefault(); + })(mouseCount); + }).bind($ax.features.eventNames.mouseUpName, function(e) { + $ax.setjBrowserEvent(e); + mouseCount++; + }); + }); + + // Attach synthetic onSelectionChange event to droplist and listbox elements + query.filter(function(diagramObject) { + return $ax.event.HasSelectionChanged(diagramObject); + }).each(function(diagramObject, elementId) { + $('#' + elementId).bind('change', function(e) { + $ax.setjBrowserEvent(e); + _raiseSyntheticEvent(elementId, 'onSelectionChange'); + }); + }); + + // Highjack key up and key down to keep track of state of keyboard. + _event.initKeyEvents(function(initKeydown) { + query.filter('*').each(function(diagramObject, elementId) { + initKeydown('#' + elementId, elementId); + }); + }, function(initKeyup) { + query.filter('*').each(function(diagramObject, elementId) { + initKeyup('#' + elementId, elementId); + }); + }); + + // Attach synthetic onTextChange event to textbox and textarea elements + query.filter(function(diagramObject) { + return $ax.event.HasTextChanged(diagramObject); + }).each(function(diagramObject, elementId) { + var element = $('#' + elementId); + $ax.updateElementText(elementId, element.val()); + //Key down needed because when holding a key down, key up only fires once, but keydown fires repeatedly. + //Key up because last mouse down will only show the state before the last character. + element.bind('keydown', function(e) { + $ax.setjBrowserEvent(e); + $ax.event.TryFireTextChanged(elementId); + }).bind('keyup', function(e) { + $ax.setjBrowserEvent(e); + $ax.event.TryFireTextChanged(elementId); + }); + //.change(function() { $ax.event.TryFireTextChanged(elementId); }); + }); + + // Attach synthetic onCheckedChange event to radiobutton and checkbox elements + query.filter(function(diagramObject) { + return $ax.event.HasCheckedChanged(diagramObject); + }).each(function(diagramObject, elementId) { + $('#' + elementId).bind('change', function(e) { + $ax.setjBrowserEvent(e); + _tryFireCheckedChanged(elementId); + }); + }); + + // Mobile events + _event.initMobileEvents(function(initTap) { + query.filter(function(diagramObject) { + var map = diagramObject.interactionMap; + return map && (map.onClick || map.onDoubleClick); + }).each(function(diagramObject, elementId) { + initTap('#' + elementId, elementId); + }); + }, function(initMove) { + query.filter(function(diagramObject) { + var map = diagramObject.interactionMap; + return map && map.onMouseMove; + }).each(function(diagramObject, elementId) { + initMove('#' + elementId, elementId); + }); + }); + + //attach link alternate styles + query.filter(function(obj) { + return obj.type == 'hyperlink'; + }).mouseenter(function() { + var elementId = this.id; + if(_event.mouseOverIds.indexOf(elementId) != -1) return true; + _event.mouseOverIds[_event.mouseOverIds.length] = elementId; + var mouseOverObjectId = _event.mouseOverObjectId; + if(mouseOverObjectId && $ax.style.IsWidgetDisabled(mouseOverObjectId)) return true; + + $ax.style.SetLinkHover(elementId); + + var bubble = _fireObjectEvent(elementId, 'mouseenter', arguments); + + $ax.annotation.updateLinkLocations($ax.style.GetTextIdFromLink(elementId)); + return bubble; + }).mouseleave(function() { + var elementId = this.id; + $ax.splice(_event.mouseOverIds, _event.mouseOverIds.indexOf(elementId), 1); + var mouseOverObjectId = _event.mouseOverObjectId; + if(mouseOverObjectId && $ax.style.IsWidgetDisabled(mouseOverObjectId)) return true; + + $ax.style.SetLinkNotHover(elementId); + + var bubble = _fireObjectEvent(elementId, 'mouseleave', arguments); + + $ax.annotation.updateLinkLocations($ax.style.GetTextIdFromLink(elementId)); + return bubble; + }).bind($ax.features.eventNames.mouseDownName, function() { + var elementId = this.id; + var mouseOverObjectId = _event.mouseOverObjectId; + if($ax.style.IsWidgetDisabled(mouseOverObjectId)) return undefined; + + if(mouseOverObjectId) $ax.style.SetWidgetMouseDown(mouseOverObjectId, true); + $ax.style.SetLinkMouseDown(elementId); + + $ax.annotation.updateLinkLocations($ax.style.GetTextIdFromLink(elementId)); + + return false; + }).bind($ax.features.eventNames.mouseUpName, function() { + var elementId = this.id; + var mouseOverObjectId = _event.mouseOverObjectId; + if(mouseOverObjectId && $ax.style.IsWidgetDisabled(mouseOverObjectId)) return; + + if(mouseOverObjectId) $ax.style.SetWidgetMouseDown(mouseOverObjectId, false); + $ax.style.SetLinkNotMouseDown(elementId); + + $ax.annotation.updateLinkLocations($ax.style.GetTextIdFromLink(elementId)); + + }).click(function() { + var elementId = this.id; + var mouseOverObjectId = _event.mouseOverObjectId; + if(mouseOverObjectId && $ax.style.IsWidgetDisabled(mouseOverObjectId)) return undefined; + + return _fireObjectEvent(elementId, 'click', arguments); + }); + }; + $ax.initializeObjectEvents = _initializeObjectEvents; + + // Handle key up and key down events + (function() { + var _keyState = {}; + _keyState.ctrl = false; + _keyState.alt = false; + _keyState.shift = false; + _keyState.keyCode = 0; + $ax.event.keyState = function() { + return $ax.deepCopy(_keyState); + }; + + var modifierCodes = [16, 17, 18]; + $ax.event.initKeyEvents = function(handleKeydown, handleKeyup) { + handleKeydown(function(query, elementId) { + $(query).keydown(function(e) { + _keyState.ctrl = e.ctrlKey; + + _keyState.alt = e.altKey; + + _keyState.shift = e.shiftKey; + + // If a modifier was pressed, then don't set the keyCode; + if(modifierCodes.indexOf(e.keyCode) == -1) _keyState.keyCode = e.keyCode; + + $ax.setjBrowserEvent(e); + _raiseSyntheticEvent(elementId, 'onKeyDown', false, undefined, true); + }); + }); + handleKeyup(function(query, elementId) { + $(query).keyup(function(e) { + $ax.setjBrowserEvent(e); + // Fire event before updating modifiers. + _raiseSyntheticEvent(elementId, 'onKeyUp', false, undefined, true); + + _keyState.ctrl = e.ctrlKey; + + _keyState.alt = e.altKey; + + _keyState.shift = e.shiftKey; + + // If a non-modifier was lifted, clear the keycode + if(modifierCodes.indexOf(e.keyCode) == -1) _keyState.keyCode = 0; + }); + }); + }; + })(); + + // Handle adding mobile events + (function() { + // NOTE: Multi touch is NOT handled currently. + var CLICK_THRESHOLD_PX = 25; + var CLICK_THRESHOLD_PX_SQ = CLICK_THRESHOLD_PX * CLICK_THRESHOLD_PX; + var DBLCLICK_THRESHOLD_MS = 500; + + // Location in page cooridinates + var tapDownLoc; + var lastClickEventTime; + + _event.initMobileEvents = function(handleTap, handleMove) { + if(!$ax.features.supports.mobile) return; + + // Handle touch start + handleTap(function(query, elementId) { + $(query).bind('touchstart', function(e) { + // We do NOT support multiple touches. This isn't necessarily the touch we want. + var touch = e.originalEvent && e.originalEvent.changedTouches && e.originalEvent.changedTouches[0]; + if(!touch) return; + + tapDownLoc = [touch.pageX, touch.pageY]; + + var time = (new Date()).getTime(); + if(time - lastClickEventTime < DBLCLICK_THRESHOLD_MS) { + var dObj = elementId === '' ? $ax.pageData.page : $ax.getObjectFromElementId(elementId); + var axEventObject = dObj && dObj.interactionMap && dObj.interactionMap['onDoubleClick']; + if(axEventObject) e.preventDefault(); //for Chrome on Android + } + }); + + $(query).bind('touchend', function(e) { + var touch = e.originalEvent && e.originalEvent.changedTouches && e.originalEvent.changedTouches[0]; + if(!touch) return; + + var tapUpLoc = [touch.pageX, touch.pageY]; + var xDiff = tapUpLoc[0] - tapDownLoc[0]; + var yDiff = tapUpLoc[1] - tapDownLoc[1]; + + if((xDiff * xDiff + yDiff * yDiff) < CLICK_THRESHOLD_PX_SQ) { + $ax.setjBrowserEvent(e); + _raiseSyntheticEvent(elementId, 'onClick', false, undefined, true); + + var time = (new Date()).getTime(); + if(time - lastClickEventTime < DBLCLICK_THRESHOLD_MS) { + _raiseSyntheticEvent(elementId, 'onDoubleClick', false, undefined, true); + if(e.originalEvent && e.originalEvent.handled) e.preventDefault(); //for iOS + } + lastClickEventTime = time; + } + }); + }); + + // Handles touch move + handleMove(function(query, elementId) { + $(query).bind('touchmove', function(e) { + $ax.setjBrowserEvent(e); + _raiseSyntheticEvent(elementId, 'onMouseMove', false, undefined, true); + if(e.originalEvent && e.originalEvent.handled) e.preventDefault(); + }); + }); + }; + })(); + + // Handle adding device independent click events to non-widgets + (function() { + var CLICK_THRESHOLD_PX = 25; + var CLICK_THRESHOLD_PX_SQ = CLICK_THRESHOLD_PX * CLICK_THRESHOLD_PX; + + // Location in page cooridinates + var tapDownLoc; + + _event.attachClick = function(query, clickHandler) { + if(!$ax.features.supports.mobile) { + query.click(clickHandler); + return; + } + + $(query).bind('touchstart', function(e) { + // We do NOT support multiple touches. This isn't necessarily the touch we want. + var touch = e.originalEvent && e.originalEvent.changedTouches && e.originalEvent.changedTouches[0]; + if(!touch) return; + + tapDownLoc = [touch.pageX, touch.pageY]; + }); + + $(query).bind('touchend', function(e) { + var touch = e.originalEvent && e.originalEvent.changedTouches && e.originalEvent.changedTouches[0]; + if(!touch) return; + + var tapUpLoc = [touch.pageX, touch.pageY]; + var xDiff = tapUpLoc[0] - tapDownLoc[0]; + var yDiff = tapUpLoc[1] - tapDownLoc[1]; + + if((xDiff * xDiff + yDiff * yDiff) < CLICK_THRESHOLD_PX_SQ) { + clickHandler(); + } + }); + }; + })(); + + // Handle firing device independent click events on widgets + (function() { + _event.fireClick = function(elementId) { + if(!$ax.features.supports.mobile) { + $('#' + elementId).click(); + return; + } + _raiseSyntheticEvent(elementId, 'onClick', false, undefined, true); + }; + })(); + + var _mouseLocation = $ax.mouseLocation = { x: 0, y: 0 }; + var _lastmouseLocation = $ax.lastMouseLocation = { x: 0, y: 0 }; + + var _updateMouseLocation = function(e, end) { + if(!e) return; + + if(e.type != 'mousemove' && e.type != 'touchstart' && e.type != 'touchmove' && e.type != 'touchend') return; + + var newX; + var newY; + if($.browser.msie) { + newX = e.clientX + $('html').scrollLeft(); + newY = e.clientY + $('html').scrollTop(); + } else { + newX = e.pageX; + newY = e.pageY; + } + var body = $('body'); + if(body.css('position') == 'relative') newX = Math.round(newX - Number(body.css('left').replace('px', '')) - Math.max(0, ($(window).width() - body.width()) / 2)); + + if(_mouseLocation.x == newX && _mouseLocation.y == newY) return; + + _lastmouseLocation.x = _mouseLocation.x; + _lastmouseLocation.y = _mouseLocation.y; + _mouseLocation.x = newX; + _mouseLocation.y = newY; + + $ax.geometry.tick(_mouseLocation.x, _mouseLocation.y, end); + }; + _event.updateMouseLocation = _updateMouseLocation; + + var _raiseSyntheticEvent = function(elementId, eventName, skipShowDescription, eventInfo, nonSynthetic) { + // Empty string used when this is an event directly on the page. + var dObj = elementId === '' ? $ax.pageData.page : $ax.getObjectFromElementId(elementId); + var axEventObject = dObj && dObj.interactionMap && dObj.interactionMap[eventName]; + if(!axEventObject) return; + + eventInfo = eventInfo || $ax.getEventInfoFromEvent($ax.getjBrowserEvent(), skipShowDescription, elementId); + _handleEvent(elementId, eventInfo, axEventObject, false, !nonSynthetic); + }; + $ax.event.raiseSyntheticEvent = _raiseSyntheticEvent; + + var _hasSyntheticEvent = function(scriptId, eventName) { + var dObj = $ax.getObjectFromScriptId(scriptId); + var axEventObject = dObj && dObj.interactionMap && dObj.interactionMap[eventName]; + return Boolean(axEventObject); + }; + $ax.event.hasSyntheticEvent = _hasSyntheticEvent; + + var _initialize = function() { + $ax.repeater.load(); + + // Make sure key events for page are initialized first. That way they will update the value of key pressed before any other events occur. + _event.initKeyEvents(function(initKeydown) { initKeydown(window, ''); }, function(initKeyup) { initKeyup(window, ''); }); + _initializeObjectEvents($ax('*')); + + //finally, process the pageload + _pageLoad(); + // _loadDynamicPanelsAndMasters(); + // $ax.repeater.init(); + + // and wipe out the basic links. + $('.basiclink').click(function() { + return false; + }); + }; + _event.initialize = _initialize; + + $ax.event.HasTextChanged = function(diagramObject) { + if(diagramObject.type != 'textBox' && diagramObject.type != 'textArea') return false; + var map = diagramObject.interactionMap; + return map && map.onTextChange; + }; + + $ax.event.TryFireTextChanged = function(elementId) { + var query = $jobj($ax.repeater.applySuffixToElementId(elementId, '_input')); + if(!$ax.hasElementTextChanged(elementId, query.val())) return; + $ax.updateElementText(elementId, query.val()); + + $ax.event.raiseSyntheticEvent(elementId, 'onTextChange'); + }; + + $ax.event.HasSelectionChanged = function(diagramObject) { + if(diagramObject.type != 'listBox' && diagramObject.type != 'comboBox') return false; + var map = diagramObject.interactionMap; + return map && map.onSelectionChange; + }; + + $ax.event.HasCheckedChanged = function(diagramObject) { + if(diagramObject.type != 'checkbox' && diagramObject.type != 'radioButton') return false; + var map = diagramObject.interactionMap; + return map && map.onCheckedChange; + }; + + var _tryFireCheckedChanged = function(elementId) { + var isRadio = $obj(elementId).type == 'radioButton'; + if(isRadio) { + var last = $ax.updateRadioButtonSelected($('#' + elementId).attr('name'), elementId); + + // If no change, this should not fire + if(last == elementId) return; + + // Initially selecting one, last may be undefined + if(last) $ax.event.raiseSyntheticEvent(last, 'onCheckedChange'); + } + + $ax.event.raiseSyntheticEvent(elementId, 'onCheckedChange'); + }; + + var _loadDynamicPanelsAndMasters = function(objects, path, itemId) { + fireEventThroughContainers('onLoad', objects, true, ['page', 'referenceDiagramObject', 'dynamicPanel'], ['page', 'referenceDiagramObject', 'dynamicPanel', 'repeater'], path, itemId); + }; + $ax.loadDynamicPanelsAndMasters = _loadDynamicPanelsAndMasters; + + var _viewChangePageAndMasters = function() { + fireEventThroughContainers('onAdaptiveViewChange', undefined, true, ['page', 'referenceDiagramObject', 'dynamicPanel'], ['page', 'referenceDiagramObject']); + $axure.messageCenter.postMessage('adaptiveViewChange', $ax.adaptive.currentViewId); + }; + $ax.viewChangePageAndMasters = _viewChangePageAndMasters; + + // Filters include page, referenceDiagramObject, dynamicPanel, and repeater. + var fireEventThroughContainers = function(eventName, objects, synthetic, searchFilter, callFilter, path, itemId) { + // TODO: may want to pass in this as a parameter. At that point, may want to convert some of them to an option parameter. For now this is the only case + var skipShowDescription = eventName == 'onLoad'; + + // If objects undefined, load page + if(!objects) { + if(callFilter.indexOf('page') != -1) { + var map = $ax.pageData.page.interactionMap; + var pageEventInfo = $ax.getEventInfoFromEvent($ax.getjBrowserEvent(), skipShowDescription, ''); + var pageEvent = map && map[eventName]; + if(pageEvent) _handleEvent('', pageEventInfo, pageEvent, skipShowDescription, synthetic); + } + if(searchFilter.indexOf('page') != -1) fireEventThroughContainers(eventName, $ax.pageData.page.diagram.objects, synthetic, searchFilter, callFilter); + return; + } + + if(!path) path = []; + + var pathCopy = []; + for(var j = 0; j < path.length; j++) pathCopy[j] = path[j]; + + for(var i = 0; i < objects.length; i++) { + var obj = objects[i]; + if(obj.type != 'referenceDiagramObject' && obj.type != 'dynamicPanel' && obj.type != 'repeater') continue; + + pathCopy[path.length] = obj.id; + var objId = $ax.getScriptIdFromPath(pathCopy); + objId = $ax.repeater.createElementId(objId, itemId); + + if(obj.type == 'referenceDiagramObject') { + if(callFilter.indexOf('referenceDiagramObject') != -1) { + var eventInfo = $ax.getEventInfoFromEvent($ax.getjBrowserEvent(), skipShowDescription, objId); + eventInfo.isMasterEvent = true; + var axEvent = $ax.pageData.masters[obj.masterId].interactionMap[eventName]; + if(axEvent) _handleEvent(objId, eventInfo, axEvent, skipShowDescription, synthetic); + } + if(searchFilter.indexOf('referenceDiagramObject') != -1) fireEventThroughContainers(eventName, $ax.pageData.masters[obj.masterId].diagram.objects, synthetic, searchFilter, callFilter, pathCopy, itemId); + } else if(obj.type == 'dynamicPanel') { + if(callFilter.indexOf('dynamicPanel') != -1) $ax.event.raiseSyntheticEvent(objId, eventName, skipShowDescription, undefined, !synthetic); + + if(searchFilter.indexOf('dynamicPanel') != -1) { + var diagrams = obj.diagrams; + for(var j = 0; j < diagrams.length; j++) { + fireEventThroughContainers(eventName, diagrams[j].objects, synthetic, searchFilter, callFilter, path, itemId); + } + } + } else if(obj.type == 'repeater') { + // TODO: possible an option for repeater item? Now fires overall for the repeater + if(callFilter.indexOf('repeater') != -1) $ax.event.raiseSyntheticEvent(objId, eventName, skipShowDescription, undefined, !synthetic); + if(searchFilter.indexOf('repeater') != -1) { + var itemIds = $ax.getItemIdsForRepeater(objId); + for(var j = 0; j < itemIds.length; j++) { + fireEventThroughContainers(eventName, obj.objects, synthetic, searchFilter, callFilter, path, itemIds[j]); + } + } + } + } + }; + + // FOCUS stuff + (function() { + + })(); + + + + var _pageLoad = function() { + // Map of axure event names to pair of what it should attach to, and what the jquery event name is. + var PAGE_AXURE_TO_JQUERY_EVENT_NAMES = { + 'onScroll': [window, 'scroll'], + //'onResize': [window, 'resize'], + 'onContextMenu': [window, 'contextmenu'] + }; + if(!$ax.features.supports.mobile) { + PAGE_AXURE_TO_JQUERY_EVENT_NAMES.onClick = ['html', 'click']; + PAGE_AXURE_TO_JQUERY_EVENT_NAMES.onDoubleClick = ['html', 'dblclick']; + PAGE_AXURE_TO_JQUERY_EVENT_NAMES.onMouseMove = ['html', 'mousemove']; + } else { + _event.initMobileEvents(function(initTap) { initTap(window, ''); }, function(initMove) { initMove(window, ''); }); + $(window).bind($ax.features.eventNames.mouseDownName, _updateMouseLocation); + $(window).bind($ax.features.eventNames.mouseUpName, function(e) { _updateMouseLocation(e, true); }); + } + $(window).bind($ax.features.eventNames.mouseMoveName, _updateMouseLocation); + $(window).scroll($ax.flyoutManager.reregisterAllFlyouts); + + for(key in PAGE_AXURE_TO_JQUERY_EVENT_NAMES) { + if(!PAGE_AXURE_TO_JQUERY_EVENT_NAMES.hasOwnProperty(key)) continue; + (function(axureName) { + var jqueryEventNamePair = PAGE_AXURE_TO_JQUERY_EVENT_NAMES[axureName]; + $(jqueryEventNamePair[0])[jqueryEventNamePair[1]](function(e) { + $ax.setjBrowserEvent(e); + return fireEventThroughContainers(axureName, undefined, false, ['page', 'referenceDiagramObject', 'dynamicPanel', 'repeater'], ['page', 'referenceDiagramObject']); + }); + })(key); + } + + $axure.resize(function(e) { + $ax.setjBrowserEvent(e); + return fireEventThroughContainers('onResize', undefined, false, ['page', 'referenceDiagramObject', 'dynamicPanel', 'repeater'], ['page', 'referenceDiagramObject']); + }); + }; + _event.pageLoad = _pageLoad; + + +}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/expr.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/expr.js" new file mode 100644 index 0000000..721fbbe --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/expr.js" @@ -0,0 +1,457 @@ +// ******* Expr MANAGER ******** // +$axure.internal(function($ax) { + var _expr = $ax.expr = {}; + var _binOpHandlers = { + '&&': function(left, right) { return $ax.getBool(left) && $ax.getBool(right); }, + '||': function(left, right) { return $ax.getBool(left) || $ax.getBool(right); }, + '==': function(left, right) { return isEqual(left, right); }, + '!=': function(left, right) { return !isEqual(left, right); }, + '>': function(left, right) { return left > Number(right); }, + '<': function(left, right) { return left < Number(right); }, + '>=': function(left, right) { return left >= Number(right); }, + '<=': function(left, right) { return left <= Number(right); } + }; + + var isEqual = function(left, right) { + if(left instanceof Object && right instanceof Object) { + var prop; + // Go through all of lefts properties and compare them to rights. + for(prop in left) { + if(!left.hasOwnProperty(prop)) continue; + // If left has a property that the right doesn't they are not equal. + if(!right.hasOwnProperty(prop)) return false; + // If any of their properties are not equal, they are not equal. + if(!isEqual(left[prop], right[prop])) return false; + } + + for(prop in right) { + // final check to make sure right doesn't have some extra properties that make them not equal. + if(left.hasOwnProperty(prop) != right.hasOwnProperty(prop)) return false; + } + + return true; + } + return $ax.getBool(left) == $ax.getBool(right); + }; + + var _exprHandlers = {}; + _exprHandlers.array = function(expr, eventInfo) { + var returnVal = []; + for(var i = 0; i < expr.items.length; i++) { + returnVal[returnVal.length] = _evaluateExpr(expr.items[i], eventInfo); + } + return returnVal; + }; + + _exprHandlers.binaryOp = function(expr, eventInfo) { + var left = expr.leftExpr && _evaluateExpr(expr.leftExpr, eventInfo); + var right = expr.rightExpr && _evaluateExpr(expr.rightExpr, eventInfo); + + if(left == undefined || right == undefined) return false; + return _binOpHandlers[expr.op](left, right); + }; + + _exprHandlers.block = function(expr, eventInfo) { + var subExprs = expr.subExprs; + for(var i = 0; i < subExprs.length; i++) { + _evaluateExpr(subExprs[i], eventInfo); //ignore the result + } + }; + + _exprHandlers.booleanLiteral = function(expr) { + return expr.value; + }; + + _exprHandlers.nullLiteral = function() { return null; }; + + _exprHandlers.pathLiteral = function(expr, eventInfo) { + if(expr.isThis) return [eventInfo.srcElement]; + if(expr.isFocused && window.lastFocusedControl) { + window.lastFocusedControl.focus(); + return [window.lastFocusedControl.getAttribute('id')]; + } + if(expr.isTarget) return [eventInfo.targetElement]; + + return $ax.getElementIdsFromPath(expr.value, eventInfo); + }; + + _exprHandlers.panelDiagramLiteral = function(expr, eventInfo) { + var elementIds = $ax.getElementIdsFromPath(expr.panelPath, eventInfo); + var elementIdsWithSuffix = []; + var suffix = '_state' + expr.panelIndex; + for(var i = 0; i < elementIds.length; i++) { + elementIdsWithSuffix[i] = $ax.repeater.applySuffixToElementId(elementIds[i], suffix); + } + return $jobj(elementIdsWithSuffix).data('label'); + }; + + _exprHandlers.fcall = function(expr, eventInfo) { + var oldTarget = eventInfo.targetElement; + var targets = []; + var fcallArgs = []; + var exprArgs = expr.arguments; + for(var i = 0; i < expr.arguments.length; i++) { + var exprArg = exprArgs[i]; + var fcallArg = ''; + if(targets.length) { + for(var j = 0; j < targets.length; j++) { + eventInfo.targetElement = targets[j]; + fcallArgs[j][i] = _evaluateExpr(exprArg, eventInfo); + } + } else { + fcallArg = _evaluateExpr(exprArg, eventInfo); + fcallArgs[i] = fcallArg; + } + + // We do support null exprArgs... + // TODO: This makes 2 assumptions that may change in the future. 1. The pathLiteral is the always the first arg. 2. there is always only 1 pathLiteral + if(exprArg && exprArg.exprType == 'pathLiteral') { + targets = fcallArg; + + // fcallArgs is now an array of an array of args + for(j = 0; j < targets.length; j++) fcallArgs[j] = [[fcallArg[j]]]; + } + } + + // we want to preserve the target element from outside this function. + eventInfo.targetElement = oldTarget; + + var retval = ''; + if(targets.length) { + // Go backwards so retval is the first item. + for(i = targets.length - 1; i >= 0; i--) { + var args = fcallArgs[i]; + // Add event info to the end + args[args.length] = eventInfo; + retval = _exprFunctions[expr.functionName].apply(this, args); + } + } else fcallArgs[fcallArgs.length] = eventInfo; + return targets.length ? retval : _exprFunctions[expr.functionName].apply(this, fcallArgs); + }; + + _exprHandlers.globalVariableLiteral = function(expr) { + return expr.variableName; + }; + + _exprHandlers.keyPressLiteral = function(expr) { + var keyInfo = {}; + keyInfo.keyCode = expr.keyCode; + keyInfo.ctrl = expr.ctrl; + keyInfo.alt = expr.alt; + keyInfo.shift = expr.shift; + + return keyInfo; + }; + + _exprHandlers.adaptiveViewLiteral = function(expr) { + return expr.id; + }; + + var _substituteSTOs = function(expr, eventInfo) { + //first evaluate the local variables + var scope = {}; + for(var varName in expr.localVariables) { + scope[varName] = $ax.expr.evaluateExpr(expr.localVariables[varName], eventInfo); + } + + // TODO: [ben] Date and data object (obj with info for url or image) both need to return non-strings. + var i = 0; + var retval; + var retvalString = expr.value.replace(/\[\[(?!\[)(.*?)\]\](?=\]*)/g, function(match) { + var sto = expr.stos[i++]; + if(sto.sto == 'error') return match; + try { + var result = $ax.evaluateSTO(sto, scope, eventInfo); + } catch(e) { + return match; + } + + if((result instanceof Object) && i == 1 && expr.value.substring(0, 2) == '[[' && + expr.value.substring(expr.value.length - 2) == ']]') { + // If the result was an object, this was the first result, and the whole thing was this expresion. + retval = result; + } + return ((result instanceof Object) && (result.label || result.text)) || result; + }); + // If more than one group returned, the object is not valid + if(i != 1) retval = false; + return retval || retvalString; + }; + + _exprHandlers.htmlLiteral = function(expr, eventInfo) { + return _substituteSTOs(expr, eventInfo); + }; + + _exprHandlers.stringLiteral = function(expr, eventInfo) { + return _substituteSTOs(expr, eventInfo); + }; + + var _exprFunctions = {}; + + _exprFunctions.SetCheckState = function(elementIds, value) { + var toggle = value == 'toggle'; + var boolValue = Boolean(value) && value != 'false'; + + for(var i = 0; i < elementIds.length; i++) { + var query = $ax('#' + elementIds[i]); + query.selected(toggle ? !query.selected() : boolValue); + } + }; + + _exprFunctions.SetSelectedOption = function(elementIds, value) { + for(var i = 0; i < elementIds.length; i++) { + var elementId = elementIds[i]; + var obj = $jobj($ax.INPUT(elementId)); + + if(obj.val() == value) return; + obj.val(value); + + if($ax.event.HasSelectionChanged($ax.getObjectFromElementId(elementId))) $ax.event.raiseSyntheticEvent(elementId, 'onSelectionChange'); + } + }; + + _exprFunctions.SetGlobalVariableValue = function(varName, value) { + $ax.globalVariableProvider.setVariableValue(varName, value); + }; + + _exprFunctions.SetWidgetFormText = function(elementIds, value) { + for(var i = 0; i < elementIds.length; i++) { + var elementId = elementIds[i]; + var inputId = $ax.repeater.applySuffixToElementId(elementId, '_input'); + + var obj = $jobj(inputId); + if(obj.val() == value) return; + obj.val(value); + $ax.placeholderManager.updatePlaceholder(elementId, !value); + if($ax.event.HasTextChanged($ax.getObjectFromElementId(elementId))) $ax.event.TryFireTextChanged(elementId); + } + }; + + _exprFunctions.SetFocusedWidgetText = function(elementId, value) { + if(window.lastFocusedControl) { + window.lastFocusedControl.focus(); + window.lastFocusedControl.value = value; + } + }; + + _exprFunctions.GetRtfElementHeight = function(rtfElement) { + if(rtfElement.innerHTML == '') rtfElement.innerHTML = ' '; + return rtfElement.offsetHeight; + }; + + _exprFunctions.SetWidgetRichText = function(ids, value, plain) { + // Converts dates, widgetinfo, and the like to strings. + value = _exprFunctions.ToString(value); + + //Replace any newlines with line breaks + value = value.replace(/\r\n/g, '
    ').replace(/\n/g, '
    '); + + for(var i = 0; i < ids.length; i++) { + var id = ids[i]; + + // If calling this on button shape, get the id of the rich text panel inside instead + var type = $obj(id).type; + if(type != 'richTextPanel' && type != 'hyperlink') { + id = $jobj(id).children('.text')[0].id; + } + + var element = window.document.getElementById(id); + $ax.visibility.SetVisible(element, true); + + var spans = $jobj(id).find('span'); + if(plain) { + // Wrap in span and p, style them accordingly. + var span = $(''); + if(spans.length > 0) { + span.attr('style', $(spans[0]).attr('style')); + span.attr('id', $(spans[0]).attr('id')); + } + span.html(value); + var p = $('

    '); + var ps = $jobj(id).find('p'); + if(ps.length > 0) { + p.attr('style', $(ps[0]).attr('style')); + p.attr('id', $(ps[0]).attr('id')); + } + p.append(span); + value = $('
    ').append(p).html(); + } + + $ax.style.transformTextWithVerticalAlignment(id, function() { + element.innerHTML = value; + }); + + if(!plain) $ax.style.CacheOriginalText(id, true); + } + }; + + _exprFunctions.GetCheckState = function(ids) { + return $ax('#' + ids[0]).selected(); + }; + + _exprFunctions.GetSelectedOption = function(ids) { + return $jobj($ax.INPUT(ids[0]))[0].value; + }; + + _exprFunctions.GetNum = function(str) { + //Setting a GlobalVariable to some blank text then setting a widget to the value of that variable would result in 0 not "" + //I have fixed this another way so commenting this should be fine now + //if (!str) return ""; + return isNaN(str) ? str : Number(str); + }; + + _exprFunctions.GetGlobalVariableValue = function(id) { + return $ax.globalVariableProvider.getVariableValue(id); + }; + + _exprFunctions.GetGlobalVariableLength = function(id) { + return _exprFunctions.GetGlobalVariableValue(id).length; + }; + + _exprFunctions.GetWidgetText = function(ids) { + var input = $ax.INPUT(ids[0]); + return $ax('#' + ($jobj(input).length ? input : ids[0])).text(); + }; + + _exprFunctions.GetFocusedWidgetText = function() { + if(window.lastFocusedControl) { + return window.lastFocusedControl.value; + } else { + return ""; + } + }; + + _exprFunctions.GetWidgetValueLength = function(ids) { + var id = ids[0]; + if(!id) return undefined; + + var obj = $jobj($ax.INPUT(id)); + if(!obj.length) obj = $jobj(id); + return obj[0].value.length; + }; + + _exprFunctions.GetPanelState = function(ids) { + var id = ids[0]; + if(!id) return undefined; + var stateId = $ax.visibility.GetPanelState(id); + return stateId && $jobj(stateId).data('label'); + }; + + _exprFunctions.GetWidgetVisibility = function(ids) { + var id = ids[0]; + if(!id) return undefined; + return $ax.visibility.IsIdVisible(id); + }; + + // ***************** Validation Functions ***************** // + + _exprFunctions.IsValueAlpha = function(val) { + var isAlphaRegex = new RegExp("^[a-z\\s]+$", "gi"); + return isAlphaRegex.test(val); + }; + + _exprFunctions.IsValueNumeric = function(val) { + var isNumericRegex = new RegExp("^[0-9,\\.\\s]+$", "gi"); + return isNumericRegex.test(val); + }; + + _exprFunctions.IsValueAlphaNumeric = function(val) { + var isAlphaNumericRegex = new RegExp("^[0-9a-z\\s]+$", "gi"); + return isAlphaNumericRegex.test(val); + }; + + _exprFunctions.IsValueOneOf = function(val, values) { + for(var i = 0; i < values.length; i++) { + var option = values[i]; + if(val == option) return true; + } + //by default, return false + return false; + }; + + _exprFunctions.IsValueNotAlpha = function(val) { + return !_exprFunctions.IsValueAlpha(val); + }; + + _exprFunctions.IsValueNotNumeric = function(val) { + return !_exprFunctions.IsValueNumeric(val); + }; + + _exprFunctions.IsValueNotAlphaNumeric = function(val) { + return !_exprFunctions.IsValueAlphaNumeric(val); + }; + + _exprFunctions.IsValueNotOneOf = function(val, values) { + return !_exprFunctions.IsValueOneOf(val, values); + }; + + _exprFunctions.GetKeyPressed = function(eventInfo) { + return eventInfo.keyInfo; + }; + + _exprFunctions.GetCursorRectangles = function() { + var rects = new Object(); + rects.lastRect = new $ax.drag.Rectangle($ax.lastMouseLocation.x, $ax.lastMouseLocation.y, 1, 1); + rects.currentRect = new $ax.drag.Rectangle($ax.mouseLocation.x, $ax.mouseLocation.y, 1, 1); + return rects; + }; + + _exprFunctions.GetWidgetRectangles = function(elementId, eventInfo) { + var rects = new Object(); + var jObj = $jobj(elementId); + rects.lastRect = new $ax.drag.Rectangle( + $ax.legacy.getAbsoluteLeft(jObj), + $ax.legacy.getAbsoluteTop(jObj), + jObj.width(), + jObj.height()); + rects.currentRect = rects.lastRect; + return rects; + }; + + _exprFunctions.GetWidget = function(elementId) { + return $ax.getWidgetInfo(elementId[0]); + }; + + _exprFunctions.GetAdaptiveView = function() { + return $ax.adaptive.currentViewId || ''; + }; + + _exprFunctions.IsEntering = function(movingRects, targetRects) { + return !movingRects.lastRect.IntersectsWith(targetRects.currentRect) && movingRects.currentRect.IntersectsWith(targetRects.currentRect); + }; + + _exprFunctions.IsLeaving = function(movingRects, targetRects) { + return movingRects.lastRect.IntersectsWith(targetRects.currentRect) && !movingRects.currentRect.IntersectsWith(targetRects.currentRect); + }; + + var _IsOver = _exprFunctions.IsOver = function(movingRects, targetRects) { + return movingRects.currentRect.IntersectsWith(targetRects.currentRect); + }; + + _exprFunctions.IsNotOver = function(movingRects, targetRects) { + return !_IsOver(movingRects, targetRects); + }; + + _exprFunctions.ValueContains = function(inputString, value) { + return inputString.indexOf(value) > -1; + }; + + _exprFunctions.ValueNotContains = function(inputString, value) { + return !_exprFunctions.ValueContains(inputString, value); + }; + + _exprFunctions.ToString = function(value) { + if(value.isWidget) { + return value.Text; + } + return String(value); + }; + + var _evaluateExpr = $ax.expr.evaluateExpr = function(expr, eventInfo, toString) { + if(expr === undefined || expr === null) return undefined; + var result = _exprHandlers[expr.exprType](expr, eventInfo); + return toString ? _exprFunctions.ToString(result) : result; + }; + + +}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/flyout.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/flyout.js" new file mode 100644 index 0000000..6c93936 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/flyout.js" @@ -0,0 +1,263 @@ +// ******* Flyout MANAGER ******** // +$axure.internal(function($ax) { + var _flyoutManager = $ax.flyoutManager = {}; + + var getFlyoutLabel = function(panelId) { + return panelId + '_flyout'; + }; + + var _unregisterPanel = function(panelId, keepShown) { + $ax.geometry.unregister(getFlyoutLabel(panelId)); + if(panelToSrc[panelId]) { + $ax.style.RemoveRolloverOverride(panelToSrc[panelId]); + delete panelToSrc[panelId]; + } + if(!keepShown) { + $ax.action.addAnimation(panelId, function() { + $ax('#' + panelId).hide(); + }); + } + }; + _flyoutManager.unregisterPanel = _unregisterPanel; + + var genPoint = $ax.geometry.genPoint; + + var _updateFlyout = function(panelId) { + var label = getFlyoutLabel(panelId); + if(!$ax.geometry.polygonRegistered(label)) return; + var info = $ax.geometry.getPolygonInfo(label); + var rects = info && info.rects; + + var targetWidget = $ax.getWidgetInfo(panelId); + rects.target = $ax.geometry.genRect(targetWidget); + + // Src will stay the same, just updating + $ax.flyoutManager.registerFlyout(rects, panelId, panelToSrc[panelId]); + + if(!$ax.geometry.checkInsideRegion(label)) _unregisterPanel(panelId); + }; + _flyoutManager.updateFlyout = _updateFlyout; + + var panelToSrc = {}; + var _registerFlyout = function(rects, panelId, srcId) { + var label = _getFlyoutLabel(panelId); + var callback = function(info) { + // If leaving object or already outside it, then unregister, otherwise just return + if(!info.exiting && !info.outside) return; + _unregisterPanel(panelId); + }; + var points = []; + + var lastSrcId = panelToSrc[panelId]; + if(lastSrcId != srcId) { + if(lastSrcId) $ax.style.RemoveRolloverOverride(lastSrcId); + if(srcId) { + $ax.style.AddRolloverOverride(srcId); + panelToSrc[panelId] = srcId; + } else delete panelToSrc[panelId]; + } + + // rects should be one or two rectangles + if(!rects.src) { + var rect = rects.target; + points.push(genPoint(rect.Left(), rect.Top())); + points.push(genPoint(rect.Right(), rect.Top())); + points.push(genPoint(rect.Right(), rect.Bottom())); + points.push(genPoint(rect.Left(), rect.Bottom())); + } else { + var r0 = rects.src; + var r1 = rects.target; + + // Right left of right, left right of left, top below top, bottom above bottom + var rlr = r0.Right() <= r1.Right(); + var lrl = r0.Left() >= r1.Left(); + var tbt = r0.Top() >= r1.Top(); + var bab = r0.Bottom() <= r1.Bottom(); + + var info = { rlr: rlr, lrl: lrl, tbt: tbt, bab: bab }; + + if((rlr && lrl) || (tbt && bab)) { + points = getSmallPolygon(r0, r1, info); + } else { + points = getLargePolygon(r0, r1, info); + } + } + + $ax.geometry.registerPolygon(label, points, callback, { rects: rects }); + }; + _flyoutManager.registerFlyout = _registerFlyout; + + var _getFlyoutLabel = function(panelId) { + return panelId + '_flyout'; + }; + + var _reregisterAllFlyouts = function() { + for(var panelId in panelToSrc) _reregisterFlyout(panelId); + }; + _flyoutManager.reregisterAllFlyouts = _reregisterAllFlyouts; + + var _reregisterFlyout = function(panelId) { + var rects = $ax.geometry.getPolygonInfo(getFlyoutLabel(panelId)).rects; + _registerFlyout(rects, panelId, panelToSrc[panelId]); + }; + + // This is the reduced size polygon connecting r0 to r1 by means of horizontal or vertical lines. + var getSmallPolygon = function(r0, r1, info) { + var points = []; + + // NOTE: currently I make the assumption that if horizontal/vertical connecting lines from the src hit the target + // Meaning if horizontal, rlr and lrl are true, and if vertical, tbt and bab are true. + + var r0Left = r0.Left(); + var r0Right = r0.Right(); + var r0Top = r0.Top(); + var r0Bottom = r0.Bottom(); + var r1Left = r1.Left(); + var r1Right = r1.Right(); + var r1Top = r1.Top(); + var r1Bottom = r1.Bottom(); + + points.push(genPoint(r1Left, r1Top)); + + if(!info.tbt) { + points.push(genPoint(r0Left, r1Top)); + points.push(genPoint(r0Left, r0Top)); + points.push(genPoint(r0Right, r0Top)); + points.push(genPoint(r0Right, r1Top)); + } + + points.push(genPoint(r1Right, r1Top)); + + if(!info.rlr) { + points.push(genPoint(r1Right, r0Top)); + points.push(genPoint(r0Right, r0Top)); + points.push(genPoint(r0Right, r0Bottom)); + points.push(genPoint(r1Right, r0Bottom)); + } + + points.push(genPoint(r1Right, r1Bottom)); + + if(!info.bab) { + points.push(genPoint(r0Right, r1Bottom)); + points.push(genPoint(r0Right, r0Bottom)); + points.push(genPoint(r0Left, r0Bottom)); + points.push(genPoint(r0Left, r1Bottom)); + } + + points.push(genPoint(r1Left, r1Bottom)); + + if(!info.lrl) { + points.push(genPoint(r1Left, r0Bottom)); + points.push(genPoint(r0Left, r0Bottom)); + points.push(genPoint(r0Left, r0Top)); + points.push(genPoint(r1Left, r0Top)); + } + + return points; + }; + + // This is the original algorithm that connects the most extream corners to make polygon + var getLargePolygon = function(r0, r1, info) { + var points = []; + + var r0Left = r0.Left(); + var r0Right = r0.Right(); + var r0Top = r0.Top(); + var r0Bottom = r0.Bottom(); + var r1Left = r1.Left(); + var r1Right = r1.Right(); + var r1Top = r1.Top(); + var r1Bottom = r1.Bottom(); + + // Top lefts + if(info.tbt) { + if(!info.lrl) points.push(genPoint(r0Left, r0Top)); + points.push(genPoint(r1Left, r1Top)); + } else { + if(info.lrl) points.push(genPoint(r1Left, r1Top)); + points.push(genPoint(r0Left, r0Top)); + } + + // Top rights + if(info.tbt) { + points.push(genPoint(r1Right, r1Top)); + if(!info.rlr) points.push(genPoint(r0Right, r0Top)); + } else { + points.push(genPoint(r0Right, r0Top)); + if(info.rlr) points.push(genPoint(r1Right, r1Top)); + } + + // Bottom rights + if(info.bab) { + if(!info.rlr) points.push(genPoint(r0Right, r0Bottom)); + points.push(genPoint(r1Right, r1Bottom)); + } else { + if(info.rlr) points.push(genPoint(r1Right, r1Bottom)); + points.push(genPoint(r0Right, r0Bottom)); + } + + // Bottom Lefts + if(info.bab) { + points.push(genPoint(r1Left, r1Bottom)); + if(!info.lrl) points.push(genPoint(r0Left, r0Bottom)); + } else { + points.push(genPoint(r0Left, r0Bottom)); + if(info.lrl) points.push(genPoint(r1Left, r1Bottom)); + } + return points; + }; +}); + +// ******* Placeholder Manager ********* // + +$axure.internal(function($ax) { + var _placeholderManager = $ax.placeholderManager = {}; + var idToPlaceholderInfo = {}; + + var _registerPlaceholder = function(elementId, text, password) { + idToPlaceholderInfo[elementId] = { text: text, password: password, active: false }; + }; + _placeholderManager.registerPlaceholder = _registerPlaceholder; + + var _updatePlaceholder = function(elementId, active, clearText) { + var inputId = $ax.repeater.applySuffixToElementId(elementId, '_input'); + + var info = idToPlaceholderInfo[elementId]; + if(!info || info.active == active) return; + info.active = active; + $ax.style.SetWidgetPlaceholder(elementId, active, active ? info.text : clearText ? '' : $jobj(inputId).val(), info.password); + }; + _placeholderManager.updatePlaceholder = _updatePlaceholder; + + var _isActive = function(elementId) { + var info = idToPlaceholderInfo[elementId]; + return Boolean(info && info.active); + }; + _placeholderManager.isActive = _isActive; + + var _selectRange = function(elementId, start, end) { + $jobj(elementId).each(function() { + if(this.setSelectionRange) { + this.focus(); + this.setSelectionRange(start, end); + } else if(this.createTextRange) { + var range = this.createTextRange(); + range.collapse(true); + range.moveEnd('character', end); + range.moveStart('character', start); + range.select(); + } + }); + }; + _placeholderManager.selectRange = _selectRange; + + var _moveCaret = function(id, index) { + var inputIndex = id.indexOf('_input'); + if(inputIndex == -1) return; + var inputId = id.substring(0, inputIndex); + + if(!_isActive(inputId)) return; + _selectRange(id, index, index); + }; + _placeholderManager.moveCaret = _moveCaret; +}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/geometry.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/geometry.js" new file mode 100644 index 0000000..ae05135 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/geometry.js" @@ -0,0 +1,289 @@ +// ******* Region MANAGER ******** // +$axure.internal(function($ax) { + var _geometry = $ax.geometry = {}; + var regionMap = {}; + var regionList = []; + + var _unregister = function(label) { + var regionIndex = regionList.indexOf(label); + if(regionIndex != -1) { + var end = $ax.splice(regionList, regionIndex + 1); + $ax.splice(regionList, regionIndex, regionList.length - regionIndex); + regionList = regionList.concat(end); + } + delete regionMap[label]; + }; + _geometry.unregister = _unregister; + + var clear = function() { + regionMap = {}; + regionList = []; + }; + + var _polygonRegistered = function(label) { + return Boolean(regionMap[label]); + }; + _geometry.polygonRegistered = _polygonRegistered; + + // Must be counterclockwise, or enter/exit will be wrong + var _registerPolygon = function(label, points, callback, info) { + var regionIndex = regionList.indexOf(label); + if(regionIndex == -1) regionList.push(label); + regionMap[label] = { points: points, callback: callback, info: info }; + }; + _geometry.registerPolygon = _registerPolygon; + + var _getPolygonInfo = function(label) { + if(!_polygonRegistered(label)) return undefined; + return regionMap[label].info; + }; + _geometry.getPolygonInfo = _getPolygonInfo; + + + + var _genRect = function(info) { + var x = info.pagex; + var y = info.pagey; + var w = info.width; + var h = info.height; + var r = x + w; + var b = y + h; + + var rect = { + X: function() { return x; }, + Y: function() { return y; }, + Wigth: function() { return w; }, + Height: function() { return h; }, + Left: function() { return x; }, + Right: function() { return r; }, + Top: function() { return y; }, + Bottom: function() { return b; } + }; + return rect; + }; + _geometry.genRect = _genRect; + + var _genPoint = function(x, y) { + return { x: x, y: y }; + }; + _geometry.genPoint = _genPoint; + + var oldPoint = _genPoint(0, 0); + _geometry.tick = function(x, y, end) { + var lastPoint = oldPoint; + var nextPoint = oldPoint = _genPoint(x, y); + var line = { p1: lastPoint, p2: nextPoint }; + if(!regionList.length) return; + + for(var i = 0; i < regionList.length; i++) { + var region = regionMap[regionList[i]]; + var points = region.points; + if(!region.checked) { + if(!_checkInside(points, $ax.mouseLocation)) { + region.callback({ outside: true }); + continue; + } + region.checked = true; + } + for(var j = 0; j < points.length; j++) { + var startSegment = points[j]; + var endSegment = points[(j + 1) % points.length]; + var intersectInfo = linesIntersect(line, { p1: startSegment, p2: endSegment }); + if(intersectInfo) { + region.callback(intersectInfo); + break; + } + } + } + + if(end) clear(); + }; + + // Info if the one line touches the other (even barely), false otherwise + // Info includes point, if l1 is entering or exiting l2, and any ties that happened, or parallel info + var linesIntersect = function(l1, l2) { + var retval = {}; + var ties = {}; + + var l1p1 = l1.p1.x < l1.p2.x || (l1.p1.x == l1.p2.x && l1.p1.y < l1.p2.y) ? l1.p1 : l1.p2; + var l1p2 = l1.p1.x < l1.p2.x || (l1.p1.x == l1.p2.x && l1.p1.y < l1.p2.y) ? l1.p2 : l1.p1; + var m1 = (l1p2.y - l1p1.y) / (l1p2.x - l1p1.x); + + var l2p1 = l2.p1.x < l2.p2.x || (l2.p1.x == l2.p2.x && l2.p1.y < l2.p2.y) ? l2.p1 : l2.p2; + var l2p2 = l2.p1.x < l2.p2.x || (l2.p1.x == l2.p2.x && l2.p1.y < l2.p2.y) ? l2.p2 : l2.p1; + var m2 = (l2p2.y - l2p1.y) / (l2p2.x - l2p1.x); + + var l1Vert = l1.p1.x == l1.p2.x; + var l2Vert = l2.p1.x == l2.p2.x; + if(l1Vert || l2Vert) { + if(l1Vert && l2Vert) { + // If the lines don't follow the same path, return + if(l1p1.x != l2p1.x) return false; + // if they never meet, return + if(l1p2.y < l2p1.y || l1p1.y > l2p2.y) return false; + var firstVert = l1p1.y >= l2p1.y ? l1p1 : l2p1; + var secondVert = l1p2.y <= l2p2.y ? l1p2 : l2p2; + // First is from the perspective of l1 + retval.parallel = { + first: l1p1 == l1.p1 ? firstVert : secondVert, + second: l1p2 == l1.p2 ? secondVert : firstVert, + sameDirection: (l1p1 == l1.p1) == (l2p1 == l2.p1) + }; + + return retval; + } + + var x1 = l2Vert ? l1p1.x : l2p1.x; + var x2 = l2Vert ? l1p2.x : l2p2.x; + var xVert = l2Vert ? l2p1.x : l1p1.x; + + var y = l2Vert ? l1p1.y + (xVert - x1) * m1 : l2p1.y + (xVert - x1) * m2; + var y1 = l2Vert ? l2p1.y : l1p1.y; + var y2 = l2Vert ? l2p2.y : l1p2.y; + if(xVert >= x1 && xVert <= x2 && y >= y1 && y <= y2) { + retval.point = { x: xVert, y: y }; + retval.exiting = l2Vert == (y1 == (l2Vert ? l2.p1.y : l1.p1.y)) == (x1 == (l2Vert ? l1.p1.x : l2.p1.x)); + retval.entering = !retval.exiting; + + // Calculate ties + if(x1 == xVert) { + ties[l2Vert ? 'l1' : 'l2'] = (x1 == (l2Vert ? l1.p1.x : l2.p1.x)) ? 'start' : 'end'; + retval.ties = ties; + } else if(x2 == xVert) { + ties[l2Vert ? 'l1' : 'l2'] = (x2 == (l2Vert ? l1.p2.x : l2.p2.x)) ? 'end' : 'start'; + retval.ties = ties; + } + if(y1 == y) { + ties[l2Vert ? 'l2' : 'l1'] = (y1 == (l2Vert ? l2.p1.y : l1.p1.y)) ? 'start' : 'end'; + retval.ties = ties; + } else if(y2 == y) { + ties[l2Vert ? 'l2' : 'l1'] = (y2 == (l2Vert ? l2.p2.y : l1.p2.y)) ? 'end' : 'start'; + retval.ties = ties; + } + + return retval; + } + return false; + } + // If here, no vertical lines + + if(m1 == m2) { + // If the lines don't follow the same path, return + if(l1p1.y != (l2p1.y + (l1p1.x - l2p1.x) * m1)) return false; + // if they never meet, return + if(l1p2.x < l2p1.x || l1p1.x > l2p2.x) return false; + var first = l1p1.x >= l2p1.x ? l1p1 : l2p1; + var second = l1p2.x <= l2p2.x ? l1p2 : l2p2; + // First is from the perspective of l1 + retval.parallel = { + first: l1p1 == l1.p1 ? first : second, + second: l1p2 == l1.p2 ? second : first, + sameDirection: (l1p1 == l1.p1) == (l2p1 == l2.p1) + }; + + return retval; + } + + var x = (l2p1.y - l2p1.x * m2 - l1p1.y + l1p1.x * m1) / (m1 - m2); + + // Check if x is out of bounds + if(x >= l1p1.x && x <= l1p2.x && x >= l2p1.x && x <= l2p2.x) { + var y = l1p1.y + (x - l1p1.x) * m1; + retval.point = { x: x, y: y }; + retval.entering = m1 > m2 == (l1p1 == l1.p1) == (l2p1 == l2.p1); + retval.exiting = !retval.entering; + + // Calculate ties + if(l1.p1.x == x) { + ties.l1 = 'start'; + retval.ties = ties; + } else if(l1.p2.x == x) { + ties.l1 = 'end'; + retval.ties = ties; + } + if(l2.p1.x == x) { + ties.l2 = 'start'; + retval.ties = ties; + } else if(l2.p2.x == x) { + ties.l2 = 'end'; + retval.ties = ties; + } + + return retval; + } + return false; + }; + + var _checkInsideRegion = function(label, point) { + if(!_polygonRegistered(label)) return false; + + return _checkInside(regionMap[label].points, point || $ax.mouseLocation); + }; + _geometry.checkInsideRegion = _checkInsideRegion; + + // Returns true if point is inside the polygon, including ties + var _checkInside = function(polygon, point) { + // Make horizontal line wider than the polygon, with the y of point to test location + var firstX = polygon[0].x; + var secondX = firstX; + var i; + for(i = 1; i < polygon.length; i++) { + var polyX = polygon[i].x; + firstX = Math.min(firstX, polyX); + secondX = Math.max(secondX, polyX); + } + var line = { + p1: _genPoint(--firstX, point.y), + p2: _genPoint(++secondX, point.y) + }; + + // If entered true, with closest intersection says you are inside the polygon. + var entered = false; + // Closest is the closest intersection to the left of the point + var closest = line.p1.x; + // This is for if intersections hit the same point, to find out which is correct + var cos = -2; + + var getCos = function(line) { + var x = line.p2.x - line.p1.x; + var y = line.p2.y - line.p1.y; + return x / Math.sqrt(x * x + y * y); + }; + + for(i = 0; i < polygon.length; i++) { + var polyLine = { p1: polygon[i], p2: polygon[(i + 1) % polygon.length] }; + var intersectInfo = linesIntersect(line, polyLine); + if(!intersectInfo) continue; + + if(intersectInfo.parallel) { + // Only really care about this if it actually touches the point + if(intersectInfo.parallel.first.x <= point.x && intersectInfo.parallel.second.x >= point.x) return true; + continue; + } + + var intersectionX = intersectInfo.point.x; + if(intersectionX > point.x || intersectionX < closest) continue; + if(intersectionX == point.x) return true; + + // If closer than last time, reset cosine. + if(intersectionX != closest) cos = -2; + + // For getting cosine, need to possibly reverse the direction of polyLine. + if(intersectInfo.ties) { + // Tie must be on l2, if the ties is end, reverse so cosine indicates how close the angle is to that of 'point' from here. + if(intersectInfo.ties.l2 == 'end') polyLine = { p1: polyLine.p2, p2: polyLine.p1 }; + } else { + // It is on both side, so you can take the larger one + if(polyLine.p1.x > polyLine.p2.x) polyLine = { p1: polyLine.p2, p2: polyLine.p1 }; + } + var currCos = getCos(polyLine); + if(currCos > cos) { + cos = currCos; + closest = intersectionX; + entered = intersectInfo.entering; + } + } + return entered; + }; + _geometry.checkInside = _checkInside; +}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/globals.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/globals.js" new file mode 100644 index 0000000..0c5c4e8 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/globals.js" @@ -0,0 +1,7 @@ +$axure.internal(function($ax) { + var _globals = $ax.globals = {}; + + $ax.globals.MaxZIndex = 1000; + $ax.globals.MinZIndex = -1000; + +}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/ie.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/ie.js" new file mode 100644 index 0000000..92b3cd5 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/ie.js" @@ -0,0 +1,281 @@ + +// ******* Internet Explorer MANAGER ******** // +//this is to handle all the stupid IE Stuff +$axure.internal(function($ax) { + + if(!$.browser.msie) return; + + var _applyIEFixedPosition = function() { + if(Number($.browser.version) >= 7) return; + + $axure(function(diagramObject) { return diagramObject.fixedVertical; }).$() + .appendTo($('body')) + .css('position', 'absolute').css('margin-left', 0 + 'px').css('margin-top', 0 + 'px'); + + var handleScroll = function() { + $axure(function(diagramObject) { return diagramObject.fixedVertical; }) + .each(function(diagramObject, elementId) { + var win = $(window); + var windowWidth = win.width(); + var windowHeight = win.height(); + var windowScrollLeft = win.scrollLeft(); + var windowScrollTop = win.scrollTop(); + + var newLeft = 0; + var newTop = 0; + var elementQuery = $('#' + elementId); + var width = elementQuery.width(); + var height = elementQuery.height(); + + var horz = diagramObject.fixedHorizontal; + if(horz == 'left') { + newLeft = windowScrollLeft + diagramObject.fixedMarginHorizontal; + } else if(horz == 'center') { + newLeft = windowScrollLeft + ((windowWidth - width) / 2) + diagramObject.fixedMarginHorizontal; + } else if(horz == 'right') { + newLeft = windowScrollLeft + windowWidth - width - diagramObject.fixedMarginHorizontal; + } + + var vert = diagramObject.fixedVertical; + if(vert == 'top') { + newTop = windowScrollTop + diagramObject.fixedMarginVertical; + } else if(vert == 'middle') { + newTop = windowScrollTop + ((windowHeight - height) / 2) + diagramObject.fixedMarginVertical; + } else if(vert == 'bottom') { + newTop = windowScrollTop + windowHeight - height - diagramObject.fixedMarginVertical; + } + elementQuery.css('top', newTop + 'px').css('left', newLeft + 'px'); + }); + }; + + $(window).scroll(handleScroll); + $axure.resize(handleScroll); + handleScroll(); + }; + + var gMult = 256; + var rMult = gMult * 256; + var aMult = rMult * 256; + var _applyBackground = function() { + if(Number($.browser.version) >= 9) return; + + var argb = undefined; + var styleChain = $ax.adaptive.getAdaptiveIdChain($ax.adaptive.currentViewId); + for(var i = 0; i < styleChain.length && !argb; i++) { + var style = $ax.pageData.page.adaptiveStyles[styleChain[i]]; + argb = style.fill && style.fill.color; + } + if(!argb) argb = $ax.pageData.page.style.fill.color; + + var a = Math.floor(argb / aMult); + argb -= a * aMult; + + var r = Math.floor(argb / rMult); + argb -= r * rMult; + + var g = Math.floor(argb / gMult); + var b = argb - g * gMult; + + //convert the color with alpha to a color with no alpha (assuming white background) + r = Math.min((r * a) / 255 + 255 - a, 255); + g = Math.min((g * a) / 255 + 255 - a, 255); + b = Math.min((b * a) / 255 + 255 - a, 255); + + if(r == 255 && g == 255 && b == 255) return; + var color = '#'; + color += Math.floor(r / 16).toString(16); + color += Math.floor(r % 16).toString(16); + color += Math.floor(g / 16).toString(16); + color += Math.floor(g % 16).toString(16); + color += Math.floor(b / 16).toString(16); + color += Math.floor(b % 16).toString(16); + $('body').css('background-color', color); + }; + + var getIEOffset = function(transform, rect) { + var translatedVertexes = [ + $axure.utils.Vector2D(0, 0), //we dont translate, so the orgin is fixed + transform.mul($axure.utils.Vector2D(0, rect.height)), + transform.mul($axure.utils.Vector2D(rect.width, 0)), + transform.mul($axure.utils.Vector2D(rect.width, rect.height))]; + + var minX = 0, minY = 0, maxX = 0, maxY = 0; + $.each(translatedVertexes, function(index, p) { + minX = Math.min(minX, p.x); + minY = Math.min(minY, p.y); + maxX = Math.max(maxX, p.x); + maxY = Math.max(maxY, p.y); + }); + + return $axure.utils.Vector2D( + (maxX - minX - rect.width) / 2, + (maxY - minY - rect.height) / 2); + }; + + var _filterFromTransform = function(transform) { + return "progid:DXImageTransform.Microsoft.Matrix(M11=" + transform.m11 + + ", M12=" + transform.m12 + ", M21=" + transform.m21 + + ", M22=" + transform.m22 + ", SizingMethod='auto expand')"; + }; + + var _applyIERotation = function() { + if(Number($.browser.version) >= 9) return; + + $axure(function(diagramObject) { + return ((diagramObject.style.rotation && Math.abs(diagramObject.style.rotation) > 0.1) + || (diagramObject.style.textRotation && Math.abs(diagramObject.style.textRotation) > 0.1)) + && !diagramObject.isContained; + }).each(function(diagramObject, elementId) { + var rotation = diagramObject.style.rotation || 0; + var $element = $('#' + elementId); + var width = $element.width(); + var height = $element.height(); + var originX = width / 2; + var originY = height / 2; + + var shapeIeOffset; + $element.children().each(function() { + var $child = $(this); + var childWidth = $child.width(); + var childHeight = $child.height() + $child.position().top; + var centerX = $child.position().left + (childWidth / 2); + var centerY = $child.position().top + (childHeight / 2); + var deltaX = centerX - originX; + var deltaY = centerY - originY; + + var effectiveRotation = rotation; + var textObject = $ax.getObjectFromElementId($child.attr('id')); + if(textObject) { + if(textObject.style.textRotation) effectiveRotation = textObject.style.textRotation; + else return; + } + + var transform = $ax.utils.Matrix2D.identity().rotate(effectiveRotation); + var filter = _filterFromTransform(transform); + + $child.css('filter', filter) + .width(childWidth + 1) + .height(childHeight + 1); + + var p = transform.mul($ax.utils.Vector2D(deltaX, deltaY)); + var ieOffset = getIEOffset(transform, { width: childWidth, height: childHeight }); + if(!textObject) { + shapeIeOffset = ieOffset; + } else { + // This is a close approximation, but not exact + if (diagramObject.style.verticalAlignment != 'top') ieOffset.y -= shapeIeOffset.y + Math.abs(shapeIeOffset.x); + } + + $child.css("margin-left", -ieOffset.x - deltaX + p.x).css("margin-top", -ieOffset.y - deltaY + p.y); + }); + }); + }; + + var _fixIEStretchBackground = function() { + if(Number($.browser.version) >= 9) return; + var pageStyle = $ax.adaptive.getPageStyle(); + if(!pageStyle.imageRepeat) return; + //if(!$ax.pageData.page.stretch) return; + var viewId = $ax.adaptive.currentViewId; + var imageInfo = viewId ? $ax.pageData.viewIdToBackgroundImageInfo && $ax.pageData.viewIdToBackgroundImageInfo[viewId] : $ax.pageData.defaultBackgroundImageInfo; + + $('body').css('background-image', 'none'); + if($('#bg_img').length == 0) $('body').append(''); + var path = (imageInfo && imageInfo.path) || ''; + $('#bg_img').attr('src', path).css('position', 'fixed').css('z-index', '-10000'); + _resizeIEBackground(); + }; + + var _resizeIEBackground = function() { + if(Number($.browser.version) >= 9) return; + //var page = $ax.pageData.page; + var viewId = $ax.adaptive.currentViewId; + var pageStyle = $ax.adaptive.getPageStyle(); + if(!$ax.pageData.defaultBackgroundImageInfo && !$ax.pageData.viewIdToBackgroundImageInfo) return; + var imageInfo = viewId ? $ax.pageData.viewIdToBackgroundImageInfo[viewId] : $ax.pageData.defaultBackgroundImageInfo; + if(!imageInfo) return; + var imageWidth = imageInfo.width; + var imageHeight = imageInfo.height; + var windowWidth = $(window).width(); + var windowHeight = $(window).height(); + var isCover = pageStyle.imageRepeat == 'cover'; + + var wRatio = windowWidth / imageWidth; + var hRatio = windowHeight / imageHeight; + var ratio = wRatio; + if(isCover) { + if(hRatio > wRatio) ratio = hRatio; + } else { + if(hRatio < wRatio) ratio = hRatio; + } + var width = imageWidth * ratio; + var height = imageHeight * ratio; + + var left = '0px'; + if((isCover && width > windowWidth) || (!isCover && width < windowWidth)) { + if(pageStyle.imageHorizontalAlignment == 'center') { + left = ((windowWidth - width) / 2) + 'px'; + } else if(pageStyle.imageHorizontalAlignment == 'far') { + left = (windowWidth - width) + 'px'; + } + } + + var top = '0px'; + if((isCover && height > windowHeight) || (!isCover && height < windowHeight)) { + if(pageStyle.imageVerticalAlignment == 'center') { + top = ((windowHeight - height) / 2) + 'px'; + } else if(pageStyle.imageVerticalAlignment == 'far') { + top = (windowHeight - height) + 'px'; + } + } + + $('#bg_img').css('top', top).css('left', left).css('width', width).css('height', height); + }; + + var _fixAllPngs = function() { + if(!(/MSIE ((5\.5)|6)/.test(window.navigator.userAgent) && window.navigator.platform == "Win32")) return; + + $('img[src$=".png"]').each(function() { + if(!this.complete) { + this.onload = function() { $axure.utils.fixPng(this); }; + } else { + $axure.utils.fixPng(this); + } + }); + }; + + var _fixInputSize = function() { + if(Number($.browser.version) >= 8) return; + var inputs = $('input').not(':input[type=button], :input[type=submit], :input[type=radio], :input[type=checkbox]'); + inputs.each(function() { + var $input = $(this); + $input.css('height', ($input.height() - 4 + 'px')).css('width', ($input.width() - 2 + 'px')); + }); + + var textAreas = $('textarea'); + textAreas.each(function() { + var $textArea = $(this); + $textArea.css('height', ($textArea.height() - 6 + 'px')).css('width', ($textArea.width() - 6 + 'px')); + }); + }; + + $(document).ready(function() { + _fixIEStretchBackground(); + _applyIEFixedPosition(); + $axure.resize(function() { + _resizeIEBackground(); + }); + $ax.adaptive.bind('viewChanged', function() { + _fixIEStretchBackground(); + _applyBackground(); + }); + + + _fixAllPngs(); + _applyIERotation(); + _applyBackground(); + _fixInputSize(); + }); + + +}); diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/init.temp.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/init.temp.js" new file mode 100644 index 0000000..6bb3ece --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/init.temp.js" @@ -0,0 +1,181 @@ +$axure.internal(function($ax) { + + $(window.document).ready(function() { + var readyStart = (new Date()).getTime(); + + //this is because the page id is not formatted as a guid + var pageId = $ax.pageData.page.packageId; + + var pageData = { + id: pageId, + pageName: $ax.pageData.page.name, + location: window.location.toString(), + notes: $ax.pageData.page.notes + }; + + //only trigger the page.data setting if the window is on the mainframe + if(window.name == 'mainFrame' || + (!CHROME_5_LOCAL && window.parent.$ && window.parent.$('#mainFrame').length > 0)) { + $axure.messageCenter = $axure.messageCenter; + $axure.messageCenter.setState('page.data', pageData); + } + + // $ax(function(diagramObject) { + // return diagramObject.style.opacity && !diagramObject.isContained; + // }).each(function(diagramObject, elementId) { + // $ax.style.applyOpacityFromStyle(elementId, diagramObject.style); + // }); + + var start = (new Date()).getTime(); + var end = (new Date()).getTime(); + //window.alert('elapsed ' + (end - start)); + + $('input[type=text], input[type=password], textarea').focus(function() { + window.lastFocusedControl = this; + }); + + $('iframe').each(function() { + var origSrc = $(this).attr('basesrc'); + + if(origSrc) { + var newSrcUrl = origSrc.toLowerCase().indexOf('http://') == -1 ? $ax.globalVariableProvider.getLinkUrl(origSrc) : origSrc; + + $(this).attr('src', newSrcUrl); + } + }); + + $axure.messageCenter.addMessageListener(function(message, data) { + if(message == 'setGlobalVar') { + $ax.globalVariableProvider.setVariableValue(data.globalVarName, data.globalVarValue, true); + } + }); + + var lastFocusedClickable; + var shouldOutline = true; + + $ax(function(dObj) { return dObj.tabbable; }).each(function(dObj, elementId) { + var focusableId = $ax.event.getFocusableWidgetOrChildId(elementId); + $('#' + focusableId).attr("tabIndex", 0); + }); + + $('div[tabIndex=0], img[tabIndex=0]').bind($ax.features.eventNames.mouseDownName, function() { + shouldOutline = false; + }); + + $(window.document).bind($ax.features.eventNames.mouseUpName, function() { + shouldOutline = true; + }); + + $('div[tabIndex=0], img[tabIndex=0], a').focus(function() { + if(shouldOutline) { + $(this).css('outline', ''); + } else { + $(this).css('outline', 'none'); + } + + lastFocusedClickable = this; + }); + + $('div[tabIndex=0], img[tabIndex=0], a').blur(function() { + if(lastFocusedClickable == this) lastFocusedClickable = null; + }); + + $(window.document).bind('keyup', function(e) { + if(e.keyCode == '13' || e.keyCode == '32') { + if(lastFocusedClickable) $(lastFocusedClickable).click(); + } + }); + + if($ax.document.configuration.hideAddress) { + $(window).load(function() { + window.setTimeout(function() { + window.scrollTo(0, 0.9); + }, 0); + }); + } + + $(window).load(function() { + $ax.style.initializeObjectTextAlignment($ax('*')); + }); + + if($ax.document.configuration.preventScroll) { + $(window.document).bind('touchmove', function(e) { + var inScrollable = $ax.legacy.GetScrollable(e.target) != window.document.body; + if(!inScrollable) { + e.preventDefault(); + } + }); + + $ax(function(diagramObject) { + return diagramObject.type == 'dynamicPanel' && diagramObject.scrollbars != 'none'; + }).$().children().bind('touchstart', function() { + var target = this; + var top = target.scrollTop; + if(top <= 0) target.scrollTop = 1; + if(top + target.offsetHeight >= target.scrollHeight) target.scrollTop = target.scrollHeight - target.offsetHeight - 1; + }); + } + + if(OS_MAC && WEBKIT) { + $ax(function(diagramObject) { + return diagramObject.type == 'comboBox'; + }).each(function(obj, id) { + $jobj($ax.INPUT(id)).css('-webkit-appearance', 'menulist-button').css('border-color', '#999999'); + }); + } + + $ax.legacy.BringFixedToFront(); + $ax.event.initialize(); + $ax.style.initialize(); + $ax.visibility.initialize(); + $ax.dynamicPanelManager.initialize(); //needs to be called after visibility is initialized + $ax.loadDynamicPanelsAndMasters(); + $ax.adaptive.initialize(); + $ax.repeater.init(); + $ax.style.prefetch(); + + var readyEnd = (new Date()).getTime(); + //window.alert('elapsed ' + (readyEnd - readyStart)); + }); + +}); + +/* extend canvas */ +var gv_hasCanvas = false; +(function() { + var _canvas = document.createElement('canvas'), proto, abbrev; + if(gv_hasCanvas = !!(_canvas.getContext && _canvas.getContext('2d')) && typeof (CanvasGradient) !== 'undefined') { + function chain(func) { + return function() { + return func.apply(this, arguments) || this; + }; + } + + with(proto = CanvasRenderingContext2D.prototype) for(var func in abbrev = { + a: arc, + b: beginPath, + n: clearRect, + c: clip, + p: closePath, + g: createLinearGradient, + f: fill, + j: fillRect, + z: function(s) { this.fillStyle = s; }, + l: lineTo, + w: function(w) { this.lineWidth = w; }, + m: moveTo, + q: quadraticCurveTo, + h: rect, + r: restore, + o: rotate, + s: save, + x: scale, + y: function(s) { this.strokeStyle = s; }, + u: setTransform, + k: stroke, + i: strokeRect, + t: translate + }) proto[func] = chain(abbrev[func]); + CanvasGradient.prototype.a = chain(CanvasGradient.prototype.addColorStop); + } +})(); diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/legacy.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/legacy.js" new file mode 100644 index 0000000..95ecf04 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/legacy.js" @@ -0,0 +1,160 @@ +//stored on each browser event +var windowEvent; + +$axure.internal(function($ax) { + var _legacy = {}; + $ax.legacy = _legacy; + + + // ************************** GLOBAL VARS *********************************// + + // ************************************************************************// + //Check if IE + //var bIE = false; + //if ((index = navigator.userAgent.indexOf("MSIE")) >= 0) { + // bIE = true; + //} + + var Forms = window.document.getElementsByTagName("FORM"); + for(var i = 0; i < Forms.length; i++) { + var Form = Forms[i]; + Form.onclick = $ax.legacy.SuppressBubble; + } + + $ax.legacy.SuppressBubble = function(event) { + if($.browser.msie) { + window.event.cancelBubble = true; + window.event.returnValue = false; + } else { + if(event) { + event.stopPropagation(); + } + } + }; + + // function InsertAfterBegin(dom, html) { + // if(!$.browser.msie) { + // var phtml; + // var range = dom.ownerDocument.createRange(); + // range.selectNodeContents(dom); + // range.collapse(true); + // phtml = range.createContextualFragment(html); + // dom.insertBefore(phtml, dom.firstChild); + // } else { + // dom.insertAdjacentHTML("afterBegin", html); + // } + // } + + // function InsertBeforeEnd(dom, html) { + // if(!$.browser.msie) { + // var phtml; + // var range = dom.ownerDocument.createRange(); + // range.selectNodeContents(dom); + // range.collapse(dom); + // phtml = range.createContextualFragment(html); + // dom.appendChild(phtml); + // } else { + // dom.insertAdjacentHTML("beforeEnd", html); + // } + // } + + //Get the id of the Workflow Dialog belonging to element with id = id + + // function Workflow(id) { + // return id + 'WF'; + // } + + $ax.legacy.BringToFront = function(id, skipFixed) { + _bringToFrontHelper(id); + if(!skipFixed) $ax.legacy.BringFixedToFront(); + }; + + var _bringToFrontHelper = function(id) { + var target = window.document.getElementById(id); + if(target == null) return; + $ax.globals.MaxZIndex = $ax.globals.MaxZIndex + 1; + target.style.zIndex = $ax.globals.MaxZIndex; + }; + + $ax.legacy.BringFixedToFront = function() { + $ax(function(diagramObject) { return diagramObject.fixedKeepInFront; }).each(function(diagramObject, scriptId) { + _bringToFrontHelper(scriptId); + }); + }; + + $ax.legacy.SendToBack = function(id) { + var target = window.document.getElementById(id); + if(target == null) return; + target.style.zIndex = $ax.globals.MinZIndex = $ax.globals.MinZIndex - 1; + }; + + $ax.legacy.RefreshScreen = function() { + var oldColor = window.document.body.style.backgroundColor; + var setColor = (oldColor == "rgb(0,0,0)") ? "#FFFFFF" : "#000000"; + window.document.body.style.backgroundColor = setColor; + window.document.body.style.backgroundColor = oldColor; + }; + + $ax.legacy.getAbsoluteLeft = function(currentNode) { + var oldDisplay = currentNode.css('display'); + var displaySet = false; + if(oldDisplay == 'none') { + currentNode.css('display', ''); + displaySet = true; + } + var left = currentNode.offset().left; + if(displaySet) currentNode.css('display', oldDisplay); + var body = $('body'); + if(body.css('position') == 'relative') left -= (Number(body.css('left').replace('px', '')) + Math.max(0, ($(window).width() - body.width()) / 2)); + return left; + }; + + $ax.legacy.getAbsoluteTop = function(currentNode) { + var oldDisplay = currentNode.css('display'); + var displaySet = false; + if(oldDisplay == 'none') { + currentNode.css('display', ''); + displaySet = true; + } + var top = currentNode.offset().top; + if(displaySet) currentNode.css('display', oldDisplay); + return top; + }; + + // ****************** Annotation and Link Functions ****************** // + + $ax.legacy.GetAnnotationHtml = function(annJson) { + var retVal = ""; + for(var noteName in annJson) { + if(noteName != "label") { + retVal += "
    " + noteName + "
    "; + retVal += "
    " + annJson[noteName] + "
    "; + } + } + return retVal; + }; + + + $ax.legacy.GetScrollable = function(target) { + var $target = $(target); + var current = $target; + var last = $target; + + while(!current.is('body') && !current.is('html')) { + var elementId = current.attr('id'); + var diagramObject = elementId && $ax.getObjectFromElementId(elementId); + if(diagramObject && diagramObject.type == 'dynamicPanel' && diagramObject.scrollbars != 'none') { + //returns the panel diagram div which handles scrolling + return window.document.getElementById(last.attr('id')); + } + last = current; + current = current.parent(); + } + // Need to do this because of ie + if($.browser.msie) return window.document.documentElement; + else return window.document.body; + }; + + + +}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/model.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/model.js" new file mode 100644 index 0000000..dbf76ff --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/model.js" @@ -0,0 +1,42 @@ +// ******* Object Model ******** // +$axure.internal(function($ax) { + var _implementations = {}; + + var _initializeObject = function(type, obj) { + $.extend(obj, _implementations[type]); + }; + $ax.initializeObject = _initializeObject; + + var _model = $ax.model = {}; + + _model.idsInRdo = function(rdoId, elementIds) { + var rdoScriptId = $ax.repeater.getScriptIdFromElementId(rdoId); + var rdoObj = $obj(rdoId); + var path = $ax.getPathFromScriptId(rdoScriptId); + var rdoRepeater = $ax.getParentRepeaterFromScriptId(rdoScriptId); + var rdoItem = $ax.repeater.getItemIdFromElementId(rdoId); + + if(!elementIds) elementIds = []; + $ax('*').each(function(obj, elementId) { + // Make sure in same rdo + var scriptId = $ax.repeater.getScriptIdFromElementId(elementId); + var elementPath = $ax.getPathFromScriptId(scriptId); + // This is because last part of path is for the obj itself. + elementPath.pop(); + if(elementPath.length != path.length) return; + for(var i = 0; i < path.length; i++) if(elementPath[i] != path[i]) return; + + // If object is in a panel, the panel will be hidden, so the obj doesn't have to be. + if(obj.parentDynamicPanel) return; + + var repeater = $ax.getParentRepeaterFromScriptId(scriptId); + var item = $ax.repeater.getItemIdFromElementId(elementId); + if(repeater != rdoRepeater || item != rdoItem) return; + + if(obj.type == 'referenceDiagramObject') _model.idsInRdo(elementId, elementIds); + else elementIds.push(elementId); + }); + return elementIds; + }; + +}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/move.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/move.js" new file mode 100644 index 0000000..bf12ef9 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/move.js" @@ -0,0 +1,66 @@ +$axure.internal(function($ax) { + var _move = {}; + $ax.move = _move; + + var widgetMoveInfo = {}; + + $ax.move.GetWidgetMoveInfo = function() { + return $.extend({}, widgetMoveInfo); + }; + + $ax.move.MoveWidget = function(id, x, y, easing, duration, to, animationCompleteCallback, shouldFire) { + $ax.drag.LogMovedWidgetForDrag(id); + + var widget = $('#' + id); + var jobj = $jobj(id); + + var horzProp = 'left'; + var vertProp = 'top'; + var horzX = to ? x - Number(jobj.css('left').replace('px', '')) : x; + var vertY = to ? y - Number(jobj.css('top').replace('px', '')) : y; + + var fixedInfo = $ax.dynamicPanelManager.getFixedInfo(id); + + if(fixedInfo.horizontal == 'right') { + horzProp = 'right'; + horzX = to ? $(window).width() - x - Number(jobj.css('right').replace('px', '')) - widget.width() : -x; + } else if(fixedInfo.horizontal == 'center') { + horzProp = 'margin-left'; + if(to) horzX = x - $(window).width() / 2; + } + + if(fixedInfo.vertical == 'bottom') { + vertProp = 'bottom'; + vertY = to ? $(window).height() - y - Number(jobj.css('bottom').replace('px', '')) - widget.height() : -y; + } else if(fixedInfo.vertical == 'middle') { + vertProp = 'margin-top'; + if(to) vertY = y - $(window).height() / 2; + } + var cssStyles = {}; + + if(!$ax.dynamicPanelManager.isPercentWidthPanel($obj(id))) cssStyles[horzProp] = '+=' + horzX; + cssStyles[vertProp] = '+=' + vertY; + + var query = $jobj(id).add($jobj(id + '_ann')).add($jobj(id + '_ref')); + if(easing == 'none') { + query.animate(cssStyles, 0); + if(animationCompleteCallback) animationCompleteCallback(); + if(shouldFire) $ax.action.fireAnimationFromQueue(id); + } else { + query.animate(cssStyles, duration, easing, function() { + if(animationCompleteCallback) animationCompleteCallback(); + if(shouldFire) $ax.action.fireAnimationFromQueue(id); + }); + } + + var moveInfo = new Object(); + moveInfo.x = horzX; + moveInfo.y = vertY; + moveInfo.options = {}; + moveInfo.options.easing = easing; + moveInfo.options.duration = duration; + widgetMoveInfo[id] = moveInfo; + + $ax.event.raiseSyntheticEvent(id, "onMove"); + }; +}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/repeater.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/repeater.js" new file mode 100644 index 0000000..c8dd9fd --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/repeater.js" @@ -0,0 +1,1471 @@ + +// ******* Repeater MANAGER ******** // +$axure.internal(function($ax) { + var _repeaterManager = {}; + $ax.repeater = _repeaterManager; + + //This is a mapping of current editItems + var repeaterToEditItems = {}; + //This is a mapping of current filters + var repeaterToFilters = {}; + // This is a mapping of current sorts + var repeaterToSorts = {}; + // This is a mapping of repeater page info + var repeaterToPageInfo = {}; + + //Hopefully this can be simplified, but for now I think 3 are needed. + //This is the data set that is owned by this repeater. The repeater may or may not reference this data set, and others can reference it. + var repeaterToLocalDataSet = {}; + //This is the data set referenced by the repeater. It is not a copy of the local data set, but a reference to a local data set (or eventually a global data set could be referenced). + var repeaterToCurrentDataSet = {}; + //This is a copy of the current data set, that is replaced whenever a set or refresh is done. + var repeaterToActiveDataSet = {}; + var _loadRepeaters = function() { + $ax(function(obj) { + return obj.type == 'repeater'; + }).each(function(obj, repeaterId) { + repeaterToLocalDataSet[repeaterId] = $ax.deepCopy(obj.data); + repeaterToLocalDataSet[repeaterId].props = obj.dataProps; + repeaterToEditItems[repeaterId] = []; + + _initPageInfo(obj, repeaterId); + + _setRepeaterDataSet(repeaterId, repeaterId); + + }); + }; + _repeaterManager.load = _loadRepeaters; + + var _initRepeaters = function() { + $ax(function(obj, repeaterId) { + return obj.type == 'repeater' && !repeaterToActiveDataSet[repeaterId]; + }).each(function(obj, repeaterId) { + _refreshRepeater(repeaterId); + }); + }; + _repeaterManager.init = _initRepeaters; + + var repeatersHaveNewDataSet = []; + var _setRepeaterDataSet = function(repeaterId, dataSetId) { + //TODO: No idea about how global data sets will be handled... + repeaterToCurrentDataSet[repeaterId] = repeaterToLocalDataSet[dataSetId]; + repeaterToFilters[repeaterId] = []; + repeaterToSorts[repeaterId] = []; + + if(repeatersHaveNewDataSet.indexOf(repeaterId) == -1) repeatersHaveNewDataSet[repeatersHaveNewDataSet.length] = repeaterId; + }; + _repeaterManager.setDataSet = _setRepeaterDataSet; + + var _refreshRepeater = function(repeaterId, eventInfo) { + $ax.action.refreshStart(repeaterId); + $ax.style.ClearCacheForRepeater(repeaterId); + + if($ax.visibility.limboIds[repeaterId]) { + removeItems(repeaterId); + $ax.dynamicPanelManager.fitParentPanel(repeaterId); + return; + } + + var path = $ax.getPathFromScriptId(repeaterId); + path.pop(); + + if(eventInfo) { + eventInfo = $ax.eventCopy(eventInfo); + } + + // Clear edit items if there this is a new data set that is being referenced + var repeaterIndex = repeatersHaveNewDataSet.indexOf(repeaterId); + if(repeaterIndex != -1) { + repeaterToEditItems[repeaterId] = []; + $ax.splice(repeatersHaveNewDataSet, repeaterIndex, 1); + } + + var obj = $ax.getObjectFromScriptId(repeaterId); + + var html = $('#' + repeaterId + '_script').html(); + // var container = $('
    '); + // container.html(html); + // container.attr('id', '' + repeaterId + '_container'); + // container.css({ position: 'absolute' }); + // container.offset({ left: -obj.x, top: -obj.y }); + + var div = $('
    '); + div.html(html); + + + var top = 0; + var left = 0; + + //If there is no wrap, then set it to be above the number of rows + var propMap = obj.repeaterPropMap; + var viewId = $ax.adaptive.currentViewId || ''; + var wrap = _getAdaptiveProp(propMap, 'wrap', viewId); + var vertical = _getAdaptiveProp(propMap, 'vertical', viewId); + var offset = propMap[viewId]; + var xOffset = offset.width + _getAdaptiveProp(propMap, 'horizontalSpacing', viewId); + var yOffset = offset.height + _getAdaptiveProp(propMap, 'verticalSpacing', viewId); + div.css({ + width: xOffset, + height: yOffset + }); + + var background = _getAdaptiveProp(propMap, 'backColor', viewId); + _applyColorCss(background, div); + var hasAltColor = _getAdaptiveProp(propMap, 'hasAltColor', viewId); + var altDiv = div; + if(hasAltColor) altDiv = _applyColorCss(hasAltColor ? _getAdaptiveProp(propMap, 'altColor', viewId) : background, div.clone()); + + var orderedIds = getOrderedIds(repeaterId, eventInfo); + + // Hide repeater, if shown, while updating. + var shown = $ax.visibility.IsIdVisible(repeaterId); + if(shown) document.getElementById(repeaterId).style.visibility = 'hidden'; + + var start = 0; + var end = orderedIds.length; + var pageInfo = repeaterToPageInfo[repeaterId]; + if(!pageInfo.noLimit) { + end = pageInfo.itemsPerPage * pageInfo.currPage; + start = end - pageInfo.itemsPerPage; + + // If past the end, move to last page + if(start >= orderedIds.length) { + pageInfo.currPage = Math.floor(orderedIds.length - 1) + 1; + if(pageInfo.currPage <= 0) pageInfo.currPage = 1; + + end = pageInfo.itemsPerPage * pageInfo.currPage; + start = end - pageInfo.itemsPerPage; + } + end = Math.min(end, orderedIds.length); + } + var useAlt = false; + + var resized = $ax.getItemIdsForRepeater(repeaterId).length != (end - start); + + //clean up old items as late as possible + removeItems(repeaterId); + + var i = 0; + for(var pos = start; pos < end; pos++) { + var itemId = orderedIds[pos]; + + var itemElementId = _createElementId(repeaterId, itemId); + $ax.addItemIdToRepeater(itemId, repeaterId); + + var ids = [itemElementId]; + var processId = function(full, prop, id, suffix) { + var elementId = _createElementId('u' + id, itemId); + //If there is a suffix (ex. _img), then don't push the id. + if(!suffix) ids[ids.length] = elementId; + return prop + '="' + elementId + '"'; + }; + + var copy = (useAlt ? altDiv : div).clone(); + useAlt = !useAlt; + copy.attr('id', itemElementId); + copy.html(div.html().replace(/(id|for)="?u([0-9]+(_[_a-z0-9]*)?)"?/g, processId)); + + copy.css({ + 'position': 'absolute', + 'top': top + 'px', + 'left': left + 'px', + 'width': obj.width + 'px', + 'height': obj.height + 'px' + }); + $('#' + repeaterId).append(copy); + + var query = $ax(function(diagramObject, elementId) { + return _getItemIdFromElementId(elementId) == itemId && $ax.getParentRepeaterFromScriptId(_getScriptIdFromElementId(elementId)) == repeaterId; + }); + if(viewId) $ax.adaptive.applyView(viewId, query); + else { + var limbo = {}; + var hidden = {}; + query.each(function(diagramObject, elementId) { + // sigh, javascript. we need the === here because undefined means not overriden + if(diagramObject.style.visible === false) hidden[elementId] = true; + //todo: **mas** check if the limboed widgets are hidden by default by the generator + if(diagramObject.style.limbo) limbo[elementId] = true; + }); + $ax.visibility.addLimboAndHiddenIds(limbo, hidden, query); + $ax.dynamicPanelManager.updatePercentPanelCache(query); + } + $ax.annotation.InitializeAnnotations(query); + + i++; + if(wrap != -1 && i % wrap == 0) { + if(vertical) { + top = 0; + left += xOffset; + } else { + left = 0; + top += yOffset; + } + } else if(vertical) top += yOffset; + else left += xOffset; + + for(var index = 0; index < ids.length; index++) { + var id = ids[index]; + var childObj = $obj(id); + var childJobj = $jobj(id); + var childItemId = _getItemIdFromElementId(id); + if(obj.repeaterPropMap.isolateRadio && childObj.type == 'radioButton') { + var input = $jobj(_applySuffixToElementId(id, '_input')); + input.attr('name', _createElementId(input.attr('name'), childItemId)); + } + if(obj.repeaterPropMap.isolateSelection && childJobj.attr('selectiongroup')) { + childJobj.attr('selectiongroup', _createElementId(childJobj.attr('selectiongroup'), childItemId)); + } + $ax.initializeObjectEvents($ax('#' + id)); + $ax.dynamicPanelManager.initFitPanels($ax('#' + id)); + $ax.style.initializeObjectTextAlignment($ax('#' + id)); + } + + //$ax.event.raiseSyntheticEvent(itemElementId, 'onLoad', true); + //$ax.loadDynamicPanelsAndMasters(obj.objects, path, itemId); + } + + // Now load + for(pos = start; pos < end; pos++) { + itemId = orderedIds[pos]; + itemElementId = _createElementId(repeaterId, itemId); + + $ax.event.raiseSyntheticEvent(itemElementId, 'onItemLoad', true); + $ax.loadDynamicPanelsAndMasters(obj.objects, path, itemId); + } + + // Reshow repeater if it was originally shown (load is complete by now) + if(shown) document.getElementById(repeaterId).style.visibility = 'visible'; + + $ax.dynamicPanelManager.fitParentPanel(repeaterId); + + // If number of items changed, you need to resize the repeater + if(resized) { + var count = end - start; + + // When getting assume not vertical first. Get how many items wide and high it is. + var yCount = wrap == -1 ? 1 : Math.ceil(count / wrap); + var xCount = wrap == -1 ? count : count % wrap; + if(xCount == 0) xCount = wrap; + // Now swap if vertical + if(vertical) { + var temp = xCount; + xCount = yCount; + yCount = temp; + } + + // xOffset includes, the spacing, but first time that should be ignored. So just add the width/height once, and all the other times add the offset. + $jobj(repeaterId).css('width', offset.width + (xCount - 1) * xOffset); + $jobj(repeaterId).css('height', offset.height + (yCount - 1) * yOffset); + } + + // Right now we assume only one refresh at a time. If we can manually trigger refreshes, that may possibly change. + $ax.action.refreshEnd(); + }; + _repeaterManager.refreshRepeater = _refreshRepeater; + + _repeaterManager.refreshAllRepeaters = function() { + $ax('*').each(function(diagramObject, elementId) { + if(diagramObject.type != 'repeater') return; + + _initPageInfo(diagramObject, elementId); + _refreshRepeater(elementId, $ax.getEventInfoFromEvent($ax.getjBrowserEvent())); + }); + }; + + var _initPageInfo = function(obj, elementId) { + var pageInfo = {}; + var map = obj.repeaterPropMap; + + var currentViewId = $ax.adaptive.currentViewId || ''; + var itemsPerPage = _getAdaptiveProp(map, 'itemsPerPage', currentViewId); + if(itemsPerPage == -1) pageInfo.noLimit = true; + else { + pageInfo.itemsPerPage = itemsPerPage; + pageInfo.currPage = _getAdaptiveProp(map, 'currPage', currentViewId); + } + repeaterToPageInfo[elementId] = pageInfo; + }; + + var _applyColorCss = function(json, div) { + var args = json.r + ', ' + json.g + ', ' + json.b; + var background = json.a == 0 ? '' : json.a == 1 ? 'rgb(' + args + ')' : 'rgba(' + args + ', ' + json.a + ')'; + div.css('background-color', background); + return div; + }; + + var _getAdaptiveProp = _repeaterManager.getAdaptiveProp = function(map, prop, viewId) { + var viewChain = $ax.adaptive.getAdaptiveIdChain(viewId); + for(var i = viewChain.length - 1; i >= 0; i--) { + viewId = viewChain[i]; + var viewProps = map[viewId]; + if(viewProps.hasOwnProperty(prop)) return viewProps[prop]; + } + + var base = map['']; + if(base.hasOwnProperty(prop)) return base[prop]; + return map['default'][prop]; + }; + + _repeaterManager.getItemCount = function(repeaterId) { + var data = repeaterToActiveDataSet[repeaterId].length; + var info = repeaterToPageInfo[repeaterId]; + if(!info.noLimit) { + var start = Math.min(data, info.itemsPerPage * info.currPage); + var end = Math.min(data, start + info.itemsPerPage); + data = end - start; + } + return data; + }; + + _repeaterManager.setDisplayProps = function(obj, repeaterId, itemIndex) { + var data = repeaterToActiveDataSet[repeaterId]; + var info = repeaterToPageInfo[repeaterId]; + var start = 0; + var end = data.length; + if(!info.noLimit) { + start = Math.min(end, info.itemsPerPage * (info.currPage - 1)); + end = Math.min(end, start + info.itemsPerPage); + } + var count = end - start; + var index = -1; + for(var i = 0; i < count; i++) { + if(data[start + i].index == itemIndex) index = i + 1; + } + if(index == -1) return; + obj.index = index; + obj.isfirst = index == 1; + obj.islast = index == end - start; + obj.iseven = index % 2 == 0; + obj.isodd = index % 2 == 1; + }; + + _repeaterManager.getDataCount = function(repeaterId) { + return repeaterToCurrentDataSet[repeaterId].length; + }; + + var _getFilteredDataCount = _repeaterManager.getFilteredDataCount = function(repeaterId) { + return repeaterToActiveDataSet[repeaterId].length; + }; + + _repeaterManager.getPageCount = function(repeaterId) { + var info = repeaterToPageInfo[repeaterId]; + return info.noLimit ? 1 : Math.ceil(_getFilteredDataCount(repeaterId) / info.itemsPerPage); + }; + + _repeaterManager.getPageIndex = function(repeaterId) { + var info = repeaterToPageInfo[repeaterId]; + return info.noLimit ? 1 : info.currPage; + }; + + var getActiveDataSet = function(repeaterId) { + var active = $ax.deepCopy(repeaterToCurrentDataSet[repeaterId]); + // Set up 1 indexing each item. + for(var i = 0; i < active.length; i++) active[i].index = i + 1; + return active; + }; + + var getOrderedIds = function(repeaterId, eventInfo) { + var data = repeaterToActiveDataSet[repeaterId] = getActiveDataSet(repeaterId); + + // Filter first so less to sort + applyFilter(repeaterId, data, eventInfo); + + // Sort next + var sorts = repeaterToSorts[repeaterId] || []; + if(sorts.length != 0 && data.length > 1) { + // TODO: Make this generic and factor out if we want to use it elsewhere... + // Compare is a function that takes 2 arguments, and returns a number. A high number means the second should go first + // Otherwise the first stays first. + var mergesort = function(list, start, end, compare) { + var middle = Math.floor((start + end) / 2); + if(middle - start > 1) mergesort(list, start, middle, compare); + if(end - middle > 1) mergesort(list, middle, end, compare); + var index1 = start; + var index2 = middle; + var tempList = []; + while(index1 < middle && index2 < end) { + tempList[tempList.length] = list[compare(list[index1], list[index2]) > 0 ? index2++ : index1++]; + } + while(index1 < middle) tempList[tempList.length] = list[index1++]; + while(index2 < end) tempList[tempList.length] = list[index2++]; + + // transfer from temp list to the real list. + for(var i = 0; i < tempList.length; i++) list[start + i] = tempList[i]; + }; + // Compare is the tie breaking function to us if necessary. + var getComparator = function(columnName, ascending, type, compare) { + // If this needs to be sped up, break up into several smaller functions conditioned off of type + return function(row1, row2) { + // If column undefined, no way to measure this, so call it a tie. + if(row1[columnName] === undefined || row2[columnName] === undefined) return 0; + + var text1 = row1[columnName].text; + var text2 = row2[columnName].text; + + // This means we are case insensitive, so lowercase everything to kill casing + if(type == 'Text') { + text1 = text1.toLowerCase(); + text2 = text2.toLowerCase(); + } + + //If tied, go to tie breaker + if(text1 == text2) { + if(compare) return compare(row1.index, row2.index); + // Actually a tie. + return 0; + } + if(type == 'Text' || type == 'Text (Case Sensitive)') { + if(text1 < text2 ^ ascending) return 1; + else return -1; + } else if(type == 'Number') { + var num1 = Number(text1); + var num2 = Number(text2); + + if(isNaN(num1) && isNaN(num2)) return 0; + if(isNaN(num1) || isNaN(num2)) return isNaN(num1) ? 1 : -1; + if(num1 < num2 ^ ascending) return 1; + else return -1; + } else if(type == 'Date - YYYY-MM-DD' || type == 'Date - MM/DD/YYYY') { + var func = type == 'Date - YYYY-MM-DD' ? getDate1 : getDate2; + var date1 = func(text1); + var date2 = func(text2); + if(!date1.valid && !date2.valid) return 0; + if(!date1.valid || !date2.valid) return date1.valid ? -1 : 1; + var diff = date2.year - date1.year; + if(diff == 0) diff = date2.month - date1.month; + if(diff == 0) diff = date2.day - date1.day; + if(diff == 0) return 0; + return diff > 0 ^ ascending ? 1 : -1; + } + console.log('unhandled sort type'); + return 0; + }; + }; + var compareFunc = null; + for(var i = 0; i < sorts.length; i++) compareFunc = getComparator(sorts[i].columnName, sorts[i].ascending, sorts[i].sortType, compareFunc); + + mergesort(data, 0, data.length, compareFunc); + } + + var ids = []; + for(i = 0; i < data.length; i++) ids[i] = data[i].index; + + return ids; + }; + + var getDate1 = function(text) { + var date = { valid: false }; + var sections = text.split('-'); + if(sections.length == 1) sections = text.split('/'); + if(sections.length != 3) return date; + date.year = Number(sections[0]); + date.month = Number(sections[1]); + date.day = Number(sections[2]); + date.valid = !isNaN(date.year); + date.valid &= !isNaN(date.month) && date.month > 0 && date.month <= 12; + date.valid &= !isNaN(date.day) && date.day > 0 && date.day <= daysPerMonth(date.month, date.year); + return date; + }; + + var getDate2 = function(text) { + var date = { valid: false }; + var sections = text.split('-'); + if(sections.length == 1) sections = text.split('/'); + if(sections.length != 3) return date; + date.month = Number(sections[0]); + date.day = Number(sections[1]); + date.year = Number(sections[2]); + date.valid = !isNaN(date.year); + date.valid &= !isNaN(date.month) && date.month > 0 && date.month <= 12; + date.valid &= !isNaN(date.day) && date.day > 0 && date.day <= daysPerMonth(date.month, date.year); + return date; + }; + + var daysPerMonth = function(month, year) { + if(month == 9 || month == 4 || month == 6 || month == 11) return 30; + if(month != 2) return 31; + + if(year % 4 != 0) return 28; + if(year % 100 != 0) return 29; + return year % 400 == 0 ? 29 : 28; + }; + + var applyFilter = function(repeaterId, data, eventInfo) { + var dataFiltered = []; + var filters = repeaterToFilters[repeaterId] || []; + if(filters.length != 0) { + var oldSrc = eventInfo.srcElement; + var oldThis = eventInfo.thiswidget; + + outer: + for(var i = 1; i <= data.length; i++) { + for(var j = 0; j < filters.length; j++) { + eventInfo.targetElement = _createElementId(repeaterId, i); + eventInfo.srcElement = filters[j].thisId; + eventInfo.thiswidget = $ax.getWidgetInfo(eventInfo.srcElement); + if($ax.expr.evaluateExpr(filters[j].filter, eventInfo) != 'true') continue outer; + } + dataFiltered[dataFiltered.length] = data[i - 1]; + } + + for(i = 0; i < dataFiltered.length; i++) data[i] = dataFiltered[i]; + while(data.length > dataFiltered.length) data.pop(); + + eventInfo.srcElement = oldSrc; + eventInfo.thiswidget = oldThis; + } + }; + + var _addFilter = function(repeaterId, label, filter, thisId) { + var filterList = repeaterToFilters[repeaterId]; + if(!filterList) repeaterToFilters[repeaterId] = filterList = []; + + var filterObj = { filter: filter, thisId: thisId }; + if(label) filterObj.label = label; + filterList[filterList.length] = filterObj; + }; + _repeaterManager.addFilter = _addFilter; + + var _removeFilter = function(repeaterId, label) { + var filterList = repeaterToFilters[repeaterId]; + // If no list, nothing to remove + if(!filterList) return; + + // If no label, remove everything + if(!label) { + repeaterToFilters[repeaterId] = []; + return; + } + + for(var i = filterList.length - 1; i >= 0; i--) { + var filterObj = filterList[i]; + if(filterObj.label && filterObj.label == label) $ax.splice(filterList, i, 1); + } + }; + _repeaterManager.removeFilter = _removeFilter; + + var _addSort = function(repeaterId, label, columnName, ascending, toggle, sortType) { + var sortList = repeaterToSorts[repeaterId]; + if(!sortList) repeaterToSorts[repeaterId] = sortList = []; + + for(var i = 0; i < sortList.length; i++) { + if(columnName == sortList[i].columnName) { + var lastSortObj = $ax.splice(sortList, i, 1)[0]; + if(toggle) ascending = !lastSortObj.ascending; + break; + } + } + + var sortObj = { columnName: columnName, ascending: ascending, sortType: sortType }; + + if(label) sortObj.label = label; + sortList[sortList.length] = sortObj; + }; + _repeaterManager.addSort = _addSort; + + var _removeSort = function(repeaterId, label) { + var sortList = repeaterToSorts[repeaterId]; + // If no list, nothing to remove + if(!sortList) return; + + // If no label, remove everything + if(!label) { + repeaterToSorts[repeaterId] = []; + return; + } + + for(var i = sortList.length - 1; i >= 0; i--) { + var sortObj = sortList[i]; + if(sortObj.label && sortObj.label == label) $ax.splice(sortList, i, 1); + } + }; + _repeaterManager.removeSort = _removeSort; + + var _setRepeaterToPage = function(repeaterId, type, value, eventInfo) { + var pageInfo = repeaterToPageInfo[repeaterId]; + // page doesn't matter if there is no limit. + if(pageInfo.noLimit) return; + + var dataSet = repeaterToActiveDataSet[repeaterId]; + if(!dataSet) dataSet = repeaterToCurrentDataSet[repeaterId]; + var lastPage = Math.ceil(dataSet.length / pageInfo.itemsPerPage); + + if(type == 'Value') { + var val = Number($ax.expr.evaluateExpr(value, eventInfo)); + // if invalid, default to 1, otherwise, clamp the value + if(isNaN(val)) val = 1; + else if(val < 1) val = 1; + else if(val > lastPage) val = lastPage; + + pageInfo.currPage = val; + } else if(type == 'Previous') { + if(pageInfo.currPage > 1) pageInfo.currPage--; + } else if(type == 'Next') { + if(pageInfo.currPage < lastPage) pageInfo.currPage++; + } else if(type == 'Last') { + pageInfo.currPage = lastPage; + } else { + console.log('Unknown type'); + } + }; + _repeaterManager.setRepeaterToPage = _setRepeaterToPage; + + var _setNoItemLimit = function(repeaterId) { + var pageInfo = repeaterToPageInfo[repeaterId]; + delete pageInfo.currPage; + delete pageInfo.itemsPerPage; + pageInfo.noLimit = true; + }; + _repeaterManager.setNoItemLimit = _setNoItemLimit; + + var _setItemLimit = function(repeaterId, value, eventInfo) { + var pageInfo = repeaterToPageInfo[repeaterId]; + + if(pageInfo.noLimit) { + pageInfo.noLimit = false; + pageInfo.currPage = 1; + } + + var oldTarget = eventInfo.targetElement; + eventInfo.targetElement = repeaterId; + var itemLimit = Number($ax.expr.evaluateExpr(value, eventInfo)); + eventInfo.targetElement = oldTarget; + if(isNaN(itemLimit)) itemLimit = 20; + else if(itemLimit < 1) itemLimit = 1; + pageInfo.itemsPerPage = itemLimit; + }; + _repeaterManager.setItemLimit = _setItemLimit; + + var removeItems = function(repeaterId) { + var elementIds = $ax.getChildElementIdsForRepeater(repeaterId); + for(var i = 0; i < elementIds.length; i++) $('#' + elementIds[i]).remove(); + $ax.visibility.clearLimboAndHiddenIds(elementIds); + $ax.clearItemsForRepeater(repeaterId); + }; + + var _getDataFromDataSet = function(repeaterId, itemId, propName, type) { + var itemNum = Number(itemId) - 1; + // Default to obj with text as empty string, as we don't generate the data for empty props + var data = repeaterToCurrentDataSet[repeaterId][itemNum][propName] || { text: '' }; + //For now text is always the default. May change this to depend on context. + return type == 'data' && data.type != 'text' ? data : (type && data[type]) || data['text']; + }; + _repeaterManager.getData = _getDataFromDataSet; + + _repeaterManager.hasData = function(id, propName) { + var repeaterId = $ax.getParentRepeaterFromScriptId(_getScriptIdFromElementId(id)); + return Boolean(repeaterToCurrentDataSet[repeaterId] && repeaterToCurrentDataSet[repeaterId].props.indexOf(propName) != -1); + }; + + var _addItemToDataSet = function(repeaterId, row, itemEventInfo) { + itemEventInfo.data = true; + var oldTarget = itemEventInfo.targetElement; + itemEventInfo.targetElement = repeaterId; + var dataSet = repeaterToLocalDataSet[repeaterId]; + + for(var propName in row) { + if(!row.hasOwnProperty(propName)) continue; + var prop = row[propName]; + if(prop.type == 'literal') { + var retval = $ax.expr.evaluateExpr(prop.literal, itemEventInfo); + if(typeof (retval) == 'string') retval = { type: 'text', text: retval }; + row[propName] = retval; + } + } + + itemEventInfo.targetElement = oldTarget; + dataSet[dataSet.length] = row; + itemEventInfo.data = false; + }; + _repeaterManager.addItem = _addItemToDataSet; + + var _deleteItemsFromDataSet = function(repeaterId, eventInfo, type, rule) { + var dataSet = repeaterToCurrentDataSet[repeaterId]; + var items; + + // Should always be this, marked, or rule. + if(type == 'this') items = [_getItemIdFromElementId(eventInfo.srcElement)]; + else if(type == 'marked') items = repeaterToEditItems[repeaterId]; + else { + // This should be rule + var visibleData = repeaterToActiveDataSet[repeaterId]; + var items = []; + var oldTarget = eventInfo.targetElement; + for(var i = 0; i < visibleData.length; i++) { + eventInfo.targetElement = _createElementId(repeaterId, visibleData[i].index); + if($ax.expr.evaluateExpr(rule, eventInfo).toLowerCase() != 'true') continue; + items.push(visibleData[i].index); + } + eventInfo.targetElement = oldTarget; + } + // Want them decending + items.sort(function(a, b) { return b - a; }); + + for(i = 0; i < items.length; i++) { + var itemId = items[i]; + $ax.splice(dataSet, itemId - 1, 1); + } + repeaterToEditItems[repeaterId] = []; + }; + _repeaterManager.deleteItems = _deleteItemsFromDataSet; + + var _updateEditItemsInDataSet = function(repeaterId, propMap, eventInfo, type, rule) { + var oldTarget = eventInfo.targetElement; + var dataSet = repeaterToCurrentDataSet[repeaterId]; + var items; + + // Should always be this, marked, or rule. + if(type == 'this') items = [_getItemIdFromElementId(eventInfo.srcElement)]; + else if(type == 'marked') items = repeaterToEditItems[repeaterId]; + else { + // This should be rule + var visibleData = repeaterToActiveDataSet[repeaterId]; + var items = []; + var oldTarget = eventInfo.targetElement; + for(var i = 0; i < visibleData.length; i++) { + eventInfo.targetElement = _createElementId(repeaterId, visibleData[i].index); + if($ax.expr.evaluateExpr(rule, eventInfo).toLowerCase() != 'true') continue; + items.push(visibleData[i].index); + } + eventInfo.targetElement = oldTarget; + } + + eventInfo.data = true; + for(var prop in propMap) { + if(!propMap.hasOwnProperty(prop)) continue; + var data = propMap[prop]; + for(var i = 0; i < items.length; i++) { + var item = items[i]; + if(data.type == 'literal') { + eventInfo.targetElement = _createElementId(repeaterId, item); + data = $ax.expr.evaluateExpr(data.literal, eventInfo); + if(typeof (data) == 'string') data = { type: 'text', text: data }; + } + dataSet[item - 1][prop] = data; + } + } + eventInfo.targetElement = oldTarget; + eventInfo.data = false; + }; + _repeaterManager.updateEditItems = _updateEditItemsInDataSet; + + var _getAllItemIds = function(repeaterId) { + var retval = []; + var currDataSet = repeaterToCurrentDataSet[repeaterId]; + for(var i = 0; i < currDataSet.length; i++) retval.push(i + 1); + return retval; + }; + _repeaterManager.getAllItemIds = _getAllItemIds; + + var _addEditItemToRepeater = function(repeaterId, itemIds) { + for(var i = 0; i < itemIds.length; i++) { + var itemId = Number(itemIds[i]); + var items = repeaterToEditItems[repeaterId]; + if(items.indexOf(itemId) == -1) items[items.length] = itemId; + } + }; + _repeaterManager.addEditItems = _addEditItemToRepeater; + + var _removeEditItemFromRepeater = function(repeaterId, itemIds) { + for(var i = 0; i < itemIds.length; i++) { + var itemId = itemIds[i]; + var items = repeaterToEditItems[repeaterId]; + var index = items.indexOf(Number(itemId)); + if(index != -1) $ax.splice(items, index, 1); + } + }; + _repeaterManager.removeEditItems = _removeEditItemFromRepeater; + + _repeaterManager.isEditItem = function(repeaterId, itemId) { + var items = repeaterToEditItems[repeaterId]; + return items.indexOf(itemId) != -1; + }; + + var _createElementId = function(scriptId, itemId) { + if(!itemId) return scriptId; + var sections = scriptId.split(/_(.+)?/); + var retval = sections[0] + '-' + itemId; + return sections.length > 1 ? retval + '_' + sections[1] : retval; + }; + _repeaterManager.createElementId = _createElementId; + + var _getElementId = function(scriptId, childId) { + var elementId = scriptId; + if($ax.getParentRepeaterFromScriptId(scriptId)) { + // Must be in the same item as the child + var itemId = $ax.repeater.getItemIdFromElementId(childId); + elementId = $ax.repeater.createElementId(scriptId, itemId); + } + return elementId; + }; + _repeaterManager.getElementId = _getElementId; + + var _getScriptIdFromElementId = function(elementId) { + if(!elementId) return elementId; + var sections = elementId.split('-'); + var retval = sections[0]; + if(sections.length <= 1) return retval; + sections = sections[1].split('_'); + return sections.length > 1 ? retval + '_' + sections[1] : retval; + }; + _repeaterManager.getScriptIdFromElementId = _getScriptIdFromElementId; + + var _getItemIdFromElementId = function(elementId) { + var sections = elementId.split('-'); + if(sections.length < 2) return ''; + sections = sections[1].split('_'); + return sections[0]; + }; + _repeaterManager.getItemIdFromElementId = _getItemIdFromElementId; + + // TODO: Just inline this if we keep it this way. + var _applySuffixToElementId = function(id, suffix) { + return id + suffix; + // return _createElementId(_getScriptIdFromElementId(id) + suffix, _getItemIdFromElementId(id)); + }; + _repeaterManager.applySuffixToElementId = _applySuffixToElementId; + + // var _getRepeaterSize = function(repeaterId) { + // var itemCount = ($ax.getItemIdsForRepeater(repeaterId) || []).length; + // if(itemCount == 0) return { width: 0, height: 0 }; + + // var repeater = $obj(repeaterId); + // // Width and height per item; + // var width = repeater.width; + // var height = repeater.height; + + // var viewId = $ax.adaptive.currentViewId || ''; + // var widthIncrement = width + _getAdaptiveProp(repeater.repeaterPropMap, 'horizontalSpacing', viewId); + // var heightIncrement = height + _getAdaptiveProp(repeater.repeaterPropMap, 'verticalSpacing', viewId); + + // var wrap = _getAdaptiveProp(repeater.repeaterPropMap, 'wrap', viewId); + // var vertical = _getAdaptiveProp(repeater.repeaterPropMap, 'vertical', viewId); + + // if(wrap == -1 || itemCount <= wrap) { + // if(vertical) height += heightIncrement * (itemCount - 1); + // else width += widthIncrement * (itemCount - 1); + // } else { + // var primaryDim = wrap; + // var secondaryDim = Math.ceil(itemCount / primaryDim); + + // if(vertical) { + // height += heightIncrement * (primaryDim - 1); + // width += widthIncrement * (secondaryDim - 1); + // } else { + // width += widthIncrement * (primaryDim - 1); + // height += heightIncrement * (secondaryDim - 1); + // } + // } + // return { width: width, height: height }; + // }; + // _repeaterManager.getRepeaterSize = _getRepeaterSize; + +}); + +// ******* Dynamic Panel Manager ******** // +$axure.internal(function($ax) { + // TODO: Probably a lot of the dynamic panel functions from pagescript should be moved here at some point... + var _dynamicPanelManager = $ax.dynamicPanelManager = {}; + + var _isIdFitToContent = _dynamicPanelManager.isIdFitToContent = function(id) { + var obj = $obj(id); + if(!obj || obj.type != 'dynamicPanel' || !obj.fitToContent) return false; + + var jobj = $jobj($ax.visibility.GetPanelState(id)); + return jobj.css('position') == 'relative'; + }; + + var _fitParentPanel = function(widgetId) { + // Find parent panel if there is one. + var parentPanelInfo = getParentPanel(widgetId); + if(!parentPanelInfo) { + // Get size for the body and html, and set the their height + _updateFitPanel(); + return; + } + + var parentId = parentPanelInfo.parent; + if(_updateFitPanel(parentId, parentPanelInfo.state)) _fitParentPanel(parentId); + }; + _dynamicPanelManager.fitParentPanel = _fitParentPanel; + + _dynamicPanelManager.initialize = function() { + _dynamicPanelManager.initFitPanels($ax('*')); + + $axure.resize(_handleResize); + _handleResize(); + }; + + _dynamicPanelManager.initFitPanels = function(query) { + var fitToContent = []; + query.each(function(obj, elementId) { + if(obj.type == 'dynamicPanel' && obj.fitToContent) fitToContent[fitToContent.length] = elementId; + }); + for(var i = fitToContent.length - 1; i >= 0; i--) { + var panelId = fitToContent[i]; + var stateCount = $obj(panelId).diagrams.length; + for(var j = 0; j < stateCount; j++) { + // Traverse through children to find what size it should be. + var stateId = $ax.repeater.applySuffixToElementId(panelId, '_state' + j); + var stateContentId = stateId + '_content'; + var stateQuery = $jobj(stateId); + var size = getContainerSize(stateContentId); + if(!$obj(panelId).percentWidth) stateQuery.width(size.width); + stateQuery.height(size.height); + } + } + }; + + var percentPanelToLeftCache = []; + var _lastWindowHeight = 0; + var percentPanelsInitialized = false; + var _handleResize = function() { + var newHeight = $(window).height(); + if(newHeight != _lastWindowHeight) { + _updateBodyHeight(); + _lastWindowHeight = newHeight; + } + + if(percentPanelsInitialized) { + for(var key in percentPanelToLeftCache) { + //could optimize to only update non-contained panels + _updatePanelPercentWidth(key); + } + } else { + $ax('*').each(function(obj, elementId) { + if(_isPercentWidthPanel(obj)) _updatePanelPercentWidth(elementId); + }); + percentPanelsInitialized = true; + } + }; + + var _isPercentWidthPanel = _dynamicPanelManager.isPercentWidthPanel = function(obj) { + return obj && obj.type == 'dynamicPanel' && obj.percentWidth; + }; + + _dynamicPanelManager.updatePanelContentPercentWidth = function(elementId) { + // if(_isPercentWidthPanel($obj(elementId))) return; + var stateChildrenQuery = $jobj(elementId).children('.panel_state'); + stateChildrenQuery.children('.panel_state_content').each( + function() { + $(this).children('.ax_dynamic_panel').each( + function() { _updatePanelPercentWidth(this.id); } + ); + } + ); + }; + + _dynamicPanelManager.updatePercentPanelCache = function(query) { + query.each(function(obj, elementId) { + if(_isPercentWidthPanel(obj)) { + if(_updatePercentPanelToLeftCache(obj, elementId, true)) { + _updatePanelPercentWidth(elementId); + } + } + }); + }; + + _dynamicPanelManager.resetFixedPanel = function(obj, domElement) { + if(obj.fixedHorizontal == 'center') domElement.style.marginLeft = ""; + if(obj.fixedVertical == 'middle') domElement.style.marginTop = ""; + }; + + _dynamicPanelManager.resetAdaptivePercentPanel = function(obj, domElement) { + if(!_isPercentWidthPanel(obj)) return; + + if(obj.fixedHorizontal == 'center') domElement.style.marginLeft = ""; + else if(obj.fixedHorizontal == 'right') domElement.style.width = ""; + }; + + var _updatePercentPanelToLeftCache = function(obj, elementId, overwrite) { + var wasUpdated = false; + var jObj = $jobj(elementId); + if(!percentPanelToLeftCache[elementId] || overwrite) { + if(obj.fixedHorizontal == 'center') percentPanelToLeftCache[elementId] = Number(jObj.css('margin-left').replace("px", "")); + else if(obj.fixedHorizontal == 'right') percentPanelToLeftCache[elementId] = jObj.width() + Number(jObj.css('right').replace("px", "")); + else percentPanelToLeftCache[elementId] = Number(jObj.css('left').replace("px", "")); + wasUpdated = true; + } + + if(obj.fixedHorizontal == 'right' && _isIdFitToContent(elementId)) { + var fitWidth = getContainerSize($ax.visibility.GetPanelState(elementId) + '_content').width; + percentPanelToLeftCache[elementId] = fitWidth + Number(jObj.css('right').replace("px", "")); + wasUpdated = true; + } + return wasUpdated; + }; + + var _updatePanelPercentWidth = _dynamicPanelManager.updatePanelPercentWidth = function(elementId) { + var obj = $obj(elementId); + if(!_isPercentWidthPanel(obj)) return; + + _updatePercentPanelToLeftCache(obj, elementId, false); + + var width; + var x; + + if(obj.fixedHorizontal) { + x = 0; + width = $(window).width(); + } else { + var parentPanelInfo = getParentPanel(elementId); + if(parentPanelInfo) { + var parentId = parentPanelInfo.parent; + width = $jobj(parentId).width(); + var parentObj = $obj(parentId); + if(parentObj.percentWidth) { + var stateId = $ax.repeater.applySuffixToElementId(parentId, '_state' + parentPanelInfo.state); + var stateContentId = stateId + '_content'; + x = -Number($jobj(stateContentId).css('margin-left').replace("px", "")); + } else x = 0; + } else { + var parentRepeater = $ax.getParentRepeaterFromScriptId($ax.repeater.getScriptIdFromElementId(elementId)); + if(parentRepeater) { + var itemId = $ax.repeater.getItemIdFromElementId(elementId); + var itemContainerId = $ax.repeater.createElementId(parentRepeater, itemId); + x = 0; + width = $jobj(itemContainerId).width(); + } else { + var $window = $(window); + width = $window.width(); + var bodyLeft = Number($('body').css('left').replace("px", "")); + var bodyWidth = Number($('body').css('width').replace("px", "")); + var isCenter = $ax.adaptive.getPageStyle().pageAlignment == 'center'; + width = Math.max(width, bodyWidth); + x = isCenter ? -(width - bodyWidth) / 2 - bodyLeft : 0; + } + } + } + + var jObj = $jobj(elementId); + if(obj.fixedHorizontal == 'left') jObj.css('left', x + 'px'); + else if(obj.fixedHorizontal == 'center') { + jObj.css('left', x + 'px'); + jObj.css('margin-left', 0 + 'px'); + } else jObj.css('left', x + 'px'); + + jObj.css('width', width + 'px'); + + var panelLeft = percentPanelToLeftCache[elementId]; + var stateChildrenQuery = jObj.children('.panel_state'); + stateChildrenQuery.css('width', width + 'px'); + + if(obj.fixedHorizontal == 'center') + stateChildrenQuery.children('.panel_state_content').css('left', '50%').css('margin-left', panelLeft + 'px'); + else if(obj.fixedHorizontal == 'right') + stateChildrenQuery.children('.panel_state_content').css('left', width - panelLeft + 'px'); + else stateChildrenQuery.children('.panel_state_content').css('margin-left', panelLeft - x + 'px'); + }; + + _dynamicPanelManager.updateAllFitPanels = function() { + var fitToContent = []; + $ax('*').each(function(obj, elementId) { + if(obj.type == 'dynamicPanel' && obj.fitToContent) fitToContent[fitToContent.length] = elementId; + }); + for(var i = fitToContent.length - 1; i >= 0; i--) { + var panelId = fitToContent[i]; + var stateCount = $obj(panelId).diagrams.length; + for(var j = 0; j < stateCount; j++) { + $ax.dynamicPanelManager.setFitToContentCss(panelId, true); + _updateFitPanel(panelId, j, true); + } + } + + // Make sure the page itself updates its size + _updateFitPanel(); + }; + + _dynamicPanelManager.setFitToContentCss = function(elementId, fitToContent, oldWidth, oldHeight) { + + if($ax.dynamicPanelManager.isIdFitToContent(elementId) == fitToContent) return; + + var panel = $jobj(elementId); + var stateCss; + var scrollbars = $obj(elementId).scrollbars; + + if(fitToContent) { + panel.attr('style', ''); + stateCss = {}; + stateCss.position = 'relative'; + if(scrollbars != 'none') { + stateCss.overflow = 'visible'; + stateCss['-webkit-overflow-scrolling'] = 'visible'; + } + if(scrollbars == 'verticalAsNeeded') { + stateCss['overflow-x'] = 'visible'; + stateCss['-ms-overflow-x'] = 'visible'; + } else if(scrollbars == 'horizontalAsNeeded') { + stateCss['overflow-y'] = 'visible'; + stateCss['-ms-overflow-y'] = 'visible'; + } + panel.children().css(stateCss); + } else { + var panelCss = { width: oldWidth, height: oldHeight }; + stateCss = { width: oldWidth, height: oldHeight }; + panelCss.overflow = 'hidden'; + stateCss.position = 'absolute'; + if(scrollbars != 'none') { + stateCss.overflow = 'auto'; + stateCss['-webkit-overflow-scrolling'] = 'touch'; + } + if(scrollbars == 'verticalAsNeeded') { + stateCss['overflow-x'] = 'hidden'; + stateCss['-ms-overflow-x'] = 'hidden'; + } else if(scrollbars == 'horizontalAsNeeded') { + stateCss['overflow-y'] = 'hidden'; + stateCss['-ms-overflow-y'] = 'hidden'; + } + panel.css(panelCss); + panel.children().css(stateCss); + } + }; + + // TODO: [ben] This should be used in a lot more places... + var _getPanelJobj = _dynamicPanelManager.getPanelJobj = function(id) { + // Try for container first + var container = $jobj(id + '_container'); + return container.length ? container : $jobj(id); + }; + + var _getShownState = function(id) { + var obj = $obj(id); + if(!obj || obj.type != 'dynamicPanel') return $jobj(id); + + var children = $jobj(id).children(); + for(var i = 0; i < children.length; i++) { + var child = children[i]; + if(child && child.style && child.style.display != 'none') return $jobj(child.id); + } + + return $jobj(id); + }; + + var _updateBodyHeight = function() { + // Get size for the body and html, and set the their height + var winHeight = $(window).height(); + var contentHeight = getContainerSize().height; + var height = winHeight >= contentHeight ? '100%' : contentHeight + 'px'; + $('body').css('height', height); + $('html').css('height', height); + }; + + var _updateFitPanel = function(panelId, stateIndex, initializingView) { + // If no panelId, then we are trying to update the body. + if(!panelId) { + _updateBodyHeight(); + return false; + } + + // Only fit if fitToContent is true + if(!$ax.dynamicPanelManager.isIdFitToContent(panelId)) return false; + + // Traverse through children to find what size it should be. + var stateId = $ax.repeater.applySuffixToElementId(panelId, '_state' + stateIndex); + var stateContentId = stateId + '_content'; + var stateQuery = $jobj(stateId); + var size = getContainerSize(stateContentId); + + // Skip if size hasn't changed + var oldWidth = stateQuery.width(); + var oldHeight = stateQuery.height(); + if(oldWidth == size.width && oldHeight == size.height) return false; + + if(!$obj(panelId).percentWidth) stateQuery.width(size.width); + stateQuery.height(size.height); + + //updatePercentWidth on all child panels + $jobj(stateContentId).children('.ax_dynamic_panel').each( + function() { _updatePanelPercentWidth(this.id); } + ); + + //do the following only if it is the current state + if(stateId != $ax.visibility.GetPanelState(panelId)) return false; + + if(!initializingView) _adjustFixed(panelId, oldWidth, oldHeight, size.width, size.height); + else if(stateIndex != 0) { + var state0 = $jobj($ax.repeater.applySuffixToElementId(panelId, '_state0')); + _adjustFixed(panelId, state0.width(), state0.height(), size.width, size.height); + } + + $ax.event.raiseSyntheticEvent(panelId, 'onResize'); + $ax.flyoutManager.updateFlyout(panelId); + + return true; + }; + _dynamicPanelManager.updateFitPanel = _updateFitPanel; + + var getParentPanel = function(widgetId, path) { + path = path || $ax.getPathFromScriptId($ax.repeater.getScriptIdFromElementId(widgetId)); + + var obj = $obj(widgetId); + if(obj.parentDynamicPanel) { + path[path.length - 1] = obj.parentDynamicPanel; + var parentId = $ax.getScriptIdFromPath(path); + parentId = $ax.repeater.getElementId(parentId, widgetId); + var parentObj = $obj(parentId); + var retVal = { parent: parentId }; + for(var i = 0; i < parentObj.diagrams.length; i++) { + var stateId = $ax.repeater.applySuffixToElementId(parentId, '_state' + i); + var stateQuery = $jobj(stateId); + if(stateQuery.find('#' + widgetId).length != 0) { + retVal.state = i; + break; + } + } + return retVal; + } + + if(path.length == 1) return undefined; + + path.pop(); + var parentMaster = $ax.getScriptIdFromPath(path); + parentMaster = $ax.repeater.getElementId(parentMaster, widgetId); + + return getParentPanel(parentMaster, path); + }; + + // TODO: May be a better location for this. Used currently for rdo and panel state containers + var getContainerSize = function(containerId) { + var containerQuery = containerId ? $jobj(containerId) : $('#base'); + var children = containerQuery.children(); + // Default size + var size = { width: 0, height: 0 }; + for(var i = 0; i < children.length; i++) { + var child = $(children[i]); + var childId = child.attr('id'); + if(!childId || $ax.visibility.limboIds[childId] || !$ax.visibility.IsIdVisible(childId)) continue; + + var childObj = $obj(childId); + // On the body there are some children that should be ignored, as they are not objects. + if(!childObj) continue; + + // Ignore fixed + if(childObj.type == 'dynamicPanel' && childObj.fixedHorizontal) continue; + + var position = { left: Number(child.css('left').replace('px', '')), top: Number(child.css('top').replace('px', '')) }; + + // Default width and height (adjusted for widgets that are special) + var width = child.width(); + var height = child.height(); + if(childObj.type == 'master') { + var masterSize = getContainerSize(childId); + width = masterSize.width; + height = masterSize.height; + // } else if(childObj.type == 'repeater') { + // var repeaterSize = $ax.repeater.getRepeaterSize(childId); + // width = repeaterSize.width; + // height = repeaterSize.height; + + // if(width == 0 && height == 0) continue; + + // position.left += childObj.x; + // position.top += childObj.y; + } else if(childObj.type == 'dynamicPanel') { + if($ax.dynamicPanelManager.isIdFitToContent(childId)) { + var stateQuery = $jobj($ax.visibility.GetPanelState(childId)); + width = stateQuery.width(); + height = stateQuery.height(); + } + } + + size.width = Math.max(size.width, position.left + width); + size.height = Math.max(size.height, position.top + height); + } + + return size; + }; + + var _adjustFixed = _dynamicPanelManager.adjustFixed = function(panelId, oldWidth, oldHeight, width, height) { + var loc = _getFixedPosition(panelId, oldWidth, oldHeight, width, height); + if(loc) { + $ax.action.addAnimation(panelId, function() { + $ax.move.MoveWidget(panelId, loc[0], loc[1], 'none', 0, false, null, true); + }); + } + }; + + var _getFixedPosition = _dynamicPanelManager.getFixedPosition = function(panelId, oldWidth, oldHeight, width, height) { + var panelObj = $obj(panelId); + var x = 0; + var y = 0; + if(panelObj.fixedHorizontal == 'center') { + x = (oldWidth - width) / 2; + } + if(panelObj.fixedVertical == 'middle') { + y = (oldHeight - height) / 2; + } + return x == 0 && y == 0 ? undefined : [x, y]; + }; + + _dynamicPanelManager.getFixedInfo = function(panelId) { + var panelObj = $obj(panelId); + if(!panelObj || panelObj.type != 'dynamicPanel') return {}; + var jobj = $jobj(panelId); + if(jobj.css('position') == 'absolute') return {}; + + var info = {}; + var horizontal = panelObj.fixedHorizontal; + if(!horizontal) return info; + + info.fixed = true; + info.horizontal = horizontal; + info.vertical = panelObj.fixedVertical; + + if(info.horizontal == 'left') info.x = Number(jobj.css('left').replace('px', '')); + else if(info.horizontal == 'center') info.x = Number(jobj.css('margin-left').replace('px', '')); + else if(info.horizontal == 'right') info.x = Number(jobj.css('right').replace('px', '')); + + if(info.vertical == 'top') info.y = Number(jobj.css('top').replace('px', '')); + else if(info.vertical == 'middle') info.y = Number(jobj.css('margin-top').replace('px', '')); + else if(info.vertical == 'bottom') info.y = Number(jobj.css('bottom').replace('px', '')); + + return info; + }; + + // Show isn't necessary if this is always done before toggling (which is currently true), but I don't want that + // change (if it happened) to break this. + var _compressToggle = function(id, vert, show, easing, duration) { + var panelJobj = _getPanelJobj(id); + var threshold = Number(panelJobj.css(vert ? 'top' : 'left').replace('px', '')); + var delta = _getShownState(id)[vert ? 'height' : 'width'](); + + if(!show) { + // Need to make threshold bottom/right + threshold += delta; + // Delta is in the opposite direction + delta *= -1; + } + + _compress(id, vert, threshold, delta, easing, duration); + }; + _dynamicPanelManager.compressToggle = _compressToggle; + + // Used when setting state of dynamic panel + var _compressDelta = function(id, oldState, newState, vert, easing, duration) { + var panelQuery = $jobj(id); + var oldQuery = $jobj(oldState); + var newQuery = $jobj(newState); + + var thresholdProp = vert ? 'top' : 'left'; + var thresholdOffset = vert ? 'height' : 'width'; + var threshold = Number(panelQuery.css(thresholdProp).replace('px', '')); + threshold += oldQuery[thresholdOffset](); + + var delta = newQuery[thresholdOffset]() - oldQuery[thresholdOffset](); + + var clampProp = vert ? 'left' : 'top'; + var clampOffset = vert ? 'width' : 'height'; + var clamp = [Number(panelQuery.css(clampProp).replace('px', ''))]; + clamp[1] = clamp[0] + Math.max(oldQuery[clampOffset](), newQuery[clampOffset]()); + + _compress(id, vert, threshold, delta, easing, duration, clamp); + }; + _dynamicPanelManager.compressDelta = _compressDelta; + + var _compress = function(id, vert, threshold, delta, easing, duration, clamp) { + if(!easing) { + easing = 'none'; + duration = 0; + } + var parent = $ax('#' + id).getParents()[0]; + var obj = $ax.getObjectFromElementId(parent); + while(obj && obj.type == 'referenceDiagramObject') { + parent = $ax('#' + parent).getParents()[0]; + obj = $ax.getObjectFromElementId(parent); + } + + var jobj = _getPanelJobj(id); + + // If below, a horizantal clamp, otherwise a vertical clamp + var clampProp = vert ? 'left' : 'top'; + var clampOffset = vert ? 'width' : 'height'; + if(!clamp) { + clamp = [Number(jobj.css(clampProp).replace('px', ''))]; + clamp[1] = clamp[0] + jobj[clampOffset](); + } + + // If clamps, threshold, or delta is not a number, can't compress. + if(isNaN(clamp[0]) || isNaN(clamp[1]) || isNaN(threshold) || isNaN(delta)) return; + + // Note: If parent is body, some of these aren't widgets + if(parent && $jobj(parent + '_content').length > 0) parent = parent + '_content'; + var children = $(parent ? '#' + parent : '#base').children(); + for(var i = 0; i < children.length; i++) { + var child = $(children[i]); + var childId = child.attr('id'); + // Don't move self, and check id to make sure it is a widget. + if(childId == id || !childId || childId[0] != 'u') continue; + var numbers = childId.substring(1).split('-'); + if(numbers.length < 1 || isNaN(Number(numbers[0])) || (numbers.length == 2 && isNaN(Number(numbers[1]))) || numbers.length > 2) continue; + + var markerProp = vert ? 'top' : 'left'; + var marker = Number(child.css(markerProp).replace('px', '')); + + var childClamp = [Number(child.css(clampProp).replace('px', ''))]; + + // Dynamic panels are not reporting correct size sometimes, so pull it from the state. Get shown state just returns the widget if it is not a dynamic panel. + var sizeChild = _getShownState(childId); + childClamp[1] = childClamp[0] + sizeChild[clampOffset](); + if(isNaN(marker) || isNaN(childClamp[0]) || isNaN(childClamp[1]) || + marker < threshold || childClamp[1] <= clamp[0] || childClamp[0] >= clamp[1]) continue; + + marker += delta; + + var props = {}; + props[markerProp] = marker; + if(easing == 'none') child.css(props); + else child.animate(props, duration, easing); + } + }; + + var _parentHandlesStyles = function(id) { + var parents = $ax('#' + id).getParents(true)[0]; + if(!parents) return false; + var directParent = true; + for(var i = 0; i < parents.length; i++) { + var parentId = parents[i]; + // Because state parent panel id is the active state, must strip off the end of it. + var itemId = $ax.repeater.getItemIdFromElementId(parentId); + parentId = parentId.split('_')[0]; + if(itemId) parentId = $ax.repeater.createElementId(parentId, itemId); + var parentObj = $obj(parentId); + if(parentObj.type != 'dynamicPanel') continue; + if(!parentObj.propagate) { + directParent = false; + continue; + } + return { id: parentId, direct: directParent }; + } + return false; + }; + _dynamicPanelManager.parentHandlesStyles = _parentHandlesStyles; + + var _propagateMouseOver = function(id, value) { + propagate(id, true, value); + }; + _dynamicPanelManager.propagateMouseOver = _propagateMouseOver; + + var _propagateMouseDown = function(id, value) { + propagate(id, false, value); + }; + _dynamicPanelManager.propagateMouseDown = _propagateMouseDown; + + var propagate = function(id, hover, value) { + var hoverChildren = function(children) { + if(!children) return; + for(var i = 0; i < children.length; i++) { + var elementId = children[i].id; + var obj = $obj(elementId); + if(obj.type == 'dynamicPanel' && !obj.propagate) continue; + + if(hover) $ax.style.SetWidgetHover(elementId, value); + else $ax.style.SetWidgetMouseDown(elementId, value); + $ax.annotation.updateLinkLocations($ax.style.GetTextIdFromShape(elementId)); + + hoverChildren(children[i].children); + } + }; + hoverChildren($ax('#' + id).getChildren(true)[0].children); + }; +}); diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/sto.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/sto.js" new file mode 100644 index 0000000..f635efa --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/sto.js" @@ -0,0 +1,204 @@ + +$axure.internal(function($ax) { + var funcs = {}; + + var weekday = new Array(7); + weekday[0] = "Sunday"; + weekday[1] = "Monday"; + weekday[2] = "Tuesday"; + weekday[3] = "Wednesday"; + weekday[4] = "Thursday"; + weekday[5] = "Friday"; + weekday[6] = "Saturday"; + + funcs.getDayOfWeek = function() { + return _getDayOfWeek(this.getDay()); + }; + + var _getDayOfWeek = $ax.getDayOfWeek = function(day) { + return weekday[day]; + }; + + var month = new Array(12); + month[0] = "January"; + month[1] = "February"; + month[2] = "March"; + month[3] = "April"; + month[4] = "May"; + month[5] = "June"; + month[6] = "July"; + month[7] = "August"; + month[8] = "September"; + month[9] = "October"; + month[10] = "November"; + month[11] = "December"; + + funcs.getMonthName = function() { + return _getMonthName(this.getMonth()); + }; + + var _getMonthName = $ax.getMonthName = function(monthNum) { + return month[monthNum]; + }; + + funcs.addYears = function(years) { + var retVal = new Date(this.valueOf()); + retVal.setFullYear(this.getFullYear() + Number(years)); + return retVal; + }; + + funcs.addMonths = function(months) { + var retVal = new Date(this.valueOf()); + retVal.setMonth(this.getMonth() + Number(months)); + return retVal; + }; + + funcs.addDays = function(days) { + var retVal = new Date(this.valueOf()); + retVal.setDate(this.getDate() + Number(days)); + return retVal; + }; + + funcs.addHours = function(hours) { + var retVal = new Date(this.valueOf()); + retVal.setHours(this.getHours() + Number(hours)); + return retVal; + }; + + funcs.addMinutes = function(minutes) { + var retVal = new Date(this.valueOf()); + retVal.setMinutes(this.getMinutes() + Number(minutes)); + return retVal; + }; + + funcs.addSeconds = function(seconds) { + var retVal = new Date(this.valueOf()); + retVal.setSeconds(this.getSeconds() + Number(seconds)); + return retVal; + }; + + funcs.addMilliseconds = function(milliseconds) { + var retVal = new Date(this.valueOf()); + retVal.setMilliseconds(this.getMilliseconds() + Number(milliseconds)); + return retVal; + }; + + var _stoHandlers = {}; + + _stoHandlers.literal = function(sto, scope, eventInfo) { + return sto.value; + }; + + //need angle bracket syntax because var is a reserved word + _stoHandlers['var'] = function(sto, scope, eventInfo) { + var retVal = scope[sto.name] || $ax.globalVariableProvider.getVariableValue(sto.name, eventInfo); + // Handle desired type here? + if((sto.desiredType == 'int' || sto.desiredType == 'float')) { + var num = new Number(retVal); + retVal = isNaN(num.valueOf()) ? retVal : num; + } + return retVal; + }; + + //TODO: Perhaps repeaterId can be detirmined at generation, and stored in the sto info. + _stoHandlers.item = function(sto, scope, eventInfo, prop) { + prop = prop || (eventInfo.data ? 'data' : eventInfo.link ? 'url' : eventInfo.image ? 'img' : 'text'); + var id = sto.isTarget || !$ax.repeater.hasData(eventInfo.srcElement, sto.name) ? eventInfo.targetElement : eventInfo.srcElement; + return getData(id, sto.name, prop); + }; + + var getData = function(id, name, prop) { + var repeaterId = $ax.getParentRepeaterFromScriptId($ax.repeater.getScriptIdFromElementId(id)); + var itemId = $ax.repeater.getItemIdFromElementId(id); + return $ax.repeater.getData(repeaterId, itemId, name, prop); + }; + + _stoHandlers.paren = function(sto, scope, eventInfo) { + return _evaluateSTO(sto.innerSTO, scope, eventInfo); + }; + + _stoHandlers.fCall = function(sto, scope, eventInfo) { + //TODO: [mas] handle required type + var thisObj = _evaluateSTO(sto.thisSTO, scope, eventInfo); + var args = []; + for(var i = 0; i < sto.arguments.length; i++) { + args[i] = _evaluateSTO(sto.arguments[i], scope, eventInfo); + } + var fn = thisObj[sto.func] || funcs[sto.func]; + return fn.apply(thisObj, args); + }; + + _stoHandlers.propCall = function(sto, scope, eventInfo) { + //TODO: [mas] handle required type + if((sto.prop == 'url' || sto.prop == 'img') && sto.thisSTO.sto == 'item') return _stoHandlers.item(sto.thisSTO, scope, eventInfo, sto.prop); + var thisObj = _evaluateSTO(sto.thisSTO, scope, eventInfo); + return thisObj[sto.prop]; + }; + + var _binOps = {}; + _binOps['+'] = function(left, right) { + if(left instanceof Date) return addDayToDate(left, right); + if(right instanceof Date) return addDayToDate(right, left); + return Number(left) + Number(right); + }; + _binOps['-'] = function(left, right) { + if(left instanceof Date) return addDayToDate(left, -right); + return left - right; + }; + _binOps['*'] = function(left, right) { return Number(left) * Number(right); }; + _binOps['/'] = function(left, right) { return Number(left) / Number(right); }; + _binOps['%'] = function(left, right) { return Number(left) % Number(right); }; + _binOps['=='] = function(left, right) { return _getBool(left) == _getBool(right); }; + _binOps['!='] = function(left, right) { return _getBool(left) != _getBool(right); }; + _binOps['<'] = function(left, right) { return Number(left) < Number(right); }; + _binOps['<='] = function(left, right) { return Number(left) <= Number(right); }; + _binOps['>'] = function(left, right) { return Number(left) > Number(right); }; + _binOps['>='] = function(left, right) { return Number(left) >= Number(right); }; + _binOps['&&'] = function(left, right) { return _getBool(left) && _getBool(right); }; + _binOps['||'] = function(left, right) { return _getBool(left) || _getBool(right); }; + + // TODO: Move this to generic place to be used. + var addDayToDate = function(date, days) { + var retVal = new Date(date.valueOf()); + retVal.setDate(date.getDate() + days); + return retVal; + }; + + var _unOps = {}; + _unOps['+'] = function(arg) { return +arg; }; + _unOps['-'] = function(arg) { return -arg; }; + _unOps['!'] = function(arg) { return !_getBool(arg); }; + + _stoHandlers.binOp = function(sto, scope, eventInfo) { + var left = _evaluateSTO(sto.leftSTO, scope, eventInfo); + var right = _evaluateSTO(sto.rightSTO, scope, eventInfo); + return _binOps[sto.op](left, right); + }; + + _stoHandlers.unOp = function(sto, scope, eventInfo) { + var input = _evaluateSTO(sto.inputSTO, scope, eventInfo); + return _unOps[sto.op](input); + }; + + var _getBool = function(val) { + var lowerVal = val.toLowerCase ? val.toLowerCase() : val; + return lowerVal == "false" ? false : lowerVal == "true" ? true : val; + }; + $ax.getBool = _getBool; + + var _evaluateSTO = function(sto, scope, eventInfo) { + if(sto.sto == 'error') return undefined; + return castSto(_stoHandlers[sto.sto](sto, scope, eventInfo), sto); + }; + $ax.evaluateSTO = _evaluateSTO; + + var castSto = function(val, sto) { + var type = sto.computedType || sto.desiredType; + if(type == 'string') val = String(val); + else if(type == 'date') val = new Date(val); + else if(type == 'int' || type == 'float') val = Number(val); + else if(type == 'bool') val = Boolean(val); + + return val; + }; +}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/style.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/style.js" new file mode 100644 index 0000000..e0a7ee5 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/style.js" @@ -0,0 +1,964 @@ +$axure.internal(function($ax) { + var _style = {}; + $ax.style = _style; + + var _disabledWidgets = {}; + var _selectedWidgets = {}; + + // A table to cache the outerHTML of the _rtf elements before the rollover state is applied. + var _originalTextCache = {}; + // A table to exclude the normal style from adaptive overrides + var _shapesWithSetRichText = {}; + + // just a listing of shape ids + var _adaptiveStyledWidgets = {}; + + var _setLinkStyle = function(id, styleName) { + var textId = $ax.style.GetTextIdFromLink(id); + var style = _computeAllOverrides(id, textId, styleName, $ax.adaptive.currentViewId); + if(!_originalTextCache[textId]) { + $ax.style.CacheOriginalText(textId); + } + if($.isEmptyObject(style)) return; + + var parentObjectCache = _originalTextCache[textId].styleCache; + + _transformTextWithVerticalAlignment(textId, function() { + var cssProps = _getCssStyleProperties(style); + $('#' + id).find('*').andSelf().each(function(index, element) { + element.setAttribute('style', parentObjectCache[element.id]); + _applyCssProps(element, cssProps); + }); + }); + }; + + var _resetLinkStyle = function(id) { + var textId = $ax.style.GetTextIdFromLink(id); + var parentObjectCache = _originalTextCache[textId].styleCache; + + _transformTextWithVerticalAlignment(textId, function() { + $('#' + id).find('*').andSelf().each(function(index, element) { + element.style.cssText = parentObjectCache[element.id]; + }); + }); + if($ax.event.mouseDownObjectId) { + $ax.style.SetWidgetMouseDown($ax.event.mouseDownObjectId, true); + } else if($ax.event.mouseOverObjectId) { + $ax.style.SetWidgetHover($ax.event.mouseOverObjectId, true); + } + }; + + $ax.style.SetLinkHover = function(id) { + _setLinkStyle(id, MOUSE_OVER); + }; + + $ax.style.SetLinkNotHover = function(id) { + _resetLinkStyle(id); + }; + + $ax.style.SetLinkMouseDown = function(id) { + _setLinkStyle(id, MOUSE_DOWN); + }; + + $ax.style.SetLinkNotMouseDown = function(id) { + _resetLinkStyle(id); + var style = _computeAllOverrides(id, $ax.event.mouseOverObjectId, MOUSE_OVER, $ax.adaptive.currentViewId); + + if(!$.isEmptyObject(style)) $ax.style.SetLinkHover(id); + //we dont do anything here because the widget not mouse down has taken over here + }; + + var _widgetHasState = function(id, state) { + if($ax.style.getElementImageOverride(id, state)) return true; + var diagramObject = $ax.getObjectFromElementId(id); + + var adaptiveIdChain = $ax.adaptive.getAdaptiveIdChain($ax.adaptive.currentViewId); + + for(var i = 0; i < adaptiveIdChain.length; i++) { + var viewId = adaptiveIdChain[i]; + var adaptiveStyle = diagramObject.adaptiveStyles[viewId]; + if(adaptiveStyle && adaptiveStyle.stateStyles && adaptiveStyle.stateStyles[state]) return true; + } + + if(diagramObject.style.stateStyles) return diagramObject.style.stateStyles[state]; + + return false; + }; + + // Returns what overrides the hover, or false if nothing. + var _hoverOverride = function(id) { + if($ax.style.IsWidgetDisabled(id)) return DISABLED; + if($ax.style.IsWidgetSelected(id)) return SELECTED; + var obj = $ax.getObjectFromElementId(id); + if(!obj.isContained) return false; + var path = $ax.getPathFromScriptId($ax.repeater.getScriptIdFromElementId(id)); + path[path.length - 1] = obj.parent.id; + var itemId = $ax.repeater.getItemIdFromElementId(id); + return _hoverOverride($ax.getElementIdFromPath(path, { itemNum: itemId })); + }; + + $ax.style.SetWidgetHover = function(id, value) { + var override = _hoverOverride(id); + if(override == DISABLED) return; + if(!_widgetHasState(id, MOUSE_OVER)) return; + + var valToSet = value || _isRolloverOverride(id); + var state = _generateMouseState(id, valToSet ? MOUSE_OVER : NORMAL, override == SELECTED); + _applyImageAndTextJson(id, state); + _updateElementIdImageStyle(id, state); + }; + + var _rolloverOverrides = []; + var _isRolloverOverride = function(id) { + return _rolloverOverrides.indexOf(id) != -1; + }; + + $ax.style.AddRolloverOverride = function(id) { + if(_isRolloverOverride(id)) return; + _rolloverOverrides[_rolloverOverrides.length] = id; + if($ax.event.mouseOverIds.indexOf(id) == -1) $ax.style.SetWidgetHover(id, true); + }; + + $ax.style.RemoveRolloverOverride = function(id) { + var index = _rolloverOverrides.indexOf(id); + if(index == -1) return; + $ax.splice(_rolloverOverrides, index, 1); + if($ax.event.mouseOverIds.indexOf(id) == -1) $ax.style.SetWidgetHover(id, false); + }; + + // function GetWidgetCurrentState(id) { + // if($ax.style.IsWidgetDisabled(id)) return "disabled"; + // if($ax.style.IsWidgetSelected(id)) return "selected"; + // if($ax.event.mouseOverObjectId == id) return "mouseOver"; + // if($ax.event.mouseDownObjectId == id) return "mouseDown"; + + // return "normal"; + // } + + $ax.style.ObjHasMouseDown = function(id) { + var obj = $obj(id); + return $ax.style.getElementImageOverride(id, 'mouseDown') || obj.style && obj.style.stateStyles && obj.style.stateStyles.mouseDown; + }; + + $ax.style.SetWidgetMouseDown = function(id, value) { + if($ax.style.IsWidgetDisabled(id)) return; + if(!_widgetHasState(id, MOUSE_DOWN)) return; + + // ApplyImageAndTextJson(id, value ? 'mouseDown' : !$.isEmptyObject(GetStyleForState(id, null, 'mouseOver')) ? 'mouseOver' : 'normal'); + var state = _generateMouseState(id, value ? MOUSE_DOWN : MOUSE_OVER, $ax.style.IsWidgetSelected(id)); + _applyImageAndTextJson(id, state); + _updateElementIdImageStyle(id, state); + }; + + var _generateMouseState = function(id, mouseState, selected) { + if(selected) { + var viewChain = $ax.adaptive.getAdaptiveIdChain($ax.adaptive.currentViewId); + viewChain[viewChain.length] = ''; + var obj = $obj(id); + + var any = function(dict) { + for(var key in dict) return true; + return false; + }; + + for(var i = 0; i < viewChain.length; i++) { + var viewId = viewChain[i]; + // Need to check seperately for images. + if((obj.adaptiveStyles && obj.adaptiveStyles[viewId] && any(obj.adaptiveStyles[viewId])) || obj.images['selected~' + viewId]) return SELECTED; + } + var selectedStyle = obj.style && obj.style.stateStyles && obj.style.stateStyles.selected; + if(selectedStyle && any(selectedStyle)) return SELECTED; + } + + // Not using selected + return mouseState; + }; + + $ax.style.SetWidgetSelected = function(id, value, alwaysApply) { + if($ax.style.IsWidgetDisabled(id)) return; + + if(value) { + var group = $('#' + id).attr('selectiongroup'); + if(group) { + $("[selectiongroup='" + group + "']").each(function() { + var otherId = this.id; + if(otherId == id) return; + $ax.style.SetWidgetSelected(otherId, false); + }); + } + } + + var obj = $obj(id); + if(obj) { + if(obj.type == 'dynamicPanel') { + var children = $axure('#' + id).getChildren()[0].children; + for(var i = 0; i < children.length; i++) { + var childId = children[i]; + // Special case for trees + var childObj = $jobj(childId); + if(childObj.hasClass('treeroot')) { + var treenodes = childObj.find('.treenode'); + for(var j = 0; j < treenodes.length; j++) { + $axure('#' + treenodes[j].id).selected(value); + } + } else $axure('#' + childId).selected(value); + } + } else { + while(obj.isContained && !_widgetHasState(id, 'selected')) obj = obj.parent; + var itemId = $ax.repeater.getItemIdFromElementId(id); + var path = $ax.getPathFromScriptId($ax.repeater.getScriptIdFromElementId(id)); + path[path.length - 1] = obj.id; + id = $ax.getElementIdFromPath(path, { itemNum: itemId }); + if(alwaysApply || _widgetHasState(id, SELECTED)) { + var state = _generateSelectedState(id, value); + _applyImageAndTextJson(id, state); + _updateElementIdImageStyle(id, state); + } + } + } + + // ApplyImageAndTextJson(id, value ? 'selected' : 'normal'); + _selectedWidgets[id] = value; + }; + + var _generateSelectedState = function(id, selected) { + var mouseState = $ax.event.mouseDownObjectId == id ? MOUSE_DOWN : $ax.event.mouseOverIds.indexOf(id) != -1 ? MOUSE_OVER : NORMAL; + return _generateMouseState(id, mouseState, selected); + }; + + $ax.style.IsWidgetSelected = function(id) { + return Boolean(_selectedWidgets[id]); + }; + + $ax.style.SetWidgetEnabled = function(id, value) { + _disabledWidgets[id] = !value; + $('#' + id).find('a').css('cursor', value ? 'pointer' : 'default'); + + if(!_widgetHasState(id, DISABLED)) return; + if(!value) { + _applyImageAndTextJson(id, DISABLED); + _updateElementIdImageStyle(id, DISABLED); + } else $ax.style.SetWidgetSelected(id, $ax.style.IsWidgetSelected(id), true); + }; + + $ax.style.SetWidgetPlaceholder = function(id, value, text, password) { + var inputId = $ax.repeater.applySuffixToElementId(id, '_input'); + + // Right now this is the only style on the widget. If other styles (ex. Rollover), are allowed + // on TextBox/TextArea, or Placeholder is applied to more widgets, this may need to do more. + var obj = $jobj(inputId); + if(!value) { + obj.attr('style', ''); + if(password) document.getElementById(inputId).type = 'password'; + } else { + var style = _computeAllOverrides(id, undefined, HINT, $ax.adaptive.currentViewId); + var styleProperties = _getCssStyleProperties(style); + + //moved this out of GetCssStyleProperties for now because it was breaking un/rollovers with gradient fills + if(style.fill) styleProperties.runProps.backgroundColor = _getColorFromFill(style.fill); + + _applyCssProps($('#' + inputId)[0], styleProperties); + if(password) document.getElementById(inputId).type = 'text'; + } + obj.val(text); + }; + + var _isWidgetDisabled = $ax.style.IsWidgetDisabled = function(id) { + return Boolean(_disabledWidgets[id]); + }; + + var _elementIdsToImageOverrides = {}; + $ax.style.mapElementIdToImageOverrides = function(elementId, override) { + _elementIdsToImageOverrides[elementId] = override; + }; + + $ax.style.deleteElementIdToImageOverride = function(elementId) { + delete _elementIdsToImageOverrides[elementId]; + }; + + $ax.style.getElementImageOverride = function(elementId, state) { + var url = _elementIdsToImageOverrides[elementId] && _elementIdsToImageOverrides[elementId][state]; + return url; + }; + + $ax.style.elementHasAnyImageOverride = function(elementId) { + return Boolean(_elementIdsToImageOverrides[elementId]); + }; + + var NORMAL = 'normal'; + var MOUSE_OVER = 'mouseOver'; + var MOUSE_DOWN = 'mouseDown'; + var SELECTED = 'selected'; + var DISABLED = 'disabled'; + var HINT = 'hint'; + + var _generateState = _style.generateState = function(id) { + return _style.IsWidgetDisabled(id) ? DISABLED : _generateSelectedState(id, _style.IsWidgetSelected(id)); + }; + + var _progessState = _style.progessState = function(state) { + if(state == NORMAL) return false; + if(state == MOUSE_DOWN) return MOUSE_OVER; + return NORMAL; + }; + + var _updateElementIdImageStyle = _style.updateElementIdImageStyle = function(elementId, state) { + if(!_style.elementHasAnyImageOverride(elementId)) return; + + if(!state) state = _generateState(elementId); + + + var style = $obj(elementId).style; + var stateStyle = state == NORMAL ? style : style && style.stateStyles && style.stateStyles[state]; + if(!stateStyle && !_style.getElementImageOverride(elementId, state)) { + state = _progessState(state); + if(state) _updateElementIdImageStyle(elementId, state); + return; + } + + var computedStyle = _style.computeAllOverrides(elementId, undefined, state, $ax.adaptive.currentViewId); + + var query = $jobj($ax.repeater.applySuffixToElementId(elementId, '_img')); + var borderId = $ax.repeater.applySuffixToElementId(elementId, '_border'); + var borderQuery = $jobj(borderId); + if(!borderQuery.length) { + borderQuery = $('
    '); + borderQuery.attr('id', borderId); + query.after(borderQuery); + } + + borderQuery.attr('style', ''); + borderQuery.css('position', 'absolute'); + query.attr('style', ''); + + var borderWidth = computedStyle.borderWidth; + if(borderWidth) { + borderQuery.css('border-style', 'solid'); + borderQuery.css('border-width', borderWidth + 'px'); + borderQuery.css('width', style.size.width - borderWidth * 2); + borderQuery.css('height', style.size.height - borderWidth * 2); + } + + var linePattern = computedStyle.linePattern; + if(linePattern) borderQuery.css('border-style', linePattern); + + var borderFill = computedStyle.borderFill; + if(borderFill) { + var color = borderFill.fillType == 'solid' ? borderFill.color : + borderFill.fillType == 'linearGradient' ? borderFill.colors[0].color : 0; + + var alpha = Math.floor(color / 256 / 256 / 256); + color -= alpha * 256 * 256 * 256; + alpha = alpha / 255; + + var red = Math.floor(color / 256 / 256); + color -= red * 256 * 256; + var green = Math.floor(color / 256); + var blue = color - green * 256; + + borderQuery.css('border-color', _rgbaToFunc(red, green, blue, alpha)); + } + + var cornerRadiusTopLeft = computedStyle.cornerRadiusTopLeft; + if(cornerRadiusTopLeft) { + query.css('border-radius', cornerRadiusTopLeft + 'px'); + borderQuery.css('border-radius', cornerRadiusTopLeft + 'px'); + } + + var outerShadow = computedStyle.outerShadow; + if(outerShadow && outerShadow.on) { + var arg = ''; + arg += outerShadow.offsetX + 'px' + ' ' + outerShadow.offsetY + 'px' + ' '; + var rgba = outerShadow.color; + arg += outerShadow.blurRadius + 'px' + ' 0px ' + _rgbaToFunc(rgba.r, rgba.g, rgba.b, rgba.a); + query.css('-moz-box-shadow', arg); + query.css('-wibkit-box-shadow', arg); + query.css('box-shadow', arg); + query.css('width', style.size.width); + query.css('height', style.size.height); + query.css('left', '0px'); + query.css('top', '0px'); + } + }; + + var _rgbaToFunc = function(red, green, blue, alpha) { + return 'rgba(' + red + ',' + green + ',' + blue + ',' + alpha + ')'; + }; + + //function $ax.style.GetTextIdFromShape(id) { + // return $.grep( + // $('#' + id).children().map(function (i, obj) { return obj.id; }), // all the child ids + // function (item) { return item.indexOf(id) < 0; })[0]; // that are not similar to the parent + //} + + var _getButtonShape = function(id) { + var obj = $obj(id); + + // some treeNodeObjects don't have button shapes + return $jobj(obj.type == 'treeNodeObject' && obj.buttonShapeId ? $ax.getElementIdFromPath([obj.buttonShapeId], { relativeTo: id }) : id); + }; + + var _getTextIdFromShape = $ax.style.GetTextIdFromShape = function(id) { + return _getButtonShape(id).find('.text').attr('id'); + }; + + $ax.style.GetTextIdFromLink = function(id) { + return $jobj(id).parentsUntil('.text').parent().attr('id'); + }; + + var _getShapeIdFromText = $ax.style.GetShapeIdFromText = function(id) { + if(!id) return undefined; // this is to prevent an infinite loop. + //return $jobj(id).parent().attr('id'); + var current = $jobj(id).parent(); + while(!current.is("body")) { + var id = current.attr('id'); + if(id && id != 'base') return id; + current = current.parent(); + } + + return undefined; + }; + + $ax.style.GetImageIdFromShape = function(id) { + var image = _getButtonShape(id).find('img[id$=img]'); + if(!image.length) image = $jobj(id).find('img[id$=image_sketch]'); + return image.attr('id'); + }; + + var _applyImageAndTextJson = function(id, event) { + var textId = $ax.style.GetTextIdFromShape(id); + _resetTextJson(id, textId); + + // This should never be the case + //if(event != '') { + var imgQuery = $jobj($ax.style.GetImageIdFromShape(id)); + var e = imgQuery.data('events'); + if(e && e[event]) imgQuery.trigger(event); + + var imageUrl = $ax.adaptive.getImageForStateAndView(id, event); + if(imageUrl) _applyImage(id, imageUrl, event); + + var style = _computeAllOverrides(id, undefined, event, $ax.adaptive.currentViewId); + if(!$.isEmptyObject(style)) { + _applyTextStyle(textId, style); + } + }; + + + /* ------------------- + + here's the algorithm in a nutshell: + [DOWN] -- refers to navigation down the view inheritance heirarchy (default to most specific) + [UP] -- navigate up the heirarchy + + ComputeAllOverrides (object): + All view styles [DOWN] + If hyperlink + - DO ComputeStateStyle for parent object + - if (MouseOver || MouseDown) + - linkMouseOver Style + - if (MouseDown) + - linkMouseDown style + - ComputeStateStyleForViewChain (parent, STATE) + + if (MouseDown) DO ComputeStateStyleForViewChain for object, mouseOver + DO ComputeStateStyleForViewChain for object, style + + + ComputeStateStyleForViewChain (object, STATE) + FIRST STATE state style [UP] the chain OR default object STATE style + + ------------------- */ + + var FONT_PROPS = { + 'typeface': true, + 'fontName': true, + 'fontWeight': true, + 'fontStyle': true, + 'fontStretch': true, + 'fontSize': true, + 'underline': true, + 'foreGroundFill': true, + 'horizontalAlignment': true + }; + + var _computeAllOverrides = $ax.style.computeAllOverrides = function(id, parentId, state, currentViewId) { + var computedStyle = {}; + + var diagramObject = $ax.getObjectFromElementId(id); + var viewIdChain = $ax.adaptive.getAdaptiveIdChain(currentViewId); + + var excludeFont = _shapesWithSetRichText[id]; + for(var i = 0; i < viewIdChain.length; i++) { + var viewId = viewIdChain[i]; + var style = diagramObject.adaptiveStyles[viewId]; + if(style) { + // we want to exclude the normal font style for shapes where the rich text has been set with an interaction + // so we copy the style so we don't modify the original, then delete all the font props. + if(excludeFont) { + style = $ax.deepCopy(style); + for(var prop in FONT_PROPS) delete style[prop]; + } + + if(style) { + var customStyle = style.baseStyle && $ax.document.stylesheet.stylesById[style.baseStyle]; + //make sure not to extend the customStyle this can mutate it for future use + $.extend(computedStyle, customStyle); + } + $.extend(computedStyle, style); + } + } + + var isHyperlink = Boolean(parentId); + var currState = state; + while(state) { + if(isHyperlink && (currState == MOUSE_DOWN || currState == MOUSE_OVER)) { + var key = currState == MOUSE_OVER ? 'hyperlinkMouseOver' : 'hyperlinkMouseDown'; + $.extend(computedStyle, $ax.document.stylesheet.defaultStyles[key]); + } + $.extend(computedStyle, _computeStateStyleForViewChain(diagramObject, currState, viewIdChain, true)); + state = _progessState(state); + } + + return _removeUnsupportedProperties(computedStyle, diagramObject.type); + }; + + var _computeStateStyleForViewChain = function(diagramObject, state, viewIdChain, excludeNormal) { + var styleObject = diagramObject; + while(styleObject.isContained) styleObject = styleObject.parent; + + var adaptiveStyles = styleObject.adaptiveStyles; + + for(var i = viewIdChain.length - 1; i >= 0; i--) { + var viewId = viewIdChain[i]; + var viewStyle = adaptiveStyles[viewId]; + var stateStyle = viewStyle && _getFullStateStyle(viewStyle, state, excludeNormal); + if(stateStyle) return $.extend({}, stateStyle); + } + + // we dont want to actually include the object style because those are not overrides, hence the true for "excludeNormal" and not passing the val through + var stateStyleFromDefault = _getFullStateStyle(styleObject.style, state, true); + return $.extend({}, stateStyleFromDefault); + }; + + // returns the full effective style for an object in a state state and view + var _computeFullStyle = function(id, state, currentViewId) { + var obj = $obj(id); + var overrides = _computeAllOverrides(id, undefined, state, currentViewId); + // todo: account for image box + var objStyle = obj.style; + var customStyle = objStyle.baseStyle && $ax.document.stylesheet.stylesById[objStyle.baseStyle]; + var returnVal = $.extend({}, $ax.document.stylesheet.defaultStyles[obj.styleType], customStyle, objStyle, overrides); + return _removeUnsupportedProperties(returnVal, obj.type); + }; + + var _removeUnsupportedProperties = function(style, objectType) { + // for now all we need to do is remove padding from checkboxes and radio buttons + if(objectType == 'radioButton' || objectType == 'checkbox') { + style.paddingTop = 0; + style.paddingLeft = 0; + style.paddingRight = 0; + style.paddingBottom = 0; + } + return style; + }; + + var _getFullStateStyle = function(style, state, excludeNormal) { + //'normal' is needed because now DiagramObjects get their image from the Style and unapplying a rollover needs the image + var stateStyle = state == 'normal' && !excludeNormal ? style : style && style.stateStyles && style.stateStyles[state]; + if(stateStyle) { + var customStyle = stateStyle.baseStyle && $ax.document.stylesheet.stylesById[stateStyle.baseStyle]; + //make sure not to extend the customStyle this can mutate it for future use + return $.extend({}, customStyle, stateStyle); + } + return undefined; + }; + + // commented this out for now... we actually will probably need it for ie + var _applyOpacityFromStyle = $ax.style.applyOpacityFromStyle = function(id, style) { + return; + var opacity = style.opacity || ''; + $jobj(id).children().css('opacity', opacity); + }; + + var _initialize = function() { + $ax.style.initializeObjectTextAlignment($ax('*')); + }; + $ax.style.initialize = _initialize; + + var _initTextAlignment = function(elementId) { + var textId = _getTextIdFromShape(elementId); + _storeIdToAlignProps(textId); + // now handle vertical alignment + if(_getObjVisible(textId)) { + _setTextAlignment(textId, _idToAlignProps[textId], false); + } + }; + + $ax.style.initializeObjectTextAlignment = function(query) { + query.filter(function(diagramObject) { + return diagramObject.type == 'buttonShape' || diagramObject.type == 'flowShape' || diagramObject.type == 'imageBox'; + }).each(function(diagramObject, elementId) { + if($jobj(elementId).length == 0) return; + _initTextAlignment(elementId); + }); + }; + + var _storeIdToAlignProps = function(textId) { + var shapeId = _getShapeIdFromText(textId); + var state = _generateState(shapeId); + + var style = _computeFullStyle(shapeId, state, $ax.adaptive.currentViewId); + var vAlign = style.verticalAlignment || 'middle'; + var paddingTop = style.paddingTop || 0; + var paddingBottom = style.paddingBottom || 0; + _idToAlignProps[textId] = { vAlign: vAlign, paddingTop: paddingTop, paddingBottom: paddingBottom }; + }; + + var ALL_STATES = ['mouseOver', 'mouseDown', 'selected', 'disabled']; + var _applyImage = $ax.style.applyImage = function(id, imgUrl, state) { + var imgQuery = $jobj($ax.style.GetImageIdFromShape(id)); + var idQuery = $jobj(id); + + var _updateClass = function() { + for(var i = 0; i < ALL_STATES.length; i++) { + idQuery.removeClass(ALL_STATES[i]); + imgQuery.removeClass(ALL_STATES[i]); + } + if(state != 'normal') { + idQuery.addClass(state); + imgQuery.addClass(state); + } + }; + + if(imgQuery.attr('src') != imgUrl) { + imgQuery[0].onload = function() { + _updateClass(); + imgQuery[0].onload = undefined; + }; + } else { + _updateClass(); + } + + imgQuery.attr('src', imgUrl); + if(imgQuery.parents('a.basiclink').length > 0) imgQuery.css('border', 'none'); + if(imgUrl.indexOf(".png") > -1) $ax.utils.fixPng(imgQuery[0]); + }; + + var _resetTextJson = function(id, textid) { + // reset the opacity + $jobj(id).children().css('opacity', ''); + + var cacheObject = _originalTextCache[textid]; + if(cacheObject) { + _transformTextWithVerticalAlignment(textid, function() { + var styleCache = cacheObject.styleCache; + var textQuery = $('#' + textid); + textQuery.find('*').each(function(index, element) { + element.style.cssText = styleCache[element.id]; + }); + }); + } + }; + + // Preserves the alingment for the element textid after executing transformFn + + var _getRtfElementHeight = function(rtfElement) { + if(rtfElement.innerHTML == '') rtfElement.innerHTML = ' '; + + // To handle render text as image + var images = $(rtfElement).children('img'); + if(images.length) return images.height(); + return rtfElement.offsetHeight; + }; + + // why microsoft decided to default to round to even is beyond me... + var _roundToEven = function(number) { + var numString = number.toString(); + var parts = numString.split('.'); + if(parts.length == 1) return number; + if(parts[1].length == 1 && parts[1] == '5') { + var wholePart = Number(parts[0]); + return wholePart % 2 == 0 ? wholePart : wholePart + 1; + } else return Math.round(number); + }; + + var _transformTextWithVerticalAlignment = $ax.style.transformTextWithVerticalAlignment = function(textId, transformFn) { + if(!_originalTextCache[textId]) { + $ax.style.CacheOriginalText(textId); + } + + var rtfElement = window.document.getElementById(textId); + if(!rtfElement) return; + + transformFn(); + + _storeIdToAlignProps(textId); + + $ax.style.updateTextAlignmentForVisibility(textId); + }; + + // this is for vertical alignments set on hidden objects + var _idToAlignProps = {}; + + $ax.style.updateTextAlignmentForVisibility = function(textId) { + var alignProps = _idToAlignProps[textId]; + if(!alignProps || !_getObjVisible(textId)) return; + + _setTextAlignment(textId, alignProps); + }; + + var _getObjVisible = _style.getObjVisible = function(id) { + return $('#' + id).css('visibility') != 'hidden'; + }; + + var _setTextAlignment = function(textId, alignProps, updateProps) { + if(updateProps) { + _storeIdToAlignProps(textId); + } + if(!alignProps) return; + + var vAlign = alignProps.vAlign; + var paddingTop = Number(alignProps.paddingTop); + var paddingBottom = Number(alignProps.paddingBottom); + + var textObj = $jobj(textId); + var textHeight = _getRtfElementHeight(textObj[0]); + var textObjParent = textObj.parent(); + var containerHeight = textObjParent.height(); + + var newTop = 0; + if(vAlign == "middle") { + newTop = _roundToEven((containerHeight - textHeight + paddingTop - paddingBottom) / 2); + } else if(vAlign == "bottom") { + newTop = _roundToEven(containerHeight - textHeight - paddingBottom); + } else { // else top align + newTop = _roundToEven(paddingTop); + } + + var oldTop = $jobj(textId).css('top').replace('px', ''); + if(oldTop != newTop) { + textObj.css('top', newTop + 'px'); + _updateTransformOrigin(textId); + } + }; + + var _updateTransformOrigin = function(textId) { + var textObj = $jobj(textId); + var transformOrigin = textObj.css('-webkit-transform-origin') || + textObj.css('-moz-transform-origin') || + textObj.css('-ms-transform-origin') || + textObj.css('transform-origin'); + if(transformOrigin) { + var textObjParent = textObj.parent(); + var newX = (textObjParent.width() / 2 - textObj.css('left').replace('px', '')); + var newY = (textObjParent.height() / 2 - textObj.css('top').replace('px', '')); + var newOrigin = newX + 'px ' + newY + 'px'; + textObj.css('-webkit-transform-origin', newOrigin); + textObj.css('-moz-transform-origin', newOrigin); + textObj.css('-ms-transform-origin', newOrigin); + textObj.css('transform-origin', newOrigin); + } + }; + + $ax.style.clearAdaptiveStyles = function() { + for(var shapeId in _adaptiveStyledWidgets) { + var elementIds = [shapeId]; + var repeaterId = $ax.getParentRepeaterFromScriptId(shapeId); + if(repeaterId) { + var itemIds = $ax.getItemIdsForRepeater(repeaterId); + elementIds = []; + for(var i = 0; i < itemIds; i++) elementIds.push($ax.repeater.createElementId(shapeId, itemIds[i])); + } + for(var index = 0; index < elementIds.length; index++) { + var elementId = elementIds[index]; + var textId = $ax.style.GetTextIdFromShape(elementId); + _resetTextJson(elementId, textId); + _applyImageAndTextJson(elementId, $ax.style.generateState(elementId)); + } + } + + _adaptiveStyledWidgets = {}; + }; + + $ax.style.setAdaptiveStyle = function(shapeId, style) { + _adaptiveStyledWidgets[$ax.repeater.getScriptIdFromElementId(shapeId)] = style; + + var textId = $ax.style.GetTextIdFromShape(shapeId); + _applyTextStyle(textId, style); + + // removing this for now + // if(style.location) { + // $jobj(shapeId).css('top', style.location.x + "px") + // .css('left', style.location.y + "px"); + // } + }; + + //------------------------------------------------------------------------- + // _applyTextStyle + // + // Applies a rollover style to a text element. + // id : the id of the text object to set. + // styleProperties : an object mapping style properties to values. eg: + // { 'fontWeight' : 'bold', + // 'fontStyle' : 'italic' } + //------------------------------------------------------------------------- + var _applyTextStyle = function(id, style) { + _transformTextWithVerticalAlignment(id, function() { + var styleProperties = _getCssStyleProperties(style); + $('#' + id).find('*').each(function(index, element) { + _applyCssProps(element, styleProperties); + }); + }); + }; + + var _applyCssProps = function(element, styleProperties) { + var nodeName = element.nodeName.toLowerCase(); + if(nodeName == 'p') { + var parProps = styleProperties.parProps; + for(var prop in parProps) element.style[prop] = parProps[prop]; + } else if(nodeName != 'a') { + var runProps = styleProperties.runProps; + for(prop in runProps) element.style[prop] = runProps[prop]; + } + }; + + var _getCssShadow = function(shadow) { + return shadow.on + ? shadow.offsetX + "px " + shadow.offsetY + "px " + shadow.blurRadius + "px " + _getCssColor(shadow.color) + : ""; + }; + + var _getCssStyleProperties = function(style) { + var toApply = {}; + toApply.runProps = {}; + toApply.parProps = {}; + + if(style.fontName) toApply.runProps.fontFamily = style.fontName; + // we need to set font size on both runs and pars because otherwise it well mess up the measure and thereby vertical alignment + if(style.fontSize) toApply.runProps.fontSize = toApply.parProps.fontSize = style.fontSize; + if(style.fontWeight !== undefined) toApply.runProps.fontWeight = style.fontWeight; + if(style.fontStyle !== undefined) toApply.runProps.fontStyle = style.fontStyle; + if(style.underline !== undefined) toApply.runProps.textDecoration = style.underline ? 'underline' : 'none'; + if(style.foreGroundFill) { + toApply.runProps.color = _getColorFromFill(style.foreGroundFill); + if(style.foreGroundFill.opacity) toApply.runProps.opacity = style.foreGroundFill.opacity; + } + if(style.horizontalAlignment) toApply.parProps.textAlign = style.horizontalAlignment; + if(style.lineSpacing) toApply.parProps.lineHeight = style.lineSpacing; + if(style.textShadow) { + var cssShadow = _getCssShadow(style.textShadow); + toApply.parProps.textShadow = cssShadow; // we need this dumb hyphe + } + + return toApply; + }; + + var _getColorFromFill = function(fill) { + var fillString = '00000' + fill.color.toString(16); + return '#' + fillString.substring(fillString.length - 6); + }; + + var _getCssColor = function(rgbaObj) { + return "rgba(" + rgbaObj.r + ", " + rgbaObj.g + ", " + rgbaObj.b + ", " + rgbaObj.a + ")"; + }; + + // //-------------------------------------------------------------------------- + // // ApplyStyleRecursive + // // + // // Applies a style recursively to all span and div tags including elementNode + // // and all of its children. + // // + // // element : the element to apply the style to + // // styleName : the name of the style property to set (eg. 'font-weight') + // // styleValue : the value of the style to set (eg. 'bold') + // //-------------------------------------------------------------------------- + // function ApplyStyleRecursive(element, styleName, styleValue) { + // var nodeName = element.nodeName.toLowerCase(); + + // if (nodeName == 'div' || nodeName == 'span' || nodeName == 'p') { + // element.style[styleName] = styleValue; + // } + + // for (var i = 0; i < element.childNodes.length; i++) { + // ApplyStyleRecursive(element.childNodes[i], styleName, styleValue); + // } + // } + + // //--------------------------------------------------------------------------- + // // ApplyTextProperty + // // + // // Applies a text property to rtfElement. + // // + // // rtfElement : the the root text element of the rtf object (this is the + // // element named _rtf + // // prop : the style property to set. + // // value : the style value to set. + // //--------------------------------------------------------------------------- + // function ApplyTextProperty(rtfElement, prop, value) { + // /* + // var oldHtml = rtfElement.innerHTML; + // if (prop == 'fontWeight') { + // rtfElement.innerHTML = oldHtml.replace(/< *b *\/?>/gi, ""); + // } else if (prop == 'fontStyle') { + // rtfElement.innerHTML = oldHtml.replace(/< *i *\/?>/gi, ""); + // } else if (prop == 'textDecoration') { + // rtfElement.innerHTML = oldHtml.replace(/< *u *\/?>/gi, ""); + // } + // */ + + // for (var i = 0; i < rtfElement.childNodes.length; i++) { + // ApplyStyleRecursive(rtfElement.childNodes[i], prop, value); + // } + // } + //} + + //--------------------------------------------------------------------------- + // GetAndCacheOriginalText + // + // Gets the html for the pre-rollover state and returns the Html representing + // the Rich text. + //--------------------------------------------------------------------------- + var CACHE_COUNTER = 0; + + $ax.style.CacheOriginalText = function(textId, hasRichTextBeenSet) { + var rtfQuery = $('#' + textId); + if(rtfQuery.length > 0) { + + var styleCache = {}; + rtfQuery.find('*').each(function(index, element) { + var elementId = element.id; + if(!elementId) element.id = elementId = 'cache' + CACHE_COUNTER++; + styleCache[elementId] = element.style.cssText; + }); + + _originalTextCache[textId] = { + styleCache: styleCache + }; + if(hasRichTextBeenSet) { + var shapeId = _getShapeIdFromText(textId); + _shapesWithSetRichText[shapeId] = true; + } + } + }; + + $ax.style.ClearCacheForRepeater = function(repeaterId) { + for(var elementId in _originalTextCache) { + var scriptId = $ax.repeater.getScriptIdFromElementId(elementId); + if($ax.getParentRepeaterFromScriptId(scriptId) == repeaterId) delete _originalTextCache[elementId]; + } + }; + + + + $ax.style.prefetch = function() { + var scriptIds = $ax.getAllScriptIds(); + var image = new Image(); + for(var i = 0; i < scriptIds.length; i++) { + var obj = $obj(scriptIds[i]); + if(obj.type != 'imageBox') continue; + var images = obj.images; + for(var key in images) image.src = images[key]; + } + }; +}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/tree.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/tree.js" new file mode 100644 index 0000000..b4af3ae --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/tree.js" @@ -0,0 +1,168 @@ +// This is actually for BOTH trees and menus +$axure.internal(function($ax) { + var _tree = $ax.tree = {}; + var _menu = $ax.menu = {}; + + $ax.menu.InitializeSubmenu = function(subMenuId, cellId) { + var $submenudiv = $('#' + subMenuId); + + //mouseenter and leave for parent table cell + $('#' + cellId).mouseenter(function(e) { + //show current submenu + $ax.visibility.SetIdVisible(subMenuId, true); + $ax.legacy.BringToFront(subMenuId); + }).mouseleave(function(e) { + var offset = $submenudiv.offset(); + var subcontwidth = $submenudiv.width(); + var subcontheight = $submenudiv.height(); + //If mouse is not within the submenu (added 3 pixel margin to top and left calculations), then close the submenu... + if(e.pageX + 3 < offset.left || e.pageX > offset.left + subcontwidth || e.pageY + 3 < offset.top || e.pageY > offset.top + subcontheight) { + $submenudiv.find('.sub_menu').andSelf().each(function() { + $ax.visibility.SetVisible(this, false); + }); + $ax.style.SetWidgetHover(cellId, false); + } + }); + + $submenudiv.css('display', 'none'); + + //mouseleave for submenu + $submenudiv.mouseleave(function(e) { + //close this menu and all menus below it + $(this).find('.sub_menu').andSelf().css({ 'visibility': 'hidden', 'display': 'none' }); + $ax.style.SetWidgetHover(cellId, false); + }); + }; + + function IsNodeVisible(nodeId) { + var current = window.document.getElementById(nodeId); + var parent = current.parentNode; + + //move all the parent's children that are below the node and their annotations + while(!$(current).hasClass("treeroot")) { + if(!$ax.visibility.IsVisible(parent)) return false; + current = parent; + parent = parent.parentNode; + } + return true; + } + + $ax.tree.ExpandNode = function(nodeId, childContainerId, plusMinusId) { + var container = window.document.getElementById(childContainerId); + if($ax.visibility.IsVisible(container)) return; + $ax.visibility.SetVisible(container, true); + + if(plusMinusId != '') $ax.style.SetWidgetSelected(plusMinusId, true); + + var delta = _getExpandCollapseDelta(nodeId, childContainerId); + + var isVisible = IsNodeVisible(nodeId); + var current = window.document.getElementById(nodeId); + var parent = current.parentNode; + + //move all the parent's children that are below the node and their annotations + while(!$(current).hasClass("treeroot")) { + var after = false; + var i = 0; + for(i = 0; i < parent.childNodes.length; i++) { + var child = parent.childNodes[i]; + if(after && child.id && $(child).hasClass("treenode")) { + var elementId = child.id; + child.style.top = Number($(child).css('top').replace("px", "")) + delta + 'px'; + var ann = window.document.getElementById(elementId + "_ann"); + if(ann) ann.style.top = Number($(ann).css('top').replace("px", "")) + delta + 'px'; + } + if(child == current) after = true; + } + current = parent; + parent = parent.parentNode; + if(!isVisible && $ax.visibility.IsVisible(parent)) break; + } + }; + + $ax.tree.CollapseNode = function(nodeId, childContainerId, plusMinusId) { + var container = window.document.getElementById(childContainerId); + if(!$ax.visibility.IsVisible(container)) return; + + if(plusMinusId != '') $ax.style.SetWidgetSelected(plusMinusId, false); + + var delta = _getExpandCollapseDelta(nodeId, childContainerId); + + //hide it after getting the delta, otherwise the delta can't be calculated (offsetParent is null) + $ax.visibility.SetVisible(container, false); + + var isVisible = IsNodeVisible(nodeId); + var current = window.document.getElementById(nodeId); + var parent = current.parentNode; + + //move all the parent's children that are below the node and their annotations + while(!$(current).hasClass("treeroot")) { + var after = false; + var i = 0; + for(i = 0; i < parent.childNodes.length; i++) { + var child = parent.childNodes[i]; + if(after && child.id && $(child).hasClass("treenode")) { + var elementId = child.id; + child.style.top = Number($(child).css('top').replace("px", "")) - delta + 'px'; + var ann = window.document.getElementById(elementId + "_ann"); + if(ann) ann.style.top = Number($(ann).css('top').replace("px", "")) - delta + 'px'; + } + if(child == current) after = true; + } + current = parent; + parent = current.parentNode; + if(!isVisible && $ax.visibility.IsVisible(parent)) break; + } + }; + + var _getExpandCollapseDelta = function(nodeId, childContainerId) { + return _getChildContainerHeightHelper(childContainerId); + }; + + var _getChildContainerHeightHelper = function(childContainerId) { + var height = 0; + $('#' + childContainerId).children().each(function() { + if($(this).hasClass("treenode")) { + height += $(this).height(); + var subContainer = window.document.getElementById(this.id + '_children'); + if(subContainer && $ax.visibility.IsVisible(subContainer)) { + height += _getChildContainerHeightHelper(subContainer.id); + } + } + }); + return height; + }; + + $ax.tree.InitializeTreeNode = function(nodeId, plusminusid, childContainerId, selectText) { + var childContainer = window.document.getElementById(childContainerId); + if(childContainer) { + //relying on the html generator to put this inline so we know to collapse by default + var isCollapsed = childContainer.style.visibility == "hidden"; + if(isCollapsed) $ax.visibility.SetVisible(childContainer, false); + + if(!isCollapsed && plusminusid != '') $ax.style.SetWidgetSelected(plusminusid, true); + } + + if(plusminusid != '') { + $jobj(plusminusid).click(function() { + var visibleSet = $ax.visibility.IsIdVisible(childContainerId); + + if(visibleSet) $ax.tree.CollapseNode(nodeId, childContainerId, plusminusid); + else $ax.tree.ExpandNode(nodeId, childContainerId, plusminusid); + $ax.tree.SelectTreeNode(nodeId, true); + + return false; + }).css('cursor', 'default'); + } + }; + + var _getButtonShapeId = function(id) { + var obj = $obj(id); + return obj.type == 'treeNodeObject' ? $ax.getElementIdFromPath([obj.buttonShapeId], { relativeTo: id }) : id; + }; + + $ax.tree.SelectTreeNode = function(id, selected) { + $ax.style.SetWidgetSelected(_getButtonShapeId(id), selected); + }; + +}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/utils.temp.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/utils.temp.js" new file mode 100644 index 0000000..a582012 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/utils.temp.js" @@ -0,0 +1,100 @@ +// ******* Deep Copy ******** // +$axure.internal(function($ax) { + // TODO: [ben] Ah, infinite loops cause major issues here. Tried saving objects we've already hit, but that didn't seem to work (at least at my first shot). + var _deepCopy = function(original, trackCopies) { + if(trackCopies) { + var index = _getCopyIndex(original); + if(index != -1) return _originalToCopy[index][1]; + } + var isArray = original instanceof Array; + var isObject = !(original instanceof Function) && (original instanceof Object); + if(!isArray && !isObject) return original; + var copy = isArray ? [] : { }; + if(trackCopies) _originalToCopy.push([original, copy]); + isArray ? deepCopyArray(original, trackCopies, copy) : deepCopyObject(original, trackCopies, copy); + return copy; + }; + $ax.deepCopy = _deepCopy; + + // Hacky way to copy event info. Copying dragInfo causes major issues due to infinite loops + // Hashmap doesn't map objects well. It just toStrings them, making them all the same key. This has to be slow... + var _originalToCopy = []; + var _getCopyIndex = function(original) { + for(var i = 0; i < _originalToCopy.length; i++) if(original == _originalToCopy[i][0]) return i; + return -1; + }; + + $ax.eventCopy = function(eventInfo) { + var dragInfo = eventInfo.dragInfo; + delete eventInfo.dragInfo; + var copy = _deepCopy(eventInfo, true); + copy.dragInfo = dragInfo; + eventInfo.dragInfo = dragInfo; + // reset the map. + _originalToCopy = []; + + return copy; + }; + + var deepCopyArray = function(original, trackCopies, copy) { + for(var i = 0; i < original.length; i++) { + copy[i] = _deepCopy(original[i], trackCopies); + } + }; + + var deepCopyObject = function(original, trackCopies, copy) { + for(var key in original) { + if(!original.hasOwnProperty(key)) continue; + copy[key] = _deepCopy(original[key], trackCopies); + } + }; + + // Our implementation of splice because it is broken in IE8... + $ax.splice = function(array, startIndex, count) { + var retval = []; + if(startIndex >= array.length || startIndex < 0) return retval; + if(!count || startIndex + count > array.length) count = array.length - startIndex; + for(var i = 0; i < count; i++) retval[i] = array[startIndex + i]; + for(i = startIndex + count; i < array.length; i++) array[i - count] = array[i]; + for(i = 0; i < count; i++) array.pop(); + return retval; + }; +}); + + + +// ******* Flow Shape Links ******** // +$axure.internal(function($ax) { + + if(!$ax.document.configuration.linkFlowsToPages && !$ax.document.configuration.linkFlowsToPagesNewWindow) return; + + $(window.document).ready(function() { + $ax(function(dObj) { return dObj.type == 'flowShape' && dObj.referencePageUrl; }).each(function(dObj, elementId) { + + var elementIdQuery = $('#' + elementId); + + if($ax.document.configuration.linkFlowsToPages) { + elementIdQuery.css("cursor", "pointer"); + elementIdQuery.click(function() { + $ax.navigate({ + url: dObj.referencePageUrl, + target: "current", + includeVariables: true + }); + }); + } + + if($ax.document.configuration.linkFlowsToPagesNewWindow) { + $('#' + elementId + "_ref").append("
    "); + $('#' + elementId + "PagePopup").click(function() { + $ax.navigate({ + url: dObj.referencePageUrl, + target: "new", + includeVariables: true + }); + }); + } + }); + }); + +}); diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/variables.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/variables.js" new file mode 100644 index 0000000..443fe8a --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/variables.js" @@ -0,0 +1,156 @@ +// ******* GLOBAL VARIABLE PROVIDER ******** // +$axure.internal(function($ax) { + var _globalVariableValues = {}; + + var _globalVariableProvider = {}; + $ax.globalVariableProvider = _globalVariableProvider; + + var setVariableValue = function(variable, value, suppressBroadcast) { + if(!(value instanceof Object)) { + value = value.toString(); + //truncate values to prevent overflows. + if(value.length > 300) { + value = value.substring(0, 300); + } + } + + variable = variable.toLowerCase(); + _globalVariableValues[variable] = value; + + if(suppressBroadcast !== true) { + var varData = { + globalVarName: variable, + globalVarValue: value.toString() + }; + + $axure.messageCenter.postMessage('setGlobalVar', varData); + } + + //Post global var values only if pageData is loaded (suppresses exception which occurs when page loads) + if($ax.pageData) { + _postGlobalVarVals(); + } + }; + _globalVariableProvider.setVariableValue = setVariableValue; + + var getVariableValue = function(variable, eventInfo, ignoreDefaultsForLinkUrl) { + variable = variable.toLowerCase(); + if(_globalVariableValues[variable] !== undefined) { + //If this is for the GetLinkUrl function and + //the current value of the global variable is the same as the default defined in the document, don't return it + if(ignoreDefaultsForLinkUrl == true && $ax.document.globalVariables[variable] == _globalVariableValues[variable]) { + return null; + } + + return _globalVariableValues[variable]; + } + if($ax.document.globalVariables[variable] !== undefined) return ignoreDefaultsForLinkUrl == true ? null : $ax.document.globalVariables[variable]; + switch(variable) { + case "pagename": return $ax.pageData.page.name; + + case "now": return new Date(); + case "gendate": return $ax.pageData.generationDate; + + case "dragx": return $ax.drag.GetDragX(); + case "dragy": return $ax.drag.GetDragY(); + case "totaldragx": return $ax.drag.GetTotalDragX(); + case "totaldragy": return $ax.drag.GetTotalDragY(); + case "dragtime": return $ax.drag.GetDragTime(); + + case "math": return Math; + + case "window": return eventInfo && eventInfo.window; + case "this": return eventInfo && eventInfo.thiswidget; + case "item": return (eventInfo && eventInfo.item && eventInfo.item.valid && eventInfo.item) || getVariableValue('targetitem', eventInfo, ignoreDefaultsForLinkUrl); + case "targetitem": return eventInfo && eventInfo.targetElement && $ax.getItemInfo(eventInfo.targetElement); + case "repeater": return eventInfo && eventInfo.repeater; + case "target": return eventInfo && eventInfo.targetElement && $ax.getWidgetInfo(eventInfo.targetElement); + case "cursor": return eventInfo && eventInfo.cursor; + default: + var gen = variable.substr(0, 3) == "gen"; + var date = gen ? $ax.pageData.generationDate : new Date(); + var prop = gen ? variable.substr(3) : variable; + switch(prop) { + case "day": return date.getDate(); + case "month": return date.getMonth() + 1; + case "monthname": return $ax.getMonthName(date.getMonth()); + case "dayofweek": return $ax.getDayOfWeek(date.getDay()); + case "year": return date.getFullYear(); + case "time": return date.toLocaleTimeString(); + case "hours": return date.getHours(); + case "minutes": return date.getMinutes(); + case "seconds": return date.getSeconds(); + default: return ''; + } + } + }; + _globalVariableProvider.getVariableValue = getVariableValue; + + var load = function() { + var csum = false; + + var query = (window.location.href.split("#")[1] || ''); //hash.substring(1); Firefox decodes this so & in variables breaks + if(query.length > 0) { + var vars = query.split("&"); + for(var i = 0; i < vars.length; i++) { + var pair = vars[i].split("="); + var varName = pair[0]; + var varValue = pair[1]; + if(varName) { + if(varName == 'CSUM') { + csum = true; + } else setVariableValue(varName, decodeURIComponent(varValue), true); + } + } + + if(!csum && query.length > 250) { + window.alert('Prototype Warning: The variable values were too long to pass to this page.\nIf you are using IE, using Firefox will support more data.'); + } + } + }; + + var getLinkUrl = function(baseUrl) { + var toAdd = ''; + var definedVariables = _getDefinedVariables(); + for(var i = 0; i < definedVariables.length; i++) { + var key = definedVariables[i]; + var val = getVariableValue(key, undefined, true); + if(val != null && val.length > 0) { + if(toAdd.length > 0) toAdd += '&'; + toAdd += key + '=' + encodeURIComponent(val); + } + } + return toAdd.length > 0 ? baseUrl + '#' + toAdd + "&CSUM=1" : baseUrl; + }; + _globalVariableProvider.getLinkUrl = getLinkUrl; + + var _getDefinedVariables = function() { + return $ax.pageData.variables; + }; + _globalVariableProvider.getDefinedVariables = _getDefinedVariables; + + var _postGlobalVarVals = function() { + var retVal = {}; + var definedVariables = _getDefinedVariables(); + for(var i = 0; i < definedVariables.length; i++) { + var key = definedVariables[i]; + var val = getVariableValue(key); + if(val != null) { + retVal[key] = val; + } + } + + $ax.messageCenter.postMessage('globalVariableValues', retVal); + }; + + $ax.messageCenter.addMessageListener(function(message, data) { + if(message == 'getGlobalVariables') { + _postGlobalVarVals(); + } else if(message == 'resetGlobalVariables') { + _globalVariableValues = {}; + _postGlobalVarVals(); + } + }); + + load(); +}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/viewer.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/viewer.js" new file mode 100644 index 0000000..ff3dbc5 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/viewer.js" @@ -0,0 +1,53 @@ +// ******* SITEMAP TOOLBAR VIEWER ACTIONS ******** // +$axure.internal(function ($ax) { + var userTriggeredEventNames = ['onClick','onDoubleClick','onMouseOver','onMouseMove','onMouseOut','onMouseDown','onMouseUp','onKeyDown','onKeyUp','onFocus','onLostFocus','onTextChange','onSelectionChange','onCheckedChange','onSwipeLeft','onSwipeRight','onSwipeUp','onSwipeDown','onDragStart','onDrag','onDragDrop','onScroll','onContextMenu','onMouseHover','onLongClick']; + + $ax.messageCenter.addMessageListener(function (message, data) { + //If annotation toggle message received from sitemap, toggle footnotes + if (message == 'annotationToggle') { + if (data == true) { + $('div.annotation').show(); + $('div.annnotelabel').show(); + $('div.annnoteimage').show(); + } else { + $('div.annotation').hide(); + $('div.annnotelabel').hide(); + $('div.annnoteimage').hide(); + } + } + }); + + $ax.messageCenter.addMessageListener(function (message, data) { + if (message == 'highlightInteractive') { + //Do condition to check if legacy browser (all IE, except 10) and select appropriate pulsate css class name + var userAgentString = navigator.userAgent.toLowerCase(); + + var isIEpre10 = userAgentString.indexOf('msie 9.') != -1 || + userAgentString.indexOf('msie 8.') != -1 || + userAgentString.indexOf('msie 7.') != -1 || + userAgentString.indexOf('msie 6.') != -1; + + var pulsateClassName = isIEpre10 ? 'legacyPulsateBorder' : 'pulsateBorder'; + + //Find all widgets with a defined userTriggeredEventName specified in the array above + var $matchingElements = $ax(function (obj) { + if (obj.interactionMap) { + for (var index in userTriggeredEventNames) { + if (obj.interactionMap[userTriggeredEventNames[index]]) return true; + } + } + return false; + }).$(); + + var isHighlighted = $matchingElements.is('.' + pulsateClassName); + var enableHighlight = data == true; + + //Toggle the pulsate class on the matched elements + if (enableHighlight && !isHighlighted) { + $matchingElements.addClass(pulsateClassName); + } else if (!enableHighlight && isHighlighted) { + $matchingElements.removeClass(pulsateClassName); + } + } + }); +}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/visibility.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/visibility.js" new file mode 100644 index 0000000..12e5a0b --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axure/visibility.js" @@ -0,0 +1,410 @@ +$axure.internal(function($ax) { + var document = window.document; + var _visibility = {}; + $ax.visibility = _visibility; + + var _defaultHidden = {}; + var _defaultLimbo = {}; + + // ****************** Visibility and State Functions ****************** // + + var _isIdVisible = $ax.visibility.IsIdVisible = function(id) { + return $ax.visibility.IsVisible(window.document.getElementById(id)); + }; + + $ax.visibility.IsVisible = function(element) { + //cannot use css('visibility') because that gets the effective visiblity + //e.g. won't be able to set visibility on panels inside hidden panels + return element.style.visibility != 'hidden'; + }; + + $ax.visibility.SetIdVisible = function(id, visible) { + $ax.visibility.SetVisible(window.document.getElementById(id), visible); + // Hide lightbox if necessary + if(!visible) { + $jobj($ax.repeater.applySuffixToElementId(id, '_lightbox')).remove(); + $ax.flyoutManager.unregisterPanel(id, true); + } + }; + + $ax.visibility.SetVisible = function(element, visible) { + //todo -- ahhhh! I really don't want to add this, I don't know why it is necessary (right now sliding panel state out then in then out breaks + //and doesn't go hidden on the second out if we do not set display here. + element.style.display = visible ? '' : 'none'; + element.style.visibility = visible ? 'visible' : 'hidden'; + }; + + var _setWidgetVisibility = $ax.visibility.SetWidgetVisibility = function(elementId, options) { + if(_limboIds[elementId]) return; // do nothing if we set visibility on a limbo id + + var parentId = $jobj(elementId).parent().attr('id'); + _setVisibility(parentId, elementId, options); + + //set the visibility of the annotation box as well if it exists + var ann = document.getElementById(elementId + "_ann"); + if(ann) _visibility.SetVisible(ann, options.value); + + //set ref visibility for ref of flow shape, if that exists + var ref = document.getElementById(elementId + '_ref'); + if(ref) _visibility.SetVisible(ref, options.value); + }; + + var _setVisibility = function(parentId, childId, options) { + var widget = $jobj(childId); + + var visible = $ax.visibility.IsIdVisible(childId); + + if(visible == options.value) { + $ax.action.fireAnimationFromQueue(childId); + return; + } + + var child = $jobj(childId); + var parent = parentId ? $jobj(parentId) : child.parent(); + + var needContainer = options.easing && options.easing != 'none'; + var cullPosition = options.cull ? options.cull.css('position') : ''; + + if(needContainer) { + var fixedInfo = $ax.dynamicPanelManager.getFixedInfo(childId); + var containerId = childId + '_container'; + var container = _makeContainer(containerId, options.cull || child, fixedInfo); + container.insertBefore(child); + child.appendTo(container); + + if(!options.settingChild) { + child.css({ + position: 'absolute', + left: 0, + top: 0, + 'margin-left': 0, + 'margin-top': 0 + }); + } + } + + var onComplete = function() { + if(needContainer) { + var css = {}; + if(fixedInfo.fixed) { + css.position = 'fixed'; + + if(fixedInfo.horizontal == 'left') css.left = fixedInfo.x; + else if(fixedInfo.horizontal == 'center') { + css.left = '50%'; + css['margin-left'] = fixedInfo.x; + } else if(fixedInfo.horizontal == 'right') { + css.left = 'auto'; + css.right = fixedInfo.x; + } + + if(fixedInfo.vertical == 'top') css.top = fixedInfo.y; + else if(fixedInfo.vertical == 'middle') { + css.top = '50%'; + css['margin-top'] = fixedInfo.y; + } else if(fixedInfo.vertical == 'bottom') { + css.top = 'auto'; + css.bottom = fixedInfo.y; + } + } else { + css.top = Number(container.css('top').replace('px', '')) || 0; + css.left = Number(container.css('left').replace('px', '')) || 0; + } + + child.insertBefore(container); + container.remove(); + child.css(css); + + if(options.cull) options.cull.css('position', cullPosition); + } + options.onComplete && options.onComplete(); + if(options.fire) { + $ax.event.raiseSyntheticEvent(childId, options.value ? 'onShow' : 'onHide'); + $ax.action.fireAnimationFromQueue(childId); + } + }; + + var size = options.size || (needContainer ? child : parent); + if(!options.easing || options.easing == 'none') { + $ax.visibility.SetIdVisible(childId, options.value); + onComplete(); + } else if(options.easing == 'fade') { + if(options.value) { + // Can't use $ax.visibility.SetIdVisible, because we only want to set visible, we don't want to display, fadeIn will handle that. + widget.css('visibility', 'visible'); + widget.fadeIn(options.duration, onComplete); + } else { + // Fading here is being retarded... + widget.animate({ opacity: 0 }, options.duration, 'swing', function() { + $ax.visibility.SetIdVisible(childId, false); + widget.css('opacity', ''); + + onComplete(); + }); + } + } else { + if(options.value) { + _slideStateIn(childId, childId, options.easing, options.direction, options.duration, size, false, onComplete); + } else { + var top = child.css('top'); + var left = child.css('left'); + + var onOutComplete = function() { + $ax.visibility.SetIdVisible(childId, false); + child.css('top', top); + child.css('left', left); + + onComplete(); + }; + _slideStateOut(size, childId, options.easing, options.direction, options.duration, onOutComplete); + } + } + + + + // If showing, go through all rich text objects inside you, and try to redo alignment of them + if(options.value) { + var descendants = $jobj(childId).find('*'); + for(var i = 0; i < descendants.length; i++) { + var decendantId = descendants[i].id; + // This check is probably redundant? UpdateTextAlignment should ignore any text objects that haven't set the vAlign yet. + if($ax.getTypeFromElementId(decendantId) != 'richTextPanel') continue; + $ax.style.updateTextAlignmentForVisibility(decendantId); + } + } + }; + + $ax.visibility.GetPanelState = function(id) { + var children = $jobj(id).children(); + for(var i = 0; i < children.length; i++) { + if(children[i].style && $ax.visibility.IsVisible(children[i])) return children[i].id; + } + return ''; + }; + + + $ax.visibility.SetPanelState = function(id, stateId, easingOut, directionOut, durationOut, easingIn, directionIn, durationIn, showWhenSet) { + var show = !$ax.visibility.IsIdVisible(id) && showWhenSet; + if(show) $ax.visibility.SetIdVisible(id, true); + + // Exit here if already at desired state. + if($ax.visibility.IsIdVisible(stateId)) { + if(show) $ax.event.raiseSyntheticEvent(id, 'onShow'); + $ax.action.fireAnimationFromQueue(id); + return; + } + + var state = $jobj(stateId); + var oldStateId = $ax.visibility.GetPanelState(id); + var oldState = $jobj(oldStateId); + $ax.dynamicPanelManager.adjustFixed(id, oldState.width(), oldState.height(), state.width(), state.height()); + + _bringPanelStateToFront(id, oldStateId); + + var fitToContent = $ax.dynamicPanelManager.isIdFitToContent(id); + var resized = false; + if(fitToContent) { + // Set resized + resized = state.width() != oldState.width() || state.height() != oldState.height(); + } + + var movement = (directionOut == 'left' || directionOut == 'up' || state.children().length == 0) && oldState.children().length != 0 ? oldState : state; + var onCompleteCount = 0; + + var onComplete = function() { + $ax.dynamicPanelManager.fitParentPanel(id); + $ax.dynamicPanelManager.updatePanelPercentWidth(id); + $ax.dynamicPanelManager.updatePanelContentPercentWidth(id); + $ax.action.fireAnimationFromQueue(id); + $ax.event.raiseSyntheticEvent(id, "onPanelStateChange"); + }; + // Must do state out first, so if we cull by new state, location is correct + _setVisibility(id, oldStateId, { + value: false, + easing: easingOut, + direction: directionOut, + duration: durationOut, + onComplete: function() { _bringPanelStateToFront(id, stateId); if(++onCompleteCount == 2) onComplete(); }, + settingChild: true, + size: movement, + cull: easingOut == 'none' || state.children().length == 0 ? oldState : state + }); + + _setVisibility(id, stateId, { + value: true, + easing: easingIn, + direction: directionIn, + duration: durationIn, + onComplete: function() { if(++onCompleteCount == 2) onComplete(); }, + settingChild: true, + size: movement + }); + + if(show) $ax.event.raiseSyntheticEvent(id, 'onShow'); + if(resized) $ax.event.raiseSyntheticEvent(id, 'onResize'); + }; + + var _makeContainer = function(containerId, rect, fixedInfo) { + var container = $('
    '); + container.attr('id', containerId); + var css = { + position: 'absolute', + width: rect.width(), + height: rect.height(), + overflow: 'hidden' + }; + + // todo: **mas** make sure tihs is ok + if(fixedInfo.fixed) { + css.position = 'fixed'; + + if(fixedInfo.horizontal == 'left') css.left = fixedInfo.x; + else if(fixedInfo.horizontal == 'center') { + css.left = '50%'; + css['margin-left'] = fixedInfo.x; + } else if(fixedInfo.horizontal = 'right') { + css.left = 'auto'; + css.right = fixedInfo.x; + } + + if(fixedInfo.vertical == 'top') css.top = fixedInfo.y; + else if(fixedInfo.vertical == 'middle') { + css.top = '50%'; + css['margin-top'] = fixedInfo.y; + } else if(fixedInfo.vertical == 'bottom') { + css.top = 'auto'; + css.bottom = fixedInfo.y; + } + } else { + css.left = Number(rect.css('left').replace('px', '')) || 0; + css.top = Number(rect.css('top').replace('px', '')) || 0; + } + + container.css(css); + return container; + }; + + var _slideStateOut = function(container, stateId, easingOut, directionOut, durationOut, onComplete) { + var width = container.width(); + var height = container.height(); + + if(directionOut == "right") { + $ax.move.MoveWidget(stateId, width, 0, easingOut, durationOut, false, onComplete); + } else if(directionOut == "left") { + $ax.move.MoveWidget(stateId, -width, 0, easingOut, durationOut, false, onComplete); + } else if(directionOut == "up") { + $ax.move.MoveWidget(stateId, 0, -height, easingOut, durationOut, false, onComplete); + } else if(directionOut == "down") { + $ax.move.MoveWidget(stateId, 0, height, easingOut, durationOut, false, onComplete); + } + }; + + var _slideStateIn = function(id, stateId, easingIn, directionIn, durationIn, container, makePanelVisible, onComplete) { + var width = container.width(); + var height = container.height(); + + var state = $jobj(stateId); + + var oldTop = 0; + var oldLeft = 0; + + if(directionIn == "right") { + state.css('left', oldLeft - width + 'px'); + } else if(directionIn == "left") { + state.css('left', oldLeft + width + 'px'); + } else if(directionIn == "up") { + state.css('top', oldTop + height + 'px'); + } else if(directionIn == "down") { + state.css('top', oldTop - height + 'px'); + } + + if(makePanelVisible) $ax.visibility.SetIdVisible(id, true); + $ax.visibility.SetIdVisible(stateId, true); + + if(directionIn == "right") { + $ax.move.MoveWidget(stateId, width, 0, easingIn, durationIn, false, onComplete); + } else if(directionIn == "left") { + $ax.move.MoveWidget(stateId, -width, 0, easingIn, durationIn, false, onComplete); + } else if(directionIn == "up") { + $ax.move.MoveWidget(stateId, 0, -height, easingIn, durationIn, false, onComplete); + } else if(directionIn == "down") { + $ax.move.MoveWidget(stateId, 0, height, easingIn, durationIn, false, onComplete); + } + }; + + $ax.visibility.GetPanelStateId = function(dpId, index) { + var itemNum = $ax.repeater.getItemIdFromElementId(dpId); + var panelStateId = $ax.repeater.getScriptIdFromElementId(dpId) + '_state' + index; + return $ax.repeater.createElementId(panelStateId, itemNum); + }; + + var _bringPanelStateToFront = function(dpId, stateid) { + $('#' + stateid).appendTo($('#' + dpId)); + }; + + var _limboIds = _visibility.limboIds = {}; + // limboId's is a dictionary of id->true, essentially a set. + var _addLimboAndHiddenIds = $ax.visibility.addLimboAndHiddenIds = function(newLimboIds, newHiddenIds, query) { + var limboedByMaster = {}; + for(var key in newLimboIds) { + if($ax.getObjectFromElementId(key).type != 'referenceDiagramObject') continue; + var ids = $ax.model.idsInRdo(key); + for(var i = 0; i < ids.length; i++) limboedByMaster[ids[i]] = true; + } + + var hiddenByMaster = {}; + for(key in newHiddenIds) { + if($ax.getObjectFromElementId(key).type != 'referenceDiagramObject') continue; + ids = $ax.model.idsInRdo(key); + for(i = 0; i < ids.length; i++) hiddenByMaster[ids[i]] = true; + } + + // Extend with children of rdos + newLimboIds = $.extend(newLimboIds, limboedByMaster); + newHiddenIds = $.extend(newHiddenIds, hiddenByMaster); + + // something is only visible if it's not hidden and limboed + + //if(!skipSetting) { + query.each(function(diagramObject, elementId) { + // Rdos already handled, contained widgets are limboed by the parent, and sub menus should be ignored + if(diagramObject.type == 'referenceDiagramObject' || diagramObject.type == 'tableCell' || diagramObject.isContained || $jobj(elementId).hasClass('sub_menu')) return; + if(diagramObject.type == 'table' && $jobj(elementId).parent().hasClass('ax_menu')) return; + var shouldBeVisible = Boolean(!newLimboIds[elementId] && !newHiddenIds[elementId]); + var isVisible = Boolean(_isIdVisible(elementId)); + if(shouldBeVisible != isVisible) { + _setWidgetVisibility(elementId, { value: shouldBeVisible }); + } + }); + //} + + _limboIds = _visibility.limboIds = $.extend(_limboIds, newLimboIds); + + }; + + var _clearLimboAndHidden = $ax.visibility.clearLimboAndHidden = function(ids) { + _limboIds = _visibility.limboIds = {}; + }; + + $ax.visibility.clearLimboAndHiddenIds = function(ids) { + for(var i = 0; i < ids.length; i++) delete _limboIds[ids[i]]; + }; + + $ax.visibility.resetLimboAndHiddenToDefaults = function() { + _clearLimboAndHidden(); + _addLimboAndHiddenIds(_defaultLimbo, _defaultHidden, $ax('*')); + }; + + $ax.visibility.initialize = function() { + // initialize initial visible states + $axure('*').each(function(diagramObject, elementId) { + // sigh, javascript. we need the === here because undefined means not overriden + if(diagramObject.style.visible === false) _defaultHidden[elementId] = true; + //todo: **mas** check if the limboed widgets are hidden by default by the generator + if(diagramObject.style.limbo) _defaultLimbo[elementId] = true; + }); + $ax.visibility.addLimboAndHiddenIds(_defaultLimbo, _defaultHidden, $ax('*')); + + }; + +}); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axutils.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axutils.js" new file mode 100644 index 0000000..63b952b --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/axutils.js" @@ -0,0 +1,240 @@ +/* + * + * + * + * + */ + + (function() { + // define the root namespace object + if(!window.$axure) window.$axure = {}; + + $axure.utils = {}; + + // ------------------------------------------------------------------------ + // Makes an object bindable + // ------------------------------------------------------------------------ + $axure.utils.makeBindable = function(obj, events) { + if(obj.registeredBindings != null) return; + + // copy the events + obj.bindableEvents = events.slice(); + obj.registeredBindings = {}; + + obj.bind = function(eventName, fn) { + var binding = {}; + binding.eventName = eventName; + binding.action = fn; + + var bindingList = this.registeredBindings[eventName]; + if(bindingList == null) { + bindingList = []; + this.registeredBindings[eventName] = bindingList; + } + bindingList[bindingList.length] = binding; + }; + + obj.unbind = function(eventName) { + if(eventName.indexOf('.') >= 0) { + this.registeredBindings[eventName] = null; + } else { + var event = eventName.split('.')[0]; + for(var bindingKey in this.registeredBindings) { + if(bindingKey.split('.')[0] == event) { + this.registeredBindings[bindingKey] = null; + } + } + } + }; + + obj.triggerEvent = function(eventName, arg) { + for(var bindingKey in this.registeredBindings) { + if(bindingKey.split('.')[0] == eventName) { + var bindings = this.registeredBindings[bindingKey]; + for(var i = 0; i < bindings.length; i++) { + if(arg == null) { + bindings[i].action(); + } else { + bindings[i].action(arg); + } + } + } + } + }; + }; + + + $axure.utils.loadCSS = function(url) { + $('head').append(''); + }; + + $axure.utils.loadJS = function(url) { + $('head').append(''); + }; + + $axure.utils.curry = function(fn) { + var curriedArgs = Array.prototype.slice.call(arguments, [1]); + return function() { + fn.apply(this, curriedArgs.concat(Array.prototype.slice.call(arguments))); + }; + }; + + $axure.utils.succeeded = function(result) { + return result && result.success; + }; + + $axure.utils.createUniqueTag = function() { + return Math.random().toString().substring(2) + + Math.random().toString().substring(2) + + Math.random().toString().substring(2) + + Math.random().toString().substring(2); + }; + + $axure.utils.formatDate = function(date) { + var months = [ + "Jan", "Feb", "Mar", "Apr", "May", "Jun", + "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]; + var hours = date.getHours(); + var amPm = (hours > 11 ? 'PM' : 'AM'); + hours = hours % 12; + if(hours == '0') hours = '12'; + var minutes = date.getMinutes() + ''; + if(minutes.length == 1) { + minutes = '0' + minutes; + } + return [ + months[date.getMonth()], ' ', date.getDate(), ' ', date.getFullYear(), ' ', + hours, ':', minutes, ' ', amPm].join(''); + + }; + + $axure.utils.quickObject = function() { + var returnVal = {}; + for(var i = 0; i < arguments.length; i += 2) { + returnVal[arguments[i]] = arguments[i + 1]; + } + return returnVal; + }; + + var matrixBase = { + mul: function(val) { + if(val.x !== undefined) { + return $axure.utils.Vector2D( + this.m11 * val.x + this.m12 * val.y + this.tx, + this.m21 * val.x + this.m22 * val.y + this.ty); + } else if(val.m11) { + return $axure.utils.Matrix2D( + this.m11 * val.m11 + this.m12 * val.m21, + this.m11 * val.m12 + this.m12 * val.m22, + this.m21 * val.m11 + this.m22 * val.m21, + this.m21 * val.m12 + this.m22 * val.m22, + val.tx + this.tx * val.m11 + this.ty * val.m21, + val.ty + this.tx * val.m12 + this.ty * val.m22 + ); + } else if(Number(val)) { + var num = Number(val); + return $axure.utils.Matrix2D(this.m11 * num, this.m12 * num, + this.m21 * num, this.m22 * num, + this.tx * num, this.ty * num); + } else return undefined; + }, + rotate: function(angle) { + var angleRad = angle * Math.PI / 180; + var c = Math.cos(angleRad); + var s = Math.sin(angleRad); + + return this.mul($axure.utils.Matrix2D(c, -s, s, c)); + }, + translate: function(tx, ty) { + return this.mul($axure.utils.Matrix2D(1, 0, 0, 1, tx, ty)); + } + }; + + $axure.utils.Matrix2D = function(m11, m12, m21, m22, tx, ty) { + return $.extend({ + m11: m11 || 0, + m12: m12 || 0, + m21: m21 || 0, + m22: m22 || 0, + tx: tx || 0, + ty: ty || 0 + }, matrixBase); + }; + + $axure.utils.Vector2D = function(x, y) { + return { x: x || 0, y: y || 0 }; + }; + + $axure.utils.Matrix2D.identity = function() { + return $axure.utils.Matrix2D(1, 0, 0, 1, 0, 0); + }; + + $axure.utils.fixPng = function(png) { + if(!(/MSIE ((5\.5)|6)/.test(navigator.userAgent) && navigator.platform == "Win32")) return; + + var src = png.src; + if(!png.style.width) { png.style.width = $(png).width(); } + if(!png.style.height) { png.style.height = $(png).height(); } + png.onload = function() { }; + png.src = $axure.utils.getTransparentGifPath(); + png.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + src + "',sizingMethod='scale')"; + }; + })(); + + // TODO: [mas] simplify this + if(window.$axure && window.$axure.internal) { + $axure.internal(function($ax) { $ax.utils = $axure.utils; }); + } + + // Its too much of a pain to escape everything and use regular expresions, just replace manually + (function () { + var original = String.prototype.replace; + // TODO: maybe use flags or object instead to pass options in + String.prototype.replace = function (search, newVal, replaceFirst, ignoreCase) { + // Use original is some cases + if (search instanceof RegExp) return original.apply(this, arguments); + + var searchCompare = ignoreCase ? this.toLowerCase() : this; + if (ignoreCase) search = search.toLowerCase(); + + var searchLength = search.length; + var thisLength = this.length; + + var index = 0; + var retVal = ''; + while (index != -1) { + var nextIndex = searchCompare.indexOf(search, index); + if (nextIndex != -1) { + retVal += this.substring(index, nextIndex) + newVal; + index = nextIndex + searchLength; + if (index >= thisLength) index = -1; + } else { + retVal += this.substring(index); + index = -1; + } + if (replaceFirst) break; + } + + return retVal; + }; + + if (!Array.prototype.indexOf) { + Array.prototype.indexOf = function (elt /*, from*/) { + var len = this.length >>> 0; + + var from = Number(arguments[1]) || 0; + from = (from < 0) + ? Math.ceil(from) + : Math.floor(from); + if (from < 0) + from += len; + + for (; from < len; from++) { + if (from in this && + this[from] === elt) + return from; + } + return -1; + }; + } + })(); diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/jquery-1.7.1.min.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/jquery-1.7.1.min.js" new file mode 100644 index 0000000..198b3ff --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/jquery-1.7.1.min.js" @@ -0,0 +1,4 @@ +/*! jQuery v1.7.1 jquery.com | jquery.org/license */ +(function(a,b){function cy(a){return f.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cv(a){if(!ck[a]){var b=c.body,d=f("<"+a+">").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){cl||(cl=c.createElement("iframe"),cl.frameBorder=cl.width=cl.height=0),b.appendChild(cl);if(!cm||!cl.createElement)cm=(cl.contentWindow||cl.contentDocument).document,cm.write((c.compatMode==="CSS1Compat"?"":"")+""),cm.close();d=cm.createElement(a),cm.body.appendChild(d),e=f.css(d,"display"),b.removeChild(cl)}ck[a]=e}return ck[a]}function cu(a,b){var c={};f.each(cq.concat.apply([],cq.slice(0,b)),function(){c[this]=a});return c}function ct(){cr=b}function cs(){setTimeout(ct,0);return cr=f.now()}function cj(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function ci(){try{return new a.XMLHttpRequest}catch(b){}}function cc(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var d=a.dataTypes,e={},g,h,i=d.length,j,k=d[0],l,m,n,o,p;for(g=1;g0){if(c!=="border")for(;g=0===c})}function S(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function K(){return!0}function J(){return!1}function n(a,b,c){var d=b+"defer",e=b+"queue",g=b+"mark",h=f._data(a,d);h&&(c==="queue"||!f._data(a,e))&&(c==="mark"||!f._data(a,g))&&setTimeout(function(){!f._data(a,e)&&!f._data(a,g)&&(f.removeData(a,d,!0),h.fire())},0)}function m(a){for(var b in a){if(b==="data"&&f.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function l(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(k,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:f.isNumeric(d)?parseFloat(d):j.test(d)?f.parseJSON(d):d}catch(g){}f.data(a,c,d)}else d=b}return d}function h(a){var b=g[a]={},c,d;a=a.split(/\s+/);for(c=0,d=a.length;c)[^>]*$|#([\w\-]*)$)/,j=/\S/,k=/^\s+/,l=/\s+$/,m=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,n=/^[\],:{}\s]*$/,o=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,p=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,q=/(?:^|:|,)(?:\s*\[)+/g,r=/(webkit)[ \/]([\w.]+)/,s=/(opera)(?:.*version)?[ \/]([\w.]+)/,t=/(msie) ([\w.]+)/,u=/(mozilla)(?:.*? rv:([\w.]+))?/,v=/-([a-z]|[0-9])/ig,w=/^-ms-/,x=function(a,b){return(b+"").toUpperCase()},y=d.userAgent,z,A,B,C=Object.prototype.toString,D=Object.prototype.hasOwnProperty,E=Array.prototype.push,F=Array.prototype.slice,G=String.prototype.trim,H=Array.prototype.indexOf,I={};e.fn=e.prototype={constructor:e,init:function(a,d,f){var g,h,j,k;if(!a)return this;if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!d&&c.body){this.context=c,this[0]=c.body,this.selector=a,this.length=1;return this}if(typeof a=="string"){a.charAt(0)!=="<"||a.charAt(a.length-1)!==">"||a.length<3?g=i.exec(a):g=[null,a,null];if(g&&(g[1]||!d)){if(g[1]){d=d instanceof e?d[0]:d,k=d?d.ownerDocument||d:c,j=m.exec(a),j?e.isPlainObject(d)?(a=[c.createElement(j[1])],e.fn.attr.call(a,d,!0)):a=[k.createElement(j[1])]:(j=e.buildFragment([g[1]],[k]),a=(j.cacheable?e.clone(j.fragment):j.fragment).childNodes);return e.merge(this,a)}h=c.getElementById(g[2]);if(h&&h.parentNode){if(h.id!==g[2])return f.find(a);this.length=1,this[0]=h}this.context=c,this.selector=a;return this}return!d||d.jquery?(d||f).find(a):this.constructor(d).find(a)}if(e.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return e.makeArray(a,this)},selector:"",jquery:"1.7.1",length:0,size:function(){return this.length},toArray:function(){return F.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=this.constructor();e.isArray(a)?E.apply(d,a):e.merge(d,a),d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")");return d},each:function(a,b){return e.each(this,a,b)},ready:function(a){e.bindReady(),A.add(a);return this},eq:function(a){a=+a;return a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(F.apply(this,arguments),"slice",F.call(arguments).join(","))},map:function(a){return this.pushStack(e.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:E,sort:[].sort,splice:[].splice},e.fn.init.prototype=e.fn,e.extend=e.fn.extend=function(){var a,c,d,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i=="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!="object"&&!e.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j0)return;A.fireWith(c,[e]),e.fn.trigger&&e(c).trigger("ready").off("ready")}},bindReady:function(){if(!A){A=e.Callbacks("once memory");if(c.readyState==="complete")return setTimeout(e.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",B,!1),a.addEventListener("load",e.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",B),a.attachEvent("onload",e.ready);var b=!1;try{b=a.frameElement==null}catch(d){}c.documentElement.doScroll&&b&&J()}}},isFunction:function(a){return e.type(a)==="function"},isArray:Array.isArray||function(a){return e.type(a)==="array"},isWindow:function(a){return a&&typeof a=="object"&&"setInterval"in a},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):I[C.call(a)]||"object"},isPlainObject:function(a){if(!a||e.type(a)!=="object"||a.nodeType||e.isWindow(a))return!1;try{if(a.constructor&&!D.call(a,"constructor")&&!D.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||D.call(a,d)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw new Error(a)},parseJSON:function(b){if(typeof b!="string"||!b)return null;b=e.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(n.test(b.replace(o,"@").replace(p,"]").replace(q,"")))return(new Function("return "+b))();e.error("Invalid JSON: "+b)},parseXML:function(c){var d,f;try{a.DOMParser?(f=new DOMParser,d=f.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(g){d=b}(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&e.error("Invalid XML: "+c);return d},noop:function(){},globalEval:function(b){b&&j.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(w,"ms-").replace(v,x)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,d){var f,g=0,h=a.length,i=h===b||e.isFunction(a);if(d){if(i){for(f in a)if(c.apply(a[f],d)===!1)break}else for(;g0&&a[0]&&a[j-1]||j===0||e.isArray(a));if(k)for(;i1?i.call(arguments,0):b,j.notifyWith(k,e)}}function l(a){return function(c){b[a]=arguments.length>1?i.call(arguments,0):c,--g||j.resolveWith(j,b)}}var b=i.call(arguments,0),c=0,d=b.length,e=Array(d),g=d,h=d,j=d<=1&&a&&f.isFunction(a.promise)?a:f.Deferred(),k=j.promise();if(d>1){for(;c
    a",d=q.getElementsByTagName("*"),e=q.getElementsByTagName("a")[0];if(!d||!d.length||!e)return{};g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=q.getElementsByTagName("input")[0],b={leadingWhitespace:q.firstChild.nodeType===3,tbody:!q.getElementsByTagName("tbody").length,htmlSerialize:!!q.getElementsByTagName("link").length,style:/top/.test(e.getAttribute("style")),hrefNormalized:e.getAttribute("href")==="/a",opacity:/^0.55/.test(e.style.opacity),cssFloat:!!e.style.cssFloat,checkOn:i.value==="on",optSelected:h.selected,getSetAttribute:q.className!=="t",enctype:!!c.createElement("form").enctype,html5Clone:c.createElement("nav").cloneNode(!0).outerHTML!=="<:nav>",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0},i.checked=!0,b.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,b.optDisabled=!h.disabled;try{delete q.test}catch(s){b.deleteExpando=!1}!q.addEventListener&&q.attachEvent&&q.fireEvent&&(q.attachEvent("onclick",function(){b.noCloneEvent=!1}),q.cloneNode(!0).fireEvent("onclick")),i=c.createElement("input"),i.value="t",i.setAttribute("type","radio"),b.radioValue=i.value==="t",i.setAttribute("checked","checked"),q.appendChild(i),k=c.createDocumentFragment(),k.appendChild(q.lastChild),b.checkClone=k.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=i.checked,k.removeChild(i),k.appendChild(q),q.innerHTML="",a.getComputedStyle&&(j=c.createElement("div"),j.style.width="0",j.style.marginRight="0",q.style.width="2px",q.appendChild(j),b.reliableMarginRight=(parseInt((a.getComputedStyle(j,null)||{marginRight:0}).marginRight,10)||0)===0);if(q.attachEvent)for(o in{submit:1,change:1,focusin:1})n="on"+o,p=n in q,p||(q.setAttribute(n,"return;"),p=typeof q[n]=="function"),b[o+"Bubbles"]=p;k.removeChild(q),k=g=h=j=q=i=null,f(function(){var a,d,e,g,h,i,j,k,m,n,o,r=c.getElementsByTagName("body")[0];!r||(j=1,k="position:absolute;top:0;left:0;width:1px;height:1px;margin:0;",m="visibility:hidden;border:0;",n="style='"+k+"border:5px solid #000;padding:0;'",o="
    "+""+"
    ",a=c.createElement("div"),a.style.cssText=m+"width:0;height:0;position:static;top:0;margin-top:"+j+"px",r.insertBefore(a,r.firstChild),q=c.createElement("div"),a.appendChild(q),q.innerHTML="
    t
    ",l=q.getElementsByTagName("td"),p=l[0].offsetHeight===0,l[0].style.display="",l[1].style.display="none",b.reliableHiddenOffsets=p&&l[0].offsetHeight===0,q.innerHTML="",q.style.width=q.style.paddingLeft="1px",f.boxModel=b.boxModel=q.offsetWidth===2,typeof q.style.zoom!="undefined"&&(q.style.display="inline",q.style.zoom=1,b.inlineBlockNeedsLayout=q.offsetWidth===2,q.style.display="",q.innerHTML="
    ",b.shrinkWrapBlocks=q.offsetWidth!==2),q.style.cssText=k+m,q.innerHTML=o,d=q.firstChild,e=d.firstChild,h=d.nextSibling.firstChild.firstChild,i={doesNotAddBorder:e.offsetTop!==5,doesAddBorderForTableAndCells:h.offsetTop===5},e.style.position="fixed",e.style.top="20px",i.fixedPosition=e.offsetTop===20||e.offsetTop===15,e.style.position=e.style.top="",d.style.overflow="hidden",d.style.position="relative",i.subtractsBorderForOverflowNotVisible=e.offsetTop===-5,i.doesNotIncludeMarginInBodyOffset=r.offsetTop!==j,r.removeChild(a),q=a=null,f.extend(b,i))});return b}();var j=/^(?:\{.*\}|\[.*\])$/,k=/([A-Z])/g;f.extend({cache:{},uuid:0,expando:"jQuery"+(f.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?f.cache[a[f.expando]]:a[f.expando];return!!a&&!m(a)},data:function(a,c,d,e){if(!!f.acceptData(a)){var g,h,i,j=f.expando,k=typeof c=="string",l=a.nodeType,m=l?f.cache:a,n=l?a[j]:a[j]&&j,o=c==="events";if((!n||!m[n]||!o&&!e&&!m[n].data)&&k&&d===b)return;n||(l?a[j]=n=++f.uuid:n=j),m[n]||(m[n]={},l||(m[n].toJSON=f.noop));if(typeof c=="object"||typeof c=="function")e?m[n]=f.extend(m[n],c):m[n].data=f.extend(m[n].data,c);g=h=m[n],e||(h.data||(h.data={}),h=h.data),d!==b&&(h[f.camelCase(c)]=d);if(o&&!h[c])return g.events;k?(i=h[c],i==null&&(i=h[f.camelCase(c)])):i=h;return i}},removeData:function(a,b,c){if(!!f.acceptData(a)){var d,e,g,h=f.expando,i=a.nodeType,j=i?f.cache:a,k=i?a[h]:h;if(!j[k])return;if(b){d=c?j[k]:j[k].data;if(d){f.isArray(b)||(b in d?b=[b]:(b=f.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,g=b.length;e-1)return!0;return!1},val:function(a){var c,d,e,g=this[0];{if(!!arguments.length){e=f.isFunction(a);return this.each(function(d){var g=f(this),h;if(this.nodeType===1){e?h=a.call(this,d,g.val()):h=a,h==null?h="":typeof h=="number"?h+="":f.isArray(h)&&(h=f.map(h,function(a){return a==null?"":a+""})),c=f.valHooks[this.nodeName.toLowerCase()]||f.valHooks[this.type];if(!c||!("set"in c)||c.set(this,h,"value")===b)this.value=h}})}if(g){c=f.valHooks[g.nodeName.toLowerCase()]||f.valHooks[g.type];if(c&&"get"in c&&(d=c.get(g,"value"))!==b)return d;d=g.value;return typeof d=="string"?d.replace(q,""):d==null?"":d}}}}),f.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,g=a.selectedIndex,h=[],i=a.options,j=a.type==="select-one";if(g<0)return null;c=j?g:0,d=j?g+1:i.length;for(;c=0}),c.length||(a.selectedIndex=-1);return c}}},attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attr:function(a,c,d,e){var g,h,i,j=a.nodeType;if(!!a&&j!==3&&j!==8&&j!==2){if(e&&c in f.attrFn)return f(a)[c](d);if(typeof a.getAttribute=="undefined")return f.prop(a,c,d);i=j!==1||!f.isXMLDoc(a),i&&(c=c.toLowerCase(),h=f.attrHooks[c]||(u.test(c)?x:w));if(d!==b){if(d===null){f.removeAttr(a,c);return}if(h&&"set"in h&&i&&(g=h.set(a,d,c))!==b)return g;a.setAttribute(c,""+d);return d}if(h&&"get"in h&&i&&(g=h.get(a,c))!==null)return g;g=a.getAttribute(c);return g===null?b:g}},removeAttr:function(a,b){var c,d,e,g,h=0;if(b&&a.nodeType===1){d=b.toLowerCase().split(p),g=d.length;for(;h=0}})});var z=/^(?:textarea|input|select)$/i,A=/^([^\.]*)?(?:\.(.+))?$/,B=/\bhover(\.\S+)?\b/,C=/^key/,D=/^(?:mouse|contextmenu)|click/,E=/^(?:focusinfocus|focusoutblur)$/,F=/^(\w*)(?:#([\w\-]+))?(?:\.([\w\-]+))?$/,G=function(a){var b=F.exec(a);b&&(b[1]=(b[1]||"").toLowerCase(),b[3]=b[3]&&new RegExp("(?:^|\\s)"+b[3]+"(?:\\s|$)"));return b},H=function(a,b){var c=a.attributes||{};return(!b[1]||a.nodeName.toLowerCase()===b[1])&&(!b[2]||(c.id||{}).value===b[2])&&(!b[3]||b[3].test((c["class"]||{}).value))},I=function(a){return f.event.special.hover?a:a.replace(B,"mouseenter$1 mouseleave$1")}; +f.event={add:function(a,c,d,e,g){var h,i,j,k,l,m,n,o,p,q,r,s;if(!(a.nodeType===3||a.nodeType===8||!c||!d||!(h=f._data(a)))){d.handler&&(p=d,d=p.handler),d.guid||(d.guid=f.guid++),j=h.events,j||(h.events=j={}),i=h.handle,i||(h.handle=i=function(a){return typeof f!="undefined"&&(!a||f.event.triggered!==a.type)?f.event.dispatch.apply(i.elem,arguments):b},i.elem=a),c=f.trim(I(c)).split(" ");for(k=0;k=0&&(h=h.slice(0,-1),k=!0),h.indexOf(".")>=0&&(i=h.split("."),h=i.shift(),i.sort());if((!e||f.event.customEvent[h])&&!f.event.global[h])return;c=typeof c=="object"?c[f.expando]?c:new f.Event(h,c):new f.Event(h),c.type=h,c.isTrigger=!0,c.exclusive=k,c.namespace=i.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+i.join("\\.(?:.*\\.)?")+"(\\.|$)"):null,o=h.indexOf(":")<0?"on"+h:"";if(!e){j=f.cache;for(l in j)j[l].events&&j[l].events[h]&&f.event.trigger(c,d,j[l].handle.elem,!0);return}c.result=b,c.target||(c.target=e),d=d!=null?f.makeArray(d):[],d.unshift(c),p=f.event.special[h]||{};if(p.trigger&&p.trigger.apply(e,d)===!1)return;r=[[e,p.bindType||h]];if(!g&&!p.noBubble&&!f.isWindow(e)){s=p.delegateType||h,m=E.test(s+h)?e:e.parentNode,n=null;for(;m;m=m.parentNode)r.push([m,s]),n=m;n&&n===e.ownerDocument&&r.push([n.defaultView||n.parentWindow||a,s])}for(l=0;le&&i.push({elem:this,matches:d.slice(e)});for(j=0;j0?this.on(b,null,a,c):this.trigger(b)},f.attrFn&&(f.attrFn[b]=!0),C.test(b)&&(f.event.fixHooks[b]=f.event.keyHooks),D.test(b)&&(f.event.fixHooks[b]=f.event.mouseHooks)}),function(){function x(a,b,c,e,f,g){for(var h=0,i=e.length;h0){k=j;break}}j=j[a]}e[h]=k}}}function w(a,b,c,e,f,g){for(var h=0,i=e.length;h+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,d="sizcache"+(Math.random()+"").replace(".",""),e=0,g=Object.prototype.toString,h=!1,i=!0,j=/\\/g,k=/\r\n/g,l=/\W/;[0,0].sort(function(){i=!1;return 0});var m=function(b,d,e,f){e=e||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!="string")return e;var i,j,k,l,n,q,r,t,u=!0,v=m.isXML(d),w=[],x=b;do{a.exec(""),i=a.exec(x);if(i){x=i[3],w.push(i[1]);if(i[2]){l=i[3];break}}}while(i);if(w.length>1&&p.exec(b))if(w.length===2&&o.relative[w[0]])j=y(w[0]+w[1],d,f);else{j=o.relative[w[0]]?[d]:m(w.shift(),d);while(w.length)b=w.shift(),o.relative[b]&&(b+=w.shift()),j=y(b,j,f)}else{!f&&w.length>1&&d.nodeType===9&&!v&&o.match.ID.test(w[0])&&!o.match.ID.test(w[w.length-1])&&(n=m.find(w.shift(),d,v),d=n.expr?m.filter(n.expr,n.set)[0]:n.set[0]);if(d){n=f?{expr:w.pop(),set:s(f)}:m.find(w.pop(),w.length===1&&(w[0]==="~"||w[0]==="+")&&d.parentNode?d.parentNode:d,v),j=n.expr?m.filter(n.expr,n.set):n.set,w.length>0?k=s(j):u=!1;while(w.length)q=w.pop(),r=q,o.relative[q]?r=w.pop():q="",r==null&&(r=d),o.relative[q](k,r,v)}else k=w=[]}k||(k=j),k||m.error(q||b);if(g.call(k)==="[object Array]")if(!u)e.push.apply(e,k);else if(d&&d.nodeType===1)for(t=0;k[t]!=null;t++)k[t]&&(k[t]===!0||k[t].nodeType===1&&m.contains(d,k[t]))&&e.push(j[t]);else for(t=0;k[t]!=null;t++)k[t]&&k[t].nodeType===1&&e.push(j[t]);else s(k,e);l&&(m(l,h,e,f),m.uniqueSort(e));return e};m.uniqueSort=function(a){if(u){h=i,a.sort(u);if(h)for(var b=1;b0},m.find=function(a,b,c){var d,e,f,g,h,i;if(!a)return[];for(e=0,f=o.order.length;e":function(a,b){var c,d=typeof b=="string",e=0,f=a.length;if(d&&!l.test(b)){b=b.toLowerCase();for(;e=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(j,"")},TAG:function(a,b){return a[1].replace(j,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||m.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&m.error(a[0]);a[0]=e++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(j,"");!f&&o.attrMap[g]&&(a[1]=o.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(j,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=m(b[3],null,null,c);else{var g=m.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(o.match.POS.test(b[0])||o.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!m(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){var b=a.getAttribute("type"),c=a.type;return a.nodeName.toLowerCase()==="input"&&"text"===c&&(b===c||b===null)},radio:function(a){return a.nodeName.toLowerCase()==="input"&&"radio"===a.type},checkbox:function(a){return a.nodeName.toLowerCase()==="input"&&"checkbox"===a.type},file:function(a){return a.nodeName.toLowerCase()==="input"&&"file"===a.type},password:function(a){return a.nodeName.toLowerCase()==="input"&&"password"===a.type},submit:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"submit"===a.type},image:function(a){return a.nodeName.toLowerCase()==="input"&&"image"===a.type},reset:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"reset"===a.type},button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&"button"===a.type||b==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)},focus:function(a){return a===a.ownerDocument.activeElement}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return bc[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=o.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||n([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||!!a.nodeName&&a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=m.attr?m.attr(a,c):o.attrHandle[c]?o.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":!f&&m.attr?d!=null:f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=o.setFilters[e];if(f)return f(a,c,b,d)}}},p=o.match.POS,q=function(a,b){return"\\"+(b-0+1)};for(var r in o.match)o.match[r]=new RegExp(o.match[r].source+/(?![^\[]*\])(?![^\(]*\))/.source),o.leftMatch[r]=new RegExp(/(^(?:.|\r|\n)*?)/.source+o.match[r].source.replace(/\\(\d+)/g,q));var s=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(t){s=function(a,b){var c=0,d=b||[];if(g.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length=="number")for(var e=a.length;c",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(o.find.ID=function(a,c,d){if(typeof c.getElementById!="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},o.filter.ID=function(a,b){var c=typeof a.getAttributeNode!="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(o.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML="",a.firstChild&&typeof a.firstChild.getAttribute!="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(o.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=m,b=c.createElement("div"),d="__sizzle__";b.innerHTML="

    ";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){m=function(b,e,f,g){e=e||c;if(!g&&!m.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1])return s(e.getElementsByTagName(b),f);if(h[2]&&o.find.CLASS&&e.getElementsByClassName)return s(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){if(b==="body"&&e.body)return s([e.body],f);if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode)return s([],f);if(i.id===h[3])return s([i],f)}try{return s(e.querySelectorAll(b),f)}catch(j){}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var k=e,l=e.getAttribute("id"),n=l||d,p=e.parentNode,q=/^\s*[+~]/.test(b);l?n=n.replace(/'/g,"\\$&"):e.setAttribute("id",n),q&&p&&(e=e.parentNode);try{if(!q||p)return s(e.querySelectorAll("[id='"+n+"'] "+b),f)}catch(r){}finally{l||k.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)m[e]=a[e];b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector;if(b){var d=!b.call(c.createElement("div"),"div"),e=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(f){e=!0}m.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!m.isXML(a))try{if(e||!o.match.PSEUDO.test(c)&&!/!=/.test(c)){var f=b.call(a,c);if(f||!d||a.document&&a.document.nodeType!==11)return f}}catch(g){}return m(c,null,null,[a]).length>0}}}(),function(){var a=c.createElement("div");a.innerHTML="
    ";if(!!a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;o.order.splice(1,0,"CLASS"),o.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?m.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?m.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16)}:m.contains=function(){return!1},m.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var y=function(a,b,c){var d,e=[],f="",g=b.nodeType?[b]:b;while(d=o.match.PSEUDO.exec(a))f+=d[0],a=a.replace(o.match.PSEUDO,"");a=o.relative[a]?a+"*":a;for(var h=0,i=g.length;h0)for(h=g;h=0:f.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c=[],d,e,g=this[0];if(f.isArray(a)){var h=1;while(g&&g.ownerDocument&&g!==b){for(d=0;d-1:f.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b||g.nodeType===11)break}}c=c.length>1?f.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a)return this[0]&&this[0].parentNode?this.prevAll().length:-1;if(typeof a=="string")return f.inArray(this[0],f(a));return f.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a=="string"?f(a,b):f.makeArray(a&&a.nodeType?[a]:a),d=f.merge(this.get(),c);return this.pushStack(S(c[0])||S(d[0])?d:f.unique(d))},andSelf:function(){return this.add(this.prevObject)}}),f.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return f.dir(a,"parentNode")},parentsUntil:function(a,b,c){return f.dir(a,"parentNode",c)},next:function(a){return f.nth(a,2,"nextSibling")},prev:function(a){return f.nth(a,2,"previousSibling")},nextAll:function(a){return f.dir(a,"nextSibling")},prevAll:function(a){return f.dir(a,"previousSibling")},nextUntil:function(a,b,c){return f.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return f.dir(a,"previousSibling",c)},siblings:function(a){return f.sibling(a.parentNode.firstChild,a)},children:function(a){return f.sibling(a.firstChild)},contents:function(a){return f.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:f.makeArray(a.childNodes)}},function(a,b){f.fn[a]=function(c,d){var e=f.map(this,b,c);L.test(a)||(d=c),d&&typeof d=="string"&&(e=f.filter(d,e)),e=this.length>1&&!R[a]?f.unique(e):e,(this.length>1||N.test(d))&&M.test(a)&&(e=e.reverse());return this.pushStack(e,a,P.call(arguments).join(","))}}),f.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?f.find.matchesSelector(b[0],a)?[b[0]]:[]:f.find.matches(a,b)},dir:function(a,c,d){var e=[],g=a[c];while(g&&g.nodeType!==9&&(d===b||g.nodeType!==1||!f(g).is(d)))g.nodeType===1&&e.push(g),g=g[c];return e},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var V="abbr|article|aside|audio|canvas|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",W=/ jQuery\d+="(?:\d+|null)"/g,X=/^\s+/,Y=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,Z=/<([\w:]+)/,$=/",""],legend:[1,"
    ","
    "],thead:[1,"","
    "],tr:[2,"","
    "],td:[3,"","
    "],col:[2,"","
    "],area:[1,"",""],_default:[0,"",""]},bh=U(c);bg.optgroup=bg.option,bg.tbody=bg.tfoot=bg.colgroup=bg.caption=bg.thead,bg.th=bg.td,f.support.htmlSerialize||(bg._default=[1,"div
    ","
    "]),f.fn.extend({text:function(a){if(f.isFunction(a))return this.each(function(b){var c=f(this);c.text(a.call(this,b,c.text()))});if(typeof a!="object"&&a!==b)return this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a));return f.text(this)},wrapAll:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapAll(a.call(this,b))});if(this[0]){var b=f(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapInner(a.call(this,b))});return this.each(function(){var b=f(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=f.isFunction(a);return this.each(function(c){f(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){f.nodeName(this,"body")||f(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=f.clean(arguments);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,f.clean(arguments));return a}},remove:function(a,b){for(var c=0,d;(d=this[c])!=null;c++)if(!a||f.filter(a,[d]).length)!b&&d.nodeType===1&&(f.cleanData(d.getElementsByTagName("*")),f.cleanData([d])),d.parentNode&&d.parentNode.removeChild(d);return this},empty:function() +{for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&f.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){a=a==null?!1:a,b=b==null?a:b;return this.map(function(){return f.clone(this,a,b)})},html:function(a){if(a===b)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(W,""):null;if(typeof a=="string"&&!ba.test(a)&&(f.support.leadingWhitespace||!X.test(a))&&!bg[(Z.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Y,"<$1>");try{for(var c=0,d=this.length;c1&&l0?this.clone(!0):this).get();f(e[h])[b](j),d=d.concat(j)}return this.pushStack(d,a,e.selector)}}),f.extend({clone:function(a,b,c){var d,e,g,h=f.support.html5Clone||!bc.test("<"+a.nodeName)?a.cloneNode(!0):bo(a);if((!f.support.noCloneEvent||!f.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!f.isXMLDoc(a)){bk(a,h),d=bl(a),e=bl(h);for(g=0;d[g];++g)e[g]&&bk(d[g],e[g])}if(b){bj(a,h);if(c){d=bl(a),e=bl(h);for(g=0;d[g];++g)bj(d[g],e[g])}}d=e=null;return h},clean:function(a,b,d,e){var g;b=b||c,typeof b.createElement=="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);var h=[],i;for(var j=0,k;(k=a[j])!=null;j++){typeof k=="number"&&(k+="");if(!k)continue;if(typeof k=="string")if(!_.test(k))k=b.createTextNode(k);else{k=k.replace(Y,"<$1>");var l=(Z.exec(k)||["",""])[1].toLowerCase(),m=bg[l]||bg._default,n=m[0],o=b.createElement("div");b===c?bh.appendChild(o):U(b).appendChild(o),o.innerHTML=m[1]+k+m[2];while(n--)o=o.lastChild;if(!f.support.tbody){var p=$.test(k),q=l==="table"&&!p?o.firstChild&&o.firstChild.childNodes:m[1]===""&&!p?o.childNodes:[];for(i=q.length-1;i>=0;--i)f.nodeName(q[i],"tbody")&&!q[i].childNodes.length&&q[i].parentNode.removeChild(q[i])}!f.support.leadingWhitespace&&X.test(k)&&o.insertBefore(b.createTextNode(X.exec(k)[0]),o.firstChild),k=o.childNodes}var r;if(!f.support.appendChecked)if(k[0]&&typeof (r=k.length)=="number")for(i=0;i=0)return b+"px"}}}),f.support.opacity||(f.cssHooks.opacity={get:function(a,b){return br.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=f.isNumeric(b)?"alpha(opacity="+b*100+")":"",g=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&f.trim(g.replace(bq,""))===""){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bq.test(g)?g.replace(bq,e):g+" "+e}}),f(function(){f.support.reliableMarginRight||(f.cssHooks.marginRight={get:function(a,b){var c;f.swap(a,{display:"inline-block"},function(){b?c=bz(a,"margin-right","marginRight"):c=a.style.marginRight});return c}})}),c.defaultView&&c.defaultView.getComputedStyle&&(bA=function(a,b){var c,d,e;b=b.replace(bs,"-$1").toLowerCase(),(d=a.ownerDocument.defaultView)&&(e=d.getComputedStyle(a,null))&&(c=e.getPropertyValue(b),c===""&&!f.contains(a.ownerDocument.documentElement,a)&&(c=f.style(a,b)));return c}),c.documentElement.currentStyle&&(bB=function(a,b){var c,d,e,f=a.currentStyle&&a.currentStyle[b],g=a.style;f===null&&g&&(e=g[b])&&(f=e),!bt.test(f)&&bu.test(f)&&(c=g.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),g.left=b==="fontSize"?"1em":f||0,f=g.pixelLeft+"px",g.left=c,d&&(a.runtimeStyle.left=d));return f===""?"auto":f}),bz=bA||bB,f.expr&&f.expr.filters&&(f.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!f.support.reliableHiddenOffsets&&(a.style&&a.style.display||f.css(a,"display"))==="none"},f.expr.filters.visible=function(a){return!f.expr.filters.hidden(a)});var bD=/%20/g,bE=/\[\]$/,bF=/\r?\n/g,bG=/#.*$/,bH=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bI=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bJ=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,bK=/^(?:GET|HEAD)$/,bL=/^\/\//,bM=/\?/,bN=/)<[^<]*)*<\/script>/gi,bO=/^(?:select|textarea)/i,bP=/\s+/,bQ=/([?&])_=[^&]*/,bR=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,bS=f.fn.load,bT={},bU={},bV,bW,bX=["*/"]+["*"];try{bV=e.href}catch(bY){bV=c.createElement("a"),bV.href="",bV=bV.href}bW=bR.exec(bV.toLowerCase())||[],f.fn.extend({load:function(a,c,d){if(typeof a!="string"&&bS)return bS.apply(this,arguments);if(!this.length)return this;var e=a.indexOf(" ");if(e>=0){var g=a.slice(e,a.length);a=a.slice(0,e)}var h="GET";c&&(f.isFunction(c)?(d=c,c=b):typeof c=="object"&&(c=f.param(c,f.ajaxSettings.traditional),h="POST"));var i=this;f.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?f("
    ").append(c.replace(bN,"")).find(g):c)),d&&i.each(d,[c,b,a])}});return this},serialize:function(){return f.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?f.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bO.test(this.nodeName)||bI.test(this.type))}).map(function(a,b){var c=f(this).val();return c==null?null:f.isArray(c)?f.map(c,function(a,c){return{name:b.name,value:a.replace(bF,"\r\n")}}):{name:b.name,value:c.replace(bF,"\r\n")}}).get()}}),f.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){f.fn[b]=function(a){return this.on(b,a)}}),f.each(["get","post"],function(a,c){f[c]=function(a,d,e,g){f.isFunction(d)&&(g=g||e,e=d,d=b);return f.ajax({type:c,url:a,data:d,success:e,dataType:g})}}),f.extend({getScript:function(a,c){return f.get(a,b,c,"script")},getJSON:function(a,b,c){return f.get(a,b,c,"json")},ajaxSetup:function(a,b){b?b_(a,f.ajaxSettings):(b=a,a=f.ajaxSettings),b_(a,b);return a},ajaxSettings:{url:bV,isLocal:bJ.test(bW[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":bX},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":f.parseJSON,"text xml":f.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:bZ(bT),ajaxTransport:bZ(bU),ajax:function(a,c){function w(a,c,l,m){if(s!==2){s=2,q&&clearTimeout(q),p=b,n=m||"",v.readyState=a>0?4:0;var o,r,u,w=c,x=l?cb(d,v,l):b,y,z;if(a>=200&&a<300||a===304){if(d.ifModified){if(y=v.getResponseHeader("Last-Modified"))f.lastModified[k]=y;if(z=v.getResponseHeader("Etag"))f.etag[k]=z}if(a===304)w="notmodified",o=!0;else try{r=cc(d,x),w="success",o=!0}catch(A){w="parsererror",u=A}}else{u=w;if(!w||a)w="error",a<0&&(a=0)}v.status=a,v.statusText=""+(c||w),o?h.resolveWith(e,[r,w,v]):h.rejectWith(e,[v,w,u]),v.statusCode(j),j=b,t&&g.trigger("ajax"+(o?"Success":"Error"),[v,d,o?r:u]),i.fireWith(e,[v,w]),t&&(g.trigger("ajaxComplete",[v,d]),--f.active||f.event.trigger("ajaxStop"))}}typeof a=="object"&&(c=a,a=b),c=c||{};var d=f.ajaxSetup({},c),e=d.context||d,g=e!==d&&(e.nodeType||e instanceof f)?f(e):f.event,h=f.Deferred(),i=f.Callbacks("once memory"),j=d.statusCode||{},k,l={},m={},n,o,p,q,r,s=0,t,u,v={readyState:0,setRequestHeader:function(a,b){if(!s){var c=a.toLowerCase();a=m[c]=m[c]||a,l[a]=b}return this},getAllResponseHeaders:function(){return s===2?n:null},getResponseHeader:function(a){var c;if(s===2){if(!o){o={};while(c=bH.exec(n))o[c[1].toLowerCase()]=c[2]}c=o[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){s||(d.mimeType=a);return this},abort:function(a){a=a||"abort",p&&p.abort(a),w(0,a);return this}};h.promise(v),v.success=v.done,v.error=v.fail,v.complete=i.add,v.statusCode=function(a){if(a){var b;if(s<2)for(b in a)j[b]=[j[b],a[b]];else b=a[v.status],v.then(b,b)}return this},d.url=((a||d.url)+"").replace(bG,"").replace(bL,bW[1]+"//"),d.dataTypes=f.trim(d.dataType||"*").toLowerCase().split(bP),d.crossDomain==null&&(r=bR.exec(d.url.toLowerCase()),d.crossDomain=!(!r||r[1]==bW[1]&&r[2]==bW[2]&&(r[3]||(r[1]==="http:"?80:443))==(bW[3]||(bW[1]==="http:"?80:443)))),d.data&&d.processData&&typeof d.data!="string"&&(d.data=f.param(d.data,d.traditional)),b$(bT,d,c,v);if(s===2)return!1;t=d.global,d.type=d.type.toUpperCase(),d.hasContent=!bK.test(d.type),t&&f.active++===0&&f.event.trigger("ajaxStart");if(!d.hasContent){d.data&&(d.url+=(bM.test(d.url)?"&":"?")+d.data,delete d.data),k=d.url;if(d.cache===!1){var x=f.now(),y=d.url.replace(bQ,"$1_="+x);d.url=y+(y===d.url?(bM.test(d.url)?"&":"?")+"_="+x:"")}}(d.data&&d.hasContent&&d.contentType!==!1||c.contentType)&&v.setRequestHeader("Content-Type",d.contentType),d.ifModified&&(k=k||d.url,f.lastModified[k]&&v.setRequestHeader("If-Modified-Since",f.lastModified[k]),f.etag[k]&&v.setRequestHeader("If-None-Match",f.etag[k])),v.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+(d.dataTypes[0]!=="*"?", "+bX+"; q=0.01":""):d.accepts["*"]);for(u in d.headers)v.setRequestHeader(u,d.headers[u]);if(d.beforeSend&&(d.beforeSend.call(e,v,d)===!1||s===2)){v.abort();return!1}for(u in{success:1,error:1,complete:1})v[u](d[u]);p=b$(bU,d,c,v);if(!p)w(-1,"No Transport");else{v.readyState=1,t&&g.trigger("ajaxSend",[v,d]),d.async&&d.timeout>0&&(q=setTimeout(function(){v.abort("timeout")},d.timeout));try{s=1,p.send(l,w)}catch(z){if(s<2)w(-1,z);else throw z}}return v},param:function(a,c){var d=[],e=function(a,b){b=f.isFunction(b)?b():b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=f.ajaxSettings.traditional);if(f.isArray(a)||a.jquery&&!f.isPlainObject(a))f.each(a,function(){e(this.name,this.value)});else for(var g in a)ca(g,a[g],c,e);return d.join("&").replace(bD,"+")}}),f.extend({active:0,lastModified:{},etag:{}});var cd=f.now(),ce=/(\=)\?(&|$)|\?\?/i;f.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return f.expando+"_"+cd++}}),f.ajaxPrefilter("json jsonp",function(b,c,d){var e=b.contentType==="application/x-www-form-urlencoded"&&typeof b.data=="string";if(b.dataTypes[0]==="jsonp"||b.jsonp!==!1&&(ce.test(b.url)||e&&ce.test(b.data))){var g,h=b.jsonpCallback=f.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2";b.jsonp!==!1&&(j=j.replace(ce,l),b.url===j&&(e&&(k=k.replace(ce,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},d.always(function(){a[h]=i,g&&f.isFunction(i)&&a[h](g[0])}),b.converters["script json"]=function(){g||f.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),f.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){f.globalEval(a);return a}}}),f.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),f.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(c||!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var cf=a.ActiveXObject?function(){for(var a in ch)ch[a](0,1)}:!1,cg=0,ch;f.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&ci()||cj()}:ci,function(a){f.extend(f.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(f.ajaxSettings.xhr()),f.support.ajax&&f.ajaxTransport(function(c){if(!c.crossDomain||f.support.cors){var d;return{send:function(e,g){var h=c.xhr(),i,j;c.username?h.open(c.type,c.url,c.async,c.username,c.password):h.open(c.type,c.url,c.async);if(c.xhrFields)for(j in c.xhrFields)h[j]=c.xhrFields[j];c.mimeType&&h.overrideMimeType&&h.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(j in e)h.setRequestHeader(j,e[j])}catch(k){}h.send(c.hasContent&&c.data||null),d=function(a,e){var j,k,l,m,n;try{if(d&&(e||h.readyState===4)){d=b,i&&(h.onreadystatechange=f.noop,cf&&delete ch[i]);if(e)h.readyState!==4&&h.abort();else{j=h.status,l=h.getAllResponseHeaders(),m={},n=h.responseXML,n&&n.documentElement&&(m.xml=n),m.text=h.responseText;try{k=h.statusText}catch(o){k=""}!j&&c.isLocal&&!c.crossDomain?j=m.text?200:404:j===1223&&(j=204)}}}catch(p){e||g(-1,p)}m&&g(j,k,m,l)},!c.async||h.readyState===4?d():(i=++cg,cf&&(ch||(ch={},f(a).unload(cf)),ch[i]=d),h.onreadystatechange=d)},abort:function(){d&&d(0,1)}}}});var ck={},cl,cm,cn=/^(?:toggle|show|hide)$/,co=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,cp,cq=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]],cr;f.fn.extend({show:function(a,b,c){var d,e;if(a||a===0)return this.animate(cu("show",3),a,b,c);for(var g=0,h=this.length;g=i.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),i.animatedProperties[this.prop]=!0;for(b in i.animatedProperties)i.animatedProperties[b]!==!0&&(g=!1);if(g){i.overflow!=null&&!f.support.shrinkWrapBlocks&&f.each(["","X","Y"],function(a,b){h.style["overflow"+b]=i.overflow[a]}),i.hide&&f(h).hide();if(i.hide||i.show)for(b in i.animatedProperties)f.style(h,b,i.orig[b]),f.removeData(h,"fxshow"+b,!0),f.removeData(h,"toggle"+b,!0);d=i.complete,d&&(i.complete=!1,d.call(h))}return!1}i.duration==Infinity?this.now=e:(c=e-this.startTime,this.state=c/i.duration,this.pos=f.easing[i.animatedProperties[this.prop]](this.state,c,0,1,i.duration),this.now=this.start+(this.end-this.start)*this.pos),this.update();return!0}},f.extend(f.fx,{tick:function(){var a,b=f.timers,c=0;for(;c-1,k={},l={},m,n;j?(l=e.position(),m=l.top,n=l.left):(m=parseFloat(h)||0,n=parseFloat(i)||0),f.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):e.css(k)}},f.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),d=cx.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(f.css(a,"marginTop"))||0,c.left-=parseFloat(f.css(a,"marginLeft"))||0,d.top+=parseFloat(f.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(f.css(b[0],"borderLeftWidth"))||0;return{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&!cx.test(a.nodeName)&&f.css(a,"position")==="static")a=a.offsetParent;return a})}}),f.each(["Left","Top"],function(a,c){var d="scroll"+c;f.fn[d]=function(c){var e,g;if(c===b){e=this[0];if(!e)return null;g=cy(e);return g?"pageXOffset"in g?g[a?"pageYOffset":"pageXOffset"]:f.support.boxModel&&g.document.documentElement[d]||g.document.body[d]:e[d]}return this.each(function(){g=cy(this),g?g.scrollTo(a?f(g).scrollLeft():c,a?c:f(g).scrollTop()):this[d]=c})}}),f.each(["Height","Width"],function(a,c){var d=c.toLowerCase();f.fn["inner"+c]=function(){var a=this[0];return a?a.style?parseFloat(f.css(a,d,"padding")):this[d]():null},f.fn["outer"+c]=function(a){var b=this[0];return b?b.style?parseFloat(f.css(b,d,a?"margin":"border")):this[d]():null},f.fn[d]=function(a){var e=this[0];if(!e)return a==null?null:this;if(f.isFunction(a))return this.each(function(b){var c=f(this);c[d](a.call(this,b,c[d]()))});if(f.isWindow(e)){var g=e.document.documentElement["client"+c],h=e.document.body;return e.document.compatMode==="CSS1Compat"&&g||h&&h["client"+c]||g}if(e.nodeType===9)return Math.max(e.documentElement["client"+c],e.body["scroll"+c],e.documentElement["scroll"+c],e.body["offset"+c],e.documentElement["offset"+c]);if(a===b){var i=f.css(e,d),j=parseFloat(i);return f.isNumeric(j)?j:i}return this.css(d,typeof a=="string"?a:a+"px")}}),a.jQuery=a.$=f,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return f})})(window); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/jquery-ui-1.8.10.custom.min.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/jquery-ui-1.8.10.custom.min.js" new file mode 100644 index 0000000..a7e1293 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/jquery-ui-1.8.10.custom.min.js" @@ -0,0 +1,233 @@ +/*! + * jQuery UI 1.8.10 + * + * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT or GPL Version 2 licenses. + * http://jquery.org/license + * + * http://docs.jquery.com/UI + */ +(function(c,j){function k(a){return!c(a).parents().andSelf().filter(function(){return c.curCSS(this,"visibility")==="hidden"||c.expr.filters.hidden(this)}).length}c.ui=c.ui||{};if(!c.ui.version){c.extend(c.ui,{version:"1.8.10",keyCode:{ALT:18,BACKSPACE:8,CAPS_LOCK:20,COMMA:188,COMMAND:91,COMMAND_LEFT:91,COMMAND_RIGHT:93,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,MENU:93,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106, +NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SHIFT:16,SPACE:32,TAB:9,UP:38,WINDOWS:91}});c.fn.extend({_focus:c.fn.focus,focus:function(a,b){return typeof a==="number"?this.each(function(){var d=this;setTimeout(function(){c(d).focus();b&&b.call(d)},a)}):this._focus.apply(this,arguments)},scrollParent:function(){var a;a=c.browser.msie&&/(static|relative)/.test(this.css("position"))||/absolute/.test(this.css("position"))?this.parents().filter(function(){return/(relative|absolute|fixed)/.test(c.curCSS(this, +"position",1))&&/(auto|scroll)/.test(c.curCSS(this,"overflow",1)+c.curCSS(this,"overflow-y",1)+c.curCSS(this,"overflow-x",1))}).eq(0):this.parents().filter(function(){return/(auto|scroll)/.test(c.curCSS(this,"overflow",1)+c.curCSS(this,"overflow-y",1)+c.curCSS(this,"overflow-x",1))}).eq(0);return/fixed/.test(this.css("position"))||!a.length?c(document):a},zIndex:function(a){if(a!==j)return this.css("zIndex",a);if(this.length){a=c(this[0]);for(var b;a.length&&a[0]!==document;){b=a.css("position"); +if(b==="absolute"||b==="relative"||b==="fixed"){b=parseInt(a.css("zIndex"),10);if(!isNaN(b)&&b!==0)return b}a=a.parent()}}return 0},disableSelection:function(){return this.bind((c.support.selectstart?"selectstart":"mousedown")+".ui-disableSelection",function(a){a.preventDefault()})},enableSelection:function(){return this.unbind(".ui-disableSelection")}});c.each(["Width","Height"],function(a,b){function d(f,g,l,m){c.each(e,function(){g-=parseFloat(c.curCSS(f,"padding"+this,true))||0;if(l)g-=parseFloat(c.curCSS(f, +"border"+this+"Width",true))||0;if(m)g-=parseFloat(c.curCSS(f,"margin"+this,true))||0});return g}var e=b==="Width"?["Left","Right"]:["Top","Bottom"],h=b.toLowerCase(),i={innerWidth:c.fn.innerWidth,innerHeight:c.fn.innerHeight,outerWidth:c.fn.outerWidth,outerHeight:c.fn.outerHeight};c.fn["inner"+b]=function(f){if(f===j)return i["inner"+b].call(this);return this.each(function(){c(this).css(h,d(this,f)+"px")})};c.fn["outer"+b]=function(f,g){if(typeof f!=="number")return i["outer"+b].call(this,f);return this.each(function(){c(this).css(h, +d(this,f,true,g)+"px")})}});c.extend(c.expr[":"],{data:function(a,b,d){return!!c.data(a,d[3])},focusable:function(a){var b=a.nodeName.toLowerCase(),d=c.attr(a,"tabindex");if("area"===b){b=a.parentNode;d=b.name;if(!a.href||!d||b.nodeName.toLowerCase()!=="map")return false;a=c("img[usemap=#"+d+"]")[0];return!!a&&k(a)}return(/input|select|textarea|button|object/.test(b)?!a.disabled:"a"==b?a.href||!isNaN(d):!isNaN(d))&&k(a)},tabbable:function(a){var b=c.attr(a,"tabindex");return(isNaN(b)||b>=0)&&c(a).is(":focusable")}}); +c(function(){var a=document.body,b=a.appendChild(b=document.createElement("div"));c.extend(b.style,{minHeight:"100px",height:"auto",padding:0,borderWidth:0});c.support.minHeight=b.offsetHeight===100;c.support.selectstart="onselectstart"in b;a.removeChild(b).style.display="none"});c.extend(c.ui,{plugin:{add:function(a,b,d){a=c.ui[a].prototype;for(var e in d){a.plugins[e]=a.plugins[e]||[];a.plugins[e].push([b,d[e]])}},call:function(a,b,d){if((b=a.plugins[b])&&a.element[0].parentNode)for(var e=0;e0)return true;a[b]=1;d=a[b]>0;a[b]=0;return d},isOverAxis:function(a,b,d){return a>b&&a=9)&&!a.button)return this._mouseUp(a);if(this._mouseStarted){this._mouseDrag(a); +return a.preventDefault()}if(this._mouseDistanceMet(a)&&this._mouseDelayMet(a))(this._mouseStarted=this._mouseStart(this._mouseDownEvent,a)!==false)?this._mouseDrag(a):this._mouseUp(a);return!this._mouseStarted},_mouseUp:function(a){c(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate);if(this._mouseStarted){this._mouseStarted=false;a.target==this._mouseDownEvent.target&&c.data(a.target,this.widgetName+".preventClickEvent", +true);this._mouseStop(a)}return false},_mouseDistanceMet:function(a){return Math.max(Math.abs(this._mouseDownEvent.pageX-a.pageX),Math.abs(this._mouseDownEvent.pageY-a.pageY))>=this.options.distance},_mouseDelayMet:function(){return this.mouseDelayMet},_mouseStart:function(){},_mouseDrag:function(){},_mouseStop:function(){},_mouseCapture:function(){return true}})})(jQuery); +;/* + * jQuery UI Position 1.8.10 + * + * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT or GPL Version 2 licenses. + * http://jquery.org/license + * + * http://docs.jquery.com/UI/Position + */ +(function(c){c.ui=c.ui||{};var n=/left|center|right/,o=/top|center|bottom/,t=c.fn.position,u=c.fn.offset;c.fn.position=function(b){if(!b||!b.of)return t.apply(this,arguments);b=c.extend({},b);var a=c(b.of),d=a[0],g=(b.collision||"flip").split(" "),e=b.offset?b.offset.split(" "):[0,0],h,k,j;if(d.nodeType===9){h=a.width();k=a.height();j={top:0,left:0}}else if(d.setTimeout){h=a.width();k=a.height();j={top:a.scrollTop(),left:a.scrollLeft()}}else if(d.preventDefault){b.at="left top";h=k=0;j={top:b.of.pageY, +left:b.of.pageX}}else{h=a.outerWidth();k=a.outerHeight();j=a.offset()}c.each(["my","at"],function(){var f=(b[this]||"").split(" ");if(f.length===1)f=n.test(f[0])?f.concat(["center"]):o.test(f[0])?["center"].concat(f):["center","center"];f[0]=n.test(f[0])?f[0]:"center";f[1]=o.test(f[1])?f[1]:"center";b[this]=f});if(g.length===1)g[1]=g[0];e[0]=parseInt(e[0],10)||0;if(e.length===1)e[1]=e[0];e[1]=parseInt(e[1],10)||0;if(b.at[0]==="right")j.left+=h;else if(b.at[0]==="center")j.left+=h/2;if(b.at[1]==="bottom")j.top+= +k;else if(b.at[1]==="center")j.top+=k/2;j.left+=e[0];j.top+=e[1];return this.each(function(){var f=c(this),l=f.outerWidth(),m=f.outerHeight(),p=parseInt(c.curCSS(this,"marginLeft",true))||0,q=parseInt(c.curCSS(this,"marginTop",true))||0,v=l+p+(parseInt(c.curCSS(this,"marginRight",true))||0),w=m+q+(parseInt(c.curCSS(this,"marginBottom",true))||0),i=c.extend({},j),r;if(b.my[0]==="right")i.left-=l;else if(b.my[0]==="center")i.left-=l/2;if(b.my[1]==="bottom")i.top-=m;else if(b.my[1]==="center")i.top-= +m/2;i.left=Math.round(i.left);i.top=Math.round(i.top);r={left:i.left-p,top:i.top-q};c.each(["left","top"],function(s,x){c.ui.position[g[s]]&&c.ui.position[g[s]][x](i,{targetWidth:h,targetHeight:k,elemWidth:l,elemHeight:m,collisionPosition:r,collisionWidth:v,collisionHeight:w,offset:e,my:b.my,at:b.at})});c.fn.bgiframe&&f.bgiframe();f.offset(c.extend(i,{using:b.using}))})};c.ui.position={fit:{left:function(b,a){var d=c(window);d=a.collisionPosition.left+a.collisionWidth-d.width()-d.scrollLeft();b.left= +d>0?b.left-d:Math.max(b.left-a.collisionPosition.left,b.left)},top:function(b,a){var d=c(window);d=a.collisionPosition.top+a.collisionHeight-d.height()-d.scrollTop();b.top=d>0?b.top-d:Math.max(b.top-a.collisionPosition.top,b.top)}},flip:{left:function(b,a){if(a.at[0]!=="center"){var d=c(window);d=a.collisionPosition.left+a.collisionWidth-d.width()-d.scrollLeft();var g=a.my[0]==="left"?-a.elemWidth:a.my[0]==="right"?a.elemWidth:0,e=a.at[0]==="left"?a.targetWidth:-a.targetWidth,h=-2*a.offset[0];b.left+= +a.collisionPosition.left<0?g+e+h:d>0?g+e+h:0}},top:function(b,a){if(a.at[1]!=="center"){var d=c(window);d=a.collisionPosition.top+a.collisionHeight-d.height()-d.scrollTop();var g=a.my[1]==="top"?-a.elemHeight:a.my[1]==="bottom"?a.elemHeight:0,e=a.at[1]==="top"?a.targetHeight:-a.targetHeight,h=-2*a.offset[1];b.top+=a.collisionPosition.top<0?g+e+h:d>0?g+e+h:0}}}};if(!c.offset.setOffset){c.offset.setOffset=function(b,a){if(/static/.test(c.curCSS(b,"position")))b.style.position="relative";var d=c(b), +g=d.offset(),e=parseInt(c.curCSS(b,"top",true),10)||0,h=parseInt(c.curCSS(b,"left",true),10)||0;g={top:a.top-g.top+e,left:a.left-g.left+h};"using"in a?a.using.call(b,g):d.css(g)};c.fn.offset=function(b){var a=this[0];if(!a||!a.ownerDocument)return null;if(b)return this.each(function(){c.offset.setOffset(this,b)});return u.call(this)}}})(jQuery); +;/* + * jQuery UI Draggable 1.8.10 + * + * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT or GPL Version 2 licenses. + * http://jquery.org/license + * + * http://docs.jquery.com/UI/Draggables + * + * Depends: + * jquery.ui.core.js + * jquery.ui.mouse.js + * jquery.ui.widget.js + */ +(function(d){d.widget("ui.draggable",d.ui.mouse,{widgetEventPrefix:"drag",options:{addClasses:true,appendTo:"parent",axis:false,connectToSortable:false,containment:false,cursor:"auto",cursorAt:false,grid:false,handle:false,helper:"original",iframeFix:false,opacity:false,refreshPositions:false,revert:false,revertDuration:500,scope:"default",scroll:true,scrollSensitivity:20,scrollSpeed:20,snap:false,snapMode:"both",snapTolerance:20,stack:false,zIndex:false},_create:function(){if(this.options.helper== +"original"&&!/^(?:r|a|f)/.test(this.element.css("position")))this.element[0].style.position="relative";this.options.addClasses&&this.element.addClass("ui-draggable");this.options.disabled&&this.element.addClass("ui-draggable-disabled");this._mouseInit()},destroy:function(){if(this.element.data("draggable")){this.element.removeData("draggable").unbind(".draggable").removeClass("ui-draggable ui-draggable-dragging ui-draggable-disabled");this._mouseDestroy();return this}},_mouseCapture:function(a){var b= +this.options;if(this.helper||b.disabled||d(a.target).is(".ui-resizable-handle"))return false;this.handle=this._getHandle(a);if(!this.handle)return false;return true},_mouseStart:function(a){var b=this.options;this.helper=this._createHelper(a);this._cacheHelperProportions();if(d.ui.ddmanager)d.ui.ddmanager.current=this;this._cacheMargins();this.cssPosition=this.helper.css("position");this.scrollParent=this.helper.scrollParent();this.offset=this.positionAbs=this.element.offset();this.offset={top:this.offset.top- +this.margins.top,left:this.offset.left-this.margins.left};d.extend(this.offset,{click:{left:a.pageX-this.offset.left,top:a.pageY-this.offset.top},parent:this._getParentOffset(),relative:this._getRelativeOffset()});this.originalPosition=this.position=this._generatePosition(a);this.originalPageX=a.pageX;this.originalPageY=a.pageY;b.cursorAt&&this._adjustOffsetFromHelper(b.cursorAt);b.containment&&this._setContainment();if(this._trigger("start",a)===false){this._clear();return false}this._cacheHelperProportions(); +d.ui.ddmanager&&!b.dropBehaviour&&d.ui.ddmanager.prepareOffsets(this,a);this.helper.addClass("ui-draggable-dragging");this._mouseDrag(a,true);return true},_mouseDrag:function(a,b){this.position=this._generatePosition(a);this.positionAbs=this._convertPositionTo("absolute");if(!b){b=this._uiHash();if(this._trigger("drag",a,b)===false){this._mouseUp({});return false}this.position=b.position}if(!this.options.axis||this.options.axis!="y")this.helper[0].style.left=this.position.left+"px";if(!this.options.axis|| +this.options.axis!="x")this.helper[0].style.top=this.position.top+"px";d.ui.ddmanager&&d.ui.ddmanager.drag(this,a);return false},_mouseStop:function(a){var b=false;if(d.ui.ddmanager&&!this.options.dropBehaviour)b=d.ui.ddmanager.drop(this,a);if(this.dropped){b=this.dropped;this.dropped=false}if((!this.element[0]||!this.element[0].parentNode)&&this.options.helper=="original")return false;if(this.options.revert=="invalid"&&!b||this.options.revert=="valid"&&b||this.options.revert===true||d.isFunction(this.options.revert)&& +this.options.revert.call(this.element,b)){var c=this;d(this.helper).animate(this.originalPosition,parseInt(this.options.revertDuration,10),function(){c._trigger("stop",a)!==false&&c._clear()})}else this._trigger("stop",a)!==false&&this._clear();return false},cancel:function(){this.helper.is(".ui-draggable-dragging")?this._mouseUp({}):this._clear();return this},_getHandle:function(a){var b=!this.options.handle||!d(this.options.handle,this.element).length?true:false;d(this.options.handle,this.element).find("*").andSelf().each(function(){if(this== +a.target)b=true});return b},_createHelper:function(a){var b=this.options;a=d.isFunction(b.helper)?d(b.helper.apply(this.element[0],[a])):b.helper=="clone"?this.element.clone():this.element;a.parents("body").length||a.appendTo(b.appendTo=="parent"?this.element[0].parentNode:b.appendTo);a[0]!=this.element[0]&&!/(fixed|absolute)/.test(a.css("position"))&&a.css("position","absolute");return a},_adjustOffsetFromHelper:function(a){if(typeof a=="string")a=a.split(" ");if(d.isArray(a))a={left:+a[0],top:+a[1]|| +0};if("left"in a)this.offset.click.left=a.left+this.margins.left;if("right"in a)this.offset.click.left=this.helperProportions.width-a.right+this.margins.left;if("top"in a)this.offset.click.top=a.top+this.margins.top;if("bottom"in a)this.offset.click.top=this.helperProportions.height-a.bottom+this.margins.top},_getParentOffset:function(){this.offsetParent=this.helper.offsetParent();var a=this.offsetParent.offset();if(this.cssPosition=="absolute"&&this.scrollParent[0]!=document&&d.ui.contains(this.scrollParent[0], +this.offsetParent[0])){a.left+=this.scrollParent.scrollLeft();a.top+=this.scrollParent.scrollTop()}if(this.offsetParent[0]==document.body||this.offsetParent[0].tagName&&this.offsetParent[0].tagName.toLowerCase()=="html"&&d.browser.msie)a={top:0,left:0};return{top:a.top+(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:a.left+(parseInt(this.offsetParent.css("borderLeftWidth"),10)||0)}},_getRelativeOffset:function(){if(this.cssPosition=="relative"){var a=this.element.position();return{top:a.top- +(parseInt(this.helper.css("top"),10)||0)+this.scrollParent.scrollTop(),left:a.left-(parseInt(this.helper.css("left"),10)||0)+this.scrollParent.scrollLeft()}}else return{top:0,left:0}},_cacheMargins:function(){this.margins={left:parseInt(this.element.css("marginLeft"),10)||0,top:parseInt(this.element.css("marginTop"),10)||0}},_cacheHelperProportions:function(){this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()}},_setContainment:function(){var a=this.options;if(a.containment== +"parent")a.containment=this.helper[0].parentNode;if(a.containment=="document"||a.containment=="window")this.containment=[(a.containment=="document"?0:d(window).scrollLeft())-this.offset.relative.left-this.offset.parent.left,(a.containment=="document"?0:d(window).scrollTop())-this.offset.relative.top-this.offset.parent.top,(a.containment=="document"?0:d(window).scrollLeft())+d(a.containment=="document"?document:window).width()-this.helperProportions.width-this.margins.left,(a.containment=="document"? +0:d(window).scrollTop())+(d(a.containment=="document"?document:window).height()||document.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top];if(!/^(document|window|parent)$/.test(a.containment)&&a.containment.constructor!=Array){var b=d(a.containment)[0];if(b){a=d(a.containment).offset();var c=d(b).css("overflow")!="hidden";this.containment=[a.left+(parseInt(d(b).css("borderLeftWidth"),10)||0)+(parseInt(d(b).css("paddingLeft"),10)||0)-this.margins.left,a.top+(parseInt(d(b).css("borderTopWidth"), +10)||0)+(parseInt(d(b).css("paddingTop"),10)||0)-this.margins.top,a.left+(c?Math.max(b.scrollWidth,b.offsetWidth):b.offsetWidth)-(parseInt(d(b).css("borderLeftWidth"),10)||0)-(parseInt(d(b).css("paddingRight"),10)||0)-this.helperProportions.width-this.margins.left,a.top+(c?Math.max(b.scrollHeight,b.offsetHeight):b.offsetHeight)-(parseInt(d(b).css("borderTopWidth"),10)||0)-(parseInt(d(b).css("paddingBottom"),10)||0)-this.helperProportions.height-this.margins.top]}}else if(a.containment.constructor== +Array)this.containment=a.containment},_convertPositionTo:function(a,b){if(!b)b=this.position;a=a=="absolute"?1:-1;var c=this.cssPosition=="absolute"&&!(this.scrollParent[0]!=document&&d.ui.contains(this.scrollParent[0],this.offsetParent[0]))?this.offsetParent:this.scrollParent,f=/(html|body)/i.test(c[0].tagName);return{top:b.top+this.offset.relative.top*a+this.offset.parent.top*a-(d.browser.safari&&d.browser.version<526&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollTop(): +f?0:c.scrollTop())*a),left:b.left+this.offset.relative.left*a+this.offset.parent.left*a-(d.browser.safari&&d.browser.version<526&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():f?0:c.scrollLeft())*a)}},_generatePosition:function(a){var b=this.options,c=this.cssPosition=="absolute"&&!(this.scrollParent[0]!=document&&d.ui.contains(this.scrollParent[0],this.offsetParent[0]))?this.offsetParent:this.scrollParent,f=/(html|body)/i.test(c[0].tagName),e=a.pageX,g=a.pageY; +if(this.originalPosition){if(this.containment){if(a.pageX-this.offset.click.leftthis.containment[2])e=this.containment[2]+this.offset.click.left;if(a.pageY-this.offset.click.top>this.containment[3])g=this.containment[3]+this.offset.click.top}if(b.grid){g=this.originalPageY+Math.round((g-this.originalPageY)/ +b.grid[1])*b.grid[1];g=this.containment?!(g-this.offset.click.topthis.containment[3])?g:!(g-this.offset.click.topthis.containment[2])?e:!(e-this.offset.click.left
    ').css({width:this.offsetWidth+"px",height:this.offsetHeight+"px",position:"absolute",opacity:"0.001",zIndex:1E3}).css(d(this).offset()).appendTo("body")})}, +stop:function(){d("div.ui-draggable-iframeFix").each(function(){this.parentNode.removeChild(this)})}});d.ui.plugin.add("draggable","opacity",{start:function(a,b){a=d(b.helper);b=d(this).data("draggable").options;if(a.css("opacity"))b._opacity=a.css("opacity");a.css("opacity",b.opacity)},stop:function(a,b){a=d(this).data("draggable").options;a._opacity&&d(b.helper).css("opacity",a._opacity)}});d.ui.plugin.add("draggable","scroll",{start:function(){var a=d(this).data("draggable");if(a.scrollParent[0]!= +document&&a.scrollParent[0].tagName!="HTML")a.overflowOffset=a.scrollParent.offset()},drag:function(a){var b=d(this).data("draggable"),c=b.options,f=false;if(b.scrollParent[0]!=document&&b.scrollParent[0].tagName!="HTML"){if(!c.axis||c.axis!="x")if(b.overflowOffset.top+b.scrollParent[0].offsetHeight-a.pageY=0;h--){var i=c.snapElements[h].left,k=i+c.snapElements[h].width,j=c.snapElements[h].top,l=j+c.snapElements[h].height;if(i-e').css({position:this.element.css("position"),width:this.element.outerWidth(),height:this.element.outerHeight(), +top:this.element.css("top"),left:this.element.css("left")}));this.element=this.element.parent().data("resizable",this.element.data("resizable"));this.elementIsWrapper=true;this.element.css({marginLeft:this.originalElement.css("marginLeft"),marginTop:this.originalElement.css("marginTop"),marginRight:this.originalElement.css("marginRight"),marginBottom:this.originalElement.css("marginBottom")});this.originalElement.css({marginLeft:0,marginTop:0,marginRight:0,marginBottom:0});this.originalResizeStyle= +this.originalElement.css("resize");this.originalElement.css("resize","none");this._proportionallyResizeElements.push(this.originalElement.css({position:"static",zoom:1,display:"block"}));this.originalElement.css({margin:this.originalElement.css("margin")});this._proportionallyResize()}this.handles=a.handles||(!e(".ui-resizable-handle",this.element).length?"e,s,se":{n:".ui-resizable-n",e:".ui-resizable-e",s:".ui-resizable-s",w:".ui-resizable-w",se:".ui-resizable-se",sw:".ui-resizable-sw",ne:".ui-resizable-ne", +nw:".ui-resizable-nw"});if(this.handles.constructor==String){if(this.handles=="all")this.handles="n,e,s,w,se,sw,ne,nw";var c=this.handles.split(",");this.handles={};for(var d=0;d');/sw|se|ne|nw/.test(f)&&g.css({zIndex:++a.zIndex});"se"==f&&g.addClass("ui-icon ui-icon-gripsmall-diagonal-se");this.handles[f]=".ui-resizable-"+f;this.element.append(g)}}this._renderAxis=function(h){h=h||this.element;for(var i in this.handles){if(this.handles[i].constructor== +String)this.handles[i]=e(this.handles[i],this.element).show();if(this.elementIsWrapper&&this.originalElement[0].nodeName.match(/textarea|input|select|button/i)){var j=e(this.handles[i],this.element),k=0;k=/sw|ne|nw|se|n|s/.test(i)?j.outerHeight():j.outerWidth();j=["padding",/ne|nw|n/.test(i)?"Top":/se|sw|s/.test(i)?"Bottom":/^e$/.test(i)?"Right":"Left"].join("");h.css(j,k);this._proportionallyResize()}e(this.handles[i])}};this._renderAxis(this.element);this._handles=e(".ui-resizable-handle",this.element).disableSelection(); +this._handles.mouseover(function(){if(!b.resizing){if(this.className)var h=this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i);b.axis=h&&h[1]?h[1]:"se"}});if(a.autoHide){this._handles.hide();e(this.element).addClass("ui-resizable-autohide").hover(function(){e(this).removeClass("ui-resizable-autohide");b._handles.show()},function(){if(!b.resizing){e(this).addClass("ui-resizable-autohide");b._handles.hide()}})}this._mouseInit()},destroy:function(){this._mouseDestroy();var b=function(c){e(c).removeClass("ui-resizable ui-resizable-disabled ui-resizable-resizing").removeData("resizable").unbind(".resizable").find(".ui-resizable-handle").remove()}; +if(this.elementIsWrapper){b(this.element);var a=this.element;a.after(this.originalElement.css({position:a.css("position"),width:a.outerWidth(),height:a.outerHeight(),top:a.css("top"),left:a.css("left")})).remove()}this.originalElement.css("resize",this.originalResizeStyle);b(this.originalElement);return this},_mouseCapture:function(b){var a=false;for(var c in this.handles)if(e(this.handles[c])[0]==b.target)a=true;return!this.options.disabled&&a},_mouseStart:function(b){var a=this.options,c=this.element.position(), +d=this.element;this.resizing=true;this.documentScroll={top:e(document).scrollTop(),left:e(document).scrollLeft()};if(d.is(".ui-draggable")||/absolute/.test(d.css("position")))d.css({position:"absolute",top:c.top,left:c.left});e.browser.opera&&/relative/.test(d.css("position"))&&d.css({position:"relative",top:"auto",left:"auto"});this._renderProxy();c=m(this.helper.css("left"));var f=m(this.helper.css("top"));if(a.containment){c+=e(a.containment).scrollLeft()||0;f+=e(a.containment).scrollTop()||0}this.offset= +this.helper.offset();this.position={left:c,top:f};this.size=this._helper?{width:d.outerWidth(),height:d.outerHeight()}:{width:d.width(),height:d.height()};this.originalSize=this._helper?{width:d.outerWidth(),height:d.outerHeight()}:{width:d.width(),height:d.height()};this.originalPosition={left:c,top:f};this.sizeDiff={width:d.outerWidth()-d.width(),height:d.outerHeight()-d.height()};this.originalMousePosition={left:b.pageX,top:b.pageY};this.aspectRatio=typeof a.aspectRatio=="number"?a.aspectRatio: +this.originalSize.width/this.originalSize.height||1;a=e(".ui-resizable-"+this.axis).css("cursor");e("body").css("cursor",a=="auto"?this.axis+"-resize":a);d.addClass("ui-resizable-resizing");this._propagate("start",b);return true},_mouseDrag:function(b){var a=this.helper,c=this.originalMousePosition,d=this._change[this.axis];if(!d)return false;c=d.apply(this,[b,b.pageX-c.left||0,b.pageY-c.top||0]);if(this._aspectRatio||b.shiftKey)c=this._updateRatio(c,b);c=this._respectSize(c,b);this._propagate("resize", +b);a.css({top:this.position.top+"px",left:this.position.left+"px",width:this.size.width+"px",height:this.size.height+"px"});!this._helper&&this._proportionallyResizeElements.length&&this._proportionallyResize();this._updateCache(c);this._trigger("resize",b,this.ui());return false},_mouseStop:function(b){this.resizing=false;var a=this.options,c=this;if(this._helper){var d=this._proportionallyResizeElements,f=d.length&&/textarea/i.test(d[0].nodeName);d=f&&e.ui.hasScroll(d[0],"left")?0:c.sizeDiff.height; +f=f?0:c.sizeDiff.width;f={width:c.helper.width()-f,height:c.helper.height()-d};d=parseInt(c.element.css("left"),10)+(c.position.left-c.originalPosition.left)||null;var g=parseInt(c.element.css("top"),10)+(c.position.top-c.originalPosition.top)||null;a.animate||this.element.css(e.extend(f,{top:g,left:d}));c.helper.height(c.size.height);c.helper.width(c.size.width);this._helper&&!a.animate&&this._proportionallyResize()}e("body").css("cursor","auto");this.element.removeClass("ui-resizable-resizing"); +this._propagate("stop",b);this._helper&&this.helper.remove();return false},_updateCache:function(b){this.offset=this.helper.offset();if(l(b.left))this.position.left=b.left;if(l(b.top))this.position.top=b.top;if(l(b.height))this.size.height=b.height;if(l(b.width))this.size.width=b.width},_updateRatio:function(b){var a=this.position,c=this.size,d=this.axis;if(b.height)b.width=c.height*this.aspectRatio;else if(b.width)b.height=c.width/this.aspectRatio;if(d=="sw"){b.left=a.left+(c.width-b.width);b.top= +null}if(d=="nw"){b.top=a.top+(c.height-b.height);b.left=a.left+(c.width-b.width)}return b},_respectSize:function(b){var a=this.options,c=this.axis,d=l(b.width)&&a.maxWidth&&a.maxWidthb.width,h=l(b.height)&&a.minHeight&&a.minHeight>b.height;if(g)b.width=a.minWidth;if(h)b.height=a.minHeight;if(d)b.width=a.maxWidth;if(f)b.height=a.maxHeight;var i=this.originalPosition.left+this.originalSize.width,j=this.position.top+ +this.size.height,k=/sw|nw|w/.test(c);c=/nw|ne|n/.test(c);if(g&&k)b.left=i-a.minWidth;if(d&&k)b.left=i-a.maxWidth;if(h&&c)b.top=j-a.minHeight;if(f&&c)b.top=j-a.maxHeight;if((a=!b.width&&!b.height)&&!b.left&&b.top)b.top=null;else if(a&&!b.top&&b.left)b.left=null;return b},_proportionallyResize:function(){if(this._proportionallyResizeElements.length)for(var b=this.helper||this.element,a=0;a');var a=e.browser.msie&&e.browser.version<7,c=a?1:0;a=a?2:-1;this.helper.addClass(this._helper).css({width:this.element.outerWidth()+a,height:this.element.outerHeight()+a,position:"absolute",left:this.elementOffset.left-c+"px",top:this.elementOffset.top-c+"px",zIndex:++b.zIndex});this.helper.appendTo("body").disableSelection()}else this.helper=this.element},_change:{e:function(b, +a){return{width:this.originalSize.width+a}},w:function(b,a){return{left:this.originalPosition.left+a,width:this.originalSize.width-a}},n:function(b,a,c){return{top:this.originalPosition.top+c,height:this.originalSize.height-c}},s:function(b,a,c){return{height:this.originalSize.height+c}},se:function(b,a,c){return e.extend(this._change.s.apply(this,arguments),this._change.e.apply(this,[b,a,c]))},sw:function(b,a,c){return e.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[b,a, +c]))},ne:function(b,a,c){return e.extend(this._change.n.apply(this,arguments),this._change.e.apply(this,[b,a,c]))},nw:function(b,a,c){return e.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[b,a,c]))}},_propagate:function(b,a){e.ui.plugin.call(this,b,[a,this.ui()]);b!="resize"&&this._trigger(b,a,this.ui())},plugins:{},ui:function(){return{originalElement:this.originalElement,element:this.element,helper:this.helper,position:this.position,size:this.size,originalSize:this.originalSize, +originalPosition:this.originalPosition}}});e.extend(e.ui.resizable,{version:"1.8.10"});e.ui.plugin.add("resizable","alsoResize",{start:function(){var b=e(this).data("resizable").options,a=function(c){e(c).each(function(){var d=e(this);d.data("resizable-alsoresize",{width:parseInt(d.width(),10),height:parseInt(d.height(),10),left:parseInt(d.css("left"),10),top:parseInt(d.css("top"),10),position:d.css("position")})})};if(typeof b.alsoResize=="object"&&!b.alsoResize.parentNode)if(b.alsoResize.length){b.alsoResize= +b.alsoResize[0];a(b.alsoResize)}else e.each(b.alsoResize,function(c){a(c)});else a(b.alsoResize)},resize:function(b,a){var c=e(this).data("resizable");b=c.options;var d=c.originalSize,f=c.originalPosition,g={height:c.size.height-d.height||0,width:c.size.width-d.width||0,top:c.position.top-f.top||0,left:c.position.left-f.left||0},h=function(i,j){e(i).each(function(){var k=e(this),q=e(this).data("resizable-alsoresize"),p={},r=j&&j.length?j:k.parents(a.originalElement[0]).length?["width","height"]:["width", +"height","top","left"];e.each(r,function(n,o){if((n=(q[o]||0)+(g[o]||0))&&n>=0)p[o]=n||null});if(e.browser.opera&&/relative/.test(k.css("position"))){c._revertToRelativePosition=true;k.css({position:"absolute",top:"auto",left:"auto"})}k.css(p)})};typeof b.alsoResize=="object"&&!b.alsoResize.nodeType?e.each(b.alsoResize,function(i,j){h(i,j)}):h(b.alsoResize)},stop:function(){var b=e(this).data("resizable"),a=b.options,c=function(d){e(d).each(function(){var f=e(this);f.css({position:f.data("resizable-alsoresize").position})})}; +if(b._revertToRelativePosition){b._revertToRelativePosition=false;typeof a.alsoResize=="object"&&!a.alsoResize.nodeType?e.each(a.alsoResize,function(d){c(d)}):c(a.alsoResize)}e(this).removeData("resizable-alsoresize")}});e.ui.plugin.add("resizable","animate",{stop:function(b){var a=e(this).data("resizable"),c=a.options,d=a._proportionallyResizeElements,f=d.length&&/textarea/i.test(d[0].nodeName),g=f&&e.ui.hasScroll(d[0],"left")?0:a.sizeDiff.height;f={width:a.size.width-(f?0:a.sizeDiff.width),height:a.size.height- +g};g=parseInt(a.element.css("left"),10)+(a.position.left-a.originalPosition.left)||null;var h=parseInt(a.element.css("top"),10)+(a.position.top-a.originalPosition.top)||null;a.element.animate(e.extend(f,h&&g?{top:h,left:g}:{}),{duration:c.animateDuration,easing:c.animateEasing,step:function(){var i={width:parseInt(a.element.css("width"),10),height:parseInt(a.element.css("height"),10),top:parseInt(a.element.css("top"),10),left:parseInt(a.element.css("left"),10)};d&&d.length&&e(d[0]).css({width:i.width, +height:i.height});a._updateCache(i);a._propagate("resize",b)}})}});e.ui.plugin.add("resizable","containment",{start:function(){var b=e(this).data("resizable"),a=b.element,c=b.options.containment;if(a=c instanceof e?c.get(0):/parent/.test(c)?a.parent().get(0):c){b.containerElement=e(a);if(/document/.test(c)||c==document){b.containerOffset={left:0,top:0};b.containerPosition={left:0,top:0};b.parentData={element:e(document),left:0,top:0,width:e(document).width(),height:e(document).height()||document.body.parentNode.scrollHeight}}else{var d= +e(a),f=[];e(["Top","Right","Left","Bottom"]).each(function(i,j){f[i]=m(d.css("padding"+j))});b.containerOffset=d.offset();b.containerPosition=d.position();b.containerSize={height:d.innerHeight()-f[3],width:d.innerWidth()-f[1]};c=b.containerOffset;var g=b.containerSize.height,h=b.containerSize.width;h=e.ui.hasScroll(a,"left")?a.scrollWidth:h;g=e.ui.hasScroll(a)?a.scrollHeight:g;b.parentData={element:a,left:c.left,top:c.top,width:h,height:g}}}},resize:function(b){var a=e(this).data("resizable"),c=a.options, +d=a.containerOffset,f=a.position;b=a._aspectRatio||b.shiftKey;var g={top:0,left:0},h=a.containerElement;if(h[0]!=document&&/static/.test(h.css("position")))g=d;if(f.left<(a._helper?d.left:0)){a.size.width+=a._helper?a.position.left-d.left:a.position.left-g.left;if(b)a.size.height=a.size.width/c.aspectRatio;a.position.left=c.helper?d.left:0}if(f.top<(a._helper?d.top:0)){a.size.height+=a._helper?a.position.top-d.top:a.position.top;if(b)a.size.width=a.size.height*c.aspectRatio;a.position.top=a._helper? +d.top:0}a.offset.left=a.parentData.left+a.position.left;a.offset.top=a.parentData.top+a.position.top;c=Math.abs((a._helper?a.offset.left-g.left:a.offset.left-g.left)+a.sizeDiff.width);d=Math.abs((a._helper?a.offset.top-g.top:a.offset.top-d.top)+a.sizeDiff.height);f=a.containerElement.get(0)==a.element.parent().get(0);g=/relative|absolute/.test(a.containerElement.css("position"));if(f&&g)c-=a.parentData.left;if(c+a.size.width>=a.parentData.width){a.size.width=a.parentData.width-c;if(b)a.size.height= +a.size.width/a.aspectRatio}if(d+a.size.height>=a.parentData.height){a.size.height=a.parentData.height-d;if(b)a.size.width=a.size.height*a.aspectRatio}},stop:function(){var b=e(this).data("resizable"),a=b.options,c=b.containerOffset,d=b.containerPosition,f=b.containerElement,g=e(b.helper),h=g.offset(),i=g.outerWidth()-b.sizeDiff.width;g=g.outerHeight()-b.sizeDiff.height;b._helper&&!a.animate&&/relative/.test(f.css("position"))&&e(this).css({left:h.left-d.left-c.left,width:i,height:g});b._helper&&!a.animate&& +/static/.test(f.css("position"))&&e(this).css({left:h.left-d.left-c.left,width:i,height:g})}});e.ui.plugin.add("resizable","ghost",{start:function(){var b=e(this).data("resizable"),a=b.options,c=b.size;b.ghost=b.originalElement.clone();b.ghost.css({opacity:0.25,display:"block",position:"relative",height:c.height,width:c.width,margin:0,left:0,top:0}).addClass("ui-resizable-ghost").addClass(typeof a.ghost=="string"?a.ghost:"");b.ghost.appendTo(b.helper)},resize:function(){var b=e(this).data("resizable"); +b.ghost&&b.ghost.css({position:"relative",height:b.size.height,width:b.size.width})},stop:function(){var b=e(this).data("resizable");b.ghost&&b.helper&&b.helper.get(0).removeChild(b.ghost.get(0))}});e.ui.plugin.add("resizable","grid",{resize:function(){var b=e(this).data("resizable"),a=b.options,c=b.size,d=b.originalSize,f=b.originalPosition,g=b.axis;a.grid=typeof a.grid=="number"?[a.grid,a.grid]:a.grid;var h=Math.round((c.width-d.width)/(a.grid[0]||1))*(a.grid[0]||1);a=Math.round((c.height-d.height)/ +(a.grid[1]||1))*(a.grid[1]||1);if(/^(se|s|e)$/.test(g)){b.size.width=d.width+h;b.size.height=d.height+a}else if(/^(ne)$/.test(g)){b.size.width=d.width+h;b.size.height=d.height+a;b.position.top=f.top-a}else{if(/^(sw)$/.test(g)){b.size.width=d.width+h;b.size.height=d.height+a}else{b.size.width=d.width+h;b.size.height=d.height+a;b.position.top=f.top-a}b.position.left=f.left-h}}});var m=function(b){return parseInt(b,10)||0},l=function(b){return!isNaN(parseInt(b,10))}})(jQuery); +;/* + * jQuery UI Dialog 1.8.10 + * + * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT or GPL Version 2 licenses. + * http://jquery.org/license + * + * http://docs.jquery.com/UI/Dialog + * + * Depends: + * jquery.ui.core.js + * jquery.ui.widget.js + * jquery.ui.button.js + * jquery.ui.draggable.js + * jquery.ui.mouse.js + * jquery.ui.position.js + * jquery.ui.resizable.js + */ +(function(c,j){var k={buttons:true,height:true,maxHeight:true,maxWidth:true,minHeight:true,minWidth:true,width:true},l={maxHeight:true,maxWidth:true,minHeight:true,minWidth:true};c.widget("ui.dialog",{options:{autoOpen:true,buttons:{},closeOnEscape:true,closeText:"close",dialogClass:"",draggable:true,hide:null,height:"auto",maxHeight:false,maxWidth:false,minHeight:150,minWidth:150,modal:false,position:{my:"center",at:"center",collision:"fit",using:function(a){var b=c(this).css(a).offset().top;b<0&& +c(this).css("top",a.top-b)}},resizable:true,show:null,stack:true,title:"",width:300,zIndex:1E3},_create:function(){this.originalTitle=this.element.attr("title");if(typeof this.originalTitle!=="string")this.originalTitle="";this.options.title=this.options.title||this.originalTitle;var a=this,b=a.options,d=b.title||" ",e=c.ui.dialog.getTitleId(a.element),g=(a.uiDialog=c("
    ")).appendTo(document.body).hide().addClass("ui-dialog ui-widget ui-widget-content ui-corner-all "+b.dialogClass).css({zIndex:b.zIndex}).attr("tabIndex", +-1).css("outline",0).keydown(function(i){if(b.closeOnEscape&&i.keyCode&&i.keyCode===c.ui.keyCode.ESCAPE){a.close(i);i.preventDefault()}}).attr({role:"dialog","aria-labelledby":e}).mousedown(function(i){a.moveToTop(false,i)});a.element.show().removeAttr("title").addClass("ui-dialog-content ui-widget-content").appendTo(g);var f=(a.uiDialogTitlebar=c("
    ")).addClass("ui-dialog-titlebar ui-widget-header ui-corner-all ui-helper-clearfix").prependTo(g),h=c('').addClass("ui-dialog-titlebar-close ui-corner-all").attr("role", +"button").hover(function(){h.addClass("ui-state-hover")},function(){h.removeClass("ui-state-hover")}).focus(function(){h.addClass("ui-state-focus")}).blur(function(){h.removeClass("ui-state-focus")}).click(function(i){a.close(i);return false}).appendTo(f);(a.uiDialogTitlebarCloseText=c("")).addClass("ui-icon ui-icon-closethick").text(b.closeText).appendTo(h);c("").addClass("ui-dialog-title").attr("id",e).html(d).prependTo(f);if(c.isFunction(b.beforeclose)&&!c.isFunction(b.beforeClose))b.beforeClose= +b.beforeclose;f.find("*").add(f).disableSelection();b.draggable&&c.fn.draggable&&a._makeDraggable();b.resizable&&c.fn.resizable&&a._makeResizable();a._createButtons(b.buttons);a._isOpen=false;c.fn.bgiframe&&g.bgiframe()},_init:function(){this.options.autoOpen&&this.open()},destroy:function(){var a=this;a.overlay&&a.overlay.destroy();a.uiDialog.hide();a.element.unbind(".dialog").removeData("dialog").removeClass("ui-dialog-content ui-widget-content").hide().appendTo("body");a.uiDialog.remove();a.originalTitle&& +a.element.attr("title",a.originalTitle);return a},widget:function(){return this.uiDialog},close:function(a){var b=this,d,e;if(false!==b._trigger("beforeClose",a)){b.overlay&&b.overlay.destroy();b.uiDialog.unbind("keypress.ui-dialog");b._isOpen=false;if(b.options.hide)b.uiDialog.hide(b.options.hide,function(){b._trigger("close",a)});else{b.uiDialog.hide();b._trigger("close",a)}c.ui.dialog.overlay.resize();if(b.options.modal){d=0;c(".ui-dialog").each(function(){if(this!==b.uiDialog[0]){e=c(this).css("z-index"); +isNaN(e)||(d=Math.max(d,e))}});c.ui.dialog.maxZ=d}return b}},isOpen:function(){return this._isOpen},moveToTop:function(a,b){var d=this,e=d.options;if(e.modal&&!a||!e.stack&&!e.modal)return d._trigger("focus",b);if(e.zIndex>c.ui.dialog.maxZ)c.ui.dialog.maxZ=e.zIndex;if(d.overlay){c.ui.dialog.maxZ+=1;d.overlay.$el.css("z-index",c.ui.dialog.overlay.maxZ=c.ui.dialog.maxZ)}a={scrollTop:d.element.attr("scrollTop"),scrollLeft:d.element.attr("scrollLeft")};c.ui.dialog.maxZ+=1;d.uiDialog.css("z-index",c.ui.dialog.maxZ); +d.element.attr(a);d._trigger("focus",b);return d},open:function(){if(!this._isOpen){var a=this,b=a.options,d=a.uiDialog;a.overlay=b.modal?new c.ui.dialog.overlay(a):null;a._size();a._position(b.position);d.show(b.show);a.moveToTop(true);b.modal&&d.bind("keypress.ui-dialog",function(e){if(e.keyCode===c.ui.keyCode.TAB){var g=c(":tabbable",this),f=g.filter(":first");g=g.filter(":last");if(e.target===g[0]&&!e.shiftKey){f.focus(1);return false}else if(e.target===f[0]&&e.shiftKey){g.focus(1);return false}}}); +c(a.element.find(":tabbable").get().concat(d.find(".ui-dialog-buttonpane :tabbable").get().concat(d.get()))).eq(0).focus();a._isOpen=true;a._trigger("open");return a}},_createButtons:function(a){var b=this,d=false,e=c("
    ").addClass("ui-dialog-buttonpane ui-widget-content ui-helper-clearfix"),g=c("
    ").addClass("ui-dialog-buttonset").appendTo(e);b.uiDialog.find(".ui-dialog-buttonpane").remove();typeof a==="object"&&a!==null&&c.each(a,function(){return!(d=true)});if(d){c.each(a,function(f, +h){h=c.isFunction(h)?{click:h,text:f}:h;f=c('').attr(h,true).unbind("click").click(function(){h.click.apply(b.element[0],arguments)}).appendTo(g);c.fn.button&&f.button()});e.appendTo(b.uiDialog)}},_makeDraggable:function(){function a(f){return{position:f.position,offset:f.offset}}var b=this,d=b.options,e=c(document),g;b.uiDialog.draggable({cancel:".ui-dialog-content, .ui-dialog-titlebar-close",handle:".ui-dialog-titlebar",containment:"document",start:function(f,h){g= +d.height==="auto"?"auto":c(this).height();c(this).height(c(this).height()).addClass("ui-dialog-dragging");b._trigger("dragStart",f,a(h))},drag:function(f,h){b._trigger("drag",f,a(h))},stop:function(f,h){d.position=[h.position.left-e.scrollLeft(),h.position.top-e.scrollTop()];c(this).removeClass("ui-dialog-dragging").height(g);b._trigger("dragStop",f,a(h));c.ui.dialog.overlay.resize()}})},_makeResizable:function(a){function b(f){return{originalPosition:f.originalPosition,originalSize:f.originalSize, +position:f.position,size:f.size}}a=a===j?this.options.resizable:a;var d=this,e=d.options,g=d.uiDialog.css("position");a=typeof a==="string"?a:"n,e,s,w,se,sw,ne,nw";d.uiDialog.resizable({cancel:".ui-dialog-content",containment:"document",alsoResize:d.element,maxWidth:e.maxWidth,maxHeight:e.maxHeight,minWidth:e.minWidth,minHeight:d._minHeight(),handles:a,start:function(f,h){c(this).addClass("ui-dialog-resizing");d._trigger("resizeStart",f,b(h))},resize:function(f,h){d._trigger("resize",f,b(h))},stop:function(f, +h){c(this).removeClass("ui-dialog-resizing");e.height=c(this).height();e.width=c(this).width();d._trigger("resizeStop",f,b(h));c.ui.dialog.overlay.resize()}}).css("position",g).find(".ui-resizable-se").addClass("ui-icon ui-icon-grip-diagonal-se")},_minHeight:function(){var a=this.options;return a.height==="auto"?a.minHeight:Math.min(a.minHeight,a.height)},_position:function(a){var b=[],d=[0,0],e;if(a){if(typeof a==="string"||typeof a==="object"&&"0"in a){b=a.split?a.split(" "):[a[0],a[1]];if(b.length=== +1)b[1]=b[0];c.each(["left","top"],function(g,f){if(+b[g]===b[g]){d[g]=b[g];b[g]=f}});a={my:b.join(" "),at:b.join(" "),offset:d.join(" ")}}a=c.extend({},c.ui.dialog.prototype.options.position,a)}else a=c.ui.dialog.prototype.options.position;(e=this.uiDialog.is(":visible"))||this.uiDialog.show();this.uiDialog.css({top:0,left:0}).position(c.extend({of:window},a));e||this.uiDialog.hide()},_setOptions:function(a){var b=this,d={},e=false;c.each(a,function(g,f){b._setOption(g,f);if(g in k)e=true;if(g in +l)d[g]=f});e&&this._size();this.uiDialog.is(":data(resizable)")&&this.uiDialog.resizable("option",d)},_setOption:function(a,b){var d=this,e=d.uiDialog;switch(a){case "beforeclose":a="beforeClose";break;case "buttons":d._createButtons(b);break;case "closeText":d.uiDialogTitlebarCloseText.text(""+b);break;case "dialogClass":e.removeClass(d.options.dialogClass).addClass("ui-dialog ui-widget ui-widget-content ui-corner-all "+b);break;case "disabled":b?e.addClass("ui-dialog-disabled"):e.removeClass("ui-dialog-disabled"); +break;case "draggable":var g=e.is(":data(draggable)");g&&!b&&e.draggable("destroy");!g&&b&&d._makeDraggable();break;case "position":d._position(b);break;case "resizable":(g=e.is(":data(resizable)"))&&!b&&e.resizable("destroy");g&&typeof b==="string"&&e.resizable("option","handles",b);!g&&b!==false&&d._makeResizable(b);break;case "title":c(".ui-dialog-title",d.uiDialogTitlebar).html(""+(b||" "));break}c.Widget.prototype._setOption.apply(d,arguments)},_size:function(){var a=this.options,b,d,e= +this.uiDialog.is(":visible");this.element.show().css({width:"auto",minHeight:0,height:0});if(a.minWidth>a.width)a.width=a.minWidth;b=this.uiDialog.css({height:"auto",width:a.width}).height();d=Math.max(0,a.minHeight-b);if(a.height==="auto")if(c.support.minHeight)this.element.css({minHeight:d,height:"auto"});else{this.uiDialog.show();a=this.element.css("height","auto").height();e||this.uiDialog.hide();this.element.height(Math.max(a,d))}else this.element.height(Math.max(a.height-b,0));this.uiDialog.is(":data(resizable)")&& +this.uiDialog.resizable("option","minHeight",this._minHeight())}});c.extend(c.ui.dialog,{version:"1.8.10",uuid:0,maxZ:0,getTitleId:function(a){a=a.attr("id");if(!a){this.uuid+=1;a=this.uuid}return"ui-dialog-title-"+a},overlay:function(a){this.$el=c.ui.dialog.overlay.create(a)}});c.extend(c.ui.dialog.overlay,{instances:[],oldInstances:[],maxZ:0,events:c.map("focus,mousedown,mouseup,keydown,keypress,click".split(","),function(a){return a+".dialog-overlay"}).join(" "),create:function(a){if(this.instances.length=== +0){setTimeout(function(){c.ui.dialog.overlay.instances.length&&c(document).bind(c.ui.dialog.overlay.events,function(d){if(c(d.target).zIndex()").addClass("ui-widget-overlay")).appendTo(document.body).css({width:this.width(), +height:this.height()});c.fn.bgiframe&&b.bgiframe();this.instances.push(b);return b},destroy:function(a){var b=c.inArray(a,this.instances);b!=-1&&this.oldInstances.push(this.instances.splice(b,1)[0]);this.instances.length===0&&c([document,window]).unbind(".dialog-overlay");a.remove();var d=0;c.each(this.instances,function(){d=Math.max(d,this.css("z-index"))});this.maxZ=d},height:function(){var a,b;if(c.browser.msie&&c.browser.version<7){a=Math.max(document.documentElement.scrollHeight,document.body.scrollHeight); +b=Math.max(document.documentElement.offsetHeight,document.body.offsetHeight);return a").addClass("ui-effects-wrapper").css({fontSize:"100%",background:"transparent", +border:"none",margin:0,padding:0});c.wrap(b);b=c.parent();if(c.css("position")=="static"){b.css({position:"relative"});c.css({position:"relative"})}else{f.extend(a,{position:c.css("position"),zIndex:c.css("z-index")});f.each(["top","left","bottom","right"],function(d,e){a[e]=c.css(e);if(isNaN(parseInt(a[e],10)))a[e]="auto"});c.css({position:"relative",top:0,left:0,right:"auto",bottom:"auto"})}return b.css(a).show()},removeWrapper:function(c){if(c.parent().is(".ui-effects-wrapper"))return c.parent().replaceWith(c); +return c},setTransition:function(c,a,b,d){d=d||{};f.each(a,function(e,g){unit=c.cssUnit(g);if(unit[0]>0)d[g]=unit[0]*b+unit[1]});return d}});f.fn.extend({effect:function(c){var a=k.apply(this,arguments),b={options:a[1],duration:a[2],callback:a[3]};a=b.options.mode;var d=f.effects[c];if(f.fx.off||!d)return a?this[a](b.duration,b.callback):this.each(function(){b.callback&&b.callback.call(this)});return d.call(this,b)},_show:f.fn.show,show:function(c){if(m(c))return this._show.apply(this,arguments); +else{var a=k.apply(this,arguments);a[1].mode="show";return this.effect.apply(this,a)}},_hide:f.fn.hide,hide:function(c){if(m(c))return this._hide.apply(this,arguments);else{var a=k.apply(this,arguments);a[1].mode="hide";return this.effect.apply(this,a)}},__toggle:f.fn.toggle,toggle:function(c){if(m(c)||typeof c==="boolean"||f.isFunction(c))return this.__toggle.apply(this,arguments);else{var a=k.apply(this,arguments);a[1].mode="toggle";return this.effect.apply(this,a)}},cssUnit:function(c){var a=this.css(c), +b=[];f.each(["em","px","%","pt"],function(d,e){if(a.indexOf(e)>0)b=[parseFloat(a),e]});return b}});f.easing.jswing=f.easing.swing;f.extend(f.easing,{def:"easeOutQuad",swing:function(c,a,b,d,e){return f.easing[f.easing.def](c,a,b,d,e)},easeInQuad:function(c,a,b,d,e){return d*(a/=e)*a+b},easeOutQuad:function(c,a,b,d,e){return-d*(a/=e)*(a-2)+b},easeInOutQuad:function(c,a,b,d,e){if((a/=e/2)<1)return d/2*a*a+b;return-d/2*(--a*(a-2)-1)+b},easeInCubic:function(c,a,b,d,e){return d*(a/=e)*a*a+b},easeOutCubic:function(c, +a,b,d,e){return d*((a=a/e-1)*a*a+1)+b},easeInOutCubic:function(c,a,b,d,e){if((a/=e/2)<1)return d/2*a*a*a+b;return d/2*((a-=2)*a*a+2)+b},easeInQuart:function(c,a,b,d,e){return d*(a/=e)*a*a*a+b},easeOutQuart:function(c,a,b,d,e){return-d*((a=a/e-1)*a*a*a-1)+b},easeInOutQuart:function(c,a,b,d,e){if((a/=e/2)<1)return d/2*a*a*a*a+b;return-d/2*((a-=2)*a*a*a-2)+b},easeInQuint:function(c,a,b,d,e){return d*(a/=e)*a*a*a*a+b},easeOutQuint:function(c,a,b,d,e){return d*((a=a/e-1)*a*a*a*a+1)+b},easeInOutQuint:function(c, +a,b,d,e){if((a/=e/2)<1)return d/2*a*a*a*a*a+b;return d/2*((a-=2)*a*a*a*a+2)+b},easeInSine:function(c,a,b,d,e){return-d*Math.cos(a/e*(Math.PI/2))+d+b},easeOutSine:function(c,a,b,d,e){return d*Math.sin(a/e*(Math.PI/2))+b},easeInOutSine:function(c,a,b,d,e){return-d/2*(Math.cos(Math.PI*a/e)-1)+b},easeInExpo:function(c,a,b,d,e){return a==0?b:d*Math.pow(2,10*(a/e-1))+b},easeOutExpo:function(c,a,b,d,e){return a==e?b+d:d*(-Math.pow(2,-10*a/e)+1)+b},easeInOutExpo:function(c,a,b,d,e){if(a==0)return b;if(a== +e)return b+d;if((a/=e/2)<1)return d/2*Math.pow(2,10*(a-1))+b;return d/2*(-Math.pow(2,-10*--a)+2)+b},easeInCirc:function(c,a,b,d,e){return-d*(Math.sqrt(1-(a/=e)*a)-1)+b},easeOutCirc:function(c,a,b,d,e){return d*Math.sqrt(1-(a=a/e-1)*a)+b},easeInOutCirc:function(c,a,b,d,e){if((a/=e/2)<1)return-d/2*(Math.sqrt(1-a*a)-1)+b;return d/2*(Math.sqrt(1-(a-=2)*a)+1)+b},easeInElastic:function(c,a,b,d,e){c=1.70158;var g=0,h=d;if(a==0)return b;if((a/=e)==1)return b+d;g||(g=e*0.3);if(h= 5 && + location.href.indexOf('file://') >= 0; + + var webkitRegex = /WebKit\//g ; + WEBKIT = Boolean(webkitRegex.exec(window.navigator.userAgent)); + + var macRegex = /Mac/g ; + OS_MAC = Boolean(macRegex.exec(window.navigator.platform)); +})(); + +(function() { + var _topMessageCenter; + var _messageCenter = {}; + var _listeners = []; + var _stateListeners = []; + var _state = {}; + var _eventObject = null; + + var _queuedMessages = []; + var _initialized = false; + + // this is for the non Chrome 5 local scenarios. The "top" message center will dispatch to all the bottom ones + var _childrenMessageCenters = []; + + // create $axure if it hasn't been created + if (!window.$axure) window.$axure = function() {}; + $axure.messageCenter = _messageCenter; + + // isolate scope, and initialize _topMessageCenter. + (function() { + if (!CHROME_5_LOCAL) { + var topAxureWindow = window; + while (topAxureWindow.parent && topAxureWindow.parent !== topAxureWindow + && topAxureWindow.parent.$axure) topAxureWindow = topAxureWindow.parent; + _topMessageCenter = topAxureWindow.$axure.messageCenter; + } + })(); + + $(window.document).ready(function() { + if (CHROME_5_LOCAL) { + $('body').append("" + + ""); + + _eventObject = window.document.createEvent('Event'); + _eventObject.initEvent('axureMessageSenderEvent', true, true); + + $('#axureEventReceiverDiv').bind('axureMessageReceiverEvent', function () { + var request = JSON.parse($(this).text()); + _handleRequest(request); + }); + } else { + if (_topMessageCenter != _messageCenter) { + _topMessageCenter.addChildMessageCenter(_messageCenter); + console.log('adding from ' + window.location.toString()); + } + } + }); + + var _handleRequest = function (request) { + // route the request to all the listeners + for(var i = 0; i < _listeners.length; i++) _listeners[i](request.message, request.data); + + // now handle the queued messages if we're initializing + if (request.message == 'initialize') { + _initialized = true; + // send all the queued messages and return + for (var i = 0; i < _queuedMessages.length; i++) { + var qRequest = _queuedMessages[i]; + _messageCenter.postMessage(qRequest.message, qRequest.data); + } + _queuedMessages = []; + } + + // and then handle the set state messages, if necessary + if (request.message == 'setState') { + _state[request.data.key] = request.data.value; + for (var i = 0; i < _stateListeners.length; i++) { + var keyListener = _stateListeners[i]; + // if thep passed a null or empty value, always post the message + if (!keyListener.key || keyListener.key == request.data.key) { + keyListener.listener(request.data.key, request.data.value); + } + } + } + + }; + + // ----------------------------------------------------------------------------------------- + // This method allows for dispatching messages in the non-chromelocal scenario. + // Each child calls this on _topMessageCenter + // ----------------------------------------------------------------------------------------- + _messageCenter.addChildMessageCenter = function(messageCenter) { + _childrenMessageCenters[_childrenMessageCenters.length] = messageCenter; + }; + + // ----------------------------------------------------------------------------------------- + // This method allows for dispatching messages in the non-chromelocal scenario. + // Each child calls this on _topMessageCenter + // ----------------------------------------------------------------------------------------- + _messageCenter.dispatchMessage = function(message, data) { + _handleRequest({ + message: message, + data: data + }); + }; + + // ----------------------------------------------------------------------------------------- + // ----------------------------------------------------------------------------------------- + _messageCenter.dispatchMessageRecursively = function(message, data) { + console.log("dispatched to " + window.location.toString()); + + // dispatch to the top center first + _messageCenter.dispatchMessage(message, data); + + $('iframe').each(function(index, frame) { + //try,catch to handle permissions error in FF when loading pages from another domain + try { + if (frame.contentWindow.$axure && frame.contentWindow.$axure.messageCenter) { + frame.contentWindow.$axure.messageCenter.dispatchMessageRecursively(message, data); + } + }catch(e) {} + }); + }; + + _messageCenter.postMessage = function(message, data) { + if(!CHROME_5_LOCAL) { + _topMessageCenter.dispatchMessageRecursively(message, data); + } else { + var request = { + message: message, + data: data + }; + + if(_initialized) { + var senderDiv = window.document.getElementById('axureEventSenderDiv'); + var messageText = JSON.stringify(request); + // console.log('sending event: ' + messageText); + senderDiv.innerText = messageText; + senderDiv.dispatchEvent(_eventObject); + // console.log('event sent'); + } else { + _queuedMessages[_queuedMessages.length] = request; + } + } + }; + + _messageCenter.setState = function(key, value) { + var data = { + key: key, + value: value + }; + _messageCenter.postMessage('setState', data); + }; + + _messageCenter.getState = function(key) { + return _state[key]; + }; + + _messageCenter.addMessageListener = function(listener) { + _listeners[_listeners.length] = listener; + }; + + _messageCenter.addStateListener = function(key, listener) { + _stateListeners[_stateListeners.length] = { + key: key, + listener: listener + }; + }; + +})(); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/player/axplayer.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/player/axplayer.js" new file mode 100644 index 0000000..efce350 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/player/axplayer.js" @@ -0,0 +1,172 @@ +if (!window.$axure) window.$axure = function () { }; +if (typeof console == 'undefined') console = { + log: function () { } +}; +if(window._axUtils) $axure.utils = _axUtils; + +$axure.loadDocument = function(document) { + $axure.document = document; +}; + +function setUpController() { + + //$axure.utils = _axUtils; + + var _page = {}; + $axure.page = _page; + + $axure.utils.makeBindable(_page, ['load']); + + var _player = function() { + }; + $axure.player = _player; + + //----------------------------------------- + //Global Var array, getLinkUrl function and setGlobalVar listener are + //for use in setting global vars in page url string when clicking a + //page in the sitemap + //----------------------------------------- + var _globalVars = {}; + + var _getLinkUrl = function(baseUrl) { + var toAdd = ''; + for (var globalVarName in _globalVars) { + var val = _globalVars[globalVarName]; + if (val != null && val.length > 0) { + if (toAdd.length > 0) toAdd += '&'; + toAdd += globalVarName + '=' + encodeURIComponent(val); + } + } + return toAdd.length > 0 ? baseUrl + '#' + toAdd + "&CSUM=1" : baseUrl; + }; + $axure.getLinkUrlWithVars = _getLinkUrl; + + $axure.messageCenter.addMessageListener(function(message, data) { + if (message == 'setGlobalVar'){ + _globalVars[data.globalVarName] = data.globalVarValue; + } + }); + + $axure.messageCenter.addStateListener('page.data', function (key, value) { + for (var subKey in value) { + _page[subKey] = value[subKey]; + } + $axure.page.triggerEvent('load'); + }); + + // --------------------------------------------- + // Navigates the main frame (setting the currently visible page). If the link is relative, + // this method should test if it is actually a axure rp page being loaded and properly set + // up all the controller for the page if it is + // --------------------------------------------- + _page.navigate = function (url, includeVariables) { + var mainFrame = document.getElementById("mainFrame"); + //var mainFrame = window.parent.mainFrame; + // if this is a relative url... + var urlToLoad; + if (url.indexOf(':') < 0 || url[0] == '/') { + var winHref = window.location.href; + var page = winHref.substring(0, winHref.lastIndexOf('/') + 1) + url; + urlToLoad = page; + } else { + urlToLoad = url; + } + if (!includeVariables) { + mainFrame.contentWindow.location.href = urlToLoad; + return; + } + var urlWithVars = $axure.getLinkUrlWithVars(urlToLoad); + var currentData = $axure.messageCenter.getState('page.data'); + var currentUrl = currentData && currentData.location; + if(currentUrl && currentUrl.indexOf('#') != -1) currentUrl = currentUrl.substring(0, currentUrl.indexOf('#')) + + // this is so we can make sure the current frame reloads if the variables have changed + // by default, if the location is the same but the hash code is different, the browser will not + // trigger a reload + mainFrame.contentWindow.location.href = + currentUrl && urlToLoad.toLowerCase() != currentUrl.toLowerCase() + ? urlWithVars + : 'resources/reload.html#' + encodeURI(urlWithVars); + + }; + + var pluginIds = []; + var currentVisibleHostId = null; + // --------------------------------------------- + // Adds a tool box frame from a url to the interface. This is useful for loading plugins + // settings is an object that supports the following properties: + // - id : the id of the element for the plugin + // - context : the context to create the plugin host for + // - title : the user-visible caption for the plugin + // --------------------------------------------- + _player.createPluginHost = function (settings) { + // right now we only understand an interface context + if (!(!settings.context || settings.context === 'interface')) { + throw ('unknown context type'); + } + if (!settings.id) throw ('each plugin host needs an id'); + + var host = $('
    ') + .appendTo('#interfaceControlFrameContainer'); + + var isCurrentDefault = (pluginIds.length == 0); + if (!isCurrentDefault) { + host.hide(); + } else { + currentVisibleHostId = settings.id; + } + + + //$('#interfaceControlFrameHeader').append('
  • ' + settings.title + '
  • '); + var headerLink = $('' + settings.title + ''); + + headerLink + .click($axure.utils.curry(interfaceControlHeaderButton_click, settings.id)).wrap('
  • ') + .parent().appendTo('#interfaceControlFrameHeader'); + + if (isCurrentDefault) { + headerLink.addClass('selected'); + } + + pluginIds[pluginIds.length] = settings.id; + }; + + // private methods + var interfaceControlHeaderButton_click = function (id) { + $('#interfaceControlFrameHeader a').removeClass('selected'); + $('#interfaceControlFrameHeader a[pluginId=' + id + ']').addClass('selected'); + + $('#' + currentVisibleHostId).hide(); + $('#' + id).show(); + currentVisibleHostId = id; + }; +} + +function setUpDocumentStateManager() { + var mgr = $axure.prototype.documentStateManager = {}; + $axure.utils.makeBindable(mgr, ['globalVariableChanged']); + + mgr.globalVariableValues = {}; + + mgr.setGlobalVariable = function(varname, value, source) { + var arg = {}; + arg.variableName = varname; + arg.newValue = value; + arg.oldValue = this.getGlobalVariable(varname); + arg.source = source; + + mgr.globalVariableValues[varname] = value; + this.triggerEvent('globalVariableChanged', arg); + }; + + mgr.getGlobalVariable = function(varname) { + return mgr.globalVariableValues[varname]; + }; +} + + +function setUpPageStateManager() { + var mgr = $axure.prototype.pageStateManager = {}; + + mgr.panelToStateIds = {}; +} diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/player/splitter.js" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/player/splitter.js" new file mode 100644 index 0000000..b62a8fb --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/resources/scripts/player/splitter.js" @@ -0,0 +1,215 @@ +/* +* jQuery.splitter.js - two-pane splitter window plugin +* +* version 1.51 (2009/01/09) +* +* Dual licensed under the MIT and GPL licenses: +* http://www.opensource.org/licenses/mit-license.php +* http://www.gnu.org/licenses/gpl.html +*/ + +/** +* The splitter() plugin implements a two-pane resizable splitter window. +* The selected elements in the jQuery object are converted to a splitter; +* each selected element should have two child elements, used for the panes +* of the splitter. The plugin adds a third child element for the splitbar. +* +* For more details see: http://methvin.com/splitter/ +* +* +* @example $('#MySplitter').splitter(); +* @desc Create a vertical splitter with default settings +* +* @example $('#MySplitter').splitter({type: 'h', accessKey: 'M'}); +* @desc Create a horizontal splitter resizable via Alt+Shift+M +* +* @name splitter +* @type jQuery +* @param Object options Options for the splitter (not required) +* @cat Plugins/Splitter +* @return jQuery +* @author Dave Methvin (dave.methvin@gmail.com) +*/ +;(function($){ + +$.fn.splitter = function(args){ + args = args || {}; + return this.each(function() { + var zombie; // left-behind splitbar for outline resizes + function startSplitMouse(evt) { + if ( opts.outline ) + zombie = zombie || bar.clone(false).insertAfter(A); + panes.css("-webkit-user-select", "none"); // Safari selects A/B text on a move + bar.addClass(opts.activeClass); + $('
    ').insertAfter(bar); + A._posSplit = A[0][opts.pxSplit] - evt[opts.eventPos]; + $(document) + .bind("mousemove", doSplitMouse) + .bind("mouseup", endSplitMouse); + } + function doSplitMouse(evt) { + var newPos = A._posSplit+evt[opts.eventPos]; + if ( opts.outline ) { + newPos = Math.max(0, Math.min(newPos, splitter._DA - bar._DA)); + bar.css(opts.origin, newPos); + } else + resplit(newPos); + } + function endSplitMouse(evt) { + $('div.splitterMask').remove(); + bar.removeClass(opts.activeClass); + var newPos = A._posSplit+evt[opts.eventPos]; + if ( opts.outline ) { + zombie.remove(); zombie = null; + resplit(newPos); + } + panes.css("-webkit-user-select", "text"); // let Safari select text again + $(document) + .unbind("mousemove", doSplitMouse) + .unbind("mouseup", endSplitMouse); + } + function resplit(newPos) { + // Constrain new splitbar position to fit pane size limits + newPos = Math.max(A._min, splitter._DA - B._max, + Math.min(newPos, A._max, splitter._DA - bar._DA - B._min)); + // Resize/position the two panes + bar._DA = bar[0][opts.pxSplit]; // bar size may change during dock + bar.css(opts.origin, newPos).css(opts.fixed, splitter._DF); + A.css(opts.origin, 0).css(opts.split, newPos).css(opts.fixed, splitter._DF); + B.css(opts.origin, newPos+bar._DA) + .css(opts.split, splitter._DA-bar._DA-newPos).css(opts.fixed, splitter._DF); + // IE fires resize for us; all others pay cash + if ( !$.browser.msie ) + panes.trigger("resize"); + } + function dimSum(jq, dims) { + // Opera returns -1 for missing min/max width, turn into 0 + var sum = 0; + for ( var i=1; i < arguments.length; i++ ) + sum += Math.max(parseInt(jq.css(arguments[i])) || 0, 0); + return sum; + } + + // Determine settings based on incoming opts, element classes, and defaults + var vh = (args.splitHorizontal? 'h' : args.splitVertical? 'v' : args.type) || 'v'; + var opts = $.extend({ + activeClass: 'active', // class name for active splitter + pxPerKey: 8, // splitter px moved per keypress + tabIndex: 0, // tab order indicator + accessKey: '' // accessKey for splitbar + },{ + v: { // Vertical splitters: + keyLeft: 39, keyRight: 37, cursor: "col-resize", + splitbarClass: "vsplitbar", outlineClass: "voutline", + type: 'v', eventPos: "pageX", origin: "left", + split: "width", pxSplit: "offsetWidth", side1: "Left", side2: "Right", + fixed: "height", pxFixed: "offsetHeight", side3: "Top", side4: "Bottom" + }, + h: { // Horizontal splitters: + keyTop: 40, keyBottom: 38, cursor: "row-resize", + splitbarClass: "hsplitbar", outlineClass: "houtline", + type: 'h', eventPos: "pageY", origin: "top", + split: "height", pxSplit: "offsetHeight", side1: "Top", side2: "Bottom", + fixed: "width", pxFixed: "offsetWidth", side3: "Left", side4: "Right" + } + }[vh], args); + + // Create jQuery object closures for splitter and both panes + var splitter = $(this).css({position: "relative"}); + var panes = $(">*", splitter[0]).css({ + position: "absolute", // positioned inside splitter container + "z-index": "1", // splitbar is positioned above + "-moz-outline-style": "none" // don't show dotted outline + }); + var A = $(panes[0]); // left or top + var B = $(panes[1]); // right or bottom + + // Focuser element, provides keyboard support; title is shown by Opera accessKeys + var focuser = $('') + .attr({accessKey: opts.accessKey, tabIndex: opts.tabIndex, title: opts.splitbarClass}) + .bind($.browser.opera?"click":"focus", function(){ this.focus(); bar.addClass(opts.activeClass) }) + .bind("keydown", function(e){ + var key = e.which || e.keyCode; + var dir = key==opts["key"+opts.side1]? 1 : key==opts["key"+opts.side2]? -1 : 0; + if ( dir ) + resplit(A[0][opts.pxSplit]+dir*opts.pxPerKey, false); + }) + .bind("blur", function(){ bar.removeClass(opts.activeClass) }); + + // Splitbar element, can be already in the doc or we create one + var bar = $(panes[2] || '
    ') + .insertAfter(A).css("z-index", "100").append(focuser) + .attr({"class": opts.splitbarClass, unselectable: "on"}) + .css({position: "absolute", "user-select": "none", "-webkit-user-select": "none", + "-khtml-user-select": "none", "-moz-user-select": "none", "top": "0px"}) + .bind("mousedown", startSplitMouse); + // Use our cursor unless the style specifies a non-default cursor + if ( /^(auto|default|)$/.test(bar.css("cursor")) ) + bar.css("cursor", opts.cursor); + + // Cache several dimensions for speed, rather than re-querying constantly + bar._DA = bar[0][opts.pxSplit]; + splitter._PBF = $.boxModel? dimSum(splitter, "border"+opts.side3+"Width", "border"+opts.side4+"Width") : 0; + splitter._PBA = $.boxModel? dimSum(splitter, "border"+opts.side1+"Width", "border"+opts.side2+"Width") : 0; + A._pane = opts.side1; + B._pane = opts.side2; + $.each([A,B], function(){ + this._min = opts["min"+this._pane] || dimSum(this, "min-"+opts.split); + this._max = opts["max"+this._pane] || dimSum(this, "max-"+opts.split) || 9999; + this._init = opts["size"+this._pane]===true ? + parseInt($.curCSS(this[0],opts.split)) : opts["size"+this._pane]; + }); + + // Determine initial position, get from cookie if specified + var initPos = A._init; + if ( !isNaN(B._init) ) // recalc initial B size as an offset from the top or left side + initPos = splitter[0][opts.pxSplit] - splitter._PBA - B._init - bar._DA; + if ( opts.cookie ) { + if ( !$.cookie ) + alert('jQuery.splitter(): jQuery cookie plugin required'); + var ckpos = parseInt($.cookie(opts.cookie)); + if ( !isNaN(ckpos) ) + initPos = ckpos; + $(window).bind("unload", function(){ + var state = String(bar.css(opts.origin)); // current location of splitbar + $.cookie(opts.cookie, state, {expires: opts.cookieExpires || 365, + path: opts.cookiePath || document.location.pathname}); + }); + } + if ( isNaN(initPos) ) // King Solomon's algorithm + initPos = Math.round((splitter[0][opts.pxSplit] - splitter._PBA - bar._DA)/2); + + // Resize event propagation and splitter sizing + if ( opts.anchorToWindow ) { + // Account for margin or border on the splitter container and enforce min height + splitter._hadjust = dimSum(splitter, "borderTopWidth", "borderBottomWidth", "marginBottom"); + splitter._hmin = Math.max(dimSum(splitter, "minHeight"), 20); + $(window).bind("resize", function(){ + var top = splitter.offset().top; + var wh = $(window).height(); + splitter.css("height", Math.max(wh-top-splitter._hadjust, splitter._hmin)+"px"); + if ( !$.browser.msie ) splitter.trigger("resize"); + }).trigger("resize"); + } + else if ( opts.resizeToWidth && !$.browser.msie ) + $(window).bind("resize", function(){ + splitter.trigger("resize"); + }); + + // Resize event handler; triggered immediately to set initial position + splitter.bind("resize", function(e, size){ + // Custom events bubble in jQuery 1.3; don't Yo Dawg + if ( e.target != this ) return; + // Determine new width/height of splitter container + splitter._DF = splitter[0][opts.pxFixed] - splitter._PBF; + splitter._DA = splitter[0][opts.pxSplit] - splitter._PBA; + // Bail if splitter isn't visible or content isn't there yet + if ( splitter._DF <= 0 || splitter._DA <= 0 ) return; + // Re-divvy the adjustable dimension; maintain size of the preferred pane + resplit(!isNaN(size)? size : (!(opts.sizeRight||opts.sizeBottom)? A[0][opts.pxSplit] : + splitter._DA-B[0][opts.pxSplit]-bar._DA)); + }).trigger("resize" , [initPos]); + }); +}; + +})(jQuery); \ No newline at end of file diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/start.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/start.html" new file mode 100644 index 0000000..1742793 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/start.html" @@ -0,0 +1,350 @@ + + + + Untitled Document + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    +
    +   +
    +   +
    +
    +
    +
    +
    +
    +
    +
      +
    +
    +
    +
    +
    +
    +
    + +
    + +
    + +
    + +
    + + + diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/start_c_1.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/start_c_1.html" new file mode 100644 index 0000000..82de5fd --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/start_c_1.html" @@ -0,0 +1,12 @@ + + + + + + + + + + diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\344\273\243\347\220\206\345\225\206\345\210\206\351\205\215\346\216\210\346\235\203\347\240\201.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\344\273\243\347\220\206\345\225\206\345\210\206\351\205\215\346\216\210\346\235\203\347\240\201.html" new file mode 100644 index 0000000..4e77507 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\344\273\243\347\220\206\345\225\206\345\210\206\351\205\215\346\216\210\346\235\203\347\240\201.html" @@ -0,0 +1,181 @@ + + + + 代理商分配授权码 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + +
    + + +
    +
    + + +
    + + +
    +
    + + +
    + + +
    +

    通付宝 代理版

    +
    +
    + + +
    + + +
    +

    本区用户数    1000

    本区刷卡器    100

    +
    +
    + + +
    + + +
    +

    您今天的收益(元)

     

    100

     

    本区历史收益10000.00元

    +
    +
    + + +
    + + +
    +

    ……

    +
    +
    + + +
    + u12_start + u12_end + u12_line +
    + + +
    + + +
    +

    ……

    +
    +
    + + +
    + + +
    +

    ……

    +
    +
    + + +
    + + +
    +

    授权码分配

    +
    +
    + + +
    + + +
    +

    <进入通付宝

    +
    +
    + + +
    + + +
    +

    ……

    +
    +
    + + +
    + + +
    +

    ....

    +
    +
    + + +
    + + +
    +

    ....

    +
    +
    + + +
    + + +
    +

    ....

    +
    +
    +
    + + diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201.html" new file mode 100644 index 0000000..84a1ad2 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\345\210\267\345\215\241\345\231\250\350\216\267\345\217\226\346\216\210\346\235\203\347\240\201.html" @@ -0,0 +1,165 @@ + + + + 刷卡器获取授权码 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + +
    + + +
    +
    + + +
    + + +
    +
    + + +
    + + +
    +

    获取授权码

    +
    +
    + + +
    + + +
    +

    请插入您的刷卡器进行一次刷卡:

    +
    +
    + + +
    + + +
    +

    <

    +
    +
    + + +
    + + +
    +

    确认

    +
    +
    + + +
    + + +
    +

    请刷卡获取刷卡器编号

    +
    +
    + + +
    + + +
    +

    刷卡器图标

    +
    +
    + + +
    + + +
    +

    1、刷卡后显示出刷卡器编号进行填充

    +
    +
    + + +
    + + +
    +

    2、未刷卡点击“确认”,提示“请先进行一次刷卡”;

    刷卡完点击“确认”,调用后台接口进行授权码获取及绑定,然后提示“获取授权码成功”

    +
    +
    + + +
    + + +
    +

    3、分配授权码的接口中,后台需要先校验用户是否已经填写好个人资料信息,若不完善,弹出下面提示框,点击“马上补充”转入用户信息登记页面:

    +
    +
    + + +
    + + +
    +

    您的用户信息不全,请先补充完整后再获取授权码。

     

     

     

    +
    +
    + + +
    + + +
    +

    马上补充

    +
    +
    +
    + + diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\345\267\262\345\210\206\351\205\215\350\256\260\345\275\225.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\345\267\262\345\210\206\351\205\215\350\256\260\345\275\225.html" new file mode 100644 index 0000000..2faa146 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\345\267\262\345\210\206\351\205\215\350\256\260\345\275\225.html" @@ -0,0 +1,93 @@ + + + + 已分配记录 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + +
    + + +
    +
    + + +
    + + +
    +
    + + +
    + + +
    +

    已分配记录

    +
    +
    + + +
    + + +
    +

    已分配****个授权码

     

    授权码                    分配账户             分配时间

    162342****          1380*******             2014-11-03

     

     

     

    +
    +
    + + +
    + + +
    +

    <

    +
    +
    +
    + + diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201.html" new file mode 100644 index 0000000..99c6c8f --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201.html" @@ -0,0 +1,102 @@ + + + + 我的授权码 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + +
    + + +
    +
    + + +
    + + +
    +
    + + +
    + + +
    +

    我的授权码

    +
    +
    + + +
    + + +
    +

    您的授权码为:13640070005

    +
    +
    + + +
    + + +
    +

    <

    +
    +
    + + +
    + + +
    +

    若该账户没有授权码,提示“您还没获得授权码”

    +
    +
    +
    + + diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\345\267\262\347\273\221\345\256\232\350\256\276\345\244\207\357\274\211.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\345\267\262\347\273\221\345\256\232\350\256\276\345\244\207\357\274\211.html" new file mode 100644 index 0000000..da50412 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\345\267\262\347\273\221\345\256\232\350\256\276\345\244\207\357\274\211.html" @@ -0,0 +1,102 @@ + + + + 我的授权码(已绑定设备) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + +
    + + +
    +
    + + +
    + + +
    +
    + + +
    + + +
    +

    我的授权码

    +
    +
    + + +
    + + +
    +

    您的授权码为:16101005483

     

    绑定设备:

             Sansumg *****

             *********************

    +
    +
    + + +
    + + +
    +

    <

    +
    +
    + + +
    + + +
    +

    解除设备绑定

    +
    +
    +
    + + diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\346\234\252\347\273\221\345\256\232\350\256\276\345\244\207\357\274\211.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\346\234\252\347\273\221\345\256\232\350\256\276\345\244\207\357\274\211.html" new file mode 100644 index 0000000..0695493 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\346\234\252\347\273\221\345\256\232\350\256\276\345\244\207\357\274\211.html" @@ -0,0 +1,102 @@ + + + + 我的授权码(未绑定设备) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + +
    + + +
    +
    + + +
    + + +
    +
    + + +
    + + +
    +

    我的授权码

    +
    +
    + + +
    + + +
    +

    您的授权码为:16101005483

     

    绑定设备:未绑定

    +
    +
    + + +
    + + +
    +

    <

    +
    +
    + + +
    + + +
    +

    绑定本机

    +
    +
    +
    + + diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\346\234\252\350\264\255\344\271\260\357\274\211.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\347\273\221\345\256\232\351\252\214\350\257\201\357\274\211.html" similarity index 71% rename from "\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\346\234\252\350\264\255\344\271\260\357\274\211.html" rename to "\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\347\273\221\345\256\232\351\252\214\350\257\201\357\274\211.html" index 311d98e..4f2b569 100644 --- "a/\351\241\271\347\233\256\347\256\241\347\220\206/[01]\346\224\277\347\255\226\344\275\223\347\263\273/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\346\234\252\350\264\255\344\271\260\357\274\211.html" +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\210\221\347\232\204\346\216\210\346\235\203\347\240\201\357\274\210\347\273\221\345\256\232\351\252\214\350\257\201\357\274\211.html" @@ -1,13 +1,13 @@  - 我的授权码(未购买) + 我的授权码(绑定验证) - + @@ -36,7 +36,7 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + +
    + + +
    +
    + + +
    + + +
    +
    + + +
    + + +
    +

    商户收款

    +
    +
    + + +
    + + +
    +

    账户       请刷卡                       刷卡器Logo

     

    银行       请选择银行

     

    姓名       请输入开户人姓名

     

    手机号    请输入开户人手机号

    +
    +
    + + +
    + + +
    +

    确认支付

    +
    +
    + + +
    + + +
    +

    页面进来先调用接口判断用户是否有授权码

    +
    +
    + + +
    + + +
    +

    收款金额:10.00元

    +
    +
    + + +
    + + +
    +

    您还未获得授权码,必须使用刷卡器交易。

    注:您可选择本次交易租用授权码,收取手续费5.00元。

    +
    +
    + + +
    + + +
    +

    1、点击“购买刷卡器”进入刷卡器购买页;

    2、点击“购买授权码”进入授权码购买页;

    3、点击“租用授权码”时候,如果用户信息不全,弹出下面提示框,点击“马上补充”转入用户信息登记页面:

    +
    +
    + + +
    + + +
    +

    购买授权码

    +
    +
    + + +
    + + +
    +

    租用授权码

    +
    +
    + + +
    + + +
    +

    购买刷卡器

    +
    +
    + + +
    + + +
    +

    您的用户信息不全,请先补充完整后再获取授权码。

     

     

     

    +
    +
    + + +
    + + +
    +

    马上补充

    +
    +
    + + +
    + + +
    +

    4、用户信息完整时,点击“租用授权码”后,下面的账户变成可以手工输入,支付金额加上租用手续费,租用手续费可后台配置。

    +
    +
    +
    + + diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\234\211\346\216\210\346\235\203\347\240\201\357\274\211.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\234\211\346\216\210\346\235\203\347\240\201\357\274\211.html" new file mode 100644 index 0000000..6407d08 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\216\210\346\235\203\347\240\201\344\275\277\347\224\250\347\225\214\351\235\242\357\274\210\346\234\211\346\216\210\346\235\203\347\240\201\357\274\211.html" @@ -0,0 +1,129 @@ + + + + 授权码使用界面(有授权码) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + +
    + + +
    +
    + + +
    + + +
    +
    + + +
    + + +
    +

    商户收款

    +
    +
    + + +
    + + +
    +

    账户       请输入卡号                  刷卡器Logo

     

    银行       请选择银行

     

    姓名       请输入开户人姓名

     

    手机号    请输入开户人手机号

    +
    +
    + + +
    + + +
    +

    确认支付

    +
    +
    + + +
    + + +
    +

    页面进来先调用接口判断用户是否有授权码

    +
    +
    + + +
    + + +
    +

    收款金额:10.00元

    +
    +
    + + +
    + + +
    +

    您的授权码为:13640070005

    +
    +
    + + +
    + + +
    +

    输入卡号后,需要类似刷卡时调用接口加载已登记的卡信息自动填充

    +
    +
    +
    + + diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\216\210\346\235\203\347\240\201\345\207\272\345\224\256.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\216\210\346\235\203\347\240\201\345\207\272\345\224\256.html" new file mode 100644 index 0000000..bc97036 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\216\210\346\235\203\347\240\201\345\207\272\345\224\256.html" @@ -0,0 +1,159 @@ + + + + 授权码出售 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + +
    + + +
    +
    + + +
    + + +
    +
    + + +
    + + +
    +

    授权码分配

    +
    +
    + + +
    + + +
    +

    未分配清单

     

    授权码                    分配账户                操作

     

    16******               

     

    16****** 

     

    16****** 

    +
    +
    + + +
    + + +
    +

    剩余可分配授权码个数:720个

    +
    +
    + + +
    + + +
    +

    <

    +
    +
    + + +
    + + +
    +

    已分配记录

    +
    +
    + + +
    + + +
    +
    + + +
    + + +
    +
    + + +
    + + +
    +
    + + +
    + + +
    +

    分配

    +
    +
    + + +
    + + +
    +

    分配

    +
    +
    + + +
    + + +
    +

    分配

    +
    +
    +
    + + diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\216\210\346\235\203\347\240\201\347\273\221\345\256\232\350\256\276\345\244\207\357\274\210\346\232\202\346\227\266\345\272\237\345\274\203\357\274\211.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\216\210\346\235\203\347\240\201\347\273\221\345\256\232\350\256\276\345\244\207\357\274\210\346\232\202\346\227\266\345\272\237\345\274\203\357\274\211.html" new file mode 100644 index 0000000..3e82cb4 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\216\210\346\235\203\347\240\201\347\273\221\345\256\232\350\256\276\345\244\207\357\274\210\346\232\202\346\227\266\345\272\237\345\274\203\357\274\211.html" @@ -0,0 +1,52 @@ + + + + 授权码绑定设备(暂时废弃) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\224\266\351\223\266\345\217\260\344\273\230\346\254\276.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\224\266\351\223\266\345\217\260\344\273\230\346\254\276.html" new file mode 100644 index 0000000..ed2ffd4 --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\346\224\266\351\223\266\345\217\260\344\273\230\346\254\276.html" @@ -0,0 +1,156 @@ + + + + 收银台付款 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + +
    + + +
    +
    + + +
    + + +
    +
    + + +
    + + +
    +

    收银台

    +
    +
    + + +
    + + +
    +

    下一步

    +
    +
    + + +
    + + +
    +

    支付信息:

     

    授权账户:13*********

    支付金额:100.00

    +
    +
    + + +
    + + +
    +

    支付方式:

     

     

     

     

     

     

     

     

    +
    +
    + + +
    + + +
    +

    快捷支付>  

    Logo**银行  尾号xxxx 信用卡  姓名

    +
    +
    + + +
    + + +
    +

    卡图标

    +
    +
    + + +
    + + +
    +

    刷卡支付>  

    +
    +
    + + +
    + + +
    +

    支付过程界面省略,遵照收银台支付过程

    +
    +
    + + +
    + + +
    +

    <

    +
    +
    + + +
    + + +
    +

    1、授权码的支付要求按照“收银台”的统一支付模式进行后台设计,但可以分两个阶段完成,第一阶段可只实现授权码这个业务类型的订单信息结构、支付渠道控制

    2、第二阶段根据传入的业务标识控制支付方式渠道的选择方式,支付额度,频率等风控机制。

    +
    +
    +
    + + diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260.html" new file mode 100644 index 0000000..52b190d --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\347\224\250\346\210\267\344\277\241\346\201\257\347\231\273\350\256\260.html" @@ -0,0 +1,199 @@ + + + + 用户信息登记 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + +
    + + +
    +
    + + +
    + + +
    +
    + + +
    + + +
    +
    + + +
    + + +
    +

    用户信息登记

    +
    +
    + + +
    + + +
    +

    >>了解各级别用户权限及资质要求

    +
    +
    + + +
    + + +
    +

    提交审核

    +
    +
    + + +
    + + +
    +

    身份证照片             +                +

                               正面            反面       

    +
    +
    + + +
    + + +
    +

    姓名                   请输入本人真实姓名

    +
    +
    + + +
    + + +
    +

    您当前的级别:普通用户

    +
    +
    + + +
    + + +
    +

    身份证号             请输入本人身份证号

    +
    +
    + + +
    + + +
    +

    电子邮箱             请输入本人联系邮箱

    +
    +
    + + +
    + + +
    +

    营业执照扫描件                          +

    +
    +
    + + +
    + + +
    +

    以下信息VIP用户需要填写

    +
    +
    + + +
    + + +
    +

    营业执照号          请输入营业执照号

    +
    +
    + + +
    + + +
    +

    带身份证自拍照                          +   

    +
    +
    + + +
    + + +
    +

    1、点击"提交审核"后提示“资料提交成功,我们将在一个工作日内完成审核”,点击“我知道了”后回到通付宝首页。

    +
    +
    + + +
    + + +
    +

    2、对于资料审核过程中的用户,该界面禁止信息录入,若点击“提交审核”提示“您的资料正在审核中,我们将在一个工作日内完成审核,请耐心等待。”

    +
    +
    +
    + + diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\347\224\250\346\210\267\347\272\247\345\210\253\347\244\272\346\204\217.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\347\224\250\346\210\267\347\272\247\345\210\253\347\244\272\346\204\217.html" new file mode 100644 index 0000000..9f835ec --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\347\224\250\346\210\267\347\272\247\345\210\253\347\244\272\346\204\217.html" @@ -0,0 +1,109 @@ + + + + 用户级别示意 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + +
    + + +
    +
    + + +
    + + +
    +
    + + +
    + + +
    +
    + + +
    + + +
    +

    用户级别

    +
    +
    + + +
    + + +
    +

    <返回

    +
    +
    + + +
    + + +
    +

    用户级别          普通用户     高级用户                             VIP用户

    信息登记要求     手机号        手机号                                手机号

                                                姓名                                    姓名

                                    身份证及身份证正反图片   身份证号及身份证正反图片

                                                                                   带身份证自拍照

                                                                            营业执照号及原件扫描件

    用户交易权           V1             V2                                       V3

    月度限额              5w            20w                                     100w

     

    +
    +
    + + +
    + + +
    +

    各业务单笔交易限额,单笔交易次数,将根据通付宝最新政策决定,如需了解请拨打400-6868-956客服热线咨询。

    +
    +
    +
    + + diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\350\216\267\345\276\227\346\216\210\346\235\203\347\240\201.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\350\216\267\345\276\227\346\216\210\346\235\203\347\240\201.html" new file mode 100644 index 0000000..3380c0d --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\350\216\267\345\276\227\346\216\210\346\235\203\347\240\201.html" @@ -0,0 +1,120 @@ + + + + 获得授权码 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + +
    + + +
    +
    + + +
    + + +
    +
    + + +
    + + +
    +

    支付完成

    +
    +
    + + +
    + + +
    +

    支付成功

     

    您的授权码为:13640070005

     

    已获得通付宝授权码的相关交易权限

    +
    +
    + + +
    + + +
    +

    我知道了

    +
    +
    + + +
    + + +
    + + +
    + + +
    +

    马上体验转账

    +
    +
    + + +
    + + +
    +

    1、点击“我知道了”回到通付宝首页

    2、点击“马上体验转账”进入转账汇款首页

    +
    +
    +
    + + diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201.html" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201.html" new file mode 100644 index 0000000..f6ba9cb --- /dev/null +++ "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\345\216\237\345\236\213\350\256\276\350\256\241/\345\210\267\345\215\241\345\231\250\345\217\230\346\233\264\346\216\210\346\235\203\347\240\201_\345\216\237\345\236\213/\350\264\255\344\271\260\346\216\210\346\235\203\347\240\201.html" @@ -0,0 +1,172 @@ + + + + 购买授权码 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + +
    + + +
    +
    + + +
    + + +
    +
    + + +
    + + +
    +

    购买授权码

    +
    +
    + + +
    + + +
    +

    购买价格通过后台控制,分润额度后台控制

    购买后,分润给用户绑定的代理商

    +
    +
    + + +
    + + +
    +

    授权码说明:

    1、购买授权码后,即可使用通付宝掌上银行业务;

    2、购买了通付宝刷卡器的用户,可以将刷卡器编号作为授权码进行账户绑定;

    3、一个授权码只能绑定一个注册账户;

    4、一个授权码只能在一台终端设备上使用,如果更换了终端设备,需要解除绑定后在新设备上重新进行绑定。

    +
    +
    + + +
    + + +
    +

       (使用情景图,获得授权码可不刷卡)

    授权码:***********

    请输入卡号           银行卡图标

     

    +
    +
    + + +
    + + +
    +

    优惠价:100.00

    原价:278.00

    +
    +
    + + +
    + + +
    +

    立即购买

    +
    +
    + + +
    + u16_start + u16_end + u16_line +
    + + +
    + + +
    +

    情景图指示出原来只能刷卡的业务中,增加了授权码之后就可以直接选择登记的银行卡(没有登记过则登记后进行选卡)

    +
    +
    + + +
    + + +
    +

    我的授权码

    +
    +
    + + +
    + + +
    +

    <

    +
    +
    + + +
    + + +
    +

    >>立即绑定

    +
    +
    + + +
    + + +
    +

    已拥有刷卡器?

    +
    +
    +
    + + diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273\347\244\272\346\204\217\345\233\276.vsd" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273\347\244\272\346\204\217\345\233\276.vsd" new file mode 100644 index 0000000..308ed46 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273\347\244\272\346\204\217\345\233\276.vsd" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\346\216\210\346\235\203\347\240\201\350\277\220\344\275\234\346\265\201\347\250\213\345\233\276.jpg" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\346\216\210\346\235\203\347\240\201\350\277\220\344\275\234\346\265\201\347\250\213\345\233\276.jpg" new file mode 100644 index 0000000..46407e4 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\346\216\210\346\235\203\347\240\201\350\277\220\344\275\234\346\265\201\347\250\213\345\233\276.jpg" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\346\216\210\346\235\203\347\240\201\350\277\220\344\275\234\346\265\201\347\250\213\345\233\276.vsd" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\346\216\210\346\235\203\347\240\201\350\277\220\344\275\234\346\265\201\347\250\213\345\233\276.vsd" new file mode 100644 index 0000000..214a37a Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\346\216\210\346\235\203\347\240\201\350\277\220\344\275\234\346\265\201\347\250\213\345\233\276.vsd" differ diff --git "a/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\346\216\210\346\235\203\347\240\201\350\277\220\344\275\234\350\256\276\350\256\241_20141121.doc" "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\346\216\210\346\235\203\347\240\201\350\277\220\344\275\234\350\256\276\350\256\241_20141121.doc" new file mode 100644 index 0000000..ebe0124 Binary files /dev/null and "b/\351\241\271\347\233\256\347\256\241\347\220\206/[06]\344\272\247\345\223\201\345\274\200\345\217\221/V3.6.0/\346\216\210\346\235\203\347\240\201\344\275\223\347\263\273/\351\234\200\346\261\202\346\226\207\346\241\243/\346\216\210\346\235\203\347\240\201\350\277\220\344\275\234\350\256\276\350\256\241_20141121.doc" differ