205 lines
6.5 KiB
JavaScript
205 lines
6.5 KiB
JavaScript
"use strict";
|
|
const common_vendor = require("../../../../common/vendor.js");
|
|
const _sfc_main = {
|
|
name: "u-steps-item",
|
|
mixins: [common_vendor.mpMixin, common_vendor.mixin, common_vendor.props$7],
|
|
data() {
|
|
return {
|
|
index: 0,
|
|
childLength: 0,
|
|
showLine: false,
|
|
size: {
|
|
height: 0,
|
|
width: 0
|
|
},
|
|
parentData: {
|
|
direction: "row",
|
|
current: 0,
|
|
activeColor: "",
|
|
inactiveColor: "",
|
|
activeIcon: "",
|
|
inactiveIcon: "",
|
|
dot: false
|
|
}
|
|
};
|
|
},
|
|
watch: {
|
|
"parentData"(newValue, oldValue) {
|
|
}
|
|
},
|
|
created() {
|
|
this.init();
|
|
},
|
|
computed: {
|
|
lineStyle() {
|
|
var _a, _b;
|
|
const style = {};
|
|
if (this.parentData.direction === "row") {
|
|
style.width = this.size.width + "px";
|
|
style.left = this.size.width / 2 + "px";
|
|
} else {
|
|
style.height = this.size.height + "px";
|
|
}
|
|
style.backgroundColor = ((_b = (_a = this.parent.children) == null ? void 0 : _a[this.index + 1]) == null ? void 0 : _b.error) ? common_vendor.color.error : this.index < this.parentData.current ? this.parentData.activeColor : this.parentData.inactiveColor;
|
|
return style;
|
|
},
|
|
itemStyleInner() {
|
|
return {
|
|
...this.itemStyle
|
|
};
|
|
},
|
|
statusClass() {
|
|
const {
|
|
index,
|
|
error
|
|
} = this;
|
|
const {
|
|
current
|
|
} = this.parentData;
|
|
if (current == index) {
|
|
return error === true ? "error" : "process";
|
|
} else if (error) {
|
|
return "error";
|
|
} else if (current > index) {
|
|
return "finish";
|
|
} else {
|
|
return "wait";
|
|
}
|
|
},
|
|
statusColor() {
|
|
let colorTmp = "";
|
|
switch (this.statusClass) {
|
|
case "finish":
|
|
colorTmp = this.parentData.activeColor;
|
|
break;
|
|
case "error":
|
|
colorTmp = common_vendor.color.error;
|
|
break;
|
|
case "process":
|
|
colorTmp = this.parentData.dot ? this.parentData.activeColor : "transparent";
|
|
break;
|
|
default:
|
|
colorTmp = this.parentData.inactiveColor;
|
|
break;
|
|
}
|
|
return colorTmp;
|
|
},
|
|
contentStyle() {
|
|
const style = {};
|
|
if (this.parentData.direction === "column") {
|
|
style.marginLeft = this.parentData.dot ? "2px" : "6px";
|
|
style.marginTop = this.parentData.dot ? "0px" : "6px";
|
|
} else {
|
|
style.marginTop = this.parentData.dot ? "2px" : "6px";
|
|
style.marginLeft = this.parentData.dot ? "2px" : "6px";
|
|
}
|
|
return style;
|
|
}
|
|
},
|
|
mounted() {
|
|
this.parent && this.parent.updateFromChild();
|
|
common_vendor.sleep().then(() => {
|
|
this.getStepsItemRect();
|
|
});
|
|
},
|
|
methods: {
|
|
init() {
|
|
this.updateParentData();
|
|
if (!this.parent) {
|
|
return common_vendor.error("u-steps-item必须要搭配u-steps组件使用");
|
|
}
|
|
this.index = this.parent.children.indexOf(this);
|
|
this.childLength = this.parent.children.length;
|
|
},
|
|
updateParentData() {
|
|
this.getParentData("u-steps");
|
|
},
|
|
// 父组件数据发生变化
|
|
updateFromParent() {
|
|
this.init();
|
|
},
|
|
// 获取组件的尺寸,用于设置横线的位置
|
|
getStepsItemRect() {
|
|
this.$uGetRect(".u-steps-item").then((size) => {
|
|
this.size = size;
|
|
});
|
|
}
|
|
}
|
|
};
|
|
if (!Array) {
|
|
const _easycom_u_icon2 = common_vendor.resolveComponent("u-icon");
|
|
const _easycom_up_text2 = common_vendor.resolveComponent("up-text");
|
|
(_easycom_u_icon2 + _easycom_up_text2)();
|
|
}
|
|
const _easycom_u_icon = () => "../u-icon/u-icon.js";
|
|
const _easycom_up_text = () => "../u-text/u-text.js";
|
|
if (!Math) {
|
|
(_easycom_u_icon + _easycom_up_text)();
|
|
}
|
|
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
return common_vendor.e({
|
|
a: $data.index + 1 < $data.childLength
|
|
}, $data.index + 1 < $data.childLength ? {
|
|
b: common_vendor.n(`u-steps-item__line--${$data.parentData.direction}`),
|
|
c: common_vendor.s($options.lineStyle)
|
|
} : {}, {
|
|
d: $data.parentData.dot
|
|
}, $data.parentData.dot ? {
|
|
e: $options.statusColor
|
|
} : $data.parentData.activeIcon || $data.parentData.inactiveIcon ? {
|
|
g: common_vendor.p({
|
|
name: $data.index <= $data.parentData.current ? $data.parentData.activeIcon : $data.parentData.inactiveIcon,
|
|
size: _ctx.iconSize,
|
|
color: $data.index <= $data.parentData.current ? $data.parentData.activeColor : $data.parentData.inactiveColor
|
|
})
|
|
} : common_vendor.e({
|
|
h: $options.statusClass === "process" || $options.statusClass === "wait"
|
|
}, $options.statusClass === "process" || $options.statusClass === "wait" ? {
|
|
i: common_vendor.t($data.index + 1),
|
|
j: $data.index == $data.parentData.current ? "#ffffff" : $data.parentData.inactiveColor
|
|
} : {
|
|
k: common_vendor.p({
|
|
color: $options.statusClass === "error" ? "error" : $data.parentData.activeColor,
|
|
size: "12",
|
|
name: $options.statusClass === "error" ? "close" : "checkmark"
|
|
})
|
|
}, {
|
|
l: $options.statusClass === "process" ? $data.parentData.activeColor : "transparent",
|
|
m: $options.statusColor
|
|
}), {
|
|
f: $data.parentData.activeIcon || $data.parentData.inactiveIcon,
|
|
n: common_vendor.n(`u-steps-item__wrapper--${$data.parentData.direction}`),
|
|
o: common_vendor.n($data.parentData.dot && `u-steps-item__wrapper--${$data.parentData.direction}--dot`),
|
|
p: common_vendor.s($options.itemStyleInner),
|
|
q: common_vendor.r("content", {
|
|
index: $data.index
|
|
}),
|
|
r: !_ctx.$slots["content"]
|
|
}, !_ctx.$slots["content"] ? common_vendor.e({
|
|
s: !_ctx.$slots["title"]
|
|
}, !_ctx.$slots["title"] ? {
|
|
t: common_vendor.p({
|
|
text: _ctx.title,
|
|
type: $data.parentData.current == $data.index ? "main" : "content",
|
|
lineHeight: "20px",
|
|
size: $data.parentData.current == $data.index ? 14 : 13
|
|
})
|
|
} : {}, {
|
|
v: !_ctx.$slots["desc"]
|
|
}, !_ctx.$slots["desc"] ? {
|
|
w: common_vendor.p({
|
|
text: _ctx.desc,
|
|
type: "tips",
|
|
size: "12"
|
|
})
|
|
} : {}) : {}, {
|
|
x: common_vendor.n(`u-steps-item__content--${$data.parentData.direction}`),
|
|
y: common_vendor.n($data.parentData.current == $data.index ? "u-steps-item__content--current" : ""),
|
|
z: common_vendor.s($options.contentStyle),
|
|
A: common_vendor.n(`u-steps-item--${$data.parentData.direction}`)
|
|
});
|
|
}
|
|
const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-9f07ce7c"]]);
|
|
wx.createComponent(Component);
|
|
//# sourceMappingURL=../../../../../.sourcemap/mp-weixin/node-modules/uview-plus/components/u-steps-item/u-steps-item.js.map
|