Blame view

ant-design-vue-jeecg/src/views/jeecg/modules/JeecgOrderMainModal.vue 10.2 KB
肖超群 authored
1
2
3
4
5
6
7
8
9
10
<template>
  <a-modal
    :title="title"
    :width="1200"
    :visible="visible"
    :confirmLoading="confirmLoading"
    @ok="handleOk"
    @cancel="handleCancel">

    <a-spin :spinning="confirmLoading">
肖超群 authored
11
12
      <a-form-model ref="form" :label-col="labelCol" :wrapper-col="wrapperCol" :model="orderMainModel"
                    :rules="validatorRules">
肖超群 authored
13
14
15
16
        <!-- 主表单区域 -->
        <a-row class="form-row" :gutter="16">
          <a-col :lg="8">
            <a-form-model-item label="订单号" required prop="orderCode">
肖超群 authored
17
              <a-input v-model="orderMainModel.orderCode" placeholder="请输入订单号"/>
肖超群 authored
18
19
20
21
            </a-form-model-item>
          </a-col>
          <a-col :lg="8">
            <a-form-model-item label="订单类型" prop="ctype">
肖超群 authored
22
              <a-select placeholder="请选择订单类型" v-model="orderMainModel.ctype">
肖超群 authored
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
                <a-select-option value="1">国内订单</a-select-option>
                <a-select-option value="2">国际订单</a-select-option>
              </a-select>
            </a-form-model-item>
          </a-col>
          <a-col :lg="8">
            <a-form-model-item label="订单日期" prop="orderDate">
              <a-date-picker showTime valueFormat="YYYY-MM-DD HH:mm:ss" v-model="orderMainModel.orderDate"/>
            </a-form-model-item>
          </a-col>
        </a-row>
        <a-row class="form-row" :gutter="16">
          <a-col :lg="8">
            <a-form-model-item label="订单金额" prop="orderMoney">
              <a-input-number style="width: 200px" v-model="orderMainModel.orderMoney"/>
            </a-form-model-item>
          </a-col>
          <a-col :lg="8">
            <a-form-model-item label="订单备注" prop="content">
肖超群 authored
42
              <a-input placeholder="请输入订单备注" v-model="orderMainModel.content"/>
肖超群 authored
43
44
45
46
47
            </a-form-model-item>
          </a-col>
        </a-row>

        <!-- 子表单区域 -->
肖超群 authored
48
        <a-tabs defaultActiveKey="1">
肖超群 authored
49
50
51
52
53
54
55
56
57
58
          <a-tab-pane tab="客户信息" key="1">
            <div>
              <a-row type="flex" style="margin-bottom:10px" :gutter="16">
                <a-col :span="5">客户名</a-col>
                <a-col :span="5">性别</a-col>
                <a-col :span="6">身份证号码</a-col>
                <a-col :span="6">手机号</a-col>
                <a-col :span="2">操作</a-col>
              </a-row>
肖超群 authored
59
60
              <a-row type="flex" style="margin-bottom:10px" :gutter="16"
                     v-for="(item, index) in orderMainModel.jeecgOrderCustomerList" :key="index">
肖超群 authored
61
62
                <a-col :span="6" style="display: none">
                  <a-form-model-item>
肖超群 authored
63
                    <a-input placeholder="id" v-model="item.id"/>
肖超群 authored
64
65
66
67
                  </a-form-model-item>
                </a-col>
                <a-col :span="5">
                  <a-form-model-item>
肖超群 authored
68
                    <a-input placeholder="客户名" v-model="item.name"/>
肖超群 authored
69
70
71
72
                  </a-form-model-item>
                </a-col>
                <a-col :span="5">
                  <a-form-model-item>
肖超群 authored
73
                    <a-select placeholder="性别" v-model="item.sex">
肖超群 authored
74
75
76
77
78
79
                      <a-select-option value="1">男</a-select-option>
                      <a-select-option value="2">女</a-select-option>
                    </a-select>
                  </a-form-model-item>
                </a-col>
                <a-col :span="6">
肖超群 authored
80
81
82
                  <a-form-model-item :prop="'jeecgOrderCustomerList.' + index + '.idcard'"
                                     :rules="[{required: true,message: '请输入身份证号',trigger: 'blur'},{ pattern: rules.IDCard, message: '身份证号格式不对!' }]">
                    <a-input placeholder="身份证号" v-model="item.idcard"/>
肖超群 authored
83
84
85
                  </a-form-model-item>
                </a-col>
                <a-col :span="6">
肖超群 authored
86
                  <a-form-model-item :prop="'jeecgOrderCustomerList.' + index + '.telphone'" :rules="rules.mobile">
肖超群 authored
87
88
89
90
91
                    <a-input placeholder="手机号" v-model="item.telphone"/>
                  </a-form-model-item>
                </a-col>
                <a-col :span="2">
                  <a-form-model-item>
肖超群 authored
92
                    <a-icon type="minus-circle" @click="delRowCustom(index)" style="fontSize :20px"/>
肖超群 authored
93
94
95
96
                  </a-form-model-item>
                </a-col>
              </a-row>
              <a-button type="dashed" style="width: 98%;margin-top: 10px" @click="addRowCustom">
肖超群 authored
97
98
                <a-icon type="plus"/>
                添加客户信息
肖超群 authored
99
100
101
102
103
104
105
106
107
108
109
              </a-button>
            </div>
          </a-tab-pane>

          <a-tab-pane tab="机票信息" key="2" forceRender>
            <div>
              <a-row type="flex" style="margin-bottom:10px" :gutter="16">
                <a-col :span="6">航班号</a-col>
                <a-col :span="6">航班时间</a-col>
                <a-col :span="6">操作</a-col>
              </a-row>
肖超群 authored
110
111
              <a-row type="flex" style="margin-bottom:10px" :gutter="16"
                     v-for="(item, index) in orderMainModel.jeecgOrderTicketList" :key="index">
肖超群 authored
112
113
                <a-col :span="6" style="display: none">
                  <a-form-model-item>
肖超群 authored
114
                    <a-input placeholder="id" v-model="item.id"/>
肖超群 authored
115
116
117
                  </a-form-model-item>
                </a-col>
                <a-col :span="6">
肖超群 authored
118
119
                  <a-form-model-item :prop="'jeecgOrderTicketList.' + index + '.ticketCode'"
                                     :rules="{required: true,message: '请输入航班号',trigger: 'blur'}">
肖超群 authored
120
121
122
123
124
                    <a-input placeholder="航班号" v-model="item.ticketCode"/>
                  </a-form-model-item>
                </a-col>
                <a-col :span="6">
                  <a-form-model-item>
肖超群 authored
125
                    <a-date-picker placeholder="航班时间" valueFormat="YYYY-MM-DD" v-model="item.tickectDate"/>
肖超群 authored
126
127
128
129
                  </a-form-model-item>
                </a-col>
                <a-col :span="6">
                  <a-form-model-item>
肖超群 authored
130
                    <a-icon type="minus-circle" @click="delRowTicket(index)" style="fontSize :20px"/>
肖超群 authored
131
132
133
134
                  </a-form-model-item>
                </a-col>
              </a-row>
              <a-button type="dashed" style="width: 98%;margin-top: 10px" @click="addRowTicket">
肖超群 authored
135
136
                <a-icon type="plus"/>
                添加机票信息
肖超群 authored
137
138
139
140
141
142
143
144
145
146
147
              </a-button>
            </div>
          </a-tab-pane>
        </a-tabs>

      </a-form-model>
    </a-spin>
  </a-modal>
</template>

<script>
肖超群 authored
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
import {httpAction, getAction} from '@/api/manage'
import JDate from '@/components/jeecg/JDate'

export default {
  name: "JeecgOrderMainModal",
  components: {
    JDate
  },
  data() {
    return {
      title: "操作",
      visible: false,
      orderMainModel: {
        jeecgOrderCustomerList: [{}],
        jeecgOrderTicketList: [{}]
      },
      labelCol: {
        xs: {span: 24},
        sm: {span: 5},
      },
      wrapperCol: {
        xs: {span: 24},
        sm: {span: 16},
      },
      confirmLoading: false,
      validatorRules: {
        orderCode: [
          {required: true, message: '订单号不能为空', trigger: 'blur'}
        ]
      },
      url: {
        add: "/test/jeecgOrderMain/add",
        edit: "/test/jeecgOrderMain/edit",
        orderCustomerList: "/test/jeecgOrderMain/queryOrderCustomerListByMainId",
        orderTicketList: "/test/jeecgOrderMain/queryOrderTicketListByMainId",
      },
    }
  },
  created() {
  },
  methods: {
    add() {
      this.edit({});
肖超群 authored
191
    },
肖超群 authored
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
    edit(record) {
      this.orderMainModel = Object.assign({
        jeecgOrderCustomerList: [{}],
        jeecgOrderTicketList: [{}]
      }, record);
      //--------------------------------------------------------
      //初始化明细表数据
      console.log(this.orderMainModel.id)
      if (this.orderMainModel.id) {
        let params = {id: this.orderMainModel.id}
        //初始化订单机票列表
        getAction(this.url.orderCustomerList, params).then((res) => {
          if (res.success) {
            this.orderMainModel.jeecgOrderCustomerList = res.result;
            this.$forceUpdate()
          }
        })
        //初始化订单客户列表
        getAction(this.url.orderTicketList, params).then((res) => {
          if (res.success) {
            this.orderMainModel.jeecgOrderTicketList = res.result;
            this.$forceUpdate()
          }
        })
肖超群 authored
216
      }
肖超群 authored
217
      this.visible = true;
肖超群 authored
218
    },
肖超群 authored
219
220
221
    close() {
      this.$emit('close');
      this.visible = false;
肖超群 authored
222
    },
肖超群 authored
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
    handleOk() {
      const that = this;
      // 触发表单验证
      this.$refs.form.validate(valid => {
        if (valid) {
          that.confirmLoading = true;
          let httpurl = '';
          let method = '';
          if (!this.orderMainModel.id) {
            httpurl += this.url.add;
            method = 'post';
          } else {
            httpurl += this.url.edit;
            method = 'put';
          }
          httpAction(httpurl, this.orderMainModel, method).then((res) => {
            if (res.success) {
              that.$message.success(res.message);
              that.$emit('ok');
            } else {
              that.$message.warning(res.message);
肖超群 authored
244
            }
肖超群 authored
245
246
247
          }).finally(() => {
            that.confirmLoading = false;
            that.close();
肖超群 authored
248
249
          })
肖超群 authored
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
        }
      })
    },
    handleCancel() {
      this.close()
    },
    addRowCustom() {
      this.orderMainModel.jeecgOrderCustomerList.push({});
      this.$forceUpdate();
    },
    delRowCustom(index) {
      console.log(index)
      this.orderMainModel.jeecgOrderCustomerList.splice(index, 1);
      this.$forceUpdate();
    },
    addRowTicket() {
      this.orderMainModel.jeecgOrderTicketList.push({});
      console.log(this.orderMainModel.jeecgOrderTicketList)
      this.$forceUpdate();
    },
    delRowTicket(index) {
      console.log(index)
      this.orderMainModel.jeecgOrderTicketList.splice(index, 1);
      this.$forceUpdate();
    },
肖超群 authored
275
276
277


  }
肖超群 authored
278
}
肖超群 authored
279
280
281
</script>

<style scoped>
肖超群 authored
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
.ant-btn {
  padding: 0 10px;
  margin-left: 3px;
}

.ant-form-item-control {
  line-height: 0px;
}

/** 主表单行间距 */
.ant-form .ant-form-item {
  margin-bottom: 10px;
}

/** Tab页面行间距 */
.ant-tabs-content .ant-form-item {
  margin-bottom: 0px;
}
肖超群 authored
300
</style>