Handy_Cao hace 1 año
padre
commit
1cc377d0e2

+ 4 - 1
src/packages/mobile/views/account/certification/Index.vue

@@ -46,7 +46,7 @@
                     :label="$t('user.authentication.modifyremark')" />
             </CellGroup>
         </Form>
-        <img src="../../../assets/images/certification.png" />
+        <img v-if="oem != 'tss'" src="../../../assets/images/certification.png" />
         <template #footer>
             <div class="g-form__footer inset">
                 <Button type="danger" @click="formRef?.submit" round block>{{ $t('user.authentication.submit')
@@ -71,6 +71,7 @@ import { useQueryCusBankSignBank } from '@/business/bank'
 import { i18n } from '@/stores'
 import AppUploader from '@mobile/components/base/uploader/index.vue'
 import AppSelect from '@mobile/components/base/select/index.vue'
+import service from '@/services'
 
 const formRef = shallowRef<FormInstance>()
 const { formData, formSubmit, modifyremark } = addAuthReq()
@@ -81,6 +82,8 @@ const showHalfBodyPhoto = shallowRef('0')
 const showCardBackPhoto = shallowRef('0')
 const halfBodyPhotoTitle = shallowRef(t('user.authentication.halfbodyphoto'))
 
+const oem = service.getConfig('oem')
+
 const { banklist } = useQueryCusBankSignBank()
 
 // 获取网上开户配置

+ 4 - 1
src/packages/mobile/views/user/register/Index.vue

@@ -242,7 +242,10 @@ const sendVerifyCode = () => {
 // 获取注册红包
 const getRegisterMoney = (accountid: number) => {
   const toggleDialog = () => {
-    dialog(t('user.register.tips8')).then(() => {
+    dialog({
+      message: t('user.register.tips8'),
+      confirmButtonText: t('operation.confirm')
+    }).then(() => {
       router.back()
     })
   }

+ 2 - 2
src/packages/pc/views/auth/forget/index.vue

@@ -2,8 +2,8 @@
     <el-form ref="formRef" :model="formData" :rules="formRules">
         <el-form-item prop="mobile">
             <el-input :placeholder="t('user.forget.tips1')" type="number" v-model="formData.mobile" :rules="formRules.mobile">
-                <template #prepend v-if="countryCode != ''">
-                    <el-select v-model="countryCode" style="width: 80px">
+                <template #prepend>
+                    <el-select v-if="countryCode != ''" v-model="countryCode" style="width: 100px">
                         <el-option v-for="item in getCountryCodeList()" :key="item.value" :label="item.value" :value="item.value" />
                     </el-select>
                 </template>