|
|
@@ -67,9 +67,9 @@
|
|
|
<el-descriptions-item label="手机号:" width="33%">{{ dataDetail?.mobile }}</el-descriptions-item>
|
|
|
<el-descriptions-item label="证件号:" width="33%">{{ dataDetail?.identity }}</el-descriptions-item>
|
|
|
<el-descriptions-item label="证件有效期始:" width="33%">{{ dataDetail?.identityTimeStart
|
|
|
- }}</el-descriptions-item>
|
|
|
+ }}</el-descriptions-item>
|
|
|
<el-descriptions-item label="证件有效期止:" width="33%">{{ dataDetail?.identityTimeEnd
|
|
|
- }}</el-descriptions-item>
|
|
|
+ }}</el-descriptions-item>
|
|
|
</el-descriptions>
|
|
|
<el-descriptions title="其他信息">
|
|
|
<el-descriptions-item label="管理人:" width="33%">{{ dataDetail?.leaderName }}</el-descriptions-item>
|
|
|
@@ -204,9 +204,6 @@
|
|
|
<el-dialog v-model="bankCardDialogShow" :title="bankTitle" width="500">
|
|
|
<addCard v-if="bankCardDialogShow" @closeDialog="closeAddBankCard" :userInfo="bankCardInfo"></addCard>
|
|
|
</el-dialog>
|
|
|
- <el-dialog v-model="dialogShow" title="编辑" width="1000">
|
|
|
- <addOperation ref="AddOperationRef" @closeDialog="closeAddOperation"></addOperation>
|
|
|
- </el-dialog>
|
|
|
<el-dialog v-model="allocationShow" title="分配管理人" width="800">
|
|
|
<allocation ref="AllocationRef" @closeDialog="closeAllocation"></allocation>
|
|
|
</el-dialog>
|
|
|
@@ -223,7 +220,6 @@
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
import { nextTick, ref } from 'vue'
|
|
|
-import addOperation from './modules/addOperation.vue'
|
|
|
import addCard from './modules/addCard.vue'
|
|
|
import pinyin from "js-pinyin";
|
|
|
import { ElMessage, ElMessageBox } from 'element-plus'
|
|
|
@@ -235,7 +231,6 @@ import VueOfficeDocx from "@vue-office/docx";
|
|
|
import { getDictItems } from "@/api/dict";
|
|
|
|
|
|
|
|
|
-let AddOperationRef = ref(null)
|
|
|
const AllocationRef = ref(null)
|
|
|
|
|
|
let myRouter = useRouter()
|
|
|
@@ -499,9 +494,13 @@ const checkNotPass = () => {
|
|
|
// 编辑/修改
|
|
|
let dialogShow = ref(false)
|
|
|
const editDetail = () => {
|
|
|
- dialogShow.value = true
|
|
|
- nextTick(() => {
|
|
|
- AddOperationRef.value.initEditData(dataDetail.value.userId, dataDetail.value.id)
|
|
|
+ myRouter.push({
|
|
|
+ path: '/operationManagement/operation/addOperation',
|
|
|
+ query: {
|
|
|
+ id: dataDetail.value.userId,
|
|
|
+ ids: dataDetail.value.id,
|
|
|
+ type: 'edit'
|
|
|
+ }
|
|
|
})
|
|
|
}
|
|
|
const closeAddOperation = (text: string) => {
|