index.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736
  1. <template>
  2. <div class="app-container">
  3. <el-form
  4. :model="queryParams"
  5. ref="queryForm"
  6. :inline="true"
  7. v-show="showSearch"
  8. label-width="68px"
  9. >
  10. <el-form-item prop="durgArchivesId">
  11. <el-input
  12. v-model="queryParams.durgArchivesId"
  13. placeholder="请输入防疫品名称"
  14. clearable
  15. size="small"
  16. @input="handleQuery"
  17. />
  18. </el-form-item>
  19. <!-- <el-form-item label="入库数量" prop="putIn">
  20. <el-input
  21. v-model="queryParams.putIn"
  22. placeholder="请输入入库数量"
  23. clearable
  24. size="small"
  25. @keyup.enter.native="handleQuery"
  26. />
  27. </el-form-item>
  28. <el-form-item label="入库位置" prop="place">
  29. <el-input
  30. v-model="queryParams.place"
  31. placeholder="请输入入库位置"
  32. clearable
  33. size="small"
  34. @keyup.enter.native="handleQuery"
  35. />
  36. </el-form-item>
  37. <el-form-item label="入库时间" prop="putTime">
  38. <el-date-picker clearable size="small"
  39. v-model="queryParams.putTime"
  40. type="date"
  41. value-format="yyyy-MM-dd"
  42. placeholder="选择入库时间">
  43. </el-date-picker>
  44. </el-form-item>
  45. <el-form-item label="录入人(创建人)" prop="adminId">
  46. <el-input
  47. v-model="queryParams.adminId"
  48. placeholder="请输入录入人(创建人)"
  49. clearable
  50. size="small"
  51. @keyup.enter.native="handleQuery"
  52. />
  53. </el-form-item>
  54. <el-form-item label="录入时间" prop="createtime">
  55. <el-input
  56. v-model="queryParams.createtime"
  57. placeholder="请输入录入时间"
  58. clearable
  59. size="small"
  60. @keyup.enter.native="handleQuery"
  61. />
  62. </el-form-item>
  63. <el-form-item label="更新时间" prop="updatetime">
  64. <el-input
  65. v-model="queryParams.updatetime"
  66. placeholder="请输入更新时间"
  67. clearable
  68. size="small"
  69. @keyup.enter.native="handleQuery"
  70. />
  71. </el-form-item>
  72. <el-form-item label="品牌" prop="durgBrand">
  73. <el-input
  74. v-model="queryParams.durgBrand"
  75. placeholder="请输入品牌"
  76. clearable
  77. size="small"
  78. @keyup.enter.native="handleQuery"
  79. />
  80. </el-form-item>
  81. <el-form-item label="规格" prop="specifications">
  82. <el-input
  83. v-model="queryParams.specifications"
  84. placeholder="请输入规格"
  85. clearable
  86. size="small"
  87. @keyup.enter.native="handleQuery"
  88. />
  89. </el-form-item>
  90. <el-form-item label="规格" prop="unitId">
  91. <el-input
  92. v-model="queryParams.unitId"
  93. placeholder="请输入规格"
  94. clearable
  95. size="small"
  96. @keyup.enter.native="handleQuery"
  97. />
  98. </el-form-item>
  99. <el-form-item label="规格" prop="storeHouse">
  100. <el-input
  101. v-model="queryParams.storeHouse"
  102. placeholder="请输入规格"
  103. clearable
  104. size="small"
  105. @keyup.enter.native="handleQuery"
  106. />
  107. </el-form-item> -->
  108. <el-form-item>
  109. <!-- <el-button type="primary" size="btn" @click="handleQuery"
  110. >搜索</el-button
  111. > -->
  112. <el-button size="btr" @click="resetQuery">重置</el-button>
  113. </el-form-item>
  114. </el-form>
  115. <el-row :gutter="10" class="mb8">
  116. <el-col :span="1.5">
  117. <el-button
  118. type="primary"
  119. plain
  120. icon="el-icon-plus"
  121. size="mini"
  122. @click="handleAdd"
  123. v-hasPermi="['medicalhealth:antiepidemicputin:add']"
  124. >新增</el-button
  125. >
  126. </el-col>
  127. <el-col :span="1.5">
  128. <el-button
  129. type="success"
  130. plain
  131. icon="el-icon-edit"
  132. size="mini"
  133. :disabled="single"
  134. @click="handleUpdate"
  135. v-hasPermi="['medicalhealth:antiepidemicputin:edit']"
  136. >修改</el-button
  137. >
  138. </el-col>
  139. <el-col :span="1.5">
  140. <el-button
  141. type="danger"
  142. plain
  143. icon="el-icon-delete"
  144. size="mini"
  145. :disabled="multiple"
  146. @click="handleDelete"
  147. v-hasPermi="['medicalhealth:antiepidemicputin:remove']"
  148. >删除</el-button
  149. >
  150. </el-col>
  151. <!-- <el-col :span="1.5">
  152. <el-button
  153. type="warning"
  154. plain
  155. icon="el-icon-download"
  156. size="mini"
  157. :loading="exportLoading"
  158. @click="handleExport"
  159. v-hasPermi="['medicalhealth:antiepidemicputin:export']"
  160. >导出</el-button
  161. >
  162. </el-col> -->
  163. <!-- <right-toolbar
  164. :showSearch.sync="showSearch"
  165. @queryTable="getList"
  166. ></right-toolbar> -->
  167. </el-row>
  168. <el-table
  169. v-loading="loading"
  170. :data="antiepidemicputinList"
  171. @selection-change="handleSelectionChange"
  172. :header-cell-style="{ background: '#003C69', color: 'white' }"
  173. >
  174. <el-table-column type="selection" width="55" align="center" />
  175. <el-table-column label="序号" align="center">
  176. <template scope="scope">
  177. <span>{{
  178. (queryParams.pageNum - 1) * queryParams.pageSize + scope.$index + 1
  179. }}</span>
  180. </template>
  181. </el-table-column>
  182. <el-table-column label="防疫品名称" align="center" prop="durgName" />
  183. <el-table-column label="品牌" align="center" prop="durgBrand" />
  184. <el-table-column label="规格" align="center" prop="specifications" />
  185. <el-table-column label="库房" align="center" prop="storeHouse">
  186. <template slot-scope="scope">
  187. <dict-tag
  188. :options="dict.type.storage_room"
  189. :value="scope.row.storeHouse"
  190. />
  191. </template>
  192. </el-table-column>
  193. <el-table-column label="单位" align="center" prop="unitName" />
  194. <el-table-column label="入库数量" align="center" prop="putIn" />
  195. <el-table-column label="入库位置" align="center" prop="place" />
  196. <el-table-column
  197. label="入库时间"
  198. align="center"
  199. prop="putTime"
  200. width="140"
  201. >
  202. <template slot-scope="scope">
  203. <span>{{ parseTime(scope.row.putTime, "{y}-{m}-{d}") }}</span>
  204. </template>
  205. </el-table-column>
  206. <el-table-column
  207. label="过期时间"
  208. align="center"
  209. prop="expirationTime"
  210. width="140"
  211. >
  212. <template slot-scope="scope">
  213. <span>{{ parseTime(scope.row.expirationTime, "{y}-{m}-{d}") }}</span>
  214. </template>
  215. </el-table-column>
  216. <el-table-column label="剩余库存" align="center" prop="surplus" />
  217. <!-- <el-table-column label="录入时间" align="center" prop="createtime" />
  218. <el-table-column label="更新时间" align="center" prop="updatetime" />
  219. <el-table-column label="规格" align="center" prop="unitId" />
  220. <el-table-column label="规格" align="center" prop="storeHouse" /> -->
  221. <!-- <el-table-column
  222. label="操作"
  223. align="center"
  224. class-name="small-padding fixed-width"
  225. >
  226. <template slot-scope="scope">
  227. <el-button
  228. size="mini"
  229. type="text"
  230. icon="el-icon-edit"
  231. @click="handleUpdate(scope.row)"
  232. v-hasPermi="['medicalhealth:antiepidemicputin:edit']"
  233. >修改</el-button
  234. >
  235. <el-button
  236. size="mini"
  237. type="text"
  238. icon="el-icon-delete"
  239. @click="handleDelete(scope.row)"
  240. v-hasPermi="['medicalhealth:antiepidemicputin:remove']"
  241. >删除</el-button
  242. >
  243. </template>
  244. </el-table-column> -->
  245. </el-table>
  246. <pagination
  247. v-show="total > 0"
  248. :total="total"
  249. :page.sync="queryParams.pageNum"
  250. :limit.sync="queryParams.pageSize"
  251. @pagination="getList"
  252. />
  253. <!-- 添加或修改防疫用品入库登记对话框 -->
  254. <el-dialog
  255. :title="title"
  256. :visible.sync="open"
  257. width="800px"
  258. append-to-body
  259. :close-on-click-modal="false"
  260. >
  261. <el-form
  262. ref="form"
  263. :model="form"
  264. :rules="rules"
  265. label-width="80px"
  266. inline
  267. >
  268. <el-form-item label="防疫品名称" prop="durgArchivesId">
  269. <el-select
  270. v-model="form.durgName"
  271. placeholder="请选择防疫品名称"
  272. filterable
  273. >
  274. <el-option
  275. v-for="(item, i) in fangYi"
  276. :key="i"
  277. :value="item.durgName"
  278. :label="item.name"
  279. @click.native="fangYiPingXuan(item)"
  280. >
  281. </el-option>
  282. </el-select>
  283. </el-form-item>
  284. <el-form-item label="入库编号" prop="number">
  285. <el-input v-model="form.putNumber" placeholder="请输入入库编号" />
  286. </el-form-item>
  287. <el-form-item label="入库数量" prop="putIn">
  288. <el-input v-model="form.putIn" placeholder="请输入入库数量" />
  289. </el-form-item>
  290. <el-form-item label="入库位置" prop="place">
  291. <el-input v-model="form.place" placeholder="请输入入库位置" />
  292. </el-form-item>
  293. <el-form-item label="入库时间" prop="putTime">
  294. <el-date-picker
  295. clearable
  296. size="small"
  297. v-model="form.putTime"
  298. type="date"
  299. value-format="yyyy-MM-dd"
  300. placeholder="选择入库时间"
  301. >
  302. </el-date-picker>
  303. </el-form-item>
  304. <el-form-item label="过期日期" prop="expirationTime">
  305. <el-date-picker
  306. clearable
  307. size="small"
  308. v-model="form.expirationTime"
  309. type="date"
  310. value-format="yyyy-MM-dd"
  311. placeholder="选择过期日期"
  312. >
  313. </el-date-picker>
  314. </el-form-item>
  315. <div class="jiben">备注</div>
  316. <el-form-item prop="beizhu">
  317. <el-input
  318. v-model="form.beizhu"
  319. type="textarea"
  320. placeholder="请输入内容"
  321. />
  322. </el-form-item>
  323. <!-- <el-form-item label="录入人(创建人)" prop="adminId">
  324. <el-input v-model="form.adminId" placeholder="请输入录入人(创建人)" />
  325. </el-form-item>
  326. <el-form-item label="品牌" prop="durgBrand">
  327. <el-input v-model="form.durgBrand" placeholder="请输入品牌" />
  328. </el-form-item>
  329. <el-form-item label="规格" prop="specifications">
  330. <el-input v-model="form.specifications" placeholder="请输入规格" />
  331. </el-form-item>
  332. <el-form-item label="规格" prop="unitId">
  333. <el-input v-model="form.unitId" placeholder="请输入规格" />
  334. </el-form-item>
  335. <el-form-item label="规格" prop="storeHouse">
  336. <el-input v-model="form.storeHouse" placeholder="请输入规格" />
  337. </el-form-item> -->
  338. </el-form>
  339. <div slot="footer" class="dialog-footer">
  340. <el-button type="primary" @click="submitForm">确 定</el-button>
  341. <el-button @click="cancel" size="btn">取 消</el-button>
  342. </div>
  343. </el-dialog>
  344. </div>
  345. </template>
  346. <script>
  347. import {
  348. listAntiepidemicputin,
  349. getAntiepidemicputin,
  350. delAntiepidemicputin,
  351. addAntiepidemicputin,
  352. updateAntiepidemicputin,
  353. exportAntiepidemicputin,
  354. exportAntiepidemiFangYi,
  355. } from "@/api/medicalhealth/antiepidemicputin";
  356. export default {
  357. name: "Antiepidemicputin",
  358. dicts: ["storage_room"],
  359. data() {
  360. return {
  361. // 遮罩层
  362. loading: true,
  363. // 导出遮罩层
  364. exportLoading: false,
  365. // 选中数组
  366. ids: [],
  367. // 非单个禁用
  368. single: true,
  369. // 非多个禁用
  370. multiple: true,
  371. // 显示搜索条件
  372. showSearch: true,
  373. // 总条数
  374. total: 0,
  375. // 防疫用品入库登记表格数据
  376. antiepidemicputinList: [],
  377. // 弹出层标题
  378. title: "",
  379. // 是否显示弹出层
  380. open: false,
  381. // 查询参数
  382. queryParams: {
  383. pageNum: 1,
  384. pageSize: 10,
  385. durgArchivesId: null,
  386. putIn: null,
  387. place: null,
  388. putTime: null,
  389. adminId: null,
  390. createtime: null,
  391. updatetime: null,
  392. durgBrand: null,
  393. specifications: null,
  394. unitId: null,
  395. storeHouse: null,
  396. putNumber: null,
  397. beizhu: null,
  398. durgName: null,
  399. source: null,
  400. expirationTime: null,
  401. },
  402. // 表单参数
  403. form: {},
  404. // 表单校验
  405. rules: {},
  406. // 防疫品名称
  407. fangYi: [],
  408. };
  409. },
  410. created() {
  411. this.getList();
  412. },
  413. methods: {
  414. // 编号
  415. planName() {
  416. let date = new Date();
  417. let year = date.getFullYear();
  418. let month =
  419. date.getMonth() + 1 <= 9
  420. ? "0" + (date.getMonth() + 1)
  421. : date.getMonth() + 1;
  422. let day = date.getDate();
  423. let hour = date.getHours() <= 9 ? "0" + date.getHours() : date.getHours();
  424. let minute =
  425. date.getMinutes <= 9 ? "0" + date.getMinutes() : date.getMinutes();
  426. this.form.putNumber = year + month + day + hour + minute;
  427. },
  428. // 选择防疫品
  429. fangYiPingXuan(data) {
  430. this.planName();
  431. this.form.unitId = data.unitId;
  432. this.form.durgArchivesId = data.id;
  433. this.form.durgBrand = data.durgBrand;
  434. this.form.specifications = data.specifications;
  435. this.form.storeHouse = data.storeHouse;
  436. this.form.unitName = data.unitName;
  437. },
  438. // 查询防疫品名称列表
  439. fangYiPing() {
  440. exportAntiepidemiFangYi().then((response) => {
  441. this.fangYi = response.data;
  442. });
  443. },
  444. /** 查询防疫用品入库登记列表 */
  445. getList() {
  446. this.loading = true;
  447. listAntiepidemicputin(this.queryParams).then((response) => {
  448. this.antiepidemicputinList = response.rows;
  449. this.total = response.total;
  450. this.loading = false;
  451. });
  452. },
  453. // 取消按钮
  454. cancel() {
  455. this.open = false;
  456. this.reset();
  457. },
  458. // 表单重置
  459. reset() {
  460. this.form = {
  461. id: null,
  462. durgArchivesId: null,
  463. putIn: null,
  464. place: null,
  465. putTime: null,
  466. adminId: null,
  467. createtime: null,
  468. updatetime: null,
  469. durgBrand: null,
  470. specifications: null,
  471. unitId: null,
  472. storeHouse: null,
  473. putNumber: null,
  474. beizhu: null,
  475. durgName: null,
  476. source: null,
  477. expirationTime: null,
  478. };
  479. this.resetForm("form");
  480. },
  481. /** 搜索按钮操作 */
  482. handleQuery() {
  483. this.queryParams.pageNum = 1;
  484. this.getList();
  485. },
  486. /** 重置按钮操作 */
  487. resetQuery() {
  488. this.resetForm("queryForm");
  489. this.handleQuery();
  490. },
  491. // 多选框选中数据
  492. handleSelectionChange(selection) {
  493. this.ids = selection.map((item) => item.id);
  494. this.single = selection.length !== 1;
  495. this.multiple = !selection.length;
  496. },
  497. /** 新增按钮操作 */
  498. handleAdd() {
  499. this.fangYiPing();
  500. this.reset();
  501. this.open = true;
  502. this.title = "添加防疫用品入库登记";
  503. },
  504. /** 修改按钮操作 */
  505. handleUpdate(row) {
  506. this.reset();
  507. const id = row.id || this.ids;
  508. getAntiepidemicputin(id).then((response) => {
  509. this.form = response.data;
  510. this.open = true;
  511. this.title = "修改防疫用品入库登记";
  512. });
  513. },
  514. /** 提交按钮 */
  515. submitForm() {
  516. this.$refs["form"].validate((valid) => {
  517. if (valid) {
  518. if (this.form.id != null) {
  519. updateAntiepidemicputin(this.form).then((response) => {
  520. this.$modal.msgSuccess("修改成功");
  521. this.open = false;
  522. this.getList();
  523. });
  524. } else {
  525. this.form.surplus = this.form.putIn;
  526. addAntiepidemicputin(this.form).then((response) => {
  527. this.$modal.msgSuccess("新增成功");
  528. this.open = false;
  529. this.getList();
  530. });
  531. }
  532. }
  533. });
  534. },
  535. /** 删除按钮操作 */
  536. handleDelete(row) {
  537. const ids = row.id || this.ids;
  538. this.$confirm("是否确认删除防疫用品入库登记的数据项?", "警告", {
  539. confirmButtonText: "确定",
  540. cancelButtonText: "取消",
  541. type: "warning",
  542. })
  543. .then(function () {
  544. return delAntiepidemicputin(ids);
  545. })
  546. .then(() => {
  547. this.getList();
  548. this.$modal.msgSuccess("删除成功");
  549. })
  550. .catch(() => {});
  551. },
  552. /** 导出按钮操作 */
  553. handleExport() {
  554. const queryParams = this.queryParams;
  555. this.$confirm("是否确认导出所有防疫用品入库登记数据项?", "警告", {
  556. confirmButtonText: "确定",
  557. cancelButtonText: "取消",
  558. type: "warning",
  559. })
  560. .then(() => {
  561. this.exportLoading = true;
  562. return exportAntiepidemicputin(queryParams);
  563. })
  564. .then((response) => {
  565. this.download(response.msg);
  566. this.exportLoading = false;
  567. })
  568. .catch(() => {});
  569. },
  570. },
  571. };
  572. </script>
  573. <style scoped>
  574. /* 对话框背景颜色 */
  575. ::v-deep .el-dialog {
  576. background: #004d86 !important;
  577. width: 820px !important;
  578. }
  579. ::v-deep .el-textarea__inner {
  580. width: 610px;
  581. height: 104px;
  582. margin: auto;
  583. }
  584. ::v-deep .el-dialog__header {
  585. border-bottom: 1px solid #718a9d;
  586. }
  587. ::v-deep .el-dialog__title {
  588. color: #fff;
  589. font: 18px;
  590. }
  591. ::v-deep .el-dialog__headerbtn .el-dialog__close {
  592. color: #fff;
  593. }
  594. ::v-deep .el-form-item__label {
  595. font: 16px;
  596. color: #fff;
  597. width: 100px !important;
  598. }
  599. ::v-deep .el-input__inner {
  600. /* width: 200px !important;
  601. height: 36px; */
  602. background: transparent;
  603. color: #fff;
  604. border: 1px solid white !important;
  605. }
  606. /* 单位框背景颜色 */
  607. ::v-deep .vue-treeselect__control {
  608. background: #004d86 !important;
  609. }
  610. /* 基本信息背景 */
  611. .jiben {
  612. width: 700px;
  613. height: 32px;
  614. background-image: url(/static/img/小标题底.b7c6f45a.png);
  615. margin-bottom: 25px;
  616. color: #fff;
  617. padding-left: 16px;
  618. line-height: 32px;
  619. background-size: 100%;
  620. }
  621. /*调整表单间距 */
  622. ::v-deep .el-form-item__content {
  623. width: 200px;
  624. }
  625. ::v-deep .el-input__inner {
  626. cursor: pointer !important;
  627. }
  628. /* 底部确定取消按钮 */
  629. ::v-deep .el-dialog__footer {
  630. padding: 30px 60px;
  631. }
  632. ::v-deep .el-dialog__body {
  633. margin: 22px 28px 0px 104px;
  634. padding-top: 20px !important;
  635. box-sizing: border-box;
  636. }
  637. .contents {
  638. padding: 0px 40px !important;
  639. }
  640. /* 下拉菜单 */
  641. .el-dropdown-link {
  642. cursor: pointer;
  643. color: #409eff;
  644. }
  645. .el-icon-arrow-down {
  646. font-size: 12px;
  647. }
  648. /* 下拉菜单字体/背景颜色 */
  649. .el-select-dropdown__item.hover,
  650. .el-select-dropdown__item:hover {
  651. background-color: #004d86;
  652. color: #111;
  653. }
  654. .el-select-dropdown__item {
  655. color: #111;
  656. }
  657. /* 时间选择 */
  658. ::v-deep .el-input--small .el-input__inner {
  659. width: 200px;
  660. height: 36px;
  661. line-height: 36px;
  662. }
  663. .el-date-editor.el-input {
  664. width: 200px;
  665. height: 36px;
  666. line-height: 36px;
  667. }
  668. ::v-deep .el-date-editor.el-input .el-input__inner {
  669. height: 36px;
  670. line-height: 36px;
  671. }
  672. /* 单位框背景颜色 */
  673. ::v-deep .vue-treeselect__control {
  674. background: #004d86 !important;
  675. color: #fff;
  676. }
  677. /* 单位下拉菜单选中字体颜色 */
  678. ::v-deep .vue-treeselect__single-value {
  679. color: #fff !important;
  680. }
  681. /* 分页按钮 */
  682. ::v-deep .el-pagination.is-background .el-pager li {
  683. background-color: #004d86;
  684. color: #fff;
  685. }
  686. ::v-deep .el-pagination.is-background .btn-next {
  687. background-color: #004d86;
  688. color: #fff;
  689. }
  690. /* 底部确定取消按钮 */
  691. ::v-deep .el-dialog__footer {
  692. padding: 18px 50px;
  693. margin-right: 56px;
  694. }
  695. ::v-deep .el-dialog__body {
  696. padding: 0px 0px;
  697. }
  698. /* 小手样式 */
  699. ::v-deep .el-table__cell {
  700. cursor: pointer;
  701. }
  702. .el-button--mini {
  703. width: 80px !important;
  704. border: 1px solid transparent;
  705. padding: 3px 8px;
  706. font-size: 14px;
  707. line-height: 1.5;
  708. border-radius: 3px;
  709. color: #fff;
  710. background-color: #1890ff;
  711. }
  712. /* 调整输入框提示文字颜色 */
  713. ::v-deep .vue-treeselect__placeholder {
  714. color: #bdbdbd4f !important;
  715. }
  716. ::v-deep input::-webkit-input-placeholder {
  717. color: #bdbdbd4f !important;
  718. }
  719. ::v-deep input:-moz-placeholder {
  720. color: #bdbdbd4f !important;
  721. }
  722. ::v-deep .el-input__inner {
  723. border: 1px solid white !important;
  724. }
  725. .box {
  726. background-color: #ffba00 !important;
  727. }
  728. </style>