index.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413
  1. <template>
  2. <div class="app-container">
  3. <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="170px">
  4. <el-form-item label="单据编号" prop="orderNumber">
  5. <el-input
  6. v-model="queryParams.orderNumber"
  7. placeholder="请输入单据编号"
  8. clearable
  9. @keyup.enter.native="handleQuery"
  10. />
  11. </el-form-item>
  12. <el-form-item label="资产编号" prop="assetNumber">
  13. <el-input
  14. v-model="queryParams.assetNumber"
  15. placeholder="请输入资产编号"
  16. clearable
  17. @keyup.enter.native="handleQuery"
  18. />
  19. </el-form-item>
  20. <el-form-item label="【调拨】旧管理人" prop="allocationOldResponsiblePerson">
  21. <el-input
  22. v-model="queryParams.allocationOldResponsiblePerson"
  23. placeholder="请输入【调拨】旧管理人"
  24. clearable
  25. @keyup.enter.native="handleQuery"
  26. />
  27. </el-form-item>
  28. <el-form-item label="【调拨】旧功能位置编号" prop="allocationOldLocationNumber">
  29. <el-input
  30. v-model="queryParams.allocationOldLocationNumber"
  31. placeholder="请输入【调拨】旧功能位置编号"
  32. clearable
  33. @keyup.enter.native="handleQuery"
  34. />
  35. </el-form-item>
  36. <el-form-item label="【调拨】新管理人" prop="allocationNewResponsiblePerson">
  37. <el-input
  38. v-model="queryParams.allocationNewResponsiblePerson"
  39. placeholder="请输入【调拨】新管理人"
  40. clearable
  41. @keyup.enter.native="handleQuery"
  42. />
  43. </el-form-item>
  44. <el-form-item label="【调拨】新功能位置编号" prop="allocationNewLocationNumber">
  45. <el-input
  46. v-model="queryParams.allocationNewLocationNumber"
  47. placeholder="请输入【调拨】新功能位置编号"
  48. clearable
  49. @keyup.enter.native="handleQuery"
  50. />
  51. </el-form-item>
  52. <el-form-item label="【借出】预计归还时间" prop="lendReturnDate">
  53. <el-date-picker clearable
  54. v-model="queryParams.lendReturnDate"
  55. type="date"
  56. value-format="yyyy-MM-dd"
  57. placeholder="请选择【借出】预计归还时间">
  58. </el-date-picker>
  59. </el-form-item>
  60. <el-form-item label="【借出】实际归还时间" prop="lendActualReturnDate">
  61. <el-date-picker clearable
  62. v-model="queryParams.lendActualReturnDate"
  63. type="date"
  64. value-format="yyyy-MM-dd"
  65. placeholder="请选择【借出】实际归还时间">
  66. </el-date-picker>
  67. </el-form-item>
  68. <el-form-item label="【借出】归还经手人" prop="lendBySponsor">
  69. <el-input
  70. v-model="queryParams.lendBySponsor"
  71. placeholder="请输入【借出】归还经手人"
  72. clearable
  73. @keyup.enter.native="handleQuery"
  74. />
  75. </el-form-item>
  76. <el-form-item>
  77. <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
  78. <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
  79. </el-form-item>
  80. </el-form>
  81. <el-row :gutter="10" class="mb8">
  82. <el-col :span="1.5">
  83. <el-button
  84. type="primary"
  85. plain
  86. icon="el-icon-plus"
  87. size="mini"
  88. @click="handleAdd"
  89. v-hasPermi="['order:detail:add']"
  90. >新增</el-button>
  91. </el-col>
  92. <el-col :span="1.5">
  93. <el-button
  94. type="success"
  95. plain
  96. icon="el-icon-edit"
  97. size="mini"
  98. :disabled="single"
  99. @click="handleUpdate"
  100. v-hasPermi="['order:detail:edit']"
  101. >修改</el-button>
  102. </el-col>
  103. <el-col :span="1.5">
  104. <el-button
  105. type="danger"
  106. plain
  107. icon="el-icon-delete"
  108. size="mini"
  109. :disabled="multiple"
  110. @click="handleDelete"
  111. v-hasPermi="['order:detail:remove']"
  112. >删除</el-button>
  113. </el-col>
  114. <el-col :span="1.5">
  115. <el-button
  116. type="warning"
  117. plain
  118. icon="el-icon-download"
  119. size="mini"
  120. @click="handleExport"
  121. v-hasPermi="['order:detail:export']"
  122. >导出</el-button>
  123. </el-col>
  124. <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
  125. </el-row>
  126. <el-table v-loading="loading" :data="detailList" @selection-change="handleSelectionChange">
  127. <el-table-column type="selection" width="55" align="center" />
  128. <el-table-column label="编号" align="center" prop="id" />
  129. <el-table-column label="单据编号" align="center" prop="orderNumber" />
  130. <el-table-column label="资产编号" align="center" prop="assetNumber" />
  131. <el-table-column label="【调拨】旧管理人" align="center" prop="allocationOldResponsiblePerson" />
  132. <el-table-column label="【调拨】旧功能位置编号" align="center" prop="allocationOldLocationNumber" />
  133. <el-table-column label="【调拨】新管理人" align="center" prop="allocationNewResponsiblePerson" />
  134. <el-table-column label="【调拨】新功能位置编号" align="center" prop="allocationNewLocationNumber" />
  135. <el-table-column label="【借出】预计归还时间" align="center" prop="lendReturnDate" width="180">
  136. <template slot-scope="scope">
  137. <span>{{ parseTime(scope.row.lendReturnDate, '{y}-{m}-{d}') }}</span>
  138. </template>
  139. </el-table-column>
  140. <el-table-column label="【借出】实际归还时间" align="center" prop="lendActualReturnDate" width="180">
  141. <template slot-scope="scope">
  142. <span>{{ parseTime(scope.row.lendActualReturnDate, '{y}-{m}-{d}') }}</span>
  143. </template>
  144. </el-table-column>
  145. <el-table-column label="【借出】归还经手人" align="center" prop="lendBySponsor" />
  146. <el-table-column label="备注" align="center" prop="remark" />
  147. <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
  148. <template slot-scope="scope">
  149. <el-button
  150. size="mini"
  151. type="text"
  152. icon="el-icon-edit"
  153. @click="handleUpdate(scope.row)"
  154. v-hasPermi="['order:detail:edit']"
  155. >修改</el-button>
  156. <el-button
  157. size="mini"
  158. type="text"
  159. icon="el-icon-delete"
  160. @click="handleDelete(scope.row)"
  161. v-hasPermi="['order:detail:remove']"
  162. >删除</el-button>
  163. </template>
  164. </el-table-column>
  165. </el-table>
  166. <pagination
  167. v-show="total>0"
  168. :total="total"
  169. :page.sync="queryParams.pageNum"
  170. :limit.sync="queryParams.pageSize"
  171. @pagination="getList"
  172. />
  173. <!-- 添加或修改单据明细对话框 -->
  174. <el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
  175. <el-form ref="form" :model="form" :rules="rules" label-width="80px">
  176. <el-form-item label="单据编号" prop="orderNumber">
  177. <el-input v-model="form.orderNumber" placeholder="请输入单据编号" />
  178. </el-form-item>
  179. <el-form-item label="资产编号" prop="assetNumber">
  180. <el-input v-model="form.assetNumber" placeholder="请输入资产编号" />
  181. </el-form-item>
  182. <el-form-item v-if="orderInfo.orderType === '2'" label="【调拨】旧管理人" prop="allocationOldResponsiblePerson">
  183. <el-input v-model="form.allocationOldResponsiblePerson" placeholder="请输入【调拨】旧管理人" />
  184. </el-form-item>
  185. <el-form-item v-if="orderInfo.orderType === '2'" label="【调拨】旧功能位置编号" prop="allocationOldLocationNumber">
  186. <el-input v-model="form.allocationOldLocationNumber" placeholder="请输入【调拨】旧功能位置编号" />
  187. </el-form-item>
  188. <el-form-item v-if="orderInfo.orderType === '2'" label="【调拨】新管理人" prop="allocationNewResponsiblePerson">
  189. <el-input v-model="form.allocationNewResponsiblePerson" placeholder="请输入【调拨】新管理人" />
  190. </el-form-item>
  191. <el-form-item v-if="orderInfo.orderType === '2'" label="【调拨】新功能位置编号" prop="allocationNewLocationNumber">
  192. <el-input v-model="form.allocationNewLocationNumber" placeholder="请输入【调拨】新功能位置编号" />
  193. </el-form-item>
  194. <el-form-item label="【借出】预计归还时间" prop="lendReturnDate">
  195. <el-date-picker clearable
  196. v-model="form.lendReturnDate"
  197. type="date"
  198. value-format="yyyy-MM-dd"
  199. placeholder="请选择【借出】预计归还时间">
  200. </el-date-picker>
  201. </el-form-item>
  202. <el-form-item label="【借出】实际归还时间" prop="lendActualReturnDate">
  203. <el-date-picker clearable
  204. v-model="form.lendActualReturnDate"
  205. type="date"
  206. value-format="yyyy-MM-dd"
  207. placeholder="请选择【借出】实际归还时间">
  208. </el-date-picker>
  209. </el-form-item>
  210. <el-form-item label="【借出】归还经手人" prop="lendBySponsor">
  211. <el-input v-model="form.lendBySponsor" placeholder="请输入【借出】归还经手人" />
  212. </el-form-item>
  213. <el-form-item label="备注" prop="remark">
  214. <el-input v-model="form.remark" placeholder="请输入备注" />
  215. </el-form-item>
  216. </el-form>
  217. <div slot="footer" class="dialog-footer">
  218. <el-button type="primary" @click="submitForm">确 定</el-button>
  219. <el-button @click="cancel">取 消</el-button>
  220. </div>
  221. </el-dialog>
  222. </div>
  223. </template>
  224. <script>
  225. import { listDetail, getDetail, delDetail, addDetail, updateDetail } from "@/api/order/detail";
  226. export default {
  227. name: "Detail",
  228. props: {
  229. orderInfo: {
  230. type: Object,
  231. default: {
  232. id: null,
  233. orderNumber: null,
  234. orderType: null,
  235. applicationDate: null,
  236. applicationDepartment: null,
  237. adjustmentAssetNumber: null,
  238. allocationCallOutDepartment: null,
  239. allocationCallOutBy: null,
  240. allocationCallOutDate: null,
  241. allocationCallInDepartment: null,
  242. allocationCallInBy: null,
  243. allocationCallInDate: null,
  244. lendDepartment: null,
  245. lendBySponsor: null,
  246. lendPassingUnit: null,
  247. reason: null,
  248. preparedBy: null,
  249. preparedDepartment: null,
  250. corporation: null,
  251. recordStatus: null
  252. }
  253. }
  254. },
  255. data() {
  256. return {
  257. // 遮罩层
  258. loading: true,
  259. // 选中数组
  260. ids: [],
  261. // 非单个禁用
  262. single: true,
  263. // 非多个禁用
  264. multiple: true,
  265. // 显示搜索条件
  266. showSearch: true,
  267. // 总条数
  268. total: 0,
  269. // 单据明细表格数据
  270. detailList: [],
  271. // 弹出层标题
  272. title: "",
  273. // 是否显示弹出层
  274. open: false,
  275. // 查询参数
  276. queryParams: {
  277. pageNum: 1,
  278. pageSize: 10,
  279. orderNumber: null,
  280. assetNumber: null,
  281. allocationOldResponsiblePerson: null,
  282. allocationOldLocationNumber: null,
  283. allocationNewResponsiblePerson: null,
  284. allocationNewLocationNumber: null,
  285. lendReturnDate: null,
  286. lendActualReturnDate: null,
  287. lendBySponsor: null,
  288. },
  289. // 表单参数
  290. form: {},
  291. // 表单校验
  292. rules: {
  293. orderNumber: [
  294. { required: true, message: "单据编号不能为空", trigger: "blur" }
  295. ],
  296. assetNumber: [
  297. { required: true, message: "资产编号不能为空", trigger: "blur" }
  298. ],
  299. }
  300. };
  301. },
  302. created() {
  303. this.getList();
  304. },
  305. methods: {
  306. /** 查询单据明细列表 */
  307. getList() {
  308. this.loading = true;
  309. listDetail(this.queryParams).then(response => {
  310. this.detailList = response.rows;
  311. this.total = response.total;
  312. this.loading = false;
  313. });
  314. },
  315. // 取消按钮
  316. cancel() {
  317. this.open = false;
  318. this.reset();
  319. },
  320. // 表单重置
  321. reset() {
  322. this.form = {
  323. id: null,
  324. orderNumber: null,
  325. assetNumber: null,
  326. allocationOldResponsiblePerson: null,
  327. allocationOldLocationNumber: null,
  328. allocationNewResponsiblePerson: null,
  329. allocationNewLocationNumber: null,
  330. lendReturnDate: null,
  331. lendActualReturnDate: null,
  332. lendBySponsor: null,
  333. remark: null
  334. };
  335. this.resetForm("form");
  336. },
  337. /** 搜索按钮操作 */
  338. handleQuery() {
  339. this.queryParams.pageNum = 1;
  340. this.getList();
  341. },
  342. /** 重置按钮操作 */
  343. resetQuery() {
  344. this.resetForm("queryForm");
  345. this.handleQuery();
  346. },
  347. // 多选框选中数据
  348. handleSelectionChange(selection) {
  349. this.ids = selection.map(item => item.id)
  350. this.single = selection.length!==1
  351. this.multiple = !selection.length
  352. },
  353. /** 新增按钮操作 */
  354. handleAdd() {
  355. this.reset();
  356. this.open = true;
  357. this.title = "添加单据明细";
  358. },
  359. /** 修改按钮操作 */
  360. handleUpdate(row) {
  361. this.reset();
  362. const id = row.id || this.ids
  363. getDetail(id).then(response => {
  364. this.form = response.data;
  365. this.open = true;
  366. this.title = "修改单据明细";
  367. });
  368. },
  369. /** 提交按钮 */
  370. submitForm() {
  371. this.$refs["form"].validate(valid => {
  372. if (valid) {
  373. if (this.form.id != null) {
  374. updateDetail(this.form).then(response => {
  375. this.$modal.msgSuccess("修改成功");
  376. this.open = false;
  377. this.getList();
  378. });
  379. } else {
  380. addDetail(this.form).then(response => {
  381. this.$modal.msgSuccess("新增成功");
  382. this.open = false;
  383. this.getList();
  384. });
  385. }
  386. }
  387. });
  388. },
  389. /** 删除按钮操作 */
  390. handleDelete(row) {
  391. const ids = row.id || this.ids;
  392. this.$modal.confirm('是否确认删除单据明细编号为"' + ids + '"的数据项?').then(function() {
  393. return delDetail(ids);
  394. }).then(() => {
  395. this.getList();
  396. this.$modal.msgSuccess("删除成功");
  397. }).catch(() => {});
  398. },
  399. /** 导出按钮操作 */
  400. handleExport() {
  401. this.download('order/detail/export', {
  402. ...this.queryParams
  403. }, `detail_${new Date().getTime()}.xlsx`)
  404. }
  405. }
  406. };
  407. </script>