ContractDetailList.vue 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703
  1. <template>
  2. <a-card :bordered="false">
  3. <!-- 查询区域 -->
  4. <div class="table-page-search-wrapper">
  5. <a-form layout="inline" @keyup.enter.native="searchQuery">
  6. <a-row :gutter="24">
  7. </a-row>
  8. </a-form>
  9. </div>
  10. <!-- 查询区域-END -->
  11. <!-- 操作按钮区域 -->
  12. <div class="table-operator">
  13. <a-button @click="handleAdd" type="primary" icon="plus">新增</a-button>
  14. <a-button type="primary" icon="download" @click="handleExportXls('合同信息存储表')">导出</a-button>
  15. <a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel">
  16. <a-button type="primary" icon="import">导入</a-button>
  17. </a-upload>
  18. <!-- 高级查询区域 -->
  19. <j-super-query :fieldList="superFieldList" ref="superQueryModal" @handleSuperQuery="handleSuperQuery"></j-super-query>
  20. <a-dropdown v-if="selectedRowKeys.length > 0">
  21. <a-menu slot="overlay">
  22. <a-menu-item key="1" @click="batchDel"><a-icon type="delete"/>删除</a-menu-item>
  23. </a-menu>
  24. <a-button style="margin-left: 8px"> 批量操作 <a-icon type="down" /></a-button>
  25. </a-dropdown>
  26. </div>
  27. <!-- table区域-begin -->
  28. <div>
  29. <div class="ant-alert ant-alert-info" style="margin-bottom: 16px;">
  30. <i class="anticon anticon-info-circle ant-alert-icon"></i> 已选择 <a style="font-weight: 600">{{ selectedRowKeys.length }}</a>项
  31. <a style="margin-left: 24px" @click="onClearSelected">清空</a>
  32. </div>
  33. <a-table
  34. ref="table"
  35. size="middle"
  36. :scroll="{x:true}"
  37. bordered
  38. rowKey="id"
  39. :columns="columns"
  40. :dataSource="dataSource"
  41. :pagination="ipagination"
  42. :loading="loading"
  43. :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
  44. class="j-table-force-nowrap"
  45. @change="handleTableChange">
  46. <template slot="htmlSlot" slot-scope="text">
  47. <div v-html="text"></div>
  48. </template>
  49. <template slot="imgSlot" slot-scope="text,record">
  50. <span v-if="!text" style="font-size: 12px;font-style: italic;">无图片</span>
  51. <img v-else :src="getImgView(text)" :preview="record.id" height="25px" alt="" style="max-width:80px;font-size: 12px;font-style: italic;"/>
  52. </template>
  53. <template slot="fileSlot" slot-scope="text">
  54. <span v-if="!text" style="font-size: 12px;font-style: italic;">无文件</span>
  55. <a-button
  56. v-else
  57. :ghost="true"
  58. type="primary"
  59. icon="download"
  60. size="small"
  61. @click="downloadFile(text)">
  62. 下载
  63. </a-button>
  64. </template>
  65. <span slot="action" slot-scope="text, record">
  66. <a @click="handleEdit(record)">编辑</a>
  67. <a-divider type="vertical" />
  68. <a-dropdown>
  69. <a class="ant-dropdown-link">更多 <a-icon type="down" /></a>
  70. <a-menu slot="overlay">
  71. <a-menu-item>
  72. <a @click="handleDetail(record)">详情</a>
  73. </a-menu-item>
  74. <a-menu-item>
  75. <a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">
  76. <a>删除</a>
  77. </a-popconfirm>
  78. </a-menu-item>
  79. </a-menu>
  80. </a-dropdown>
  81. </span>
  82. </a-table>
  83. </div>
  84. </a-card>
  85. </template>
  86. <script>
  87. import '@/assets/less/TableExpand.less'
  88. import { mixinDevice } from '@/utils/mixin'
  89. import { JeecgListMixin } from '@/mixins/JeecgListMixin'
  90. export default {
  91. name: 'ContractDetailList',
  92. mixins:[JeecgListMixin, mixinDevice],
  93. data () {
  94. return {
  95. description: '合同信息存储表管理页面',
  96. // 表头
  97. columns: [
  98. {
  99. title: '#',
  100. dataIndex: '',
  101. key:'rowIndex',
  102. width:60,
  103. align:"center",
  104. customRender:function (t,r,index) {
  105. return parseInt(index)+1;
  106. }
  107. },
  108. {
  109. title:'备注.',
  110. align:"center",
  111. dataIndex: 'bz'
  112. },
  113. {
  114. title:'编号.',
  115. align:"center",
  116. dataIndex: 'bh'
  117. },
  118. {
  119. title:'部门(合同付款).',
  120. align:"center",
  121. dataIndex: 'bm'
  122. },
  123. {
  124. title:'产品型号.',
  125. align:"center",
  126. dataIndex: 'cpxh'
  127. },
  128. {
  129. title:'待付款(元).',
  130. align:"center",
  131. dataIndex: 'dfk'
  132. },
  133. {
  134. title:'待开票(元).',
  135. align:"center",
  136. dataIndex: 'dkp'
  137. },
  138. {
  139. title:'到款(元).',
  140. align:"center",
  141. dataIndex: 'dk'
  142. },
  143. {
  144. title:'到款日期/汇票到期日期.',
  145. align:"center",
  146. dataIndex: 'dkhpdqrq',
  147. customRender:function (text) {
  148. return !text?"":(text.length>10?text.substr(0,10):text)
  149. }
  150. },
  151. {
  152. title:'电话.',
  153. align:"center",
  154. dataIndex: 'dh'
  155. },
  156. {
  157. title:'发票编号(sn).',
  158. align:"center",
  159. dataIndex: 'fpbh'
  160. },
  161. {
  162. title:'发票编码.',
  163. align:"center",
  164. dataIndex: 'fpbm'
  165. },
  166. {
  167. title:'发票开具额.',
  168. align:"center",
  169. dataIndex: 'fpkje'
  170. },
  171. {
  172. title:'发票类型.',
  173. align:"center",
  174. dataIndex: 'fplx'
  175. },
  176. {
  177. title:'发票内容.',
  178. align:"center",
  179. dataIndex: 'fpnr'
  180. },
  181. {
  182. title:'付款方名称.',
  183. align:"center",
  184. dataIndex: 'fkfmc'
  185. },
  186. {
  187. title:'更新时间.',
  188. align:"center",
  189. dataIndex: 'gxsj',
  190. customRender:function (text) {
  191. return !text?"":(text.length>10?text.substr(0,10):text)
  192. }
  193. },
  194. {
  195. title:'归档编号.',
  196. align:"center",
  197. dataIndex: 'gdbh'
  198. },
  199. {
  200. title:'归档日期.',
  201. align:"center",
  202. dataIndex: 'gdrq',
  203. customRender:function (text) {
  204. return !text?"":(text.length>10?text.substr(0,10):text)
  205. }
  206. },
  207. {
  208. title:'合同编号.',
  209. align:"center",
  210. dataIndex: 'htbh'
  211. },
  212. {
  213. title:'合同发票接收邮箱地址.',
  214. align:"center",
  215. dataIndex: 'htfpjsyxdz'
  216. },
  217. {
  218. title:'合同分配额.',
  219. align:"center",
  220. dataIndex: 'htfpe'
  221. },
  222. {
  223. title:'合同金额.',
  224. align:"center",
  225. dataIndex: 'htje'
  226. },
  227. {
  228. title:'合同款状态.',
  229. align:"center",
  230. dataIndex: 'htkzt'
  231. },
  232. {
  233. title:'合同类型.',
  234. align:"center",
  235. dataIndex: 'htlx'
  236. },
  237. {
  238. title:'合同履行情况.',
  239. align:"center",
  240. dataIndex: 'htlxqk'
  241. },
  242. {
  243. title:'合同密级.',
  244. align:"center",
  245. dataIndex: 'htmj'
  246. },
  247. {
  248. title:'合同名称.',
  249. align:"center",
  250. dataIndex: 'htmc'
  251. },
  252. {
  253. title:'合同起草人.',
  254. align:"center",
  255. dataIndex: 'htqcr'
  256. },
  257. {
  258. title:'合同签订日期.',
  259. align:"center",
  260. dataIndex: 'htqdrq',
  261. customRender:function (text) {
  262. return !text?"":(text.length>10?text.substr(0,10):text)
  263. }
  264. },
  265. {
  266. title:'合同任务id.',
  267. align:"center",
  268. dataIndex: 'htrwid'
  269. },
  270. {
  271. title:'合同数量.',
  272. align:"center",
  273. dataIndex: 'htsl'
  274. },
  275. {
  276. title:'合同页数.',
  277. align:"center",
  278. dataIndex: 'htys'
  279. },
  280. {
  281. title:'合同主管部门.',
  282. align:"center",
  283. dataIndex: 'htzgbm'
  284. },
  285. {
  286. title:'合同状态.',
  287. align:"center",
  288. dataIndex: 'htzt'
  289. },
  290. {
  291. title:'合同状态说明.',
  292. align:"center",
  293. dataIndex: 'htztsm'
  294. },
  295. {
  296. title:'甲方(付款方).',
  297. align:"center",
  298. dataIndex: 'jf'
  299. },
  300. {
  301. title:'甲方简称、用户简称.',
  302. align:"center",
  303. dataIndex: 'jfyhjc'
  304. },
  305. {
  306. title:'甲方签约人.',
  307. align:"center",
  308. dataIndex: 'jfqyr'
  309. },
  310. {
  311. title:'阶段.',
  312. align:"center",
  313. dataIndex: 'jd'
  314. },
  315. {
  316. title:'金额(元)、收款总金额、开票金额.',
  317. align:"center",
  318. dataIndex: 'jeskzkp'
  319. },
  320. {
  321. title:'开户行.',
  322. align:"center",
  323. dataIndex: 'khx'
  324. },
  325. {
  326. title:'开票时间.',
  327. align:"center",
  328. dataIndex: 'kpsj',
  329. customRender:function (text) {
  330. return !text?"":(text.length>10?text.substr(0,10):text)
  331. }
  332. },
  333. {
  334. title:'开票状态.',
  335. align:"center",
  336. dataIndex: 'kpzt'
  337. },
  338. {
  339. title:'客户id.',
  340. align:"center",
  341. dataIndex: 'khid'
  342. },
  343. {
  344. title:'客户流程编号.',
  345. align:"center",
  346. dataIndex: 'khlcbh'
  347. },
  348. {
  349. title:'联系人(对方).',
  350. align:"center",
  351. dataIndex: 'lxr'
  352. },
  353. {
  354. title:'录入人、申请人.',
  355. align:"center",
  356. dataIndex: 'lrsqr'
  357. },
  358. {
  359. title:'凭证号.',
  360. align:"center",
  361. dataIndex: 'pzh'
  362. },
  363. {
  364. title:'起草日期、录入日期、申请日期.',
  365. align:"center",
  366. dataIndex: 'qclrsqrq',
  367. customRender:function (text) {
  368. return !text?"":(text.length>10?text.substr(0,10):text)
  369. }
  370. },
  371. {
  372. title:'签署日期.',
  373. align:"center",
  374. dataIndex: 'qsrq',
  375. customRender:function (text) {
  376. return !text?"":(text.length>10?text.substr(0,10):text)
  377. }
  378. },
  379. {
  380. title:'确认外协.',
  381. align:"center",
  382. dataIndex: 'qrwx'
  383. },
  384. {
  385. title:'任务编号.',
  386. align:"center",
  387. dataIndex: 'rwbh'
  388. },
  389. {
  390. title:'任务名称.',
  391. align:"center",
  392. dataIndex: 'rwmc'
  393. },
  394. {
  395. title:'任务收款金额.',
  396. align:"center",
  397. dataIndex: 'rwskje'
  398. },
  399. {
  400. title:'申请人部门.',
  401. align:"center",
  402. dataIndex: 'sqrbm'
  403. },
  404. {
  405. title:'收款编号(sn).',
  406. align:"center",
  407. dataIndex: 'skbh'
  408. },
  409. {
  410. title:'收款科目代码.',
  411. align:"center",
  412. dataIndex: 'skkmdm'
  413. },
  414. {
  415. title:'收款类型.',
  416. align:"center",
  417. dataIndex: 'sklx'
  418. },
  419. {
  420. title:'数据来源:10:合同管理,20:合同任务,30:任务合同,40:合同付款,50:合同发票,60:外协合同.',
  421. align:"center",
  422. dataIndex: 'sjly'
  423. },
  424. {
  425. title:'数量(合同付款).',
  426. align:"center",
  427. dataIndex: 'sl'
  428. },
  429. {
  430. title:'税号.',
  431. align:"center",
  432. dataIndex: 'sh'
  433. },
  434. {
  435. title:'所属型号.',
  436. align:"center",
  437. dataIndex: 'ssxh'
  438. },
  439. {
  440. title:'外协单号(sn).',
  441. align:"center",
  442. dataIndex: 'wxdh'
  443. },
  444. {
  445. title:'外协合同编号.',
  446. align:"center",
  447. dataIndex: 'wxhtbh'
  448. },
  449. {
  450. title:'外协类型.',
  451. align:"center",
  452. dataIndex: 'wxlx'
  453. },
  454. {
  455. title:'项目密级.',
  456. align:"center",
  457. dataIndex: 'xmmj'
  458. },
  459. {
  460. title:'发票需求时间.',
  461. align:"center",
  462. dataIndex: 'fpxqsj',
  463. customRender:function (text) {
  464. return !text?"":(text.length>10?text.substr(0,10):text)
  465. }
  466. },
  467. {
  468. title:'序号.',
  469. align:"center",
  470. dataIndex: 'xh'
  471. },
  472. {
  473. title:'研制部门.',
  474. align:"center",
  475. dataIndex: 'yzbm'
  476. },
  477. {
  478. title:'业务员.',
  479. align:"center",
  480. dataIndex: 'ywy'
  481. },
  482. {
  483. title:'业务员部门.',
  484. align:"center",
  485. dataIndex: 'ywybm'
  486. },
  487. {
  488. title:'乙方(收款方).',
  489. align:"center",
  490. dataIndex: 'yf'
  491. },
  492. {
  493. title:'乙方签约人.',
  494. align:"center",
  495. dataIndex: 'yfqyr'
  496. },
  497. {
  498. title:'已开票(元).',
  499. align:"center",
  500. dataIndex: 'ykp'
  501. },
  502. {
  503. title:'已收款.',
  504. align:"center",
  505. dataIndex: 'ysk'
  506. },
  507. {
  508. title:'用户id.',
  509. align:"center",
  510. dataIndex: 'yhid'
  511. },
  512. {
  513. title:'用户简称.',
  514. align:"center",
  515. dataIndex: 'yhjc'
  516. },
  517. {
  518. title:'用户名称.',
  519. align:"center",
  520. dataIndex: 'yhmc'
  521. },
  522. {
  523. title:'账号.',
  524. align:"center",
  525. dataIndex: 'zh'
  526. },
  527. {
  528. title:'执行状态(status).',
  529. align:"center",
  530. dataIndex: 'zxzt'
  531. },
  532. {
  533. title:'主管设计师.',
  534. align:"center",
  535. dataIndex: 'zgsjs'
  536. },
  537. {
  538. title:'抓总部门.',
  539. align:"center",
  540. dataIndex: 'zzbm'
  541. },
  542. {
  543. title:'自筹(元).',
  544. align:"center",
  545. dataIndex: 'zc'
  546. },
  547. {
  548. title:'类型(无用).',
  549. align:"center",
  550. dataIndex: 'pici'
  551. },
  552. {
  553. title:'作废发票申请时间',
  554. align:"center",
  555. dataIndex: 'sqsj',
  556. customRender:function (text) {
  557. return !text?"":(text.length>10?text.substr(0,10):text)
  558. }
  559. },
  560. {
  561. title:'作废单号',
  562. align:"center",
  563. dataIndex: 'zfdh'
  564. },
  565. {
  566. title: '操作',
  567. dataIndex: 'action',
  568. align:"center",
  569. fixed:"right",
  570. width:147,
  571. scopedSlots: { customRender: 'action' }
  572. }
  573. ],
  574. url: {
  575. list: "/xmcbDetail/comContractInfoExchange/list",
  576. delete: "/xmcbDetail/comContractInfoExchange/delete",
  577. deleteBatch: "/xmcbDetail/comContractInfoExchange/deleteBatch",
  578. exportXlsUrl: "/xmcbDetail/comContractInfoExchange/exportXls",
  579. importExcelUrl: "xmcbDetail/comContractInfoExchange/importExcel",
  580. },
  581. dictOptions:{},
  582. superFieldList:[],
  583. }
  584. },
  585. created() {
  586. this.getSuperFieldList();
  587. },
  588. computed: {
  589. importExcelUrl: function(){
  590. return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`;
  591. },
  592. },
  593. methods: {
  594. initDictConfig(){
  595. },
  596. getSuperFieldList(){
  597. let fieldList=[];
  598. fieldList.push({type:'string',value:'bz',text:'备注.',dictCode:''})
  599. fieldList.push({type:'string',value:'bh',text:'编号.',dictCode:''})
  600. fieldList.push({type:'string',value:'bm',text:'部门(合同付款).',dictCode:''})
  601. fieldList.push({type:'string',value:'cpxh',text:'产品型号.',dictCode:''})
  602. fieldList.push({type:'BigDecimal',value:'dfk',text:'待付款(元).',dictCode:''})
  603. fieldList.push({type:'BigDecimal',value:'dkp',text:'待开票(元).',dictCode:''})
  604. fieldList.push({type:'BigDecimal',value:'dk',text:'到款(元).',dictCode:''})
  605. fieldList.push({type:'date',value:'dkhpdqrq',text:'到款日期/汇票到期日期.'})
  606. fieldList.push({type:'string',value:'dh',text:'电话.',dictCode:''})
  607. fieldList.push({type:'string',value:'fpbh',text:'发票编号(sn).',dictCode:''})
  608. fieldList.push({type:'string',value:'fpbm',text:'发票编码.',dictCode:''})
  609. fieldList.push({type:'BigDecimal',value:'fpkje',text:'发票开具额.',dictCode:''})
  610. fieldList.push({type:'string',value:'fplx',text:'发票类型.',dictCode:''})
  611. fieldList.push({type:'string',value:'fpnr',text:'发票内容.',dictCode:''})
  612. fieldList.push({type:'string',value:'fkfmc',text:'付款方名称.',dictCode:''})
  613. fieldList.push({type:'date',value:'gxsj',text:'更新时间.'})
  614. fieldList.push({type:'string',value:'gdbh',text:'归档编号.',dictCode:''})
  615. fieldList.push({type:'date',value:'gdrq',text:'归档日期.'})
  616. fieldList.push({type:'string',value:'htbh',text:'合同编号.',dictCode:''})
  617. fieldList.push({type:'string',value:'htfpjsyxdz',text:'合同发票接收邮箱地址.',dictCode:''})
  618. fieldList.push({type:'BigDecimal',value:'htfpe',text:'合同分配额.',dictCode:''})
  619. fieldList.push({type:'BigDecimal',value:'htje',text:'合同金额.',dictCode:''})
  620. fieldList.push({type:'string',value:'htkzt',text:'合同款状态.',dictCode:''})
  621. fieldList.push({type:'string',value:'htlx',text:'合同类型.',dictCode:''})
  622. fieldList.push({type:'string',value:'htlxqk',text:'合同履行情况.',dictCode:''})
  623. fieldList.push({type:'string',value:'htmj',text:'合同密级.',dictCode:''})
  624. fieldList.push({type:'string',value:'htmc',text:'合同名称.',dictCode:''})
  625. fieldList.push({type:'string',value:'htqcr',text:'合同起草人.',dictCode:''})
  626. fieldList.push({type:'date',value:'htqdrq',text:'合同签订日期.'})
  627. fieldList.push({type:'string',value:'htrwid',text:'合同任务id.',dictCode:''})
  628. fieldList.push({type:'int',value:'htsl',text:'合同数量.',dictCode:''})
  629. fieldList.push({type:'int',value:'htys',text:'合同页数.',dictCode:''})
  630. fieldList.push({type:'string',value:'htzgbm',text:'合同主管部门.',dictCode:''})
  631. fieldList.push({type:'string',value:'htzt',text:'合同状态.',dictCode:''})
  632. fieldList.push({type:'string',value:'htztsm',text:'合同状态说明.',dictCode:''})
  633. fieldList.push({type:'string',value:'jf',text:'甲方(付款方).',dictCode:''})
  634. fieldList.push({type:'string',value:'jfyhjc',text:'甲方简称、用户简称.',dictCode:''})
  635. fieldList.push({type:'string',value:'jfqyr',text:'甲方签约人.',dictCode:''})
  636. fieldList.push({type:'string',value:'jd',text:'阶段.',dictCode:''})
  637. fieldList.push({type:'BigDecimal',value:'jeskzkp',text:'金额(元)、收款总金额、开票金额.',dictCode:''})
  638. fieldList.push({type:'string',value:'khx',text:'开户行.',dictCode:''})
  639. fieldList.push({type:'date',value:'kpsj',text:'开票时间.'})
  640. fieldList.push({type:'string',value:'kpzt',text:'开票状态.',dictCode:''})
  641. fieldList.push({type:'string',value:'khid',text:'客户id.',dictCode:''})
  642. fieldList.push({type:'string',value:'khlcbh',text:'客户流程编号.',dictCode:''})
  643. fieldList.push({type:'string',value:'lxr',text:'联系人(对方).',dictCode:''})
  644. fieldList.push({type:'string',value:'lrsqr',text:'录入人、申请人.',dictCode:''})
  645. fieldList.push({type:'string',value:'pzh',text:'凭证号.',dictCode:''})
  646. fieldList.push({type:'date',value:'qclrsqrq',text:'起草日期、录入日期、申请日期.'})
  647. fieldList.push({type:'date',value:'qsrq',text:'签署日期.'})
  648. fieldList.push({type:'string',value:'qrwx',text:'确认外协.',dictCode:''})
  649. fieldList.push({type:'string',value:'rwbh',text:'任务编号.',dictCode:''})
  650. fieldList.push({type:'string',value:'rwmc',text:'任务名称.',dictCode:''})
  651. fieldList.push({type:'BigDecimal',value:'rwskje',text:'任务收款金额.',dictCode:''})
  652. fieldList.push({type:'string',value:'sqrbm',text:'申请人部门.',dictCode:''})
  653. fieldList.push({type:'string',value:'skbh',text:'收款编号(sn).',dictCode:''})
  654. fieldList.push({type:'string',value:'skkmdm',text:'收款科目代码.',dictCode:''})
  655. fieldList.push({type:'string',value:'sklx',text:'收款类型.',dictCode:''})
  656. fieldList.push({type:'int',value:'sjly',text:'数据来源:10:合同管理,20:合同任务,30:任务合同,40:合同付款,50:合同发票,60:外协合同.',dictCode:''})
  657. fieldList.push({type:'int',value:'sl',text:'数量(合同付款).',dictCode:''})
  658. fieldList.push({type:'string',value:'sh',text:'税号.',dictCode:''})
  659. fieldList.push({type:'string',value:'ssxh',text:'所属型号.',dictCode:''})
  660. fieldList.push({type:'string',value:'wxdh',text:'外协单号(sn).',dictCode:''})
  661. fieldList.push({type:'string',value:'wxhtbh',text:'外协合同编号.',dictCode:''})
  662. fieldList.push({type:'string',value:'wxlx',text:'外协类型.',dictCode:''})
  663. fieldList.push({type:'string',value:'xmmj',text:'项目密级.',dictCode:''})
  664. fieldList.push({type:'date',value:'fpxqsj',text:'发票需求时间.'})
  665. fieldList.push({type:'string',value:'xh',text:'序号.',dictCode:''})
  666. fieldList.push({type:'string',value:'yzbm',text:'研制部门.',dictCode:''})
  667. fieldList.push({type:'string',value:'ywy',text:'业务员.',dictCode:''})
  668. fieldList.push({type:'string',value:'ywybm',text:'业务员部门.',dictCode:''})
  669. fieldList.push({type:'string',value:'yf',text:'乙方(收款方).',dictCode:''})
  670. fieldList.push({type:'string',value:'yfqyr',text:'乙方签约人.',dictCode:''})
  671. fieldList.push({type:'BigDecimal',value:'ykp',text:'已开票(元).',dictCode:''})
  672. fieldList.push({type:'BigDecimal',value:'ysk',text:'已收款.',dictCode:''})
  673. fieldList.push({type:'string',value:'yhid',text:'用户id.',dictCode:''})
  674. fieldList.push({type:'string',value:'yhjc',text:'用户简称.',dictCode:''})
  675. fieldList.push({type:'string',value:'yhmc',text:'用户名称.',dictCode:''})
  676. fieldList.push({type:'string',value:'zh',text:'账号.',dictCode:''})
  677. fieldList.push({type:'string',value:'zxzt',text:'执行状态(status).',dictCode:''})
  678. fieldList.push({type:'string',value:'zgsjs',text:'主管设计师.',dictCode:''})
  679. fieldList.push({type:'string',value:'zzbm',text:'抓总部门.',dictCode:''})
  680. fieldList.push({type:'BigDecimal',value:'zc',text:'自筹(元).',dictCode:''})
  681. fieldList.push({type:'string',value:'pici',text:'类型(无用).',dictCode:''})
  682. fieldList.push({type:'date',value:'sqsj',text:'作废发票申请时间'})
  683. fieldList.push({type:'string',value:'zfdh',text:'作废单号',dictCode:''})
  684. this.superFieldList = fieldList
  685. }
  686. }
  687. }
  688. </script>
  689. <style scoped>
  690. @import '~@assets/less/common.less';
  691. </style>