set-active-price-form.vue 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  1. <template>
  2. <el-dialog
  3. v-loading="loading"
  4. :title="'编辑活动信息'"
  5. :center="true"
  6. align="left"
  7. top="12vh"
  8. width="600px"
  9. :size="'mini'"
  10. :close-on-click-modal="false"
  11. :visible.sync="showModelThis"
  12. element-loading-text="拼命加载中"
  13. element-loading-spinner="el-icon-loading"
  14. element-loading-background="rgba(0, 0, 0, 0.8)"
  15. @close="showModelThis = false"
  16. >
  17. <el-card style="margin: -20px 0 0 0">
  18. <el-row :gutter="10">
  19. <el-col :span="24">
  20. <el-form
  21. ref="ruleForm"
  22. :model="ruleForm"
  23. status-icon
  24. :rules="rulesThis"
  25. label-width="130px"
  26. class="demo-ruleForm"
  27. >
  28. <el-form-item label="商品编号" prop="skuCode" label-width="80px">
  29. <el-input
  30. v-model="ruleForm.skuCode"
  31. placeholder="商品编号"
  32. maxlength="100"
  33. disabled
  34. />
  35. </el-form-item>
  36. <div style="display:flex">
  37. <el-form-item label="起订量" prop="moq_num" label-width="80px">
  38. <el-input
  39. v-model="ruleForm.moq_num"
  40. disabled
  41. placeholder="起订量"
  42. maxlength="100"
  43. />
  44. </el-form-item>
  45. <el-form-item label="成本单价" prop="cost_price" label-width="80px">
  46. <el-input
  47. v-model="ruleForm.cost_price"
  48. disabled
  49. placeholder="成本单价"
  50. maxlength="100"
  51. >
  52. <template slot="append">元</template></el-input
  53. >
  54. </el-form-item>
  55. </div>
  56. <el-form-item label="非活动价" prop="sale_price" label-width="80px">
  57. <el-input
  58. v-model="ruleForm.sale_price"
  59. disabled
  60. placeholder="非活动价"
  61. maxlength="100"
  62. >
  63. <template slot="append">元</template></el-input
  64. >
  65. </el-form-item>
  66. <el-form-item label="是否使用结算单价" prop="is_activity">
  67. <el-select
  68. v-model="ruleForm.is_activity"
  69. style="width:100%"
  70. placeholder="是否使用活动单价"
  71. maxlength="100"
  72. >
  73. <el-option value="0" label="否" />
  74. <el-option value="1" label="是" />
  75. </el-select>
  76. </el-form-item>
  77. <el-form-item label="结算单价" prop="settle_price" label-width="80px">
  78. <digital-input
  79. :disabled="ruleForm.is_activity === '0'"
  80. :values="ruleForm.is_activity === '0' ? '0' : ruleForm.settle_price"
  81. :placeholder="'结算单价'"
  82. :min="0"
  83. :max="100000000000"
  84. :position="'right'"
  85. :precision="2"
  86. :size="'large'"
  87. :controls="false"
  88. :append="'元'"
  89. @reschange="budget_total_change"
  90. />
  91. </el-form-item>
  92. <el-form-item label="活动价" prop="activity_price" label-width="80px">
  93. <digital-input
  94. :values="ruleForm.activity_price"
  95. :placeholder="'活动价'"
  96. :min="0"
  97. :max="100000000000"
  98. :position="'right'"
  99. :precision="2"
  100. :size="'large'"
  101. :controls="false"
  102. :append="'元'"
  103. @reschange="activity_price_change"
  104. />
  105. </el-form-item>
  106. </el-form>
  107. </el-col>
  108. <el-col :span="24" style="text-align: right">
  109. <el-button v-if="id !== '007'" type="primary" @click="submitForm"
  110. >保 存
  111. </el-button>
  112. <el-button @click="showModelThis = false">{{
  113. id == "007" ? "关 闭" : "取 消"
  114. }}</el-button>
  115. </el-col>
  116. </el-row>
  117. </el-card>
  118. </el-dialog>
  119. </template>
  120. <script>
  121. export default {
  122. name: "editMinorderForm",
  123. props: ["showModel", "sitem"],
  124. data() {
  125. const validate_activity_price = (rule, value, callback) => {
  126. if (value === "") {
  127. callback(new Error("活动价价不能为空!"));
  128. } else {
  129. callback();
  130. }
  131. };
  132. return {
  133. loading: false,
  134. showModelThis: this.showModel,
  135. ruleForm: {
  136. skuCode: "",
  137. good_name: "",
  138. activity_stock: "",
  139. moq_num: "",
  140. cost_price: "",
  141. sale_price: "",
  142. activity_price: "",
  143. is_activity:'1',
  144. settle_price:''
  145. },
  146. rulesThis: this.rules,
  147. rules: {
  148. activity_price: [
  149. {
  150. required: true,
  151. validator: validate_activity_price,
  152. trigger: "blur",
  153. },
  154. ],
  155. },
  156. };
  157. },
  158. watch: {
  159. showModel: function (val) {
  160. this.showModelThis = val;
  161. if (val) {
  162. this.initForm();
  163. }
  164. },
  165. showModelThis(val) {
  166. if (!val) {
  167. this.$emit("cancel");
  168. }
  169. },
  170. },
  171. methods: {
  172. budget_total_change(e){
  173. this.ruleForm.settle_price = e + ''
  174. },
  175. async initForm() {
  176. this.loading = true;
  177. this.rulesThis = this.rules;
  178. await this.resetForm();
  179. this.loading = false;
  180. },
  181. async resetForm() {
  182. // 重置
  183. await this.$nextTick(() => {
  184. if (this.$refs.ruleForm) {
  185. this.$refs.ruleForm.resetFields();
  186. this.$refs.ruleForm.clearValidate();
  187. this.ruleForm = this.sitem
  188. ? JSON.parse(JSON.stringify(this.sitem))
  189. : {
  190. skuCode: "",
  191. good_name: "",
  192. activity_stock: "",
  193. moq_num: "",
  194. cost_price: "",
  195. sale_price: "",
  196. activity_price: "",
  197. };
  198. }
  199. });
  200. },
  201. activity_price_change(e) {
  202. this.ruleForm.activity_price = e + "";
  203. this.$refs.ruleForm.validateField("activity_price");
  204. },
  205. async submitForm() {
  206. await this.$refs.ruleForm.validate(async (valid) => {
  207. if (valid) {
  208. if (!this.loading) {
  209. this.loading = true;
  210. let model = JSON.parse(JSON.stringify(this.ruleForm));
  211. this.showModelThis = false;
  212. // 刷新
  213. this.$emit("refresh", {
  214. ...model,
  215. settle_price:this.ruleForm.is_activity === '0' ? '0' : this.ruleForm.settle_price
  216. });
  217. }
  218. } else {
  219. console.log("error submit!!");
  220. return false;
  221. }
  222. });
  223. },
  224. },
  225. };
  226. </script>
  227. <style lang="scss" scoped>
  228. .sort {
  229. }
  230. </style>