28 lines
597 B
Vue
28 lines
597 B
Vue
<template>
|
|
<view class="user-page">
|
|
<!-- 其他现有内容 -->
|
|
|
|
<!-- 在联系商家后面添加支付密码设置入口 -->
|
|
<u-cell-group>
|
|
<!-- 现有的联系商家单元格 -->
|
|
<u-cell
|
|
title="支付密码"
|
|
is-link
|
|
@click="navigateToPayPassword"
|
|
/>
|
|
</u-cell-group>
|
|
|
|
<!-- 其他现有内容 -->
|
|
</view>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
// ... 其他导入 ...
|
|
|
|
// 跳转到支付密码设置页面
|
|
const navigateToPayPassword = () => {
|
|
uni.navigateTo({
|
|
url: '/pages/common/pay-password/index'
|
|
})
|
|
}
|
|
</script> |