|
@@ -1,5 +1,5 @@
|
|
|
<template>
|
|
|
- <div class="main" v-show='visible'>
|
|
|
+ <div class="main" v-show="visible">
|
|
|
<div>
|
|
|
<a-button type="primary" v-print="'#print-container2'" :disabled="disabled">打印</a-button>
|
|
|
<a-button style="margin-left: 8px" @click="handleCancel()">返回</a-button>
|
|
@@ -78,7 +78,7 @@
|
|
|
<td colspan="3">工作优选权</td>
|
|
|
<td colspan="27">
|
|
|
{{ model.requireHours }}小时
|
|
|
-<!-- <a-radio-group v-model="value3">
|
|
|
+ <!-- <a-radio-group v-model="value3">
|
|
|
<a-radio :value="1">
|
|
|
<a-icon class="check" v-show="value3 ==1" type="check" />紧急
|
|
|
</a-radio>
|
|
@@ -103,35 +103,51 @@
|
|
|
<tr>
|
|
|
<td colspan="3">工作类型</td>
|
|
|
<td colspan="27" >
|
|
|
- <a-radio-group v-model="value4">
|
|
|
- <a-radio :value="1">
|
|
|
- <a-icon class="check" v-show="value4 ==1" type="check" /><span style='font-size: 13px;'>普通作业</span>
|
|
|
- </a-radio>
|
|
|
- <a-radio :value="2">
|
|
|
- <a-icon class="check" v-show="value4 ==2" type="check" /><span style='font-size: 13px;'>动火作业</span>
|
|
|
- </a-radio>
|
|
|
- <a-radio :value="3">
|
|
|
- <a-icon class="check" v-show="value4 ==3" type="check" /><span style='font-size: 13px;'>受限空间作业</span>
|
|
|
- </a-radio>
|
|
|
- <a-radio :value="4">
|
|
|
- <a-icon class="check" v-show="value4 ==4" type="check" /><span style='font-size: 13px;'>高处作业</span>
|
|
|
- </a-radio>
|
|
|
- <a-radio :value="5">
|
|
|
- <a-icon class="check" v-show="value4 ==5" type="check" /><span style='font-size: 13px;'>吊装作业</span>
|
|
|
- </a-radio>
|
|
|
- <a-radio :value="6">
|
|
|
- <a-icon class="check" v-show="value4 ==6" type="check" /><span style='font-size: 13px;'>动土作业</span>
|
|
|
- </a-radio>
|
|
|
- <a-radio :value="7">
|
|
|
- <a-icon class="check" v-show="value4 ==7" type="check" /><span style='font-size: 13px;'>断路作业</span>
|
|
|
- </a-radio>
|
|
|
- <a-radio :value="8">
|
|
|
- <a-icon class="check" v-show="value4 ==8" type="check" /><span style='font-size: 13px;'>设备检修作业</span>
|
|
|
- </a-radio>
|
|
|
- <a-radio :value="9">
|
|
|
- <a-icon class="check" v-show="value4 ==9" type="check" /><span style='font-size: 13px;'>盲板抽堵作业</span>
|
|
|
- </a-radio>
|
|
|
- </a-radio-group></td>
|
|
|
+ <a-checkbox-group v-model="value4" @change="onChange">
|
|
|
+ <a-checkbox :value="1">
|
|
|
+ <span style="position:relative">
|
|
|
+ <a-icon class="checks" v-show="value4.includes(1)" type="check" /><span style="font-size: 13px;">普通作业</span>
|
|
|
+ </span></a-checkbox>
|
|
|
+ <a-checkbox :value="2">
|
|
|
+ <span style="position:relative">
|
|
|
+ <a-icon class="checks" v-show="value4.includes(2)" type="check" /><span style="font-size: 13px;">动火作业</span>
|
|
|
+ </span></a-checkbox>
|
|
|
+ <a-checkbox :value="3">
|
|
|
+ <span style="position:relative">
|
|
|
+
|
|
|
+ <a-icon class="checks" v-show="value4.includes(3)" type="check" /><span style="font-size: 13px;">受限空间作业</span>
|
|
|
+ </span></a-checkbox>
|
|
|
+ <a-checkbox :value="4">
|
|
|
+ <span style="position:relative">
|
|
|
+
|
|
|
+ <a-icon class="checks" v-show="value4.includes(4)" type="check" /><span style="font-size: 13px;">高处作业</span>
|
|
|
+ </span></a-checkbox>
|
|
|
+ <a-checkbox :value="5">
|
|
|
+ <span style="position:relative">
|
|
|
+
|
|
|
+ <a-icon class="checks" v-show="value4.includes(5)" type="check" /><span style="font-size: 13px;">吊装作业</span>
|
|
|
+ </span></a-checkbox>
|
|
|
+ <a-checkbox :value="6">
|
|
|
+ <span style="position:relative">
|
|
|
+
|
|
|
+ <a-icon class="checks" v-show="value4.includes(6)" type="check" /><span style="font-size: 13px;">动土作业</span>
|
|
|
+ </span></a-checkbox>
|
|
|
+ <a-checkbox :value="7">
|
|
|
+ <span style="position:relative">
|
|
|
+
|
|
|
+ <a-icon class="checks" v-show="value4.includes(7)" type="check" /><span style="font-size: 13px;">断路作业</span>
|
|
|
+ </span></a-checkbox>
|
|
|
+ <a-checkbox :value="8">
|
|
|
+ <span style="position:relative">
|
|
|
+
|
|
|
+ <a-icon class="checks" v-show="value4.includes(8)" type="check" /><span style="font-size: 13px;">设备检修作业</span>
|
|
|
+ </span></a-checkbox>
|
|
|
+ <a-checkbox :value="9">
|
|
|
+ <span style="position:relative">
|
|
|
+
|
|
|
+ <a-icon class="checks" v-show="value4.includes(9)" type="check" /><span style="font-size: 13px;">盲板抽堵作业</span>
|
|
|
+ </span></a-checkbox>
|
|
|
+ </a-checkbox-group></td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td colspan="3">设备位号</td>
|
|
@@ -146,7 +162,7 @@
|
|
|
<td colspan="14" >
|
|
|
<div>
|
|
|
1、委托内容描述:<br/>
|
|
|
- <a-textarea v-model="value5" disabled='disabled' style="resize:none;border:none;" :rows="4"/>
|
|
|
+ <a-textarea v-model="value5" disabled="disabled" style="resize:none;border:none;" :rows="4"/>
|
|
|
</div>
|
|
|
</td>
|
|
|
<td colspan="1" rowspan="11" style="width: 10px;">检<br/>维<br/>修<br/>单<br/>位<br/>填<br/>写</td>
|
|
@@ -243,7 +259,7 @@ export default {
|
|
|
value1: 1,
|
|
|
value2: null,
|
|
|
value3: null,
|
|
|
- value4: null,
|
|
|
+ value4: [],
|
|
|
value5: null,
|
|
|
value6: null,
|
|
|
value7: null,
|