细节优化
parent
cc1a83a9b2
commit
07977df51a
|
|
@ -20,7 +20,6 @@
|
|||
<view class="form-gorup-title">昵称<text class="form-group-tips-must">*</text></view>
|
||||
<view class="flex-row align-c flex-1 flex-width">
|
||||
<input :type="application_client_type == 'weixin' ? 'nickname' : 'text'" name="nickname" :value="user_data.nickname || ''" maxlength="16" placeholder-class="cr-grey-9 tr" class="cr-base tr margin-right-sm" placeholder="昵称1~16个字符" />
|
||||
<iconfont name="icon-qiandao-jiantou2" size="34rpx" color="#ccc"></iconfont>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
|
|
@ -38,7 +37,6 @@
|
|||
<view class="form-gorup-title">详细地址</view>
|
||||
<view class="flex-row align-c flex-1 flex-width">
|
||||
<input type="text" name="address" :value="user_data.address || ''" maxlength="30" placeholder-class="cr-grey-9 tr" class="cr-base tr margin-right-sm" placeholder="详细地址最多30个字符" />
|
||||
<iconfont name="icon-qiandao-jiantou2" size="34rpx" color="#ccc"></iconfont>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
|
|
|
|||
|
|
@ -36,10 +36,10 @@
|
|||
<view v-if="data.is_reply && data.is_reply === '1'" class="padding-main br-t-dashed">
|
||||
<view class="flex-row jc-sb align-c">
|
||||
<view class="flex-row align-c">
|
||||
<image :src="ask_static_url + 'admin.png'" mode="widthFix" class="admin-img margin-right-sm"></image>
|
||||
<text>管理员</text>
|
||||
<image v-if="(logo_square || null) != null" :src="logo_square" mode="widthFix" class="admin-img circle br-f5 margin-right-sm"></image>
|
||||
<text>管理员回复</text>
|
||||
</view>
|
||||
<view class="cr-grey-9 text-size-xs">回复时间: {{ data.reply_time_date }}</view>
|
||||
<view v-if="(data.reply_time_date || null) != null" class="cr-grey-9 text-size-xs">回复时间: {{ data.reply_time_date }}</view>
|
||||
</view>
|
||||
<view class="text-size-md padding-top-main">{{ data.reply }}</view>
|
||||
</view>
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
</view>
|
||||
<view class="bottom-fixed ask-btn-content">
|
||||
<view class="flex-row jc-sa align-c text-size fw-b bottom-line-exclude">
|
||||
<navigator url="/pages/plugins/ask/user-form/user-form" hover-class="none" class="flex-1 tc flex-col jc-c align-c">
|
||||
<navigator url="/pages/plugins/ask/form/form" hover-class="none" class="flex-1 tc flex-col jc-c align-c">
|
||||
<view class="divider-r-d wh-auto">
|
||||
<iconfont name="icon-wenda-wytw" size="30rpx" color="#333" class="margin-right-sm"></iconfont>
|
||||
我要提问
|
||||
|
|
@ -89,7 +89,7 @@
|
|||
export default {
|
||||
data() {
|
||||
return {
|
||||
ask_static_url: app.globalData.get_static_url('ask', true),
|
||||
logo_square: app.globalData.get_application_logo_square(),
|
||||
data_list_loding_status: 1,
|
||||
data_bottom_line_status: true,
|
||||
data: null,
|
||||
|
|
|
|||
|
|
@ -45,7 +45,7 @@
|
|||
</scroll-view>
|
||||
<view class="bottom-fixed ask-btn-content">
|
||||
<view class="flex-row jc-sa align-c text-size fw-b bottom-line-exclude">
|
||||
<navigator url="/pages/plugins/ask/user-form/user-form" hover-class="none" class="flex-1 tc flex-col jc-c align-c">
|
||||
<navigator url="/pages/plugins/ask/form/form" hover-class="none" class="flex-1 tc flex-col jc-c align-c">
|
||||
<view class="divider-r-d wh-auto">
|
||||
<iconfont name="icon-wenda-wytw" size="30rpx" color="#333" class="margin-right-sm"></iconfont>
|
||||
我要提问
|
||||
|
|
|
|||
|
|
@ -6,9 +6,8 @@
|
|||
<view class="padding-horizontal-main border-radius-main bg-white oh spacing-mb">
|
||||
<view class="padding-top-xxl padding-bottom-xxl padding-right-xxxl arrow-right oh" data-value="/pages/personal/personal" @tap="url_event">
|
||||
<image :src="user.avatar || default_avatar" mode="widthFix" class="circle br fl user-avatar"></image>
|
||||
<view class="fl margin-left">
|
||||
<view class="fl margin-left margin-top">
|
||||
<view>{{ user.user_name_view || '用户名' }}</view>
|
||||
<view v-if="(user || null) != null" class="br-main cr-main round tc padding-left-lg padding-right-lg margin-top-xs dis-inline-block">ID {{ user.id }}</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="padding-top-xxl padding-bottom-xxl padding-right-xxxl arrow-right br-t" data-value="/pages/login/login?opt_form=bind_verify" @tap="url_event">
|
||||
|
|
|
|||
Loading…
Reference in New Issue