style:业务申请初始化不加载数据
Showing
29 changed files
with
230 additions
and
139 deletions
src/utils/mixin/ywsqTable.js
0 → 100644
| 1 | /* | ||
| 2 | * @Description: | ||
| 3 | * @Autor: renchao | ||
| 4 | * @LastEditTime: 2023-11-16 13:58:50 | ||
| 5 | */ | ||
| 6 | import { mapGetters } from 'vuex' | ||
| 7 | import { defaultParameters } from "../../views/ywbl/ywsq/javascript/publicDefaultPar"; | ||
| 8 | export default { | ||
| 9 | data () { | ||
| 10 | return { | ||
| 11 | pageData: { | ||
| 12 | currentPage: 1, | ||
| 13 | pageSize: 10 | ||
| 14 | } | ||
| 15 | } | ||
| 16 | }, | ||
| 17 | computed: { | ||
| 18 | ...mapGetters(['dictData']), | ||
| 19 | }, | ||
| 20 | mounted () { | ||
| 21 | window.addEventListener('keydown', this.handkeyCode, true)//开启监听键盘按下事件 | ||
| 22 | // this.handleSearch() | ||
| 23 | }, | ||
| 24 | methods: { | ||
| 25 | /** | ||
| 26 | * @description: handkeyCode | ||
| 27 | * @param {*} e | ||
| 28 | * @author: renchao | ||
| 29 | */ | ||
| 30 | handkeyCode (e) { | ||
| 31 | if (e.keyCode === 13) { | ||
| 32 | this.handleSearch() | ||
| 33 | } | ||
| 34 | }, | ||
| 35 | /** | ||
| 36 | * @description: handleSearch | ||
| 37 | * @author: renchao | ||
| 38 | */ | ||
| 39 | handleSearch () { | ||
| 40 | this.pageData.currentPage = 1 | ||
| 41 | if (this.fetchData) { | ||
| 42 | this.fetchData() | ||
| 43 | } | ||
| 44 | if (this.queryClick) { | ||
| 45 | this.queryClick() | ||
| 46 | } | ||
| 47 | }, | ||
| 48 | /** | ||
| 49 | * @description: handleSizeChange | ||
| 50 | * @param {*} val | ||
| 51 | * @author: renchao | ||
| 52 | */ | ||
| 53 | handleSizeChange (val) { | ||
| 54 | this.pageData.currentPage = 1 | ||
| 55 | this.pageData.pageSize = val | ||
| 56 | this.queryClick() | ||
| 57 | }, | ||
| 58 | /** | ||
| 59 | * @description: handleCurrentChange | ||
| 60 | * @param {*} val | ||
| 61 | * @author: renchao | ||
| 62 | */ | ||
| 63 | handleCurrentChange (val) { | ||
| 64 | this.pageData.currentPage = val | ||
| 65 | if (this.queryClick) { | ||
| 66 | this.queryClick() | ||
| 67 | } | ||
| 68 | }, | ||
| 69 | /** | ||
| 70 | * @description: handleDel | ||
| 71 | * @author: renchao | ||
| 72 | */ | ||
| 73 | handleDel () { | ||
| 74 | let deleteAfterPage = Math.ceil((this.tableData.total - 1) / this.pageData.pageSize) | ||
| 75 | let currentPage = this.pageData.currentPage > deleteAfterPage ? deleteAfterPage : this.pageData.currentPage | ||
| 76 | this.pageData.currentPage = currentPage < 1 ? 1 : currentPage | ||
| 77 | }, | ||
| 78 | /** | ||
| 79 | * @description: resetForm | ||
| 80 | * @param {*} isYwbl | ||
| 81 | * @author: renchao | ||
| 82 | */ | ||
| 83 | resetForm (isYwbl) { | ||
| 84 | if (isYwbl) { | ||
| 85 | this.queryForm = defaultParameters.defaultParameters(); | ||
| 86 | this.pageData.currentPage = 1; | ||
| 87 | this.queryClick() | ||
| 88 | } | ||
| 89 | } | ||
| 90 | } | ||
| 91 | } |
| ... | @@ -71,7 +71,7 @@ | ... | @@ -71,7 +71,7 @@ |
| 71 | <script> | 71 | <script> |
| 72 | //查封登记 | 72 | //查封登记 |
| 73 | import store from "@/store/index.js"; | 73 | import store from "@/store/index.js"; |
| 74 | import table from "@/utils/mixin/table"; | 74 | import ywsqTable from "@/utils/mixin/ywsqTable"; |
| 75 | import jump from "../components/mixin/jump"; | 75 | import jump from "../components/mixin/jump"; |
| 76 | import { ywPopupDialog } from "@/utils/popup.js"; | 76 | import { ywPopupDialog } from "@/utils/popup.js"; |
| 77 | import { datas, sendThis } from "../javascript/cfdj.js"; | 77 | import { datas, sendThis } from "../javascript/cfdj.js"; |
| ... | @@ -83,7 +83,7 @@ | ... | @@ -83,7 +83,7 @@ |
| 83 | isJump: { type: Boolean, default: false }, | 83 | isJump: { type: Boolean, default: false }, |
| 84 | sqywInfo: { type: Object, default: () => { } }, | 84 | sqywInfo: { type: Object, default: () => { } }, |
| 85 | }, | 85 | }, |
| 86 | mixins: [table, jump], | 86 | mixins: [ywsqTable, jump], |
| 87 | data () { | 87 | data () { |
| 88 | return { | 88 | return { |
| 89 | loading: false, | 89 | loading: false, | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-09-21 09:37:44 | 4 | * @LastEditTime: 2023-11-16 14:06:18 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <!-- 抵押权利信息查询 --> | 7 | <!-- 抵押权利信息查询 --> |
| ... | @@ -60,7 +60,7 @@ | ... | @@ -60,7 +60,7 @@ |
| 60 | </template> | 60 | </template> |
| 61 | <script> | 61 | <script> |
| 62 | import store from '@/store/index.js' | 62 | import store from '@/store/index.js' |
| 63 | import table from "@/utils/mixin/table"; | 63 | import ywsqTable from "@/utils/mixin/ywsqTable"; |
| 64 | import jump from "../components/mixin/jump"; | 64 | import jump from "../components/mixin/jump"; |
| 65 | import { ywPopupDialog } from "@/utils/popup.js"; | 65 | import { ywPopupDialog } from "@/utils/popup.js"; |
| 66 | import { datas, sendThis } from "../javascript/diyaq.js"; | 66 | import { datas, sendThis } from "../javascript/diyaq.js"; |
| ... | @@ -68,7 +68,7 @@ | ... | @@ -68,7 +68,7 @@ |
| 68 | import { selectDiyaq } from "@/api/ywsq.js"; | 68 | import { selectDiyaq } from "@/api/ywsq.js"; |
| 69 | import { startBusinessFlow } from "@/api/workFlow.js"; | 69 | import { startBusinessFlow } from "@/api/workFlow.js"; |
| 70 | export default { | 70 | export default { |
| 71 | mixins: [table, jump], | 71 | mixins: [ywsqTable, jump], |
| 72 | props: { | 72 | props: { |
| 73 | isJump: { type: Boolean, default: false }, | 73 | isJump: { type: Boolean, default: false }, |
| 74 | sqywInfo: { type: Object, default: () => { } }, | 74 | sqywInfo: { type: Object, default: () => { } }, | ... | ... |
| ... | @@ -114,7 +114,7 @@ | ... | @@ -114,7 +114,7 @@ |
| 114 | <script> | 114 | <script> |
| 115 | import Vue from 'vue' | 115 | import Vue from 'vue' |
| 116 | import store from '@/store/index.js' | 116 | import store from '@/store/index.js' |
| 117 | import table from "@/utils/mixin/table"; | 117 | import ywsqTable from "@/utils/mixin/ywsqTable"; |
| 118 | //国有建设用地使用权/房屋使用权 | 118 | //国有建设用地使用权/房屋使用权 |
| 119 | import { ywPopupDialog } from "@/utils/popup.js"; | 119 | import { ywPopupDialog } from "@/utils/popup.js"; |
| 120 | import { datas, sendThis } from "../javascript/fwsyq.js"; | 120 | import { datas, sendThis } from "../javascript/fwsyq.js"; |
| ... | @@ -122,7 +122,7 @@ | ... | @@ -122,7 +122,7 @@ |
| 122 | import { selectOtherH, selectZrz, selectDz } from "@/api/ywsq.js"; | 122 | import { selectOtherH, selectZrz, selectDz } from "@/api/ywsq.js"; |
| 123 | import { startBusinessFlow, choiceBdcdy } from "@/api/workFlow.js"; | 123 | import { startBusinessFlow, choiceBdcdy } from "@/api/workFlow.js"; |
| 124 | export default { | 124 | export default { |
| 125 | mixins: [table, jump], | 125 | mixins: [ywsqTable, jump], |
| 126 | props: { | 126 | props: { |
| 127 | isJump: { type: Boolean, default: false }, | 127 | isJump: { type: Boolean, default: false }, |
| 128 | sqywInfo: { type: Object, default: () => { } }, | 128 | sqywInfo: { type: Object, default: () => { } }, | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-10-26 09:20:49 | 4 | * @LastEditTime: 2023-11-16 14:06:51 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <div class="from-clues"> | 7 | <div class="from-clues"> |
| ... | @@ -114,7 +114,7 @@ | ... | @@ -114,7 +114,7 @@ |
| 114 | <script> | 114 | <script> |
| 115 | import Vue from 'vue' | 115 | import Vue from 'vue' |
| 116 | import store from '@/store/index.js' | 116 | import store from '@/store/index.js' |
| 117 | import table from "@/utils/mixin/table"; | 117 | import ywsqTable from "@/utils/mixin/ywsqTable"; |
| 118 | //国有建设用地使用权/房屋使用权 | 118 | //国有建设用地使用权/房屋使用权 |
| 119 | import { ywPopupDialog } from "@/utils/popup.js"; | 119 | import { ywPopupDialog } from "@/utils/popup.js"; |
| 120 | import { datas, sendThis } from "../javascript/fwsyq.js"; | 120 | import { datas, sendThis } from "../javascript/fwsyq.js"; |
| ... | @@ -122,7 +122,7 @@ | ... | @@ -122,7 +122,7 @@ |
| 122 | import { selectOtherH, selectZrz, selectDz } from "@/api/ywsq.js"; | 122 | import { selectOtherH, selectZrz, selectDz } from "@/api/ywsq.js"; |
| 123 | import { startBusinessFlow, choiceBdcdy } from "@/api/workFlow.js"; | 123 | import { startBusinessFlow, choiceBdcdy } from "@/api/workFlow.js"; |
| 124 | export default { | 124 | export default { |
| 125 | mixins: [table, jump], | 125 | mixins: [ywsqTable, jump], |
| 126 | props: { | 126 | props: { |
| 127 | isJump: { type: Boolean, default: false }, | 127 | isJump: { type: Boolean, default: false }, |
| 128 | sqywInfo: { type: Object, default: () => { } }, | 128 | sqywInfo: { type: Object, default: () => { } }, | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-10-11 11:16:57 | 4 | * @LastEditTime: 2023-11-16 14:07:17 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <div class="from-clues"> | 7 | <div class="from-clues"> |
| ... | @@ -46,7 +46,7 @@ | ... | @@ -46,7 +46,7 @@ |
| 46 | <script> | 46 | <script> |
| 47 | //首次登记 | 47 | //首次登记 |
| 48 | import store from '@/store/index.js' | 48 | import store from '@/store/index.js' |
| 49 | import table from "@/utils/mixin/table"; | 49 | import ywsqTable from "@/utils/mixin/ywsqTable"; |
| 50 | import jump from "../components/mixin/jump"; | 50 | import jump from "../components/mixin/jump"; |
| 51 | import { ywPopupDialog } from "@/utils/popup.js"; | 51 | import { ywPopupDialog } from "@/utils/popup.js"; |
| 52 | import { datas, sendThis } from "../javascript/nydsyq100.js"; | 52 | import { datas, sendThis } from "../javascript/nydsyq100.js"; |
| ... | @@ -54,7 +54,7 @@ | ... | @@ -54,7 +54,7 @@ |
| 54 | import { selectZdjbxx } from "@/api/ywsq.js"; | 54 | import { selectZdjbxx } from "@/api/ywsq.js"; |
| 55 | import { startBusinessFlow } from "@/api/workFlow.js"; | 55 | import { startBusinessFlow } from "@/api/workFlow.js"; |
| 56 | export default { | 56 | export default { |
| 57 | mixins: [table, jump], | 57 | mixins: [ywsqTable, jump], |
| 58 | props: { | 58 | props: { |
| 59 | isJump: { type: Boolean, default: false }, | 59 | isJump: { type: Boolean, default: false }, |
| 60 | sqywInfo: { type: Object, default: () => { } }, | 60 | sqywInfo: { type: Object, default: () => { } }, | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-09-15 17:11:42 | 4 | * @LastEditTime: 2023-11-16 14:08:55 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <div class="from-clues"> | 7 | <div class="from-clues"> |
| ... | @@ -47,7 +47,7 @@ | ... | @@ -47,7 +47,7 @@ |
| 47 | <script> | 47 | <script> |
| 48 | //首次登记 | 48 | //首次登记 |
| 49 | import store from '@/store/index.js' | 49 | import store from '@/store/index.js' |
| 50 | import table from "@/utils/mixin/table"; | 50 | import ywsqTable from "@/utils/mixin/ywsqTable"; |
| 51 | import jump from "../components/mixin/jump"; | 51 | import jump from "../components/mixin/jump"; |
| 52 | import { ywPopupDialog } from "@/utils/popup.js"; | 52 | import { ywPopupDialog } from "@/utils/popup.js"; |
| 53 | import { datas, sendThis } from "../javascript/selectJsydsyq.js"; | 53 | import { datas, sendThis } from "../javascript/selectJsydsyq.js"; |
| ... | @@ -55,7 +55,7 @@ | ... | @@ -55,7 +55,7 @@ |
| 55 | import { selectNydsyqQlxx } from "@/api/ywsq.js"; | 55 | import { selectNydsyqQlxx } from "@/api/ywsq.js"; |
| 56 | import { startBusinessFlow } from "@/api/workFlow.js"; | 56 | import { startBusinessFlow } from "@/api/workFlow.js"; |
| 57 | export default { | 57 | export default { |
| 58 | mixins: [table, jump], | 58 | mixins: [ywsqTable, jump], |
| 59 | props: { | 59 | props: { |
| 60 | isJump: { type: Boolean, default: false }, | 60 | isJump: { type: Boolean, default: false }, |
| 61 | sqywInfo: { type: Object, default: () => { } }, | 61 | sqywInfo: { type: Object, default: () => { } }, | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-08-02 09:58:35 | 4 | * @LastEditTime: 2023-11-16 14:09:11 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <!-- 主体权利信息查询 --> | 7 | <!-- 主体权利信息查询 --> |
| ... | @@ -61,7 +61,7 @@ | ... | @@ -61,7 +61,7 @@ |
| 61 | <script> | 61 | <script> |
| 62 | import jump from "./mixin/jump"; | 62 | import jump from "./mixin/jump"; |
| 63 | import store from '@/store/index.js' | 63 | import store from '@/store/index.js' |
| 64 | import table from "@/utils/mixin/table"; | 64 | import ywsqTable from "@/utils/mixin/ywsqTable"; |
| 65 | import { ywPopupDialog } from "@/utils/popup.js"; | 65 | import { ywPopupDialog } from "@/utils/popup.js"; |
| 66 | import { datas, sendThis } from "../javascript/selecBdcql.js"; | 66 | import { datas, sendThis } from "../javascript/selecBdcql.js"; |
| 67 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 67 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; |
| ... | @@ -69,7 +69,7 @@ | ... | @@ -69,7 +69,7 @@ |
| 69 | import { startBusinessFlow, startTogetherFlow } from "@/api/workFlow.js"; | 69 | import { startBusinessFlow, startTogetherFlow } from "@/api/workFlow.js"; |
| 70 | import { getQllxByBsmSqyw } from "@/api/sysSqdjyw.js"; | 70 | import { getQllxByBsmSqyw } from "@/api/sysSqdjyw.js"; |
| 71 | export default { | 71 | export default { |
| 72 | mixins: [table, jump], | 72 | mixins: [ywsqTable, jump], |
| 73 | props: { | 73 | props: { |
| 74 | isJump: { type: Boolean, default: false }, | 74 | isJump: { type: Boolean, default: false }, |
| 75 | sqywInfo: { type: Object, default: () => { } }, | 75 | sqywInfo: { type: Object, default: () => { } }, | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-09-26 13:42:02 | 4 | * @LastEditTime: 2023-11-16 14:09:32 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <div class="from-clues"> | 7 | <div class="from-clues"> |
| ... | @@ -58,7 +58,7 @@ | ... | @@ -58,7 +58,7 @@ |
| 58 | <script> | 58 | <script> |
| 59 | import { mapGetters } from "vuex"; | 59 | import { mapGetters } from "vuex"; |
| 60 | import store from '@/store/index.js' | 60 | import store from '@/store/index.js' |
| 61 | import table from "@/utils/mixin/table"; | 61 | import ywsqTable from "@/utils/mixin/ywsqTable"; |
| 62 | import { ywPopupDialog } from "@/utils/popup.js"; | 62 | import { ywPopupDialog } from "@/utils/popup.js"; |
| 63 | import { startRepairFlow } from "@/api/workFlow.js"; | 63 | import { startRepairFlow } from "@/api/workFlow.js"; |
| 64 | import { datas, sendThis } from "../javascript/selectDjbbl.js"; | 64 | import { datas, sendThis } from "../javascript/selectDjbbl.js"; |
| ... | @@ -66,7 +66,7 @@ | ... | @@ -66,7 +66,7 @@ |
| 66 | import jump from "../components/mixin/djbbljump"; | 66 | import jump from "../components/mixin/djbbljump"; |
| 67 | export default { | 67 | export default { |
| 68 | name: "djbcx", | 68 | name: "djbcx", |
| 69 | mixins: [table, jump], | 69 | mixins: [ywsqTable, jump], |
| 70 | mounted () { | 70 | mounted () { |
| 71 | sendThis(this); | 71 | sendThis(this); |
| 72 | this.queryClick() | 72 | this.queryClick() | ... | ... |
| ... | @@ -169,14 +169,14 @@ | ... | @@ -169,14 +169,14 @@ |
| 169 | //首次登记 | 169 | //首次登记 |
| 170 | import jump from "./mixin/jump"; | 170 | import jump from "./mixin/jump"; |
| 171 | import store from '@/store/index.js' | 171 | import store from '@/store/index.js' |
| 172 | import table from "@/utils/mixin/table"; | 172 | import ywsqTable from "@/utils/mixin/ywsqTable"; |
| 173 | import { ywPopupDialog } from "@/utils/popup.js"; | 173 | import { ywPopupDialog } from "@/utils/popup.js"; |
| 174 | import { datas, sendThis } from "../javascript/selectFwbjDybgSplitMerge.js"; | 174 | import { datas, sendThis } from "../javascript/selectFwbjDybgSplitMerge.js"; |
| 175 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 175 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; |
| 176 | import { selectFwsyq, selectDiyaq } from "@/api/ywsq.js"; | 176 | import { selectFwsyq, selectDiyaq } from "@/api/ywsq.js"; |
| 177 | import { startTogetherFlow } from "@/api/workFlow.js"; | 177 | import { startTogetherFlow } from "@/api/workFlow.js"; |
| 178 | export default { | 178 | export default { |
| 179 | mixins: [table, jump], | 179 | mixins: [ywsqTable, jump], |
| 180 | props: { | 180 | props: { |
| 181 | isJump: { type: Boolean, default: false }, | 181 | isJump: { type: Boolean, default: false }, |
| 182 | sqywInfo: { type: Object, default: () => { } }, | 182 | sqywInfo: { type: Object, default: () => { } }, |
| ... | @@ -252,7 +252,7 @@ | ... | @@ -252,7 +252,7 @@ |
| 252 | getCurrentRow (row) { | 252 | getCurrentRow (row) { |
| 253 | this.radioVal = row.bdcdyh; | 253 | this.radioVal = row.bdcdyh; |
| 254 | this.bdcdysz = [row] | 254 | this.bdcdysz = [row] |
| 255 | selectDiyaq({ bdcdyh: this.radioVal,sqywbm:'A37300', currentPage: 1, pageSize: 10 }).then((res) => { | 255 | selectDiyaq({ bdcdyh: this.radioVal, sqywbm: 'A37300', currentPage: 1, pageSize: 10 }).then((res) => { |
| 256 | if (res.code === 200) { | 256 | if (res.code === 200) { |
| 257 | this.tableData.dataList = res.result.records | 257 | this.tableData.dataList = res.result.records |
| 258 | this.bdcdysz = [this.bdcdysz[0], ...this.tableData.dataList] | 258 | this.bdcdysz = [this.bdcdysz[0], ...this.tableData.dataList] | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-11-14 16:03:46 | 4 | * @LastEditTime: 2023-11-16 14:10:35 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <div class="from-clues"> | 7 | <div class="from-clues"> |
| ... | @@ -143,14 +143,14 @@ | ... | @@ -143,14 +143,14 @@ |
| 143 | import store from '@/store/index.js' | 143 | import store from '@/store/index.js' |
| 144 | import Filter from '@/utils/filter.js' | 144 | import Filter from '@/utils/filter.js' |
| 145 | const filter = new Filter(); | 145 | const filter = new Filter(); |
| 146 | import table from "@/utils/mixin/table"; | 146 | import ywsqTable from "@/utils/mixin/ywsqTable"; |
| 147 | import { ywPopupDialog } from "@/utils/popup.js"; | 147 | import { ywPopupDialog } from "@/utils/popup.js"; |
| 148 | import { datas, sendThis } from "../javascript/selectFwfgSplitMerge.js"; | 148 | import { datas, sendThis } from "../javascript/selectFwfgSplitMerge.js"; |
| 149 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 149 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; |
| 150 | import { selectFwsyq, selectJsydQlxxSplitMergeBefore, selectZdjbxxSplitMerge } from "@/api/ywsq.js"; | 150 | import { selectFwsyq, selectJsydQlxxSplitMergeBefore, selectZdjbxxSplitMerge } from "@/api/ywsq.js"; |
| 151 | import { startBusinessFlow } from "@/api/workFlow.js"; | 151 | import { startBusinessFlow } from "@/api/workFlow.js"; |
| 152 | export default { | 152 | export default { |
| 153 | mixins: [table, jump], | 153 | mixins: [ywsqTable, jump], |
| 154 | props: { | 154 | props: { |
| 155 | isJump: { type: Boolean, default: false }, | 155 | isJump: { type: Boolean, default: false }, |
| 156 | sqywInfo: { type: Object, default: () => { } }, | 156 | sqywInfo: { type: Object, default: () => { } }, | ... | ... |
| ... | @@ -54,14 +54,14 @@ | ... | @@ -54,14 +54,14 @@ |
| 54 | <script> | 54 | <script> |
| 55 | import jump from "./mixin/jump"; | 55 | import jump from "./mixin/jump"; |
| 56 | import store from '@/store/index.js' | 56 | import store from '@/store/index.js' |
| 57 | import table from "@/utils/mixin/table"; | 57 | import ywsqTable from "@/utils/mixin/ywsqTable"; |
| 58 | import { ywPopupDialog } from "@/utils/popup.js"; | 58 | import { ywPopupDialog } from "@/utils/popup.js"; |
| 59 | import { datas, sendThis } from "../javascript/selectFwsyq.js"; | 59 | import { datas, sendThis } from "../javascript/selectFwsyq.js"; |
| 60 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 60 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; |
| 61 | import { selectFwsyq } from "@/api/ywsq.js"; | 61 | import { selectFwsyq } from "@/api/ywsq.js"; |
| 62 | import { startBusinessFlow,startTogetherFlow } from "@/api/workFlow.js"; | 62 | import { startBusinessFlow, startTogetherFlow } from "@/api/workFlow.js"; |
| 63 | export default { | 63 | export default { |
| 64 | mixins: [table, jump], | 64 | mixins: [ywsqTable, jump], |
| 65 | props: { | 65 | props: { |
| 66 | isJump: { type: Boolean, default: false }, | 66 | isJump: { type: Boolean, default: false }, |
| 67 | sqywInfo: { type: Object, default: () => { } }, | 67 | sqywInfo: { type: Object, default: () => { } }, |
| ... | @@ -108,64 +108,64 @@ | ... | @@ -108,64 +108,64 @@ |
| 108 | return; | 108 | return; |
| 109 | } | 109 | } |
| 110 | this.loading = true; | 110 | this.loading = true; |
| 111 | if(this.sqywInfo.sqfl=='1'){ | 111 | if (this.sqywInfo.sqfl == '1') { |
| 112 | startBusinessFlow({ | 112 | startBusinessFlow({ |
| 113 | bsmSqyw: this.sqywInfo.bsmSqyw, | 113 | bsmSqyw: this.sqywInfo.bsmSqyw, |
| 114 | bdcdysz: this.bdcdysz, | 114 | bdcdysz: this.bdcdysz, |
| 115 | }).then((res) => { | 115 | }).then((res) => { |
| 116 | this.loading = false | 116 | this.loading = false |
| 117 | if (res.code == 200) { | 117 | if (res.code == 200) { |
| 118 | this.$message({ | 118 | this.$message({ |
| 119 | showClose: true, | 119 | showClose: true, |
| 120 | message: "发起申请成功", | 120 | message: "发起申请成功", |
| 121 | type: "success", | 121 | type: "success", |
| 122 | }); | 122 | }); |
| 123 | if (!this.isJump) { | 123 | if (!this.isJump) { |
| 124 | this.jump(res.result, this.sqywInfo.djywbm); | 124 | this.jump(res.result, this.sqywInfo.djywbm); |
| 125 | } else { | 125 | } else { |
| 126 | store.dispatch('user/refreshPage', true); | 126 | store.dispatch('user/refreshPage', true); |
| 127 | } | 127 | } |
| 128 | this.$popupCacel() | ||
| 129 | } else { | ||
| 130 | if (res.result && res.result.length > 0) { | ||
| 131 | ywPopupDialog("申请错误明细", "components/ywdialog", { result: res.result }, '36%', true) | ||
| 132 | } else { | ||
| 133 | ywPopupDialog("申请错误明细", "components/ywdialog", { message: res.message }, '36%', true) | ||
| 134 | } | ||
| 135 | } | ||
| 136 | }).catch(() => { | ||
| 137 | this.loading = false | ||
| 138 | }) | ||
| 139 | }else{ | ||
| 140 | startTogetherFlow({ | ||
| 141 | bsmSqyw: this.sqywInfo.bsmSqyw, | ||
| 142 | bdcdysz: this.bdcdysz, | ||
| 143 | }).then((res) => { | ||
| 144 | this.loading = false | ||
| 145 | if (res.code == 200) { | ||
| 146 | this.$message({ | ||
| 147 | showClose: true, | ||
| 148 | message: '发起申请成功', | ||
| 149 | type: 'success' | ||
| 150 | }) | ||
| 151 | if (!this.isJump) { | ||
| 152 | this.jump(res.result, this.sqywInfo.djywbm) | ||
| 153 | } else { | ||
| 154 | store.dispatch('user/refreshPage', true); | ||
| 155 | this.$popupCacel() | 128 | this.$popupCacel() |
| 129 | } else { | ||
| 130 | if (res.result && res.result.length > 0) { | ||
| 131 | ywPopupDialog("申请错误明细", "components/ywdialog", { result: res.result }, '36%', true) | ||
| 132 | } else { | ||
| 133 | ywPopupDialog("申请错误明细", "components/ywdialog", { message: res.message }, '36%', true) | ||
| 134 | } | ||
| 156 | } | 135 | } |
| 157 | } else { | 136 | }).catch(() => { |
| 158 | if (res.result && res.result.length > 0) { | 137 | this.loading = false |
| 159 | ywPopupDialog("申请错误明细", "components/ywdialog", { result: res.result }, '36%', true) | 138 | }) |
| 139 | } else { | ||
| 140 | startTogetherFlow({ | ||
| 141 | bsmSqyw: this.sqywInfo.bsmSqyw, | ||
| 142 | bdcdysz: this.bdcdysz, | ||
| 143 | }).then((res) => { | ||
| 144 | this.loading = false | ||
| 145 | if (res.code == 200) { | ||
| 146 | this.$message({ | ||
| 147 | showClose: true, | ||
| 148 | message: '发起申请成功', | ||
| 149 | type: 'success' | ||
| 150 | }) | ||
| 151 | if (!this.isJump) { | ||
| 152 | this.jump(res.result, this.sqywInfo.djywbm) | ||
| 153 | } else { | ||
| 154 | store.dispatch('user/refreshPage', true); | ||
| 155 | this.$popupCacel() | ||
| 156 | } | ||
| 160 | } else { | 157 | } else { |
| 161 | ywPopupDialog("申请错误明细", "components/ywdialog", { message: res.message }, '36%', true) | 158 | if (res.result && res.result.length > 0) { |
| 159 | ywPopupDialog("申请错误明细", "components/ywdialog", { result: res.result }, '36%', true) | ||
| 160 | } else { | ||
| 161 | ywPopupDialog("申请错误明细", "components/ywdialog", { message: res.message }, '36%', true) | ||
| 162 | } | ||
| 162 | } | 163 | } |
| 163 | } | 164 | }).catch(() => { |
| 164 | }).catch(() => { | 165 | this.loading = false |
| 165 | this.loading = false | 166 | }) |
| 166 | }) | 167 | } |
| 167 | } | 168 | |
| 168 | |||
| 169 | }, | 169 | }, |
| 170 | /** | 170 | /** |
| 171 | * @description: handleSelectionChange | 171 | * @description: handleSelectionChange |
| ... | @@ -244,14 +244,14 @@ | ... | @@ -244,14 +244,14 @@ |
| 244 | formData: param | 244 | formData: param |
| 245 | }) | 245 | }) |
| 246 | }, | 246 | }, |
| 247 | /** | 247 | /** |
| 248 | * @description: handleLpbClick | 248 | * @description: handleLpbClick |
| 249 | * @param {*} row | 249 | * @param {*} row |
| 250 | * @author: miaofang | 250 | * @author: miaofang |
| 251 | */ | 251 | */ |
| 252 | handleLpbClick (item) { | 252 | handleLpbClick (item) { |
| 253 | console.log("item",item); | 253 | console.log("item", item); |
| 254 | console.log("this.sqywInfo",this.sqywInfo); | 254 | console.log("this.sqywInfo", this.sqywInfo); |
| 255 | this.$popup('楼盘表', 'lpb/index', { | 255 | this.$popup('楼盘表', 'lpb/index', { |
| 256 | width: '85%', | 256 | width: '85%', |
| 257 | formData: { | 257 | formData: { | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-10-13 15:56:50 | 4 | * @LastEditTime: 2023-11-16 14:11:46 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <!-- 主体权利信息查询 --> | 7 | <!-- 主体权利信息查询 --> |
| ... | @@ -53,14 +53,14 @@ | ... | @@ -53,14 +53,14 @@ |
| 53 | <script> | 53 | <script> |
| 54 | import jump from "./mixin/jump"; | 54 | import jump from "./mixin/jump"; |
| 55 | import store from '@/store/index.js' | 55 | import store from '@/store/index.js' |
| 56 | import table from "@/utils/mixin/table"; | 56 | import ywsqTable from "@/utils/mixin/ywsqTable"; |
| 57 | import { ywPopupDialog } from "@/utils/popup.js"; | 57 | import { ywPopupDialog } from "@/utils/popup.js"; |
| 58 | import { datas, sendThis } from "../javascript/selectH.js"; | 58 | import { datas, sendThis } from "../javascript/selectH.js"; |
| 59 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 59 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; |
| 60 | import { selectHQjdc } from "@/api/ywsq.js"; | 60 | import { selectHQjdc } from "@/api/ywsq.js"; |
| 61 | import { startBusinessFlow } from "@/api/workFlow.js"; | 61 | import { startBusinessFlow } from "@/api/workFlow.js"; |
| 62 | export default { | 62 | export default { |
| 63 | mixins: [table, jump], | 63 | mixins: [ywsqTable, jump], |
| 64 | props: { | 64 | props: { |
| 65 | isJump: { type: Boolean, default: false }, | 65 | isJump: { type: Boolean, default: false }, |
| 66 | sqywInfo: { type: Object, default: () => { } }, | 66 | sqywInfo: { type: Object, default: () => { } }, | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-10-26 15:04:32 | 4 | * @LastEditTime: 2023-11-16 14:02:08 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <div class="from-clues"> | 7 | <div class="from-clues"> |
| ... | @@ -62,14 +62,14 @@ | ... | @@ -62,14 +62,14 @@ |
| 62 | //首次登记 | 62 | //首次登记 |
| 63 | import jump from "./mixin/jump"; | 63 | import jump from "./mixin/jump"; |
| 64 | import store from '@/store/index.js' | 64 | import store from '@/store/index.js' |
| 65 | import table from "@/utils/mixin/table"; | 65 | import ywsqTable from "@/utils/mixin/ywsqTable"; |
| 66 | import { ywPopupDialog } from "@/utils/popup.js"; | 66 | import { ywPopupDialog } from "@/utils/popup.js"; |
| 67 | import { datas, sendThis } from "../javascript/selectJsydsyq.js"; | 67 | import { datas, sendThis } from "../javascript/selectJsydsyq.js"; |
| 68 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 68 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; |
| 69 | import { selectJsydQlxx } from "@/api/ywsq.js"; | 69 | import { selectJsydQlxx } from "@/api/ywsq.js"; |
| 70 | import { startBusinessFlow } from "@/api/workFlow.js"; | 70 | import { startBusinessFlow } from "@/api/workFlow.js"; |
| 71 | export default { | 71 | export default { |
| 72 | mixins: [table, jump], | 72 | mixins: [ywsqTable, jump], |
| 73 | props: { | 73 | props: { |
| 74 | isJump: { type: Boolean, default: false }, | 74 | isJump: { type: Boolean, default: false }, |
| 75 | sqywInfo: { type: Object, default: () => { } }, | 75 | sqywInfo: { type: Object, default: () => { } }, | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-11-14 15:57:50 | 4 | * @LastEditTime: 2023-11-16 14:12:03 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <div class="from-clues"> | 7 | <div class="from-clues"> |
| ... | @@ -139,14 +139,14 @@ | ... | @@ -139,14 +139,14 @@ |
| 139 | import store from '@/store/index.js' | 139 | import store from '@/store/index.js' |
| 140 | import Filter from '@/utils/filter.js' | 140 | import Filter from '@/utils/filter.js' |
| 141 | const filter = new Filter(); | 141 | const filter = new Filter(); |
| 142 | import table from "@/utils/mixin/table"; | 142 | import ywsqTable from "@/utils/mixin/ywsqTable"; |
| 143 | import { ywPopupDialog } from "@/utils/popup.js"; | 143 | import { ywPopupDialog } from "@/utils/popup.js"; |
| 144 | import { datastwo, sendThis } from "../javascript/selectJsydsyqhbfg.js"; | 144 | import { datastwo, sendThis } from "../javascript/selectJsydsyqhbfg.js"; |
| 145 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 145 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; |
| 146 | import { selectJsydQlxxSplitMergeBefore, selectZdjbxxSplitMerge } from "@/api/ywsq.js"; | 146 | import { selectJsydQlxxSplitMergeBefore, selectZdjbxxSplitMerge } from "@/api/ywsq.js"; |
| 147 | import { startBusinessFlow } from "@/api/workFlow.js"; | 147 | import { startBusinessFlow } from "@/api/workFlow.js"; |
| 148 | export default { | 148 | export default { |
| 149 | mixins: [table, jump], | 149 | mixins: [ywsqTable, jump], |
| 150 | props: { | 150 | props: { |
| 151 | isJump: { type: Boolean, default: false }, | 151 | isJump: { type: Boolean, default: false }, |
| 152 | sqywInfo: { type: Object, default: () => { } }, | 152 | sqywInfo: { type: Object, default: () => { } }, | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-09-05 11:32:50 | 4 | * @LastEditTime: 2023-11-16 14:12:20 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <div class="from-clues"> | 7 | <div class="from-clues"> |
| ... | @@ -54,14 +54,14 @@ | ... | @@ -54,14 +54,14 @@ |
| 54 | //首次登记 | 54 | //首次登记 |
| 55 | import jump from "./mixin/jump"; | 55 | import jump from "./mixin/jump"; |
| 56 | import store from '@/store/index.js' | 56 | import store from '@/store/index.js' |
| 57 | import table from "@/utils/mixin/table"; | 57 | import ywsqTable from "@/utils/mixin/ywsqTable"; |
| 58 | import { ywPopupDialog } from "@/utils/popup.js"; | 58 | import { ywPopupDialog } from "@/utils/popup.js"; |
| 59 | import { selectLq } from "@/api/ywsq.js"; | 59 | import { selectLq } from "@/api/ywsq.js"; |
| 60 | import { startBusinessFlow } from "@/api/workFlow.js"; | 60 | import { startBusinessFlow } from "@/api/workFlow.js"; |
| 61 | import { datas, sendThis } from "../javascript/selectQjlqxxQt.js"; | 61 | import { datas, sendThis } from "../javascript/selectQjlqxxQt.js"; |
| 62 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 62 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; |
| 63 | export default { | 63 | export default { |
| 64 | mixins: [table, jump], | 64 | mixins: [ywsqTable, jump], |
| 65 | props: { | 65 | props: { |
| 66 | isJump: { type: Boolean, default: false }, | 66 | isJump: { type: Boolean, default: false }, |
| 67 | sqywInfo: { type: Object, default: () => { } }, | 67 | sqywInfo: { type: Object, default: () => { } }, |
| ... | @@ -75,7 +75,7 @@ | ... | @@ -75,7 +75,7 @@ |
| 75 | columns: datas.columns(), | 75 | columns: datas.columns(), |
| 76 | data: [], | 76 | data: [], |
| 77 | }, | 77 | }, |
| 78 | bdcdysz: [], | 78 | bdcdysz: [], |
| 79 | }; | 79 | }; |
| 80 | }, | 80 | }, |
| 81 | mounted () { | 81 | mounted () { | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-08-11 15:54:34 | 4 | * @LastEditTime: 2023-11-16 14:12:35 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <div class="from-clues"> | 7 | <div class="from-clues"> |
| ... | @@ -54,14 +54,14 @@ | ... | @@ -54,14 +54,14 @@ |
| 54 | //首次登记 | 54 | //首次登记 |
| 55 | import jump from "./mixin/jump"; | 55 | import jump from "./mixin/jump"; |
| 56 | import store from '@/store/index.js' | 56 | import store from '@/store/index.js' |
| 57 | import table from "@/utils/mixin/table"; | 57 | import ywsqTable from "@/utils/mixin/ywsqTable"; |
| 58 | import { ywPopupDialog } from "@/utils/popup.js"; | 58 | import { ywPopupDialog } from "@/utils/popup.js"; |
| 59 | import { selectZdjbxx } from "@/api/ywsq.js"; | 59 | import { selectZdjbxx } from "@/api/ywsq.js"; |
| 60 | import { startBusinessFlow } from "@/api/workFlow.js"; | 60 | import { startBusinessFlow } from "@/api/workFlow.js"; |
| 61 | import { datas, sendThis } from "../javascript/selectQjzdjbxx.js"; | 61 | import { datas, sendThis } from "../javascript/selectQjzdjbxx.js"; |
| 62 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 62 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; |
| 63 | export default { | 63 | export default { |
| 64 | mixins: [table, jump], | 64 | mixins: [ywsqTable, jump], |
| 65 | props: { | 65 | props: { |
| 66 | isJump: { type: Boolean, default: false }, | 66 | isJump: { type: Boolean, default: false }, |
| 67 | sqywInfo: { type: Object, default: () => { } }, | 67 | sqywInfo: { type: Object, default: () => { } }, | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-10-16 11:14:29 | 4 | * @LastEditTime: 2023-11-16 13:59:21 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <div class="from-clues"> | 7 | <div class="from-clues"> |
| ... | @@ -53,14 +53,14 @@ | ... | @@ -53,14 +53,14 @@ |
| 53 | //首次登记 | 53 | //首次登记 |
| 54 | import jump from "./mixin/jump"; | 54 | import jump from "./mixin/jump"; |
| 55 | import store from '@/store/index.js' | 55 | import store from '@/store/index.js' |
| 56 | import table from "@/utils/mixin/table"; | 56 | import ywsqTable from "@/utils/mixin/ywsqTable"; |
| 57 | import { ywPopupDialog } from "@/utils/popup.js"; | 57 | import { ywPopupDialog } from "@/utils/popup.js"; |
| 58 | import { selectZdjbxx } from "@/api/ywsq.js"; | 58 | import { selectZdjbxx } from "@/api/ywsq.js"; |
| 59 | import { startBusinessFlow } from "@/api/workFlow.js"; | 59 | import { startBusinessFlow } from "@/api/workFlow.js"; |
| 60 | import { datas, sendThis } from "../javascript/selectQjzdjbxx.js"; | 60 | import { datas, sendThis } from "../javascript/selectQjzdjbxx.js"; |
| 61 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 61 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; |
| 62 | export default { | 62 | export default { |
| 63 | mixins: [table, jump], | 63 | mixins: [jump, ywsqTable], |
| 64 | props: { | 64 | props: { |
| 65 | isJump: { type: Boolean, default: false }, | 65 | isJump: { type: Boolean, default: false }, |
| 66 | sqywInfo: { type: Object, default: () => { } }, | 66 | sqywInfo: { type: Object, default: () => { } }, | ... | ... |
| ... | @@ -54,14 +54,14 @@ | ... | @@ -54,14 +54,14 @@ |
| 54 | //首次登记 | 54 | //首次登记 |
| 55 | import jump from "./mixin/jump"; | 55 | import jump from "./mixin/jump"; |
| 56 | import store from '@/store/index.js' | 56 | import store from '@/store/index.js' |
| 57 | import table from "@/utils/mixin/table"; | 57 | import ywsqTable from "@/utils/mixin/ywsqTable"; |
| 58 | import { ywPopupDialog } from "@/utils/popup.js"; | 58 | import { ywPopupDialog } from "@/utils/popup.js"; |
| 59 | import { selectLq } from "@/api/ywsq.js"; | 59 | import { selectLq } from "@/api/ywsq.js"; |
| 60 | import { startBusinessFlow } from "@/api/workFlow.js"; | 60 | import { startBusinessFlow } from "@/api/workFlow.js"; |
| 61 | import { datas, sendThis } from "../javascript/selectSllmqt.js"; | 61 | import { datas, sendThis } from "../javascript/selectSllmqt.js"; |
| 62 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 62 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; |
| 63 | export default { | 63 | export default { |
| 64 | mixins: [table, jump], | 64 | mixins: [ywsqTable, jump], |
| 65 | props: { | 65 | props: { |
| 66 | isJump: { type: Boolean, default: false }, | 66 | isJump: { type: Boolean, default: false }, |
| 67 | sqywInfo: { type: Object, default: () => { } }, | 67 | sqywInfo: { type: Object, default: () => { } }, | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-08-17 15:14:01 | 4 | * @LastEditTime: 2023-11-16 14:13:30 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <div class="from-clues"> | 7 | <div class="from-clues"> |
| ... | @@ -54,14 +54,14 @@ | ... | @@ -54,14 +54,14 @@ |
| 54 | //首次登记 | 54 | //首次登记 |
| 55 | import jump from "./mixin/jump"; | 55 | import jump from "./mixin/jump"; |
| 56 | import store from '@/store/index.js' | 56 | import store from '@/store/index.js' |
| 57 | import table from "@/utils/mixin/table"; | 57 | import ywsqTable from "@/utils/mixin/ywsqTable"; |
| 58 | import { ywPopupDialog } from "@/utils/popup.js"; | 58 | import { ywPopupDialog } from "@/utils/popup.js"; |
| 59 | import { selectLqQjdc } from "@/api/ywsq.js"; | 59 | import { selectLqQjdc } from "@/api/ywsq.js"; |
| 60 | import { startBusinessFlow } from "@/api/workFlow.js"; | 60 | import { startBusinessFlow } from "@/api/workFlow.js"; |
| 61 | import { datas, sendThis } from "../javascript/selectQjzdjbxx.js"; | 61 | import { datas, sendThis } from "../javascript/selectQjzdjbxx.js"; |
| 62 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 62 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; |
| 63 | export default { | 63 | export default { |
| 64 | mixins: [table, jump], | 64 | mixins: [ywsqTable, jump], |
| 65 | props: { | 65 | props: { |
| 66 | isJump: { type: Boolean, default: false }, | 66 | isJump: { type: Boolean, default: false }, |
| 67 | sqywInfo: { type: Object, default: () => { } }, | 67 | sqywInfo: { type: Object, default: () => { } }, | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-08-02 09:59:25 | 4 | * @LastEditTime: 2023-11-16 14:00:39 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <div class="from-clues"> | 7 | <div class="from-clues"> |
| ... | @@ -62,14 +62,14 @@ | ... | @@ -62,14 +62,14 @@ |
| 62 | //首次登记 | 62 | //首次登记 |
| 63 | import jump from "./mixin/jump"; | 63 | import jump from "./mixin/jump"; |
| 64 | import store from '@/store/index.js' | 64 | import store from '@/store/index.js' |
| 65 | import table from "@/utils/mixin/table"; | 65 | import ywsqTable from "@/utils/mixin/ywsqTable"; |
| 66 | import { ywPopupDialog } from "@/utils/popup.js"; | 66 | import { ywPopupDialog } from "@/utils/popup.js"; |
| 67 | import { datas, sendThis } from "../javascript/selectTdsyq.js"; | 67 | import { datas, sendThis } from "../javascript/selectTdsyq.js"; |
| 68 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 68 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; |
| 69 | import { selectTdsyqQlxx } from "@/api/ywsq.js"; | 69 | import { selectTdsyqQlxx } from "@/api/ywsq.js"; |
| 70 | import { startBusinessFlow } from "@/api/workFlow.js"; | 70 | import { startBusinessFlow } from "@/api/workFlow.js"; |
| 71 | export default { | 71 | export default { |
| 72 | mixins: [table, jump], | 72 | mixins: [ywsqTable, jump], |
| 73 | props: { | 73 | props: { |
| 74 | isJump: { type: Boolean, default: false }, | 74 | isJump: { type: Boolean, default: false }, |
| 75 | sqywInfo: { type: Object, default: () => { } }, | 75 | sqywInfo: { type: Object, default: () => { } }, | ... | ... |
| ... | @@ -55,12 +55,12 @@ | ... | @@ -55,12 +55,12 @@ |
| 55 | import { ywPopupDialog } from "@/utils/popup.js"; | 55 | import { ywPopupDialog } from "@/utils/popup.js"; |
| 56 | import { datas, sendThis } from "../javascript/selectYgdj200.js"; | 56 | import { datas, sendThis } from "../javascript/selectYgdj200.js"; |
| 57 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 57 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; |
| 58 | import table from "@/utils/mixin/table"; | 58 | import ywsqTable from "@/utils/mixin/ywsqTable"; |
| 59 | import jump from "./mixin/jump"; | 59 | import jump from "./mixin/jump"; |
| 60 | import { selectYgdj200 } from "@/api/ywsq.js"; | 60 | import { selectYgdj200 } from "@/api/ywsq.js"; |
| 61 | import { startTogetherFlow } from "@/api/workFlow.js"; | 61 | import { startTogetherFlow } from "@/api/workFlow.js"; |
| 62 | export default { | 62 | export default { |
| 63 | mixins: [table, jump], | 63 | mixins: [ywsqTable, jump], |
| 64 | props: { | 64 | props: { |
| 65 | isJump: { type: Boolean, default: false }, | 65 | isJump: { type: Boolean, default: false }, |
| 66 | sqywInfo: { type: Object, default: () => { } }, | 66 | sqywInfo: { type: Object, default: () => { } }, | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-09-11 09:55:52 | 4 | * @LastEditTime: 2023-11-16 14:14:10 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <div class="from-clues"> | 7 | <div class="from-clues"> |
| ... | @@ -183,14 +183,14 @@ | ... | @@ -183,14 +183,14 @@ |
| 183 | //首次登记 | 183 | //首次登记 |
| 184 | import jump from "./mixin/jump"; | 184 | import jump from "./mixin/jump"; |
| 185 | import store from '@/store/index.js' | 185 | import store from '@/store/index.js' |
| 186 | import table from "@/utils/mixin/table"; | 186 | import ywsqTable from "@/utils/mixin/ywsqTable"; |
| 187 | import { ywPopupDialog } from "@/utils/popup.js"; | 187 | import { ywPopupDialog } from "@/utils/popup.js"; |
| 188 | import { datas, sendThis } from "../javascript/selectYgdy.js"; | 188 | import { datas, sendThis } from "../javascript/selectYgdy.js"; |
| 189 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 189 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; |
| 190 | import { selectYgdj200, selectYgdy } from "@/api/ywsq.js"; | 190 | import { selectYgdj200, selectYgdy } from "@/api/ywsq.js"; |
| 191 | import { startTogetherFlow } from "@/api/workFlow.js"; | 191 | import { startTogetherFlow } from "@/api/workFlow.js"; |
| 192 | export default { | 192 | export default { |
| 193 | mixins: [table, jump], | 193 | mixins: [ywsqTable, jump], |
| 194 | props: { | 194 | props: { |
| 195 | isJump: { type: Boolean, default: false }, | 195 | isJump: { type: Boolean, default: false }, |
| 196 | sqywInfo: { type: Object, default: () => { } }, | 196 | sqywInfo: { type: Object, default: () => { } }, | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-08-02 09:59:39 | 4 | * @LastEditTime: 2023-11-16 14:14:29 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <!-- 主体权利信息查询 --> | 7 | <!-- 主体权利信息查询 --> |
| ... | @@ -54,14 +54,14 @@ | ... | @@ -54,14 +54,14 @@ |
| 54 | <script> | 54 | <script> |
| 55 | import jump from "./mixin/jump"; | 55 | import jump from "./mixin/jump"; |
| 56 | import store from '@/store/index.js' | 56 | import store from '@/store/index.js' |
| 57 | import table from "@/utils/mixin/table"; | 57 | import ywsqTable from "@/utils/mixin/ywsqTable"; |
| 58 | import { ywPopupDialog } from "@/utils/popup.js"; | 58 | import { ywPopupDialog } from "@/utils/popup.js"; |
| 59 | import { datas, sendThis } from "../javascript/selectFwsyq.js"; | 59 | import { datas, sendThis } from "../javascript/selectFwsyq.js"; |
| 60 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 60 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; |
| 61 | import { selectFwsyq } from "@/api/ywsq.js"; | 61 | import { selectFwsyq } from "@/api/ywsq.js"; |
| 62 | import { startTogetherFlow } from "@/api/workFlow.js"; | 62 | import { startTogetherFlow } from "@/api/workFlow.js"; |
| 63 | export default { | 63 | export default { |
| 64 | mixins: [table, jump], | 64 | mixins: [ywsqTable, jump], |
| 65 | props: { | 65 | props: { |
| 66 | isJump: { type: Boolean, default: false }, | 66 | isJump: { type: Boolean, default: false }, |
| 67 | sqywInfo: { type: Object, default: () => { } }, | 67 | sqywInfo: { type: Object, default: () => { } }, | ... | ... |
| ... | @@ -53,14 +53,14 @@ | ... | @@ -53,14 +53,14 @@ |
| 53 | <script> | 53 | <script> |
| 54 | import jump from "./mixin/jump"; | 54 | import jump from "./mixin/jump"; |
| 55 | import store from '@/store/index.js' | 55 | import store from '@/store/index.js' |
| 56 | import table from "@/utils/mixin/table"; | 56 | import ywsqTable from "@/utils/mixin/ywsqTable"; |
| 57 | import { ywPopupDialog } from "@/utils/popup.js"; | 57 | import { ywPopupDialog } from "@/utils/popup.js"; |
| 58 | import { datas, sendThis } from "../javascript/selectH.js"; | 58 | import { datas, sendThis } from "../javascript/selectH.js"; |
| 59 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 59 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; |
| 60 | import { selectHQjdc } from "@/api/ywsq.js"; | 60 | import { selectHQjdc } from "@/api/ywsq.js"; |
| 61 | import { startTogetherFlow } from "@/api/workFlow.js"; | 61 | import { startTogetherFlow } from "@/api/workFlow.js"; |
| 62 | export default { | 62 | export default { |
| 63 | mixins: [table, jump], | 63 | mixins: [ywsqTable, jump], |
| 64 | props: { | 64 | props: { |
| 65 | isJump: { type: Boolean, default: false }, | 65 | isJump: { type: Boolean, default: false }, |
| 66 | sqywInfo: { type: Object, default: () => { } }, | 66 | sqywInfo: { type: Object, default: () => { } }, | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-07-31 09:39:40 | 4 | * @LastEditTime: 2023-11-16 14:16:58 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <!-- 主体权利信息查询 --> | 7 | <!-- 主体权利信息查询 --> |
| ... | @@ -55,12 +55,12 @@ | ... | @@ -55,12 +55,12 @@ |
| 55 | import { ywPopupDialog } from "@/utils/popup.js"; | 55 | import { ywPopupDialog } from "@/utils/popup.js"; |
| 56 | import { datas, sendThis } from "../javascript/selectYgdj200.js"; | 56 | import { datas, sendThis } from "../javascript/selectYgdj200.js"; |
| 57 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 57 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; |
| 58 | import table from "@/utils/mixin/table"; | 58 | import ywsqTable from "@/utils/mixin/ywsqTable"; |
| 59 | import jump from "./mixin/jump"; | 59 | import jump from "./mixin/jump"; |
| 60 | import { selectYgdj200 } from "@/api/ywsq.js"; | 60 | import { selectYgdj200 } from "@/api/ywsq.js"; |
| 61 | import { startBusinessFlow } from "@/api/workFlow.js"; | 61 | import { startBusinessFlow } from "@/api/workFlow.js"; |
| 62 | export default { | 62 | export default { |
| 63 | mixins: [table, jump], | 63 | mixins: [ywsqTable, jump], |
| 64 | props: { | 64 | props: { |
| 65 | isJump: { type: Boolean, default: false }, | 65 | isJump: { type: Boolean, default: false }, |
| 66 | sqywInfo: { type: Object, default: () => { } }, | 66 | sqywInfo: { type: Object, default: () => { } }, | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-09-21 08:59:20 | 4 | * @LastEditTime: 2023-11-16 14:17:20 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <!-- 主体权利信息查询 --> | 7 | <!-- 主体权利信息查询 --> |
| ... | @@ -55,12 +55,12 @@ | ... | @@ -55,12 +55,12 @@ |
| 55 | import { ywPopupDialog } from "@/utils/popup.js"; | 55 | import { ywPopupDialog } from "@/utils/popup.js"; |
| 56 | import { datas, sendThis } from "../javascript/selectYgdy.js"; | 56 | import { datas, sendThis } from "../javascript/selectYgdy.js"; |
| 57 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 57 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; |
| 58 | import table from "@/utils/mixin/table"; | 58 | import ywsqTable from "@/utils/mixin/ywsqTable"; |
| 59 | import jump from "./mixin/jump"; | 59 | import jump from "./mixin/jump"; |
| 60 | import { selectYgdy } from "@/api/ywsq.js"; | 60 | import { selectYgdy } from "@/api/ywsq.js"; |
| 61 | import { startBusinessFlow } from "@/api/workFlow.js"; | 61 | import { startBusinessFlow } from "@/api/workFlow.js"; |
| 62 | export default { | 62 | export default { |
| 63 | mixins: [table, jump], | 63 | mixins: [ywsqTable, jump], |
| 64 | props: { | 64 | props: { |
| 65 | isJump: { type: Boolean, default: false }, | 65 | isJump: { type: Boolean, default: false }, |
| 66 | sqywInfo: { type: Object, default: () => { } }, | 66 | sqywInfo: { type: Object, default: () => { } }, | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-10-16 13:45:25 | 4 | * @LastEditTime: 2023-11-16 14:17:34 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <!-- 主体权利信息查询 --> | 7 | <!-- 主体权利信息查询 --> |
| ... | @@ -55,12 +55,12 @@ | ... | @@ -55,12 +55,12 @@ |
| 55 | import { ywPopupDialog, popupCacel } from "@/utils/popup.js"; | 55 | import { ywPopupDialog, popupCacel } from "@/utils/popup.js"; |
| 56 | import { datas, sendThis } from "../javascript/selectAllHInfo.js"; | 56 | import { datas, sendThis } from "../javascript/selectAllHInfo.js"; |
| 57 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 57 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; |
| 58 | import table from "@/utils/mixin/table"; | 58 | import ywsqTable from "@/utils/mixin/ywsqTable"; |
| 59 | import jump from "./mixin/jump"; | 59 | import jump from "./mixin/jump"; |
| 60 | import { selectHQjdc } from "@/api/ywsq.js"; | 60 | import { selectHQjdc } from "@/api/ywsq.js"; |
| 61 | import { startBusinessFlow } from "@/api/workFlow.js"; | 61 | import { startBusinessFlow } from "@/api/workFlow.js"; |
| 62 | export default { | 62 | export default { |
| 63 | mixins: [table, jump], | 63 | mixins: [ywsqTable, jump], |
| 64 | props: { | 64 | props: { |
| 65 | isJump: { type: Boolean, default: false }, | 65 | isJump: { type: Boolean, default: false }, |
| 66 | sqywInfo: { type: Object, default: () => { } }, | 66 | sqywInfo: { type: Object, default: () => { } }, | ... | ... |
| ... | @@ -114,7 +114,7 @@ | ... | @@ -114,7 +114,7 @@ |
| 114 | <script> | 114 | <script> |
| 115 | import Vue from 'vue' | 115 | import Vue from 'vue' |
| 116 | import store from '@/store/index.js' | 116 | import store from '@/store/index.js' |
| 117 | import table from "@/utils/mixin/table"; | 117 | import ywsqTable from "@/utils/mixin/ywsqTable"; |
| 118 | //国有建设用地使用权/房屋使用权 | 118 | //国有建设用地使用权/房屋使用权 |
| 119 | import { ywPopupDialog } from "@/utils/popup.js"; | 119 | import { ywPopupDialog } from "@/utils/popup.js"; |
| 120 | import { datas, sendThis } from "../javascript/fwsyq.js"; | 120 | import { datas, sendThis } from "../javascript/fwsyq.js"; |
| ... | @@ -122,7 +122,7 @@ | ... | @@ -122,7 +122,7 @@ |
| 122 | import { selectOtherH, selectZrz, selectDz } from "@/api/ywsq.js"; | 122 | import { selectOtherH, selectZrz, selectDz } from "@/api/ywsq.js"; |
| 123 | import { startBusinessFlow, choiceBdcdy } from "@/api/workFlow.js"; | 123 | import { startBusinessFlow, choiceBdcdy } from "@/api/workFlow.js"; |
| 124 | export default { | 124 | export default { |
| 125 | mixins: [table, jump], | 125 | mixins: [ywsqTable, jump], |
| 126 | props: { | 126 | props: { |
| 127 | isJump: { type: Boolean, default: false }, | 127 | isJump: { type: Boolean, default: false }, |
| 128 | sqywInfo: { type: Object, default: () => { } }, | 128 | sqywInfo: { type: Object, default: () => { } }, | ... | ... |
-
Please register or sign in to post a comment