提交 e4d60b7b 编写于 作者: U unknown

语言包修改

上级 8e197c72
...@@ -496,7 +496,7 @@ MWF.xScript.Environment = function(ev){ ...@@ -496,7 +496,7 @@ MWF.xScript.Environment = function(ev){
* @static * @static
* @return {Record[]} 流程记录(Record)对象. * @return {Record[]} 流程记录(Record)对象.
* @o2syntax * @o2syntax
* var workLogList = this.workContext.getRecordList(); * var recordList = this.workContext.getRecordList();
*/ */
"getRecordList": function(){return ev.recordList;}, "getRecordList": function(){return ev.recordList;},
/** /**
...@@ -523,7 +523,7 @@ MWF.xScript.Environment = function(ev){ ...@@ -523,7 +523,7 @@ MWF.xScript.Environment = function(ev){
* @summary 重新设置流程实例标题。。 * @summary 重新设置流程实例标题。。
* @method setTitle * @method setTitle
* @static * @static
* @param {String} title - 路由字符串数组. * @param {String} title - 标题字符串.
* @o2syntax * @o2syntax
* this.workContext.setTitle(title); * this.workContext.setTitle(title);
* @example * @example
......
...@@ -3428,7 +3428,7 @@ MWF.xScript.ViewEnvironment = function (ev) { ...@@ -3428,7 +3428,7 @@ MWF.xScript.ViewEnvironment = function (ev) {
*/ */
/** /**
* 当查询视图被嵌入到门户页面、流程表单或内容管理表单的时候,可以通过这个方法来获取页面或表单的上下文。 * 当查询视图被嵌入到门户页面、流程表单或内容管理表单的时候,可以在查询视图写脚本的地方通过这个方法来获取页面或表单的上下文。
* @method getParentEnvironment * @method getParentEnvironment
* @memberOf module:queryStatement * @memberOf module:queryStatement
* @static * @static
...@@ -3571,7 +3571,7 @@ MWF.xScript.ViewEnvironment = function (ev) { ...@@ -3571,7 +3571,7 @@ MWF.xScript.ViewEnvironment = function (ev) {
*/ */
this.page = this.form = this.queryView = this.queryStatement = { this.page = this.form = this.queryView = this.queryStatement = {
/** /**
* 当视图被嵌入到门户页面、流程表单或内容管理表单的时候,可以通过这个方法来获取页面或表单的上下文。 * 当视图被嵌入到门户页面、流程表单或内容管理表单的时候,可以在视图可以写脚本的地方中通过这个方法来获取页面或表单的上下文。
* @method getParentEnvironment * @method getParentEnvironment
* @static * @static
* @return {MWF.xScript.Environment|MWF.xScript.CMSEnvironment} 页面或表单的上下文. * @return {MWF.xScript.Environment|MWF.xScript.CMSEnvironment} 页面或表单的上下文.
......
...@@ -641,6 +641,7 @@ MWF.xApplication.cms.Document.Main = new Class({ ...@@ -641,6 +641,7 @@ MWF.xApplication.cms.Document.Main = new Class({
"document": this.document, "document": this.document,
"control": this.control, "control": this.control,
"attachmentList": this.attachmentList, "attachmentList": this.attachmentList,
"formInfor": this.formInfor,
"status": { "status": {
//"readonly": (this.options.readonly) ? true : false //"readonly": (this.options.readonly) ? true : false
"readonly": this.readonly "readonly": this.readonly
......
...@@ -1135,7 +1135,7 @@ debugger; ...@@ -1135,7 +1135,7 @@ debugger;
var htmlArea = new MWF.widget.HtmlEditorArea(node, { var htmlArea = new MWF.widget.HtmlEditorArea(node, {
"title": title, "title": title,
//"maxObj": this.propertyNode.parentElement.parentElement.parentElement, //"maxObj": this.propertyNode.parentElement.parentElement.parentElement,
"maxObj": this.designer.formContentNode, "maxObj": this.designer.formContentNode || this.designer.pageContentNode,
"onChange": function(){ "onChange": function(){
this.data[name] = htmlArea.getValue(); this.data[name] = htmlArea.getValue();
this.changeData(name); this.changeData(name);
......
...@@ -7,6 +7,7 @@ ...@@ -7,6 +7,7 @@
<link rel="stylesheet" href="css/mBoxTooltip.css" charset="UTF-8" /> <link rel="stylesheet" href="css/mBoxTooltip.css" charset="UTF-8" />
<script src="../o2_core/o2.min.js"></script> <script src="../o2_core/o2.min.js"></script>
<script src="js/base_work.js"></script> <script src="js/base_work.js"></script>
<script src="../o2_lib/Decimal.js"></script>
<script src="js/printWork.js"></script> <script src="js/printWork.js"></script>
<title>WORK</title> <title>WORK</title>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册