setPlan.vue 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784
  1. <template>
  2. <div class="project-setPlan" v-loading="loading">
  3. <div class="project-setPlan-main">
  4. <div class="project-setPlan-title">商品要求</div>
  5. <div class="project-setPlan-ask-table">
  6. <template v-if="ladder">
  7. <el-table :data="ladder" :size="'mini'" border stripe style="width: 100%">
  8. <el-table-column
  9. label="要求编码"
  10. prop="pgNo"
  11. width="155px"
  12. show-overflow-tooltip
  13. />
  14. <el-table-column
  15. prop="good_type"
  16. label="商品类型"
  17. width="80px"
  18. show-overflow-tooltip
  19. >
  20. <template slot-scope="scope">
  21. <el-tag
  22. :size="'mini'"
  23. v-text="
  24. (
  25. statusOptions.find((item) => item.value == scope.row.good_type) ||
  26. {}
  27. ).label || '--'
  28. "
  29. ></el-tag
  30. ></template>
  31. </el-table-column>
  32. <el-table-column
  33. prop="budget_price"
  34. label="预算单价"
  35. width="110"
  36. show-overflow-tooltip
  37. />
  38. <el-table-column
  39. prop="num"
  40. label="购买数量"
  41. width="110"
  42. show-overflow-tooltip
  43. />
  44. <el-table-column prop="cat_name" label="商品分类" show-overflow-tooltip />
  45. <el-table-column
  46. prop="good_img"
  47. label="图片"
  48. width="50"
  49. show-overflow-tooltip
  50. >
  51. <template slot-scope="scope">
  52. <div
  53. v-if="scope.row.good_img"
  54. style="width: 20px; height: 20px"
  55. class="hover"
  56. v-viewer
  57. >
  58. <img
  59. :src="scope.row.good_img"
  60. style="display: inline-block; width: 100%; height: 100%"
  61. alt=""
  62. />
  63. </div>
  64. </template>
  65. </el-table-column>
  66. <el-table-column prop="good_name" label="商品名称" show-overflow-tooltip />
  67. </el-table>
  68. </template>
  69. </div>
  70. <div class="project-setPlan-title">客户意向商品</div>
  71. <div class="project-setPlan-backGood-table">
  72. <el-table
  73. :data="tableData"
  74. :size="'mini'"
  75. border
  76. stripe
  77. ref="multipleTable"
  78. style="width: 100%"
  79. @selection-change="handleSelectionChange"
  80. >
  81. <el-table-column type="selection" width="40" v-if="table_type === 'add'">
  82. </el-table-column>
  83. <el-table-column
  84. prop="pgNo"
  85. label="要求编码"
  86. width="155px"
  87. show-overflow-tooltip
  88. />
  89. <el-table-column
  90. prop="sale_price"
  91. label="销售单价"
  92. width="110"
  93. show-overflow-tooltip
  94. />
  95. <el-table-column
  96. prop="num"
  97. label="购买数量"
  98. width="110"
  99. show-overflow-tooltip
  100. />
  101. <el-table-column
  102. prop="good_img"
  103. label="商品图片"
  104. min-width="168px"
  105. show-overflow-tooltip
  106. >
  107. <template slot-scope="scope">
  108. <div v-if="scope.row.good_img && scope.row.good_img.length > 0">
  109. <img
  110. v-for="(si, sii) in scope.row.good_img"
  111. :key="si + sii"
  112. :src="si"
  113. class="hover fl"
  114. style="
  115. display: inline-block;
  116. width: 20px;
  117. height: 20px;
  118. margin: 0 2px 0 0;
  119. "
  120. alt=""
  121. v-viewer
  122. />
  123. </div>
  124. </template>
  125. </el-table-column>
  126. <el-table-column
  127. prop="good_name"
  128. label="商品名称"
  129. min-width="120"
  130. show-overflow-tooltip
  131. >
  132. <template slot-scope="scope">
  133. <span>{{ scope.row.good_name }}</span>
  134. <span v-for="(si, sii) in scope.row.specinfo" :key="si.id + sii">
  135. {{ sii === 0 ? "_" : "-" }}{{ si.spec_name }}[{{ si.spec_value_name }}]
  136. </span>
  137. </template>
  138. </el-table-column>
  139. <el-table-column
  140. prop="data_source"
  141. label="商品来源"
  142. width="85"
  143. show-overflow-tooltip
  144. >
  145. <template slot-scope="scope">
  146. <el-tag
  147. :size="'mini'"
  148. :type="scope.row.data_source === '1' ? 'success' : ''"
  149. >{{ scope.row.data_source === "1" ? "平台商品" : "采反商品" }}</el-tag
  150. >
  151. </template>
  152. </el-table-column>
  153. <el-table-column prop="class_cat" label="商品分类" show-overflow-tooltip />
  154. <el-table-column
  155. prop="expire_day"
  156. label="信息有效期"
  157. width="85"
  158. show-overflow-tooltip
  159. />
  160. <el-table-column
  161. prop="work_day"
  162. label="制作工期"
  163. width="70"
  164. show-overflow-tooltip
  165. />
  166. <el-table-column
  167. prop="delivery_day"
  168. label="物流时间"
  169. width="70"
  170. show-overflow-tooltip
  171. />
  172. </el-table>
  173. </div>
  174. <div class="project-setPlan-title">
  175. 项目方案
  176. <span
  177. style="margin: 0 0 0 50px; font-size: 13px; color: #e4393c"
  178. v-if="total !== 0 && table_type === 'list'"
  179. >{{ plan_show.status === "1" ? "已选定" : "" }}方案总金额:{{
  180. plan_show.sale_total
  181. }}元</span
  182. >
  183. <el-button-group
  184. :size="'mini'"
  185. class="fr"
  186. v-if="table_type === 'list'"
  187. style="margin: 8px 0 0 0"
  188. >
  189. <el-button
  190. type="primary"
  191. class="fr"
  192. v-if="
  193. powers &&
  194. powers.length > 0 &&
  195. powers.some((item) => item == '064') &&
  196. (status == '3' || status == '4')
  197. "
  198. @click="add_plan"
  199. icon="el-icon-circle-plus-outline"
  200. :size="'mini'"
  201. >添加方案
  202. </el-button>
  203. <el-button
  204. type="primary"
  205. class="fr"
  206. v-if="plan_show.status === '1'"
  207. @click="place_order"
  208. :size="'mini'"
  209. >项目下单<i class="el-icon-shopping-cart-2 el-icon--right"></i>
  210. </el-button>
  211. <el-button
  212. class="fr"
  213. type="primary"
  214. :size="'mini'"
  215. :disabled="index === 0"
  216. v-if="total !== 0"
  217. icon="el-icon-arrow-left"
  218. @click="index--, change_plan()"
  219. ></el-button>
  220. <el-button
  221. type="primary"
  222. class="fr"
  223. v-if="total !== 0"
  224. :size="'mini'"
  225. style="height: 29px"
  226. >方案共{{ index + 1 }}/{{ total }}</el-button
  227. >
  228. <el-button
  229. type="primary"
  230. class="fr"
  231. :disabled="index + 1 === total"
  232. v-if="total !== 0"
  233. @click="index++, change_plan()"
  234. :size="'mini'"
  235. ><i class="el-icon-arrow-right el-icon--right" :size="'mini'"></i
  236. ></el-button>
  237. </el-button-group>
  238. <el-button-group
  239. :size="'mini'"
  240. class="fr"
  241. v-else-if="table_type === 'add'"
  242. style="margin: 8px 0 0 0"
  243. >
  244. <el-button
  245. class="fr"
  246. type="primary"
  247. :size="'mini'"
  248. icon="el-icon-arrow-left"
  249. @click="back_list"
  250. >返回列表</el-button
  251. >
  252. <el-button type="primary" class="fr" @click="save_plan" :size="'mini'"
  253. >保存方案<i class="el-icon-upload el-icon--right"></i>
  254. </el-button>
  255. </el-button-group>
  256. </div>
  257. <div class="project-setPlan-backGood-table">
  258. <el-table
  259. :data="plan_show.feedback"
  260. :size="'mini'"
  261. border
  262. stripe
  263. :ref="'multipleTable' + index"
  264. style="width: 100%"
  265. >
  266. <el-table-column
  267. prop="pgNo"
  268. label="要求编码"
  269. width="155px"
  270. show-overflow-tooltip
  271. />
  272. <el-table-column
  273. prop="origin_sale_price"
  274. label="系统售价单价"
  275. width="110"
  276. show-overflow-tooltip
  277. />
  278. <el-table-column
  279. prop="new_sale_price"
  280. label="当前销售单价"
  281. width="110"
  282. show-overflow-tooltip
  283. >
  284. <template slot-scope="scope">
  285. <div v-if="table_type === 'add'">
  286. <digital-input
  287. :values="scope.row.new_sale_price"
  288. :placeholder="'售价'"
  289. :min="0"
  290. :newTime="scope.row.time_price"
  291. :max="100000000000"
  292. :position="'right'"
  293. :precision="2"
  294. :size="'mini'"
  295. :controls="false"
  296. :append="''"
  297. @reschange="
  298. moq_num_change($event, scope.$index, 'new_sale_price', 'time_price')
  299. "
  300. />
  301. </div>
  302. <span v-else>{{ scope.row.new_sale_price || scope.row.sale_price }}元</span>
  303. </template>
  304. </el-table-column>
  305. <el-table-column
  306. prop="origin_num"
  307. label="竞价数量"
  308. width="110"
  309. show-overflow-tooltip
  310. />
  311. <el-table-column prop="num" label="购买数量" width="110" show-overflow-tooltip>
  312. <template slot-scope="scope">
  313. <div v-if="table_type === 'add'">
  314. <digital-input
  315. :values="scope.row.num"
  316. :placeholder="'购买数量'"
  317. :min="scope.row.origin_num"
  318. :max="100000000000"
  319. :position="'right'"
  320. :precision="0"
  321. :newTime="scope.row.time_num"
  322. :size="'mini'"
  323. :controls="false"
  324. :append="''"
  325. @reschange="moq_num_change($event, scope.$index, 'num', 'time_num')"
  326. />
  327. </div>
  328. <span v-else>{{ scope.row.num }}</span>
  329. </template>
  330. </el-table-column>
  331. <el-table-column prop="data_source" label="商品来源" width="85">
  332. <template slot-scope="scope">
  333. <el-tag
  334. :size="'mini'"
  335. :type="scope.row.data_source === '1' ? 'success' : ''"
  336. >{{ scope.row.data_source === "1" ? "平台商品" : "采反商品" }}</el-tag
  337. >
  338. </template>
  339. </el-table-column>
  340. <el-table-column
  341. prop="good_img"
  342. label="商品图片"
  343. min-width="242px"
  344. show-overflow-tooltip
  345. >
  346. <template slot-scope="scope">
  347. <div v-if="scope.row.good_img && scope.row.good_img.length > 0">
  348. <img
  349. v-for="(si, sii) in scope.row.good_img"
  350. :key="si + sii"
  351. :src="si"
  352. class="hover fl"
  353. style="
  354. display: inline-block;
  355. width: 20px;
  356. height: 20px;
  357. margin: 0 2px 0 0;
  358. "
  359. alt=""
  360. v-viewer
  361. />
  362. </div>
  363. </template>
  364. </el-table-column>
  365. <el-table-column
  366. prop="good_name"
  367. label="商品名称"
  368. min-width="120"
  369. show-overflow-tooltip
  370. >
  371. <template slot-scope="scope">
  372. <span>{{ scope.row.good_name }}</span>
  373. <span v-for="(si, sii) in scope.row.specinfo" :key="si.id + sii">
  374. {{ sii === 0 ? "_" : "-" }}{{ si.spec_name }}[{{ si.spec_value_name }}]
  375. </span>
  376. </template>
  377. </el-table-column>
  378. <el-table-column prop="class_cat" label="商品分类" show-overflow-tooltip />
  379. <!-- <el-table-column
  380. prop="expiry_day"
  381. label="信息有效期"
  382. width="85"
  383. show-overflow-tooltip
  384. />
  385. <el-table-column
  386. prop="work_day"
  387. label="制作工期"
  388. width="70"
  389. show-overflow-tooltip
  390. />
  391. <el-table-column
  392. prop="delivery_day"
  393. label="物流时间"
  394. width="70"
  395. show-overflow-tooltip
  396. /> -->
  397. </el-table>
  398. </div>
  399. <buy-good-modal
  400. :showModel="bayGoodShowModel"
  401. :sitem="bayGoodItem"
  402. @cancel="bayGoodShowModel = false"
  403. @refresh="(bayGoodShowModel = false), $emit('resGoodOk')"
  404. />
  405. </div>
  406. </div>
  407. </template>
  408. <script>
  409. import asyncRequest from "@/apis/service/sellOut/project";
  410. import resToken from "@/mixins/resToken";
  411. import columnsForm from "./columnsForm";
  412. import buyGoodModal from "./buyGoodModal";
  413. export default {
  414. name: "setPlan",
  415. props: ["showModel", "sitem", "id", "type", "newTime"],
  416. mixins: [resToken],
  417. components: {
  418. buyGoodModal,
  419. },
  420. computed: {
  421. powers() {
  422. let tran =
  423. this.$store.getters.btnList.find((item) => item.menu_route == "projectDetail") ||
  424. {};
  425. if (tran && tran.action && tran.action.length > 0) {
  426. return tran.action;
  427. } else {
  428. return [];
  429. }
  430. },
  431. },
  432. watch: {
  433. // showModel: function (val) {
  434. // this.showModelThis = val;
  435. // if (val) {
  436. // this.initForm();
  437. // }
  438. // },
  439. newTime: function (val) {
  440. if (val) {
  441. this.initForm();
  442. }
  443. },
  444. },
  445. data() {
  446. return {
  447. showModel: false,
  448. searchItem: {},
  449. loading: false,
  450. allPlanList: [],
  451. bayGoodItem: {},
  452. bayGoodShowModel: false,
  453. ladder: [],
  454. index: 0,
  455. total: 0,
  456. table_type: "list",
  457. // allList: [],
  458. projectNo: "",
  459. status: "",
  460. statusOptions: [
  461. { value: "1", label: "竞品" },
  462. { value: "2", label: "竞聘" },
  463. ],
  464. table: {
  465. stripe: true,
  466. border: true,
  467. // _defaultHeader_: ["setcol"],
  468. },
  469. // 表格 - 列参数
  470. columns: columnsForm,
  471. tableData: [],
  472. multipleSelection: [],
  473. plan_show: {
  474. sale_total: "0",
  475. feedback: [],
  476. },
  477. };
  478. },
  479. mounted() {
  480. this.initForm();
  481. },
  482. methods: {
  483. //初始化整个组件
  484. async initForm() {
  485. this.loading = true;
  486. await this.initListData();
  487. await this.back_list();
  488. this.loading = false;
  489. },
  490. //项目下单
  491. place_order() {
  492. const { company, khName, platform_name, arrtime, project_name } = this.sitem;
  493. // console.log("aaaaaaaaaaaaaaa",this.sitem)
  494. this.bayGoodItem = JSON.parse(JSON.stringify(this.allPlanList[this.index]));
  495. this.bayGoodItem.in_company = company;
  496. this.bayGoodItem.in_khname = khName;
  497. this.bayGoodItem.in_platform_name = platform_name;
  498. this.bayGoodItem.in_arrival_time = arrtime;
  499. this.bayGoodItem.in_project_name = project_name;
  500. this.bayGoodShowModel = true;
  501. },
  502. async resetFormData() {
  503. this.pageInfo = {
  504. size: 15,
  505. curr: 1,
  506. total: 0,
  507. };
  508. this.loading = true;
  509. this.tableData = [];
  510. await this.searchList();
  511. },
  512. async back_list() {
  513. this.table_type = "list";
  514. await this.get_plan("1");
  515. },
  516. add_plan() {
  517. const { low_rate } = this.sitem;
  518. let r = low_rate ? low_rate : "0";
  519. if (r * 100 === 0) {
  520. this.$message.warning("暂无项目毛利率,不能制定方案!");
  521. return;
  522. }
  523. this.table_type = "add";
  524. this.plan_show = {
  525. sale_total: "0",
  526. feedback: [],
  527. };
  528. },
  529. moq_num_change(e, index, key, time) {
  530. this.plan_show.feedback[index][key] = e + "";
  531. if (time) {
  532. this.plan_show.feedback[index][time] = new Date().valueOf;
  533. }
  534. this.$set(this.plan_show.feedback[index], index, this.plan_show.feedback[index]);
  535. },
  536. //初始化整个组件
  537. async initListData() {
  538. console.log(this.sitem);
  539. const { projectNo, ladder, status } = this.sitem;
  540. this.status = status;
  541. this.projectNo = projectNo;
  542. this.ladder = JSON.parse(JSON.stringify(ladder));
  543. this.pageInfo = {
  544. size: 100,
  545. curr: 1,
  546. total: 0,
  547. };
  548. this.tableData = [];
  549. await this.searchList();
  550. },
  551. handleSelectionChange(val) {
  552. this.multipleSelection = val;
  553. let list = JSON.parse(JSON.stringify(this.plan_show.feedback));
  554. this.plan_show = {
  555. sale_total: "0",
  556. feedback: [],
  557. };
  558. this.multipleSelection.forEach((a, i) => {
  559. a.origin_sale_price = a.sale_price;
  560. a.new_sale_price = a.sale_price;
  561. console.log(a.origin_sale_price, a.sale_price);
  562. let fi = list.findIndex((b) => a.id === b.id && b.pgNo === a.pgNo);
  563. if (fi !== -1) {
  564. this.plan_show.feedback.push(JSON.parse(JSON.stringify(list[fi])));
  565. } else {
  566. this.plan_show.feedback.push(
  567. JSON.parse(JSON.stringify(this.multipleSelection[i]))
  568. );
  569. }
  570. });
  571. this.plan_show.feedback.map((e) => {
  572. e.origin_num = e.num;
  573. e.time_price = "";
  574. e.time_num = "";
  575. return e;
  576. });
  577. console.log(this.plan_show);
  578. setTimeout(() => {
  579. this.plan_show.feedback.forEach((a, index) => {
  580. a.time_price = new Date().valueOf();
  581. a.time_num = new Date().valueOf();
  582. this.$set(
  583. this.plan_show.feedback[index],
  584. index,
  585. this.plan_show.feedback[index]
  586. );
  587. });
  588. console.log(this.plan_show);
  589. }, 100);
  590. },
  591. async searchList() {
  592. const { size, curr } = this.pageInfo;
  593. // this.loading = true;
  594. let model = {
  595. page: curr,
  596. size: size,
  597. zxNo: "",
  598. infoNo: "",
  599. bidNo: "",
  600. status: "1",
  601. pgNo: "",
  602. projectNo: this.projectNo,
  603. };
  604. const { code, data } = await asyncRequest.back_good_list(model);
  605. if (code === 0) {
  606. const { list, count } = data;
  607. this.tableData = list;
  608. this.tableData.map((v) => {
  609. v.class_cat = "";
  610. if (v.can && v.can.length > 0) {
  611. v.can.forEach((x, i) => {
  612. v.class_cat += i === 0 ? x.name : "_" + x.name;
  613. });
  614. }
  615. if (v.good_img) {
  616. v.good_img =
  617. Object.prototype.toString.call(v.good_img) === "[object Array]"
  618. ? v.good_img
  619. : (v.good_img || "").split(",");
  620. }
  621. return v;
  622. });
  623. this.pageInfo.total = Number(count);
  624. } else if (code >= 100 && code <= 104) {
  625. await this.logout();
  626. } else {
  627. this.tableData = [];
  628. this.pageInfo.total = 0;
  629. }
  630. // this.loading = false;
  631. },
  632. //保存方案
  633. async save_plan() {
  634. if (!this.loading) {
  635. const { feedback } = this.plan_show;
  636. let list = feedback;
  637. let isok = true;
  638. list.forEach((a) => {
  639. let findex = list.findIndex((b) => b.pgNo === a.pgNo && a.id !== b.id);
  640. if (findex !== -1) {
  641. isok = false;
  642. }
  643. });
  644. if (!isok) {
  645. this.$message.warning("一种商品要求只能选择一种商品!");
  646. return;
  647. }
  648. let isall = true;
  649. this.ladder.forEach((a) => {
  650. let to = 0;
  651. list.forEach((b) => {
  652. if (a.pgNo === b.pgNo) {
  653. to++;
  654. }
  655. });
  656. if (to !== 1) {
  657. isall = false;
  658. }
  659. });
  660. if (!isall) {
  661. this.$message.warning("方案必须涵盖全部商品要求!");
  662. return;
  663. }
  664. this.loading = true;
  665. let model = {
  666. feedback: [],
  667. projectNo: this.projectNo,
  668. };
  669. list.forEach((e) => {
  670. let si = {
  671. feedid: e.id,
  672. sale_price: e.new_sale_price,
  673. good_num: e.num,
  674. };
  675. model.feedback.push(si);
  676. });
  677. const { code, data, message } = await asyncRequest.project_make_plan(model);
  678. if (code === 0) {
  679. await this.back_list();
  680. } else if (code >= 100 && code <= 104) {
  681. await this.logout();
  682. } else {
  683. this.$message.warning(message);
  684. }
  685. this.loading = false;
  686. }
  687. },
  688. //获取全部方案
  689. async get_plan(type) {
  690. let model = {
  691. projectNo: this.projectNo,
  692. };
  693. const { code, data, message } = await asyncRequest.get_project_plan(model);
  694. if (code === 0) {
  695. this.allPlanList = JSON.parse(JSON.stringify(data));
  696. this.total = this.allPlanList.length;
  697. if (type && this.allPlanList.length > 0) {
  698. await this.change_plan("1");
  699. }
  700. } else if (code >= 100 && code <= 104) {
  701. await this.logout();
  702. } else {
  703. this.$message.warning(message);
  704. }
  705. },
  706. //切换当前展示的方案
  707. async change_plan(type) {
  708. this.table_type = "list";
  709. this.plan_show = {
  710. sale_total: "0",
  711. status: "0",
  712. feedback: [],
  713. };
  714. if (type) {
  715. this.index = 0;
  716. }
  717. if (this.status === "4") {
  718. this.allPlanList.forEach((a, ai) => {
  719. if (a.status === "1") {
  720. this.index = ai;
  721. }
  722. });
  723. }
  724. const { sale_total, feedback, status } = JSON.parse(
  725. JSON.stringify(this.allPlanList[this.index])
  726. );
  727. this.plan_show = {
  728. sale_total: sale_total,
  729. status: status,
  730. feedback: JSON.parse(JSON.stringify(feedback)),
  731. };
  732. this.plan_show.feedback.map((v) => {
  733. v.class_cat = "";
  734. if (v.cat_info && v.cat_info.length > 0) {
  735. v.cat_info.forEach((x, i) => {
  736. v.class_cat += i === 0 ? x.name : "_" + x.name;
  737. });
  738. }
  739. if (v.good_img) {
  740. v.good_img =
  741. Object.prototype.toString.call(v.good_img) === "[object Array]"
  742. ? v.good_img
  743. : (v.good_img || "").split(",");
  744. }
  745. return v;
  746. });
  747. console.log(this.plan_show);
  748. for (let i = 0; i < this.plan_show.feedback.length; i++) {
  749. this.$set(this.plan_show.feedback[i], i, this.plan_show.feedback[i]);
  750. }
  751. },
  752. },
  753. };
  754. </script>
  755. <style lang="scss" scoped>
  756. .project-setPlan {
  757. box-sizing: border-box;
  758. width: 100%;
  759. .project-setPlan-main {
  760. padding: 2px 16px 16px 16px;
  761. // background: #fefefe;
  762. border-radius: 5px;
  763. overflow: hidden;
  764. border: 1px solid #f0f0f0;
  765. margin: 0 0 16px 0;
  766. .project-setPlan-title {
  767. height: 48px;
  768. line-height: 48px;
  769. color: #676767;
  770. }
  771. }
  772. }
  773. </style>