raiHistoryContract.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338
  1. <script setup>
  2. import { ref,watch } from "vue";
  3. import { useRouter} from 'vue-router';
  4. import { InfoFilled } from '@element-plus/icons-vue'
  5. import {formatTime} from "@/hooks/mixins/index.js"
  6. const $router=useRouter()
  7. const props = defineProps({
  8. isPreview: {
  9. type: Boolean,
  10. default: false,
  11. },
  12. dealList: {
  13. type: Array,
  14. default: () => {
  15. return [];
  16. },
  17. },
  18. })
  19. const emits=defineEmits(['update:isPreview','update:dealList'])
  20. const ficcContractList=ref([])
  21. const raiContractList=ref([])
  22. const contractList=ref([])
  23. const contractType=ref("")
  24. const showViewer=ref(false)
  25. const constractFileImgList=ref([])
  26. watch(()=>props.isPreview,(val)=>{
  27. console.log(val,'val');
  28. if (val) {
  29. getContractList();
  30. }
  31. })
  32. const getContractList=()=>{
  33. ficcContractList.value = props.dealList.filter((i) => i.ProductId === 1);
  34. raiContractList.value = props.dealList.filter((i) => i.ProductId === 2);
  35. changeContractType("ficc");
  36. if (!ficcContractList.value.length && raiContractList.value.length) {
  37. changeContractType("rai");
  38. }
  39. }
  40. const changeContractType=(type)=>{
  41. if (contractType.value === type) return;
  42. contractType.value = type;
  43. type === "ficc" && (contractList.value = ficcContractList.value);
  44. type === "rai" && (contractList.value = raiContractList.value);
  45. }
  46. const showContractFiles=(data)=>{
  47. constractFileImgList.value = [];
  48. const { constractFiles } = data;
  49. const imageList = constractFiles.filter((i) => i.type === "img");
  50. const wordList = constractFiles.filter((i) => i.type === "word");
  51. const pdfList = constractFiles.filter((i) => i.type === "pdf");
  52. imageList.forEach((i) => {
  53. constractFileImgList.value.push(i.url);
  54. });
  55. if (constractFileImgList.value.length) {
  56. showViewer.value = true;
  57. }
  58. }
  59. const preViewConstractFile=(data, list = [])=>{
  60. constractFileImgList.value = [];
  61. if (data.type === "word") {
  62. window.open("https://view.officeapps.live.com/op/view.aspx?src=" + data.url, "_blank");
  63. }
  64. if (data.type === "pdf") {
  65. window.open(data.url);
  66. }
  67. if (data.type === "img") {
  68. //改变list的顺序,当前点击的为第一个
  69. list
  70. .filter((i) => i.type === "img")
  71. .map((i) => {
  72. constractFileImgList.value.push(i.url);
  73. });
  74. const index = constractFileImgList.value.findIndex((url) => url === data.url);
  75. constractFileImgList.value = [...constractFileImgList.value.slice(index), ...constractFileImgList.value.slice(0, index)];
  76. if (constractFileImgList.value.length) {
  77. showViewer.value = true;
  78. }
  79. }
  80. }
  81. const showExpand=(index, type = "root")=>{
  82. type === "root" && (contractList.value[index].extend = !contractList.value[index].extend);
  83. type === "files" && (contractList.value[index].filesExtend = !contractList.value[index].filesExtend);
  84. contractList.value.splice(index, 1, contractList.value[index]);
  85. }
  86. const toContractDetail=(item)=>{
  87. if (!item.ContractId) return;
  88. const { href } = $router.resolve({ path: "/contractdetail", query: { contractId: item.ContractId } }) || { href: "" };
  89. href && window.open(href, "_blank");
  90. }
  91. const closePreview=()=>{
  92. emits("update:isPreview", false);
  93. emits("update:dealList", []);
  94. }
  95. </script>
  96. <template>
  97. <!-- 历史签约弹窗 -->
  98. <div>
  99. <el-dialog
  100. v-model="props.isPreview"
  101. class="history-contract-wrap-content_rai"
  102. :append-to-body="true"
  103. :modal-append-to-body="false"
  104. @close="closePreview"
  105. title="历史签约"
  106. center
  107. top="7vh"
  108. v-dialogDrag
  109. width="1200px"
  110. >
  111. <div class="dialog-wrap">
  112. <div class="contract-list">
  113. <div class="contract-item" v-for="(item, index) in contractList" :key="item.ContractCode">
  114. <div class="contract-tag">
  115. <el-tag size="large">
  116. {{ item.ContractType }}
  117. <el-tooltip class="item" effect="dark" v-if="item.ContractType != '补充协议'" placement="top-start">
  118. <template #content v-if="item.ContractType == '新签合同'">
  119. 没有正式转试用记录的客户,在申请转正时提交的合同
  120. </template>
  121. <template #content v-if="item.ContractType == '续约合同'">
  122. 1、有正式转试用记录的客户,在申请转正时提交的合同<br />
  123. 2、所有客户在续约申请时提交的合同
  124. </template>
  125. <el-icon :size="17" style="width: 17px;"><InfoFilled /></el-icon>
  126. </el-tooltip>
  127. </el-tag>
  128. <span :style="{ 'text-decoration-line': item.ContractId ? 'underline' : 'none' }" @click="toContractDetail(item)">合同编号:{{ item.ContractCode }}</span>
  129. </div>
  130. <div class="line"></div>
  131. <!-- 合同基本信息 -->
  132. <div class="contract-base">
  133. <ul class="base-lise">
  134. <li>
  135. <p>合同期限:{{ item.StartDate + "~" + item.EndDate }}</p>
  136. <p>合同金额:{{ item.Money }}</p>
  137. </li>
  138. <li>
  139. <p>付款方式:{{ item.PayMethod }}</p>
  140. <p>付款渠道:{{ item.PayChannel }}</p>
  141. </li>
  142. <li>
  143. <p>审批时间:{{ formatTime(item.ModifyTimeStr) }}</p>
  144. <p></p>
  145. </li>
  146. </ul>
  147. </div>
  148. <!-- 权限设置和查看附件 -->
  149. <div class="contract-info">
  150. <div @click="showExpand(index, 'root')">
  151. 权限设置 <span><i :class="item.extend ? 'el-icon-arrow-down' : 'el-icon-arrow-right'"></i></span>
  152. </div>
  153. </div>
  154. <div class="contract-root" v-show="item.extend">
  155. <ul class="menu_lists">
  156. <li v-for="auth in item.PermissionList" :key="auth.ClassifyName" class="menu_item">
  157. <el-checkbox :indeterminate="auth.CheckList.length > 0 && auth.CheckList.length < auth.Items.length" v-model="auth.CheckAll" disabled style="margin-right: 30px; font-weight: bold">{{
  158. auth.ClassifyName + ":"
  159. }}</el-checkbox>
  160. <el-checkbox-group v-model="auth.CheckList" disabled>
  161. <el-checkbox v-for="list in auth.Items" :label="list.ChartPermissionId" :key="list.ChartPermissionId" class="list_item">{{ list.PermissionName }}</el-checkbox>
  162. </el-checkbox-group>
  163. </li>
  164. </ul>
  165. </div>
  166. <div class="contract-info">
  167. <div @click="showExpand(index, 'files')">
  168. 合同附件 <span><i :class="item.filesExtend ? 'el-icon-arrow-down' : 'el-icon-arrow-right'"></i></span>
  169. </div>
  170. </div>
  171. <div class="contract-files" v-show="item.filesExtend">
  172. <ul class="file-list">
  173. <li v-for="img in item.constractFiles" :key="img">
  174. <img :src="require('@/assets/img/constract/word-icon.png')" v-if="img.type == 'word'" @click="preViewConstractFile(img)" />
  175. <img :src="require('@/assets/img/constract/pdf.png')" v-else-if="img.type == 'pdf'" @click="preViewConstractFile(img)" />
  176. <img :src="img.url" v-else-if="img.type == 'img'" @click="preViewConstractFile(img, item.constractFiles)" />
  177. </li>
  178. </ul>
  179. </div>
  180. </div>
  181. <span v-if="!contractList.length" style="font-size: 16px; color: #999">暂无历史合同</span>
  182. </div>
  183. </div>
  184. <el-image-viewer
  185. v-if="showViewer"
  186. @close="
  187. () => {
  188. showViewer = false;
  189. }
  190. "
  191. :url-list="constractFileImgList"
  192. />
  193. </el-dialog>
  194. </div>
  195. </template>
  196. <style lang="scss">
  197. .history-contract-wrap-content_rai {
  198. .dialog-wrap {
  199. padding: 5px 60px 30px 60px;
  200. .contract-tab {
  201. display: flex;
  202. margin-bottom: 30px;
  203. span {
  204. flex: 1;
  205. text-align: center;
  206. font-size: 16px;
  207. padding-bottom: 5px;
  208. cursor: pointer;
  209. &.active {
  210. color: #0052d9;
  211. border-bottom: 2px solid #0052d9;
  212. }
  213. }
  214. }
  215. .contract-list {
  216. max-height: 600px;
  217. min-height: 200px;
  218. overflow-y: auto;
  219. padding-right: 6px;
  220. .contract-item {
  221. padding: 20px;
  222. border: 1px solid #dcdfe6;
  223. border-radius: 4px;
  224. margin-bottom: 30px;
  225. display: flex;
  226. flex-direction: column;
  227. gap: 20px 0;
  228. .contract-tag {
  229. span {
  230. cursor: pointer;
  231. &:last-child {
  232. margin-left: 12px;
  233. }
  234. font-size: 16px;
  235. color: #409eff;
  236. }
  237. }
  238. .line {
  239. height: 1px;
  240. background-color: #dcdfe6;
  241. margin: 0 -20px;
  242. }
  243. .contract-base {
  244. li {
  245. display: flex;
  246. border: 1px solid #dcdfe6;
  247. border-bottom: none;
  248. &:last-child {
  249. border-bottom: 1px solid #dcdfe6;
  250. }
  251. p {
  252. font-size: 16px;
  253. flex: 1;
  254. min-height: 48px;
  255. display: flex;
  256. align-items: center;
  257. margin-left: 20px;
  258. &:first-child {
  259. border-right: 1px solid #dcdfe6;
  260. }
  261. }
  262. }
  263. }
  264. .contract-info {
  265. display: flex;
  266. justify-content: space-between;
  267. align-items: center;
  268. div,
  269. i::before {
  270. font-size: 14px;
  271. font-weight: bold;
  272. color: #333333;
  273. cursor: pointer;
  274. }
  275. }
  276. .contract-root {
  277. border: 2px dashed #dcdfe6;
  278. border-radius: 4px;
  279. padding: 20px;
  280. .menu_lists {
  281. li {
  282. display: flex;
  283. margin-bottom: 20px;
  284. &:last-child {
  285. margin-bottom: 0;
  286. }
  287. }
  288. }
  289. }
  290. .contract-files {
  291. .file-list {
  292. display: flex;
  293. gap: 10px;
  294. flex-wrap: wrap;
  295. li {
  296. width: 240px;
  297. height: 180px;
  298. padding: 10px;
  299. box-sizing: border-box;
  300. cursor: pointer;
  301. border-radius: 4px;
  302. background-color: rgb(170, 170, 170);
  303. img {
  304. width: 100%;
  305. height: 100%;
  306. }
  307. }
  308. }
  309. }
  310. }
  311. }
  312. }
  313. }
  314. </style>
  315. <style lang="scss">
  316. .contract-tag{
  317. .el-tag{
  318. .el-tag__content{
  319. display:inline-flex;
  320. align-items:center;
  321. margin-left:0!important;
  322. i{
  323. margin-left:4px;
  324. }
  325. }
  326. }
  327. }
  328. </style>