Commit 9d5b9f9dd4e6ae582d1870e9aec10110bc5177c4

Authored by guzijian
1 parent 9b40e534

feat: 修改README.md

garbage-removal/README.md 0 → 100644
  1 +# trash 的小程序前端
  2 +
  3 +### 后端项目地址:http://192.168.168.245:8888/youxiw20000/trash.git
  4 +
  5 +### 技术栈:
  6 +
  7 +- vue2-3
  8 +- pinia
  9 +- axios
  10 +- scss
  11 +- vite
  12 +- uview-plus
  13 +- uni-app
  14 +
  15 +### 运行方法:
  16 +
  17 +1. 安装依赖
  18 +
  19 +```
  20 +npm install
  21 +```
  22 +
  23 +2. 运行
  24 +
  25 +```
  26 +npm run dev:h5
  27 +npm run dev:mp-weixin
  28 +```
  29 +
  30 +3. 打包
  31 +
  32 +```
  33 +npm run build:h5 --mode production
  34 +npm run build:mp-weixin --mode production
  35 +```
... ...
garbage-removal/src/pages/home/index.vue
... ... @@ -114,11 +114,11 @@
114 114 <view class="empty-text-title">
115 115 {{ prompt }}
116 116 </view>
117   - <view class="empty-text-content">
  117 + <view class="empty-text-content" v-if="userType == '用户'">
118 118 房屋装饰装修过程中产生的砖瓦、木材、熟料等废弃物
119 119 </view>
120   - <view class="empty-text-box">
121   - <view class="empty-text-box-button">
  120 + <view class="empty-text-box" v-if="userType == '用户'">
  121 + <view class=" empty-text-box-button">
122 122 立即清运
123 123 </view>
124 124 </view>
... ...