| | |
| | | <el-table-column fixed="right" :label="$t('film.operate')" align="center" width="270"> |
| | | <template #default="scope"> |
| | | <el-input v-model="inputQuantities[scope.row.slot]" type="number" min="0" @input="handleInput(scope.row)" |
| | | :placeholder="$t('basicData.selectquantity')" v-if ="scope.row.slot < 99" |
| | | :placeholder="$t('basicData.selectquantity')" v-if ="scope.row.slot != 99" |
| | | style="width: 120px; margin-right: 10px;"> |
| | | </el-input> |
| | | <el-button type="text" v-if = "scope.row.slot < 99" :disabled="isPaused || hasRunningTask" @click="handleBind(scope.row)"> |
| | | <el-button type="text" v-if = "scope.row.slot != 99" :disabled="isPaused || hasRunningTask" @click="handleBind(scope.row)"> |
| | | {{ $t('basicData.startloading') }} </el-button> |
| | | </template> |
| | | </el-table-column> |
| | |
| | | <!-- 工程列表展示 --> |
| | | <div v-if="pauseEngineeringList.length > 0"> |
| | | <div style="text-align: center; margin-bottom: 10px;"> |
| | | {{ $t('basicData.isEnable')}}{{ pauseEngineeringList[0].engineerId }}{{ $t('basicData.project') }} |
| | | {{ $t('basicData.isEnable')}} {{ pauseEngineeringList[0].engineerId }} {{ $t('basicData.project') }} |
| | | </div> |
| | | </div> |
| | | |
| | | <!-- 无暂停工程时的提示 --> |
| | | <div v-else class="no-data" style="text-align: center; padding: 20px;"> |
| | | <el-empty description="No pause engineering" /> |