|
|
|
@ -435,7 +435,16 @@
|
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
<script setup lang="ts"> |
|
|
|
|
import { ref, reactive, toRefs, computed, onMounted, nextTick } from 'vue'; |
|
|
|
|
import { |
|
|
|
|
ref, |
|
|
|
|
reactive, |
|
|
|
|
toRefs, |
|
|
|
|
computed, |
|
|
|
|
onMounted, |
|
|
|
|
nextTick, |
|
|
|
|
onActivated, |
|
|
|
|
onDeactivated, |
|
|
|
|
} from 'vue'; |
|
|
|
|
import functions from '@/utils/functions.js'; |
|
|
|
|
import dayjs from 'dayjs'; |
|
|
|
|
import { mapGetters } from 'vuex'; |
|
|
|
@ -457,10 +466,14 @@ import print from '@/utils/print';
|
|
|
|
|
import { ElMessage } from 'element-plus'; |
|
|
|
|
import type { FormInstance, FormRules } from 'element-plus'; |
|
|
|
|
import { getToken } from '@/utils/auth'; |
|
|
|
|
import { useStore } from 'vuex'; |
|
|
|
|
|
|
|
|
|
// 获取路由实例 |
|
|
|
|
const $router = useRouter(); |
|
|
|
|
|
|
|
|
|
// vuex |
|
|
|
|
const $store = useStore(); |
|
|
|
|
|
|
|
|
|
// 表单实例 |
|
|
|
|
const ruleFormRef = ref<FormInstance>(); |
|
|
|
|
|
|
|
|
@ -1201,6 +1214,17 @@ const handleOpenAddTagDlog = () => {
|
|
|
|
|
|
|
|
|
|
handleRefreshAddTag(ruleFormRef.value); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
onActivated(() => { |
|
|
|
|
console.log('activated'); |
|
|
|
|
console.log('this.$store :>> ', $store); |
|
|
|
|
if ($store.state.isRefresh.refreshObj.TemporaryStorageList) { |
|
|
|
|
// 重新请求数据 |
|
|
|
|
onLoad(); |
|
|
|
|
|
|
|
|
|
$store.commit('EDIT_REFRESHITEM', { title: 'TemporaryStorageList', status: false }); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
</script> |
|
|
|
|
|
|
|
|
|
<style scoped lang="scss"> |
|
|
|
|