e1a2beb4 by renchao@pashanhoo.com

Merge branch 'dev'

2 parents fad47593 95689d6f
1 /* 1 /*
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-07-28 15:27:10 4 * @LastEditTime: 2023-07-28 15:49:38
5 */ 5 */
6 const getters = { 6 const getters = {
7 sidebar: state => state.app.sidebar, 7 sidebar: state => state.app.sidebar,
......
1 /* 1 /*
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-07-28 15:26:16 4 * @LastEditTime: 2023-07-28 16:33:19
5 */ 5 */
6 import { getUserInfo } from '@/api/user' 6 import { getUserInfo } from '@/api/user'
7 const state = { 7 const state = {
......
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-07-28 15:27:37 4 * @LastEditTime: 2023-07-28 15:47:25
5 --> 5 -->
6 <template> 6 <template>
7 <div> 7 <div>
......
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-07-28 15:33:55 4 * @LastEditTime: 2023-07-28 15:45:56
5 --> 5 -->
6 <template> 6 <template>
7 <el-form :model="ruleForm" :rules="rules" ref="ruleForm" label-width="100px"> 7 <el-form :model="ruleForm" :rules="rules" ref="ruleForm" label-width="100px">
......
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-07-28 15:30:23 4 * @LastEditTime: 2023-07-28 16:28:43
5 --> 5 -->
6 <template> 6 <template>
7 <div class="from-clues"> 7 <div class="from-clues">
...@@ -41,6 +41,7 @@ ...@@ -41,6 +41,7 @@
41 </template> 41 </template>
42 <script> 42 <script>
43 import { mapGetters } from 'vuex' 43 import { mapGetters } from 'vuex'
44 import store from '@/store/index.js'
44 import table from "@/utils/mixin/table"; 45 import table from "@/utils/mixin/table";
45 import { datas } from "../javascript/fzxxdata"; 46 import { datas } from "../javascript/fzxxdata";
46 import { getCertificateList } from "@/api/bdcqz.js"; 47 import { getCertificateList } from "@/api/bdcqz.js";
...@@ -95,6 +96,7 @@ ...@@ -95,6 +96,7 @@
95 * @author: renchao 96 * @author: renchao
96 */ 97 */
97 zslqClick () { 98 zslqClick () {
99 store.dispatch('user/reWorkFresh', false)
98 this.$popupDialog("不动产权证领取", "workflow/components/dialog/zslq", {}, '80%', true) 100 this.$popupDialog("不动产权证领取", "workflow/components/dialog/zslq", {}, '80%', true)
99 } 101 }
100 } 102 }
......
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-06-25 11:15:01 4 * @LastEditTime: 2023-07-28 15:46:24
5 --> 5 -->
6 <template> 6 <template>
7 <div class="szxx"> 7 <div class="szxx">
...@@ -74,6 +74,7 @@ ...@@ -74,6 +74,7 @@
74 </template> 74 </template>
75 <script> 75 <script>
76 import { mapGetters } from 'vuex' 76 import { mapGetters } from 'vuex'
77 import store from '@/store/index.js'
77 import { getSlsqBdcqzList, invalidCertificate } from "@/api/bdcqz.js"; 78 import { getSlsqBdcqzList, invalidCertificate } from "@/api/bdcqz.js";
78 export default { 79 export default {
79 props: {}, 80 props: {},
...@@ -130,6 +131,7 @@ ...@@ -130,6 +131,7 @@
130 * @author: renchao 131 * @author: renchao
131 */ 132 */
132 openZsylDialog (item, type) { 133 openZsylDialog (item, type) {
134 store.dispatch('user/reWorkFresh', false)
133 if (type == 1) { 135 if (type == 1) {
134 //证书预览 136 //证书预览
135 this.$popupDialog("证书预览", "workflow/components/dialog/zsyl", { bdcqz: item, bsmSlsq: this.$route.query.bsmSlsq }, "70%", true); 137 this.$popupDialog("证书预览", "workflow/components/dialog/zsyl", { bdcqz: item, bsmSlsq: this.$route.query.bsmSlsq }, "70%", true);
......