index.vue 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257
  1. <template>
  2. <view class="ti_page">
  3. <view class="form">
  4. <view class="form-item adfacjb">
  5. <view class="form-item-title">团队名称</view>
  6. <view class="form-item-inp">
  7. <u-input v-model="teamInfo.teamName" placeholder="请输入团队名称" border="none" inputAlign="right" fontSize="28rpx" color="#002846"/>
  8. </view>
  9. </view>
  10. <view class="form-item adfacjb">
  11. <view class="form-item-title">所在公司</view>
  12. <view class="form-item-inp">
  13. <u-input v-model="teamInfo.enterpriseName" placeholder="请输入公司名称" border="none" inputAlign="right" fontSize="28rpx" color="#002846"/>
  14. </view>
  15. </view>
  16. <view class="form-item adfacjb">
  17. <view class="form-item-title">所属地区</view>
  18. <view class="form-item-inp adfac" @click="pickerShow('areaShow')">
  19. <text :class="{'active':areaText!=='请选择'}">{{areaText}}</text>
  20. <u-icon name="arrow-right" size="24rpx" color="#B9C0C8"></u-icon>
  21. </view>
  22. </view>
  23. <view class="form-item adfacjb">
  24. <view class="form-item-title red">所属行业</view>
  25. <view class="form-item-inp adfac" @click="pickerShow('industryShow')">
  26. <text :class="{'active':industryText!=='请选择'}">{{industryText}}</text>
  27. <u-icon name="arrow-right" size="20rpx" color="#B9C0C8"></u-icon>
  28. </view>
  29. </view>
  30. <view class="form-item adfacjb">
  31. <view class="form-item-title red">团队职能类型</view>
  32. <view class="form-item-inp adfac" @click="pickerShow('functionTypeShow')">
  33. <text :class="{'active':functionTypeText!=='请选择'}">{{functionTypeText}}</text>
  34. <u-icon name="arrow-right" size="20rpx" color="#B9C0C8"></u-icon>
  35. </view>
  36. </view>
  37. <view class="form-item adfacjb">
  38. <view class="form-item-title red">团队架构类型</view>
  39. <view class="form-item-inp adfac" @click="pickerShow('architectureTypeShow')">
  40. <text :class="{'active':architectureTypeText!=='请选择'}">{{architectureTypeText}}</text>
  41. <u-icon name="arrow-right" size="20rpx" color="#B9C0C8"></u-icon>
  42. </view>
  43. </view>
  44. <view class="form-item adfacjb">
  45. <view class="form-item-title">团队规模</view>
  46. <view class="form-item-inp adfac" @click="selectShow('teamScaleShow')">
  47. <text :class="{'active':teamScaleText!=='请选择'}">{{teamScaleText}}</text>
  48. <u-icon name="arrow-right" size="20rpx" color="#B9C0C8"></u-icon>
  49. </view>
  50. </view>
  51. <view class="form-item adfacjb">
  52. <view class="form-item-title">团队层级</view>
  53. <view class="form-item-inp adfac" @click="selectShow('teamLevelShow')">
  54. <text :class="{'active':teamLevelText!=='请选择'}">{{teamLevelText}}</text>
  55. <u-icon name="arrow-right" size="20rpx" color="#B9C0C8"></u-icon>
  56. </view>
  57. </view>
  58. </view>
  59. <view class="box">
  60. <view class="box-title">团队介绍</view>
  61. <view class="box-textarea">
  62. <u-textarea border="none" height="320rpx" maxlength="-1" fontSize="28rpx" color="#002846" v-model="teamInfo.brief" placeholder="示例:这是一个为公司ERP系统升级而组建的36人团队,成员由公司副总经理、各部门总监以及各部门核心骨干组成。团队成员工作地点分布在香港、上海、苏州、深圳和东莞等地。团队成员年龄在35-50岁之间,男女比例比较均衡,大部份成员在该公司同事超过十年。"></u-textarea>
  63. </view>
  64. </view>
  65. <view class="zt_btn" @click="handleConfirm">{{confirmText}}</view>
  66. <view class="dialog" v-if="areaShow">
  67. <view class="dialog-box">
  68. <cus-province-city-area @cancel="areaShow=false" @confirm="areaConfirm"></cus-province-city-area>
  69. </view>
  70. </view>
  71. <u-picker :itemHeight="88" :immediateChange="true" :show="industryShow" :columns="industryData" title="所属行业"
  72. @cancel="industryShow=false" @confirm="e=>pickerConfirm(e,'industryId','industryText','industryShow')"></u-picker>
  73. <u-picker :itemHeight="88" :immediateChange="true" :show="functionTypeShow" :columns="functionTypeData" title="团队职能类型"
  74. @cancel="functionTypeShow=false" @confirm="e=>pickerConfirm(e,'functionIds','functionTypeText','functionTypeShow')"></u-picker>
  75. <u-picker :itemHeight="88" :immediateChange="true" :show="architectureTypeShow" :columns="architectureTypeData" title="团队架构类型"
  76. @cancel="architectureTypeShow=false" @confirm="e=>pickerConfirm(e,'orgIds','architectureTypeText','architectureTypeShow')"></u-picker>
  77. <cus-select :show="teamScaleShow" title="选择团队规模" :list="teamScaleData" @close="teamScaleShow=false" @confirmTeam="e=>selectConfirm(e,'scale','teamScaleText','teamScaleShow')"></cus-select>
  78. <cus-select :show="teamLevelShow" title="选择团队层级" :list="teamLevelData" @close="teamLevelShow=false" @confirmTeam="e=>selectConfirm(e,'hierarchy','teamLevelText','teamLevelShow')"></cus-select>
  79. </view>
  80. </template>
  81. <script>
  82. import CusSelect from '@/components/CusSelect/index.vue'
  83. import CusProvinceCityArea from '@/components/CusProvinceCityArea/index.vue'
  84. export default {
  85. components:{ CusSelect, CusProvinceCityArea },
  86. props:{
  87. confirmText:{
  88. typeof:String,
  89. default:'下一步'
  90. }
  91. },
  92. data(){
  93. return {
  94. teamInfo:{
  95. teamName:'',
  96. enterpriseName:'',
  97. provinceId:'',
  98. cityId:'',
  99. districtId:'',
  100. industryId:'',
  101. functionIds:[],
  102. orgIds:[],
  103. scale:'',
  104. hierarchy:'',
  105. brief:'',
  106. },
  107. areaShow:false,
  108. areaText:'请选择',
  109. industryShow:false,
  110. industryData:[['行业1','行业2']],
  111. industryText:'请选择',
  112. functionTypeShow:false,
  113. functionTypeData:[['职能类型1','职能类型2']],
  114. functionTypeText:'请选择',
  115. architectureTypeShow:false,
  116. architectureTypeData:[['架构类型1','架构类型2']],
  117. architectureTypeText:'请选择',
  118. teamScaleShow:false,
  119. teamScaleData:[],
  120. teamScaleText:'请选择',
  121. teamLevelShow:false,
  122. teamLevelData:[],
  123. teamLevelText:'请选择',
  124. }
  125. },
  126. methods:{
  127. getTeamScaleData(){
  128. this.$api.get('/getListByType/team_scale').then(({data:res})=>{
  129. if(res.code!==0) return this.$showToast(res.msg)
  130. this.teamScaleData = res.data.map(d=>({name:d.dictLabel,id:d.dictValue}))
  131. })
  132. },
  133. getTeamHierarchyData(){
  134. this.$api.get('/getListByType/team_hierarchy').then(({data:res})=>{
  135. if(res.code!==0) return this.$showToast(res.msg)
  136. this.teamLevelData = res.data.map(d=>({name:d.dictLabel,id:d.dictValue}))
  137. })
  138. },
  139. confirm(e) {
  140. const { value } = e;
  141. this.areaText = value.map(item => item.label).join('-');
  142. this.areaShow = false;
  143. },
  144. cancel() {
  145. this.areaShow = false;
  146. },
  147. close() {
  148. this.areaShow = false;
  149. },
  150. pickerShow(key){
  151. this[key] = true;
  152. },
  153. selectShow(key){
  154. this[key] = true;
  155. this.$nextTick(()=>{
  156. if(key==='teamScaleShow') this.getTeamScaleData();
  157. if(key==='teamLevelShow') this.getTeamHierarchyData();
  158. })
  159. },
  160. pickerConfirm(e,key1,key2,key3){
  161. this.teamInfo[key1] = e.value[0].id;
  162. this[key2] = e.value[0].name;
  163. this[key3] = false;
  164. },
  165. selectConfirm(e,key1,key2,key3){
  166. this.teamInfo[key1] = e.id;
  167. this[key2] = e.name;
  168. this[key3] = false;
  169. },
  170. handleConfirm(){
  171. // if(!this.teamInfo.industryId) return this.$showToast('请选择所属行业')
  172. // if(!this.teamInfo.functionIds) return this.$showToast('请选择团队职能类型')
  173. // if(!this.teamInfo.orgIds) return this.$showToast('请选择团队架构类型')
  174. this.$emit('handleConfirm',this.teamInfo)
  175. },
  176. areaConfirm(e){
  177. const { provinceId, cityId,districtId,provinceName,cityName,districtName } = e
  178. this.teamInfo.provinceId = provinceId;
  179. this.teamInfo.cityId = cityId;
  180. this.teamInfo.districtId = districtId;
  181. this.areaText = provinceName+' '+cityName+' '+districtName;
  182. this.areaShow = false;
  183. }
  184. }
  185. }
  186. </script>
  187. <style scoped lang="scss">
  188. .ti_page{
  189. width: 100%;
  190. padding: 0 24rpx 162rpx;
  191. box-sizing: border-box;
  192. .form{
  193. margin-top: 20rpx;
  194. background: #FFFFFF;
  195. border-radius: 24rpx;
  196. &-item{
  197. padding: 28rpx 24rpx;
  198. box-shadow: inset 0rpx -1rpx 0rpx 0rpx #EFEFEF;
  199. &-title{
  200. font-family: PingFangSC, PingFang SC;
  201. font-weight: 400;
  202. font-size: 30rpx;
  203. color: #002846;
  204. line-height: 42rpx;
  205. position: relative;
  206. padding-right: 23rpx;
  207. &.red{
  208. &::after{
  209. content: "*";
  210. font-family: PingFangSC, PingFang SC;
  211. font-weight: 400;
  212. font-size: 30rpx;
  213. color: #FD4F66;
  214. line-height: 42rpx;
  215. position: absolute;
  216. right: 0;
  217. }
  218. }
  219. }
  220. &-inp{
  221. text{
  222. font-family: PingFangSC, PingFang SC;
  223. font-weight: 400;
  224. font-size: 28rpx;
  225. color: #B3BFC8;
  226. line-height: 40rpx;
  227. margin-right: 10rpx;
  228. &.active{
  229. color: #002846;
  230. line-height: 30rpx;
  231. }
  232. }
  233. }
  234. }
  235. }
  236. .box{
  237. background: #FFFFFF;
  238. box-shadow: inset 0rpx -1rpx 0rpx 0rpx rgba(229,231,235,0.5);
  239. border-radius: 24rpx;
  240. margin-top: 20rpx;
  241. padding: 28rpx 24rpx;
  242. }
  243. .zt_btn{
  244. width: calc(100% - 100rpx);
  245. position: fixed;
  246. left: 50rpx;
  247. bottom: 54rpx;
  248. z-index: 1000;
  249. }
  250. }
  251. </style>