Browse Source

预约单批量修改新增提示

dev-xx
马远东 12 months ago
parent
commit
c5ab68d1b6
  1. 9
      src/views/distribution/reservation/reservationAddFrom.vue
  2. 4
      vite.config.js

9
src/views/distribution/reservation/reservationAddFrom.vue

@ -451,13 +451,13 @@
</el-row>
<el-form :label-position="right" label-width="80px" :model="formLabelAlign">
<el-form-item label="用户名称:">
<el-input v-model="clientData.customerName"></el-input>
<el-input v-model="clientData.customerName" placeholder="请输入用户名称"></el-input>
</el-form-item>
<el-form-item label="用户电话:">
<el-input v-model="clientData.customerTelephone"></el-input>
<el-input v-model="clientData.customerTelephone" placeholder="请输入用户电话"></el-input>
</el-form-item>
<el-form-item label="用户地址:">
<el-input v-model="clientData.customerAddress"></el-input>
<el-input v-model="clientData.customerAddress" placeholder="请输入用户地址"></el-input>
</el-form-item>
</el-form>
@ -2293,7 +2293,7 @@ export default {
let data={
entityList:[]
}
this.orderList.forEach(item=>{
item.customerName = this.clientData.customerName;//
item.customerTelephone=this.clientData.customerTelephone;//
@ -2324,6 +2324,7 @@ export default {
console.log('this.client===============>', this.clientData);
updateClient(this.clientData).then(res => {
console.log('res>>>>>>>>>>>', res.data.data);
this.orderList=[]
this.onLoadOrder(this.page);
this.dialogVisible = false;
}).catch(()=>{

4
vite.config.js

@ -25,7 +25,7 @@ export default ({ mode, command }) => {
// 新zyc
// target: 'http://192.168.6.116:8777',
// target: 'http://192.168.6.122:8777',
// target: 'http://192.168.3.14:13000',
target: 'http://192.168.3.14:13000',
// target: 'http://192.168.10.25:2888',
// target: 'http://192.168.6.161:9777',//CY
// target: 'http://192.168.10.57:13000',
@ -33,7 +33,7 @@ export default ({ mode, command }) => {
// target: 'http://192.168.10.29:13000',
// target: 'http://192.168.3.5:13000',//?
// target: 'http://h5uapi.huitongys.com',
target: 'http://test.api.huo5you.com',
// target: 'http://test.api.huo5you.com',
changeOrigin: true,
rewrite: path => path.replace(/^\/api/, ''),
},

Loading…
Cancel
Save