Commit 1380bd41300a1b39a2833653ada49b89fd5ae02f

Authored by liujun001
2 parents e57bfc44 02c4b520

合并

garbage-removal/src/pages/home-info/clean/index.vue
... ... @@ -89,6 +89,15 @@
89 89 </view>
90 90 </view>
91 91  
  92 +
  93 + <view class="company-clean-container-car-main-content-type">
  94 + <view class="company-clean-container-car-main-content-type-price-area">
  95 + <text style="color: red;">*</text>预估费用:
  96 + </view>
  97 + <view style=" width:100%;display:flex; color:#909399; align-items: center;">
  98 + <u-number-box :min="0" :max="9999999" integer buttonSize="46" :inputWidth="100" v-model="paramFrom.garEstimatedCost" ></u-number-box>
  99 + </view>
  100 + </view>
92 101  
93 102 <view class="company-clean-container-car-main-content-type">
94 103 <view class="company-clean-container-car-main-content-type-price-area">
... ... @@ -171,7 +180,6 @@
171 180 </scroll-view>
172 181 </view>
173 182 </template>
174   -
175 183 <script setup>
176 184 import { queryAddress } from '@/apis/address.js';
177 185 import { queryCarList } from '@/apis/carinfo.js';
... ... @@ -387,6 +395,10 @@ const afterRead = async (event) =&gt; {
387 395 for (let i = 0; i < lists.length; i++) {
388 396 let requestPath = import.meta.env.VITE_BASE_URL + import.meta.env.VITE_BASE_FILE_UPLOAD_PREFIX;
389 397 const result = await uploadFilePromise(requestPath, lists[i].url);
  398 + console.log("=====================>");
  399 +
  400 + console.log(result);
  401 +
390 402 let item = fileList.value[fileListLen];
391 403 fileList.value.splice(fileListLen, 1, {
392 404 ...item,
... ...
garbage-removal/src/pages/order-info/order-driver/detail/index.vue
... ... @@ -119,6 +119,7 @@
119 119 {{ dataGram.garOrderContactName }}
120 120 </view>
121 121 </view>
  122 +
122 123 <view class="order-detail-container-header-item">
123 124 <text class="order-detail-container-header-title">备注:</text>
124 125 <view class="order-detail-container-header-content">
... ...