detail.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479
  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="specinfo"
  161. label="规格"
  162. width="100"
  163. show-overflow-tooltip
  164. >
  165. <template slot-scope="scope">
  166. <span v-for="(item, ii) in scope.row.specinfo" :key="item + ii"
  167. ><span v-if="ii !== 0">--</span>{{ item.spec_name }}[{{
  168. item.spec_value_name
  169. }}]</span
  170. >
  171. </template></el-table-column
  172. >
  173. <el-table-column
  174. prop="unit"
  175. label="单位"
  176. width="45"
  177. show-overflow-tooltip
  178. />
  179. <el-table-column
  180. prop="brand_name"
  181. label="品牌"
  182. width="80"
  183. show-overflow-tooltip
  184. />
  185. <el-table-column
  186. prop="supplierName"
  187. label="供应商"
  188. show-overflow-tooltip
  189. />
  190. <el-table-column fixed="right" label="操作" width="80">
  191. <template slot="header" slot-scope="scope">
  192. <span>操作</span>
  193. <el-tooltip effect="dark" content="添加反馈商品" placement="top">
  194. <i
  195. class="el-icon-circle-plus-outline tb-icon fr"
  196. @click="openModal('add', 'add')"
  197. ></i>
  198. </el-tooltip>
  199. </template>
  200. <template slot-scope="scope">
  201. <el-tooltip
  202. v-if="powers.some((item) => item == '007')"
  203. effect="dark"
  204. content="详情"
  205. placement="top"
  206. >
  207. <i
  208. class="el-icon-view tb-icon"
  209. @click="openModal(scope.row.bidNo, 'view')"
  210. ></i>
  211. </el-tooltip>
  212. <el-tooltip effect="dark" content="修改" placement="top">
  213. <i
  214. class="el-icon-edit tb-icon"
  215. @click="openModal(scope.row.bidNo, 'edit')"
  216. ></i>
  217. </el-tooltip>
  218. </template>
  219. </el-table-column>
  220. </el-table>
  221. </div>
  222. </div>
  223. <div v-else>
  224. <no-auth></no-auth>
  225. </div>
  226. </div>
  227. </template>
  228. <script>
  229. import asyncRequest from "@/apis/service/purchaseIn/workbench";
  230. import resToken from "@/mixins/resToken";
  231. import { mapGetters } from "vuex";
  232. import baseForm from "./components/baseForm";
  233. export default {
  234. name: "workbenchDetail",
  235. components: {
  236. baseForm,
  237. },
  238. mixins: [resToken],
  239. computed: {
  240. ...mapGetters(["tablebtnSize", "searchSize", "size"]),
  241. powers() {
  242. let tran =
  243. this.$store.getters.btnList.find(
  244. (item) => item.menu_route == "workbenchDetail"
  245. ) || {};
  246. if (tran && tran.action && tran.action.length > 0) {
  247. return tran.action;
  248. } else {
  249. return [];
  250. }
  251. },
  252. },
  253. data() {
  254. return {
  255. loading: false,
  256. showModel: false,
  257. tableData: [],
  258. baseSitem: {},
  259. isDetail: false,
  260. modelId: 0,
  261. queryId: "",
  262. sitem: {},
  263. newTime: "",
  264. editId: "add",
  265. editType: "wait",
  266. parmValue: {
  267. page: 1,
  268. size: 100,
  269. zxNo: "",
  270. infoNo: "",
  271. bidNo: "",
  272. projectNo: "",
  273. },
  274. };
  275. },
  276. mounted() {
  277. this.initForm();
  278. },
  279. methods: {
  280. async initForm() {
  281. this.editType = "wait";
  282. const { id } = this.$route.query;
  283. this.queryId = id;
  284. console.log(this.queryId);
  285. this.loading = true;
  286. await this.initData();
  287. await this.searchList();
  288. this.loading = false;
  289. },
  290. async initData() {
  291. this.loading = true;
  292. const { code, message, data } = await asyncRequest.detail({
  293. infoNo: this.queryId,
  294. });
  295. this.loading = false;
  296. console.log(data);
  297. if (code === 0) {
  298. this.sitem = JSON.parse(JSON.stringify(data));
  299. const { status, can } = this.sitem;
  300. if (can && can.length > 0) {
  301. let can_name = "",
  302. can_id_arr = [],
  303. is_metal = false;
  304. can.forEach((e, i) => {
  305. can_name += i == 0 ? e.name : `_${e.name}`;
  306. can_id_arr.push(e.id);
  307. if (e.id === "6") {
  308. is_metal = true;
  309. }
  310. });
  311. this.sitem.is_metal = is_metal;
  312. this.sitem.can_id_arr = can_id_arr;
  313. this.sitem.can_name = can_name;
  314. } else {
  315. this.sitem.can_id_arr = [];
  316. this.sitem.can_name = "";
  317. }
  318. // console.log(this.sitem.can_id_arr);
  319. this.status = status;
  320. this.getNewTime();
  321. } else if (code >= 100 && code <= 104) {
  322. await this.logout();
  323. } else {
  324. this.$message.warning(message);
  325. }
  326. },
  327. getNewTime() {
  328. this.newTime = new Date().valueOf();
  329. },
  330. openModal(bidNo, type) {
  331. const { id } = this.$route.query;
  332. this.queryId = id;
  333. this.editId = bidNo;
  334. this.editType = type;
  335. this.getNewTime();
  336. },
  337. // 刷新表格
  338. async searchList() {
  339. this.loading = true;
  340. this.parmValue.infoNo = this.queryId;
  341. const { code, data, message } = await asyncRequest.good_list(
  342. this.parmValue
  343. );
  344. if (code === 0) {
  345. const { list } = data;
  346. this.tableData = list;
  347. } else if (code >= 100 && code <= 104) {
  348. await this.logout();
  349. } else {
  350. this.tableData = [];
  351. }
  352. this.loading = false;
  353. },
  354. },
  355. };
  356. </script>
  357. <style lang="scss" scoped>
  358. @import "~@/styles/mixin.scss";
  359. .workbenchdetail {
  360. //
  361. position: relative;
  362. width: 100%;
  363. height: calc(100vh - 50px);
  364. box-sizing: border-box;
  365. overflow: hidden;
  366. .page-main {
  367. position: relative;
  368. background: #f2f2f2;
  369. width: 100%;
  370. height: calc(100vh - 50px);
  371. box-sizing: border-box;
  372. // padding:16px;
  373. .left {
  374. position: absolute;
  375. top: 16px;
  376. left: 16px;
  377. width: 220px;
  378. overflow: hidden;
  379. height: calc(100vh - 82px);
  380. .left-main {
  381. background: rgba(242, 242, 242, 1);
  382. width: 100%;
  383. overflow-y: scroll;
  384. overflow-x: hidden;
  385. // background: #fff;
  386. height: calc(100vh - 82px);
  387. @include scrollBar();
  388. }
  389. }
  390. .p-right {
  391. top: 16px;
  392. right: 16px;
  393. width: calc(100% - 258px);
  394. height: calc(100vh - 276px);
  395. overflow-y: scroll;
  396. background: #fff;
  397. overflow-x: hidden;
  398. position: absolute;
  399. @include scrollBar();
  400. .right-mian-wait {
  401. .title {
  402. height: 45px;
  403. font-size: 17px;
  404. line-height: 45px;
  405. box-sizing: border-box;
  406. padding: 0 16px;
  407. border-bottom: 1px solid rgba(242, 242, 242, 1);
  408. }
  409. .main {
  410. text-align: center;
  411. line-height: 180px;
  412. }
  413. }
  414. }
  415. .bottom {
  416. position: absolute;
  417. bottom: 16px;
  418. right: 16px;
  419. background: #fff;
  420. width: calc(100% - 258px);
  421. height: 180px;
  422. min-height: 180px;
  423. overflow-y: scroll;
  424. overflow-x: hidden;
  425. @include scrollBar();
  426. padding: 16px;
  427. }
  428. .left-card,
  429. .right-card,
  430. .bottom-card {
  431. background: #fff;
  432. font-size: 12px;
  433. // padding:16px;
  434. line-height: 18px;
  435. margin: 8px 0 0 0;
  436. &:first-child {
  437. margin: 0;
  438. }
  439. .page-main-title {
  440. height: 45px;
  441. font-size: 17px;
  442. line-height: 45px;
  443. box-sizing: border-box;
  444. padding: 0 16px;
  445. border-bottom: 1px solid rgba(242, 242, 242, 1);
  446. }
  447. .page-main-ul {
  448. padding: 10px 16px 16px 16px;
  449. li {
  450. float: left;
  451. font-size: 12px;
  452. line-height: 25px;
  453. &:nth-child(2n + 1) {
  454. width: 60px;
  455. text-align: right;
  456. }
  457. &:nth-child(2n + 2) {
  458. width: calc(100% - 60px);
  459. }
  460. }
  461. }
  462. }
  463. }
  464. }
  465. </style>