Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
doc_wei
Skyeye
提交
8e44b02b
S
Skyeye
项目概览
doc_wei
/
Skyeye
通知
1172
Star
154
Fork
127
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
S
Skyeye
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
8e44b02b
编写于
1月 04, 2019
作者:
doc_wei
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
默认多选填空题完成
上级
a3d7fac1
变更
9
隐藏空白更改
内联
并排
Showing
9 changed file
with
1160 addition
and
105 deletion
+1160
-105
logs/skyeye.log
logs/skyeye.log
+970
-0
skyeye-promote/src/main/java/com/skyeye/eve/controller/DwSurveyDirectoryController.java
...om/skyeye/eve/controller/DwSurveyDirectoryController.java
+16
-0
skyeye-promote/src/main/java/com/skyeye/eve/dao/DwSurveyDirectoryDao.java
...rc/main/java/com/skyeye/eve/dao/DwSurveyDirectoryDao.java
+2
-0
skyeye-promote/src/main/java/com/skyeye/eve/service/DwSurveyDirectoryService.java
...java/com/skyeye/eve/service/DwSurveyDirectoryService.java
+2
-0
skyeye-promote/src/main/java/com/skyeye/eve/service/impl/DwSurveyDirectoryServiceImpl.java
...skyeye/eve/service/impl/DwSurveyDirectoryServiceImpl.java
+71
-0
skyeye-promote/src/main/resources/dbmapper/DwSurveyDirectoryMapper.xml
...e/src/main/resources/dbmapper/DwSurveyDirectoryMapper.xml
+9
-0
skyeye-promote/src/main/resources/mapping/reqdwsurvey.xml
skyeye-promote/src/main/resources/mapping/reqdwsurvey.xml
+15
-0
skyeye-promote/src/main/resources/template/js/dwsurveydesign/dwsurveydesign.js
...in/resources/template/js/dwsurveydesign/dwsurveydesign.js
+74
-104
skyeye-promote/src/main/resources/template/tpl/dwsurveydesign/dwsurveydesignbean.tpl
...ources/template/tpl/dwsurveydesign/dwsurveydesignbean.tpl
+1
-1
未找到文件。
logs/skyeye.log
浏览文件 @
8e44b02b
因为 它太大了无法显示 source diff 。你可以改为
查看blob
。
skyeye-promote/src/main/java/com/skyeye/eve/controller/DwSurveyDirectoryController.java
浏览文件 @
8e44b02b
...
...
@@ -192,4 +192,20 @@ public class DwSurveyDirectoryController {
dwSurveyDirectoryService
.
addQuCheckBoxMation
(
inputObject
,
outputObject
);
}
/**
*
* @Title: addQuMultiFillblankMation
* @Description: 添加多选填空题
* @param @param inputObject
* @param @param outputObject
* @param @throws Exception 参数
* @return void 返回类型
* @throws
*/
@RequestMapping
(
"/post/DwSurveyDirectoryController/addQuMultiFillblankMation"
)
@ResponseBody
public
void
addQuMultiFillblankMation
(
InputObject
inputObject
,
OutputObject
outputObject
)
throws
Exception
{
dwSurveyDirectoryService
.
addQuMultiFillblankMation
(
inputObject
,
outputObject
);
}
}
skyeye-promote/src/main/java/com/skyeye/eve/dao/DwSurveyDirectoryDao.java
浏览文件 @
8e44b02b
...
...
@@ -54,4 +54,6 @@ public interface DwSurveyDirectoryDao {
public
int
addQuestionCheckBoxMationList
(
List
<
Map
<
String
,
Object
>>
quCheckBox
)
throws
Exception
;
public
int
addQuestionMultiFillblankMationList
(
List
<
Map
<
String
,
Object
>>
quMultiFillblank
)
throws
Exception
;
}
skyeye-promote/src/main/java/com/skyeye/eve/service/DwSurveyDirectoryService.java
浏览文件 @
8e44b02b
...
...
@@ -27,4 +27,6 @@ public interface DwSurveyDirectoryService {
public
void
addQuCheckBoxMation
(
InputObject
inputObject
,
OutputObject
outputObject
)
throws
Exception
;
public
void
addQuMultiFillblankMation
(
InputObject
inputObject
,
OutputObject
outputObject
)
throws
Exception
;
}
skyeye-promote/src/main/java/com/skyeye/eve/service/impl/DwSurveyDirectoryServiceImpl.java
浏览文件 @
8e44b02b
...
...
@@ -568,5 +568,76 @@ public class DwSurveyDirectoryServiceImpl implements DwSurveyDirectoryService{
}
outputObject
.
setBean
(
map
);
}
/**
*
* @Title: addQuMultiFillblankMation
* @Description: 添加多选填空题
* @param @param inputObject
* @param @param outputObject
* @param @throws Exception 参数
* @return void 返回类型
* @throws
*/
@Override
public
void
addQuMultiFillblankMation
(
InputObject
inputObject
,
OutputObject
outputObject
)
throws
Exception
{
Map
<
String
,
Object
>
map
=
inputObject
.
getParams
();
map
.
put
(
"quType"
,
QuType
.
MULTIFILLBLANK
.
getIndex
());
String
quId
=
""
;
if
(
ToolUtil
.
isBlank
(
map
.
get
(
"quId"
).
toString
())){
quId
=
ToolUtil
.
getSurFaceId
();
map
.
put
(
"id"
,
quId
);
map
.
put
(
"quTag"
,
1
);
map
.
put
(
"visibility"
,
1
);
map
.
put
(
"createTime"
,
ToolUtil
.
getTimeAndToString
());
dwSurveyDirectoryDao
.
addQuestionMation
(
map
);
}
else
{
}
JSONArray
multiFillblank
=
JSONArray
.
fromObject
(
map
.
get
(
"multiFillblankTd"
).
toString
());
//获取模板绑定信息
if
(
multiFillblank
.
size
()
>
0
){
List
<
Map
<
String
,
Object
>>
quMultiFillblank
=
new
ArrayList
<>();
Map
<
String
,
Object
>
user
=
inputObject
.
getLogParams
();
for
(
int
i
=
0
;
i
<
multiFillblank
.
size
();
i
++){
JSONObject
object
=
(
JSONObject
)
multiFillblank
.
get
(
i
);
Map
<
String
,
Object
>
bean
=
new
HashMap
<>();
bean
.
put
(
"optionId"
,
object
.
getString
(
"optionId"
));
bean
.
put
(
"orderById"
,
object
.
getString
(
"key"
));
bean
.
put
(
"optionName"
,
object
.
getString
(
"optionValue"
));
bean
.
put
(
"quId"
,
quId
);
bean
.
put
(
"visibility"
,
1
);
bean
.
put
(
"id"
,
ToolUtil
.
getSurFaceId
());
bean
.
put
(
"createId"
,
user
.
get
(
"id"
));
bean
.
put
(
"createTime"
,
ToolUtil
.
getTimeAndToString
());
quMultiFillblank
.
add
(
bean
);
}
dwSurveyDirectoryDao
.
addQuestionMultiFillblankMationList
(
quMultiFillblank
);
map
.
put
(
"quItems"
,
quMultiFillblank
);
}
JSONArray
array
=
JSONArray
.
fromObject
(
map
.
get
(
"logic"
).
toString
());
//获取模板绑定信息
if
(
array
.
size
()
>
0
){
List
<
Map
<
String
,
Object
>>
quLogics
=
new
ArrayList
<>();
Map
<
String
,
Object
>
user
=
inputObject
.
getLogParams
();
for
(
int
i
=
0
;
i
<
array
.
size
();
i
++){
JSONObject
object
=
(
JSONObject
)
array
.
get
(
i
);
Map
<
String
,
Object
>
bean
=
new
HashMap
<>();
bean
.
put
(
"quLogicId"
,
object
.
getString
(
"quLogicId"
));
bean
.
put
(
"cgQuItemId"
,
object
.
getString
(
"cgQuItemId"
));
bean
.
put
(
"skQuId"
,
object
.
getString
(
"skQuId"
));
bean
.
put
(
"visibility"
,
object
.
getString
(
"visibility"
));
bean
.
put
(
"logicType"
,
object
.
getString
(
"logicType"
));
bean
.
put
(
"title"
,
object
.
getString
(
"key"
));
bean
.
put
(
"id"
,
ToolUtil
.
getSurFaceId
());
bean
.
put
(
"createId"
,
user
.
get
(
"id"
));
bean
.
put
(
"createTime"
,
ToolUtil
.
getTimeAndToString
());
quLogics
.
add
(
bean
);
}
dwSurveyDirectoryDao
.
addQuestionLogicsMationList
(
quLogics
);
map
.
put
(
"quLogics"
,
quLogics
);
}
outputObject
.
setBean
(
map
);
}
}
skyeye-promote/src/main/resources/dbmapper/DwSurveyDirectoryMapper.xml
浏览文件 @
8e44b02b
...
...
@@ -376,4 +376,13 @@
</foreach>
</insert>
<insert
id=
"addQuestionMultiFillblankMationList"
parameterType=
"java.util.Map"
>
insert into dw_qu_multi_fillblank
(id, qu_id, option_id, option_name, option_title, check_type, order_by_id, visibility, create_id, create_time)
values
<foreach
collection=
"list"
item=
"item"
index=
"index"
separator=
","
>
(#{item.id}, #{item.quId}, #{item.optionId}, #{item.optionName}, #{item.optionTitle}, #{item.checkType}, #{item.orderById}, #{item.visibility}, #{item.createId}, #{item.createTime})
</foreach>
</insert>
</mapper>
\ No newline at end of file
skyeye-promote/src/main/resources/mapping/reqdwsurvey.xml
浏览文件 @
8e44b02b
...
...
@@ -118,6 +118,21 @@
<property
id=
"checkboxTd"
name=
"checkboxTd"
ref=
""
var=
"多选题选项td json串"
/>
<property
id=
"logic"
name=
"logic"
ref=
""
var=
"逻辑设置json串"
/>
</url>
<url
id=
"dwsurveydirectory012"
path=
"/post/DwSurveyDirectoryController/addQuMultiFillblankMation"
val=
"添加多选填空题"
allUse=
"1"
>
<property
id=
"quId"
name=
"quId"
ref=
""
var=
"问题id"
/>
<property
id=
"belongId"
name=
"belongId"
ref=
"required"
var=
"问卷id"
/>
<property
id=
"quTitle"
name=
"quTitle"
ref=
"required"
var=
"问题标题"
/>
<property
id=
"orderById"
name=
"orderById"
ref=
"required,num"
var=
"序号"
/>
<property
id=
"tag"
name=
"tag"
ref=
""
var=
"表示题目是问卷题还是题库中题"
/>
<property
id=
"isRequired"
name=
"isRequired"
ref=
"required,num"
var=
"是否必选"
/>
<property
id=
"hv"
name=
"hv"
ref=
"required,num"
var=
"1水平显示 2垂直显示"
/>
<property
id=
"randOrder"
name=
"randOrder"
ref=
"required,num"
var=
"选项随机排列 1随机排列 0不随机排列"
/>
<property
id=
"cellCount"
name=
"cellCount"
ref=
"required,num"
var=
"按列显示时,列数"
/>
<property
id=
"paramInt01"
name=
"paramInt01"
ref=
"required,num"
var=
"按列显示时,列数"
/>
<property
id=
"paramInt02"
name=
"paramInt02"
ref=
"required,num"
var=
"按列显示时,列数"
/>
<property
id=
"multiFillblankTd"
name=
"multiFillblankTd"
ref=
""
var=
"多选填空题选项td json串"
/>
<property
id=
"logic"
name=
"logic"
ref=
""
var=
"逻辑设置json串"
/>
</url>
<!-- 问卷调查结束 -->
</controller>
\ No newline at end of file
skyeye-promote/src/main/resources/template/js/dwsurveydesign/dwsurveydesign.js
浏览文件 @
8e44b02b
...
...
@@ -282,24 +282,6 @@ layui.config({
editAble
(
$
(
this
));
return
false
;
});
form
.
on
(
'
submit(formAddBean)
'
,
function
(
data
)
{
//表单验证
if
(
winui
.
verifyForm
(
data
.
elem
))
{
var
params
=
{
surveyName
:
$
(
"
#surveyName
"
).
val
(),
};
// AjaxPostUtil.request({url:reqBasePath + "dwsurveydirectory002", params:params, type:'json', callback:function(json){
// if(json.returnCode == 0){
// parent.layer.close(index);
// parent.refreshCode = '0';
// }else{
// top.winui.window.msg(json.returnMessage, {icon: 2,time: 2000});
// }
// }});
}
return
false
;
});
}
});
...
...
@@ -1392,14 +1374,14 @@ layui.config({
//显示弹出层
function
showDialog
(
thDialogObj
){
var
thObjClass
=
thDialogObj
.
attr
(
"
class
"
);
var
thObjClass
=
thDialogObj
.
attr
(
"
class
"
);
curEditCallback
();
setShowDialogOffset
(
thDialogObj
);
var
quItemBody
=
$
(
thDialogObj
).
parents
(
"
.surveyQuItemBody
"
);
$
(
"
#dwCommonDialog .dwQuDialogCon
"
).
hide
();
if
(
thObjClass
.
indexOf
(
"
addMoreOption
"
)
>=
0
){
if
(
thObjClass
.
indexOf
(
"
addMoreOption
"
)
>=
0
){
$
(
"
#dwCommonDialog .dwQuAddMore
"
).
show
();
}
else
if
(
thObjClass
.
indexOf
(
"
dwQuSet
"
)
>=
0
){
}
else
if
(
thObjClass
.
indexOf
(
"
dwQuSet
"
)
>=
0
){
$
(
"
#dwCommonDialog .dwQuSetCon
"
).
show
();
var
quType
=
quItemBody
.
find
(
"
input[name='quType']
"
).
val
();
var
isRequired
=
quItemBody
.
find
(
"
input[name='isRequired']
"
).
val
();
...
...
@@ -1426,7 +1408,7 @@ layui.config({
if
(
randOrder
==
1
){
$
(
"
#dwCommonDialog input[name='setRandOrder']
"
).
prop
(
"
checked
"
,
true
);
}
if
(
hv
==
3
){
if
(
hv
==
3
){
$
(
"
#dwCommonDialog .option_range_3
"
).
show
();
}
else
{
$
(
"
#dwCommonDialog .option_range_3
"
).
hide
();
...
...
@@ -1435,18 +1417,18 @@ layui.config({
$
(
"
#dwCommonDialog input[name='setCellCount']
"
).
val
(
cellCount
);
//单选,多选 才启用选项随机排列
if
(
quType
===
"
RADIO
"
||
quType
===
"
CHECKBOX
"
){
if
(
quType
===
"
RADIO
"
||
quType
===
"
CHECKBOX
"
){
$
(
"
#dwCommonDialog .optionAutoOrder
"
).
show
();
$
(
"
#dwCommonDialog .optionRangeHv
"
).
show
();
}
else
if
(
quType
===
"
ORDERQU
"
){
}
else
if
(
quType
===
"
ORDERQU
"
){
$
(
"
#dwCommonDialog .optionAutoOrder
"
).
show
();
}
else
if
(
quType
===
"
SCORE
"
){
}
else
if
(
quType
===
"
SCORE
"
){
$
(
"
#dwCommonDialog .optionAutoOrder
"
).
show
();
$
(
"
#dwCommonDialog .scoreMinMax
"
).
show
();
if
(
paramInt02
[
0
]){
$
(
"
#dwCommonDialog .scoreMinMax .maxScore
"
).
val
(
paramInt02
.
val
());
}
}
else
if
(
quType
===
"
MULTIFILLBLANK
"
){
}
else
if
(
quType
===
"
MULTIFILLBLANK
"
){
$
(
"
#dwCommonDialog .optionAutoOrder
"
).
show
();
$
(
"
#dwCommonDialog .minMaxLi
"
).
show
();
$
(
"
#dwCommonDialog .minMaxLi .minSpan .lgleftLabel
"
).
text
(
"
最少回答
"
);
...
...
@@ -1458,10 +1440,10 @@ layui.config({
}
//单选,多选,填空题情况下才启用关联到联系设置项
if
((
quType
==
"
RADIO
"
||
quType
==
"
CHECKBOX
"
||
quType
==
"
FILLBLANK
"
)){
if
((
quType
==
"
RADIO
"
||
quType
==
"
CHECKBOX
"
||
quType
==
"
FILLBLANK
"
)){
$
(
"
#dwCommonDialog .contactsAttrLi
"
).
show
();
if
(
contactsAttr
==
1
){
$
(
"
#dwCommonDialog input[name='setAutoContacts']
"
).
prop
(
"
checked
"
,
true
);
if
(
contactsAttr
==
1
){
$
(
"
#dwCommonDialog input[name='setAutoContacts']
"
).
prop
(
"
checked
"
,
true
);
$
(
"
#dwCommonDialog .contactsFieldLi
"
).
show
();
$
(
"
#dwCommonDialog select[name='setContactsField']
"
).
val
(
contactsField
);
}
...
...
@@ -2533,104 +2515,92 @@ layui.config({
/** 多项填空题 **/
/**
*
*
新保存多项填空题
* 新保存多项填空题
**/
function
saveMultiFillblank
(
quItemBody
,
callback
)
{
var
saveTag
=
quItemBody
.
find
(
"
input[name='saveTag']
"
).
val
();
if
(
saveTag
==
0
)
{
var
url
=
reqBasePath
+
"
/design/qu-multi-fillblank!ajaxSave.action
"
;
var
quType
=
quItemBody
.
find
(
"
input[name='quType']
"
).
val
();
var
quId
=
quItemBody
.
find
(
"
input[name='quId']
"
).
val
();
var
orderById
=
quItemBody
.
find
(
"
input[name='orderById']
"
).
val
();
var
isRequired
=
quItemBody
.
find
(
"
input[name='isRequired']
"
).
val
();
var
hv
=
quItemBody
.
find
(
"
input[name='hv']
"
).
val
();
var
randOrder
=
quItemBody
.
find
(
"
input[name='randOrder']
"
).
val
();
var
cellCount
=
quItemBody
.
find
(
"
input[name='cellCount']
"
).
val
();
var
paramInt01
=
quItemBody
.
find
(
"
input[name='paramInt01']
"
).
val
();
var
paramInt02
=
quItemBody
.
find
(
"
input[name='paramInt02']
"
).
val
();
var
data
=
"
belongId=
"
+
questionBelongId
+
"
&orderById=
"
+
orderById
+
"
&tag=
"
+
svTag
+
"
&quType=
"
+
quType
+
"
&quId=
"
+
quId
;
data
+=
"
&isRequired=
"
+
isRequired
+
"
&hv=
"
+
hv
+
"
&randOrder=
"
+
randOrder
+
"
&cellCount=
"
+
cellCount
;
data
+=
"
¶mInt01=
"
+
paramInt01
+
"
¶mInt02=
"
+
paramInt02
;
if
(
saveTag
==
0
&&
isNull
(
quItemBody
.
find
(
"
input[name='quId']
"
).
val
()))
{
var
data
=
{
belongId
:
parent
.
rowId
,
orderById
:
quItemBody
.
find
(
"
input[name='orderById']
"
).
val
(),
tag
:
svTag
,
quId
:
quItemBody
.
find
(
"
input[name='quId']
"
).
val
(),
isRequired
:
quItemBody
.
find
(
"
input[name='isRequired']
"
).
val
(),
hv
:
quItemBody
.
find
(
"
input[name='hv']
"
).
val
(),
randOrder
:
quItemBody
.
find
(
"
input[name='randOrder']
"
).
val
(),
cellCount
:
quItemBody
.
find
(
"
input[name='cellCount']
"
).
val
(),
paramInt01
:
quItemBody
.
find
(
"
input[name='paramInt01']
"
).
val
(),
paramInt02
:
quItemBody
.
find
(
"
input[name='paramInt02']
"
).
val
(),
quTitle
:
''
,
};
var
quTitleSaveTag
=
quItemBody
.
find
(
"
input[name='quTitleSaveTag']
"
).
val
();
if
(
quTitleSaveTag
==
0
)
{
var
quTitle
=
quItemBody
.
find
(
"
.quCoTitleEdit
"
).
html
();
quTitle
=
escape
(
encodeURIComponent
(
quTitle
));
data
+=
"
&quTitle=
"
+
quTitle
;
data
.
quTitle
=
encodeURI
(
quTitle
);
}
//评分题选项td
var
quItemOptions
=
quItemBody
.
find
(
"
.quCoItem table.mFillblankTable tr td.mFillblankTableEditTd
"
);
var
multiFillblankTd
=
[];
$
.
each
(
quItemOptions
,
function
(
i
)
{
var
optionValue
=
$
(
this
).
find
(
"
label.quCoOptionEdit
"
).
html
();
var
optionId
=
$
(
this
).
find
(
"
.quItemInputCase input[name='quItemId']
"
).
val
();
var
quItemSaveTag
=
$
(
this
).
find
(
"
.quItemInputCase input[name='quItemSaveTag']
"
).
val
();
if
(
quItemSaveTag
==
0
)
{
optionValue
=
escape
(
encodeURIComponent
(
optionValue
));
data
+=
"
&optionValue_
"
+
i
+
"
=
"
+
optionValue
;
data
+=
"
&optionId_
"
+
i
+
"
=
"
+
optionId
;
var
s
=
{
optionValue
:
encodeURI
(
$
(
this
).
find
(
"
label.quCoOptionEdit
"
).
html
()),
optionId
:
$
(
this
).
find
(
"
.quItemInputCase input[name='quItemId']
"
).
val
(),
key
:
i
,
};
multiFillblankTd
.
push
(
s
);
}
//更新 字母 title标记到选项上.
$
(
this
).
addClass
(
"
quOption_
"
+
i
);
});
data
.
multiFillblankTd
=
JSON
.
stringify
(
multiFillblankTd
);
//逻辑选项
var
quLogicItems
=
quItemBody
.
find
(
"
.quLogicItem
"
);
var
list
=
[];
$
.
each
(
quLogicItems
,
function
(
i
)
{
var
thClass
=
$
(
this
).
attr
(
"
class
"
);
thClass
=
thClass
.
replace
(
"
quLogicItem quLogicItem_
"
,
""
);
var
quLogicId
=
$
(
this
).
find
(
"
input[name='quLogicId']
"
).
val
();
var
cgQuItemId
=
$
(
this
).
find
(
"
input[name='cgQuItemId']
"
).
val
();
var
skQuId
=
$
(
this
).
find
(
"
input[name='skQuId']
"
).
val
();
var
logicSaveTag
=
$
(
this
).
find
(
"
input[name='logicSaveTag']
"
).
val
();
var
visibility
=
$
(
this
).
find
(
"
input[name='visibility']
"
).
val
();
var
logicType
=
$
(
this
).
find
(
"
input[name='logicType']
"
).
val
();
var
itemIndex
=
thClass
;
if
(
logicSaveTag
==
0
)
{
data
+=
"
&quLogicId_
"
+
itemIndex
+
"
=
"
+
quLogicId
;
data
+=
"
&cgQuItemId_
"
+
itemIndex
+
"
=
"
+
cgQuItemId
;
data
+=
"
&skQuId_
"
+
itemIndex
+
"
=
"
+
skQuId
;
data
+=
"
&visibility_
"
+
itemIndex
+
"
=
"
+
visibility
;
data
+=
"
&logicType_
"
+
itemIndex
+
"
=
"
+
logicType
;
}
});
$
.
ajax
({
url
:
url
,
data
:
data
,
type
:
'
post
'
,
success
:
function
(
msg
)
{
if
(
msg
!=
"
error
"
)
{
var
jsons
=
eval
(
"
(
"
+
msg
+
"
)
"
);
var
quId
=
jsons
.
id
;
quItemBody
.
find
(
"
input[name='quId']
"
).
val
(
quId
);
var
quItems
=
jsons
.
quItems
;
$
.
each
(
quItems
,
function
(
i
,
item
)
{
var
quItemOption
=
quItemBody
.
find
(
"
.quOption_
"
+
item
.
title
);
quItemOption
.
find
(
"
input[name='quItemId']
"
).
val
(
item
.
id
);
quItemOption
.
find
(
"
.quItemInputCase input[name='quItemSaveTag']
"
).
val
(
1
);
});
//同步logic Id信息
var
quLogics
=
jsons
.
quLogics
;
$
.
each
(
quLogics
,
function
(
i
,
item
)
{
var
logicItem
=
quItemBody
.
find
(
"
.quLogicItem_
"
+
item
.
title
);
logicItem
.
find
(
"
input[name='quLogicId']
"
).
val
(
item
.
id
);
logicItem
.
find
(
"
input[name='logicSaveTag']
"
).
val
(
1
);
});
quItemBody
.
find
(
"
input[name='saveTag']
"
).
val
(
1
);
quItemBody
.
find
(
"
.quCoTitle input[name='quTitleSaveTag']
"
).
val
(
1
);
//执行保存下一题
saveQus
(
quItemBody
.
next
(),
callback
);
//同步-更新题目排序号
quCBNum2
++
;
exeQuCBNum
();
}
var
s
=
{
quLogicId
:
$
(
this
).
find
(
"
input[name='quLogicId']
"
).
val
(),
cgQuItemId
:
$
(
this
).
find
(
"
input[name='cgQuItemId']
"
).
val
(),
skQuId
:
$
(
this
).
find
(
"
input[name='skQuId']
"
).
val
(),
visibility
:
$
(
this
).
find
(
"
input[name='visibility']
"
).
val
(),
logicType
:
$
(
this
).
find
(
"
input[name='logicType']
"
).
val
(),
key
:
$
(
this
).
attr
(
"
class
"
).
replace
(
"
quLogicItem quLogicItem_
"
,
""
),
};
list
.
push
(
s
);
}
});
data
.
logic
=
JSON
.
stringify
(
list
);
AjaxPostUtil
.
request
({
url
:
reqBasePath
+
"
dwsurveydirectory012
"
,
params
:
data
,
type
:
'
json
'
,
callback
:
function
(
json
){
if
(
json
.
returnCode
==
0
){
var
quId
=
json
.
bean
.
id
;
quItemBody
.
find
(
"
input[name='saveTag']
"
).
val
(
1
);
quItemBody
.
find
(
"
.quCoTitle input[name='quTitleSaveTag']
"
).
val
(
1
);
quItemBody
.
find
(
"
input[name='quId']
"
).
val
(
quId
);
var
quItems
=
json
.
bean
.
quItems
;
$
.
each
(
quItems
,
function
(
i
,
item
)
{
var
quItemOption
=
quItemBody
.
find
(
"
.quOption_
"
+
item
.
title
);
quItemOption
.
find
(
"
input[name='quItemId']
"
).
val
(
item
.
id
);
quItemOption
.
find
(
"
.quItemInputCase input[name='quItemSaveTag']
"
).
val
(
1
);
});
//同步logic Id信息
var
quLogics
=
json
.
bean
.
quLogics
;
$
.
each
(
quLogics
,
function
(
i
,
item
)
{
var
logicItem
=
quItemBody
.
find
(
"
.quLogicItem_
"
+
item
.
title
);
logicItem
.
find
(
"
input[name='quLogicId']
"
).
val
(
item
.
id
);
logicItem
.
find
(
"
input[name='logicSaveTag']
"
).
val
(
1
);
});
//执行保存下一题
saveQus
(
quItemBody
.
next
(),
callback
);
//同步-更新题目排序号
quCBNum2
++
;
exeQuCBNum
();
}
else
{
top
.
winui
.
window
.
msg
(
json
.
returnMessage
,
{
icon
:
2
,
time
:
2000
});
}
}});
}
else
{
saveQus
(
quItemBody
.
next
(),
callback
);
}
...
...
skyeye-promote/src/main/resources/template/tpl/dwsurveydesign/dwsurveydesignbean.tpl
浏览文件 @
8e44b02b
...
...
@@ -664,7 +664,7 @@
</div>
<div
class=
"quCoItem"
>
<table
class=
"mFillblankTable"
cellpadding=
"0"
cellspacing=
"0"
>
{
{
#
each
qu
MultiFillblanks
}
}
{
{
#
each
qu
estionMultiFillBlank
}
}
<tr
class=
"mFillblankTableTr"
>
<td
align=
"right"
class=
"mFillblankTableEditTd"
><label
class=
"editAble quCoOptionEdit"
>
{
{
optionName
}
}
</label>
<div
class=
"quItemInputCase"
><input
type=
"hidden"
name=
"quItemId"
value=
"{
{
id
}
}"
><input
type=
"hidden"
name=
"quItemSaveTag"
value=
"1"
></div>
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录