吉安感知网项目-前端
罗广辉
3 hours ago ad57696cef86a678512e93207bc5538d30bc40ee
applications/task-work-order/src/views/orderView/appConfiguration/process/index.vue
@@ -27,20 +27,20 @@
         </el-form-item>
      </el-form>
      <div class="gd-table-toolbar">
         <el-button :icon="Plus" color="#4C34FF" type="primary"  @click="handleCreate">
            创建
         </el-button>
         <el-button
            :icon="Delete"
            @click="handleBatchDelete"
         >
            删除
         </el-button>
      </div>
      <div class="gd-table-container" v-loading="loading">
         <div class="gd-table-toolbar">
            <el-button :icon="Plus" color="#4C34FF" type="primary"  @click="handleCreate">
               创建
            </el-button>
            <el-button
               :icon="Delete"
                 color="#ECECF4"
               @click="handleBatchDelete"
            >
               删除
            </el-button>
         </div>
         <div class="gd-table-content gd-table-content-bg">
            <el-table class="gd-table" :data="list" @selection-change="selectionChange">
               <el-table-column type="selection" width="55" />
@@ -59,7 +59,7 @@
               </el-table-column>
               <el-table-column prop="created" show-overflow-tooltip label="创建时间" />
               <el-table-column prop="lastUpdated" show-overflow-tooltip label="更新时间" />
               <el-table-column label="操作" class-name="operation-btns" width="200">
               <el-table-column label="操作" class-name="operation-btns" width="200" fixed="right">
                  <template v-slot="{ row }">
                     <el-link type="primary"  @click="handleUpdate(row)">配置</el-link>
                     <el-link type="primary" @click="handleDeploy(row)">部署</el-link>
@@ -84,7 +84,7 @@
      <!-- 流程配置弹框 - designMode -->
      <FlowConfigDialog
         v-if="flowConfigDialogVisible && website.design.designMode"
         v-model="flowConfigDialogVisible"
         ref="flowConfigDialogRef"
         @success="getList"
      />
@@ -98,7 +98,7 @@
      />
      <!-- 流程部署弹框 -->
      <DeployDialog v-if="deployDialogVisible" v-model="deployDialogVisible" ref="deployDialogRef" />
      <DeployDialog v-if="deployDialogVisible"  ref="deployDialogRef" />
   </basic-container>
</template>