执法立案统计、执法信息填报功能开发,修改前端样式
This commit is contained in:
parent
d2ad899f8b
commit
80c4839538
|
|
@ -107,10 +107,7 @@
|
|||
<el-button type="danger" size="small"
|
||||
style="position: absolute; top: 5px; right: 5px; transform: translate(50%, -50%); border-radius: 50%; width: 20px; height: 20px; padding: 0;"
|
||||
@click="saveSignatureCbr('')">×
|
||||
</el-button>
|
||||
</div>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
|
||||
<el-col :span="24">
|
||||
<el-form-item label="审核意见" prop="shyj">
|
||||
<el-input v-model="documentData.documenContent.shyj" />
|
||||
|
|
|
|||
|
|
@ -71,14 +71,7 @@
|
|||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="24">
|
||||
<el-form-item label="被检查单位现场负责人电子签名" prop="bjcdwxcfzrqm" label-width="210px">
|
||||
<el-button type="primary" size="small" @click="openSignatureTwo">被检查单位现场负责人电子签名</el-button>
|
||||
<div v-if="documentData.documenContent.bjcdwxcfzrqm" style="border: 1px solid #ccc; margin-left: 10px; display: inline-block; position: relative;">
|
||||
<img :src="documentData.documenContent.bjcdwxcfzrqm" alt="签名" style="height: 100px;"/>
|
||||
<el-button type="danger" size="small"
|
||||
style="position: absolute; top: 5px; right: 5px; transform: translate(50%, -50%); border-radius: 50%; width: 20px; height: 20px; padding: 0;"
|
||||
@click="saveSignatureTwo('')">×
|
||||
</el-button>
|
||||
|
||||
</div>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
|
|
|
|||
|
|
@ -113,17 +113,7 @@
|
|||
<el-col :span="24">
|
||||
<el-form-item label="审批意见" prop="spyj">
|
||||
<el-input v-model="documentData.documenContent.spyj" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="24">
|
||||
<el-form-item label="审批人电子签名" prop="sprqm">
|
||||
<el-button type="primary" size="small" @click="openSignatureSpr">审批人电子签名</el-button>
|
||||
<div v-if="documentData.documenContent.sprqm" style="border: 1px solid #ccc; margin-left: 10px; display: inline-block; position: relative;">
|
||||
<img :src="documentData.documenContent.sprqm" alt="签名" style="height: 100px;"/>
|
||||
<el-button type="danger" size="small"
|
||||
style="position: absolute; top: 5px; right: 5px; transform: translate(50%, -50%); border-radius: 50%; width: 20px; height: 20px; padding: 0;"
|
||||
@click="saveSignatureSpr('')">×
|
||||
</el-button>
|
||||
|
||||
</div>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
|
|
|
|||
|
|
@ -85,15 +85,7 @@
|
|||
</el-card>
|
||||
</div>
|
||||
</el-col>
|
||||
<el-col :span="24">
|
||||
<el-form-item label="检查人员电子签名" prop="jcrydzqm">
|
||||
<el-button type="primary" size="small" @click="openSignatureOne">检查人员电子签名</el-button>
|
||||
<div v-if="documentData.documenContent.jcrydzqm" style="border: 1px solid #ccc; margin-left: 10px; display: inline-block; position: relative;">
|
||||
<img :src="documentData.documenContent.jcrydzqm" alt="签名" style="height: 100px;"/>
|
||||
<el-button type="danger" size="small"
|
||||
style="position: absolute; top: 5px; right: 5px; transform: translate(50%, -50%); border-radius: 50%; width: 20px; height: 20px; padding: 0;"
|
||||
@click="saveSignatureOne('')">×
|
||||
</el-button>
|
||||
|
||||
</div>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
|
|
|
|||
|
|
@ -185,17 +185,7 @@ const state = reactive({
|
|||
importFile: false,
|
||||
exportFile: false,
|
||||
exportSelectFile: false,
|
||||
downloadTemp: false,
|
||||
},
|
||||
tableConfig: {
|
||||
tableData: {},
|
||||
hasControlColumn: true,
|
||||
controlWidth: props.isNotDialog ? '180' : '80',
|
||||
multipleSelect: props.isNotDialog,
|
||||
selectable: (row) => {
|
||||
return row.deliveryMethod?.methodName === '电子送达' && row.deliveryType === '2'
|
||||
}
|
||||
},
|
||||
|
||||
apiConfig: {
|
||||
api: deliveryRecords,
|
||||
modelId: 'deliveryId',
|
||||
|
|
|
|||
|
|
@ -72,6 +72,7 @@ public class AuthService {
|
|||
.build();
|
||||
ResponseEntity<Map<String, Object>> responseEntity = restTemplate.exchange(requestEntity, new ParameterizedTypeReference<>() {
|
||||
});
|
||||
|
||||
log.debug("sysLogout response:{}", responseEntity.getBody());
|
||||
return responseEntity.getBody();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue