|
@@ -41,6 +41,17 @@
|
|
<el-button v-if="!Schedule" size="small" class="biz_buttom" type="primary" @click="changeSchedule"> 保存 </el-button>
|
|
<el-button v-if="!Schedule" size="small" class="biz_buttom" type="primary" @click="changeSchedule"> 保存 </el-button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
+ <!-- 任务关闭 -->
|
|
|
|
+ <p class="biz_property">
|
|
|
|
+ 任务关闭
|
|
|
|
+ <i v-if="Prohibit" class="el-icon-edit icon-sty" @click="Prohibit = false" />
|
|
|
|
+ </p>
|
|
|
|
+ <el-radio-group v-model="radio" :disabled="Prohibit" class="biz_radio">
|
|
|
|
+ <el-radio label="0"> 允许 </el-radio>
|
|
|
|
+ <el-radio label="1"> 不允许</el-radio>
|
|
|
|
+ </el-radio-group>
|
|
|
|
+ <el-button v-if="!Prohibit" size="small" class="biz_buttom" @click="cancel"> 取消 </el-button>
|
|
|
|
+ <el-button v-if="!Prohibit" size="small" class="biz_buttom" type="primary" @click="preservation"> 保存 </el-button>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
|
|
|