style:申请材料目录
Showing
2 changed files
with
10 additions
and
11 deletions
This diff is collapsed.
Click to expand it.
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-08-02 09:53:05 | 4 | * @LastEditTime: 2023-08-15 09:43:46 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="clmlmx-box"> | 7 | <div class="clmlmx-box"> |
8 | <div class="title">申请材料目录</div> | ||
9 | <lb-table :column="column" :key="key" :heightNumSetting="true" :calcHeight="600" :pagination="false" :data="tableData"> | 8 | <lb-table :column="column" :key="key" :heightNumSetting="true" :calcHeight="600" :pagination="false" :data="tableData"> |
10 | </lb-table> | 9 | </lb-table> |
11 | <div class="text-center"> | 10 | <div class="text-center"> |
... | @@ -61,7 +60,7 @@ | ... | @@ -61,7 +60,7 @@ |
61 | label: "材料名称", | 60 | label: "材料名称", |
62 | render: (h, scope) => { | 61 | render: (h, scope) => { |
63 | return ( | 62 | return ( |
64 | this.formData.ableOperation ? | 63 | (this.formData.ableOperation && scope.row.isrequired != '1') ? |
65 | <el-input value={scope.row.sjmc} onInput={(val) => { scope.row.sjmc = val }}></el-input> : <span>{scope.row.sjmc}</span> | 64 | <el-input value={scope.row.sjmc} onInput={(val) => { scope.row.sjmc = val }}></el-input> : <span>{scope.row.sjmc}</span> |
66 | ) | 65 | ) |
67 | } | 66 | } |
... | @@ -209,14 +208,14 @@ | ... | @@ -209,14 +208,14 @@ |
209 | return new Promise(resolve => { | 208 | return new Promise(resolve => { |
210 | this.unitData = this.$parent.unitData; | 209 | this.unitData = this.$parent.unitData; |
211 | var formdata = new FormData(); | 210 | var formdata = new FormData(); |
212 | formdata.append("bsmSlsq", Vue.prototype.$currentRoute.query.bsmSlsq); | 211 | formdata.append("bsmSlsq", Vue.prototype.$currentRoute.query.bsmSlsq); |
213 | if (Vue.prototype.$currentRoute.query.sqywbm == "DJBBL") { | 212 | if (Vue.prototype.$currentRoute.query.sqywbm == "DJBBL") { |
214 | formdata.append("bsmSldy", this.formData.bsmRepair); | 213 | formdata.append("bsmSldy", this.formData.bsmRepair); |
215 | formdata.append("clfl", 3); | 214 | formdata.append("clfl", 3); |
216 | } else { | 215 | } else { |
217 | formdata.append("bsmSldy", this.formData.unitData[0]?.bsmSldy); | 216 | formdata.append("bsmSldy", this.formData.unitData[0]?.bsmSldy); |
218 | formdata.append("clfl", 2); | 217 | formdata.append("clfl", 2); |
219 | } | 218 | } |
220 | InitClml(formdata).then((res) => { | 219 | InitClml(formdata).then((res) => { |
221 | if (res.code == 200) { | 220 | if (res.code == 200) { |
222 | resolve(res.code) | 221 | resolve(res.code) | ... | ... |
-
Please register or sign in to post a comment