69150733 by xiaomiao

--no commit message

2 parents bebe63cc f500eb48
Showing 31 changed files with 513 additions and 359 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 import Vue from 'vue'
1 import router from './router' 2 import router from './router'
2 import store from './store' 3 import store from './store'
3 import { getMenuInfo } from '@/api/user' 4 import { getMenuInfo } from '@/api/user'
...@@ -8,6 +9,7 @@ import Cookies from 'js-cookie' ...@@ -8,6 +9,7 @@ import Cookies from 'js-cookie'
8 NProgress.configure({ showSpinner: false }) // NProgress Configuration 9 NProgress.configure({ showSpinner: false }) // NProgress Configuration
9 10
10 router.beforeEach(async (to, from, next) => { 11 router.beforeEach(async (to, from, next) => {
12 Vue.prototype.$currentRoute = to
11 NProgress.start() 13 NProgress.start()
12 document.title = getPageTitle(to.meta.title) 14 document.title = getPageTitle(to.meta.title)
13 let hasAddDict = store.state.dict.addDict 15 let hasAddDict = store.state.dict.addDict
......
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
......
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 }
...@@ -47,7 +47,7 @@ ...@@ -47,7 +47,7 @@
47 47
48 .el-dialog__header { 48 .el-dialog__header {
49 margin-bottom: 10px; 49 margin-bottom: 10px;
50 color: #4A4A4A; 50 color: #FFFFFF;
51 background-color: #FCFDFD; 51 background-color: #FCFDFD;
52 border-bottom: 1px solid #E4EBF4; 52 border-bottom: 1px solid #E4EBF4;
53 } 53 }
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
3 </lb-table> 3 </lb-table>
4 </template> 4 </template>
5 <script> 5 <script>
6 import addQlr from './addQlr.vue' 6 import addQlr from './dialog/addQlr.vue'
7 import { mapGetters } from 'vuex' 7 import { mapGetters } from 'vuex'
8 export default { 8 export default {
9 components: { 9 components: {
......
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
......
1 <!--
2 * @Description:
3 * @Autor: renchao
4 * @LastEditTime: 2023-05-04 14:13:28
5 -->
1 <template> 6 <template>
2 <div> 7 <lb-table :column="tableData.columns" heightNumSetting :pagination="false" :key="key" :data="tableData.data">
3 <lb-table :column="tableData.columns" border :maxHeight="300" heightNumSetting :pagination="false" :key="key" :data="tableData.data">
4 </lb-table> 8 </lb-table>
5 </div>
6 </template> 9 </template>
7 <script> 10 <script>
8 import { mapGetters } from 'vuex' 11 import { mapGetters } from 'vuex'
9 import { getSzRecordList } from "@/api/bdcqz.js"; 12 import { getSzRecordList } from "@/api/bdcqz.js";
10 import table from "@/utils/mixin/table"; 13 import table from "@/utils/mixin/table";
11 import { datas } from "../javascript/szxxdata"; 14 import { datas } from "../../javascript/szxxdata";
12 export default { 15 export default {
13 components: { 16 components: {
14 17
15 }, 18 },
...@@ -21,7 +24,7 @@ export default { ...@@ -21,7 +24,7 @@ export default {
21 formData: { 24 formData: {
22 type: Object, 25 type: Object,
23 default: {} 26 default: {}
24 }, 27 }
25 }, 28 },
26 data () { 29 data () {
27 return { 30 return {
...@@ -36,20 +39,20 @@ export default { ...@@ -36,20 +39,20 @@ export default {
36 }, 39 },
37 } 40 }
38 }, 41 },
39 mounted() { 42 mounted () {
40 this.query() 43 this.query()
41 }, 44 },
42 methods: { 45 methods: {
43 query(){ 46 query () {
44 getSzRecordList({bsmBdcqz: this.formData.bsmBdcqz}).then(res => { 47 getSzRecordList({ bsmBdcqz: this.formData.bsmBdcqz }).then(res => {
45 if(res.code == 200){ 48 if (res.code == 200) {
46 this.tableData.data = res.result; 49 this.tableData.data = res.result;
50 this.key++
47 } 51 }
48 }) 52 })
49 } 53 }
50 } 54 }
51 } 55 }
52 </script> 56 </script>
53 <style scoped lang='scss'> 57 <style scoped lang='scss'>
54
55 </style> 58 </style>
...\ No newline at end of file ...\ No newline at end of file
......
1 <template> 1 <template>
2 <dialogBox
3 title="不动产权证书"
4 width="60%"
5 v-model="myValue"
6 @closeDialog="closeDialog"
7 @submitForm="handleSubmit"
8 >
9 <div>
10 <div> 2 <div>
3 <div class="zsdy-content loadingtext">
11 <el-form 4 <el-form
12 :model="ruleForm" 5 :model="ruleForm"
13 :rules="rules" 6 :rules="rules"
14 ref="ruleForm" 7 ref="ruleForm"
15 label-width="120px" 8 label-width="120px">
16 >
17 <el-form-item label="印刷序列号:" prop="ysxlh"> 9 <el-form-item label="印刷序列号:" prop="ysxlh">
18 <el-select v-model="ruleForm.ysxlh" placeholder="请选择"> 10 <el-select v-model="ruleForm.ysxlh" placeholder="请选择">
19 <el-option 11 <el-option
20 v-for="item in ysxlh" 12 v-for="item in ysxlh"
21 :key="item.ysxlh" 13 :key="item.ysxlh"
22 :label="item.ysxlh" 14 :label="item.ysxlh"
23 :value="item.ysxlh" 15 :value="item.ysxlh">
24 >
25 </el-option> 16 </el-option>
26 </el-select> 17 </el-select>
27 </el-form-item> 18 </el-form-item>
28 </el-form> 19 </el-form>
20 <img :src="previewImage" style="width: 100%">
21 </div>
22 <div class="text-center paddingtop10">
23 <el-button @click="$popupCacel">取消</el-button>
24 <el-button type="primary" @click="handleSubmit">确定</el-button>
29 </div> 25 </div>
30 <img :src="previewImage">
31
32 </div> 26 </div>
33 </dialogBox>
34 </template> 27 </template>
35 28
36 <script> 29 <script>
37 import { datas } from "../javascript/zsyl.js"; 30 import store from '@/store/index.js'
38 import { readYsxlh, certificate, bdcqzPreview } from "@/api/bdcqz.js"; 31 import { datas } from "../../javascript/zsyl.js";
39 export default { 32 import { readYsxlh, certificate, bdcqzPreview } from "@/api/bdcqz.js";
40 components: {}, 33 export default {
41 props: { 34 props: {
42 value: { type: Boolean, default: false }, 35 formData: {
43 bdcqz: { type: Object, default: () => {} }, 36 type: Object,
37 default: () => {
38 return {}
39 }
40 }
44 }, 41 },
45 data() { 42 data () {
46 return { 43 return {
47 myValue: this.value,
48 //印刷序列号集合 44 //印刷序列号集合
49 ysxlh: [], 45 ysxlh: [],
50 //证书预览图片 46 //证书预览图片
...@@ -56,47 +52,40 @@ export default { ...@@ -56,47 +52,40 @@ export default {
56 szmc: "不动产权证书", 52 szmc: "不动产权证书",
57 bdcqzlx: "", 53 bdcqzlx: "",
58 szzh: "", 54 szzh: "",
59 ysxlh: "", 55 ysxlh: ""
60 }, 56 },
61 rules: { 57 rules: {
62 ysxlh: [ 58 ysxlh: [
63 { required: true, message: "请选择印刷序列号", trigger: "change" }, 59 { required: true, message: "请选择印刷序列号", trigger: "change" }
64 ], 60 ]
65 }, 61 }
66 };
67 },
68 watch: {
69 value(val) {
70 this.myValue = val;
71 if (val) {
72 this.columns = datas.columns();
73 this.ysxlhList();
74 } 62 }
75 }, 63 },
64 created () {
65 this.columns = datas.columns()
66 this.ysxlhList()
67 this.getBdcqzPreview()
76 }, 68 },
77 methods: { 69 methods: {
78 //获取印刷序列号列表 70 //获取印刷序列号列表
79 ysxlhList() { 71 ysxlhList () {
80 readYsxlh({ zslx: this.bdcqz.bdcqzlx }).then((res) => { 72 readYsxlh({ zslx: this.formData.bdcqz.bdcqzlx }).then((res) => {
81 if (res.code === 200) { 73 if (res.code === 200) {
82 this.ysxlh = res.result; 74 this.ysxlh = res.result;
83 } 75 }
84 }); 76 })
85 },
86 closeDialog() {
87 this.$emit("input", false);
88 }, 77 },
89 handleSubmit() { 78 handleSubmit () {
90 this.savePrintRecord(); 79 this.savePrintRecord()
91 }, 80 },
92 //获取证书内容 81 //获取证书内容
93 getRowValue(code) { 82 getRowValue (code) {
94 var value = this.bdcqz[code]; 83 var value = this.bdcqz[code];
95 return value; 84 return value;
96 }, 85 },
97 getBdcqzPreview() { 86 getBdcqzPreview () {
98 this.$startLoading() 87 this.$startLoading()
99 bdcqzPreview(this.bdcqz).then(res => { 88 bdcqzPreview(this.formData.bdcqz).then(res => {
100 this.$endLoading() 89 this.$endLoading()
101 let blob = new Blob([res]); 90 let blob = new Blob([res]);
102 let url = window.URL.createObjectURL(blob); 91 let url = window.URL.createObjectURL(blob);
...@@ -104,40 +93,46 @@ export default { ...@@ -104,40 +93,46 @@ export default {
104 }) 93 })
105 }, 94 },
106 //保存打印记录 95 //保存打印记录
107 savePrintRecord() { 96 savePrintRecord () {
108 this.ruleForm.bsmBdcqz = this.bdcqz.bsmBdcqz; 97 this.ruleForm.bsmBdcqz = this.formData.bdcqz.bsmBdcqz;
109 this.ruleForm.bdcqzlx = this.bdcqz.bdcqzlx; 98 this.ruleForm.bdcqzlx = this.formData.bdcqz.bdcqzlx;
110 this.ruleForm.szzh = this.bdcqz.bdcqzh; 99 this.ruleForm.szzh = this.formData.bdcqz.bdcqzh;
111 certificate(this.ruleForm).then((res) => { 100 certificate(this.ruleForm).then((res) => {
112 if (res.code === 200) { 101 if (res.code === 200) {
113 this.$emit("input", false); 102 this.$popupCacel()
114 this.$message.success("提交成功"); 103 this.$message.success("提交成功")
115 //刷新列表 104 //刷新列表
116 this.$parent.list(); 105 store.dispatch('user/refreshPage', true);
117 } else { 106 } else {
118 this.$message.error(res.message); 107 this.$message.error(res.message)
119 } 108 }
120 }); 109 });
121 }, 110 },
122 }, 111 },
123 }; 112 };
124 </script> 113 </script>
125 <style scoped lang="scss"> 114 <style scoped lang="scss">
126 @import "~@/styles/mixin.scss"; 115 @import "~@/styles/mixin.scss";
127 116 .zsdy-content {
128 .aaaa { 117 height: 80vh;
118 overflow-y: scroll;
119 }
120 .paddingtop10 {
121 padding-top: 10px;
122 }
123 .aaaa {
129 width: 1024px; 124 width: 1024px;
130 height: 739px; 125 height: 739px;
131 font-family: KaiTi; 126 font-family: KaiTi;
132 font-weight: 700; 127 font-weight: 700;
133 } 128 }
134 .bdcdjzm { 129 .bdcdjzm {
135 width: 1123px; 130 width: 1123px;
136 height: 794px; 131 height: 794px;
137 font-family: KaiTi; 132 font-family: KaiTi;
138 font-weight: 700; 133 font-weight: 700;
139 } 134 }
140 .zmyl-box { 135 .zmyl-box {
141 //position: relative; 136 //position: relative;
142 position: absolute; 137 position: absolute;
143 height: 600px; 138 height: 600px;
...@@ -145,14 +140,14 @@ export default { ...@@ -145,14 +140,14 @@ export default {
145 margin-left: 775px; 140 margin-left: 775px;
146 font-size: 16px; 141 font-size: 16px;
147 justify-content: space-between; 142 justify-content: space-between;
148 } 143 }
149 .bdcqzh { 144 .bdcqzh {
150 height: 70px; 145 height: 70px;
151 left: 0; 146 left: 0;
152 bottom: 0; 147 bottom: 0;
153 font-size: 18px; 148 font-size: 18px;
154 } 149 }
155 .zsyl-box { 150 .zsyl-box {
156 display: flex; 151 display: flex;
157 justify-content: space-between; 152 justify-content: space-between;
158 // padding: 20px; 153 // padding: 20px;
...@@ -230,11 +225,11 @@ export default { ...@@ -230,11 +225,11 @@ export default {
230 /deep/.el-table__row { 225 /deep/.el-table__row {
231 background: #fafbe5 !important; 226 background: #fafbe5 !important;
232 } 227 }
233 } 228 }
234 .middle_padding { 229 .middle_padding {
235 padding-bottom: 10px; 230 padding-bottom: 10px;
236 } 231 }
237 .zsyl-button { 232 .zsyl-button {
238 text-align: center; 233 text-align: center;
239 margin-top: 20px; 234 margin-top: 20px;
240 .operation_button { 235 .operation_button {
...@@ -245,5 +240,5 @@ export default { ...@@ -245,5 +240,5 @@ export default {
245 color: white; 240 color: white;
246 background-color: rgb(0, 121, 254); 241 background-color: rgb(0, 121, 254);
247 } 242 }
248 } 243 }
249 </style> 244 </style>
......
1 <template>
2 <el-form :model="ruleForm" :rules="rules" ref="ruleForm" label-width="100px">
3 <el-row>
4 <el-col :span="8">
5 <el-form-item label="发证人姓名">
6 <el-input v-model="ruleForm.fzrmc" disabled></el-input>
7 </el-form-item>
8 </el-col>
9 <el-col :span="8">
10 <el-form-item label="发证时间">
11 <el-input v-model="ruleForm.fzsj" disabled></el-input>
12 </el-form-item>
13 </el-col>
14 <el-col :span="8">
15 <el-form-item label="发证数量">
16 <el-input v-model="ruleForm.fzsl" disabled></el-input>
17 </el-form-item>
18 </el-col>
19 </el-row>
20
21 <lb-table :column="tableData.columns" :data="tableData.data" :pagination="false" :calcHeight="300">
22 </lb-table>
23 <el-row>
24 <el-col :span="6">
25 <el-form-item label="领证人" prop="lzrxm">
26 <el-input v-model="ruleForm.lzrxm"></el-input>
27 </el-form-item>
28 </el-col>
29 <el-col :span="6">
30 <el-form-item label="证件类型" prop="lzrzjlb">
31 <el-select v-model="ruleForm.lzrzjlb" filterable clearable placeholder="请选择">
32 <el-option v-for="item in zjzlData" :key="item.dcode" :label="item.dname" :value="item.dcode">
33 </el-option>
34 </el-select>
35 </el-form-item>
36 </el-col>
37 <el-col :span="6">
38 <el-form-item label="证件号" prop="lzrzjh">
39 <el-input v-model="ruleForm.lzrzjh"></el-input>
40 </el-form-item>
41 </el-col>
42 <el-col :span="6">
43 <el-form-item label="领证人电话" prop="lzrdh">
44 <el-input v-model="ruleForm.lzrdh"></el-input>
45 </el-form-item>
46 </el-col>
47 </el-row>
48 <el-form-item class="text-center">
49 <el-button @click="$popupCacel">取消</el-button>
50 <el-button type="primary" @click="handleSubmit">确定</el-button>
51 </el-form-item>
52 </el-form>
53 </template>
54
55 <script>
56 import Vue from 'vue'
57 import store from '@/store/index.js'
58 import table from "@/utils/mixin/table";
59 import { getUnclaimedBdcqz, issueCertificate } from "@/api/bdcqz.js";
60 import { datas } from "../../javascript/fzxxdata";
61 import { log } from 'bpmn-js-token-simulation';
62 export default {
63 props: {
64 formData: {
65 type: Object,
66 default: () => {
67 return {}
68 }
69 }
70 },
71 mixins: [table],
72 data () {
73 return {
74 zjzlData: store.getters.dictData['A30'],
75 ruleForm: {
76 fzrmc: '',
77 fzsj: '',
78 fzsl: '',
79 bdcqzList: [],
80 lzrxm: '',
81 lzrzjlb: '',
82 lzrzjh: '',
83 lzrdh: ''
84 },
85 rules: {
86 lzrxm: [
87 { required: true, message: '请输入领证人', trigger: 'blur' }
88 ],
89 lzrzjlb: [
90 { required: true, message: '请选择证件类型', trigger: 'change' }
91 ],
92 lzrzjh: [
93 { required: true, message: '请输入证件号', trigger: 'blur' }
94 ],
95 lzrdh: [
96 { required: true, message: '请输入电话号码', trigger: 'blur' }
97 ],
98 },
99 tableData: {
100 total: 0,
101 columns: datas.columns().lzgrid,
102 data: [],
103 },
104 }
105 },
106 mounted () {
107 this.$nextTick(() => {
108 this.loadGrid()
109 })
110 },
111 methods: {
112 //列表初始化
113 loadGrid () {
114 getUnclaimedBdcqz({ bsmSlsq: Vue.prototype.$currentRoute.query.bsmSlsq }).then(res => {
115 if (res.code === 200) {
116 this.tableData.data = res.result.list;
117 this.ruleForm.fzrmc = res.result.fzrmc
118 this.ruleForm.fzsj = res.result.fzsj
119 this.ruleForm.fzsl = res.result.fzsl
120
121 }
122 })
123 },
124 handleSubmit () {
125 this.$refs.ruleForm.validate(valid => {
126 if (valid) {
127 issueCertificate(this.ruleForm).then(res => {
128 if (res.code == 200) {
129 this.$message.success('保存成功');
130 this.$parent.queryClick();
131 this.$emit("input", false);
132 } else {
133 this.$message.error(res.message)
134 }
135 })
136 } else {
137 this.$message.error("请填写领取人信息!")
138 return false;
139 }
140 })
141 }
142 }
143 }
144 </script>
145 <style scoped lang="scss">
146 @import "~@/styles/mixin.scss";
147 </style>
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
11 </template> 11 </template>
12 12
13 <script> 13 <script>
14 import { datas } from "../javascript/zsyl.js"; 14 import { datas } from "../../javascript/zsyl.js";
15 import { getSlsqBdcqzList, bdcqzPreview } from "@/api/bdcqz.js" 15 import { getSlsqBdcqzList, bdcqzPreview } from "@/api/bdcqz.js"
16 export default { 16 export default {
17 name: "zsyl", 17 name: "zsyl",
......
1 <!--
2 * @Description:
3 * @Autor: renchao
4 * @LastEditTime: 2023-05-04 10:29:45
5 -->
1 <template> 6 <template>
2 <div class="from-clues"> 7 <div class="from-clues">
3 <!-- 发证信息 --> 8 <!-- 发证信息 -->
...@@ -22,7 +27,7 @@ ...@@ -22,7 +27,7 @@
22 <el-col :span="6" class="btnColRight"> 27 <el-col :span="6" class="btnColRight">
23 <el-form-item> 28 <el-form-item>
24 <el-button type="primary" icon="el-icon-search" @click="handleSearch">查询</el-button> 29 <el-button type="primary" icon="el-icon-search" @click="handleSearch">查询</el-button>
25 <el-button type="primary" icon="el-icon-search" @click="zslqClick()">证书领取</el-button> 30 <el-button type="primary" icon="el-icon-search" @click="zslqClick">证书领取</el-button>
26 </el-form-item> 31 </el-form-item>
27 </el-col> 32 </el-col>
28 </el-row> 33 </el-row>
...@@ -32,21 +37,14 @@ ...@@ -32,21 +37,14 @@
32 <lb-table border :column="tableData.columns" :heightNum="210" :data="tableData.data" :pagination="false"> 37 <lb-table border :column="tableData.columns" :heightNum="210" :data="tableData.data" :pagination="false">
33 </lb-table> 38 </lb-table>
34 </div> 39 </div>
35 <zslqDialog v-model="dialogVisible" @update:dialogVisible="dialogVisibles"></zslqDialog>
36 </div> 40 </div>
37 </template> 41 </template>
38 <script> 42 <script>
39 import table from "@/utils/mixin/table"; 43 import table from "@/utils/mixin/table";
40 import zslqDialog from "./zslq.vue"; 44 import { getCertificateList } from "@/api/bdcqz.js";
41 import { getCertificateList } from "@/api/bdcqz.js"; 45 import { datas } from "../javascript/fzxxdata";
42 import { datas } from "../javascript/fzxxdata"; 46 export default {
43 export default {
44 mixins: [table], 47 mixins: [table],
45 components: {
46 zslqDialog
47 },
48 props: {
49 },
50 data () { 48 data () {
51 return { 49 return {
52 ruleForm: { 50 ruleForm: {
...@@ -60,7 +58,7 @@ export default { ...@@ -60,7 +58,7 @@ export default {
60 columns: datas.columns().fzgrid, 58 columns: datas.columns().fzgrid,
61 data: [], 59 data: [],
62 }, 60 },
63 dialogVisible:false 61 dialogVisible: false
64 } 62 }
65 }, 63 },
66 methods: { 64 methods: {
...@@ -72,16 +70,12 @@ export default { ...@@ -72,16 +70,12 @@ export default {
72 } 70 }
73 }) 71 })
74 }, 72 },
75 zslqClick(){ 73 zslqClick () {
76 this.dialogVisible = true; 74 this.$popupDialog("不动产权证领取", "workflow/components/dialog/zslq", {}, '80%', true);
77 }, 75 }
78 //子组件传 过来的 数据
79 dialogVisibles(v){
80 this.dialogVisible = v;
81 } 76 }
82 } 77 }
83 }
84 </script> 78 </script>
85 <style scoped lang='scss'> 79 <style scoped lang='scss'>
86 @import "~@/styles/public.scss"; 80 @import "~@/styles/public.scss";
87 </style> 81 </style>
...\ No newline at end of file ...\ No newline at end of file
......
1 <template> 1 <template>
2 <div> 2 <div>
3 <lb-table :column="column" :maxHeight="300" heightNumSetting :pagination="false" :key="key" :data="tableDataList"> 3 <lb-table :column="column" :pagination="false" :key="key" :data="tableDataList">
4 </lb-table> 4 </lb-table>
5 <addQlr v-model="dialog" :details="details" :showButton="showButton" @updateDetail="handleupdateDetail" /> 5 <addQlr v-model="dialog" :details="details" :showButton="showButton" @updateDetail="handleupdateDetail" />
6 </div> 6 </div>
7 </template> 7 </template>
8 <script> 8 <script>
9 import addQlr from './addQlr.vue' 9 import addQlr from './dialog/addQlr.vue'
10 import { mapGetters } from 'vuex' 10 import { mapGetters } from 'vuex'
11 export default { 11 export default {
12 components: { 12 components: {
13 addQlr 13 addQlr
14 }, 14 },
...@@ -162,13 +162,13 @@ export default { ...@@ -162,13 +162,13 @@ export default {
162 this.$emit('upDateQlrxxList', this.tableDataList) 162 this.$emit('upDateQlrxxList', this.tableDataList)
163 } 163 }
164 } 164 }
165 this.key++
165 }, 166 },
166
167 // 新增 167 // 新增
168 addClick () { 168 addClick () {
169 if(this.gyfs == '0' && this.tableDataList.length > 0){ 169 if (this.gyfs == '0' && this.tableDataList.length > 0) {
170 this.$message.warning("当前共有方式为单独所有,无法添加多个权利人") 170 this.$message.warning("当前共有方式为单独所有,无法添加多个权利人")
171 }else{ 171 } else {
172 this.dialog = true 172 this.dialog = true
173 this.isaddupdate = true 173 this.isaddupdate = true
174 } 174 }
...@@ -211,8 +211,5 @@ export default { ...@@ -211,8 +211,5 @@ export default {
211 this.details = row 211 this.details = row
212 } 212 }
213 } 213 }
214 } 214 }
215 </script> 215 </script>
216 <style scoped lang='scss'>
217
218 </style>
......
...@@ -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 {
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
3 </lb-table> 3 </lb-table>
4 </template> 4 </template>
5 <script> 5 <script>
6 import addQlr from './addQlr.vue' 6 import addQlr from './dialog/addQlr.vue'
7 import { mapGetters } from 'vuex' 7 import { mapGetters } from 'vuex'
8 export default { 8 export default {
9 components: { 9 components: {
......
...@@ -32,7 +32,6 @@ ...@@ -32,7 +32,6 @@
32 <div class="text color_red"> 32 <div class="text color_red">
33 <span>{{ item.syqx }}</span> 33 <span>{{ item.syqx }}</span>
34 </div> 34 </div>
35 <!-- <div class="top_line middle_margin"></div> -->
36 <div class="text color_iray"> 35 <div class="text color_iray">
37 <span>印刷序列号:{{ item.ysxlh }}</span> 36 <span>印刷序列号:{{ item.ysxlh }}</span>
38 </div> 37 </div>
...@@ -65,16 +64,13 @@ ...@@ -65,16 +64,13 @@
65 </div> 64 </div>
66 </div> 65 </div>
67 </el-dialog> 66 </el-dialog>
68 <bdcqzPrint ref="bdcqzPrint" v-model="dialog" :bdcqz="bdcqz" />
69 <el-empty description="暂无数据" v-if="tableData.length == 0"></el-empty> 67 <el-empty description="暂无数据" v-if="tableData.length == 0"></el-empty>
70 </div> 68 </div>
71 </template> 69 </template>
72 <script> 70 <script>
71 import { mapGetters } from 'vuex'
73 import { getSlsqBdcqzList, invalidCertificate, getSzRecordList } from "@/api/bdcqz.js"; 72 import { getSlsqBdcqzList, invalidCertificate, getSzRecordList } from "@/api/bdcqz.js";
74 import bdcqzPrint from "./zsdy.vue";
75 import { popupDialog } from "@/utils/popup.js";
76 export default { 73 export default {
77 components: { bdcqzPrint },
78 props: {}, 74 props: {},
79 data () { 75 data () {
80 return { 76 return {
...@@ -88,6 +84,16 @@ ...@@ -88,6 +84,16 @@
88 bsmBdcqz: "" 84 bsmBdcqz: ""
89 }; 85 };
90 }, 86 },
87 computed: {
88 ...mapGetters(['isRefresh'])
89 },
90 watch: {
91 isRefresh: {
92 handler (newVal, oldVal) {
93 if (newVal) this.list()
94 }
95 }
96 },
91 created () { 97 created () {
92 this.list(); 98 this.list();
93 }, 99 },
...@@ -106,39 +112,11 @@ ...@@ -106,39 +112,11 @@
106 }, 112 },
107 //打开证书预览弹窗 113 //打开证书预览弹窗
108 openZsylDialog (item, type) { 114 openZsylDialog (item, type) {
109 let that = this;
110 if (type == 1) { 115 if (type == 1) {
111 //证书预览 116 //证书预览
112 this.$popup("证书预览", "workflow/components/zsyl", { 117 this.$popupDialog("证书预览", "workflow/components/dialog/zsyl", { bdcqz: item }, "70%", true);
113 height: "630px",
114 width: "800px",
115 formData: {
116 bdcqz: item,
117 }
118 });
119 } else { 118 } else {
120 this.$nextTick(() => { 119 this.$popupDialog("不动产权证书", "workflow/components/dialog/zsdy", { bdcqz: item }, "70%", true);
121 this.dialog = true;
122 this.bdcqz = item;
123 this.$refs.bdcqzPrint.getBdcqzPreview();
124 })
125 //证书打印
126 // this.$popup("证书打印", "workflow/components/zsdy", {
127 // height: "700px",
128 // width: "800px",
129 // formData: {
130 // bsmSlsq: this.bsmSlsq,
131 // bdcqz: item,
132 // },
133 // btnShow: true,
134 // confirmText: "打印证书",
135 // cancel: () => {
136 // console.log("取消回调");
137 // },
138 // confirm: () => {
139 // that.list();
140 // },
141 // });
142 } 120 }
143 }, 121 },
144 //再次打印 122 //再次打印
...@@ -166,7 +144,7 @@ ...@@ -166,7 +144,7 @@
166 }); 144 });
167 }, 145 },
168 openRecordPop (item) { 146 openRecordPop (item) {
169 popupDialog("缮证记录", "workflow/components/szRecord", { bsmBdcqz: item.bsmBdcqz }, '50%') 147 this.$popupDialog("缮证记录", "workflow/components/dialog/szRecord", { bsmBdcqz: item.bsmBdcqz }, '60%', true)
170 } 148 }
171 }, 149 },
172 }; 150 };
......
...@@ -40,7 +40,8 @@ class data extends filter { ...@@ -40,7 +40,8 @@ class data extends filter {
40 }, 40 },
41 { 41 {
42 prop: "bdcqzh", 42 prop: "bdcqzh",
43 label: "不动产权证号" 43 label: "不动产权证号",
44 width: '200',
44 }, 45 },
45 { 46 {
46 prop: "qlr", 47 prop: "qlr",
...@@ -60,7 +61,8 @@ class data extends filter { ...@@ -60,7 +61,8 @@ class data extends filter {
60 }, 61 },
61 { 62 {
62 prop: "fzsj", 63 prop: "fzsj",
63 label: "发证时间" 64 label: "发证时间",
65 width: '140',
64 }, 66 },
65 { 67 {
66 prop: "lzrxm", 68 prop: "lzrxm",
......
...@@ -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>
......