detail.vue 9.2 KB

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