style:审批意见模块功能的完成
Showing
20 changed files
with
239 additions
and
203 deletions
... | @@ -11,7 +11,7 @@ | ... | @@ -11,7 +11,7 @@ |
11 | <template> | 11 | <template> |
12 | <div :class="['lb-table', customClass]"> | 12 | <div :class="['lb-table', customClass]"> |
13 | <el-table v-if="!heightNumSetting" class="table-fixed" :row-style="{ height: '50px' }" ref="elTable" :border='border' | 13 | <el-table v-if="!heightNumSetting" class="table-fixed" :row-style="{ height: '50px' }" ref="elTable" :border='border' |
14 | :row-class-name="tableRowClassName" :show-header='showHeader' @row-click="singleElection" v-bind="$attrs" | 14 | :row-class-name="tableRowClassName" :show-header='showHeader' @row-dblclick="singleElection" v-bind="$attrs" |
15 | :height="tableHeight" v-on="$listeners" :data="data" style="width: 100%" | 15 | :height="tableHeight" v-on="$listeners" :data="data" style="width: 100%" |
16 | :span-method="this.merge ? this.mergeMethod : this.spanMethod"> | 16 | :span-method="this.merge ? this.mergeMethod : this.spanMethod"> |
17 | <el-table-column width="45" align="center" v-if="isRadio"> | 17 | <el-table-column width="45" align="center" v-if="isRadio"> | ... | ... |
1 | /* | ||
2 | * @Description: | ||
3 | * @Autor: renchao | ||
4 | * @LastEditTime: 2023-05-04 11:14:25 | ||
5 | */ | ||
1 | const getters = { | 6 | const getters = { |
2 | sidebar: state => state.app.sidebar, | 7 | sidebar: state => state.app.sidebar, |
3 | size: state => state.app.size, | 8 | size: state => state.app.size, |
... | @@ -13,6 +18,8 @@ const getters = { | ... | @@ -13,6 +18,8 @@ const getters = { |
13 | addDict: state => state.dict.addDict, | 18 | addDict: state => state.dict.addDict, |
14 | dictData: state => state.dict.dictData, | 19 | dictData: state => state.dict.dictData, |
15 | djbxx: state => state.djbxx.djbxx, | 20 | djbxx: state => state.djbxx.djbxx, |
21 | // workflow | ||
16 | isRefresh: state => state.user.isRefresh, | 22 | isRefresh: state => state.user.isRefresh, |
23 | yjsqOptions: state => state.workflow.yjsqOptions | ||
17 | } | 24 | } |
18 | export default getters | 25 | export default getters | ... | ... |
src/store/modules/workflow.js
0 → 100644
1 | /* | ||
2 | * @Description: | ||
3 | * @Autor: renchao | ||
4 | * @LastEditTime: 2023-05-04 11:13:36 | ||
5 | */ | ||
6 | const state = { | ||
7 | yjsqOptions: {}, | ||
8 | } | ||
9 | |||
10 | const mutations = { | ||
11 | SET_OPTIONS: (state, data) => { | ||
12 | state.yjsqOptions = data | ||
13 | } | ||
14 | } | ||
15 | |||
16 | const actions = { | ||
17 | setOptions ({ commit }, data) { | ||
18 | commit('SET_OPTIONS', data) | ||
19 | } | ||
20 | } | ||
21 | |||
22 | export default { | ||
23 | namespaced: true, | ||
24 | state, | ||
25 | mutations, | ||
26 | actions | ||
27 | } |
1 | <template> | 1 | <template> |
2 | <div> | 2 | <div> |
3 | <dialogBox title="常用意见" :fullscreen="false" width="60%" isMain v-model="value" @closeDialog="closeDialog" | 3 | <el-button type="primary" native-type="submit" @click="openDialog">新增常用</el-button> |
4 | :isButton="false"> | 4 | <el-form ref="form" :model="form" :rules="rules" label-width="80px" v-show="addDialog"> |
5 | <el-button type="primary" native-type="submit" @click="openDialog()">新增常用</el-button> | ||
6 | <lb-table heightNumSetting :pagination="false" :column="columns" :data="tableData.data"> | ||
7 | </lb-table> | ||
8 | <div style="height:15px"></div> | ||
9 | </dialogBox> | ||
10 | <el-dialog title="新增意见" custom-class="dialogBox" :visible.sync="addDialog" width="50%" :append-to-body="true" | ||
11 | :modal="false"> | ||
12 | <el-form ref="form" :model="form" :rules="rules" label-width="80px"> | ||
13 | <el-form-item prop="commonOpinion"> | 5 | <el-form-item prop="commonOpinion"> |
14 | <div class="invalid-reson">常用意见:</div> | 6 | <div class="invalid-reson">常用意见:</div> |
15 | <el-input v-model="form.commonOpinion" placeholder="请输入常用意见" type="textarea" :rows="4"></el-input> | 7 | <el-input v-model="form.commonOpinion" placeholder="请输入常用意见" type="textarea" :rows="4"></el-input> |
16 | </el-form-item> | 8 | </el-form-item> |
17 | <el-form-item> | 9 | <el-form-item class="text-center"> |
18 | <div class="dialog-footer"> | ||
19 | <el-button @click="closeaddDiglog">取 消</el-button> | 10 | <el-button @click="closeaddDiglog">取 消</el-button> |
20 | <el-button type="primary" @click="addOpinion">确 定</el-button> | 11 | <el-button type="primary" @click="addOpinion">确 定</el-button> |
21 | </div> | ||
22 | </el-form-item> | 12 | </el-form-item> |
23 | </el-form> | 13 | </el-form> |
24 | </el-dialog> | 14 | <lb-table :heightNumSetting="true" |
15 | @row-dblclick="handleRowClick" | ||
16 | :pagination="false" :column="columns" :minHeight="300" :data="tableData.data"> | ||
17 | </lb-table> | ||
18 | <div style="height:15px"></div> | ||
19 | <div class="text-center"> | ||
20 | <el-button @click="$popupCacel">取消</el-button> | ||
21 | </div> | ||
25 | </div> | 22 | </div> |
26 | </template> | 23 | </template> |
27 | <script> | 24 | <script> |
28 | import { getUserCommonOpinion, addUserCommonOpinion, delUserCommonOpinion } from "@/api/fqsq.js" | 25 | import store from '@/store/index.js' |
29 | export default { | 26 | import { getUserCommonOpinion, addUserCommonOpinion, delUserCommonOpinion } from "@/api/fqsq.js" |
27 | export default { | ||
30 | components: {}, | 28 | components: {}, |
31 | props: { | 29 | props: { |
32 | value: { type: Boolean, default: false }, | 30 | formData: { |
31 | type: Object, | ||
32 | default: {} | ||
33 | } | ||
33 | }, | 34 | }, |
34 | data () { | 35 | data () { |
35 | return { | 36 | return { |
37 | addDialog: false, | ||
36 | columns: [ | 38 | columns: [ |
37 | { | 39 | { |
38 | label: '序号', | 40 | label: '序号', |
... | @@ -65,10 +67,9 @@ export default { | ... | @@ -65,10 +67,9 @@ export default { |
65 | }, | 67 | }, |
66 | rules: { | 68 | rules: { |
67 | commonOpinion: [ | 69 | commonOpinion: [ |
68 | { required: true, message: '请输入常用意见', trigger: 'blur' }, | 70 | { required: true, message: '请输入常用意见', trigger: 'blur' } |
69 | ], | 71 | ] |
70 | }, | 72 | } |
71 | addDialog: false, | ||
72 | } | 73 | } |
73 | }, | 74 | }, |
74 | mounted () { | 75 | mounted () { |
... | @@ -86,8 +87,9 @@ export default { | ... | @@ -86,8 +87,9 @@ export default { |
86 | if (valid) { | 87 | if (valid) { |
87 | addUserCommonOpinion({ commonOpinion: this.form.commonOpinion }).then(res => { | 88 | addUserCommonOpinion({ commonOpinion: this.form.commonOpinion }).then(res => { |
88 | if (res.code == 200) { | 89 | if (res.code == 200) { |
90 | this.$message.success("新增成功") | ||
89 | this.closeaddDiglog(); | 91 | this.closeaddDiglog(); |
90 | this.queryList() | 92 | this.getList() |
91 | } else { | 93 | } else { |
92 | this.$message.error(res.message) | 94 | this.$message.error(res.message) |
93 | } | 95 | } |
... | @@ -103,13 +105,16 @@ export default { | ... | @@ -103,13 +105,16 @@ export default { |
103 | }, | 105 | }, |
104 | //关闭新增弹窗 | 106 | //关闭新增弹窗 |
105 | closeaddDiglog () { | 107 | closeaddDiglog () { |
106 | this.addDialog = false; | 108 | this.addDialog = false |
107 | this.$refs['form'].resetFields(); | 109 | this.$refs['form'].resetFields(); |
108 | }, | 110 | }, |
111 | handleRowClick (item) { | ||
112 | this.useCommonOpinion(item) | ||
113 | }, | ||
109 | //使用常用意见 | 114 | //使用常用意见 |
110 | useCommonOpinion (item) { | 115 | useCommonOpinion (item) { |
111 | this.$parent.useOpinion(item.opinion); | 116 | store.dispatch('workflow/setOptions', item.opinion); |
112 | this.$emit("input", false); | 117 | this.$popupCacel() |
113 | }, | 118 | }, |
114 | //删除常用意见 | 119 | //删除常用意见 |
115 | deleteOpinion (item) { | 120 | deleteOpinion (item) { |
... | @@ -136,23 +141,22 @@ export default { | ... | @@ -136,23 +141,22 @@ export default { |
136 | }, | 141 | }, |
137 | //关闭列表弹窗 | 142 | //关闭列表弹窗 |
138 | closeDialog () { | 143 | closeDialog () { |
139 | this.$emit("input", false); | ||
140 | this.form.commonOpinion = ""; | 144 | this.form.commonOpinion = ""; |
141 | } | 145 | } |
142 | } | 146 | } |
143 | } | 147 | } |
144 | </script> | 148 | </script> |
145 | <style scoped lang='scss'> | 149 | <style scoped lang='scss'> |
146 | @import "~@/styles/mixin.scss"; | 150 | @import "~@/styles/mixin.scss"; |
147 | @import "~@/styles/dialogBox.scss"; | 151 | @import "~@/styles/dialogBox.scss"; |
148 | 152 | ||
149 | .invalid-reson { | 153 | .invalid-reson { |
150 | margin-bottom: 10px; | 154 | margin-bottom: 10px; |
151 | } | 155 | } |
152 | 156 | ||
153 | .dialog-footer { | 157 | .dialog-footer { |
154 | margin-top: 10px; | 158 | margin-top: 10px; |
155 | display: flex; | 159 | display: flex; |
156 | justify-content: flex-end; | 160 | justify-content: flex-end; |
157 | } | 161 | } |
158 | </style> | 162 | </style> |
... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
... | @@ -18,7 +18,7 @@ | ... | @@ -18,7 +18,7 @@ |
18 | </el-col> | 18 | </el-col> |
19 | </el-row> | 19 | </el-row> |
20 | 20 | ||
21 | <lb-table border :column="tableData.columns" :data="tableData.data" :pagination="false" :calcHeight="300"> | 21 | <lb-table :column="tableData.columns" :data="tableData.data" :pagination="false" :calcHeight="300"> |
22 | </lb-table> | 22 | </lb-table> |
23 | <el-row> | 23 | <el-row> |
24 | <el-col :span="6"> | 24 | <el-col :span="6"> |
... | @@ -57,7 +57,7 @@ | ... | @@ -57,7 +57,7 @@ |
57 | import store from '@/store/index.js' | 57 | import store from '@/store/index.js' |
58 | import table from "@/utils/mixin/table"; | 58 | import table from "@/utils/mixin/table"; |
59 | import { getUnclaimedBdcqz, issueCertificate } from "@/api/bdcqz.js"; | 59 | import { getUnclaimedBdcqz, issueCertificate } from "@/api/bdcqz.js"; |
60 | import { datas } from "../javascript/fzxxdata"; | 60 | import { datas } from "../../javascript/fzxxdata"; |
61 | import { log } from 'bpmn-js-token-simulation'; | 61 | import { log } from 'bpmn-js-token-simulation'; |
62 | export default { | 62 | export default { |
63 | props: { | 63 | props: { | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-05-04 10:12:07 | 4 | * @LastEditTime: 2023-05-04 10:29:45 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="from-clues"> | 7 | <div class="from-clues"> |
... | @@ -71,7 +71,7 @@ | ... | @@ -71,7 +71,7 @@ |
71 | }) | 71 | }) |
72 | }, | 72 | }, |
73 | zslqClick () { | 73 | zslqClick () { |
74 | this.$popupDialog("不动产权证领取", "workflow/components/zslq", {}, '80%', true); | 74 | this.$popupDialog("不动产权证领取", "workflow/components/dialog/zslq", {}, '80%', true); |
75 | } | 75 | } |
76 | } | 76 | } |
77 | } | 77 | } | ... | ... |
... | @@ -44,20 +44,14 @@ | ... | @@ -44,20 +44,14 @@ |
44 | </el-form> | 44 | </el-form> |
45 | </div> | 45 | </div> |
46 | <el-empty v-if="isNoData" description="暂无数据"></el-empty> | 46 | <el-empty v-if="isNoData" description="暂无数据"></el-empty> |
47 | <commonDialog v-model="commonDialog" /> | ||
48 | </div> | 47 | </div> |
49 | </template> | 48 | </template> |
50 | <script> | 49 | <script> |
51 | import { getSpyjList, saveSpyj, saveSpyjBySlsq } from "@/api/fqsq.js"; | 50 | import { getSpyjList, saveSpyj, saveSpyjBySlsq } from "@/api/fqsq.js"; |
52 | import { popupDialog } from "@/utils/popup.js"; | ||
53 | import commonDialog from "./commonOpinion.vue"; | ||
54 | import { mapGetters } from 'vuex' | 51 | import { mapGetters } from 'vuex' |
55 | export default { | 52 | export default { |
56 | components: { commonDialog }, | ||
57 | props: { | ||
58 | }, | ||
59 | computed: { | 53 | computed: { |
60 | ...mapGetters(['userData']) | 54 | ...mapGetters(['userData', 'yjsqOptions']) |
61 | }, | 55 | }, |
62 | data () { | 56 | data () { |
63 | return { | 57 | return { |
... | @@ -75,10 +69,18 @@ | ... | @@ -75,10 +69,18 @@ |
75 | ], | 69 | ], |
76 | }, | 70 | }, |
77 | tableData: [], | 71 | tableData: [], |
78 | propsParam: {}, | 72 | propsParam: {} |
79 | commonDialog: false | ||
80 | } | 73 | } |
81 | }, | 74 | }, |
75 | watch: { | ||
76 | yjsqOptions: { | ||
77 | handler (val) { | ||
78 | this.ruleForm.shyj = val | ||
79 | }, | ||
80 | deep: true, | ||
81 | immediate: true | ||
82 | }, | ||
83 | }, | ||
82 | mounted () { | 84 | mounted () { |
83 | this.propsParam = this.$attrs; | 85 | this.propsParam = this.$attrs; |
84 | if (this.$route.query.viewtype) { | 86 | if (this.$route.query.viewtype) { |
... | @@ -87,9 +89,6 @@ | ... | @@ -87,9 +89,6 @@ |
87 | this.list(); | 89 | this.list(); |
88 | }, | 90 | }, |
89 | methods: { | 91 | methods: { |
90 | handleClick () { | ||
91 | console.log(1) | ||
92 | }, | ||
93 | //审批意见数据初始化 | 92 | //审批意见数据初始化 |
94 | list () { | 93 | list () { |
95 | let that = this | 94 | let that = this |
... | @@ -123,7 +122,7 @@ | ... | @@ -123,7 +122,7 @@ |
123 | }, | 122 | }, |
124 | //打开常用意见列表弹窗 | 123 | //打开常用意见列表弹窗 |
125 | commonOpinion () { | 124 | commonOpinion () { |
126 | this.commonDialog = true | 125 | this.$popupDialog("常用意见", "workflow/components/dialog/commonOpinion", {}, "70%", true) |
127 | }, | 126 | }, |
128 | //使用常用意见 | 127 | //使用常用意见 |
129 | useOpinion (opinion) { | 128 | useOpinion (opinion) { |
... | @@ -195,7 +194,6 @@ | ... | @@ -195,7 +194,6 @@ |
195 | /deep/.el-form-item__content { | 194 | /deep/.el-form-item__content { |
196 | display: block; | 195 | display: block; |
197 | text-align: left; | 196 | text-align: left; |
198 | padding-left: 15px; | ||
199 | text-indent: 10px; | 197 | text-indent: 10px; |
200 | } | 198 | } |
201 | .opinion_item { | 199 | .opinion_item { | ... | ... |
... | @@ -33,7 +33,7 @@ | ... | @@ -33,7 +33,7 @@ |
33 | </div> | 33 | </div> |
34 | <!-- 表格 --> | 34 | <!-- 表格 --> |
35 | <div class="from-clues-content loadingtext"> | 35 | <div class="from-clues-content loadingtext"> |
36 | <lb-table ref="table" @row-click="handleRowClick" :page-size="pageData.pageSize" :calcHeight="300" | 36 | <lb-table ref="table" @row-dblclick="handleRowClick" :page-size="pageData.pageSize" :calcHeight="300" |
37 | :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange" | 37 | :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange" |
38 | @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="tableData.columns" | 38 | @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="tableData.columns" |
39 | :data="tableData.data"> | 39 | :data="tableData.data"> |
... | @@ -46,14 +46,14 @@ | ... | @@ -46,14 +46,14 @@ |
46 | </div> | 46 | </div> |
47 | </template> | 47 | </template> |
48 | <script> | 48 | <script> |
49 | //查封登记 | 49 | //查封登记 |
50 | import store from '@/store/index.js' | 50 | import store from '@/store/index.js' |
51 | import { datas, sendThis } from "../javascript/cfdj.js"; | 51 | import { datas, sendThis } from "../javascript/cfdj.js"; |
52 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 52 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; |
53 | import table from "@/utils/mixin/table"; | 53 | import table from "@/utils/mixin/table"; |
54 | import jump from "../components/mixin/jump"; | 54 | import jump from "../components/mixin/jump"; |
55 | import { selectCfdj, startBusinessFlow, choiceBdcdy } from "@/api/ywbl.js"; | 55 | import { selectCfdj, startBusinessFlow, choiceBdcdy } from "@/api/ywbl.js"; |
56 | export default { | 56 | export default { |
57 | props: { | 57 | props: { |
58 | isJump: { type: Boolean, default: false }, | 58 | isJump: { type: Boolean, default: false }, |
59 | sqywInfo: { type: Object, default: () => { } }, | 59 | sqywInfo: { type: Object, default: () => { } }, |
... | @@ -140,9 +140,9 @@ export default { | ... | @@ -140,9 +140,9 @@ export default { |
140 | this.bdcdysz = val | 140 | this.bdcdysz = val |
141 | } | 141 | } |
142 | }, | 142 | }, |
143 | }; | 143 | }; |
144 | </script> | 144 | </script> |
145 | <style scoped lang="scss"> | 145 | <style scoped lang="scss"> |
146 | @import "~@/styles/mixin.scss"; | 146 | @import "~@/styles/mixin.scss"; |
147 | @import "~@/styles/public.scss"; | 147 | @import "~@/styles/public.scss"; |
148 | </style> | 148 | </style> | ... | ... |
... | @@ -42,7 +42,7 @@ | ... | @@ -42,7 +42,7 @@ |
42 | </div> | 42 | </div> |
43 | <!-- 表格 --> | 43 | <!-- 表格 --> |
44 | <div class="from-clues-content loadingtext"> | 44 | <div class="from-clues-content loadingtext"> |
45 | <lb-table ref="table" @row-click="handleRowClick" :page-size="pageData.pageSize" :calcHeight="300" | 45 | <lb-table ref="table" @row-dblclick="handleRowClick" :page-size="pageData.pageSize" :calcHeight="300" |
46 | :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange" | 46 | :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange" |
47 | @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="tableData.columns" | 47 | @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="tableData.columns" |
48 | :data="tableData.data"> | 48 | :data="tableData.data"> |
... | @@ -55,13 +55,13 @@ | ... | @@ -55,13 +55,13 @@ |
55 | </div> | 55 | </div> |
56 | </template> | 56 | </template> |
57 | <script> | 57 | <script> |
58 | import store from '@/store/index.js' | 58 | import store from '@/store/index.js' |
59 | import { datas, sendThis } from "../javascript/diyaq.js"; | 59 | import { datas, sendThis } from "../javascript/diyaq.js"; |
60 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 60 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; |
61 | import table from "@/utils/mixin/table"; | 61 | import table from "@/utils/mixin/table"; |
62 | import jump from "../components/mixin/jump"; | 62 | import jump from "../components/mixin/jump"; |
63 | import { selectDiyaq, startBusinessFlow } from "@/api/ywbl.js"; | 63 | import { selectDiyaq, startBusinessFlow } from "@/api/ywbl.js"; |
64 | export default { | 64 | export default { |
65 | mixins: [table, jump], | 65 | mixins: [table, jump], |
66 | props: { | 66 | props: { |
67 | isJump: { type: Boolean, default: false }, | 67 | isJump: { type: Boolean, default: false }, |
... | @@ -130,9 +130,9 @@ export default { | ... | @@ -130,9 +130,9 @@ export default { |
130 | this.bdcdysz = val; | 130 | this.bdcdysz = val; |
131 | }, | 131 | }, |
132 | }, | 132 | }, |
133 | }; | 133 | }; |
134 | </script> | 134 | </script> |
135 | <style scoped lang="scss"> | 135 | <style scoped lang="scss"> |
136 | @import "~@/styles/mixin.scss"; | 136 | @import "~@/styles/mixin.scss"; |
137 | @import "~@/styles/public.scss"; | 137 | @import "~@/styles/public.scss"; |
138 | </style> | 138 | </style> | ... | ... |
... | @@ -56,7 +56,7 @@ | ... | @@ -56,7 +56,7 @@ |
56 | </el-form> | 56 | </el-form> |
57 | </div> | 57 | </div> |
58 | <div class="from-clues-content"> | 58 | <div class="from-clues-content"> |
59 | <lb-table ref="table" @row-click="handleRowClick" :page-size="pageData.pageSize" :heightNum="400" | 59 | <lb-table ref="table" @row-dblclick="handleRowClick" :page-size="pageData.pageSize" :heightNum="400" |
60 | :current-page.sync="pageData.currentPage" :total="zrztableData.total" @size-change="handleSizeChange" | 60 | :current-page.sync="pageData.currentPage" :total="zrztableData.total" @size-change="handleSizeChange" |
61 | @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="zrztableData.columns" | 61 | @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="zrztableData.columns" |
62 | :data="zrztableData.data"> | 62 | :data="zrztableData.data"> |
... | @@ -107,7 +107,7 @@ | ... | @@ -107,7 +107,7 @@ |
107 | </el-form> | 107 | </el-form> |
108 | </div> | 108 | </div> |
109 | <div class="from-clues-content loadingtext"> | 109 | <div class="from-clues-content loadingtext"> |
110 | <lb-table ref="table" @row-click="handleRowClick" :page-size="pageData.pageSize" :calcHeight="300" | 110 | <lb-table ref="table" @row-dblclick="handleRowClick" :page-size="pageData.pageSize" :calcHeight="300" |
111 | :current-page.sync="pageData.currentPage" :total="dztableData.total" @size-change="handleSizeChange" | 111 | :current-page.sync="pageData.currentPage" :total="dztableData.total" @size-change="handleSizeChange" |
112 | @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="dztableData.columns" | 112 | @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="dztableData.columns" |
113 | :data="dztableData.data"> | 113 | :data="dztableData.data"> |
... | @@ -121,14 +121,14 @@ | ... | @@ -121,14 +121,14 @@ |
121 | </div> | 121 | </div> |
122 | </template> | 122 | </template> |
123 | <script> | 123 | <script> |
124 | import store from '@/store/index.js' | 124 | import store from '@/store/index.js' |
125 | //国有建设用地使用权/房屋使用权 | 125 | //国有建设用地使用权/房屋使用权 |
126 | import { datas, sendThis } from "../javascript/fwsyq.js"; | 126 | import { datas, sendThis } from "../javascript/fwsyq.js"; |
127 | // import { datasduo, sendThisduo } from "../javascript/fwsyqduo.js"; | 127 | // import { datasduo, sendThisduo } from "../javascript/fwsyqduo.js"; |
128 | import table from "@/utils/mixin/table"; | 128 | import table from "@/utils/mixin/table"; |
129 | import jump from "@/views/ywbl/ywsq/components/mixin/jump"; | 129 | import jump from "@/views/ywbl/ywsq/components/mixin/jump"; |
130 | import { selectScBdcdy, startBusinessFlow, choiceBdcdy, selectOtherH, selectZrz, selectDz } from "@/api/ywbl.js"; | 130 | import { selectScBdcdy, startBusinessFlow, choiceBdcdy, selectOtherH, selectZrz, selectDz } from "@/api/ywbl.js"; |
131 | export default { | 131 | export default { |
132 | mixins: [table, jump], | 132 | mixins: [table, jump], |
133 | props: { | 133 | props: { |
134 | isJump: { type: Boolean, default: false }, | 134 | isJump: { type: Boolean, default: false }, |
... | @@ -275,9 +275,9 @@ export default { | ... | @@ -275,9 +275,9 @@ export default { |
275 | }) | 275 | }) |
276 | } | 276 | } |
277 | } | 277 | } |
278 | } | 278 | } |
279 | </script> | 279 | </script> |
280 | <style scoped lang="scss"> | 280 | <style scoped lang="scss"> |
281 | @import "~@/styles/mixin.scss"; | 281 | @import "~@/styles/mixin.scss"; |
282 | @import "~@/styles/public.scss"; | 282 | @import "~@/styles/public.scss"; |
283 | </style> | 283 | </style> | ... | ... |
... | @@ -27,7 +27,7 @@ | ... | @@ -27,7 +27,7 @@ |
27 | </div> | 27 | </div> |
28 | <!-- 表格 --> | 28 | <!-- 表格 --> |
29 | <div class="from-clues-content loadingtext"> | 29 | <div class="from-clues-content loadingtext"> |
30 | <lb-table ref="table" @row-click="handleRowClick" :page-size="pageData.pageSize" :calcHeight="300" | 30 | <lb-table ref="table" @row-dblclick="handleRowClick" :page-size="pageData.pageSize" :calcHeight="300" |
31 | :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange" | 31 | :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange" |
32 | @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="tableData.columns" | 32 | @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="tableData.columns" |
33 | :data="tableData.data"> | 33 | :data="tableData.data"> |
... | @@ -40,14 +40,14 @@ | ... | @@ -40,14 +40,14 @@ |
40 | </div> | 40 | </div> |
41 | </template> | 41 | </template> |
42 | <script> | 42 | <script> |
43 | //首次登记 | 43 | //首次登记 |
44 | import store from '@/store/index.js' | 44 | import store from '@/store/index.js' |
45 | import { datas, sendThis } from "../javascript/nydsyq100.js"; | 45 | import { datas, sendThis } from "../javascript/nydsyq100.js"; |
46 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 46 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; |
47 | import table from "@/utils/mixin/table"; | 47 | import table from "@/utils/mixin/table"; |
48 | import jump from "../components/mixin/jump"; | 48 | import jump from "../components/mixin/jump"; |
49 | import { startBusinessFlow, selectZdjbxx } from "@/api/ywbl.js"; | 49 | import { startBusinessFlow, selectZdjbxx } from "@/api/ywbl.js"; |
50 | export default { | 50 | export default { |
51 | mixins: [table, jump], | 51 | mixins: [table, jump], |
52 | props: { | 52 | props: { |
53 | isJump: { type: Boolean, default: false }, | 53 | isJump: { type: Boolean, default: false }, |
... | @@ -115,10 +115,10 @@ export default { | ... | @@ -115,10 +115,10 @@ export default { |
115 | this.bdcdysz = val; | 115 | this.bdcdysz = val; |
116 | } | 116 | } |
117 | } | 117 | } |
118 | } | 118 | } |
119 | </script> | 119 | </script> |
120 | <style scoped lang="scss"> | 120 | <style scoped lang="scss"> |
121 | @import "~@/styles/mixin.scss"; | 121 | @import "~@/styles/mixin.scss"; |
122 | @import "~@/styles/public.scss"; | 122 | @import "~@/styles/public.scss"; |
123 | </style> | 123 | </style> |
124 | 124 | ... | ... |
... | @@ -27,7 +27,7 @@ | ... | @@ -27,7 +27,7 @@ |
27 | </div> | 27 | </div> |
28 | <!-- 表格 --> | 28 | <!-- 表格 --> |
29 | <div class="from-clues-content loadingtext"> | 29 | <div class="from-clues-content loadingtext"> |
30 | <lb-table ref="table" @row-click="handleRowClick" :page-size="pageData.pageSize" :calcHeight="300" | 30 | <lb-table ref="table" @row-dblclick="handleRowClick" :page-size="pageData.pageSize" :calcHeight="300" |
31 | :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange" | 31 | :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange" |
32 | @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="tableData.columns" | 32 | @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="tableData.columns" |
33 | :data="tableData.data"> | 33 | :data="tableData.data"> |
... | @@ -40,14 +40,14 @@ | ... | @@ -40,14 +40,14 @@ |
40 | </div> | 40 | </div> |
41 | </template> | 41 | </template> |
42 | <script> | 42 | <script> |
43 | //首次登记 | 43 | //首次登记 |
44 | import store from '@/store/index.js' | 44 | import store from '@/store/index.js' |
45 | import { datas, sendThis } from "../javascript/selectJsydsyq.js"; | 45 | import { datas, sendThis } from "../javascript/selectJsydsyq.js"; |
46 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 46 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; |
47 | import table from "@/utils/mixin/table"; | 47 | import table from "@/utils/mixin/table"; |
48 | import jump from "../components/mixin/jump"; | 48 | import jump from "../components/mixin/jump"; |
49 | import { startBusinessFlow, selectNydsyqQlxx } from "@/api/ywbl.js"; | 49 | import { startBusinessFlow, selectNydsyqQlxx } from "@/api/ywbl.js"; |
50 | export default { | 50 | export default { |
51 | mixins: [table, jump], | 51 | mixins: [table, jump], |
52 | props: { | 52 | props: { |
53 | isJump: { type: Boolean, default: false }, | 53 | isJump: { type: Boolean, default: false }, |
... | @@ -122,9 +122,9 @@ export default { | ... | @@ -122,9 +122,9 @@ export default { |
122 | }) | 122 | }) |
123 | } | 123 | } |
124 | } | 124 | } |
125 | } | 125 | } |
126 | </script> | 126 | </script> |
127 | <style scoped lang="scss"> | 127 | <style scoped lang="scss"> |
128 | @import "~@/styles/mixin.scss"; | 128 | @import "~@/styles/mixin.scss"; |
129 | @import "~@/styles/public.scss"; | 129 | @import "~@/styles/public.scss"; |
130 | </style> | 130 | </style> | ... | ... |
... | @@ -42,7 +42,7 @@ | ... | @@ -42,7 +42,7 @@ |
42 | </div> | 42 | </div> |
43 | <!-- 表格 --> | 43 | <!-- 表格 --> |
44 | <div class="from-clues-content loadingtext"> | 44 | <div class="from-clues-content loadingtext"> |
45 | <lb-table ref="table" @row-click="handleRowClick" :page-size="pageData.pageSize" :calcHeight="300" | 45 | <lb-table ref="table" @row-dblclick="handleRowClick" :page-size="pageData.pageSize" :calcHeight="300" |
46 | :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange" | 46 | :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange" |
47 | @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="tableData.columns" | 47 | @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="tableData.columns" |
48 | :data="tableData.data"> | 48 | :data="tableData.data"> |
... | @@ -55,14 +55,14 @@ | ... | @@ -55,14 +55,14 @@ |
55 | </div> | 55 | </div> |
56 | </template> | 56 | </template> |
57 | <script> | 57 | <script> |
58 | import store from '@/store/index.js' | 58 | import store from '@/store/index.js' |
59 | import { datas, sendThis } from "../javascript/selecBdcql.js"; | 59 | import { datas, sendThis } from "../javascript/selecBdcql.js"; |
60 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 60 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; |
61 | import table from "@/utils/mixin/table"; | 61 | import table from "@/utils/mixin/table"; |
62 | import jump from "./mixin/jump"; | 62 | import jump from "./mixin/jump"; |
63 | import { selectQlxx, startBusinessFlow } from "@/api/ywbl.js"; | 63 | import { selectQlxx, startBusinessFlow } from "@/api/ywbl.js"; |
64 | import { getQllxByBsmSqyw } from "@/api/system.js"; | 64 | import { getQllxByBsmSqyw } from "@/api/system.js"; |
65 | export default { | 65 | export default { |
66 | mixins: [table, jump], | 66 | mixins: [table, jump], |
67 | props: { | 67 | props: { |
68 | isJump: { type: Boolean, default: false }, | 68 | isJump: { type: Boolean, default: false }, |
... | @@ -144,9 +144,9 @@ export default { | ... | @@ -144,9 +144,9 @@ export default { |
144 | this.bdcdysz = val; | 144 | this.bdcdysz = val; |
145 | }, | 145 | }, |
146 | }, | 146 | }, |
147 | }; | 147 | }; |
148 | </script> | 148 | </script> |
149 | <style scoped lang="scss"> | 149 | <style scoped lang="scss"> |
150 | @import "~@/styles/mixin.scss"; | 150 | @import "~@/styles/mixin.scss"; |
151 | @import "~@/styles/public.scss"; | 151 | @import "~@/styles/public.scss"; |
152 | </style> | 152 | </style> | ... | ... |
... | @@ -34,7 +34,7 @@ | ... | @@ -34,7 +34,7 @@ |
34 | </div> | 34 | </div> |
35 | <!-- 表格 --> | 35 | <!-- 表格 --> |
36 | <div class="from-clues-content loadingtext"> | 36 | <div class="from-clues-content loadingtext"> |
37 | <lb-table ref="table" @row-click="handleRowClick" :page-size="pageData.pageSize" :calcHeight="300" | 37 | <lb-table ref="table" @row-dblclick="handleRowClick" :page-size="pageData.pageSize" :calcHeight="300" |
38 | :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange" | 38 | :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange" |
39 | @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="tableData.columns" | 39 | @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="tableData.columns" |
40 | :data="tableData.data"> | 40 | :data="tableData.data"> |
... | @@ -47,13 +47,13 @@ | ... | @@ -47,13 +47,13 @@ |
47 | </div> | 47 | </div> |
48 | </template> | 48 | </template> |
49 | <script> | 49 | <script> |
50 | import store from '@/store/index.js' | 50 | import store from '@/store/index.js' |
51 | import { datas, sendThis } from "../javascript/selectAllHInfo.js"; | 51 | import { datas, sendThis } from "../javascript/selectAllHInfo.js"; |
52 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 52 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; |
53 | import table from "@/utils/mixin/table"; | 53 | import table from "@/utils/mixin/table"; |
54 | import jump from "./mixin/jump"; | 54 | import jump from "./mixin/jump"; |
55 | import { selectAllHInfo, startBusinessFlow } from "@/api/ywbl.js"; | 55 | import { selectAllHInfo, startBusinessFlow } from "@/api/ywbl.js"; |
56 | export default { | 56 | export default { |
57 | mixins: [table, jump], | 57 | mixins: [table, jump], |
58 | props: { | 58 | props: { |
59 | isJump: { type: Boolean, default: false }, | 59 | isJump: { type: Boolean, default: false }, |
... | @@ -121,9 +121,9 @@ export default { | ... | @@ -121,9 +121,9 @@ export default { |
121 | this.bdcdysz = val; | 121 | this.bdcdysz = val; |
122 | }, | 122 | }, |
123 | }, | 123 | }, |
124 | }; | 124 | }; |
125 | </script> | 125 | </script> |
126 | <style scoped lang="scss"> | 126 | <style scoped lang="scss"> |
127 | @import "~@/styles/mixin.scss"; | 127 | @import "~@/styles/mixin.scss"; |
128 | @import "~@/styles/public.scss"; | 128 | @import "~@/styles/public.scss"; |
129 | </style> | 129 | </style> | ... | ... |
... | @@ -34,7 +34,7 @@ | ... | @@ -34,7 +34,7 @@ |
34 | </div> | 34 | </div> |
35 | <!-- 表格 --> | 35 | <!-- 表格 --> |
36 | <div class="from-clues-content loadingtext"> | 36 | <div class="from-clues-content loadingtext"> |
37 | <lb-table ref="table" @row-click="handleRowClick" :page-size="pageData.pageSize" :calcHeight="300" | 37 | <lb-table ref="table" @row-dblclick="handleRowClick" :page-size="pageData.pageSize" :calcHeight="300" |
38 | :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange" | 38 | :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange" |
39 | @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="tableData.columns" | 39 | @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="tableData.columns" |
40 | :data="tableData.data"> | 40 | :data="tableData.data"> |
... | @@ -47,13 +47,13 @@ | ... | @@ -47,13 +47,13 @@ |
47 | </div> | 47 | </div> |
48 | </template> | 48 | </template> |
49 | <script> | 49 | <script> |
50 | import store from '@/store/index.js' | 50 | import store from '@/store/index.js' |
51 | import { datas, sendThis } from "../javascript/selectFwsyq.js"; | 51 | import { datas, sendThis } from "../javascript/selectFwsyq.js"; |
52 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 52 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; |
53 | import table from "@/utils/mixin/table"; | 53 | import table from "@/utils/mixin/table"; |
54 | import jump from "./mixin/jump"; | 54 | import jump from "./mixin/jump"; |
55 | import { selectFwsyq, startBusinessFlow } from "@/api/ywbl.js"; | 55 | import { selectFwsyq, startBusinessFlow } from "@/api/ywbl.js"; |
56 | export default { | 56 | export default { |
57 | mixins: [table, jump], | 57 | mixins: [table, jump], |
58 | props: { | 58 | props: { |
59 | isJump: { type: Boolean, default: false }, | 59 | isJump: { type: Boolean, default: false }, |
... | @@ -121,9 +121,9 @@ export default { | ... | @@ -121,9 +121,9 @@ export default { |
121 | this.bdcdysz = val; | 121 | this.bdcdysz = val; |
122 | }, | 122 | }, |
123 | }, | 123 | }, |
124 | }; | 124 | }; |
125 | </script> | 125 | </script> |
126 | <style scoped lang="scss"> | 126 | <style scoped lang="scss"> |
127 | @import "~@/styles/mixin.scss"; | 127 | @import "~@/styles/mixin.scss"; |
128 | @import "~@/styles/public.scss"; | 128 | @import "~@/styles/public.scss"; |
129 | </style> | 129 | </style> | ... | ... |
... | @@ -41,7 +41,7 @@ | ... | @@ -41,7 +41,7 @@ |
41 | </div> | 41 | </div> |
42 | <!-- 表格 --> | 42 | <!-- 表格 --> |
43 | <div class="from-clues-content loadingtext"> | 43 | <div class="from-clues-content loadingtext"> |
44 | <lb-table ref="table" @row-click="handleRowClick" :page-size="pageData.pageSize" :calcHeight="300" | 44 | <lb-table ref="table" @row-dblclick="handleRowClick" :page-size="pageData.pageSize" :calcHeight="300" |
45 | :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange" | 45 | :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange" |
46 | @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="tableData.columns" | 46 | @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="tableData.columns" |
47 | :data="tableData.data"> | 47 | :data="tableData.data"> |
... | @@ -54,14 +54,14 @@ | ... | @@ -54,14 +54,14 @@ |
54 | </div> | 54 | </div> |
55 | </template> | 55 | </template> |
56 | <script> | 56 | <script> |
57 | //首次登记 | 57 | //首次登记 |
58 | import store from '@/store/index.js' | 58 | import store from '@/store/index.js' |
59 | import { datas, sendThis } from "../javascript/selectJsydsyq.js"; | 59 | import { datas, sendThis } from "../javascript/selectJsydsyq.js"; |
60 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 60 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; |
61 | import table from "@/utils/mixin/table"; | 61 | import table from "@/utils/mixin/table"; |
62 | import jump from "./mixin/jump"; | 62 | import jump from "./mixin/jump"; |
63 | import { startBusinessFlow, selectJsydQlxx } from "@/api/ywbl.js"; | 63 | import { startBusinessFlow, selectJsydQlxx } from "@/api/ywbl.js"; |
64 | export default { | 64 | export default { |
65 | mixins: [table, jump], | 65 | mixins: [table, jump], |
66 | props: { | 66 | props: { |
67 | isJump: { type: Boolean, default: false }, | 67 | isJump: { type: Boolean, default: false }, |
... | @@ -140,9 +140,9 @@ export default { | ... | @@ -140,9 +140,9 @@ export default { |
140 | }) | 140 | }) |
141 | } | 141 | } |
142 | } | 142 | } |
143 | } | 143 | } |
144 | </script> | 144 | </script> |
145 | <style scoped lang="scss"> | 145 | <style scoped lang="scss"> |
146 | @import "~@/styles/mixin.scss"; | 146 | @import "~@/styles/mixin.scss"; |
147 | @import "~@/styles/public.scss"; | 147 | @import "~@/styles/public.scss"; |
148 | </style> | 148 | </style> | ... | ... |
... | @@ -27,7 +27,7 @@ | ... | @@ -27,7 +27,7 @@ |
27 | </div> | 27 | </div> |
28 | <!-- 表格 --> | 28 | <!-- 表格 --> |
29 | <div class="from-clues-content loadingtext"> | 29 | <div class="from-clues-content loadingtext"> |
30 | <lb-table ref="table" @row-click="handleRowClick" :page-size="pageData.pageSize" :calcHeight="300" | 30 | <lb-table ref="table" @row-dblclick="handleRowClick" :page-size="pageData.pageSize" :calcHeight="300" |
31 | :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange" | 31 | :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange" |
32 | @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="tableData.columns" | 32 | @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="tableData.columns" |
33 | :data="tableData.data"> | 33 | :data="tableData.data"> |
... | @@ -40,14 +40,14 @@ | ... | @@ -40,14 +40,14 @@ |
40 | </div> | 40 | </div> |
41 | </template> | 41 | </template> |
42 | <script> | 42 | <script> |
43 | //首次登记 | 43 | //首次登记 |
44 | import store from '@/store/index.js' | 44 | import store from '@/store/index.js' |
45 | import { datas, sendThis } from "../javascript/selectQjzdjbxx.js"; | 45 | import { datas, sendThis } from "../javascript/selectQjzdjbxx.js"; |
46 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 46 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; |
47 | import table from "@/utils/mixin/table"; | 47 | import table from "@/utils/mixin/table"; |
48 | import jump from "./mixin/jump"; | 48 | import jump from "./mixin/jump"; |
49 | import { startBusinessFlow, selectZdjbxx } from "@/api/ywbl.js"; | 49 | import { startBusinessFlow, selectZdjbxx } from "@/api/ywbl.js"; |
50 | export default { | 50 | export default { |
51 | mixins: [table, jump], | 51 | mixins: [table, jump], |
52 | props: { | 52 | props: { |
53 | isJump: { type: Boolean, default: false }, | 53 | isJump: { type: Boolean, default: false }, |
... | @@ -115,10 +115,10 @@ export default { | ... | @@ -115,10 +115,10 @@ export default { |
115 | this.bdcdysz = val; | 115 | this.bdcdysz = val; |
116 | }, | 116 | }, |
117 | }, | 117 | }, |
118 | }; | 118 | }; |
119 | </script> | 119 | </script> |
120 | <style scoped lang="scss"> | 120 | <style scoped lang="scss"> |
121 | @import "~@/styles/mixin.scss"; | 121 | @import "~@/styles/mixin.scss"; |
122 | @import "~@/styles/public.scss"; | 122 | @import "~@/styles/public.scss"; |
123 | </style> | 123 | </style> |
124 | 124 | ... | ... |
... | @@ -34,7 +34,7 @@ | ... | @@ -34,7 +34,7 @@ |
34 | </div> | 34 | </div> |
35 | <!-- 表格 --> | 35 | <!-- 表格 --> |
36 | <div class="from-clues-content loadingtext"> | 36 | <div class="from-clues-content loadingtext"> |
37 | <lb-table ref="table" @row-click="handleRowClick" :page-size="pageData.pageSize" :calcHeight="300" | 37 | <lb-table ref="table" @row-dblclick="handleRowClick" :page-size="pageData.pageSize" :calcHeight="300" |
38 | :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange" | 38 | :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange" |
39 | @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="tableData.columns" | 39 | @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="tableData.columns" |
40 | :data="tableData.data"> | 40 | :data="tableData.data"> |
... | @@ -47,13 +47,13 @@ | ... | @@ -47,13 +47,13 @@ |
47 | </div> | 47 | </div> |
48 | </template> | 48 | </template> |
49 | <script> | 49 | <script> |
50 | import store from '@/store/index.js' | 50 | import store from '@/store/index.js' |
51 | import { datas, sendThis } from "../javascript/selectYgdj100.js"; | 51 | import { datas, sendThis } from "../javascript/selectYgdj100.js"; |
52 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 52 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; |
53 | import table from "@/utils/mixin/table"; | 53 | import table from "@/utils/mixin/table"; |
54 | import jump from "./mixin/jump"; | 54 | import jump from "./mixin/jump"; |
55 | import { selectYgdj100, startBusinessFlow } from "@/api/ywbl.js"; | 55 | import { selectYgdj100, startBusinessFlow } from "@/api/ywbl.js"; |
56 | export default { | 56 | export default { |
57 | mixins: [table, jump], | 57 | mixins: [table, jump], |
58 | props: { | 58 | props: { |
59 | isJump: { type: Boolean, default: false }, | 59 | isJump: { type: Boolean, default: false }, |
... | @@ -121,9 +121,9 @@ export default { | ... | @@ -121,9 +121,9 @@ export default { |
121 | this.bdcdysz = val; | 121 | this.bdcdysz = val; |
122 | }, | 122 | }, |
123 | }, | 123 | }, |
124 | }; | 124 | }; |
125 | </script> | 125 | </script> |
126 | <style scoped lang="scss"> | 126 | <style scoped lang="scss"> |
127 | @import "~@/styles/mixin.scss"; | 127 | @import "~@/styles/mixin.scss"; |
128 | @import "~@/styles/public.scss"; | 128 | @import "~@/styles/public.scss"; |
129 | </style> | 129 | </style> | ... | ... |
... | @@ -34,7 +34,7 @@ | ... | @@ -34,7 +34,7 @@ |
34 | </div> | 34 | </div> |
35 | <!-- 表格 --> | 35 | <!-- 表格 --> |
36 | <div class="from-clues-content loadingtext"> | 36 | <div class="from-clues-content loadingtext"> |
37 | <lb-table ref="table" @row-click="handleRowClick" :page-size="pageData.pageSize" :calcHeight="300" | 37 | <lb-table ref="table" @row-dblclick="handleRowClick" :page-size="pageData.pageSize" :calcHeight="300" |
38 | :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange" | 38 | :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange" |
39 | @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="tableData.columns" | 39 | @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="tableData.columns" |
40 | :data="tableData.data"> | 40 | :data="tableData.data"> |
... | @@ -47,13 +47,13 @@ | ... | @@ -47,13 +47,13 @@ |
47 | </div> | 47 | </div> |
48 | </template> | 48 | </template> |
49 | <script> | 49 | <script> |
50 | import store from '@/store/index.js' | 50 | import store from '@/store/index.js' |
51 | import { datas, sendThis } from "../javascript/selectYgdj200.js"; | 51 | import { datas, sendThis } from "../javascript/selectYgdj200.js"; |
52 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 52 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; |
53 | import table from "@/utils/mixin/table"; | 53 | import table from "@/utils/mixin/table"; |
54 | import jump from "./mixin/jump"; | 54 | import jump from "./mixin/jump"; |
55 | import { selectYgdj200, startBusinessFlow } from "@/api/ywbl.js"; | 55 | import { selectYgdj200, startBusinessFlow } from "@/api/ywbl.js"; |
56 | export default { | 56 | export default { |
57 | mixins: [table, jump], | 57 | mixins: [table, jump], |
58 | props: { | 58 | props: { |
59 | isJump: { type: Boolean, default: false }, | 59 | isJump: { type: Boolean, default: false }, |
... | @@ -121,9 +121,9 @@ export default { | ... | @@ -121,9 +121,9 @@ export default { |
121 | this.bdcdysz = val; | 121 | this.bdcdysz = val; |
122 | }, | 122 | }, |
123 | }, | 123 | }, |
124 | }; | 124 | }; |
125 | </script> | 125 | </script> |
126 | <style scoped lang="scss"> | 126 | <style scoped lang="scss"> |
127 | @import "~@/styles/mixin.scss"; | 127 | @import "~@/styles/mixin.scss"; |
128 | @import "~@/styles/public.scss"; | 128 | @import "~@/styles/public.scss"; |
129 | </style> | 129 | </style> | ... | ... |
... | @@ -34,7 +34,7 @@ | ... | @@ -34,7 +34,7 @@ |
34 | </div> | 34 | </div> |
35 | <!-- 表格 --> | 35 | <!-- 表格 --> |
36 | <div class="from-clues-content loadingtext"> | 36 | <div class="from-clues-content loadingtext"> |
37 | <lb-table ref="table" @row-click="handleRowClick" :page-size="pageData.pageSize" :calcHeight="300" | 37 | <lb-table ref="table" @row-dblclick="handleRowClick" :page-size="pageData.pageSize" :calcHeight="300" |
38 | :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange" | 38 | :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange" |
39 | @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="tableData.columns" | 39 | @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="tableData.columns" |
40 | :data="tableData.data"> | 40 | :data="tableData.data"> |
... | @@ -47,13 +47,13 @@ | ... | @@ -47,13 +47,13 @@ |
47 | </div> | 47 | </div> |
48 | </template> | 48 | </template> |
49 | <script> | 49 | <script> |
50 | import store from '@/store/index.js' | 50 | import store from '@/store/index.js' |
51 | import { datas, sendThis } from "../javascript/selectYgdy.js"; | 51 | import { datas, sendThis } from "../javascript/selectYgdy.js"; |
52 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | 52 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; |
53 | import table from "@/utils/mixin/table"; | 53 | import table from "@/utils/mixin/table"; |
54 | import jump from "./mixin/jump"; | 54 | import jump from "./mixin/jump"; |
55 | import { selectYgdy, startBusinessFlow } from "@/api/ywbl.js"; | 55 | import { selectYgdy, startBusinessFlow } from "@/api/ywbl.js"; |
56 | export default { | 56 | export default { |
57 | mixins: [table, jump], | 57 | mixins: [table, jump], |
58 | props: { | 58 | props: { |
59 | isJump: { type: Boolean, default: false }, | 59 | isJump: { type: Boolean, default: false }, |
... | @@ -121,9 +121,9 @@ export default { | ... | @@ -121,9 +121,9 @@ export default { |
121 | this.bdcdysz = val; | 121 | this.bdcdysz = val; |
122 | }, | 122 | }, |
123 | }, | 123 | }, |
124 | }; | 124 | }; |
125 | </script> | 125 | </script> |
126 | <style scoped lang="scss"> | 126 | <style scoped lang="scss"> |
127 | @import "~@/styles/mixin.scss"; | 127 | @import "~@/styles/mixin.scss"; |
128 | @import "~@/styles/public.scss"; | 128 | @import "~@/styles/public.scss"; |
129 | </style> | 129 | </style> | ... | ... |
-
Please register or sign in to post a comment