detail.vue 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331
  1. <template>
  2. <div class="zixunOrderDetail">
  3. <div class="zixunOrderDetail-main" v-if="powers.some((i) => i == '007')">
  4. <show-data-table
  5. style="padding: 10px 0 5px 0"
  6. :newTime="newTime"
  7. border
  8. v-if="newTime !== '' && queryType === 'view'"
  9. :sitem="sitem"
  10. :columns="editColumns"
  11. >
  12. <template slot="status">
  13. <el-tag
  14. :size="tablebtnSize"
  15. v-text="
  16. (options.find((item) => item.id + '' == sitem.status + '') || {}).label ||
  17. '--'
  18. "
  19. ></el-tag>
  20. <el-tooltip
  21. effect="dark"
  22. content="停止招标任务"
  23. placement="top"
  24. v-if="
  25. sitem.status + '' === '1' && powers.some((i) => i == '066') && !isSupertube
  26. "
  27. >
  28. <i
  29. class="el-icon-video-pause hover"
  30. style="margin: 0 0 0 10px"
  31. @click="changeStatus('7')"
  32. ></i>
  33. </el-tooltip>
  34. <el-tooltip
  35. effect="dark"
  36. content="启动招标任务"
  37. placement="top"
  38. v-if="
  39. (sitem.status + '' === '7' || sitem.status + '' === '2') &&
  40. powers.some((i) => i == '067') &&
  41. !isSupertube
  42. "
  43. >
  44. <i
  45. class="el-icon-video-play hover"
  46. style="margin: 0 0 0 10px"
  47. @click="changeStatus('1')"
  48. ></i>
  49. </el-tooltip>
  50. </template>
  51. </show-data-table>
  52. <el-tabs v-model="projectTabs">
  53. <el-tab-pane label="新建竞价单" name="0" v-if="queryType === 'add'">
  54. <add-form
  55. v-if="newTime !== ''"
  56. :newTime="newTime"
  57. :id="queryId"
  58. :type="queryType"
  59. :sitem="sitem"
  60. @refresh="refresh"
  61. />
  62. </el-tab-pane>
  63. <el-tab-pane label="竞价单详情" name="1" v-if="queryType !== 'add'">
  64. <edit-form
  65. v-if="newTime !== ''"
  66. :newTime="newTime"
  67. :id="queryId"
  68. :type="queryType"
  69. :sitem="sitem"
  70. @refresh="refresh"
  71. />
  72. </el-tab-pane>
  73. <el-tab-pane label="反馈情况" name="2" v-if="queryType == 'view'">
  74. <feedback-list
  75. v-if="newTime !== ''"
  76. :newTime="newTime"
  77. :sitem="sitem"
  78. :id="queryId"
  79. @resGoodOk="initForm()"
  80. />
  81. </el-tab-pane>
  82. </el-tabs>
  83. </div>
  84. <div v-else>
  85. <no-auth></no-auth>
  86. </div>
  87. </div>
  88. </template>
  89. <script>
  90. import asyncRequest from "@/apis/service/sellOut/zixunOrder";
  91. import resToken from "@/mixins/resToken";
  92. import { mapGetters } from "vuex";
  93. import addForm from "./components/addEditForm";
  94. import editForm from "./components/editForm";
  95. import feedbackList from "./components/feedbackList";
  96. import { editColumns } from "./components/ShowDataTableColumns";
  97. import { options } from "./columns";
  98. export default {
  99. name: "zixunOrderDetail",
  100. mixins: [resToken],
  101. components: {
  102. addForm,
  103. editForm,
  104. feedbackList
  105. },
  106. computed: {
  107. ...mapGetters(["tablebtnSize", "searchSize", "size", "isSupertube"]),
  108. powers() {
  109. const tran =
  110. this.$store.getters.btnList.find(
  111. (item) => item.menu_route === "zixunOrderDetail"
  112. ) || {};
  113. const { action } = tran ?? {};
  114. return action ?? [];
  115. },
  116. },
  117. data() {
  118. return {
  119. statusList: [],
  120. size: "small",
  121. editColumns: editColumns,
  122. projectTabs: "1",
  123. projectNames: ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"],
  124. newTime: "",
  125. loading: false,
  126. queryType: "",
  127. queryId: "",
  128. status: "",
  129. sitem: null,
  130. options,
  131. };
  132. },
  133. mounted() {
  134. this.initForm();
  135. },
  136. methods: {
  137. async initForm() {
  138. const { id, type } = this.$route.query;
  139. this.queryId = id;
  140. this.queryType = type;
  141. this.projectTabs = type === "add" ? "0" : "1";
  142. this.loading = true;
  143. if (this.queryType === "add") {
  144. this.sitem = {};
  145. this.getNewTime();
  146. } else {
  147. await this.initData();
  148. }
  149. this.loading = false;
  150. },
  151. handleClick(row) {
  152. console.log(row);
  153. },
  154. async refresh() {
  155. this.routeReGoto("zixunOrder", {});
  156. },
  157. async initData() {
  158. this.loading = true;
  159. const { code, message, data } = await asyncRequest.detail({
  160. infoNo: this.queryId,
  161. });
  162. this.loading = false;
  163. console.log(data);
  164. if (code === 0) {
  165. this.sitem = JSON.parse(JSON.stringify(data));
  166. const { status, can } = this.sitem;
  167. if (can && can.length > 0) {
  168. let cat_id = [];
  169. can.forEach((e) => {
  170. cat_id.push(e.id);
  171. });
  172. this.sitem.cat_id = cat_id;
  173. } else {
  174. this.sitem.cat_id = [];
  175. }
  176. this.status = status;
  177. this.getNewTime();
  178. } else if (code >= 100 && code <= 104) {
  179. await this.logout();
  180. } else {
  181. this.$message.warning(message);
  182. }
  183. },
  184. getNewTime() {
  185. this.newTime = new Date().valueOf();
  186. },
  187. /**
  188. * 停止招标任务
  189. * @param {String} id id
  190. * @param {String} status 0-禁用 1-启用
  191. */
  192. async changeStatus(status) {
  193. await this.$confirm(
  194. status + "" === "7" ? `确定要停止招标任务么?` : "确定要重启招标任务么?",
  195. status + "" === "7" ? "" : "重启需要重新编辑竞价信息",
  196. {
  197. confirmButtonText: "确定",
  198. cancelButtonText: "取消",
  199. type: "warning",
  200. }
  201. )
  202. .then(async () => {
  203. if (status + "" === "7") {
  204. this.loading = true;
  205. let model = {
  206. infoNo: this.queryId,
  207. status: status,
  208. };
  209. const res = await asyncRequest.status(model);
  210. console.log(res);
  211. this.loading = false;
  212. if (res && res.code === 0) {
  213. this.$notify.success({
  214. title: "招标任务已结束!",
  215. message: "",
  216. });
  217. await this.initForm();
  218. } else if (res && res.code >= 100 && res.code <= 104) {
  219. await this.logout();
  220. } else {
  221. this.$message.warning(res.message);
  222. }
  223. } else {
  224. let model = {
  225. id: this.queryId,
  226. type: "edit",
  227. };
  228. const chunk = (qs, key, index) => {
  229. const next = `${key}=${model[key]}${index === keys.length ? "" : "&"}`;
  230. return qs + next;
  231. };
  232. model.redirect = "/sellOut/zixunOrderDetail";
  233. const keys = Object.keys(model);
  234. const queryString = keys.reduce(chunk, "?");
  235. this.$router.push("/reload" + queryString);
  236. }
  237. })
  238. .catch((e) => {
  239. console.log(e);
  240. console.log("取消");
  241. });
  242. },
  243. // 点击业务审核的保存按钮
  244. async examForm(e) {
  245. return;
  246. if (!this.loading) {
  247. let model = {
  248. activity_code: this.queryId,
  249. status: e.state + "" === "1" ? "1" : "8",
  250. remark: e.remark,
  251. };
  252. await this.setstatus("提交产品部门审核", model);
  253. }
  254. },
  255. async setstatus(detail, model) {
  256. await this.$confirm(`确定要${detail}?`, {
  257. confirmButtonText: "确定",
  258. cancelButtonText: "取消",
  259. type: "warning",
  260. })
  261. .then(async () => {
  262. let res = await asyncRequest.actstatus(model);
  263. if (res && res.code === 0) {
  264. this.$notify.success({
  265. title: "提交成功!",
  266. message: "",
  267. });
  268. await this.initForm();
  269. } else if (res && res.code >= 100 && res.code <= 104) {
  270. await this.logout();
  271. } else {
  272. this.$message.warning(res.message);
  273. }
  274. })
  275. .catch(() => {
  276. console.log("取消");
  277. });
  278. },
  279. },
  280. };
  281. </script>
  282. <style lang="scss" scoped>
  283. .zixunOrderDetail {
  284. position: relative;
  285. height: 100%;
  286. width: 100%;
  287. box-sizing: border-box;
  288. .zixunOrderDetail-main {
  289. position: relative;
  290. padding: 10px;
  291. height: 100%;
  292. width: 100%;
  293. }
  294. .zixunOrderDetail-title {
  295. border-top: 1px solid #ebeef5;
  296. span {
  297. height: 50px;
  298. line-height: 50px;
  299. font-family: "微软雅黑", sans-serif;
  300. font-weight: 400;
  301. font-style: normal;
  302. font-size: 16fpx;
  303. text-align: left;
  304. }
  305. }
  306. /deep/ .ddiv {
  307. border-top: 1px solid #dcdfe6;
  308. }
  309. /deep/ .dtitle {
  310. width: 40px;
  311. text-align: center;
  312. height: 100%;
  313. min-height: 100%;
  314. ul {
  315. padding: 12px 0 0 0;
  316. }
  317. }
  318. /deep/ .dmain {
  319. padding: 20px 0 0 0;
  320. width: calc(100% - 40px);
  321. border-left: 1px solid #dcdfe6;
  322. }
  323. }
  324. </style>