detail.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482
  1. <template>
  2. <div class="workbenchdetail">
  3. <div
  4. class="page-main clear"
  5. v-if="powers && powers.length > 0 && powers.some((item) => item == '007')"
  6. >
  7. <div class="left">
  8. <div class="left-main">
  9. <div class="left-card" v-if="sitem">
  10. <div class="page-main-title">招标任务信息</div>
  11. <ul class="page-main-ul clear">
  12. <li>任务单号:</li>
  13. <li>{{ queryId }}</li>
  14. <li>截止时间:</li>
  15. <li>{{ sitem.endtime }}</li>
  16. <li>剩余时间:</li>
  17. <li>2020-09-20 17:00:00</li>
  18. <li>购买数量:</li>
  19. <li>{{ sitem.num }}{{ sitem.unit_name }}</li>
  20. <li>预算单价:</li>
  21. <li>{{ sitem.budget_price }}元</li>
  22. <li>到货时间:</li>
  23. <li>{{ sitem.arrival_time }}</li>
  24. </ul>
  25. </div>
  26. <div class="left-card" v-if="sitem">
  27. <div class="page-main-title">商品要求</div>
  28. <ul class="page-main-ul clear">
  29. <li>商品名称:</li>
  30. <li>{{ sitem.good_name }}</li>
  31. <li v-if="sitem.good_img">商品图片:</li>
  32. <li v-if="sitem.good_img">
  33. <img
  34. v-viewer
  35. :src="sitem.good_img"
  36. class="hover"
  37. style="width: 20px; height: 20px; display: inline-block"
  38. />
  39. </li>
  40. <li>商品分类:</li>
  41. <li>{{ sitem.can_name }}</li>
  42. <li>商品品牌:</li>
  43. <li>{{ sitem.brand ? sitem.brand : "无要求" }}</li>
  44. <li>商品规格:</li>
  45. <li>
  46. <el-table
  47. :data="sitem.specinfo"
  48. border
  49. stripe
  50. :size="'mini'"
  51. style="width: 100%"
  52. >
  53. <el-table-column
  54. prop="spec_name"
  55. label="类型:值"
  56. show-overflow-tooltip
  57. >
  58. <template slot-scope="scope">
  59. {{ scope.row.spec_name }}:{{ scope.row.spec_value_name }}
  60. </template></el-table-column
  61. >
  62. </el-table>
  63. </li>
  64. <li>总重量:</li>
  65. <li>{{ sitem.total_weight }}g</li>
  66. <li>是否多地:</li>
  67. <li>{{ sitem.is_addrs === "1" ? "多地" : "一地" }}</li>
  68. <li>是否定制:</li>
  69. <li>{{ sitem.is_custom === "1" ? "定制" : "非定制" }}</li>
  70. <li v-if="sitem.is_metal">启用金价:</li>
  71. <li v-if="sitem.is_metal">
  72. {{ sitem.is_gold_price === "1" ? "启用" : "不启用" }}
  73. </li>
  74. <li v-if="sitem.is_metal">配置要求:</li>
  75. <li v-if="sitem.is_metal">{{ sitem.config }}</li>
  76. <li v-if="sitem.is_metal">金属克重:</li>
  77. <li v-if="sitem.is_metal">{{ sitem.specs_weight }}g</li>
  78. <li v-if="sitem.is_metal">其他要求:</li>
  79. <li v-if="sitem.is_metal">
  80. {{ sitem.other_config }}
  81. </li>
  82. <li v-if="sitem.is_metal">金属种类:</li>
  83. <li v-if="sitem.is_metal">
  84. {{ sitem.metal_name}}
  85. </li>
  86. <li>工艺说明:</li>
  87. <li>{{ sitem.cost_desc }}</li>
  88. <li>产品用途:</li>
  89. <li>{{ sitem.use_desc }}</li>
  90. <li>商品备注:</li>
  91. <li>{{ sitem.remark }}</li>
  92. </ul>
  93. </div>
  94. </div>
  95. </div>
  96. <div class="p-right">
  97. <div
  98. v-if="editType == '' || editType == 'wait'"
  99. class="right-mian-wait"
  100. >
  101. <div class="title">采返工作台</div>
  102. <div class="main">暂无工作数据!</div>
  103. </div>
  104. <template v-else>
  105. <base-form
  106. :id="queryId"
  107. :editId="editId"
  108. :type="editType"
  109. :askItem="sitem"
  110. :sitem="baseSitem"
  111. :newTime="newTime"
  112. @refresh="(editType = 'wait'), searchList()"
  113. @cancel="editType = 'wait'"
  114. v-if="newTime !== ''"
  115. />
  116. </template>
  117. </div>
  118. <div class="bottom">
  119. <el-table
  120. :data="tableData"
  121. border
  122. stripe
  123. :size="'mini'"
  124. style="width: 100%"
  125. >
  126. <el-table-column
  127. prop="good_img"
  128. label="图片"
  129. width="48"
  130. show-overflow-tooltip
  131. >
  132. <template slot-scope="scope">
  133. <div
  134. v-if="scope.row.good_img"
  135. style="width: 20px; height: 20px"
  136. class="hover"
  137. v-viewer
  138. >
  139. <img
  140. :src="scope.row.good_img"
  141. style="display: inline-block; width: 100%; height: 100%"
  142. alt=""
  143. />
  144. </div>
  145. </template>
  146. </el-table-column>
  147. <el-table-column
  148. prop="good_name"
  149. label="商品名称"
  150. min-width="120"
  151. show-overflow-tooltip
  152. />
  153. <el-table-column
  154. prop="sale_price"
  155. label="成本合计"
  156. width="110"
  157. show-overflow-tooltip
  158. />
  159. <el-table-column
  160. prop="color"
  161. label="颜色"
  162. width="100"
  163. show-overflow-tooltip
  164. />
  165. <el-table-column
  166. prop="model"
  167. label="型号"
  168. width="100"
  169. show-overflow-tooltip
  170. />
  171. <el-table-column
  172. prop="material"
  173. label="材质"
  174. width="100"
  175. show-overflow-tooltip
  176. />
  177. <el-table-column
  178. prop="unit"
  179. label="单位"
  180. width="45"
  181. show-overflow-tooltip
  182. />
  183. <el-table-column
  184. prop="brand_name"
  185. label="品牌"
  186. width="80"
  187. show-overflow-tooltip
  188. />
  189. <el-table-column
  190. prop="supplierName"
  191. label="供应商"
  192. show-overflow-tooltip
  193. />
  194. <el-table-column fixed="right" label="操作" width="80">
  195. <template slot="header" slot-scope="scope">
  196. <span>操作</span>
  197. <el-tooltip effect="dark" content="添加反馈商品" placement="top">
  198. <i
  199. class="el-icon-circle-plus-outline tb-icon fr"
  200. @click="openModal('add', 'add')"
  201. ></i>
  202. </el-tooltip>
  203. </template>
  204. <template slot-scope="scope">
  205. <el-tooltip
  206. v-if="powers.some((item) => item == '007')"
  207. effect="dark"
  208. content="详情"
  209. placement="top"
  210. >
  211. <i
  212. class="el-icon-view tb-icon"
  213. @click="openModal(scope.row.bidNo, 'view')"
  214. ></i>
  215. </el-tooltip>
  216. <el-tooltip effect="dark" content="修改" placement="top">
  217. <i
  218. class="el-icon-edit tb-icon"
  219. @click="openModal(scope.row.bidNo, 'edit')"
  220. ></i>
  221. </el-tooltip>
  222. </template>
  223. </el-table-column>
  224. </el-table>
  225. </div>
  226. </div>
  227. <div v-else>
  228. <no-auth></no-auth>
  229. </div>
  230. </div>
  231. </template>
  232. <script>
  233. import asyncRequest from "@/apis/service/purchaseIn/workbench";
  234. import resToken from "@/mixins/resToken";
  235. import { mapGetters } from "vuex";
  236. import baseForm from "./components/baseForm";
  237. export default {
  238. name: "workbenchDetail",
  239. components: {
  240. baseForm,
  241. },
  242. mixins: [resToken],
  243. computed: {
  244. ...mapGetters(["tablebtnSize", "searchSize", "size"]),
  245. powers() {
  246. let tran =
  247. this.$store.getters.btnList.find(
  248. (item) => item.menu_route == "workbenchDetail"
  249. ) || {};
  250. if (tran && tran.action && tran.action.length > 0) {
  251. return tran.action;
  252. } else {
  253. return [];
  254. }
  255. },
  256. },
  257. data() {
  258. return {
  259. loading: false,
  260. showModel: false,
  261. tableData: [],
  262. baseSitem: {},
  263. isDetail: false,
  264. modelId: 0,
  265. queryId: "",
  266. sitem: {},
  267. newTime: "",
  268. editId: "add",
  269. editType: "wait",
  270. parmValue: {
  271. page: 1,
  272. size: 100,
  273. zxNo: "",
  274. infoNo: "",
  275. bidNo: "",
  276. projectNo: "",
  277. },
  278. };
  279. },
  280. mounted() {
  281. this.initForm();
  282. },
  283. methods: {
  284. async initForm() {
  285. this.editType = "wait";
  286. const { id } = this.$route.query;
  287. this.queryId = id;
  288. console.log(this.queryId);
  289. this.loading = true;
  290. await this.initData();
  291. await this.searchList();
  292. this.loading = false;
  293. },
  294. async initData() {
  295. this.loading = true;
  296. const { code, message, data } = await asyncRequest.detail({
  297. infoNo: this.queryId,
  298. });
  299. this.loading = false;
  300. console.log(data);
  301. if (code === 0) {
  302. this.sitem = JSON.parse(JSON.stringify(data));
  303. const { status, can } = this.sitem;
  304. if (can && can.length > 0) {
  305. let can_name = "",
  306. can_id_arr = [],
  307. is_metal = false;
  308. can.forEach((e, i) => {
  309. can_name += i == 0 ? e.name : `_${e.name}`;
  310. can_id_arr.push(e.id);
  311. if (e.id === "6") {
  312. is_metal = true;
  313. }
  314. });
  315. this.sitem.is_metal = is_metal;
  316. this.sitem.can_id_arr = can_id_arr;
  317. this.sitem.can_name = can_name;
  318. } else {
  319. this.sitem.can_id_arr = [];
  320. this.sitem.can_name = "";
  321. }
  322. console.log(this.sitem.can_id_arr);
  323. this.status = status;
  324. this.getNewTime();
  325. } else if (code >= 100 && code <= 104) {
  326. await this.logout();
  327. } else {
  328. this.$message.warning(message);
  329. }
  330. },
  331. getNewTime() {
  332. this.newTime = new Date().valueOf();
  333. },
  334. openModal(bidNo, type) {
  335. const { id } = this.$route.query;
  336. this.queryId = id;
  337. this.editId = bidNo;
  338. this.editType = type;
  339. this.getNewTime();
  340. },
  341. // 刷新表格
  342. async searchList() {
  343. this.loading = true;
  344. this.parmValue.infoNo = this.queryId;
  345. const { code, data, message } = await asyncRequest.good_list(
  346. this.parmValue
  347. );
  348. if (code === 0) {
  349. const {list}=data
  350. this.tableData = list;
  351. } else if (code >= 100 && code <= 104) {
  352. await this.logout();
  353. } else {
  354. this.tableData = [];
  355. }
  356. this.loading = false;
  357. },
  358. },
  359. };
  360. </script>
  361. <style lang="scss" scoped>
  362. @import "~@/styles/mixin.scss";
  363. .workbenchdetail {
  364. //
  365. position: relative;
  366. width: 100%;
  367. height: calc(100vh - 50px);
  368. box-sizing: border-box;
  369. overflow: hidden;
  370. .page-main {
  371. position: relative;
  372. background: #f2f2f2;
  373. width: 100%;
  374. height: calc(100vh - 50px);
  375. box-sizing: border-box;
  376. // padding:16px;
  377. .left {
  378. position: absolute;
  379. top: 16px;
  380. left: 16px;
  381. width: 220px;
  382. overflow: hidden;
  383. height: calc(100vh - 82px);
  384. .left-main {
  385. background: rgba(242, 242, 242, 1);
  386. width: 100%;
  387. overflow-y: scroll;
  388. overflow-x: hidden;
  389. // background: #fff;
  390. height: calc(100vh - 82px);
  391. @include scrollBar();
  392. }
  393. }
  394. .p-right {
  395. top: 16px;
  396. right: 16px;
  397. width: calc(100% - 258px);
  398. height: calc(100vh - 276px);
  399. overflow-y: scroll;
  400. background: #fff;
  401. overflow-x: hidden;
  402. position: absolute;
  403. @include scrollBar();
  404. .right-mian-wait {
  405. .title {
  406. height: 45px;
  407. font-size: 17px;
  408. line-height: 45px;
  409. box-sizing: border-box;
  410. padding: 0 16px;
  411. border-bottom: 1px solid rgba(242, 242, 242, 1);
  412. }
  413. .main {
  414. text-align: center;
  415. line-height: 180px;
  416. }
  417. }
  418. }
  419. .bottom {
  420. position: absolute;
  421. bottom: 16px;
  422. right: 16px;
  423. background: #fff;
  424. width: calc(100% - 258px);
  425. height: 180px;
  426. min-height: 180px;
  427. overflow-y: scroll;
  428. overflow-x: hidden;
  429. @include scrollBar();
  430. padding: 16px;
  431. }
  432. .left-card,
  433. .right-card,
  434. .bottom-card {
  435. background: #fff;
  436. font-size: 12px;
  437. // padding:16px;
  438. line-height: 18px;
  439. margin: 8px 0 0 0;
  440. &:first-child {
  441. margin: 0;
  442. }
  443. .page-main-title {
  444. height: 45px;
  445. font-size: 17px;
  446. line-height: 45px;
  447. box-sizing: border-box;
  448. padding: 0 16px;
  449. border-bottom: 1px solid rgba(242, 242, 242, 1);
  450. }
  451. .page-main-ul {
  452. padding: 10px 16px 16px 16px;
  453. li {
  454. float: left;
  455. font-size: 12px;
  456. line-height: 25px;
  457. &:nth-child(2n + 1) {
  458. width: 60px;
  459. text-align: right;
  460. }
  461. &:nth-child(2n + 2) {
  462. width: calc(100% - 60px);
  463. }
  464. }
  465. }
  466. }
  467. }
  468. }
  469. </style>