|
@@ -1,6 +1,6 @@
|
|
|
<template>
|
|
|
<div class="app-container">
|
|
|
- <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px">
|
|
|
+ <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px" class="xinzeng">
|
|
|
<el-form-item label="任务名称" prop="jobName">
|
|
|
<el-input
|
|
|
v-model="queryParams.jobName"
|
|
@@ -276,7 +276,7 @@
|
|
|
<el-form-item label="任务名称" prop="jobName">
|
|
|
<el-input style="width: 80%" v-model="form.jobName" placeholder="请输入任务名称"/>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="填报附件" label-width="50px" prop="attachPath">
|
|
|
+ <el-form-item label="填报附件" label-width="50px" prop="attachPath" class="tbfj">
|
|
|
<fileUpload :limit="1" :fileType="fileType" v-model="form.attachPath" :setFileName="setFileName"
|
|
|
:removeFileName="removeFile"></fileUpload>
|
|
|
</el-form-item>
|
|
@@ -785,3 +785,21 @@ export default {
|
|
|
}
|
|
|
};
|
|
|
</script>
|
|
|
+<style>
|
|
|
+.xinzeng .el-input.is-disabled .el-input__inner, .el-input--medium .el-input__inner {
|
|
|
+ background-color: #fff !important;
|
|
|
+ width: 320px !important;
|
|
|
+ border-radius: 0px;
|
|
|
+}
|
|
|
+.xinzeng .el-form-item--medium .el-form-item__label {
|
|
|
+ width: 130px !important;
|
|
|
+}
|
|
|
+
|
|
|
+.el-form-item__label{
|
|
|
+ font-weight: normal !important;
|
|
|
+ white-space:nowrap !important;
|
|
|
+}
|
|
|
+.tbfj .el-form-item__label{
|
|
|
+ width: 68px !important;
|
|
|
+}
|
|
|
+</style>
|