...
|
...
|
@@ -5221,10 +5221,10 @@ layui.define(['soulTable', 'commonDetail', 'common', 'laytpl', 'view', 'admin', |
|
|
//判断类型是输入框还是下拉列表
|
|
|
let titleName='';
|
|
|
let promptHtml='';
|
|
|
if(fieldSourceType == '0'){
|
|
|
if(fieldSourceType == 'input'){
|
|
|
titleName='请输入';
|
|
|
promptHtml=`<input type="text" id="promptInput" name="promptInput" autocomplete="off" class="layui-input">`
|
|
|
}else if(fieldSourceType== '1'){
|
|
|
}else if(fieldSourceType== 'select'){
|
|
|
titleName='请选择';
|
|
|
promptHtml=`<select id="promptInput" style="width:80%;cursor:pointer;" class="layui-select" lay-filter="promptInput">`
|
|
|
if(fieldList){
|
...
|
...
|
@@ -5235,7 +5235,8 @@ layui.define(['soulTable', 'commonDetail', 'common', 'laytpl', 'view', 'admin', |
|
|
}
|
|
|
promptHtml+=`</select>`;
|
|
|
}else{
|
|
|
promptHtml=``
|
|
|
titleName='请查看';
|
|
|
promptHtml=`<span style="border: 1px solid #d2d2d2;flex: 1;padding: 10px;" id="promptInput">`+old_T3Dom+`</span>`
|
|
|
}
|
|
|
let html_tpl=`<div class="T3-IOP-prompt">`+promptHtml+`</div>`;
|
|
|
layer.open({
|
...
|
...
|
|