zhaoxiaoqiang1
2026-01-04 f1d30d03186c79ca2cbcfe60d6d2ce7d73fba97b
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
<template>
  <div>
    <el-dialog
      :title="title"
      center
      width="850px"
      :visible.sync="show"
      :close-on-click-modal="false"
      @close="handleClose"
    >
      <el-form :model="form" :rules="rules" ref="form" label-width="125px">
        <div class="form">
          <el-row>
            <el-col :span="12">
              <el-form-item label="模板名称" prop="tempName">
                <el-input
                  v-model="form.tempName"
                  :disabled="disabled"
                ></el-input>
              </el-form-item>
            </el-col>
            <el-col :span="12">
              <el-form-item label="模板编号" prop="tempNo">
                <el-input v-model="form.tempNo" :disabled="disabled"></el-input>
              </el-form-item>
            </el-col>
          </el-row>
          <el-row>
            <el-col :span="12">
              <el-form-item label="重试次数" prop="retryCount">
                <el-input v-model="form.retryCount" :disabled="disabled"></el-input>
              </el-form-item>
            </el-col>
            <el-col :span="12">
              <el-form-item label="渠道选择" prop="channelId">
                <el-select v-model="form.channelId" placeholder="请选择" filterable>
                  <el-option
                    v-for="item in channelList"
                    :key="item.value"
                    :label="item.label"
                    :value="item.value"
                  ></el-option>
                </el-select>
              </el-form-item>
            </el-col>
          </el-row>
          <el-row>
            <el-col :span="12">
              <el-form-item label="当日同一短信内容允许次数" prop="currentDayMsgNumLimit" class="labels">
                <el-input
                  v-model="form.currentDayMsgNumLimit"
                  :disabled="disabled"
                ></el-input>
              </el-form-item>
            </el-col>
            <el-col :span="12">
              <el-form-item label="当日同一手机号允许次数" prop="currentDayPhoneNumLimit" class="labels">
                <el-input v-model="form.currentDayPhoneNumLimit" :disabled="disabled"></el-input>
              </el-form-item>
            </el-col>
          </el-row>
          <el-row>
            <el-col :span="12">
              <el-form-item label="状态" prop="status">
                <el-select v-model="form.status" placeholder="请选择">
                  <el-option label="生效" value="01"></el-option>
                  <el-option label="失效" value="02"></el-option>
                </el-select>
              </el-form-item>
            </el-col>
          </el-row>
        </div>
      </el-form>
      <div slot="footer" class="dialog-footer">
        <el-button size="mini" @click="handleClose">{{
          !disabled ? "取消" : "关闭"
        }}</el-button>
        <el-button
          class="blueBtn"
          type="primary"
          size="mini"
          v-if="!disabled"
          @click="handleSubmit"
          >确定</el-button
        >
      </div>
    </el-dialog>
  </div>
</template>
 
<script>
import common from "@/utils/common";
import * as dayjs from 'dayjs'
import { addChannelTemp, updateChannelTemp } from "@/api/dreamSend";
 
export default {
  props: {
    // 1 新增 2 编辑 0查看
    type: {
      type: Number,
      default: 0,
    },
  },
  data: function () {
    return {
      show: false,
      required: true,
 
      form: {
        status: "01",
        stubType: "00",
        sentType: "02",
      },
      rules: {
        tempName: { required: true, message: "此项为必填项", trigger: "blur" },
        tempNo: { required: true, message: "此项为必填项", trigger: "blur" },
        retryCount: { required: true, message: "此项为必填项", trigger: "blur" },
        currentDayMsgNumLimit: { required: true, message: "此项为必填项", trigger: "blur" },
        currentDayPhoneNumLimit: { required: true, message: "此项为必填项", trigger: "blur" },
        channelId: { required: true, message: "此项为必填项", trigger: "select" },
        status: { required: true, message: "此项为必填项", trigger: "select" },
      },
      title: "编辑",
    };
  },
  computed: {
    disabled() {
      return this.type === 0 ? true : false;
    },
    channelList() {
      return this.$parent.smsChannel || []
    }
  },
  methods: {
    initInfo(title, data) {
      this.title = title;
      this.show = true;
      this.form = { ...this.form, ...data };
    },
 
    handleClose() {
      this.form = {
        status: "01",
        stubType: "00",
        sentType: "02",
      };
      this.$refs.form.resetFields();
      this.show = false;
    },
    handleSubmit() {
      this.$refs["form"].validate(async (valid) => {
        if (valid) {
          let {form} = this
          const params = {
            id: form.id,
            channelId: form.channelId,
            currentDayMsgNumLimit: form.currentDayMsgNumLimit,
            currentDayPhoneNumLimit: form.currentDayPhoneNumLimit,
            retryCount: form.retryCount,
            status: form.status,
            tempName: form.tempName,
            tempNo: form.tempNo,
          };
          form = {
            ...params,
          }
          let res = this.type === 1 ? await addChannelTemp({ ...form }) : await updateChannelTemp({ ...form })
          if (res.code === "200") {
            this.$refs.form.resetFields();
            this.show = false;
            this.$message.success(res.message || '保存成功!');
            this.$emit("submit");
          }
        } else {
          return false;
        }
      });
    },
  },
};
</script>
 
<style lang="stylus" scoped>
>>> .el-dialog__header {
  padding-top: 40px;
 
  .el-dialog__title {
    font-size: 18px;
    // font-family PingFangSC-Medium,PingFangSC
    font-weight: bold;
    color: #222222;
    line-height: 25px;
  }
}
 
>>> .el-select {
  width: 100%;
}
 
.labels >>> .el-form-item__label {
  line-height: 1.2;
  padding: 4px 6px; 
}
 
>>> .el-dialog__footer {
  padding-bottom: 30px;
 
  .dialog-footer {
    button {
      width: 120px;
      height: 30px;
    }
 
    .blueBtn {
      background-color: rgba(0, 129, 240, 1);
      border-radius: 4px;
      color: rgba(255, 255, 255, 1);
      padding: 0;
 
      span {
        font-size: 14px;
        height: 20px;
        font-weight: 400;
        line-height: 20px;
      }
    }
  }
}
</style>