style:登记
Showing
5 changed files
with
48 additions
and
10 deletions
src/views/components/ywdialog.vue
0 → 100644
1 | <!-- | ||
2 | 功能:初始化功能描述 | ||
3 | 作者:calliope | ||
4 | --> | ||
5 | <template> | ||
6 | <div class='ywdialog'> | ||
7 | <el-link type="danger">{{formData.message}}</el-link> | ||
8 | <el-table | ||
9 | v-if="formData.result" | ||
10 | :data="formData.result" | ||
11 | height="200"> | ||
12 | <el-table-column | ||
13 | prop="bdcdyh" | ||
14 | label="不动产单元号"> | ||
15 | </el-table-column> | ||
16 | <el-table-column | ||
17 | prop="verifyErrorMessage" | ||
18 | label="状态"> | ||
19 | </el-table-column> | ||
20 | </el-table> | ||
21 | </div> | ||
22 | </template> | ||
23 | <script> | ||
24 | export default { | ||
25 | props: { | ||
26 | formData: { | ||
27 | type: Object, | ||
28 | default: {} | ||
29 | } | ||
30 | } | ||
31 | } | ||
32 | </script> | ||
33 | <style scoped lang='scss'> | ||
34 | @import "~@/styles/public.scss"; | ||
35 | </style> | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-07-05 10:05:46 | 4 | * @LastEditTime: 2023-07-05 16:15:28 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <!-- 受理信息 --> | 7 | <!-- 受理信息 --> |
... | @@ -36,8 +36,8 @@ | ... | @@ -36,8 +36,8 @@ |
36 | </el-form-item> | 36 | </el-form-item> |
37 | </el-col> | 37 | </el-col> |
38 | </el-row> | 38 | </el-row> |
39 | <div class="slxx_title title-block"> | 39 | <div class="slxx_title title-block flex"> |
40 | 抵押不动产情况 | 40 | 抵押不动产情况 <el-divider direction="vertical"></el-divider> |
41 | <el-row :gutter="10"> | 41 | <el-row :gutter="10"> |
42 | <el-col :span="8"> | 42 | <el-col :span="8"> |
43 | <el-form-item label="抵押不动产信息:"> | 43 | <el-form-item label="抵押不动产信息:"> | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-07-04 15:04:59 | 4 | * @LastEditTime: 2023-07-05 16:57:08 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="from-clues loadingtext" v-Loading="loading" element-loading-text="拼命加载中..." style="height:720px;text-align: center;"> | 7 | <div class="from-clues loadingtext" v-Loading="loading" element-loading-text="拼命加载中..." style="height:720px;text-align: center;"> |
... | @@ -20,7 +20,6 @@ | ... | @@ -20,7 +20,6 @@ |
20 | <script> | 20 | <script> |
21 | import { datas } from "../../javascript/zsyl.js"; | 21 | import { datas } from "../../javascript/zsyl.js"; |
22 | import { getSlsqBdcqzList } from "@/api/bdcqz.js" | 22 | import { getSlsqBdcqzList } from "@/api/bdcqz.js" |
23 | import { log } from 'bpmn-js-token-simulation'; | ||
24 | export default { | 23 | export default { |
25 | name: "zsyl", | 24 | name: "zsyl", |
26 | props: { | 25 | props: { | ... | ... |
... | @@ -47,12 +47,13 @@ | ... | @@ -47,12 +47,13 @@ |
47 | </template> | 47 | </template> |
48 | <script> | 48 | <script> |
49 | //首次登记 | 49 | //首次登记 |
50 | import jump from "./mixin/jump"; | ||
50 | import store from '@/store/index.js' | 51 | import store from '@/store/index.js' |
51 | import { datas, sendThis } from "../javascript/selectQjzdjbxx.js"; | ||
52 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | ||
53 | import table from "@/utils/mixin/table"; | 52 | import table from "@/utils/mixin/table"; |
54 | import jump from "./mixin/jump"; | 53 | import { popupDialog, popupCacel } from "@/utils/popup.js"; |
55 | import { startBusinessFlow, selectZdjbxx } from "@/api/ywbl.js"; | 54 | import { startBusinessFlow, selectZdjbxx } from "@/api/ywbl.js"; |
55 | import { datas, sendThis } from "../javascript/selectQjzdjbxx.js"; | ||
56 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | ||
56 | export default { | 57 | export default { |
57 | mixins: [table, jump], | 58 | mixins: [table, jump], |
58 | props: { | 59 | props: { |
... | @@ -115,9 +116,8 @@ | ... | @@ -115,9 +116,8 @@ |
115 | } | 116 | } |
116 | this.$popupCacel() | 117 | this.$popupCacel() |
117 | } else { | 118 | } else { |
118 | this.$message.error(res.message) | 119 | popupDialog("状态", "components/ywdialog", { message: res.message, result: res.result }, '36%', true) |
119 | } | 120 | } |
120 | |||
121 | }) | 121 | }) |
122 | }, | 122 | }, |
123 | handleSelectionChange (val) { | 123 | handleSelectionChange (val) { | ... | ... |
-
Please register or sign in to post a comment