fixed-price-form.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378
  1. <template>
  2. <el-form
  3. v-loading="loading"
  4. ref="ruleForm"
  5. :model="ruleForm"
  6. status-icon
  7. :rules="rulesThis"
  8. :label-width="labelWidth || '110px'"
  9. class="demo-ruleForm-goodsOnline"
  10. :size="'mini'"
  11. >
  12. <el-row>
  13. <el-col :span="12"
  14. ><el-form-item label="售价凭证类型" prop="proof_type">
  15. <el-radio-group v-model="ruleForm.proof_type">
  16. <el-radio
  17. v-for="item in options"
  18. :key="item.value"
  19. :label="item.value"
  20. >{{ item.label }}</el-radio
  21. >
  22. </el-radio-group>
  23. </el-form-item>
  24. </el-col>
  25. <el-col :span="12">
  26. <el-form-item label="凭证文件" prop="proof_url">
  27. <ul class="shangchuan-ul">
  28. <li v-if="ruleForm.proof_type === '1'" class="shiping">暂无接口</li>
  29. <li v-if="ruleForm.proof_type === '2'" class="tupian">
  30. <div class="activity-upload">
  31. <div class="btnupload" style="position: relative">
  32. <img
  33. v-if="ruleForm.proof_url"
  34. :src="ruleForm.proof_url"
  35. class="avatar"
  36. />
  37. <i v-else class="el-icon-plus avatar-uploader-icon"></i>
  38. <file-upload
  39. class="Upload"
  40. :disabled="type === 'view' || type === 'editCoin'"
  41. :accept="'.jpg,.png,.jpeg'"
  42. :multiple="false"
  43. :uploadcondition="beforeAvatarUpload"
  44. @UploadErrorEvent="UploadErrorEventproof_url"
  45. @UploadSuccessEvent="UploadSuccessEventproof_url"
  46. ></file-upload>
  47. </div>
  48. <div class="txt-tips fl">
  49. <p>建议大小:小于1MB</p>
  50. <p>文件格式:.jpg,.png,.jpeg</p>
  51. </div>
  52. <div class="show-"></div>
  53. </div>
  54. </li>
  55. <li v-if="ruleForm.proof_type === '3'" class="qita">暂无接口</li>
  56. </ul>
  57. </el-form-item>
  58. </el-col>
  59. <el-col :span="24">
  60. <el-table
  61. :data="ruleForm.good_ladder"
  62. :size="'mini'"
  63. border
  64. stripe
  65. style="width: 100%; margin: 0 0 20px 0"
  66. >
  67. <el-table-column prop="min_num" label="起订量(>=)" />
  68. <el-table-column prop="sale_price" label="售价" />
  69. <el-table-column prop="market_price" label="市场价" />
  70. <el-table-column prop="market_platform" label="对比平台" />
  71. <el-table-column prop="status" label="状态" />
  72. <el-table-column fixed="right">
  73. <template slot="header" slot-scope="scope">
  74. <span>操作</span>
  75. <el-tooltip effect="dark" content="添加阶梯" placement="top">
  76. <i
  77. class="el-icon-circle-plus-outline tb-icon fr"
  78. @click="openCostEdit(-1, {})"
  79. ></i>
  80. </el-tooltip>
  81. </template>
  82. <template slot-scope="scope">
  83. <el-tooltip effect="dark" content="修改" placement="top">
  84. <i
  85. class="el-icon-edit tb-icon"
  86. @click="openCostEdit(scope.$index, scope.row)"
  87. ></i>
  88. </el-tooltip>
  89. <el-tooltip effect="dark" content="删除" placement="top">
  90. <i
  91. class="el-icon-delete tb-icon"
  92. @click="openCostEditDelete(scope.$index)"
  93. ></i>
  94. </el-tooltip>
  95. </template>
  96. </el-table-column>
  97. </el-table>
  98. <!-- 弹窗 新增/修改 -->
  99. <cost-form-add-edit
  100. :index="costmodelIndex"
  101. :show-model="costshowModel"
  102. :sitem="costsitem"
  103. @refresh="costrefreshEdit"
  104. @cancel="costshowModel = false"
  105. />
  106. <el-form-item class="fr">
  107. <el-button
  108. v-if="!isDetail"
  109. :size="'mini'"
  110. type="primary"
  111. @click="submitForm"
  112. >保 存
  113. </el-button>
  114. </el-form-item>
  115. </el-col>
  116. </el-row>
  117. </el-form>
  118. </template>
  119. <script>
  120. import costFormAddEdit from "./costFormAddEdit";
  121. import asyncRequest from "@/apis/service/goodStore/goodsOnline";
  122. export default {
  123. name: "exam-form",
  124. props: ["size", "statusList", "disabled", "isMust", "labelWidth", "id"],
  125. components: {
  126. costFormAddEdit,
  127. },
  128. /**
  129. * 属性集合
  130. * @param {String} size : 组件大小 非必填
  131. * @param {Array} statusList : 驳回至备选项 必填
  132. * @param {Boolean} disabled : 是否禁用 必填
  133. * @param {Boolean} isMust : 是否需要展示驳回节点 必填
  134. *
  135. *
  136. */
  137. /**
  138. * 事件集合
  139. * @searchChange : 选中值变化调用 抛出选中数据
  140. */
  141. data() {
  142. return {
  143. loading: false,
  144. options: [
  145. {
  146. value: "1",
  147. label: "视频",
  148. },
  149. {
  150. value: "2",
  151. label: "图片",
  152. },
  153. {
  154. value: "3",
  155. label: "其他",
  156. },
  157. ],
  158. showModelThis: this.showModel,
  159. pickerOptions: {
  160. disabledDate(time) {
  161. return time.getTime() < Date.now() - 60 * 60 * 24 * 1000;
  162. },
  163. },
  164. costshowModel: false,
  165. costmodelIndex: "",
  166. costsitem: {},
  167. ruleForm: {
  168. skuCode: "",
  169. proof_type: "1", // 通过or驳回
  170. proof_url: "", //驳回至
  171. good_ladder: [],
  172. },
  173. rulesThis: this.rules,
  174. rules: {
  175. proof_type: [
  176. {
  177. required: true,
  178. message: "请选择审核状态",
  179. trigger: "change",
  180. },
  181. ],
  182. proof_url: [
  183. {
  184. required: true,
  185. message: "请上传",
  186. trigger: "change",
  187. },
  188. ],
  189. rebut: [
  190. {
  191. required: true,
  192. message: "请选择驳回节点",
  193. trigger: "change",
  194. },
  195. ],
  196. remark: [
  197. { required: true, message: "请输入审核备注", trigger: "blur" },
  198. {
  199. min: 1,
  200. max: 250,
  201. message: "长度在 1 到 250 个字符",
  202. trigger: "blur",
  203. },
  204. ],
  205. },
  206. };
  207. },
  208. watch: {
  209. isDetail: function (val, old) {
  210. if (this.isDetail !== val) {
  211. this.options = [];
  212. this.selectLoading = false;
  213. }
  214. },
  215. },
  216. mounted() {
  217. this.initForm();
  218. },
  219. methods: {
  220. async initForm() {
  221. this.loading = true;
  222. this.rulesThis = this.rules;
  223. await this.resetForm();
  224. this.loading = false;
  225. },
  226. openCostEdit(index, sitem) {
  227. this.costmodelIndex = index;
  228. this.costsitem = sitem;
  229. this.costshowModel = true;
  230. },
  231. openCostEditDelete(index) {
  232. this.ladder_tableData.splice(index, 1);
  233. },
  234. //阶梯成本修改
  235. costrefreshEdit(e) {
  236. let item = JSON.parse(JSON.stringify(e));
  237. console.log(item);
  238. const {
  239. index,
  240. id,
  241. min_num,
  242. sale_price,
  243. market_price,
  244. market_platform,
  245. status,
  246. is_del,
  247. } = item;
  248. if (index + "" === "-1") {
  249. this.ruleForm.good_ladder.push(item);
  250. } else {
  251. this.ruleForm.good_ladder.forEach((i, findex) => {
  252. if (i.id === id && findex === parseInt(i.index)) {
  253. this.ruleForm.good_ladder[findex].id = id;
  254. this.ruleForm.good_ladder[findex].sale_price = sale_price;
  255. this.ruleForm.good_ladder[findex].market_price = market_price;
  256. this.ruleForm.good_ladder[findex].min_num = min_num;
  257. this.ruleForm.good_ladder[findex].market_platform = market_platform;
  258. this.ruleForm.good_ladder[findex].status = status;
  259. this.ruleForm.good_ladder[findex].id_del = is_del;
  260. }
  261. });
  262. // this.ladder_tableData = this.ladder_tableData.sort(
  263. // this.dataSort("min_num")
  264. // );
  265. }
  266. this.showModel = false;
  267. },
  268. async resetForm() {
  269. // 重置
  270. await this.$nextTick(() => {
  271. if (this.$refs.ruleForm) {
  272. this.$refs.ruleForm.resetFields();
  273. this.$refs.ruleForm.clearValidate();
  274. this.ruleForm = {
  275. skuCode: this.id,
  276. proof_type: "1", // 通过or驳回
  277. proof_url: "", //驳回至
  278. good_ladder: [],
  279. };
  280. }
  281. });
  282. },
  283. async submitForm() {
  284. await this.$refs.ruleForm.validate(async (valid) => {
  285. if (valid) {
  286. let model = JSON.parse(JSON.stringify(this.ruleForm));
  287. let list = JSON.parse(JSON.stringify(model.good_ladder));
  288. let list2 = [];
  289. list.forEach((e) => {
  290. let n = JSON.parse(JSON.stringify(e));
  291. for (let key in n) {
  292. n[key] += "";
  293. }
  294. delete n["index"];
  295. list2.push(n);
  296. });
  297. model.good_ladder = list2;
  298. model.skuCode = this.id;
  299. let res = await asyncRequest.ladderOne(model);
  300. this.loading = false;
  301. if (res && res.code === 0) {
  302. const { spuCode } = res.data;
  303. this.$notify.success({
  304. title: "信息提交成功",
  305. message: "",
  306. });
  307. // this.showModelThis = false;
  308. // 刷新
  309. this.$emit("resSuccess", true);
  310. // this.routeReGoto("goodsOnline", {});
  311. }
  312. } else {
  313. console.log("error submit!!");
  314. return false;
  315. }
  316. });
  317. },
  318. //图片上传成功
  319. async UploadSuccessEventproof_url(data) {
  320. const { url } = data;
  321. if (url === "noToken") {
  322. await this.logout();
  323. } else {
  324. this.ruleForm.proof_url = url;
  325. this.$refs.ruleForm.validateField("proof_url");
  326. this.$message.success("图片上传成功!");
  327. }
  328. },
  329. //图片上传失败
  330. UploadErrorEventproof_url(res) {
  331. if (res !== "break") {
  332. this.$message.error("图片上传失败!");
  333. this.$refs.ruleForm.validateField("proof_url");
  334. }
  335. },
  336. //判断图片规格
  337. beforeAvatarUpload(file) {
  338. let isJPG = false;
  339. if (
  340. file.type === "image/jpg" ||
  341. file.type === "image/png" ||
  342. file.type === "image/jpeg"
  343. ) {
  344. isJPG = true;
  345. }
  346. const isLt2M = file.size / 1024 / 1024 < 1;
  347. if (!isJPG) {
  348. this.$message.error("图片格式不正确!");
  349. }
  350. if (!isLt2M) {
  351. this.$message.error("图片大小不能超过 1MB!");
  352. }
  353. return isJPG && isLt2M;
  354. },
  355. },
  356. };
  357. </script>
  358. <style lang="scss" scoped>
  359. .demo-ruleForm-goodsOnline {
  360. .shangchuan-ul {
  361. li {
  362. position: relative;
  363. width: 100%;
  364. &.tupian {
  365. }
  366. }
  367. }
  368. }
  369. </style>