|
@@ -23,7 +23,7 @@
|
|
|
placeholder="请输入任务名称" v-model="dataModel.doTaskName" ></ion-input>
|
|
|
<ion-note slot="error">任务名称不能为空</ion-note>
|
|
|
</ion-item>
|
|
|
- <ion-label class="title-item">指派人<span class="danger">*</span></ion-label>
|
|
|
+ <!-- <ion-label class="title-item">指派人<span class="danger">*</span></ion-label>
|
|
|
<ion-item-group style="overflow: hidden;" >
|
|
|
<ion-item style="width:50%;text-align: center;float:left;" v-for="(it,key) in allTaskUserList" :key="key">
|
|
|
<ion-checkbox justify="start" labelPlacement="end" style="width:50%;" name="taskUserItem"
|
|
@@ -31,7 +31,7 @@
|
|
|
{{ it.text }}
|
|
|
</ion-checkbox>
|
|
|
</ion-item>
|
|
|
- </ion-item-group>
|
|
|
+ </ion-item-group>-->
|
|
|
<ion-label class="title-item">完成时间<span class="danger">*</span></ion-label>
|
|
|
<ion-item :class="[workTaskValid.dataModel.finishTime.$error?'ion-invalid':'ion-valid']">
|
|
|
<ion-datetime-button datetime="finishTime"></ion-datetime-button>
|
|
@@ -65,7 +65,7 @@
|
|
|
|
|
|
</ion-content>
|
|
|
<ion-footer>
|
|
|
- <ion-button shape="round" expand="block" @click="onSave">提交</ion-button>
|
|
|
+ <ion-button shape="round" expand="block" @click="onSave">确认完成</ion-button>
|
|
|
</ion-footer>
|
|
|
</ion-page>
|
|
|
</template>
|
|
@@ -269,8 +269,9 @@ export default defineComponent({
|
|
|
|
|
|
.title-item{
|
|
|
margin-left: 15px;
|
|
|
- color:#3a7be0;
|
|
|
- font-size: 16px;
|
|
|
+ color:#1c3d70 !important;
|
|
|
+ font-size: 14px !important;
|
|
|
+ font-weight: bold;
|
|
|
}
|
|
|
|
|
|
|