Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Skyeye云
Skyeye
提交
8a12f16e
S
Skyeye
项目概览
Skyeye云
/
Skyeye
通知
1606
Star
168
Fork
130
代码
文件
提交
分支
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看板
提交
8a12f16e
编写于
5月 21, 2024
作者:
Skyeye云
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat: 商品规格条形码
上级
4725f385
变更
7
隐藏空白更改
内联
并排
Showing
7 changed file
with
23 addition
and
3 deletion
+23
-3
activiti/src/main/resources/template/js/allactiviti/allcomplatepossess.js
...n/resources/template/js/allactiviti/allcomplatepossess.js
+4
-0
activiti/src/main/resources/template/js/allactiviti/alltodopossess.js
.../main/resources/template/js/allactiviti/alltodopossess.js
+4
-0
activiti/src/main/resources/template/js/myActiviti/initiatedProcess.js
...main/resources/template/js/myActiviti/initiatedProcess.js
+4
-0
activiti/src/main/resources/template/js/myActiviti/pendingProcess.js
...c/main/resources/template/js/myActiviti/pendingProcess.js
+4
-0
activiti/src/main/resources/template/js/myActiviti/processedProcess.js
...main/resources/template/js/myActiviti/processedProcess.js
+4
-0
web/src/main/resources/bootstrap.yml
web/src/main/resources/bootstrap.yml
+2
-2
web/src/main/resources/template/assets/lib/layui/lay/modules/skuTable/skuTable.js
...emplate/assets/lib/layui/lay/modules/skuTable/skuTable.js
+1
-1
未找到文件。
activiti/src/main/resources/template/js/allactiviti/allcomplatepossess.js
浏览文件 @
8a12f16e
...
...
@@ -50,6 +50,10 @@ layui.config({
initTableSearchUtil
.
initAdvancedSearch
(
this
,
json
.
searchFilter
,
form
,
"
请输入流程ID
"
,
function
()
{
table
.
reloadData
(
"
messageAllComplateTable
"
,
{
page
:
{
curr
:
1
},
where
:
getTableParams
()});
});
// 该方法用于解决,使用fixed固定列后,行高和其他列不一致的问题
$
(
"
.layui-table-main tr
"
).
each
(
function
(
index
,
val
)
{
$
(
$
(
"
.layui-table-fixed .layui-table-body tbody tr
"
)[
index
]).
height
(
$
(
val
).
height
());
});
}
});
...
...
activiti/src/main/resources/template/js/allactiviti/alltodopossess.js
浏览文件 @
8a12f16e
...
...
@@ -62,6 +62,10 @@ layui.config({
initTableSearchUtil
.
initAdvancedSearch
(
this
,
json
.
searchFilter
,
form
,
"
请输入流程ID
"
,
function
()
{
table
.
reloadData
(
"
messageAllConductTable
"
,
{
page
:
{
curr
:
1
},
where
:
getTableParams
()});
});
// 该方法用于解决,使用fixed固定列后,行高和其他列不一致的问题
$
(
"
.layui-table-main tr
"
).
each
(
function
(
index
,
val
)
{
$
(
$
(
"
.layui-table-fixed .layui-table-body tbody tr
"
)[
index
]).
height
(
$
(
val
).
height
());
});
}
});
...
...
activiti/src/main/resources/template/js/myActiviti/initiatedProcess.js
浏览文件 @
8a12f16e
...
...
@@ -63,6 +63,10 @@ layui.config({
initTableSearchUtil
.
initAdvancedSearch
(
this
,
json
.
searchFilter
,
form
,
"
请输入流程ID
"
,
function
()
{
table
.
reloadData
(
"
messageMyStartTable
"
,
{
page
:
{
curr
:
1
},
where
:
getTableParams
()});
});
// 该方法用于解决,使用fixed固定列后,行高和其他列不一致的问题
$
(
"
.layui-table-main tr
"
).
each
(
function
(
index
,
val
)
{
$
(
$
(
"
.layui-table-fixed .layui-table-body tbody tr
"
)[
index
]).
height
(
$
(
val
).
height
());
});
}
});
...
...
activiti/src/main/resources/template/js/myActiviti/pendingProcess.js
浏览文件 @
8a12f16e
...
...
@@ -59,6 +59,10 @@ layui.config({
initTableSearchUtil
.
initAdvancedSearch
(
this
,
json
.
searchFilter
,
form
,
"
请输入流程ID
"
,
function
()
{
table
.
reloadData
(
"
messageMyNeedDealtTable
"
,
{
page
:
{
curr
:
1
},
where
:
getTableParams
()});
});
// 该方法用于解决,使用fixed固定列后,行高和其他列不一致的问题
$
(
"
.layui-table-main tr
"
).
each
(
function
(
index
,
val
)
{
$
(
$
(
"
.layui-table-fixed .layui-table-body tbody tr
"
)[
index
]).
height
(
$
(
val
).
height
());
});
}
});
...
...
activiti/src/main/resources/template/js/myActiviti/processedProcess.js
浏览文件 @
8a12f16e
...
...
@@ -78,6 +78,10 @@ layui.config({
initTableSearchUtil
.
initAdvancedSearch
(
this
,
json
.
searchFilter
,
form
,
"
请输入流程ID
"
,
function
()
{
table
.
reloadData
(
"
messageMyHistoryTaskTable
"
,
{
page
:
{
curr
:
1
},
where
:
getTableParams
()});
});
// 该方法用于解决,使用fixed固定列后,行高和其他列不一致的问题
$
(
"
.layui-table-main tr
"
).
each
(
function
(
index
,
val
)
{
$
(
$
(
"
.layui-table-fixed .layui-table-body tbody tr
"
)[
index
]).
height
(
$
(
val
).
height
());
});
}
});
...
...
web/src/main/resources/bootstrap.yml
浏览文件 @
8a12f16e
...
...
@@ -10,9 +10,9 @@ spring:
cloud
:
nacos
:
discovery
:
server-addr
:
localhost
:9000
# 配置服务注册nacos地址
server-addr
:
172.18.92.40
:9000
# 配置服务注册nacos地址
config
:
# 指定nacos server的地址
server-addr
:
localhost
:9000
server-addr
:
172.18.92.40
:9000
file-extension
:
yml
namespace
:
dev
\ No newline at end of file
web/src/main/resources/template/assets/lib/layui/lay/modules/skuTable/skuTable.js
浏览文件 @
8a12f16e
...
...
@@ -855,7 +855,7 @@ layui.define(['jquery', 'form', 'upload', 'layer', 'sortable'], function (export
div
+=
'
</select>
'
;
break
;
case
"
btn
"
:
value
=
isNull
(
value
)
?
[]
:
JSON
.
parse
(
value
);
value
=
isNull
(
value
)
?
[]
:
(
typeof
value
===
'
string
'
?
JSON
.
parse
(
value
)
:
value
);
div
+=
"
<button type='button' class='layui-btn layui-btn-primary layui-btn-xs stockMore' stock='
"
+
JSON
.
stringify
(
value
)
+
"
' id='
"
+
id
+
"
'>库存信息</button>
"
;
$
.
each
(
value
,
function
(
i
,
item
)
{
if
(
!
isNull
(
item
.
depotMation
))
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录