addEdit.vue 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328
  1. <template>
  2. <el-dialog
  3. v-loading="loading"
  4. :title="'新建工单'"
  5. :center="true"
  6. align="left"
  7. top="5vh"
  8. width="1040px"
  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="showModelThis = false"
  15. append-to-body
  16. >
  17. <el-card style="margin-top: -20px">
  18. <el-row>
  19. <el-col :span="24">
  20. <el-form
  21. ref="ruleForm"
  22. :model="ruleForm"
  23. status-icon
  24. size="mini"
  25. label-width="90px"
  26. :rules="rulesThis"
  27. class="demo-ruleForm"
  28. >
  29. <el-row>
  30. <el-col :span="24">
  31. <el-form-item prop="title" label="工单标题">
  32. <el-input
  33. v-model="ruleForm.title"
  34. maxlength="250"
  35. :size="'mini'"
  36. :placeholder="'工单标题'"
  37. :disabled="isDetail"
  38. />
  39. </el-form-item>
  40. </el-col>
  41. <el-col :span="12">
  42. <el-form-item prop="company_type" label="系统类型">
  43. <el-select
  44. v-model="ruleForm.company_type"
  45. style="width: 100%"
  46. :size="'mini'"
  47. clearable
  48. placeholder="系统类型"
  49. >
  50. <el-option
  51. v-for="item in company_type"
  52. :key="item.value"
  53. :label="item.label"
  54. :value="item.value"
  55. clearable
  56. >
  57. </el-option>
  58. </el-select>
  59. </el-form-item>
  60. <el-form-item prop="model_id" label="功能区">
  61. <good-class
  62. :value="ruleForm.model_id"
  63. :size="'mini'"
  64. @handleChange="goods_class_change"
  65. :disabled="ruleForm.company_type == ''"
  66. :type="ruleForm.company_type"
  67. :placeholder="'功能区'"
  68. />
  69. </el-form-item>
  70. </el-col>
  71. <el-col :span="12">
  72. <el-form-item prop="noteNo" label="业务编号">
  73. <el-input
  74. v-model="ruleForm.noteNo"
  75. maxlength="250"
  76. :size="'medium'"
  77. type="textarea"
  78. :autosize="{ minRows: 3, maxRows: 3 }"
  79. :placeholder="'业务编号'"
  80. :disabled="isDetail"
  81. />
  82. </el-form-item>
  83. </el-col>
  84. <el-col :span="24" v-if="!loading">
  85. <TinymceEditor
  86. ref="tinymceEditor"
  87. :tinymceHtml="ruleForm.remark"
  88. @input="tinput"
  89. ></TinymceEditor>
  90. </el-col>
  91. </el-row>
  92. </el-form>
  93. </el-col>
  94. <el-col :span="24" style="text-align: right; padding: 15px 0 0 0">
  95. <el-button v-if="!isDetail" :size="'mini'" type="primary" @click="submitForm"
  96. >保 存
  97. </el-button>
  98. <el-button :size="'mini'" @click="showModelThis = false">{{
  99. isDetail ? "关 闭" : "取 消"
  100. }}</el-button>
  101. </el-col>
  102. </el-row>
  103. </el-card>
  104. </el-dialog>
  105. </template>
  106. <script>
  107. import asyncRequest from "@/apis/service/purchaseAndSale/adjust";
  108. import resToken from "@/mixins/resToken";
  109. import TinymceEditor from "@/components/TinymceEditor";
  110. import { company_type } from "@/views/pucColumns";
  111. // import Tinymce from "@/components/Tinymce";
  112. export default {
  113. name: "adjust",
  114. props: ["showModel", "id", "isDetail", "type"],
  115. mixins: [resToken],
  116. components: {
  117. TinymceEditor,
  118. // Tinymce,
  119. },
  120. data() {
  121. function isEmojiCharacter(substring) {
  122. for (var i = 0; i < substring.length; i++) {
  123. var hs = substring.charCodeAt(i);
  124. if (0xd800 <= hs && hs <= 0xdbff) {
  125. if (substring.length > 1) {
  126. var ls = substring.charCodeAt(i + 1);
  127. var uc = (hs - 0xd800) * 0x400 + (ls - 0xdc00) + 0x10000;
  128. if (0x1d000 <= uc && uc <= 0x1f77f) {
  129. return true;
  130. }
  131. }
  132. } else if (substring.length > 1) {
  133. var ls = substring.charCodeAt(i + 1);
  134. if (ls == 0x20e3) {
  135. return true;
  136. }
  137. } else {
  138. if (0x2100 <= hs && hs <= 0x27ff) {
  139. return true;
  140. } else if (0x2b05 <= hs && hs <= 0x2b07) {
  141. return true;
  142. } else if (0x2934 <= hs && hs <= 0x2935) {
  143. return true;
  144. } else if (0x3297 <= hs && hs <= 0x3299) {
  145. return true;
  146. } else if (
  147. hs == 0xa9 ||
  148. hs == 0xae ||
  149. hs == 0x303d ||
  150. hs == 0x3030 ||
  151. hs == 0x2b55 ||
  152. hs == 0x2b1c ||
  153. hs == 0x2b1b ||
  154. hs == 0x2b50
  155. ) {
  156. return true;
  157. }
  158. }
  159. }
  160. }
  161. const validatename = (rule, value, callback) => {
  162. if (value === "") {
  163. callback();
  164. } else {
  165. let reg = new RegExp("[\\u4E00-\\u9FFF]+", "g");
  166. if (reg.test(value)) {
  167. callback(new Error("业务编号不能输入汉字!"));
  168. } else if (isEmojiCharacter(value)) {
  169. callback(new Error("业务编号不能输入表情包!"));
  170. } else {
  171. callback();
  172. }
  173. }
  174. };
  175. return {
  176. loading: false,
  177. company_type,
  178. organizeList: [],
  179. showModelThis: this.showModel,
  180. ruleForm: {
  181. title: "", // 账号
  182. company_type: "",
  183. model_id: [], // 功能区
  184. remark: "",
  185. noteNo: "",
  186. },
  187. rulesThis: this.rules,
  188. rules: {
  189. title: [
  190. {
  191. required: true,
  192. message: "请输入标题",
  193. trigger: "blur",
  194. },
  195. ],
  196. noteNo: [
  197. {
  198. required: false,
  199. validator: validatename,
  200. trigger: "blur",
  201. },
  202. ],
  203. company_type: [
  204. {
  205. required: true,
  206. message: "请选择系统类型",
  207. trigger: "change",
  208. },
  209. ],
  210. model_id: [
  211. {
  212. type: "array",
  213. required: true,
  214. message: "请选择功能区",
  215. trigger: "change",
  216. },
  217. ],
  218. remark: [
  219. {
  220. required: true,
  221. message: "请输入描述",
  222. trigger: "blur",
  223. },
  224. ],
  225. },
  226. };
  227. },
  228. watch: {
  229. showModel: function (val) {
  230. this.showModelThis = val;
  231. if (val) {
  232. this.initForm();
  233. }
  234. },
  235. showModelThis(val) {
  236. if (!val) {
  237. this.$emit("cancel");
  238. }
  239. },
  240. },
  241. mounted() {},
  242. methods: {
  243. async initForm() {
  244. this.loading = true;
  245. this.rulesThis = this.rules;
  246. await this.resetForm();
  247. this.loading = false;
  248. },
  249. async resetForm() {
  250. // 重置
  251. await this.$nextTick(() => {
  252. if (this.$refs.ruleForm) {
  253. this.$refs.ruleForm.resetFields();
  254. this.$refs.ruleForm.clearValidate();
  255. this.ruleForm = {
  256. title: "", // 账号
  257. company_type: "",
  258. noteNo: "",
  259. model_id: [], // 功能区
  260. remark: `<div style="display: inline-block"><h4>【故障现象描述:】</h4>\n<p>必填 Ctrl+V粘贴截图</p>\n<h4>【期望结果描述:】</h4>\n<p>必填 Ctrl+V粘贴截图</p></div> `,
  261. };
  262. }
  263. });
  264. },
  265. goods_class_change(e) {
  266. this.ruleForm.model_id = e;
  267. this.$refs.ruleForm.validateField("model_id");
  268. },
  269. async submitForm() {
  270. await this.$refs.ruleForm.validate(async (valid) => {
  271. if (valid) {
  272. this.loading = true;
  273. let model = JSON.parse(JSON.stringify(this.ruleForm));
  274. let remark = model.remark;
  275. remark = remark.replace(/\n/g, "");
  276. remark = remark.replace(/"/g, "'");
  277. model.remark = remark;
  278. let length = 5000;
  279. if (model.remark.length > length) {
  280. this.$message.warning("描述文字及标签总长度不能超过5000!");
  281. this.loading = false;
  282. return;
  283. }
  284. const { code, data, message } = await asyncRequest.add(model);
  285. this.loading = false;
  286. if (code === 0) {
  287. this.$notify.success({
  288. title: "工单添加成功",
  289. message: "",
  290. });
  291. this.showModelThis = false;
  292. // 刷新
  293. this.$emit("refresh");
  294. } else if (code >= 100 && code <= 104) {
  295. await this.logout();
  296. } else {
  297. this.$message.warning(message);
  298. }
  299. } else {
  300. console.log("error submit!!");
  301. return false;
  302. }
  303. });
  304. },
  305. getimg(str) {
  306. console.log(str);
  307. let arr = str.split("<img");
  308. console.log(arr);
  309. },
  310. tinput(e) {
  311. this.ruleForm.remark = e || "";
  312. this.$refs.ruleForm.validateField("remark");
  313. },
  314. },
  315. };
  316. </script>
  317. <style lang="scss" scoped>
  318. .account {
  319. }
  320. </style>