detail.vue 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  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. <el-tabs v-model="projectTabs">
  8. <el-tab-pane label="新建咨询单" name="0" v-if="queryType === 'add'">
  9. <add-form
  10. v-if="newTime !== ''"
  11. :newTime="newTime"
  12. :id="queryId"
  13. :type="queryType"
  14. :sitem="sitem"
  15. @refresh="refresh"
  16. />
  17. </el-tab-pane>
  18. <el-tab-pane label="咨询单详情" name="1" v-if="queryType !== 'add'">
  19. <el-collapse v-model="projectNames" style="margin: -18px 0 0 0">
  20. <el-collapse-item title="咨询单详情" name="0">
  21. <add-form
  22. v-if="newTime !== ''"
  23. :newTime="newTime"
  24. :id="queryId"
  25. :type="queryType"
  26. :sitem="sitem"
  27. @refresh="refresh"
  28. />
  29. </el-collapse-item>
  30. <el-collapse-item
  31. title="采购部定价"
  32. name="2"
  33. v-if="status == '1' && powers.some((item) => item == '057')"
  34. >
  35. 444
  36. </el-collapse-item>
  37. <el-collapse-item
  38. title="财务定价"
  39. name="3"
  40. v-if="status == '2' && powers.some((item) => item == '058')"
  41. >
  42. 555
  43. </el-collapse-item>
  44. <el-collapse-item
  45. title="财务审核定价"
  46. name="4"
  47. v-if="status == '3' && powers.some((item) => item == '059')"
  48. >
  49. 666
  50. </el-collapse-item>
  51. </el-collapse>
  52. </el-tab-pane>
  53. <el-tab-pane label="审批记录" name="2" v-if="queryType !== 'add'">
  54. 111
  55. </el-tab-pane>
  56. </el-tabs>
  57. </div>
  58. <div v-else>
  59. <no-auth></no-auth>
  60. </div>
  61. </div>
  62. </template>
  63. <script>
  64. import asyncRequest from "@/apis/service/sellOut/zixunOrder";
  65. import resToken from "@/mixins/resToken";
  66. import { mapGetters } from "vuex";
  67. import addForm from "./components/addEditForm";
  68. // import grossForm from "./components/grossForm";
  69. // import financeExamOneForm from "./components/finance-exam-one-form";
  70. // import financeExamTwoForm from "./components/finance-exam-two-form";
  71. // import financeExamThreeForm from "./components/finance-exam-three-form";
  72. export default {
  73. name: "zixunOrderDetail",
  74. mixins: [resToken],
  75. components: {
  76. addForm,
  77. // grossForm,
  78. // financeExamOneForm,
  79. // financeExamTwoForm,
  80. // financeExamThreeForm,
  81. },
  82. computed: {
  83. ...mapGetters(["tablebtnSize", "searchSize", "size"]),
  84. powers() {
  85. let tran =
  86. this.$store.getters.btnList.find(
  87. (item) => item.menu_route == "zixunOrderDetail"
  88. ) || {};
  89. if (tran && tran.action && tran.action.length > 0) {
  90. return tran.action;
  91. } else {
  92. return [];
  93. }
  94. },
  95. },
  96. data() {
  97. return {
  98. statusList: [],
  99. size: "small",
  100. projectTabs: "1",
  101. projectNames: ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"],
  102. newTime: "",
  103. loading: false,
  104. queryType: "",
  105. queryId: "",
  106. status: "",
  107. sitem: null,
  108. };
  109. },
  110. mounted() {
  111. this.initForm();
  112. },
  113. methods: {
  114. async initForm() {
  115. const { id, type } = this.$route.query;
  116. this.queryId = id;
  117. this.queryType = type;
  118. this.projectTabs = type === "add" ? "0" : "1";
  119. this.loading = true;
  120. if (this.queryType === "add") {
  121. this.sitem = {};
  122. this.getNewTime();
  123. } else {
  124. await this.initData();
  125. }
  126. this.loading = false;
  127. },
  128. // 点击业务审核的保存按钮
  129. async examForm(e) {
  130. console.log(e);
  131. if (!this.loading) {
  132. let model = {
  133. activity_code: this.queryId,
  134. status: e.state === "1" ? "1" : "8",
  135. remark: e.remark,
  136. };
  137. await this.setstatus("提交产品部门审核", model);
  138. }
  139. },
  140. async setstatus(detail, model) {
  141. await this.$confirm(`确定要${detail}?`, {
  142. confirmButtonText: "确定",
  143. cancelButtonText: "取消",
  144. type: "warning",
  145. })
  146. .then(async () => {
  147. let res = await asyncRequest.actstatus(model);
  148. if (res && res.code === 0) {
  149. this.$notify.success({
  150. title: "提交成功!",
  151. message: "",
  152. });
  153. await this.initForm();
  154. } else if (res && res.code >= 100 && res.code <= 104) {
  155. await this.logout();
  156. } else {
  157. this.$message.warning(res.message);
  158. }
  159. })
  160. .catch(() => {
  161. console.log("取消");
  162. });
  163. },
  164. handleClick(row) {
  165. console.log(row);
  166. },
  167. async refresh() {
  168. this.routeReGoto("zixunOrder", {});
  169. },
  170. async initData() {
  171. this.loading = true;
  172. const { code, message, data } = await asyncRequest.detail({
  173. projectNo: this.queryId,
  174. });
  175. this.loading = false;
  176. console.log(data);
  177. if (code === 0) {
  178. this.sitem = JSON.parse(JSON.stringify(data));
  179. const { status } = this.sitem;
  180. this.status = status;
  181. this.getNewTime();
  182. } else if (code >= 100 && code <= 104) {
  183. await this.logout();
  184. } else {
  185. this.$message.warning(message);
  186. }
  187. },
  188. getNewTime() {
  189. this.newTime = new Date().valueOf();
  190. },
  191. },
  192. };
  193. </script>
  194. <style lang="scss" scoped>
  195. .zixunOrderDetail {
  196. position: relative;
  197. height: 100%;
  198. width: 100%;
  199. box-sizing: border-box;
  200. .zixunOrderDetail-main {
  201. overflow-y: scroll;
  202. position: relative;
  203. padding: 10px;
  204. height: 100%;
  205. width: 100%;
  206. }
  207. .zixunOrderDetail-title {
  208. border-top: 1px solid #ebeef5;
  209. span {
  210. height: 50px;
  211. line-height: 50px;
  212. font-family: "微软雅黑", sans-serif;
  213. font-weight: 400;
  214. font-style: normal;
  215. font-size: 16fpx;
  216. text-align: left;
  217. }
  218. }
  219. /deep/ .ddiv {
  220. border-top: 1px solid #dcdfe6;
  221. }
  222. /deep/ .dtitle {
  223. width: 40px;
  224. text-align: center;
  225. height: 100%;
  226. min-height: 100%;
  227. ul {
  228. padding: 12px 0 0 0;
  229. }
  230. }
  231. /deep/ .dmain {
  232. padding: 20px 0 0 0;
  233. width: calc(100% - 40px);
  234. border-left: 1px solid #dcdfe6;
  235. }
  236. }
  237. </style>