addEditBargain.vue 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345
  1. <template>
  2. <el-dialog
  3. v-loading="loading"
  4. :title="'申请议价'"
  5. :center="true"
  6. align="left"
  7. top="10vh"
  8. width="900px"
  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-top: -20px">
  17. <el-form
  18. ref="ruleForm"
  19. :model="ruleForm"
  20. status-icon
  21. :size="'mini'"
  22. :rules="rulesThis"
  23. label-width="75px"
  24. class="demo-ruleForm"
  25. >
  26. <el-row>
  27. <el-col :span="3">
  28. <el-form-item label="图片" style="margin: 0" label-width="44px">
  29. <img
  30. class="hover"
  31. v-viewer
  32. :src="show_sitem.good_img"
  33. alt=""
  34. v-if="show_sitem && show_sitem.good_img"
  35. style="width: 35px; height: 35px"
  36. />
  37. </el-form-item>
  38. </el-col>
  39. <el-col :span="4">
  40. <el-form-item label="单位" label-width="50px">
  41. <el-input v-if="show_sitem" maxlength="10" v-model="show_sitem.unit" disabled />
  42. </el-form-item>
  43. </el-col>
  44. <el-col :span="17">
  45. <el-form-item label="商品名称">
  46. <el-input
  47. v-if="show_sitem"
  48. v-model="show_sitem.good_name"
  49. maxlength="100"
  50. disabled
  51. />
  52. </el-form-item>
  53. </el-col>
  54. <el-col :span="8">
  55. <el-form-item
  56. label="议价原因"
  57. prop="result_info_id"
  58. label-width="88px"
  59. >
  60. <abnormal-cause
  61. :value="ruleForm.result_info_id"
  62. :placeholder="'议价原因'"
  63. :type="'7'"
  64. :disabled="false"
  65. :size="'mini'"
  66. @searchChange="select_change"
  67. />
  68. </el-form-item>
  69. </el-col>
  70. <el-col :span="7">
  71. <el-form-item label="当前售价">
  72. <el-input
  73. v-if="show_sitem"
  74. v-model="show_sitem.sale_price"
  75. maxlength="20"
  76. disabled
  77. />
  78. </el-form-item>
  79. </el-col>
  80. <el-col :span="9">
  81. <el-form-item
  82. label="期望售价"
  83. prop="bargain_price"
  84. label-width="88px"
  85. >
  86. <digital-input
  87. :values="ruleForm.bargain_price"
  88. :name="'ruleForm.bargain_price'"
  89. :placeholder="'期望售价'"
  90. :min="0"
  91. :disabled="sitem.is_gold_price == 0 ? false : true"
  92. :max="100000000000"
  93. :position="'right'"
  94. :precision="2"
  95. :size="'mini'"
  96. :controls="false"
  97. :append="'元'"
  98. @reschange="number_change($event, 'bargain_price')"
  99. />
  100. </el-form-item>
  101. </el-col>
  102. <!-- 需修改字段 -->
  103. <el-col :span="12">
  104. <el-form-item label="当前工艺费" label-width="108px">
  105. <el-input
  106. v-if="show_sitem"
  107. v-model="show_sitem.sale_price"
  108. maxlength="20"
  109. disabled
  110. />
  111. </el-form-item>
  112. </el-col>
  113. <el-col :span="12">
  114. <el-form-item
  115. label="期望工艺费"
  116. prop="bargain_price"
  117. label-width="108px"
  118. >
  119. <digital-input
  120. :values="ruleForm.bargain_price"
  121. :name="'ruleForm.bargain_price'"
  122. :placeholder="'期望工艺费'"
  123. :min="0"
  124. :disabled="sitem.is_gold_price == 1 ? false : true"
  125. :max="100000000000"
  126. :position="'right'"
  127. :precision="2"
  128. :size="'mini'"
  129. :controls="false"
  130. :append="'元'"
  131. @reschange="number_change($event, 'bargain_price')"
  132. />
  133. </el-form-item>
  134. </el-col>
  135. <el-col :span="18">
  136. <el-form-item
  137. label="议价备注:"
  138. prop="bargain_remark"
  139. label-width="88px"
  140. >
  141. <el-input
  142. type="textarea"
  143. :rows="2"
  144. maxlength="250"
  145. show-word-limit
  146. placeholder="议价备注"
  147. v-model="ruleForm.bargain_remark"
  148. >
  149. </el-input>
  150. </el-form-item>
  151. </el-col>
  152. <el-col :span="6" style="text-align: right">
  153. <el-button @click="showModelThis = false" :size="'mini'">{{
  154. isDetail ? "关 闭" : "取 消"
  155. }}</el-button>
  156. <el-button
  157. v-if="!isDetail"
  158. type="primary"
  159. :size="'mini'"
  160. @click="submitForm"
  161. >保 存
  162. </el-button>
  163. </el-col>
  164. </el-row>
  165. </el-form>
  166. </el-card>
  167. </el-dialog>
  168. </template>
  169. <script>
  170. import asyncRequest from "@/apis/service/sellOut/bargainList";
  171. import resToken from "@/mixins/resToken";
  172. export default {
  173. name: "Account",
  174. props: ["showModel", "sitem"],
  175. mixins: [resToken],
  176. data() {
  177. const validate_num = (rule, value, callback) => {
  178. if (value === "") {
  179. callback(new Error("不能为空!"));
  180. } else if (
  181. value === "0" ||
  182. value === "0." ||
  183. value === "0.0" ||
  184. value === "0.00"
  185. ) {
  186. callback(new Error("期望售价不能为零!"));
  187. } else {
  188. callback();
  189. }
  190. };
  191. return {
  192. roleList: [],
  193. loading: false,
  194. title: "添加账号",
  195. organizeList: [],
  196. showModelThis: this.showModel,
  197. ruleForm: {
  198. result_info_id: "",
  199. bargain_price: "0",
  200. result_info_id_name: "",
  201. bargain_remark: "",
  202. },
  203. show_sitem: null,
  204. rulesThis: this.rules,
  205. rules: {
  206. result_info_id: [
  207. {
  208. required: true,
  209. message: "请选择议价原因!",
  210. trigger: "change",
  211. },
  212. ],
  213. bargain_price: [
  214. {
  215. required: true,
  216. validator: validate_num,
  217. trigger: "blur",
  218. },
  219. ],
  220. bargain_remark: [
  221. {
  222. required: true,
  223. message: "议价备注不能为空!",
  224. trigger: "blur",
  225. },
  226. ],
  227. },
  228. };
  229. },
  230. watch: {
  231. showModel: function (val) {
  232. this.showModelThis = val;
  233. if (val) {
  234. this.initForm();
  235. }
  236. },
  237. showModelThis(val) {
  238. if (!val) {
  239. this.$emit("cancel");
  240. }
  241. },
  242. },
  243. mounted() {
  244. console.log("11111111111111111",this.sitem.is_gold_price)
  245. },
  246. methods: {
  247. itemidChange(e) {
  248. this.ruleForm.itemid = e;
  249. this.$refs.ruleForm.validateField("itemid");
  250. },
  251. async initForm() {
  252. this.loading = true;
  253. this.rulesThis = this.rules;
  254. await this.resetForm();
  255. this.loading = false;
  256. },
  257. number_change(e, key) {
  258. this.ruleForm[key] = e + "" || "0";
  259. this.$refs.ruleForm.validateField(key);
  260. },
  261. async resetForm() {
  262. // 重置
  263. await this.$nextTick(() => {
  264. this.show_sitem = JSON.parse(JSON.stringify(this.sitem));
  265. const { sale_price, specinfo } = this.sitem;
  266. if (specinfo && specinfo.length > 0) {
  267. specinfo.forEach((a, ai) => {
  268. this.show_sitem.good_name += `${ai === 0 ? "_" : "-"}${
  269. a.spec_name
  270. }[${a.spec_value_name}]`;
  271. });
  272. }
  273. if (this.$refs.ruleForm) {
  274. this.$refs.ruleForm.resetFields();
  275. this.$refs.ruleForm.clearValidate();
  276. this.ruleForm = {
  277. bargain_price: sale_price || "0",
  278. result_info_id: "",
  279. bargain_remark: "",
  280. result_info_id_name: "",
  281. };
  282. }
  283. });
  284. },
  285. select_change(e) {
  286. const { code, label } = e;
  287. this.ruleForm.result_info_id = code || "";
  288. this.ruleForm.result_info_id_name = label || "";
  289. this.$refs.ruleForm.validateField("result_info_id");
  290. },
  291. async submitForm() {
  292. await this.$refs.ruleForm.validate(async (valid) => {
  293. if (valid) {
  294. this.loading = true;
  295. const { bargain_price, result_info_id, bargain_remark } = JSON.parse(
  296. JSON.stringify(this.ruleForm)
  297. );
  298. const { bidNo, sale_price } = this.sitem;
  299. if (sale_price * 100 === bargain_price * 100) {
  300. this.$message.warning("期望售价不能等于当前售价!");
  301. this.loading = false;
  302. return;
  303. }
  304. const model = {
  305. bidNo: bidNo,
  306. bargain_price: bargain_price, // 账号
  307. result_info_id,
  308. bargain_remark,
  309. };
  310. let res = await asyncRequest.bargain_add(model);
  311. this.loading = false;
  312. if (res && res.code === 0) {
  313. this.$notify.success({
  314. title: "议价流程创建成功!",
  315. message: "",
  316. });
  317. this.showModelThis = false;
  318. // 刷新
  319. this.$emit("refresh");
  320. } else if (res && res.code >= 100 && res.code <= 104) {
  321. await this.logout();
  322. } else {
  323. this.$message.warning(res.message);
  324. }
  325. } else {
  326. console.log("error submit!!");
  327. return false;
  328. }
  329. });
  330. },
  331. },
  332. };
  333. </script>
  334. <style lang="scss" scoped>
  335. .account {
  336. }
  337. </style>