Parcourir la source

0903部门任务样式修改fabu

liuhj il y a 3 jours
Parent
commit
97ec5836e9

+ 6 - 0
src/components/OP/AffairsBackward.vue

@@ -9,8 +9,14 @@
                 </template>
             </el-table-column>
             <el-table-column prop="content" label="内容">
+                <template slot-scope="scope">
+                    <el-input v-model="scope.row.content" placeholder="请输入内容"></el-input>
+                </template>
             </el-table-column>
             <el-table-column prop="remark" label="备注">
+                <template slot-scope="scope">
+                    <el-input v-model="scope.row.remark" placeholder="请输入内容"></el-input>
+                </template>
             </el-table-column>
         </el-table>
     </div>

+ 5 - 2
src/components/OP/DepartProcessList.vue

@@ -48,7 +48,7 @@
         </el-step>
     </el-steps>
 </div> -->
-                                        <div style="display: flex;">
+                                        <div class="toppx" style="display: flex;flex-wrap: wrap;">
                                             <div class="step_icon">主要任务:</div>
                                             <div v-for="(stepItem, index) in props.row.stepInfo.steps">
                                                 <div
@@ -68,7 +68,7 @@
                                         </div>
                                         <div v-if="props.row.stepInfo.extraStep.length > 0">
                                             <br />
-                                            <div style="display: flex;">
+                                            <div class="toppx" style="display: flex;flex-wrap: wrap;">
                                                 <div class="step_icon">额外任务:</div>
                                                 <div v-for="(stepItem, index) in props.row.stepInfo.extraStep">
                                                     <div :style="{ 'color': 'black' }">
@@ -593,4 +593,7 @@ export default {
 .over_input .el-textarea {
     width: 70%;
 }
+.toppx>div{
+    margin-top: 5px;
+}
 </style>