|
@@ -185,20 +185,6 @@ const instanceState = ref(null) // 流程状态
|
|
|
const beginTime = ref(null) // 开始时间
|
|
|
const endTime = ref(null) // 结束时间
|
|
|
const searchMoreVisible = ref(false)
|
|
|
-// 重置
|
|
|
-const searchReset = () => {
|
|
|
- createBy.value = undefined
|
|
|
- instanceState.value = undefined
|
|
|
- beginTime.value = undefined
|
|
|
- endTime.value = undefined
|
|
|
- // searchMoreVisible.value = false
|
|
|
-}
|
|
|
-
|
|
|
-// 搜索条件更多
|
|
|
-const searchSubmit = () => {
|
|
|
- searchMoreVisible.value = false
|
|
|
- getPagedSatellites('clear')
|
|
|
-}
|
|
|
|
|
|
// store值
|
|
|
const taskProcessInfo = useTaskProcessStore()
|
|
@@ -215,6 +201,21 @@ const condition = reactive({
|
|
|
const satelliteList = ref([]) // 列表数据
|
|
|
// 下拉滚动属性值 end
|
|
|
|
|
|
+// 搜索条件更多重置
|
|
|
+const searchReset = () => {
|
|
|
+ createBy.value = undefined
|
|
|
+ instanceState.value = undefined
|
|
|
+ beginTime.value = undefined
|
|
|
+ endTime.value = undefined
|
|
|
+ // searchMoreVisible.value = false
|
|
|
+}
|
|
|
+
|
|
|
+// 搜索条件更多
|
|
|
+const searchSubmit = () => {
|
|
|
+ searchMoreVisible.value = false
|
|
|
+ getPagedSatellites('clear')
|
|
|
+}
|
|
|
+
|
|
|
// 初始化
|
|
|
const initList = () => {
|
|
|
loading.value = false
|
|
@@ -366,7 +367,7 @@ const disabledInfinite = computed(() => noMore.value)
|
|
|
}
|
|
|
|
|
|
.flow-list-box {
|
|
|
- background-color: #fff;
|
|
|
+ background-color: var(--el-bg-color);
|
|
|
padding: 0 12px;
|
|
|
height: calc(100vh - 192px);
|
|
|
overflow: hidden auto;
|
|
@@ -385,14 +386,14 @@ const disabledInfinite = computed(() => noMore.value)
|
|
|
user-select: none;
|
|
|
border-radius: 6px;
|
|
|
overflow: hidden;
|
|
|
- border: 1px solid #e9ebef;
|
|
|
+ border: 1px solid var(--el-border-color);
|
|
|
padding: 10px 12px;
|
|
|
cursor: pointer;
|
|
|
transition: box-shadow 0.2s cubic-bezier(0, 0, 1, 1);
|
|
|
|
|
|
&.flow-card-box-hoverable {
|
|
|
&:hover {
|
|
|
- box-shadow: 4px 4px 12px rgb(229, 230, 235);
|
|
|
+ box-shadow: 4px 4px 12px var(--el-border-color-hover);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -410,13 +411,13 @@ const disabledInfinite = computed(() => noMore.value)
|
|
|
display: flex;
|
|
|
min-height: 20px;
|
|
|
.label {
|
|
|
- color: #9ba5b3;
|
|
|
+ color: var(--el-text-color-secondary);
|
|
|
overflow: hidden;
|
|
|
white-space: nowrap;
|
|
|
flex-shrink: 0;
|
|
|
}
|
|
|
.value {
|
|
|
- color: #232730;
|
|
|
+ color: var(--el-text-color-primary);
|
|
|
overflow: hidden;
|
|
|
text-overflow: ellipsis;
|
|
|
white-space: nowrap;
|