chengziding месяцев назад: 3
Родитель
Сommit
253015bbeb

+ 1 - 1
.env.development

@@ -1,5 +1,5 @@
 # 页面标题
-VUE_APP_TITLE = 陪护运营管理平台
+VUE_APP_TITLE = 润护通运营管理平台
 
 # 开发环境配置
 ENV = 'development'

+ 1 - 1
.env.production

@@ -1,5 +1,5 @@
 # 页面标题
-VUE_APP_TITLE = 陪护运营管理平台
+VUE_APP_TITLE = 润护通运营管理平台
 
 # 生产环境配置
 ENV = 'production'

+ 1 - 1
.env.staging

@@ -1,5 +1,5 @@
 # 页面标题
-VUE_APP_TITLE = 陪护运营管理平台
+VUE_APP_TITLE = 润护通运营管理平台
 
 NODE_ENV = production
 

+ 1 - 1
package.json

@@ -1,7 +1,7 @@
 {
   "name": "quanMingBawangCai",
   "version": "4.0.1",
-  "description": "陪护运营管理平台",
+  "description": "润护通运营管理平台",
   "author": "LionLi",
   "license": "MIT",
   "scripts": {

BIN
src/assets/images/login-background.png


src/assets/images/login-background.jpg → src/assets/images/login-background1.jpg


BIN
src/assets/images/userPhoto.png


+ 1 - 1
src/components/RuoYi/Doc/index.vue

@@ -9,7 +9,7 @@ export default {
   name: 'RuoYiDoc',
   data () {
     return {
-      url: 'https://gitee.com/JavaLionLi/陪护/wikis/pages'
+      url: 'https://gitee.com/JavaLionLi/润护通/wikis/pages'
     }
   },
   methods: {

+ 1 - 1
src/components/RuoYi/Git/index.vue

@@ -9,7 +9,7 @@ export default {
   name: 'RuoYiGit',
   data () {
     return {
-      url: 'https://gitee.com/JavaLionLi/陪护'
+      url: 'https://gitee.com/JavaLionLi/润护通'
     }
   },
   methods: {

+ 1 - 1
src/layout/components/Sidebar/Logo.vue

@@ -35,7 +35,7 @@ export default {
   },
   data () {
     return {
-      title: '陪护',
+      title: '润护通',
       logo: logoImg
     }
   }

+ 2 - 2
src/views/index.vue

@@ -339,8 +339,8 @@ export default {
     // 获取商户订单数
     getTicketOrderStatistics () {
       hospitalOrderStatistics().then(res => {
-        this.shopChartData.xData = res.data.map(v => v.businessName);
-        this.shopChartData.yData = res.data.map(v => v.businessOrder);
+        this.shopChartData.xData = res.data.map(v => v.name);
+        this.shopChartData.yData = res.data.map(v => v.orderNum);
         this.initCategoryChart()
       })
     },

+ 2 - 2
src/views/login.vue

@@ -1,7 +1,7 @@
 <template>
   <div class="login">
     <el-form ref="loginForm" :model="loginForm" :rules="loginRules" class="login-form">
-      <h3 class="title">陪护运营管理平台</h3>
+      <h3 class="title">润护通运营管理平台</h3>
       <el-form-item prop="username">
         <el-input v-model="loginForm.username" type="text" auto-complete="off" placeholder="账号">
           <svg-icon slot="prefix" icon-class="user" class="el-input__icon input-icon" />
@@ -139,7 +139,7 @@ export default {
   justify-content: center;
   align-items: center;
   height: 100%;
-  background-image: url("../assets/images/login-background.jpg");
+  background-image: url("../assets/images/login-background.png");
   background-size: cover;
 }
 .title {

+ 2 - 2
src/views/register.vue

@@ -1,7 +1,7 @@
 <template>
   <div class="register">
     <el-form ref="registerForm" :model="registerForm" :rules="registerRules" class="register-form">
-      <h3 class="title">陪护运营管理平台</h3>
+      <h3 class="title">润护通运营管理平台</h3>
       <el-form-item prop="username">
         <el-input v-model="registerForm.username" type="text" auto-complete="off" placeholder="账号">
           <svg-icon slot="prefix" icon-class="user" class="el-input__icon input-icon" />
@@ -130,7 +130,7 @@ export default {
   justify-content: center;
   align-items: center;
   height: 100%;
-  background-image: url("../assets/images/login-background.jpg");
+  background-image: url("../assets/images/login-background.png");
   background-size: cover;
 }
 .title {

+ 2 - 1
src/views/user/details.vue

@@ -1,7 +1,8 @@
 <template>
   <div class="app-container">
     <div class="head">
-      <el-image v-if="details.headPhoto" style="width: 100px; height: 100px" :src="details.headPhoto"></el-image>
+      <el-image v-if="details.headPhoto" style="width: 100px; height: 100px" :src="details.headPhoto" :preview-src-list="details.headPhoto?[details.headPhoto]:[]"></el-image>
+      <el-image v-else style="width: 100px; height: 100px" :src="require('@/assets/images/userPhoto.png')" :preview-src-list="[require('@/assets/images/userPhoto.png')]"></el-image>
       <div class="head_r">
         <div>{{details.nickname}}</div>
         <div>{{details.mobile}}</div>

+ 2 - 2
src/views/user/index.vue

@@ -33,8 +33,8 @@
       <el-table-column label="会员ID" align="center" prop="id" />
       <el-table-column label="头像" align="center" prop="headPhoto">
         <template slot-scope="scope">
-          <el-image v-if="scope.row.headPhoto" style="width: 50px; height: 50px" :src="scope.row.headPhoto" :preview-src-list="scope.row.headPhoto ? [scope.row.headPhoto] : []"></el-image>
-          <div v-else>--</div>
+          <el-image v-if="scope.row.headPhoto" :src="scope.row.headPhoto" :preview-src-list="scope.row.headPhoto ? [scope.row.headPhoto] : []"></el-image>
+          <el-image v-else style="width: 50px; height: 50px" :src="require('@/assets/images/userPhoto.png')" :preview-src-list="[require('@/assets/images/userPhoto.png')]"></el-image>
         </template>
       </el-table-column>
       <el-table-column label="昵称" align="center" prop="nickname" />

+ 2 - 2
vue.config.js

@@ -7,7 +7,7 @@ function resolve (dir) {
 
 const CompressionPlugin = require('compression-webpack-plugin')
 
-const name = process.env.VUE_APP_TITLE || '陪护运营管理平台' // 网页标题
+const name = process.env.VUE_APP_TITLE || '润护通运营管理平台' // 网页标题
 
 const port = process.env.port || process.env.npm_config_port || 80 // 端口
 
@@ -38,7 +38,7 @@ module.exports = {
         // target: `http://192.168.0.151:8299`,
         target: `http://192.168.0.70:8181`,
         // target: `http://192.168.0.70:8299`,
-        // target: 'https://bwshop.caiquanwang.com.cn/prod-api',
+        // target: 'https://peihu.songlanyun.com/prod-api',
         changeOrigin: true,
         pathRewrite: {
           ['^' + process.env.VUE_APP_BASE_API]: ''