finance-exam-three-form.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409
  1. <template>
  2. <div class="finance-exam-three-form">
  3. <el-form
  4. :model="ruleForm"
  5. status-icon
  6. :rules="rulesThis"
  7. ref="ruleForm"
  8. :size="'mini'"
  9. label-width="90px"
  10. class="demo-ruleForm"
  11. >
  12. <el-row>
  13. <el-col :span="8">
  14. <el-form-item label="审核状态" prop="status">
  15. <el-select
  16. v-model="ruleForm.status"
  17. style="width: 100%"
  18. placeholder="审核状态"
  19. @change="statusChange"
  20. >
  21. <el-option
  22. v-for="item in options"
  23. :key="item.value"
  24. :label="item.label"
  25. :value="item.value"
  26. >
  27. </el-option>
  28. </el-select>
  29. </el-form-item>
  30. </el-col>
  31. <el-col :span="12">
  32. <el-form-item label="审核备注" prop="remark">
  33. <el-input
  34. placeholder="审核备注"
  35. v-model="ruleForm.remark"
  36. maxlength="100"
  37. />
  38. </el-form-item>
  39. </el-col>
  40. <el-col :span="4">
  41. <el-button
  42. :size="'mini'"
  43. type="success"
  44. style="float: right"
  45. @click="submitForm"
  46. >
  47. 批量设置状态
  48. </el-button>
  49. </el-col>
  50. </el-row>
  51. </el-form>
  52. <el-table
  53. :data="tableData"
  54. stripe
  55. border
  56. tooltip-effect="dark"
  57. ref="multipleTable"
  58. :size="'mini'"
  59. style="width: 100%"
  60. @selection-change="handleSelectionChange"
  61. >
  62. <el-table-column type="selection" width="40"> </el-table-column>
  63. <el-table-column
  64. prop="skuCode"
  65. label="商品编码"
  66. show-overflow-tooltip
  67. width="170"
  68. />
  69. <el-table-column
  70. prop="good_name"
  71. label="商品名称"
  72. show-overflow-tooltip
  73. />
  74. <el-table-column prop="is_activity" label="是否使用结算单价" width="120px">
  75. <template slot-scope="scope">
  76. <span>{{scope.row.is_activity === '1' ? '是' : '否'}}</span>
  77. </template>
  78. </el-table-column>
  79. <el-table-column prop="settle_price" label="结算单价">
  80. <template slot-scope="scope">
  81. <span>{{scope.row.settle_price}}</span>
  82. </template>
  83. </el-table-column>
  84. <el-table-column
  85. prop="activity_stock"
  86. label="活动库存"
  87. width="100"
  88. show-overflow-tooltip
  89. />
  90. <el-table-column
  91. prop="moq_num"
  92. label="起订量"
  93. width="100"
  94. show-overflow-tooltip
  95. />
  96. <el-table-column
  97. prop="cost_price"
  98. label="成本单价(元)"
  99. width="100"
  100. show-overflow-tooltip
  101. />
  102. <el-table-column
  103. prop="sale_price"
  104. label="非活动价(元)"
  105. width="100"
  106. show-overflow-tooltip
  107. />
  108. <el-table-column
  109. prop="activity_price"
  110. label="活动价(元)"
  111. width="100"
  112. show-overflow-tooltip
  113. />
  114. <el-table-column prop="status" label="审核状态" width="100">
  115. <template slot-scope="scope">
  116. <el-tag
  117. :size="'mini'"
  118. :type="
  119. scope.row.status == '0'
  120. ? 'warning'
  121. : scope.row.status == '2'
  122. ? 'danger'
  123. : ''
  124. "
  125. v-text="
  126. (options.find((item) => item.value == scope.row.status) || {})
  127. .label || '--'
  128. "
  129. ></el-tag>
  130. </template>
  131. </el-table-column>
  132. <el-table-column
  133. prop="remark"
  134. label="审核备注"
  135. width="100"
  136. show-overflow-tooltip
  137. />
  138. <el-table-column fixed="right" width="50">
  139. <template slot="header" slot-scope="scope">
  140. <span>操作</span>
  141. </template>
  142. <template slot-scope="scope">
  143. <el-tooltip effect="dark" content="查看商品信息" placement="top">
  144. <i
  145. class="el-icon-view tb-icon"
  146. @click="showGoodModelFun(scope.row.skuCode)"
  147. ></i>
  148. </el-tooltip>
  149. </template>
  150. </el-table-column>
  151. </el-table>
  152. <set-active-price-form
  153. :sitem="sfinditem"
  154. :showModel="showModel"
  155. @refresh="editRefresh"
  156. @cancel="showModel = false"
  157. />
  158. <show-good-data-modal
  159. :show-model="showGoodModel"
  160. :skuCode="showGoodId"
  161. @cancel="showGoodModel = false"
  162. />
  163. <el-col
  164. :span="24"
  165. style="
  166. text-align: right;
  167. padding: 15px 0 15px 0;
  168. border-top: 1px solid #dcdfe6;
  169. "
  170. >
  171. <el-button :size="'mini'" type="primary" @click="submitTable"
  172. >保 存
  173. </el-button>
  174. </el-col>
  175. </div>
  176. </template>
  177. <script>
  178. import asyncRequest from "@/apis/service/goodStore/active";
  179. import resToken from "@/mixins/resToken";
  180. import { mapGetters } from "vuex";
  181. import setActivePriceForm from "./set-active-price-form";
  182. import showGoodDataModal from "@/components/show-good-data-modal";
  183. export default {
  184. name: "financeExamOneForm",
  185. mixins: [resToken],
  186. props: ["id", "type", "sitem","newTime"],
  187. computed: {
  188. ...mapGetters(["tablebtnSize", "searchSize", "size"]),
  189. },
  190. components: {
  191. setActivePriceForm,
  192. showGoodDataModal,
  193. },
  194. data() {
  195. return {
  196. status: "",
  197. ruleForm: {
  198. status: "1", // 通过or驳回
  199. remark: "",
  200. },
  201. rulesThis: this.rules,
  202. rules: {
  203. status: [
  204. {
  205. required: true,
  206. message: "请选择审核状态!",
  207. trigger: "change",
  208. },
  209. ],
  210. remark: [
  211. { required: true, message: "审核备注不能为空!", trigger: "blur" },
  212. {
  213. min: 1,
  214. max: 250,
  215. message: "长度在 1 到 250 个字符",
  216. trigger: "blur",
  217. },
  218. ],
  219. },
  220. options: [
  221. {
  222. value: "0",
  223. label: "待审核",
  224. },
  225. {
  226. value: "1",
  227. label: "通过",
  228. },
  229. {
  230. value: "2",
  231. label: "驳回",
  232. },
  233. ],
  234. loading: false,
  235. showModel: false,
  236. sfinditem: {},
  237. tableData: [],
  238. showGoodModel: false,
  239. showGoodId: "",
  240. multipleSelection: [],
  241. };
  242. },
  243. watch: {
  244. newTime: function (val) {
  245. if (val) {
  246. this.initForm();
  247. }
  248. },
  249. },
  250. mounted() {
  251. this.initForm();
  252. },
  253. methods: {
  254. async initForm() {
  255. this.loading = true;
  256. this.resetFormData();
  257. this.rulesThis = this.rules;
  258. await this.resetForm();
  259. this.statusChange();
  260. this.loading = false;
  261. },
  262. handleSelectionChange(val) {
  263. this.multipleSelection = val;
  264. },
  265. showGoodModelFun(skuCode) {
  266. this.showGoodModel = true;
  267. this.showGoodId = skuCode;
  268. },
  269. editRefresh(e) {
  270. this.showModel = false;
  271. const { skuCode, activity_price } = JSON.parse(JSON.stringify(e));
  272. const aindex = this.tableData.findIndex((eis) => eis.skuCode === skuCode);
  273. if (aindex !== -1) {
  274. this.tableData[aindex].activity_price = activity_price;
  275. this.$set(this.tableData, aindex, this.tableData[aindex]);
  276. }
  277. },
  278. openModal(e) {
  279. this.sfinditem = JSON.parse(JSON.stringify(e));
  280. this.showModel = true;
  281. },
  282. statusChange() {
  283. this.rulesThis.remark[0].required = this.ruleForm.status === "2";
  284. },
  285. async submitForm() {
  286. await this.$refs.ruleForm.validate(async (valid) => {
  287. if (valid) {
  288. const { status, remark } = this.ruleForm;
  289. if (this.multipleSelection && this.multipleSelection.length > 0) {
  290. this.tableData.forEach((a, ai) => {
  291. let findex = this.multipleSelection.findIndex(
  292. (b) => b.id === a.id
  293. );
  294. if (findex !== -1) {
  295. this.tableData[ai].status = status;
  296. this.tableData[ai].remark = remark;
  297. this.$set(this.tableData, ai, this.tableData[ai]);
  298. }
  299. });
  300. } else {
  301. this.$message.warning("请选择商品!");
  302. }
  303. } else {
  304. console.log("error submit!!");
  305. return false;
  306. }
  307. });
  308. },
  309. resetFormData() {
  310. this.tableData = [];
  311. const { info, status } = this.sitem;
  312. this.status = status || "";
  313. this.tableData =
  314. info && info.length > 0 ? JSON.parse(JSON.stringify(info)) : [];
  315. },
  316. async resetForm() {
  317. // 重置
  318. await this.$nextTick(() => {
  319. if (this.$refs.ruleForm) {
  320. this.$refs.ruleForm.resetFields();
  321. this.$refs.ruleForm.clearValidate();
  322. this.ruleForm = {
  323. status: "1", // 通过or驳回
  324. remark: "",
  325. };
  326. }
  327. });
  328. },
  329. async submitTable() {
  330. this.loading = true;
  331. const { activity_code } = this.sitem;
  332. let ritem = {
  333. activity_code: activity_code || "",
  334. good_list: [],
  335. };
  336. let list = JSON.parse(JSON.stringify(this.tableData));
  337. let isok = true;
  338. let newlist = [];
  339. list.forEach((e) => {
  340. if (e.status !== "1" && e.status !== "2") {
  341. isok = false;
  342. }
  343. let item = {
  344. id: e.id,
  345. status: e.status,
  346. remark: e.remark,
  347. };
  348. newlist.push(item);
  349. });
  350. if (!isok) {
  351. this.$message.warning("部分商品未审核!");
  352. this.loading = false;
  353. return;
  354. }
  355. ritem.good_list = JSON.parse(JSON.stringify(newlist));
  356. let res = await asyncRequest.status(ritem);
  357. this.loading = false;
  358. if (res && res.code === 0) {
  359. this.$notify.success({
  360. title: "提交成功!",
  361. message: "",
  362. });
  363. // 刷新
  364. this.$emit("refresh", true);
  365. }
  366. },
  367. },
  368. };
  369. </script>
  370. <style lang="scss" scoped>
  371. .activeAdd {
  372. .activeAdd-title {
  373. border-top: 1px solid #ebeef5;
  374. span {
  375. height: 50px;
  376. line-height: 50px;
  377. font-family: "微软雅黑", sans-serif;
  378. font-weight: 400;
  379. font-style: normal;
  380. font-size: 16fpx;
  381. text-align: left;
  382. }
  383. }
  384. /deep/ .ddiv {
  385. border-top: 1px solid #dcdfe6;
  386. }
  387. /deep/ .dtitle {
  388. width: 40px;
  389. text-align: center;
  390. height: 100%;
  391. min-height: 100%;
  392. ul {
  393. padding: 20px 0 0 0;
  394. }
  395. }
  396. /deep/ .dmain {
  397. padding: 20px 0 0 0;
  398. width: calc(100% - 40px);
  399. border-left: 1px solid #dcdfe6;
  400. }
  401. }
  402. </style>