Merge branch 'master' of http://yun.pashanhoo.com:9090/bdc/bdcdj-web
Showing
14 changed files
with
868 additions
and
11 deletions
src/api/nydsyqFlow.js
0 → 100644
1 | import request from '@/utils/request' | ||
2 | import SERVER from './config' | ||
3 | |||
4 | // 初始化内容 | ||
5 | export function Init (data) { | ||
6 | let apiUrl = ""; | ||
7 | switch (data.get("djlx")) { | ||
8 | case "100": | ||
9 | apiUrl = "/rest/ywbl/nydsyqlr/fristInit"; | ||
10 | break; | ||
11 | case "200": | ||
12 | apiUrl = "/rest/ywbl/nydsyqlr/transferInit"; | ||
13 | break; | ||
14 | case "300": | ||
15 | apiUrl = "/rest/ywbl/nydsyqlr/changeInit"; | ||
16 | break; | ||
17 | case "400": | ||
18 | apiUrl = "/rest/ywbl/nydsyqlr/logoutInit"; | ||
19 | break; | ||
20 | case "500": | ||
21 | apiUrl = "/rest/ywbl/nydsyqlr/riviseInit"; | ||
22 | break; | ||
23 | case "901": | ||
24 | apiUrl = "/rest/ywbl/nydsyqlr/renewalInit"; | ||
25 | break; | ||
26 | case "902": | ||
27 | apiUrl = "/rest/ywbl/nydsyqlr/replaceInit"; | ||
28 | break; | ||
29 | } | ||
30 | return request({ | ||
31 | url: SERVER.SERVERAPI + apiUrl, | ||
32 | method: 'post', | ||
33 | data | ||
34 | }) | ||
35 | } | ||
36 | // 初始化内容 | ||
37 | export function saveData (data) { | ||
38 | return request({ | ||
39 | url: SERVER.SERVERAPI + '/rest/ywbl/jsydsyqlr/saveData', | ||
40 | method: 'post', | ||
41 | data | ||
42 | }) | ||
43 | } |
... | @@ -115,4 +115,13 @@ export function choiceBdcdy (data) { | ... | @@ -115,4 +115,13 @@ export function choiceBdcdy (data) { |
115 | method: 'post', | 115 | method: 'post', |
116 | data | 116 | data |
117 | }) | 117 | }) |
118 | } | ||
119 | |||
120 | // 业务办理-选择农用地信息-根据条件进行列表查询 | ||
121 | export function selectNydjbxx (data) { | ||
122 | return request({ | ||
123 | url: SERVER.SERVERAPI + '/rest/ywbl/ywsq/selectNydjbxx', | ||
124 | method: 'post', | ||
125 | data | ||
126 | }) | ||
118 | } | 127 | } |
... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
src/views/registerBook/nydsyq.vue
0 → 100644
1 | <template> | ||
2 | <div class="djxxTable"> | ||
3 | <div class="tableBox"> | ||
4 | <div class="title"> | ||
5 | {{ title }} | ||
6 | <div class="checkbox"> | ||
7 | <el-checkbox-group v-model="checkList" @change="checkChange"> | ||
8 | <el-checkbox v-for="item in qsztList" :key="item.value" :label="item.value">{{ item.label }}</el-checkbox> | ||
9 | </el-checkbox-group> | ||
10 | </div> | ||
11 | </div> | ||
12 | <div class="xxTableBox"> | ||
13 | <!-- 固定前三个 --> | ||
14 | <table class="xxTable"> | ||
15 | <tr v-for="(item, colindex) in columns.slice(0, 3)" :key="colindex"> | ||
16 | <td> | ||
17 | {{ item.label }} | ||
18 | </td> | ||
19 | <td v-for="(row, index) in tableData" :key="index" :class="[ | ||
20 | row.qszt == '2' ? 'lishi' : '', | ||
21 | row.qszt == '0' ? 'linshi' : '', | ||
22 | item.prop == 'qszt' && row.qszt == '0' ? 'linshiIcon' : '', | ||
23 | ]"> | ||
24 | <div class="icon" v-if="item.prop == 'qszt' && row.qszt == '0'"> | ||
25 | 正在办理 | ||
26 | </div> | ||
27 | <span v-if="item.prop == 'qszt'"> | ||
28 | {{ getQsztName(row[item.prop]) }} | ||
29 | </span> | ||
30 | |||
31 | <span v-else> {{ row[item.prop] }}</span> | ||
32 | </td> | ||
33 | <td v-for="count in emptycolNum" :key="~count"></td> | ||
34 | </tr> | ||
35 | </table> | ||
36 | |||
37 | <table class="xxTable rollTable"> | ||
38 | <tr v-for="(item, colindex) in columns.slice(3)" :key="colindex"> | ||
39 | <td> | ||
40 | {{ item.label }} | ||
41 | </td> | ||
42 | <td v-for="(row, index) in tableData" :key="index" :class="[ | ||
43 | row.qszt == '2' ? 'lishi' : '', | ||
44 | row.qszt == '0' ? 'linshi' : '', | ||
45 | item.prop == 'qszt' && row.qszt == '0' ? 'linshiIcon' : '', | ||
46 | ]"> | ||
47 | <div class="icon" v-if="item.prop == 'qszt' && row.qszt == '0'"> | ||
48 | 正在办理 | ||
49 | </div> | ||
50 | <span v-if="item.prop == 'qszt'"> | ||
51 | {{ getQsztName(row[item.prop]) }} | ||
52 | </span> | ||
53 | |||
54 | <span v-else> {{ row[item.prop] }}</span> | ||
55 | </td> | ||
56 | <td v-for="count in emptycolNum" :key="~count"></td> | ||
57 | </tr> | ||
58 | </table> | ||
59 | </div> | ||
60 | </div> | ||
61 | </div> | ||
62 | </template> | ||
63 | |||
64 | <script> | ||
65 | import { getJsydsyqList } from "@/api/registerBook.js"; | ||
66 | import { datas } from "./qlxxFormData.js"; | ||
67 | export default { | ||
68 | data () { | ||
69 | return { | ||
70 | title: "建设用地使用权、宅基地使用权登记信息", | ||
71 | qsztList: datas.columns().qsztList, | ||
72 | checkList: datas.columns().checkList, | ||
73 | //传递参数 | ||
74 | propsParam: this.$attrs, | ||
75 | //列表数据 | ||
76 | tableData: [], | ||
77 | //空列值个数 | ||
78 | emptycolNum: datas.columns().emptycolNum, | ||
79 | //列名称对象 | ||
80 | columns: datas.columns().JSYDSYQ, | ||
81 | }; | ||
82 | }, | ||
83 | created () { | ||
84 | this.loadData(); | ||
85 | }, | ||
86 | methods: { | ||
87 | loadData () { | ||
88 | getJsydsyqList({ | ||
89 | bdcdyid: this.propsParam.bdcdyid, | ||
90 | qllx: this.propsParam.qllx, | ||
91 | qszt: this.checkList, | ||
92 | }).then((res) => { | ||
93 | if (res.code === 200) { | ||
94 | this.tableData = res.result; | ||
95 | if (this.tableData.length < datas.columns().emptycolNum) { | ||
96 | this.emptycolNum = | ||
97 | datas.columns().emptycolNum - this.tableData.length; | ||
98 | } else { | ||
99 | this.emptycolNum = 0; | ||
100 | } | ||
101 | } | ||
102 | }); | ||
103 | }, | ||
104 | checkChange () { | ||
105 | if (this.checkList.length === 0) { | ||
106 | this.tableData = []; | ||
107 | this.emptycolNum = datas.columns().emptycolNum; | ||
108 | } else { | ||
109 | this.loadData(); | ||
110 | } | ||
111 | }, | ||
112 | getQsztName (code) { | ||
113 | let name = ""; | ||
114 | for (let item of this.qsztList) { | ||
115 | if (item.value == code) { | ||
116 | name = item.label; | ||
117 | break; | ||
118 | } | ||
119 | } | ||
120 | return name; | ||
121 | }, | ||
122 | }, | ||
123 | }; | ||
124 | </script> | ||
125 | |||
126 | <style lang="scss" scoped> | ||
127 | @import "./qlxxCommon.scss"; | ||
128 | </style> |
... | @@ -158,7 +158,7 @@ export default { | ... | @@ -158,7 +158,7 @@ export default { |
158 | 158 | ||
159 | // 修改 | 159 | // 修改 |
160 | editClick (index, row) { | 160 | editClick (index, row) { |
161 | console.log(row, 'rowrowrowrowrow'); | 161 | //console.log(row, 'rowrowrowrowrow'); |
162 | this.dataIndex = index | 162 | this.dataIndex = index |
163 | this.dialog = true | 163 | this.dialog = true |
164 | this.details = row | 164 | this.details = row | ... | ... |
src/views/workflow/components/JtcyTable.vue
0 → 100644
1 | <template> | ||
2 | <div> | ||
3 | <lb-table :column="column" border :maxHeight="300" heightNumSetting :pagination="false" :key="key" :data="tableDataList"> | ||
4 | </lb-table> | ||
5 | <addQlr v-model="dialog" :details="details" @updateDetail="updateDetail" /> | ||
6 | </div> | ||
7 | </template> | ||
8 | <script> | ||
9 | import addQlr from './addQlr.vue' | ||
10 | import { mapGetters } from 'vuex' | ||
11 | export default { | ||
12 | components: { | ||
13 | addQlr | ||
14 | }, | ||
15 | computed: { | ||
16 | ...mapGetters(["dictData"]), | ||
17 | }, | ||
18 | props: { | ||
19 | tableData: { | ||
20 | type: Array, | ||
21 | default: function () { | ||
22 | return [] | ||
23 | } | ||
24 | }, | ||
25 | gyfs: { | ||
26 | type: String, | ||
27 | default: '1' | ||
28 | } | ||
29 | }, | ||
30 | data () { | ||
31 | return { | ||
32 | key: 0, | ||
33 | dataIndex: 0, | ||
34 | dialog: false, | ||
35 | details: {}, | ||
36 | tableDataList: [], | ||
37 | InformationTable: [ | ||
38 | { | ||
39 | width: '50', | ||
40 | renderHeader: (h, scope) => { | ||
41 | return <div> { | ||
42 | this.$route.query.viewtype == 1 ? '序号' : <i class="el-icon-plus pointer" onClick={() => { this.addClick() }}></i> | ||
43 | } | ||
44 | </div> | ||
45 | }, | ||
46 | render: (h, scope) => { | ||
47 | return ( | ||
48 | <div> | ||
49 | { | ||
50 | this.$route.query.viewtype == 1 ? <span>{scope.$index + 1}</span> : | ||
51 | <i class="el-icon-minus pointer" onClick={() => { this.deleClick(scope.$index, scope.row) }}></i> | ||
52 | } | ||
53 | </div> | ||
54 | ) | ||
55 | } | ||
56 | }, | ||
57 | { | ||
58 | label: '身份证读卡器', | ||
59 | align: 'center', | ||
60 | render: (h, scope) => { | ||
61 | return <el-button type="text" icon="el-icon-tickets" onClick={() => { this.readClick(scope) }}>读取</el-button> | ||
62 | } | ||
63 | }, | ||
64 | { | ||
65 | prop: "cyxm", | ||
66 | label: "成员姓名" | ||
67 | }, | ||
68 | { | ||
69 | prop: "sfzhm", | ||
70 | label: "身份证号码" | ||
71 | }, | ||
72 | { | ||
73 | prop: "dh", | ||
74 | label: "联系电话" | ||
75 | }, | ||
76 | { | ||
77 | label: '修改', | ||
78 | render: (h, scope) => { | ||
79 | return ( | ||
80 | <div> | ||
81 | { | ||
82 | this.$route.query.viewtype == 1 ? <el-button | ||
83 | icon="el-icon-view" | ||
84 | type="text" | ||
85 | onClick={() => { this.queryViewClick(scope.$index, scope.row) }}>查看</el-button> : <el-button | ||
86 | icon="el-icon-edit-outline" | ||
87 | type="text" | ||
88 | onClick={() => { this.editClick(scope.$index, scope.row) }}>编辑</el-button> | ||
89 | } | ||
90 | </div> | ||
91 | ) | ||
92 | } | ||
93 | } | ||
94 | ], | ||
95 | column: this.InformationTable | ||
96 | } | ||
97 | }, | ||
98 | watch: { | ||
99 | tableData: { | ||
100 | handler: function (val, oldVal) { | ||
101 | let that = this | ||
102 | if (val.length == 0 || !val) { | ||
103 | that.tableDataList = _.cloneDeep([{ | ||
104 | sqrmc: '', | ||
105 | dlrzjlx: '', | ||
106 | dlrzjh: '', | ||
107 | fr: '' | ||
108 | }]) | ||
109 | } else { | ||
110 | that.tableDataList = _.cloneDeep(val) | ||
111 | } | ||
112 | }, | ||
113 | immediate: true, | ||
114 | deep: true | ||
115 | }, | ||
116 | gyfs: { | ||
117 | handler (newVal, oldValue) { | ||
118 | let dataList = _.cloneDeep(this.InformationTable) | ||
119 | if (newVal == '1') { | ||
120 | this.column = _.cloneDeep(dataList).slice(1, dataList.length) | ||
121 | } else { | ||
122 | this.column = dataList | ||
123 | } | ||
124 | }, | ||
125 | immediate: true | ||
126 | } | ||
127 | }, | ||
128 | methods: { | ||
129 | updateDetail (value) { | ||
130 | this.tableDataList[this.dataIndex] = value | ||
131 | this.key++ | ||
132 | this.$emit('upDateQlrxxList', this.tableDataList) | ||
133 | }, | ||
134 | |||
135 | // 新增 | ||
136 | addClick () { | ||
137 | this.dialog = true | ||
138 | }, | ||
139 | |||
140 | // 删除 | ||
141 | deleClick (index, row) { | ||
142 | this.tableData.splice(index, 1) | ||
143 | }, | ||
144 | |||
145 | // 身份证读取 | ||
146 | readClick () { }, | ||
147 | |||
148 | // 修改 | ||
149 | editClick (index, row) { | ||
150 | console.log(row, 'rowrowrowrowrow'); | ||
151 | this.dataIndex = index | ||
152 | this.dialog = true | ||
153 | this.details = row | ||
154 | }, | ||
155 | |||
156 | queryViewClick () { | ||
157 | this.dialog = true | ||
158 | } | ||
159 | } | ||
160 | } | ||
161 | </script> | ||
162 | <style scoped lang='scss'> | ||
163 | |||
164 | </style> | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
... | @@ -5,7 +5,7 @@ | ... | @@ -5,7 +5,7 @@ |
5 | <el-row> | 5 | <el-row> |
6 | <el-col :span="8"> | 6 | <el-col :span="8"> |
7 | <el-form-item label="权利人类型" prop="qlrlx"> | 7 | <el-form-item label="权利人类型" prop="qlrlx"> |
8 | <el-select clearable v-model="ruleForm.qlrlx" class="width100" placeholder="请选择"> | 8 | <el-select clearable v-model="ruleForm.sqrlx" class="width100" placeholder="请选择"> |
9 | <el-option v-for="item in dictData['A36']" :key="item.dcode" :label="item.dname" :value="item.dcode"> | 9 | <el-option v-for="item in dictData['A36']" :key="item.dcode" :label="item.dname" :value="item.dcode"> |
10 | </el-option> | 10 | </el-option> |
11 | </el-select> | 11 | </el-select> | ... | ... |
... | @@ -26,6 +26,9 @@ export function getForm(tabName, djywbm) { | ... | @@ -26,6 +26,9 @@ export function getForm(tabName, djywbm) { |
26 | case "fwsyqslxx900": | 26 | case "fwsyqslxx900": |
27 | form = require("@/views/ywbl/fdcq2/slxx900.vue"); | 27 | form = require("@/views/ywbl/fdcq2/slxx900.vue"); |
28 | break; | 28 | break; |
29 | case "nydsyqslxx100": | ||
30 | form = require("@/views/ywbl/nydsyq/slxx.vue"); | ||
31 | break; | ||
29 | case "tdslxxCfdj": | 32 | case "tdslxxCfdj": |
30 | form = require("@/views/ywbl/cfdj/tdslxx.vue"); | 33 | form = require("@/views/ywbl/cfdj/tdslxx.vue"); |
31 | break; | 34 | break; | ... | ... |
... | @@ -14,7 +14,7 @@ | ... | @@ -14,7 +14,7 @@ |
14 | </el-row> | 14 | </el-row> |
15 | <el-row :gutter="8"> | 15 | <el-row :gutter="8"> |
16 | <el-col :span="24" class="margin-top-middle"> | 16 | <el-col :span="24" class="margin-top-middle"> |
17 | 错误内容: | 17 | 操作内容: |
18 | <el-input type="textarea" :rows="10" v-model="formData.item.cznr"></el-input> | 18 | <el-input type="textarea" :rows="10" v-model="formData.item.cznr"></el-input> |
19 | </el-col> | 19 | </el-col> |
20 | </el-row> | 20 | </el-row> | ... | ... |
... | @@ -55,7 +55,8 @@ | ... | @@ -55,7 +55,8 @@ |
55 | </div> | 55 | </div> |
56 | <div class="flex-display"> | 56 | <div class="flex-display"> |
57 | <div class="width-33">使用率</div> | 57 | <div class="width-33">使用率</div> |
58 | <div class="width-33">{{serverData.xtjkMem.usage}}%</div> | 58 | <div class="width-33" v-if="serverData.xtjkMem.usage > 80" style="color:red">{{serverData.xtjkMem.usage}}%</div> |
59 | <div class="width-33" v-else>{{serverData.xtjkMem.usage}}%</div> | ||
59 | <div>{{serverData.xtjkJvm.usage}}%</div> | 60 | <div>{{serverData.xtjkJvm.usage}}%</div> |
60 | </div> | 61 | </div> |
61 | </el-card> | 62 | </el-card> |
... | @@ -123,7 +124,12 @@ | ... | @@ -123,7 +124,12 @@ |
123 | <el-table-column prop="sysTypeName" label="文件系统" width="180"></el-table-column> | 124 | <el-table-column prop="sysTypeName" label="文件系统" width="180"></el-table-column> |
124 | <el-table-column prop="typeName" label="盘符类型"></el-table-column> | 125 | <el-table-column prop="typeName" label="盘符类型"></el-table-column> |
125 | <el-table-column prop="total" label="总大小"></el-table-column> | 126 | <el-table-column prop="total" label="总大小"></el-table-column> |
126 | <el-table-column prop="free" label="可用大小"></el-table-column> | 127 | <el-table-column label="可用大小"> |
128 | <template slot-scope="scope"> | ||
129 | <div v-if="scope.row.free < '20 GB'" style="color:red">{{scope.row.free}}</div> | ||
130 | <div v-else>{{scope.row.free}}</div> | ||
131 | </template> | ||
132 | </el-table-column> | ||
127 | <el-table-column prop="used" label="已用大小"></el-table-column> | 133 | <el-table-column prop="used" label="已用大小"></el-table-column> |
128 | <el-table-column prop="usage" label="已用百分比"></el-table-column> | 134 | <el-table-column prop="usage" label="已用百分比"></el-table-column> |
129 | </el-table> | 135 | </el-table> |
... | @@ -188,7 +194,7 @@ export default { | ... | @@ -188,7 +194,7 @@ export default { |
188 | padding-bottom: 10px; | 194 | padding-bottom: 10px; |
189 | } | 195 | } |
190 | .font-border { | 196 | .font-border { |
191 | font-weight: bolder | 197 | font-weight: bolder; |
192 | } | 198 | } |
193 | </style> | 199 | </style> |
194 | 200 | ... | ... |
... | @@ -83,7 +83,7 @@ | ... | @@ -83,7 +83,7 @@ |
83 | <el-row :gutter="10"> | 83 | <el-row :gutter="10"> |
84 | <el-col :span="8"> | 84 | <el-col :span="8"> |
85 | <el-form-item :class="flag ? 'marginBot0' : ''" label="取得价格:"> | 85 | <el-form-item :class="flag ? 'marginBot0' : ''" label="取得价格:"> |
86 | <!-- <el-input disabled v-model="ruleForm.jsydsyq.qdjg"></el-input> --> | 86 | <el-input v-model="ruleForm.jsydsyq.qdjg"></el-input> |
87 | </el-form-item> | 87 | </el-form-item> |
88 | </el-col> | 88 | </el-col> |
89 | 89 | ||
... | @@ -120,10 +120,11 @@ | ... | @@ -120,10 +120,11 @@ |
120 | <el-row :gutter="10"> | 120 | <el-row :gutter="10"> |
121 | <el-col :span="14"> | 121 | <el-col :span="14"> |
122 | <el-form-item :class="flag ? 'marginBot0' : ''" label="共有方式:"> | 122 | <el-form-item :class="flag ? 'marginBot0' : ''" label="共有方式:"> |
123 | <el-radio-group :disabled="$route.query.viewtype==1" v-model="ruleForm.slywxx.gyfs"> | 123 | <el-radio-group :disabled="$route.query.viewtype==0" v-model="ruleForm.slywxx.gyfs"> |
124 | <el-radio label="1">单独所有</el-radio> | 124 | <el-radio label="0">单独所有</el-radio> |
125 | <el-radio label="2">共同共有</el-radio> | 125 | <el-radio label="1">共同共有</el-radio> |
126 | <el-radio label="3">按份所有</el-radio> | 126 | <el-radio label="2">按份所有</el-radio> |
127 | <el-radio label="3">其它共有</el-radio> | ||
127 | </el-radio-group> | 128 | </el-radio-group> |
128 | </el-form-item> | 129 | </el-form-item> |
129 | </el-col> | 130 | </el-col> | ... | ... |
src/views/ywbl/nydsyq/slxx.vue
0 → 100644
1 | <template> | ||
2 | <!-- 受理信息 --> | ||
3 | <div class="slxx"> | ||
4 | <el-form :model="ruleForm" :rules="rules" ref="ruleForm" :label-position="flag ? 'top' : ''" :inline="flag" | ||
5 | label-width="120px"> | ||
6 | <div class="slxx_con"> | ||
7 | <div class="slxx_title title-block"> | ||
8 | 受理信息 | ||
9 | <div class="triangle"></div> | ||
10 | </div> | ||
11 | <el-row :gutter="10"> | ||
12 | <el-col :span="8"> | ||
13 | <el-form-item :class="flag ? 'marginBot0' : ''" label="业务号:"> | ||
14 | <el-input disabled v-model="ruleForm.slywxx.ywh"></el-input> | ||
15 | </el-form-item> | ||
16 | </el-col> | ||
17 | <el-col :span="8"> | ||
18 | <el-form-item :class="flag ? 'marginBot0' : ''" label="受理人员:"> | ||
19 | <el-input disabled v-model="ruleForm.slywxx.slry"></el-input> | ||
20 | </el-form-item> | ||
21 | </el-col> | ||
22 | <el-col :span="8"> | ||
23 | <el-form-item :class="flag ? 'marginBot0' : ''" label="受理时间:"> | ||
24 | <el-input disabled v-model="ruleForm.slywxx.slsj"></el-input> | ||
25 | </el-form-item> | ||
26 | </el-col> | ||
27 | </el-row> | ||
28 | <el-row :gutter="10"> | ||
29 | <el-col :span="8"> | ||
30 | <el-form-item :class="flag ? 'marginBot0' : ''" label="权利类型:"> | ||
31 | <el-input disabled v-model="ruleForm.slywxx.qllxmc"></el-input> | ||
32 | </el-form-item> | ||
33 | </el-col> | ||
34 | <el-col :span="8"> | ||
35 | <el-form-item :class="flag ? 'marginBot0' : ''" label="登记类型:"> | ||
36 | <el-input disabled v-model="ruleForm.slywxx.djlxmc"></el-input> | ||
37 | </el-form-item> | ||
38 | </el-col> | ||
39 | <el-col :span="8"> | ||
40 | <el-form-item :class="flag ? 'marginBot0' : ''" label="登记情形:"> | ||
41 | <el-input disabled v-model="ruleForm.slywxx.djqxmc"></el-input> | ||
42 | </el-form-item> | ||
43 | </el-col> | ||
44 | </el-row> | ||
45 | <div class="slxx_title title-block"> | ||
46 | 不动产单元情况 | ||
47 | <div class="triangle"></div> | ||
48 | </div> | ||
49 | <el-row :gutter="10"> | ||
50 | <el-col :span="8"> | ||
51 | <el-form-item :class="flag ? 'marginBot0' : ''" label="宗地代码:"> | ||
52 | <el-input disabled v-model="ruleForm.zdjbxx.zddm"></el-input> | ||
53 | </el-form-item> | ||
54 | </el-col> | ||
55 | <el-col :span="8"> | ||
56 | <el-form-item :class="flag ? 'marginBot0' : ''" label="不动产单元号:"> | ||
57 | <el-input disabled v-model="ruleForm.zdjbxx.bdcdyh"></el-input> | ||
58 | </el-form-item> | ||
59 | </el-col> | ||
60 | <el-col :span="8"> | ||
61 | <el-form-item :class="flag ? 'marginBot0' : ''" label="权利性质:"> | ||
62 | <el-input disabled v-model="ruleForm.zdjbxx.qlxzmc"></el-input> | ||
63 | </el-form-item> | ||
64 | </el-col> | ||
65 | </el-row> | ||
66 | <el-row :gutter="10"> | ||
67 | <el-col :span="8"> | ||
68 | <el-form-item :class="flag ? 'marginBot0' : ''" label="宗地面积:"> | ||
69 | <el-input disabled v-model="ruleForm.zdjbxx.zdmj"></el-input> | ||
70 | </el-form-item> | ||
71 | </el-col> | ||
72 | <el-col :span="8"> | ||
73 | <el-form-item :class="flag ? 'marginBot0' : ''" label="土地用途:"> | ||
74 | <el-input disabled v-model="ruleForm.zdjbxx.ghytmc"></el-input> | ||
75 | </el-form-item> | ||
76 | </el-col> | ||
77 | <el-col :span="8"> | ||
78 | <el-form-item :class="flag ? 'marginBot0' : ''" label="权利设定方式:"> | ||
79 | <el-input disabled v-model="ruleForm.zdjbxx.qlsdfsmc"></el-input> | ||
80 | </el-form-item> | ||
81 | </el-col> | ||
82 | </el-row> | ||
83 | <el-row :gutter="10"> | ||
84 | <el-col :span="16"> | ||
85 | <el-form-item :class="flag ? 'marginBot0' : ''" label="坐落:"> | ||
86 | <el-input disabled v-model="ruleForm.zdjbxx.zl"></el-input> | ||
87 | </el-form-item> | ||
88 | </el-col> | ||
89 | </el-row> | ||
90 | <el-row :gutter="10"> | ||
91 | <el-col :span="8"> | ||
92 | <el-form-item :class="flag ? 'marginBot0' : ''" label="发包方名称:"> | ||
93 | <el-input v-model="ruleForm.nydsyq.fbfmc"></el-input> | ||
94 | </el-form-item> | ||
95 | </el-col> | ||
96 | <el-col :span="8"> | ||
97 | <el-form-item :class="flag ? 'marginBot0' : ''" label="发包方代码:"> | ||
98 | <el-input v-model="ruleForm.nydsyq.fbfdm"></el-input> | ||
99 | </el-form-item> | ||
100 | </el-col> | ||
101 | <el-col :span="8"> | ||
102 | <el-form-item :class="flag ? 'marginBot0' : ''" label="土地所有权性质:"> | ||
103 | <el-select v-model="ruleForm.nydsyq.tdsyqxz" class="width100" filterable clearable> | ||
104 | <el-option v-for="item in dictData['A45']" :key="item.dcode" :label="item.dname" :value="item.dcode"> | ||
105 | </el-option> | ||
106 | </el-select> | ||
107 | </el-form-item> | ||
108 | </el-col> | ||
109 | </el-row> | ||
110 | <el-row :gutter="10"> | ||
111 | <el-col :span="8"> | ||
112 | <el-form-item :class="flag ? 'marginBot0' : ''" label="承包期限:"> | ||
113 | <el-input disabled v-model="ruleForm.nydsyq.cbqx"></el-input> | ||
114 | </el-form-item> | ||
115 | </el-col> | ||
116 | <el-col :span="16"> | ||
117 | <el-form-item :class="flag ? 'marginBot0' : ''" label="承包起止时间:"> | ||
118 | <el-input disabled v-model="ruleForm.nydsyq.cbqzsj"></el-input> | ||
119 | </el-form-item> | ||
120 | </el-col> | ||
121 | </el-row> | ||
122 | <el-row :gutter="10"> | ||
123 | <el-col :span="8"> | ||
124 | <el-form-item :class="flag ? 'marginBot0' : ''" label="水域滩涂类型:"> | ||
125 | <el-select v-model="ruleForm.nydsyq.syttlx" class="width100" filterable clearable> | ||
126 | <el-option v-for="item in dictData['A23']" :key="item.dcode" :label="item.dname" :value="item.dcode"> | ||
127 | </el-option> | ||
128 | </el-select> | ||
129 | </el-form-item> | ||
130 | </el-col> | ||
131 | <el-col :span="8"> | ||
132 | <el-form-item :class="flag ? 'marginBot0' : ''" label="养殖业方式:"> | ||
133 | <el-select v-model="ruleForm.nydsyq.yzyfs" class="width100" filterable clearable> | ||
134 | <el-option v-for="item in dictData['A24']" :key="item.dcode" :label="item.dname" :value="item.dcode"> | ||
135 | </el-option> | ||
136 | </el-select> | ||
137 | </el-form-item> | ||
138 | </el-col> | ||
139 | <el-col :span="8"> | ||
140 | <el-form-item :class="flag ? 'marginBot0' : ''" label="草原质量:"> | ||
141 | <el-input v-model="ruleForm.nydsyq.cyzl"></el-input> | ||
142 | </el-form-item> | ||
143 | </el-col> | ||
144 | </el-row> | ||
145 | <el-row :gutter="10"> | ||
146 | <el-col :span="8"> | ||
147 | <el-form-item :class="flag ? 'marginBot0' : ''" label="适宜载畜量:"> | ||
148 | <el-input v-model="ruleForm.nydsyq.syzxl"></el-input> | ||
149 | </el-form-item> | ||
150 | </el-col> | ||
151 | <el-col :span="8"> | ||
152 | <el-form-item :class="flag ? 'marginBot0' : ''" label="用地用海分类:"> | ||
153 | <el-select v-model="ruleForm.nydsyq.yhydfl" class="width100" filterable clearable> | ||
154 | <el-option v-for="item in dictData['A51']" :key="item.dcode" :label="item.dname" :value="item.dcode"> | ||
155 | </el-option> | ||
156 | </el-select> | ||
157 | </el-form-item> | ||
158 | </el-col> | ||
159 | <el-col :span="8"> | ||
160 | <el-form-item :class="flag ? 'marginBot0' : ''" label="土地承包合同:"> | ||
161 | <el-input v-model="ruleForm.nydsyq.tdcbht"></el-input> | ||
162 | </el-form-item> | ||
163 | </el-col> | ||
164 | </el-row> | ||
165 | <el-row :gutter="10"> | ||
166 | <el-col> | ||
167 | <el-form-item :class="flag ? 'marginBot0' : ''" label="附记:" prop="fj"> | ||
168 | <el-input type="textarea" v-model="ruleForm.jsydsyq.fj" :disabled="$route.query.viewtype==1"></el-input> | ||
169 | </el-form-item> | ||
170 | </el-col> | ||
171 | </el-row> | ||
172 | <div class="slxx_title title-block"> | ||
173 | 权利人信息 | ||
174 | <div class="triangle"></div> | ||
175 | </div> | ||
176 | <el-row :gutter="10"> | ||
177 | <el-col :span="14"> | ||
178 | <el-form-item :class="flag ? 'marginBot0' : ''" label="共有方式:"> | ||
179 | <el-radio-group :disabled="$route.query.viewtype==1" v-model="ruleForm.slywxx.gyfs"> | ||
180 | <el-radio label="1">单独所有</el-radio> | ||
181 | <el-radio label="2">共同共有</el-radio> | ||
182 | <el-radio label="3">按份所有</el-radio> | ||
183 | </el-radio-group> | ||
184 | </el-form-item> | ||
185 | </el-col> | ||
186 | <el-col :span="5" v-show="ruleForm.gyfs == '2'"> | ||
187 | <el-form-item :class="flag ? 'marginBot0' : ''" label="是否分别持证:"> | ||
188 | <el-radio-group v-model="ruleForm.slywxx.sffbcz"> | ||
189 | <el-radio label="1">是</el-radio> | ||
190 | <el-radio label="0">否</el-radio> | ||
191 | </el-radio-group> | ||
192 | </el-form-item> | ||
193 | </el-col> | ||
194 | <el-col :span="5" v-show="ruleForm.gyfs == '2'"> | ||
195 | <el-form-item :class="flag ? 'marginBot0' : ''" label="持证人:"> | ||
196 | <el-select v-model="ruleForm.czr" placeholder="持证人"> | ||
197 | <el-option v-for="item in czrOptions" :key="item.value" :label="item.label" :value="item.value"> | ||
198 | </el-option> | ||
199 | </el-select> | ||
200 | </el-form-item> | ||
201 | </el-col> | ||
202 | </el-row> | ||
203 | <InformationTable :tableData="ruleForm.qlrList" @upDateQlrxxList="upDateQlrxxList" | ||
204 | :viewtype="$route.query.viewtype" :gyfs="ruleForm.slywxx.gyfs" /> | ||
205 | <div class="slxx_title title-block"> | ||
206 | 家庭成员 | ||
207 | <div class="triangle"></div> | ||
208 | </div> | ||
209 | <JtcyTable :tableData="ruleForm.jtcyList" @upDateQlrxxList="upDateQlrxxList" | ||
210 | :viewtype="$route.query.viewtype" :gyfs="ruleForm.slywxx.gyfs" /> | ||
211 | <div class="slxx_title title-block"> | ||
212 | 登记原因 | ||
213 | <div class="triangle"></div> | ||
214 | </div> | ||
215 | <el-row :gutter="10"> | ||
216 | <el-col> | ||
217 | <el-form-item :class="flag ? 'marginBot0' : ''" label="登记原因:" prop="djyy"> | ||
218 | <el-input class="textArea" type="textarea" :disabled="$route.query.viewtype==1" v-model="ruleForm.jsydsyq.djyy"> | ||
219 | </el-input> | ||
220 | </el-form-item> | ||
221 | </el-col> | ||
222 | </el-row> | ||
223 | </div> | ||
224 | <el-row class="btn" v-if="!$route.query.viewtype"> | ||
225 | <el-form-item :class="flag ? 'marginBot0' : ''"> | ||
226 | <el-button type="primary" @click="onSubmit">保存</el-button> | ||
227 | </el-form-item> | ||
228 | </el-row> | ||
229 | </el-form> | ||
230 | </div> | ||
231 | </template> | ||
232 | <script> | ||
233 | import { mapGetters } from "vuex" | ||
234 | import { Init, saveData } from "@/api/nydsyqFlow.js" | ||
235 | import InformationTable from "@/views/workflow/components/InformationTable" | ||
236 | import JtcyTable from "@/views/workflow/components/JtcyTable" | ||
237 | export default { | ||
238 | created () { | ||
239 | this.propsParam = this.$attrs; | ||
240 | var formdata = new FormData(); | ||
241 | formdata.append("bsmSldy", this.propsParam.bsmSldy); | ||
242 | formdata.append("djlx", this.propsParam.djlx); | ||
243 | Init(formdata).then((res) => { | ||
244 | this.ruleForm = res.result; | ||
245 | if (res.code === 200 ) { | ||
246 | } | ||
247 | else{ | ||
248 | this.$alert(res.message, '提示'); | ||
249 | } | ||
250 | }) | ||
251 | }, | ||
252 | components: { InformationTable,JtcyTable }, | ||
253 | computed: { | ||
254 | ...mapGetters(["dictData", "flag"]) | ||
255 | }, | ||
256 | watch: { | ||
257 | |||
258 | }, | ||
259 | data () { | ||
260 | return { | ||
261 | disabled: true, | ||
262 | czrOptions: [], | ||
263 | ruleForm: {}, | ||
264 | //传递参数 | ||
265 | propsParam: {}, | ||
266 | rules: {} | ||
267 | } | ||
268 | }, | ||
269 | methods: { | ||
270 | |||
271 | }, | ||
272 | }; | ||
273 | </script> | ||
274 | <style scoped lang='scss'> | ||
275 | @import "~@/styles/public.scss"; | ||
276 | @import "~@/styles/slxx/slxx.scss"; | ||
277 | </style> | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
src/views/ywbl/ywsq/components/nydsyq100.vue
0 → 100644
1 | <template> | ||
2 | <div class="from-clues"> | ||
3 | <!-- 表单部分 国有建设用地使用权 --> | ||
4 | <div class="from-clues-header"> | ||
5 | <el-form :model="queryForm" ref="queryForm" label-width="120px"> | ||
6 | <el-row> | ||
7 | <el-col :span="10"> | ||
8 | <el-form-item label="不动产单元号"> | ||
9 | <el-input placeholder="请输入不动产单元号" v-model="queryForm.bdcdyh" clearable class="width300px"> | ||
10 | </el-input> | ||
11 | </el-form-item> | ||
12 | </el-col> | ||
13 | <el-col :span="10"> | ||
14 | <el-form-item label="坐落"> | ||
15 | <el-input placeholder="请输入坐落" v-model="queryForm.zl" clearable class="width300px"> | ||
16 | </el-input> | ||
17 | </el-form-item> | ||
18 | </el-col> | ||
19 | <el-col :span="4" class="btnColRight"> | ||
20 | <el-form-item> | ||
21 | <el-button type="primary" @click="fetchData">查询</el-button> | ||
22 | </el-form-item> | ||
23 | </el-col> | ||
24 | </el-row> | ||
25 | </el-form> | ||
26 | </div> | ||
27 | <!-- 表格 --> | ||
28 | <div class="from-clues-content"> | ||
29 | <lb-table ref="table" @row-click="handleRowClick" :page-size="pageData.pageSize" :heightNum="400" | ||
30 | :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange" | ||
31 | @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="tableData.columns" | ||
32 | :data="tableData.data"> | ||
33 | </lb-table> | ||
34 | </div> | ||
35 | <div class="submit_button"> | ||
36 | <el-button @click="closeDialog">取消</el-button> | ||
37 | <el-button type="primary" plain @click="submitForm">发起申请</el-button> | ||
38 | </div> | ||
39 | </div> | ||
40 | </template> | ||
41 | <script> | ||
42 | //首次登记 | ||
43 | import { datas, sendThis } from "../javascript/nydsyq100.js"; | ||
44 | import { defaultParameters } from "../javascript/publicDefaultPar.js"; | ||
45 | import table from "@/utils/mixin/table"; | ||
46 | import jump from "../components/mixin/jump"; | ||
47 | import { startBusinessFlow } from "@/api/ywbl.js"; | ||
48 | import { selectNydjbxx } from "@/api/selectQlxx.js"; | ||
49 | export default { | ||
50 | mixins: [table, jump], | ||
51 | props: { | ||
52 | isJump: { type: Boolean, default: false }, | ||
53 | djywbm: { type: String, default: '' }, | ||
54 | djqxObj: { | ||
55 | type: Object, | ||
56 | default: {} | ||
57 | }, | ||
58 | bsmSqyw: { type: String, default: '' }, | ||
59 | }, | ||
60 | data () { | ||
61 | return { | ||
62 | queryForm: defaultParameters.defaultParameters(), | ||
63 | |||
64 | qllxs: [], | ||
65 | tableData: { | ||
66 | total: 0, | ||
67 | columns: datas.columns(), | ||
68 | data: [], | ||
69 | }, | ||
70 | bdcdysz: [] | ||
71 | }; | ||
72 | }, | ||
73 | mounted () { | ||
74 | sendThis(this); | ||
75 | }, | ||
76 | methods: { | ||
77 | //点击行选中或取消复选框 | ||
78 | handleRowClick (row, column, event) { | ||
79 | //通过ref绑定后这里使用$refs.table来操作bom元素 | ||
80 | this.$refs.table.toggleRowSelection(row); | ||
81 | }, | ||
82 | closeDialog () { | ||
83 | this.$emit("closeDialog"); | ||
84 | }, | ||
85 | fetchData () { | ||
86 | this.queryForm.sqywbm = this.djywbm; | ||
87 | selectNydjbxx({ ...this.queryForm, ...this.pageData }).then((res) => { | ||
88 | if (res.code === 200) { | ||
89 | let { total, records } = res.result; | ||
90 | this.tableData.total = total; | ||
91 | this.tableData.data = records; | ||
92 | } | ||
93 | }); | ||
94 | }, | ||
95 | submitForm () { | ||
96 | if (this.bdcdysz.length == 0) { | ||
97 | this.$message.error("请至少选择一条数据"); | ||
98 | return; | ||
99 | } | ||
100 | startBusinessFlow({ | ||
101 | bsmSqyw: this.bsmSqyw, | ||
102 | bdcdysz: this.bdcdysz, | ||
103 | djqxbm: this.djqxObj?.djqxbm, | ||
104 | djqxmc: this.djqxObj?.djqxmc | ||
105 | }).then((res) => { | ||
106 | if (res.code == 200) { | ||
107 | this.$message({ | ||
108 | showClose: true, | ||
109 | message: '发起申请成功', | ||
110 | type: 'success' | ||
111 | }) | ||
112 | if (!this.isJump) { | ||
113 | this.jump(res.result, this.djywbm) | ||
114 | } else { | ||
115 | this.$emit('updateDialog', true) | ||
116 | } | ||
117 | } else { | ||
118 | this.$message.error(res.message); | ||
119 | } | ||
120 | }) | ||
121 | }, | ||
122 | handleSelectionChange (val) { | ||
123 | this.bdcdysz = val; | ||
124 | } | ||
125 | } | ||
126 | } | ||
127 | </script> | ||
128 | <style scoped lang="scss"> | ||
129 | @import "~@/styles/mixin.scss"; | ||
130 | @import "~@/styles/public.scss"; | ||
131 | </style> | ||
132 |
src/views/ywbl/ywsq/javascript/nydsyq100.js
0 → 100644
1 | import filter from '@/utils/filter.js' | ||
2 | let vm = null | ||
3 | |||
4 | const sendThis = (_this) => { | ||
5 | vm = _this | ||
6 | } | ||
7 | class data extends filter { | ||
8 | constructor() { | ||
9 | super() | ||
10 | } | ||
11 | columns () { | ||
12 | return [ | ||
13 | { | ||
14 | type: 'selection', | ||
15 | label: '全选' | ||
16 | }, | ||
17 | { | ||
18 | label: '序号', | ||
19 | type: 'index', | ||
20 | width: '50', | ||
21 | render: (h, scope) => { | ||
22 | return ( | ||
23 | <div> | ||
24 | {(vm.pageData.currentPage - 1) * vm.pageData.pageSize + scope.$index + 1} | ||
25 | </div> | ||
26 | ) | ||
27 | } | ||
28 | }, | ||
29 | { | ||
30 | label: "状态", | ||
31 | render: (h, scope) => { | ||
32 | return ( | ||
33 | <div> | ||
34 | {/* <a v-on:click="doSomething"></a> */} | ||
35 | <a style='color:#3498db;' v-show={scope.row.djblzt == 1} >正在办理</a> | ||
36 | <span v-show={scope.row.zjgcdyzt == 1}>,在建工程抵押</span> | ||
37 | <span v-show={scope.row.ycfzt == 1}>,已预查封</span> | ||
38 | <span v-show={scope.row.ycfzt == 1}>,已预查封</span> | ||
39 | <span v-show={scope.row.cfzt == 1}>,已查封</span> | ||
40 | <span v-show={scope.row.diyizt == 1}>,已地役</span> | ||
41 | <span v-show={scope.row.yyzt == 1}>,异议中</span> | ||
42 | <span v-show={scope.row.xzzt == 1}>,已限制</span> | ||
43 | <span v-show={scope.row.ygmmzt == 1}>,已预告买卖</span> | ||
44 | <span v-show={scope.row.ygdyzt == 1}>,已预告抵押</span> | ||
45 | <span v-show={scope.row.dyzt == 1}>,已抵押</span> | ||
46 | </div> | ||
47 | ) | ||
48 | } | ||
49 | }, | ||
50 | { | ||
51 | prop: "qllxmc", | ||
52 | label: "权利类型", | ||
53 | }, | ||
54 | { | ||
55 | prop: "zddm", | ||
56 | label: "宗地代码", | ||
57 | }, | ||
58 | { | ||
59 | prop: "bdcdyh", | ||
60 | label: "不动产单元号", | ||
61 | }, | ||
62 | { | ||
63 | prop: "qlxzmc", | ||
64 | label: "权利性质", | ||
65 | }, | ||
66 | { | ||
67 | prop: "mj", | ||
68 | label: "农用地面积(㎡)", | ||
69 | }, | ||
70 | { | ||
71 | prop: "qlsdfsmc", | ||
72 | label: "权利设定方式", | ||
73 | }, | ||
74 | { | ||
75 | prop: "ytmc", | ||
76 | label: "土地用途", | ||
77 | }, | ||
78 | { | ||
79 | prop: "zl", | ||
80 | label: "坐落", | ||
81 | }, | ||
82 | ] | ||
83 | } | ||
84 | |||
85 | |||
86 | } | ||
87 | let datas = new data() | ||
88 | export { | ||
89 | datas, | ||
90 | sendThis | ||
91 | } |
... | @@ -14,6 +14,9 @@ export function queueDjywmc (djywbm) { | ... | @@ -14,6 +14,9 @@ export function queueDjywmc (djywbm) { |
14 | case "A04100"://国有建设用地使用权/房屋所有权(首次登记) | 14 | case "A04100"://国有建设用地使用权/房屋所有权(首次登记) |
15 | vm = "fwsyq"; | 15 | vm = "fwsyq"; |
16 | break; | 16 | break; |
17 | case "A23100"://农用地使用权(首次登记) | ||
18 | vm = "nydsyq100"; | ||
19 | break; | ||
17 | case "A05200": | 20 | case "A05200": |
18 | case "A05300": | 21 | case "A05300": |
19 | case "A05400": | 22 | case "A05400": | ... | ... |
-
Please register or sign in to post a comment