浏览代码

Merge branch 'master' of http://git.lcpcp.cc/py/cc-wap

USER-20230908AJ\Administrator 6 月之前
父节点
当前提交
79e1582cf8
共有 1 个文件被更改,包括 13 次插入13 次删除
  1. 13 13
      src/views/login/error.vue

+ 13 - 13
src/views/login/error.vue

@@ -1,24 +1,24 @@
 <template>
-  <view class="error-box">
-    <view class="error-content">
-      <view class="error-icon">
+  <div class="error-box">
+    <div class="error-content">
+      <div class="error-icon">
         <text  class="iconfont">
           &#xe678;
         </text>
-      </view>
-      <view class="error-text" v-if="!errorType">
+      </div>
+      <div class="error-text" v-if="!errorType">
         {{$t('index.error.errorMsg')}}~~
-      </view>
-      <view class="error-text" v-else>
+      </div>
+      <div class="error-text" v-else>
         {{$t('index.error.errorMsg.'+errorKey[errorType])}}~~
-      </view>
-      <view class="error-but">
-        <button @click="closeSys">{{$t('index.error.quit')}}</button>
-      </view>
-    </view>
+      </div>
+      <div class="error-but">
+        <el-button @click="closeSys">{{$t('index.error.quit')}}</el-button>
+      </div>
+    </div>
 
 
-  </view>
+  </div>
 </template>
 <script>
 export default {