|
@@ -0,0 +1,43 @@
|
|
|
|
+<route lang="json5" type="page">
|
|
|
|
+{
|
|
|
|
+ layout: 'default',
|
|
|
|
+ style: {
|
|
|
|
+ navigationBarTitleText: 'Setting',
|
|
|
|
+ navigationBarBackgroundColor: '#fff',
|
|
|
|
+ },
|
|
|
|
+}
|
|
|
|
+</route>
|
|
|
|
+
|
|
|
|
+<script lang="ts" setup>
|
|
|
|
+defineOptions({
|
|
|
|
+ name: 'Setting', // 设置
|
|
|
|
+})
|
|
|
|
+const columns = ref(['English', 'Bengali'])
|
|
|
|
+const language = ref('')
|
|
|
|
+</script>
|
|
|
|
+
|
|
|
|
+<template>
|
|
|
|
+ <view class="py-20rpx">
|
|
|
|
+ <wd-cell-group custom-class="mb-20rpx" border>
|
|
|
|
+ <wd-cell title="Change Password" custom-title-class="text-32rpx" is-link />
|
|
|
|
+ <wd-picker v-model="language" :columns="columns" use-default-slot>
|
|
|
|
+ <wd-cell title="Language" custom-title-class="text-32rpx" custom-value-class="text-#838383! text-32rpx!" value="English" is-link />
|
|
|
|
+ </wd-picker>
|
|
|
|
+ <wd-cell title="Policies" custom-title-class="text-32rpx" is-link />
|
|
|
|
+ <wd-cell title="Help" custom-title-class="text-32rpx" is-link />
|
|
|
|
+ <wd-cell title="Feedback" custom-title-class="text-32rpx" is-link />
|
|
|
|
+ </wd-cell-group>
|
|
|
|
+
|
|
|
|
+ <!-- Logout -->
|
|
|
|
+ <view class="mb-20rpx bg-white p-24rpx text-center text-32rpx text-[var(--wot-color-theme)]">
|
|
|
|
+ Logout
|
|
|
|
+ </view>
|
|
|
|
+ <view class="text-center text-32rpx text-#909090">
|
|
|
|
+ Version 1.1.0
|
|
|
|
+ </view>
|
|
|
|
+ </view>
|
|
|
|
+</template>
|
|
|
|
+
|
|
|
|
+<style lang="scss" scoped>
|
|
|
|
+//
|
|
|
|
+</style>
|