|
@@ -0,0 +1,96 @@
|
|
|
|
|
+<template>
|
|
|
|
|
+ <view class="page">
|
|
|
|
|
+ <uni-nav-bar :fixed="true" background-color="#FFE05C" :border="false" :statusBar="true" left-icon="left"
|
|
|
|
|
+ title="新增分组" @clickLeft="back" />
|
|
|
|
|
+ <view>
|
|
|
|
|
+
|
|
|
|
|
+ <u--form labelPosition="left" :model="form" :rules="rules" ref="uForm">
|
|
|
|
|
+
|
|
|
|
|
+ <u-form-item prop="groupName" borderBottom>
|
|
|
|
|
+ <view class="item">
|
|
|
|
|
+ <text class="key">分组名称</text>
|
|
|
|
|
+ <view class="flex-row input">
|
|
|
|
|
+ <u--input v-model="form.groupName" placeholder="请输入分组名称" border="none"></u--input>
|
|
|
|
|
+ </view>
|
|
|
|
|
+ </view>
|
|
|
|
|
+ </u-form-item>
|
|
|
|
|
+
|
|
|
|
|
+ <u-form-item prop="userInfo.sex" borderBottom>
|
|
|
|
|
+ <view class="item">
|
|
|
|
|
+ <text class="key">负责人</text>
|
|
|
|
|
+ <view class="flex-row input">
|
|
|
|
|
+ <u--input disabled placeholder="请选择负责人" border="none"></u--input>
|
|
|
|
|
+ <u-icon name="arrow-right"></u-icon>
|
|
|
|
|
+ </view>
|
|
|
|
|
+ </view>
|
|
|
|
|
+ </u-form-item>
|
|
|
|
|
+
|
|
|
|
|
+ <u-form-item prop="userInfo.sex" borderBottom>
|
|
|
|
|
+ <view class="item">
|
|
|
|
|
+ <text class="key">分组成员</text>
|
|
|
|
|
+ <view class="flex-row input">
|
|
|
|
|
+ <u--input disabled placeholder="请选择分组成员" border="none"></u--input>
|
|
|
|
|
+ <u-icon name="arrow-right"></u-icon>
|
|
|
|
|
+ </view>
|
|
|
|
|
+ </view>
|
|
|
|
|
+ </u-form-item>
|
|
|
|
|
+
|
|
|
|
|
+ </u--form>
|
|
|
|
|
+
|
|
|
|
|
+ <view class="members">
|
|
|
|
|
+ <view class="membersTitle ">
|
|
|
|
|
+ <text>已选择的分组成员</text>
|
|
|
|
|
+ </view>
|
|
|
|
|
+ <scroll-view scroll-y class="scroll-y" >
|
|
|
|
|
+ <view class="flex-row justify-between member" v-for="item in 10">
|
|
|
|
|
+ <view class="flex-row">
|
|
|
|
|
+ <u-icon name="account-fill" size="24"></u-icon>
|
|
|
|
|
+ <text class="name">张三</text>
|
|
|
|
|
+ </view>
|
|
|
|
|
+ <view>
|
|
|
|
|
+ <u-icon name="trash" size="24"></u-icon>
|
|
|
|
|
+ </view>
|
|
|
|
|
+ </view>
|
|
|
|
|
+ </scroll-view>
|
|
|
|
|
+
|
|
|
|
|
+ </view>
|
|
|
|
|
+
|
|
|
|
|
+ </view>
|
|
|
|
|
+ <view class="addGroup">
|
|
|
|
|
+ <text>提交</text>
|
|
|
|
|
+ </view>
|
|
|
|
|
+ </view>
|
|
|
|
|
+</template>
|
|
|
|
|
+
|
|
|
|
|
+<script>
|
|
|
|
|
+ export default {
|
|
|
|
|
+ data() {
|
|
|
|
|
+ return {
|
|
|
|
|
+ height: '',
|
|
|
|
|
+ form:{
|
|
|
|
|
+ groupName:''
|
|
|
|
|
+ },
|
|
|
|
|
+ rules: {
|
|
|
|
|
+ 'groupName': {
|
|
|
|
|
+ type: 'string',
|
|
|
|
|
+ required: true,
|
|
|
|
|
+ min:1,
|
|
|
|
|
+ message: '请输入分组名称',
|
|
|
|
|
+ trigger: ['blur', 'change']
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
|
|
+ onLoad(e) {
|
|
|
|
|
+ let sysInfo = uni.getSystemInfoSync()
|
|
|
|
|
+ this.height = sysInfo.windowHeight - 120 + 'px' //除标题栏栏外的屏幕可用高度
|
|
|
|
|
+ },
|
|
|
|
|
+ methods: {
|
|
|
|
|
+
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+</script>
|
|
|
|
|
+
|
|
|
|
|
+<style lang="scss" scoped>
|
|
|
|
|
+ @import './index.rpx.css';
|
|
|
|
|
+</style>
|