Browse Source

add app pages

master
yashen 9 years ago
parent
commit
76e7870969
6 changed files with 37009 additions and 0 deletions
  1. +16339
    -0
      WebFolder/app/app.js
  2. +27
    -0
      WebFolder/app/index.html
  3. +42
    -0
      WebFolder/app/react-dom.js
  4. +20595
    -0
      WebFolder/app/react.js
  5. +5
    -0
      WebFolder/app/weui.css
  6. +1
    -0
      WebFolder/config/Plugins/B3WeChat.plugin

+ 16339
- 0
WebFolder/app/app.js
File diff suppressed because it is too large
View File


+ 27
- 0
WebFolder/app/index.html View File

@ -0,0 +1,27 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=0">
<title>微信审批平台</title>
<script src="react.js"></script>
<script src="react-dom.js"></script>
<link rel="stylesheet" href="weui.css">
<style>
.page_title {
text-align: center;
font-size: 34px;
color: #3cc51f;
font-weight: 400;
margin: 0 15%;
}
</style>
</head>
<body ontouchstart>
<div class="container" id="container"></div>
<script src="app.js"></script>
</body>
</html>

+ 42
- 0
WebFolder/app/react-dom.js View File

@ -0,0 +1,42 @@
/**
* ReactDOM v15.3.2
*
* Copyright 2013-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
*/
// Based off https://github.com/ForbesLindesay/umd/blob/master/template.js
;(function(f) {
// CommonJS
if (typeof exports === "object" && typeof module !== "undefined") {
module.exports = f(require('react'));
// RequireJS
} else if (typeof define === "function" && define.amd) {
define(['react'], f);
// <script>
} else {
var g;
if (typeof window !== "undefined") {
g = window;
} else if (typeof global !== "undefined") {
g = global;
} else if (typeof self !== "undefined") {
g = self;
} else {
// works providing we're not in "use strict";
// needed for Java 8 Nashorn
// see https://github.com/facebook/react/issues/3037
g = this;
}
g.ReactDOM = f(g.React);
}
})(function(React) {
return React.__SECRET_DOM_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
});

+ 20595
- 0
WebFolder/app/react.js
File diff suppressed because it is too large
View File


+ 5
- 0
WebFolder/app/weui.css
File diff suppressed because it is too large
View File


+ 1
- 0
WebFolder/config/Plugins/B3WeChat.plugin View File

@ -8,6 +8,7 @@
<File name="B3WeChat.Web.dll" type="web"/>
</Assemblies>
<ContentFiles>
<Folder name="app"/>
</ContentFiles>
<Features>
</Features>


Loading…
Cancel
Save