吉安感知网项目-前端
shuishen
2026-01-23 79702b005a055df600ad61b19c2e7a4a01cc3d40
applications/task-work-order/src/views/orderView/orderManage/orderManage/FormDiaLog.vue
@@ -10,7 +10,7 @@
   >
      <div class="content" style="display: flex">
         <div class="processBox" v-if="dialogMode !== 'add' && processList.length">
            <el-timeline>
            <el-timeline class="gd-timeline">
               <el-timeline-item
                  v-for="(activity, index) in processList"
                  :key="index"
@@ -149,7 +149,14 @@
                  </el-col>
                  <el-col :span="24">
                     <el-form-item label="工单备注" prop="remark">
                        <el-input class="gd-input" type="textarea" v-model="formData.remark" placeholder="请输入" clearable />
                        <el-input
                           class="gd-input"
                           type="textarea"
                           :rows="4"
                           v-model="formData.remark"
                           placeholder="请输入"
                           clearable
                        />
                     </el-form-item>
                  </el-col>
               </el-row>
@@ -182,7 +189,7 @@
                  <el-table-column prop="devicePayload" label="设备负载" />
               </el-table>
            </template>
            <div v-else>请先选择设备需求并在地图上绘制工单范围</div>
            <div v-else class="tipSelect">请先选择设备需求并在地图上绘制工单范围</div>
         </div>
      </div>
@@ -603,22 +610,21 @@
   .processBox {
      width: 312px;
      .el-timeline {
         padding-left: 100px;
      }
      .item-content {
         position: relative;
         .flowName {
            width: 80px;
            position: absolute;
            left: -100px;
            top: 0;
            left: -120px;
            top: 0px;
         }
      }
   }
}
.setHeight {
   //max-height: 300px;
   //min-height: 200px;
.tipSelect {
   text-align: center;
   height: 200px;
   line-height: 200px;
}
</style>