|
|
@@ -308,7 +308,8 @@ export default defineComponent({
|
|
|
var shr = [];
|
|
|
if (item?.shlc?.length > 1) {
|
|
|
item.shlc.map((i, index) => {
|
|
|
- if (index != 0 && index != item.shlc.length - 1) {
|
|
|
+ var lx = item?.shzt == '审核中' ? true : index != item.shlc.length - 1;
|
|
|
+ if (index != 0 && lx) {
|
|
|
shr.push(i.USER_NAME)
|
|
|
}
|
|
|
})
|
|
|
@@ -323,7 +324,8 @@ export default defineComponent({
|
|
|
var shyj = [];
|
|
|
if (item?.shlc?.length > 1) {
|
|
|
item.shlc.map((i, index) => {
|
|
|
- if (index != 0 && index != item.shlc.length - 1) {
|
|
|
+ var lx = item?.shzt == '审核中' ? true : index != item.shlc.length - 1;
|
|
|
+ if (index != 0 && lx) {
|
|
|
shyj.push(i.CHECKINFO)
|
|
|
}
|
|
|
})
|