6f39450e by renchao@pashanhoo.com

style:登记薄补录信息删除功能的完善

1 parent d58688f7
<!--
* @Description: workFrame左侧菜单列表-普通
* @Autor: renchao
* @LastEditTime: 2023-10-10 09:00:12
* @LastEditTime: 2023-10-18 14:06:31
-->
<template>
<div class="leftmenu" :class="{ 'animation-map-drawer': isShowdrawer }">
<div v-if="this.isShowdrawer">
<el-menu
@select="djbClick"
:default-active="activeIndex"
class="title-batch">
<el-menu-item index="-1" key="-1" class="menus">
<div>登记簿</div>
......@@ -205,6 +206,7 @@
* @author: renchao
*/
handleDel (row) {
let that = this
this.$confirm("此操作将永久删除该条补录记录, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
......@@ -217,6 +219,10 @@
message: "删除成功!",
});
this.$nextTick(() => {
if (that.activeIndex != '-1') {
this.activeIndex = "0"
sessionStorage.setItem('keyPath', '0');
}
this.getleftMenubl();
if (!this.supplementarylist.length) {
getdjblist()
......
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-10-17 17:02:28
* @LastEditTime: 2023-10-18 13:57:34
-->
<template>
<div class="container">
......@@ -110,7 +110,6 @@
import { getStepFormInfo, unClaimTask, getZdInfo } from "@/api/workFlow.js";
import { getForm } from "./flowform";
import NoticeBar from "@/components/NoticeBar/index";
// import ProcessViewer from "./components/processViewer.vue"
// 引入左侧菜单
import ordinaryMenu from "./components/leftmenu/ordinaryMenu.vue";
// 引入左侧菜单
......
<!--
* @Author: yangwei
* @Date: 2023-09-06 09:20:11
* @LastEditors: yangwei
* @LastEditTime: 2023-09-06 09:20:44
* @FilePath: \bdcdj-web\src\views\ywbl\ycsl\ycsl.vue
* @Description:
*
* Copyright (c) 2023 by yangwei, All Rights Reserved.
* @LastEditors: Please set LastEditors
-->
<template>
<div></div>
<div> <el-empty description="正在开发"></el-empty></div>
</template>
<script>
export default {
name: "BdcdjWebYcsl",
export default {
name: "BdcdjWebYcsl",
data() {
return {};
},
data () {
return {};
},
mounted() {},
mounted () { },
methods: {},
};
methods: {},
};
</script>
<style lang="scss" scoped></style>
......
<!--
* @Author: yangwei
* @Date: 2023-09-06 09:19:56
* @LastEditors: yangwei
* @LastEditTime: 2023-09-06 09:20:51
* @FilePath: \bdcdj-web\src\views\ywbl\ydsq\ydsq.vue
* @Description:
*
* Copyright (c) 2023 by yangwei, All Rights Reserved.
* @LastEditors: Please set LastEditors
* @LastEditTime: 2023-10-18 13:51:00
-->
<template>
<div></div>
<div>
<el-empty description="正在开发"></el-empty>
</div>
</template>
<script>
export default {
name: "BdcdjWebYcsl",
export default {
name: "BdcdjWebYcsl",
data() {
return {};
},
data () {
return {};
},
mounted() {},
mounted () { },
methods: {},
};
methods: {},
};
</script>
<style lang="scss" scoped></style>
......
......@@ -30,6 +30,7 @@ class data extends filter {
{
prop: "status",
label: "状态",
width: '120',
render: (h, scope) => {
return (
<div>
......
<!--
* @Description: 选择不动产单元号
* @Autor: renchao
* @LastEditTime: 2023-05-18 10:59:48[文件:bdcdj-index.html]
* @LastEditTime: 2023-10-18 14:03:27
-->
<template>
<component :is="router" :sqywInfo="formData.sqywInfo" :isJump="formData.isJump ? formData.isJump : false"
......@@ -23,7 +23,6 @@
}
},
mounted () {
console.log(this.formData, 'this.formData');
if (this.formData?.sqywInfo?.djywbm || this.formData?.djywbm) {
let view = queueDjywmc(this.formData?.sqywInfo?.djywbm || this.formData?.djywbm, this.formData?.sqywInfo?.nodecode || this.formData?.nodecode);
this.router = this.loadView(view);
......