u-steps-item.vue 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321
  1. <template>
  2. <view class="u-steps-item" ref="u-steps-item" style="padding-bottom: 60rpx;" :class="[`u-steps-item--${parentData.direction}`]">
  3. <view class="u-steps-item__line" v-if="index + 1 < childLength"
  4. :class="[`u-steps-item__line--${parentData.direction}`]" :style="[lineStyle]"></view>
  5. <view class="u-steps-item__wrapper"
  6. :class="[`u-steps-item__wrapper--${parentData.direction}`, parentData.dot && `u-steps-item__wrapper--${parentData.direction}--dot`]">
  7. <slot name="icon">
  8. <view class="u-steps-item__wrapper__dot" v-if="parentData.dot" :style="{
  9. backgroundColor: statusColor
  10. }">
  11. </view>
  12. <view class="u-steps-item__wrapper__icon" v-else-if="parentData.activeIcon || parentData.inactiveIcon">
  13. <u-icon :name="index <= parentData.current ? parentData.activeIcon : parentData.inactiveIcon"
  14. :size="iconSize"
  15. :color="index <= parentData.current ? parentData.activeColor : parentData.inactiveColor">
  16. </u-icon>
  17. </view>
  18. <view v-else :style="{
  19. backgroundColor: statusClass === 'process' ? parentData.activeColor : 'transparent',
  20. borderColor: statusColor
  21. }" class="u-steps-item__wrapper__circle">
  22. <text v-if="statusClass === 'process' || statusClass === 'wait'"
  23. class="u-steps-item__wrapper__circle__text" :style="{
  24. color: index == parentData.current ? '#ffffff' : parentData.inactiveColor
  25. }">{{ index + 1}}</text>
  26. <u-icon v-else :color="statusClass === 'error' ? 'error' : parentData.activeColor" size="12"
  27. :name="statusClass === 'error' ? 'close' : 'checkmark'"></u-icon>
  28. </view>
  29. </slot>
  30. </view>
  31. <view class="u-steps-item__content" :class="[`u-steps-item__content--${parentData.direction}`]"
  32. :style="[contentStyle]">
  33. <u--text :text="title" :type="parentData.current == index ? 'main' : 'content'" lineHeight="20px"
  34. :size="parentData.current == index ? 14 : 13"></u--text>
  35. <view style="margin-top: 10rpx;">
  36. </view>
  37. <slot name="desc">
  38. <u--text :text="desc" type="tips" size="12"></u--text>
  39. </slot>
  40. </view>
  41. <!-- <view
  42. class="u-steps-item__line"
  43. v-if="showLine && parentData.direction === 'column'"
  44. :class="[`u-steps-item__line--${parentData.direction}`]"
  45. :style="[lineStyle]"
  46. ></view> -->
  47. </view>
  48. </template>
  49. <script>
  50. import props from './props.js';
  51. // #ifdef APP-NVUE
  52. const dom = uni.requireNativePlugin('dom')
  53. // #endif
  54. /**
  55. * StepsItem 步骤条的子组件
  56. * @description 本组件需要和u-steps配合使用
  57. * @tutorial https://uviewui.com/components/steps.html
  58. * @property {String} title 标题文字
  59. * @property {String} current 描述文本
  60. * @property {String | Number} iconSize 图标大小 (默认 17 )
  61. * @property {Boolean} error 当前步骤是否处于失败状态 (默认 false )
  62. * @example <u-steps current="0"><u-steps-item title="已出库" desc="10:35" ></u-steps-item></u-steps>
  63. */
  64. export default {
  65. name: 'u-steps-item',
  66. mixins: [uni.$u.mpMixin, uni.$u.mixin, props],
  67. data() {
  68. return {
  69. index: 0,
  70. childLength: 0,
  71. showLine: false,
  72. size: {
  73. height: 50,
  74. width: 50
  75. },
  76. parentData: {
  77. direction: 'row',
  78. current: 0,
  79. activeColor: '',
  80. inactiveColor: '',
  81. activeIcon: '',
  82. inactiveIcon: '',
  83. dot: false
  84. }
  85. }
  86. },
  87. watch: {
  88. 'parentData'(newValue, oldValue) {}
  89. },
  90. created() {
  91. this.init()
  92. },
  93. computed: {
  94. lineStyle() {
  95. const style = {}
  96. if (this.parentData.direction === 'row') {
  97. style.width = this.size.width + 'px'
  98. style.left = this.size.width / 2 + 'px'
  99. } else {
  100. // style.height = this.size.height + 'px'
  101. // style.top = this.size.height / 2 + 'px'
  102. style.height = 50 + 'px'
  103. style.top = 50 / 2 + 'px'
  104. }
  105. style.backgroundColor = this.parent.children?.[this.index + 1]?.error ? uni.$u.color.error : this.index <
  106. this
  107. .parentData
  108. .current ? this.parentData.activeColor : this.parentData.inactiveColor
  109. return style
  110. },
  111. statusClass() {
  112. const {
  113. index,
  114. error
  115. } = this
  116. const {
  117. current
  118. } = this.parentData
  119. if (current == index) {
  120. return error === true ? 'error' : 'process'
  121. } else if (error) {
  122. return 'error'
  123. } else if (current > index) {
  124. return 'finish'
  125. } else {
  126. return 'wait'
  127. }
  128. },
  129. statusColor() {
  130. let color = ''
  131. switch (this.statusClass) {
  132. case 'finish':
  133. color = this.parentData.activeColor
  134. break
  135. case 'error':
  136. color = uni.$u.color.error
  137. break
  138. case 'process':
  139. color = this.parentData.dot ? this.parentData.activeColor : 'transparent'
  140. break
  141. default:
  142. color = this.parentData.inactiveColor
  143. break
  144. }
  145. return color
  146. },
  147. contentStyle() {
  148. const style = {}
  149. if (this.parentData.direction === 'column') {
  150. style.marginLeft = this.parentData.dot ? '2px' : '6px'
  151. style.marginTop = this.parentData.dot ? '0px' : '6px'
  152. } else {
  153. style.marginTop = this.parentData.dot ? '2px' : '6px'
  154. style.marginLeft = this.parentData.dot ? '2px' : '6px'
  155. }
  156. return style
  157. }
  158. },
  159. mounted() {
  160. this.parent && this.parent.updateFromChild()
  161. uni.$u.sleep().then(() => {
  162. this.getStepsItemRect()
  163. })
  164. },
  165. methods: {
  166. init() {
  167. // 初始化数据
  168. this.updateParentData()
  169. if (!this.parent) {
  170. return uni.$u.error('u-steps-item必须要搭配u-steps组件使用')
  171. }
  172. this.index = this.parent.children.indexOf(this)
  173. this.childLength = this.parent.children.length
  174. },
  175. updateParentData() {
  176. // 此方法在mixin中
  177. this.getParentData('u-steps')
  178. },
  179. // 父组件数据发生变化
  180. updateFromParent() {
  181. this.init()
  182. },
  183. // 获取组件的尺寸,用于设置横线的位置
  184. getStepsItemRect() {
  185. // #ifndef APP-NVUE
  186. this.$uGetRect('.u-steps-item').then(size => {
  187. this.size = size
  188. })
  189. // #endif
  190. // #ifdef APP-NVUE
  191. dom.getComponentRect(this.$refs['u-steps-item'], res => {
  192. const {
  193. size
  194. } = res
  195. this.size = size
  196. })
  197. // #endif
  198. }
  199. }
  200. }
  201. </script>
  202. <style lang="scss" scoped>
  203. @import "../../libs/css/components.scss";
  204. .u-steps-item {
  205. flex: 1;
  206. @include flex;
  207. &--row {
  208. flex-direction: column;
  209. align-items: center;
  210. position: relative;
  211. }
  212. &--column {
  213. position: relative;
  214. flex-direction: row;
  215. justify-content: flex-start;
  216. padding-bottom: 5px;
  217. }
  218. &__wrapper {
  219. @include flex;
  220. justify-content: center;
  221. align-items: center;
  222. position: relative;
  223. background-color: #fff;
  224. &--column {
  225. width: 20px;
  226. height: 32px;
  227. &--dot {
  228. height: 20px;
  229. width: 20px;
  230. }
  231. }
  232. &--row {
  233. width: 32px;
  234. height: 20px;
  235. &--dot {
  236. width: 20px;
  237. height: 20px;
  238. }
  239. }
  240. &__circle {
  241. width: 20px;
  242. height: 20px;
  243. /* #ifndef APP-NVUE */
  244. box-sizing: border-box;
  245. flex-shrink: 0;
  246. /* #endif */
  247. border-radius: 100px;
  248. border-width: 1px;
  249. border-color: $u-tips-color;
  250. border-style: solid;
  251. @include flex(row);
  252. align-items: center;
  253. justify-content: center;
  254. transition: background-color 0.3s;
  255. &__text {
  256. color: $u-tips-color;
  257. font-size: 11px;
  258. @include flex(row);
  259. align-items: center;
  260. justify-content: center;
  261. text-align: center;
  262. line-height: 11px;
  263. }
  264. }
  265. &__dot {
  266. width: 10px;
  267. height: 10px;
  268. border-radius: 100px;
  269. background-color: $u-content-color;
  270. }
  271. }
  272. &__content {
  273. @include flex;
  274. flex: 1;
  275. &--row {
  276. flex-direction: column;
  277. align-items: center;
  278. }
  279. &--column {
  280. flex-direction: column;
  281. margin-left: 6px;
  282. }
  283. }
  284. &__line {
  285. position: absolute;
  286. background: $u-tips-color;
  287. &--row {
  288. top: 10px;
  289. height: 1px;
  290. }
  291. &--column {
  292. width: 1px;
  293. left: 10px;
  294. }
  295. }
  296. }
  297. </style>