costFormAddEdit.vue 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293
  1. <template>
  2. <el-dialog
  3. v-loading="loading"
  4. :title="title"
  5. :center="true"
  6. align="left"
  7. top="18vh"
  8. width="500px"
  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. >
  16. <el-card style="margin: -20px 0 0 0">
  17. <el-row :gutter="10">
  18. <el-col :span="24">
  19. <el-form
  20. ref="ruleForm"
  21. :model="ruleForm"
  22. status-icon
  23. :size="'small'"
  24. :rules="rulesThis"
  25. label-width="80px"
  26. class="demo-ruleForm"
  27. >
  28. <el-form-item label="起订量" prop="s1">
  29. <el-input
  30. placeholder="起订量"
  31. v-model="ruleForm.s1"
  32. type="number"
  33. :min="0"
  34. :max="9999999999"
  35. :step="0"
  36. />
  37. </el-form-item>
  38. <el-form-item label="成本裸价" prop="s2">
  39. <el-input
  40. placeholder="成本裸价"
  41. v-model="ruleForm.s2"
  42. type="number"
  43. :min="0"
  44. :max="9999999999"
  45. :step="2"
  46. >
  47. <template slot="append">元</template>
  48. </el-input>
  49. </el-form-item>
  50. <el-form-item label="成本合计" prop="s2">
  51. <el-input
  52. placeholder="成本合计"
  53. v-model="ruleForm.s2"
  54. type="number"
  55. :min="0"
  56. :max="9999999999"
  57. :step="2"
  58. >
  59. <template slot="append">元</template>
  60. </el-input>
  61. </el-form-item>
  62. <el-form-item label="其中运费" prop="s2">
  63. <el-input
  64. placeholder="其中运费"
  65. v-model="ruleForm.s2"
  66. type="number"
  67. :min="0"
  68. :max="9999999999"
  69. :step="2"
  70. >
  71. <template slot="append">元</template>
  72. </el-input>
  73. </el-form-item>
  74. <el-form-item label="使用状态" prop="s5">
  75. <el-select
  76. v-model="ruleForm.s5"
  77. style="width: 100%"
  78. placeholder="使用状态"
  79. >
  80. <el-option
  81. v-for="item in options"
  82. :key="item.value"
  83. :label="item.label"
  84. :value="item.value"
  85. >
  86. </el-option>
  87. </el-select>
  88. </el-form-item>
  89. </el-form>
  90. </el-col>
  91. <el-col :span="24" style="text-align: right; padding-top: 18px">
  92. <el-button
  93. v-if="id !== 'edit'"
  94. :size="'small'"
  95. type="primary"
  96. @click="submitForm"
  97. >保 存
  98. </el-button>
  99. <el-button @click="showModelThis = false" :size="'small'">{{
  100. id == "edit" ? "关 闭" : "取 消"
  101. }}</el-button>
  102. </el-col>
  103. </el-row>
  104. </el-card>
  105. </el-dialog>
  106. </template>
  107. <script>
  108. import asyncRequest from "@/apis/service/goodStore/active";
  109. import resToken from "@/mixins/resToken";
  110. export default {
  111. name: "active",
  112. props: ["showModel", "id", "sitem"],
  113. mixins: [resToken],
  114. data() {
  115. return {
  116. loading: false,
  117. title: "",
  118. showModelThis: this.showModel,
  119. options: [
  120. { value: "1", label: "启用" },
  121. { value: "0", label: "禁用" },
  122. ],
  123. ruleForm: {},
  124. rulesThis: this.rules,
  125. rules: {
  126. s1: [
  127. { required: true, message: "起订量应为合法数字", trigger: "blur" },
  128. ],
  129. s2: [
  130. { required: true, message: "成本裸价应为合法数字", trigger: "blur" },
  131. ],
  132. s3: [
  133. { required: true, message: "成本合计应为合法数字", trigger: "blur" },
  134. ],
  135. s4: [
  136. { required: true, message: "其中运费应为合法数字", trigger: "blur" },
  137. ],
  138. s5: [
  139. { required: true, message: "请选择使用状态", trigger: "change" },
  140. ],
  141. },
  142. };
  143. },
  144. watch: {
  145. showModel: function (val) {
  146. this.showModelThis = val;
  147. if (val) {
  148. this.initForm();
  149. }
  150. },
  151. showModelThis(val) {
  152. if (!val) {
  153. this.$emit("cancel");
  154. }
  155. },
  156. },
  157. methods: {
  158. async initForm() {
  159. this.loading = true;
  160. this.resetFormData();
  161. if (this.id === "add") {
  162. this.title = "添加成本阶梯";
  163. this.rulesThis = this.rules;
  164. } else if (this.id === "005") {
  165. this.title = "修改成本阶梯";
  166. this.rulesThis = this.rules;
  167. } else {
  168. this.title = "成本阶梯详情";
  169. this.rulesThis = {};
  170. }
  171. await this.resetForm();
  172. this.loading = false;
  173. },
  174. async resetForm() {
  175. // 重置
  176. await this.$nextTick(() => {
  177. if (this.$refs.ruleForm) {
  178. this.$refs.ruleForm.resetFields();
  179. this.$refs.ruleForm.clearValidate();
  180. this.resetFormData();
  181. }
  182. });
  183. },
  184. resetFormData() {
  185. const { id, s1, s2, s3, s4, s5 } = this.sitem;
  186. this.ruleForm = {
  187. id: id || "",
  188. s1: s1 || "",
  189. s2: s2 || "",
  190. s3: s3 || "",
  191. s4: s4 || "",
  192. s5: s5 || "0",
  193. };
  194. },
  195. s1searchChange(e) {
  196. const { id, code, label } = e;
  197. if (id) {
  198. this.ruleForm.s1 = code;
  199. } else {
  200. this.ruleForm.s1 = "";
  201. }
  202. this.$refs.ruleForm.validateField("s1");
  203. this.getlist();
  204. },
  205. async getlist() {
  206. const { s1 } = this.ruleForm;
  207. const { code, data, message } = await asyncRequest.list({
  208. s1: s1,
  209. });
  210. if (code === 0) {
  211. this.options = data;
  212. } else if (code >= 100 && code <= 104) {
  213. await this.logout();
  214. } else {
  215. this.$message.warning(message);
  216. }
  217. },
  218. async submitForm() {
  219. await this.$refs.ruleForm.validate(async (valid) => {
  220. if (valid) {
  221. this.loading = true;
  222. let model = JSON.parse(JSON.stringify(this.ruleForm));
  223. let res = {};
  224. if (this.id === "003") {
  225. delete model["id"];
  226. res = await asyncRequest.add(model);
  227. } else {
  228. res = await asyncRequest.update(model);
  229. }
  230. this.loading = false;
  231. if (res && res.code === 0) {
  232. const title = this.id === "add" ? "添加成功!" : "修改成功!";
  233. this.$notify.success({
  234. title,
  235. message: "",
  236. });
  237. this.showModelThis = false;
  238. // 刷新
  239. this.$emit("refresh");
  240. } else if (res && res.code >= 100 && res.code <= 104) {
  241. await this.logout();
  242. } else {
  243. this.$message.warning(res.message);
  244. }
  245. } else {
  246. console.log("error submit!!");
  247. return false;
  248. }
  249. });
  250. },
  251. async submitForm1() {
  252. await this.$refs.ruleForm.validate(async (valid) => {
  253. if (valid) {
  254. this.loading = true;
  255. let model = JSON.parse(JSON.stringify(this.ruleForm));
  256. let res = {};
  257. if (this.id === "003") {
  258. delete model["id"];
  259. res = await asyncRequest.add(model);
  260. } else {
  261. res = await asyncRequest.update(model);
  262. }
  263. this.loading = false;
  264. if (res && res.code === 0) {
  265. const title = this.id === "add" ? "添加成功!" : "修改成功!";
  266. this.$notify.success({
  267. title,
  268. message: "",
  269. });
  270. this.showModelThis = false;
  271. // 刷新
  272. this.$emit("refresh");
  273. } else if (res && res.code >= 100 && res.code <= 104) {
  274. await this.logout();
  275. } else {
  276. this.$message.warning(res.message);
  277. }
  278. } else {
  279. console.log("error submit!!");
  280. return false;
  281. }
  282. });
  283. },
  284. },
  285. };
  286. </script>
  287. <style lang="scss" scoped>
  288. .active {
  289. }
  290. </style>