6ceeae76 by renchao@pashanhoo.com

style;上传

1 parent 26ff6321

8 MB | W: | H:

1.42 MB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-09-12 13:58:04 4 * @LastEditTime: 2023-09-13 09:10:29
5 --> 5 -->
6 <template> 6 <template>
7 <div class="rlPopup"> 7 <div class="rlPopup">
...@@ -273,6 +273,9 @@ ...@@ -273,6 +273,9 @@
273 } 273 }
274 formData.append("bsmSj", this.previewImg.bsmSj); 274 formData.append("bsmSj", this.previewImg.bsmSj);
275 formData.append("bsmSlsq", this.previewImg.bsmSlsq); 275 formData.append("bsmSlsq", this.previewImg.bsmSlsq);
276 if (this.previewImg.imgList.length > 0) {
277 formData.append("index", this.previewImg.imgList[this.previewImg.index].sxh);
278 }
276 uploadBatch(formData).then((res) => { 279 uploadBatch(formData).then((res) => {
277 if (res.code == 200) { 280 if (res.code == 200) {
278 this.$emit('updateList', res.result) 281 this.$emit('updateList', res.result)
......
...@@ -58,7 +58,7 @@ ...@@ -58,7 +58,7 @@
58 </el-radio-group> 58 </el-radio-group>
59 </el-form-item> 59 </el-form-item>
60 </el-col> 60 </el-col>
61 </el-row> 61 </el-row>
62 <el-row> 62 <el-row>
63 <el-col :span="8"> 63 <el-col :span="8">
64 <el-form-item label="业务流程ID" prop="flowid" v-if="form.sqdjyw"> 64 <el-form-item label="业务流程ID" prop="flowid" v-if="form.sqdjyw">
...@@ -102,7 +102,7 @@ ...@@ -102,7 +102,7 @@
102 </el-row> 102 </el-row>
103 </el-form> 103 </el-form>
104 <el-collapse class="modifycollapse" accordion> 104 <el-collapse class="modifycollapse" accordion>
105 <el-collapse-item title="登记类型" name="0" v-if="form.sqdjyw.sqfl=='2'"> 105 <el-collapse-item title="权利信息" name="0" v-if="form.sqdjyw.sqfl=='2'">
106 <lb-table :column="djqxCol" :pagination="false" heightNumSetting :minHeight="160" :data="form.djlx"> 106 <lb-table :column="djqxCol" :pagination="false" heightNumSetting :minHeight="160" :data="form.djlx">
107 </lb-table> 107 </lb-table>
108 </el-collapse-item> 108 </el-collapse-item>
...@@ -203,19 +203,19 @@ ...@@ -203,19 +203,19 @@
203 */ 203 */
204 init () { 204 init () {
205 this.tn = 0; 205 this.tn = 0;
206 if(this.formData.sqfl=="2"){ 206 if (this.formData.sqfl == "2") {
207 this.getDetail(this.formData.bsmSqyw); 207 this.getDetail(this.formData.bsmSqyw);
208 }else{ 208 } else {
209 getDjlxInfo(this.formData.bsmSqyw).then((res) => { 209 getDjlxInfo(this.formData.bsmSqyw).then((res) => {
210 let { result } = res; 210 let { result } = res;
211 this.djlxList = result ? result : []; 211 this.djlxList = result ? result : [];
212 if (this.djlxList.length > 0) { 212 if (this.djlxList.length > 0) {
213 this.getDetail(this.djlxList[0].bsmSqyw); 213 this.getDetail(this.djlxList[0].bsmSqyw);
214 } else { 214 } else {
215 this.getDetail(this.formData.bsmSqyw); 215 this.getDetail(this.formData.bsmSqyw);
216 } 216 }
217 }) 217 })
218 } 218 }
219 }, 219 },
220 /** 220 /**
221 * @description: orderNoChange 221 * @description: orderNoChange
......
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-09-12 15:18:52 4 * @LastEditTime: 2023-09-13 09:18:13
5 --> 5 -->
6 <template> 6 <template>
7 <div class="clmlmx-box"> 7 <div class="clmlmx-box">
...@@ -85,27 +85,7 @@ ...@@ -85,27 +85,7 @@
85 } 85 }
86 }, 86 },
87 { 87 {
88 prop: "smzt", 88 label: "页数",
89 label: "扫描状态",
90 width: "80",
91 render: (h, scope) => {
92 if (scope.row.children && scope.row.children.length > 0) {
93 return (
94 <div>
95 <span>已扫描</span>
96 </div>
97 );
98 } else {
99 return (
100 <div>
101 <span>未扫描</span>
102 </div>
103 );
104 }
105 },
106 },
107 {
108 label: "扫描页数",
109 width: "80", 89 width: "80",
110 render: (h, scope) => { 90 render: (h, scope) => {
111 if (scope.row.count && scope.row.count > 0) { 91 if (scope.row.count && scope.row.count > 0) {
......