Commit b7235e83243bbe90afa624356af1d3fc51f99e8c

Authored by lxf
1 parent b74a5f42

fix: 备注位置更换

Showing 1 changed file with 4 additions and 6 deletions   Show diff stats
pages/order/add.vue
... ... @@ -13,6 +13,9 @@
13 13 <u-form-item label="内部单号">
14 14 <u-input v-model="form.customerOrderCode" border="none" placeholder="请输入,选填" />
15 15 </u-form-item>
  16 + <u-form-item label="订单备注">
  17 + <u-input v-model="form.remark" border="none" placeholder="请输入,选填" />
  18 + </u-form-item>
16 19 </view>
17 20 <view class="card">
18 21 <u-form-item label="装货地址" required @click="() => selectLocation(0)">
... ... @@ -130,11 +133,6 @@
130 133 <u-input v-model="form.waypoints[1].contactMobile" border="none" placeholder="请输入,选填" />
131 134 </u-form-item>
132 135 </view>
133   - <view class="card">
134   - <u-form-item label="订单备注">
135   - <u-input v-model="form.remark" border="none" placeholder="请输入,选填" />
136   - </u-form-item>
137   - </view>
138 136 </template>
139 137 </u-form>
140 138 </template>
... ... @@ -368,7 +366,7 @@ export default {
368 366 };
369 367 this.computedDistance();
370 368 });
371   - const url = 'https://zeyi-tms-product.oss-cn-hangzhou.aliyuncs.com/webview/location-wx.html';
  369 + const url = 'https://zeyi-tms-product.oss-cn-hangzhou.aliyuncs.com/webview/location-wx-freight.html';
372 370 const params = {
373 371 lat: this.form.waypoints[index].lat ? Number(this.form.waypoints[index].lat) : '',
374 372 lng: this.form.waypoints[index].lng ? Number(this.form.waypoints[index].lng) : '',
... ...