From 4a674a99455c101670e993ffadd77133a3d46e42 Mon Sep 17 00:00:00 2001 From: wzp <2880584989@qq.com> Date: 星期一, 14 二月 2022 17:36:27 +0800 Subject: [PATCH] 最新 --- assetMgtH5/pages/approval/approval.vue | 24 +++++++++++++++++++++--- 1 files changed, 21 insertions(+), 3 deletions(-) diff --git a/assetMgtH5/pages/approval/approval.vue b/assetMgtH5/pages/approval/approval.vue index 8183fd0..a72de98 100644 --- a/assetMgtH5/pages/approval/approval.vue +++ b/assetMgtH5/pages/approval/approval.vue @@ -1,6 +1,21 @@ <template> <view> - + <view class=""> + <cu-custom bgColor="bg-gradual-blue" > + <!-- <block slot="backText">杩斿洖</block> --> + <block slot="content">鎴戠殑瀹℃壒</block> + </cu-custom> + </view> + <view class=""> + <view class=""> + <u-subsection + :list="curlist" + mode="button" + :current="current" + @change="changeCurrent" + ></u-subsection> + </view> + </view> </view> </template> @@ -8,11 +23,14 @@ export default { data() { return { - + current: 0, + curlist: ['寰呭鐞�', '宸插畬鎴�'], } }, methods: { - + changeCurrent(index) { + this.current = index + }, } } </script> -- Gitblit v1.9.1