10.10综合交易所原始源码-管理后台
1
zj
22 hours ago ed89cf9724740addb7e12c53e81b770b0cf9881c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<template>
  <el-dialog
    title="订单场控"
    :close-on-click-modal="false"
    :visible.sync="visible"
    append-to-body
    width="480px"
    @close="handClose"
  >
    <el-form
      :model="dataForm"
      :rules="dataRule"
      ref="dataForm"
      label-width="120px"
      @keyup.enter.native="dataFormSubmit()"
    >
      <el-form-item label="订单号">
        <el-input v-model="dataForm.orderNo" disabled></el-input>
      </el-form-item>
      <el-form-item label="场控方向" prop="profitLoss">
        <el-radio-group v-model="dataForm.profitLoss">
          <el-radio label="profit">盈利</el-radio>
          <el-radio label="loss">亏损</el-radio>
        </el-radio-group>
      </el-form-item>
    </el-form>
    <span slot="footer" class="dialog-footer">
      <el-button @click="visible = false">取消</el-button>
      <el-button type="primary" @click="dataFormSubmit()">确定</el-button>
    </span>
  </el-dialog>
</template>
 
<script>
import { Debounce } from "@/utils/debounce";
 
export default {
  data() {
    return {
      visible: false,
      dataForm: {
        orderNo: "",
        profitLoss: "profit",
      },
      dataRule: {
        profitLoss: [
          { required: true, message: "请选择场控方向", trigger: "change" },
        ],
      },
    };
  },
  methods: {
    init(row) {
      this.visible = true;
      this.dataForm.orderNo = row.orderNo;
      let profitLoss = "profit";
      if (row.profitLoss === "loss" || row.profitLoss === "profit") {
        profitLoss = row.profitLoss;
      } else if (row.profitLosssStr === "亏损") {
        profitLoss = "loss";
      } else if (row.profitLosssStr === "盈利") {
        profitLoss = "profit";
      }
      this.dataForm.profitLoss = profitLoss;
      this.$nextTick(() => {
        if (this.$refs.dataForm) {
          this.$refs.dataForm.clearValidate();
        }
      });
    },
    handClose() {
      this.dataForm = {
        orderNo: "",
        profitLoss: "profit",
      };
      this.$nextTick(() => {
        if (this.$refs.dataForm) {
          this.$refs.dataForm.clearValidate();
        }
      });
    },
    dataFormSubmit: Debounce(function () {
      this.$refs.dataForm.validate((valid) => {
        if (!valid) {
          return;
        }
        this.$http({
          url: this.$http.adornUrl(
            "/normal/adminFuturesOrderAction!/orderProfitLoss.action"
          ),
          method: "get",
          params: this.$http.adornParams({
            orderNo: this.dataForm.orderNo,
            profitLoss: this.dataForm.profitLoss,
          }),
        }).then(({ data }) => {
          if (data.code == 0) {
            this.$message({
              message: "操作成功",
              type: "success",
              duration: 1500,
              onClose: () => {
                this.visible = false;
                this.$emit("refreshDataList");
              },
            });
          } else {
            this.$message({
              message: data.msg,
              type: "error",
            });
          }
        });
      });
    }),
  },
};
</script>