addEdit.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522
  1. <template>
  2. <el-dialog
  3. v-loading="loading"
  4. :title="title"
  5. :center="true"
  6. align="left"
  7. top="12vh"
  8. width="800px"
  9. :close-on-click-modal="false"
  10. :visible.sync="showModelThis"
  11. element-loading-text="拼命加载中"
  12. element-loading-spinner="el-icon-loading"
  13. element-loading-background="rgba(0, 0, 0, 0.8)"
  14. @close="closeModel"
  15. >
  16. <el-card style="margin-top: -25px">
  17. <el-row :gutter="10">
  18. <el-col :span="24">
  19. <el-form
  20. ref="ruleForm"
  21. :model="ruleForm"
  22. status-icon
  23. :rules="rulesThis"
  24. label-width="110px"
  25. class="demo-ruleForm"
  26. >
  27. <el-form-item :disabled="isDetail" label="账号" prop="username">
  28. <el-input
  29. v-model="ruleForm.username"
  30. placeholder="XXXXXXXXX"
  31. :disabled="isDetail !== '003'"
  32. ><template slot="prepend">CJ1745</template></el-input
  33. >
  34. </el-form-item>
  35. <el-form-item
  36. v-if="isDetail === '003'"
  37. :disabled="isDetail"
  38. label="密码"
  39. prop="password"
  40. >
  41. <el-input
  42. v-model="ruleForm.password"
  43. placeholder="密码"
  44. :disabled="isDetail === '007'"
  45. />
  46. </el-form-item>
  47. <el-form-item label="有效期" prop="starttime">
  48. <!--isDetail === '007'-->
  49. <PeriodDateTimePicker
  50. :start="ruleForm.starttime"
  51. :end="ruleForm.expiretime"
  52. :type="1"
  53. :disabled="true"
  54. :width="'288px'"
  55. @timeReturned="timeReturned($event)"
  56. />
  57. </el-form-item>
  58. <el-form-item label="客户姓名" prop="nickname">
  59. <el-input
  60. v-model="ruleForm.nickname"
  61. placeholder="客户姓名"
  62. :disabled="isDetail === '007'"
  63. />
  64. </el-form-item>
  65. <el-form-item label="手机号" prop="mobile">
  66. <el-input
  67. v-model="ruleForm.mobile"
  68. placeholder="手机号"
  69. :disabled="isDetail === '007'"
  70. />
  71. </el-form-item>
  72. <el-form-item label="备注" prop="remark">
  73. <el-input
  74. v-model="ruleForm.remark"
  75. type="textarea"
  76. :autosize="{ minRows: 4, maxRows: 4 }"
  77. placeholder="备注"
  78. :disabled="isDetail === '007'"
  79. maxlength="250"
  80. show-word-limit
  81. />
  82. </el-form-item>
  83. <el-form-item label="视频设置" prop="video">
  84. <div class="video-set">
  85. <el-select
  86. ref="videoSet"
  87. style="display: block"
  88. v-show="isDetail !== '007'"
  89. v-model="value"
  90. filterable
  91. remote
  92. placeholder="请输入视频名称"
  93. :remote-method="remoteMethod"
  94. @change="selectTags"
  95. :loading="loading_video_set"
  96. >
  97. <el-option
  98. v-for="item in options"
  99. :key="item.value"
  100. :label="item.video_name"
  101. :disabled="item.status === '0'"
  102. :value="item.id"
  103. >
  104. </el-option>
  105. </el-select>
  106. <el-tag
  107. v-show="tags && tags.length > 0"
  108. style="margin: 10px 6px"
  109. v-for="(tag, index) in tags"
  110. :key="tag.name + index"
  111. :disable-transitions="true"
  112. :closable="isDetail !== '007'"
  113. @close="handleClose(tag)"
  114. :type="tag.status === '0' ? 'info' : ''"
  115. >
  116. {{ tag.video_name }}
  117. </el-tag>
  118. </div>
  119. </el-form-item>
  120. </el-form>
  121. </el-col>
  122. <el-col :span="24" style="text-align: right">
  123. <el-button
  124. v-if="isDetail !== '007'"
  125. type="primary"
  126. @click="submitForm"
  127. >保 存
  128. </el-button>
  129. <el-button @click="showModelThis = false">{{
  130. isDetail !== "007" ? "取 消" : "关 闭"
  131. }}</el-button>
  132. </el-col>
  133. </el-row>
  134. </el-card>
  135. </el-dialog>
  136. </template>
  137. <script>
  138. import asyncRequest from "@/apis/service/mobile/park";
  139. import resToken from "@/mixins/resToken";
  140. import PeriodDateTimePicker from "@/components/PeriodDateTimePicker";
  141. import {
  142. isnumber,
  143. isMobile,
  144. isChinese,
  145. isEmoticon,
  146. validAlphabets,
  147. } from "@/utils/validate";
  148. export default {
  149. name: "park",
  150. props: ["showModel", "id", "isDetail", "sitem"],
  151. mixins: [resToken],
  152. components: {
  153. PeriodDateTimePicker,
  154. },
  155. data() {
  156. const validateusername = (rule, value, callback) => {
  157. if (value === "") {
  158. callback(new Error("账号不能为空!"));
  159. } else {
  160. if (value.length !== 9) {
  161. callback(new Error("账号不正确!"));
  162. } else {
  163. let a = value.slice(0, 3);
  164. let b = value.slice(3, 9);
  165. if (a == "TKS" || a == "TKR") {
  166. if (!isnumber(b)) {
  167. callback(new Error("账号不正确!"));
  168. } else {
  169. callback();
  170. }
  171. } else {
  172. callback(new Error("账号不正确!"));
  173. }
  174. }
  175. }
  176. };
  177. const validatepassword = (rule, value, callback) => {
  178. if (value === "") {
  179. callback(new Error("密码不能为空!"));
  180. } else {
  181. if (value.length !== 6) {
  182. callback(new Error("密码规则为2位字母+4位数字组合!"));
  183. } else {
  184. let str = value;
  185. let a = value.slice(0, 2);
  186. let b = value.slice(2, 4);
  187. if (!isnumber(b)) {
  188. callback(new Error("密码规则为2位字母+4位数字组合!"));
  189. } else if (!validAlphabets(a)) {
  190. callback(new Error("密码规则为2位字母+4位数字组合!"));
  191. } else {
  192. callback();
  193. }
  194. }
  195. }
  196. };
  197. const validatetime = (rule, value, callback) => {
  198. if (value === "") {
  199. callback(new Error("开始时间不能为空!"));
  200. } else if (this.ruleForm.expiretime === "") {
  201. callback(new Error("结束时间不能为空!"));
  202. } else {
  203. callback();
  204. }
  205. };
  206. const validatename = (rule, value, callback) => {
  207. if (value !== "") {
  208. if (value.length < 2 || value.length > 12) {
  209. callback(new Error("客户姓名规则为2~12位汉字!"));
  210. } else {
  211. if (!isChinese(value)) {
  212. callback(new Error("客户姓名规则为2~12位汉字!"));
  213. } else if (isEmoticon(value)) {
  214. callback(new Error("客户姓名规则为2~12位汉字!"));
  215. } else {
  216. callback();
  217. }
  218. }
  219. } else {
  220. callback();
  221. }
  222. };
  223. const validatemobile = (rule, value, callback) => {
  224. if (!isMobile(value) && value) {
  225. callback(new Error("手机号格式不正确!"));
  226. } else {
  227. callback();
  228. }
  229. };
  230. return {
  231. options: [],
  232. value: [],
  233. list: [],
  234. states: [],
  235. tags: [],
  236. roleList: [],
  237. loading: false,
  238. title: "添加账号",
  239. showModelThis: this.showModel,
  240. parmValue: {
  241. username: "",
  242. nickname: "",
  243. status: "",
  244. mobile: "",
  245. page: 1,
  246. size: 15,
  247. video_id: "",
  248. id: "",
  249. },
  250. ruleForm: {
  251. username: "",
  252. password: "",
  253. starttime: "",
  254. expiretime: "",
  255. nickname: "",
  256. mobile: "",
  257. remark: "",
  258. video: [],
  259. id: "",
  260. },
  261. videoForm: {
  262. page: 1,
  263. size: 15,
  264. status: "",
  265. video_sn: "",
  266. video_name: "",
  267. video_url: "",
  268. },
  269. videoList: [],
  270. rulesThis: this.rules,
  271. rules: {
  272. username: [
  273. {
  274. required: true,
  275. validator: validateusername,
  276. trigger: "blur",
  277. },
  278. ],
  279. password: [
  280. {
  281. required: true,
  282. validator: validatepassword,
  283. trigger: "blur",
  284. },
  285. ],
  286. starttime: [
  287. {
  288. required: true,
  289. validator: validatetime,
  290. trigger: "blur",
  291. },
  292. ],
  293. nickname: [
  294. {
  295. required: false,
  296. validator: validatename,
  297. trigger: "blur",
  298. },
  299. ],
  300. mobile: [
  301. {
  302. required: false,
  303. validator: validatemobile,
  304. trigger: "blur",
  305. },
  306. ],
  307. remark: [
  308. {
  309. required: false,
  310. trigger: "blur",
  311. },
  312. ],
  313. video: [
  314. {
  315. type: "array",
  316. required: true,
  317. message: "请至少选择一个视频",
  318. trigger: "change",
  319. },
  320. ],
  321. },
  322. };
  323. },
  324. watch: {
  325. showModel: function (val) {
  326. this.showModelThis = val;
  327. if (val) {
  328. this.initForm();
  329. }
  330. },
  331. showModelThis(val) {
  332. if (!val) {
  333. this.$emit("cancel");
  334. }
  335. },
  336. },
  337. methods: {
  338. restSearch() {
  339. this.select = "1";
  340. this.input = "";
  341. this.pageInfo = {
  342. size: 15,
  343. curr: 1,
  344. total: 0,
  345. };
  346. this.parmValue = {
  347. username: "",
  348. nickname: "",
  349. status: "",
  350. mobile: "",
  351. page: 1,
  352. size: 15,
  353. id: "",
  354. };
  355. },
  356. selectTags(id) {
  357. let selectObj = {};
  358. this.states.filter((item) => {
  359. if (item.id === id) {
  360. selectObj.video_name = item.video_name;
  361. selectObj.id = item.id;
  362. selectObj.status = item.status;
  363. this.tags.push(selectObj);
  364. }
  365. });
  366. this.ruleForm.video.push(selectObj.id);
  367. },
  368. async handleClose(tag) {
  369. this.tags.splice(this.tags.indexOf(tag), 1);
  370. this.ruleForm.video.splice(this.ruleForm.video.indexOf(tag.video_id), 1);
  371. },
  372. async remoteMethod(query) {
  373. this.videoForm.video_name = query;
  374. this.videoForm.size = 100;
  375. const res = await asyncRequest.videoList(this.videoForm);
  376. this.states = res.data.video;
  377. if (res && res.code === 0 && res.data) {
  378. if (query !== "") {
  379. this.loading_video_set = true;
  380. this.options = res.data.video;
  381. } else {
  382. this.options = [];
  383. }
  384. } else if (res && res.code >= 100 && res.code <= 104) {
  385. await this.logout();
  386. }
  387. this.loading_video_set = false;
  388. },
  389. closeModel() {},
  390. async initForm() {
  391. this.loading = true;
  392. if (this.isDetail === "003") {
  393. this.title = "添加账号";
  394. this.rulesThis = this.rules;
  395. await this.resetForm();
  396. } else {
  397. if (this.isDetail === "007") {
  398. this.title = "账号详情";
  399. this.rulesThis = {};
  400. } else {
  401. this.title = "修改账号";
  402. this.rulesThis = this.rules;
  403. }
  404. await this.resetForm();
  405. await this.initData();
  406. }
  407. this.loading = false;
  408. },
  409. async initData() {
  410. const res = await asyncRequest.detail({ id: this.id });
  411. if (res && res.code === 0 && res.data) {
  412. const {
  413. username,
  414. info,
  415. password,
  416. starttime,
  417. expiretime,
  418. nickname,
  419. mobile,
  420. remark,
  421. } = res.data;
  422. this.tags = info;
  423. let arr = [];
  424. this.tags.forEach((v1) => {
  425. arr.push(v1.video_id);
  426. });
  427. this.ruleForm = {
  428. username: username.substr(username.length - 6),
  429. password,
  430. starttime,
  431. expiretime,
  432. nickname,
  433. mobile,
  434. remark,
  435. video: arr,
  436. id: this.id,
  437. };
  438. } else if (res && res.code >= 100 && res.code <= 104) {
  439. await this.logout();
  440. }
  441. },
  442. async resetForm() {
  443. this.tags = [];
  444. this.options = [];
  445. this.value = [];
  446. await this.$nextTick(() => {
  447. if (this.$refs.ruleForm) {
  448. this.$refs.videoSet.$data.selectedLabel = "";
  449. this.$refs.ruleForm.resetFields();
  450. this.$refs.ruleForm.clearValidate();
  451. this.ruleForm = {
  452. username: "",
  453. password: "",
  454. starttime: "",
  455. expiretime: "",
  456. nickname: "",
  457. mobile: "",
  458. remark: "",
  459. video: [],
  460. };
  461. }
  462. });
  463. },
  464. async timeReturned(e) {
  465. if (e.startTime !== "") {
  466. this.ruleForm.starttime = e.startTime;
  467. } else {
  468. this.ruleForm.starttime = "";
  469. }
  470. if (e.endTime !== "") {
  471. this.ruleForm.expiretime = e.endTime;
  472. } else {
  473. this.ruleForm.expiretime = "";
  474. }
  475. },
  476. async submitForm() {
  477. await this.$refs.ruleForm.validate(async (valid) => {
  478. if (valid) {
  479. this.loading = true;
  480. let model = Object.assign({}, this.ruleForm);
  481. model.username = "CJ1745" + model.username;
  482. let isok = true;
  483. this.tags.forEach((v1) => {
  484. if (v1.status === "0") {
  485. isok = false;
  486. }
  487. });
  488. if (!isok) {
  489. this.$message.warning("不能绑定已禁用的视频!");
  490. this.loading = false;
  491. return;
  492. }
  493. let res = {};
  494. if (this.id === "add") {
  495. res = await asyncRequest.add(model);
  496. } else {
  497. res = await asyncRequest.update(model);
  498. }
  499. this.loading = false;
  500. if (res && res.code === 0) {
  501. const title = this.id === "add" ? "添加成功" : "修改成功";
  502. this.$notify.success({
  503. title,
  504. message: "",
  505. });
  506. this.showModelThis = false;
  507. this.$emit("refresh");
  508. } else if (res && res.code >= 100 && res.code <= 104) {
  509. await this.logout();
  510. } else {
  511. this.$message.warning(res.msg);
  512. }
  513. } else {
  514. return false;
  515. }
  516. });
  517. },
  518. },
  519. };
  520. </script>