Browse Source

优化订单不限制详细地址问题

wenningning 3 months ago
parent
commit
4df68db59d
1 changed files with 2 additions and 2 deletions
  1. 2 2
      manager-admin/src/views/pjOrder/Edit.vue

+ 2 - 2
manager-admin/src/views/pjOrder/Edit.vue

@@ -122,7 +122,7 @@
               <template slot="label">
                 收货地区
               </template>
-              {{modelForm.ship_province + modelForm.ship_city + modelForm.ship_county + modelForm.ship_town}}
+              {{modelForm.ship_province + modelForm.ship_city + modelForm.ship_county + modelForm.ship_town + modelForm.ship_address}}
             </el-descriptions-item>
           </el-descriptions>
           <el-divider>其它</el-divider>
@@ -544,7 +544,7 @@ export default {
       const adminUser = JSON.parse(Storage.getItem('admin_user'))
       this.modelForm.tech_user = adminUser.uid
       this.modelForm.tech_name = adminUser.realname
-      this.modelForm.sales_remark = this.$refs['ue'].getUEContent()
+      this.modelForm.tech_remark = this.$refs['ue'].getUEContent()
       API_order.editModel(this.modelForm).then(response => {
         this.$message.success('完成')
       }).catch()