Browse Source

app resource file's name add version

master
yashen 9 years ago
parent
commit
332b40057d
10 changed files with 44 additions and 36987 deletions
  1. +2
    -7
      B3WeChat/Rpcs/ApproveMessageRpc.cs
  2. +5
    -0
      WebFolder/app/app.a1509feb.js
  3. +0
    -16339
      WebFolder/app/app.js
  4. +5
    -4
      WebFolder/app/index.html
  5. +4
    -0
      WebFolder/app/jquery.3fb4345b.js
  6. +12
    -0
      WebFolder/app/react-dom.186ece83.js
  7. +0
    -42
      WebFolder/app/react-dom.js
  8. +16
    -0
      WebFolder/app/react.cbf013a1.js
  9. +0
    -20595
      WebFolder/app/react.js
  10. +0
    -0
      WebFolder/app/weui.d44633b6.css

+ 2
- 7
B3WeChat/Rpcs/ApproveMessageRpc.cs View File

@ -25,7 +25,7 @@ namespace BWP.B3WeChat.Rpcs
static IApproveMessageBL bl = BIFactory.Create<IApproveMessageBL>(); static IApproveMessageBL bl = BIFactory.Create<IApproveMessageBL>();
const string authUrlTemplate = "https://open.weixin.qq.com/connect/oauth2/authorize?appid={APPID}&redirect_uri={REDIRECT_URI}&response_type=code&scope=snsapi_base #wechat_redirect";
const string authUrlTemplate = "https://open.weixin.qq.com/connect/oauth2/authorize?appid={APPID}&redirect_uri={REDIRECT_URI}&response_type=code&scope=snsapi_base#wechat_redirect";
[Rpc] [Rpc]
public static void Insert(ApproveMessage message) public static void Insert(ApproveMessage message)
@ -56,16 +56,11 @@ namespace BWP.B3WeChat.Rpcs
var originUrl = internetAccessAddress + "app/index.html?messageid=" + message.ID; var originUrl = internetAccessAddress + "app/index.html?messageid=" + message.ID;
var authUrl = internetAccessAddress + "WeChatLogin.aspx?url=" + HttpUtility.UrlEncode(originUrl);
var wechatUrl = WeChatPageUtil.GetWeChatUrl(authUrl);
var wechatmessage = string.Format("ERP系统给你的用户{0}发送了一个消息待您审批", message.Username); var wechatmessage = string.Format("ERP系统给你的用户{0}发送了一个消息待您审批", message.Username);
var timeStr = DateTime.Now.ToLongTimeString(); var timeStr = DateTime.Now.ToLongTimeString();
SendMessageUtil.SendInformInfo(message.OpenID, wechatmessage, timeStr, message.Title, message.Username, BLContext.ClientIP, timeStr, "", wechatUrl);
SendMessageUtil.SendInformInfo(message.OpenID, wechatmessage, timeStr, message.Title, message.Username, BLContext.ClientIP, timeStr, "", originUrl);
} }


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


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


+ 5
- 4
WebFolder/app/index.html View File

@ -5,9 +5,10 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=0"> <meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=0">
<title>微信审批平台</title> <title>微信审批平台</title>
<script src="react.js"></script>
<script src="react-dom.js"></script>
<link rel="stylesheet" href="weui.css">
<script src="jquery.3fb4345b.js"></script>
<script src="react.cbf013a1.js"></script>
<script src="react-dom.186ece83.js"></script>
<link rel="stylesheet" href="weui.d44633b6.css">
<style> <style>
.page_title { .page_title {
text-align: center; text-align: center;
@ -21,7 +22,7 @@
<body ontouchstart> <body ontouchstart>
<div class="container" id="container"></div> <div class="container" id="container"></div>
<script src="app.js"></script>
<script src="app.a1509feb.js"></script>
</body> </body>
</html> </html>

+ 4
- 0
WebFolder/app/jquery.3fb4345b.js
File diff suppressed because it is too large
View File


+ 12
- 0
WebFolder/app/react-dom.186ece83.js View File

@ -0,0 +1,12 @@
/**
* 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.
*
*/
!function(e){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=e(require("react.cbf013a1"));else if("function"==typeof define&&define.amd)define(["react.cbf013a1"],e);else{var f;f="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this,f.ReactDOM=e(f.React)}}(function(e){return e.__SECRET_DOM_DO_NOT_USE_OR_YOU_WILL_BE_FIRED});

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

@ -1,42 +0,0 @@
/**
* 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;
});

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


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


WebFolder/app/weui.css → WebFolder/app/weui.d44633b6.css View File


Loading…
Cancel
Save