|
@@ -127,7 +127,7 @@
|
|
|
<uv-icon name="close-circle" color="#000" size="24"></uv-icon>
|
|
|
</view>
|
|
|
</view>
|
|
|
- <view class="list" v-if="hasInfo">
|
|
|
+ <view class="list" v-if="hasInfo" :class="{ hidden: showRef }">
|
|
|
<view class="item" v-for="item in dataList" :key="item.id" @click="onDetail(item)">
|
|
|
<view class="top">
|
|
|
<view class="top-l">
|
|
@@ -164,7 +164,7 @@
|
|
|
</view>
|
|
|
<noData v-else />
|
|
|
<!-- 展示历史审核信息 -->
|
|
|
- <uv-popup ref="popupRef" round="15" closeable>
|
|
|
+ <uv-popup ref="popupRef" round="15" closeable @change="popupChange">
|
|
|
<view class="history">
|
|
|
<view class="header">
|
|
|
<view class="title">审核详情</view>
|
|
@@ -246,6 +246,11 @@ const dict = reactive({
|
|
|
relPkgNameArr: [] as any[]
|
|
|
})
|
|
|
|
|
|
+const showRef = ref(false)
|
|
|
+const popupChange = (e) => {
|
|
|
+ showRef.value = e.show
|
|
|
+}
|
|
|
+
|
|
|
const getDictFn = () => {
|
|
|
getTaskTypeAvailApi().then((res) => (dict.taskTypeAvailArr = res.data))
|
|
|
getDeptv2Avail().then((res) => (dict.deptListArr = res.data))
|
|
@@ -607,6 +612,11 @@ onMounted(async () => {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+.hidden {
|
|
|
+ height: 90vh;
|
|
|
+ overflow-y: hidden;
|
|
|
+}
|
|
|
+
|
|
|
.history {
|
|
|
width: 630rpx;
|
|
|
margin: 0 auto;
|