|
|
@ -2,17 +2,17 @@ |
|
|
|
<div style="padding: 15px; width: 330px"> |
|
|
|
<div class="form"> |
|
|
|
<!-- 项目名称 --> |
|
|
|
<div class="flex items-center" style="border-bottom: 1px solid #dcdfe6"> |
|
|
|
<div class="flex items-center"> |
|
|
|
<div>名称</div> |
|
|
|
<u-input v-model="nameValue" :type="type" :border="border" /> |
|
|
|
</div> |
|
|
|
<!-- 起止时间 --> |
|
|
|
<div class="flex items-center" style="border-bottom: 1px solid #dcdfe6"> |
|
|
|
<div class="flex items-center"> |
|
|
|
<div>起止-截止时间</div> |
|
|
|
<u-input v-model="timeValue" :type="type" :border="border" /> |
|
|
|
</div> |
|
|
|
<!-- 多选框 --> |
|
|
|
<div class="flex justify-between items-center" style="border-bottom: 1px solid #dcdfe6; width: 100%"> |
|
|
|
<div class="flex justify-between items-center"> |
|
|
|
<div>负责人</div> |
|
|
|
<div class="" label="负责人" style="width: 85%"> |
|
|
|
<u-dropdown ref="uDropdown"> |
|
|
@ -41,12 +41,12 @@ |
|
|
|
<!-- 下拉框的内容 --> |
|
|
|
<div v-if="show"> |
|
|
|
<!-- 描述 --> |
|
|
|
<div class="flex items-center" style="border-bottom: 1px solid #dcdfe6"> |
|
|
|
<div class="flex items-center"> |
|
|
|
<div>描述</div> |
|
|
|
<u-input v-model="decripeValue" :type="type" :border="border" /> |
|
|
|
</div> |
|
|
|
<!-- 所属项目 --> |
|
|
|
<div class="flex items-center" style="border-bottom: 1px solid #dcdfe6"> |
|
|
|
<div class="flex items-center"> |
|
|
|
<div>所属项目</div> |
|
|
|
<div class="" style="position: relative; background: #fff"> |
|
|
|
<u-input v-model="projectValue" :type="type" :border="border" @click="isProjectShow" /> |
|
|
@ -58,17 +58,17 @@ |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<!-- 所属任务 --> |
|
|
|
<div class="flex items-center" style="border-bottom: 1px solid #dcdfe6"> |
|
|
|
<div class="flex items-center"> |
|
|
|
<div>所属任务</div> |
|
|
|
<u-input v-model="taskValue" :type="type" :border="border" /> |
|
|
|
</div> |
|
|
|
<!-- 上道工序 --> |
|
|
|
<div class="flex items-center" style="border-bottom: 1px solid #dcdfe6"> |
|
|
|
<div class="flex items-center"> |
|
|
|
<div>上道工序</div> |
|
|
|
<u-input v-model="lastValue" :type="type" :border="border" /> |
|
|
|
</div> |
|
|
|
<!-- 检查人多选框 --> |
|
|
|
<div class="flex justify-between items-center" style="border-bottom: 1px solid #dcdfe6; width: 100%"> |
|
|
|
<div class="flex justify-between items-center"> |
|
|
|
<div>检查人</div> |
|
|
|
<div class="" label="检查人" style="width: 85%"> |
|
|
|
<u-dropdown ref="dropdown"> |
|
|
@ -100,7 +100,7 @@ |
|
|
|
<u-input style="border-bottom: 1px solid #dcdfe6" placeholder="交付物名称2" :type="type" :border="border" /> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<u-button class="flex justify-center" style="margin-top: 20px" type="primary">提交</u-button> |
|
|
|
<u-button class="btn flex justify-center" type="primary" shape="circle" size="medium">提交</u-button> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</template> |
|
|
@ -289,4 +289,10 @@ export default { |
|
|
|
border: none !important; |
|
|
|
padding: 5px; |
|
|
|
} |
|
|
|
.u-input { |
|
|
|
border-bottom: 1px solid #ccc; |
|
|
|
} |
|
|
|
.btn { |
|
|
|
margin-top: 20px; |
|
|
|
} |
|
|
|
</style> |
|
|
|