Elizabeth's proactive approach involves introducing urinal toilet attachment , an ingenious concept that optimizes space and functionality.

cancelStockOrderAdd.vue 23KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730
  1. <template>
  2. <div class="main-contain">
  3. <div class="position">
  4. <bread-crumb
  5. v-if="this.$route.query.type == 1"
  6. :crumbs="crumbs"
  7. ></bread-crumb>
  8. <bread-crumb
  9. v-if="this.$route.query.type == 2"
  10. :crumbs="crumbs2"
  11. ></bread-crumb>
  12. <div style="float:right;">
  13. <el-button size="small" @click="back()" class="filter-item"
  14. >取 消</el-button
  15. >
  16. <el-button
  17. size="small"
  18. type="primary"
  19. @click="submit()"
  20. class="filter-item"
  21. >保 存</el-button
  22. >
  23. </div>
  24. </div>
  25. <div class="app-container">
  26. <stock-in-dialog
  27. ref="dialog"
  28. :propForm="propForm"
  29. :visibility="isVisibility"
  30. v-on:dialog-comfirm="comfirm"
  31. v-on:dialog-cancle="cancle"
  32. ></stock-in-dialog>
  33. <div class="filter-container">
  34. <div class="cell clearfix">
  35. <label class="title"><span class="name">退库时间</span> : </label>
  36. <el-date-picker
  37. size="small"
  38. v-model="return_time"
  39. prefix-icon="el-icon-date"
  40. :editable="false"
  41. style="width: 196px;"
  42. type="date"
  43. placeholder="选择日期时间"
  44. align="right"
  45. format="yyyy-MM-dd"
  46. value-format="yyyy-MM-dd"
  47. ></el-date-picker>
  48. </div>
  49. </div>
  50. <el-form :rules="tableRules" :model="recordInfo" ref="tableForm">
  51. <el-table
  52. :data="recordInfo.recordData"
  53. :class="signAndWeighBoxPatients"
  54. style="width: 100%"
  55. border
  56. max-height="450"
  57. :header-cell-style="{ backgroundColor: 'rgb(245, 247, 250)' }"
  58. >
  59. <el-table-column align="center" width="230">
  60. <template slot="header" slot-scope="scope">
  61. <span>耗材名称</span>
  62. </template>
  63. <template slot-scope="scope">
  64. <el-autocomplete
  65. class="checkSearch"
  66. popper-class="my-autocomplete"
  67. v-model="scope.row.good_name"
  68. :fetch-suggestions="querySearchAsync"
  69. :trigger-on-focus="true"
  70. placeholder="请输入耗材名称"
  71. @select="handleSelect"
  72. @input="changeGoodName(scope.$index)"
  73. style="width:200px;"
  74. >
  75. <i class="el-icon-search el-input__icon" slot="suffix"></i>
  76. <template slot-scope="{ item }">
  77. <div class="name">{{ item.good_name +" " +item.specification_name + " "+item.manufacturer }}</div>
  78. </template>
  79. </el-autocomplete>
  80. </template>
  81. </el-table-column>
  82. <el-table-column align="center" width="200">
  83. <template slot="header" slot-scope="scope">
  84. <span>规格&单位<span style="color: red">*</span></span>
  85. </template>
  86. <template slot-scope="scope">
  87. <el-form-item style="padding-top: 20px">
  88. <el-input placeholder="请输入规格名称" v-model="scope.row.name"></el-input>
  89. </el-form-item>
  90. </template>
  91. </el-table-column>
  92. <el-table-column width="150" align="center">
  93. <template slot="header" slot-scope="scope">
  94. <span>退库数量<span style="color: red">*</span></span>
  95. </template>
  96. <template slot-scope="scope">
  97. <el-form-item
  98. :prop="'recordData.' + scope.$index + '.return_count'"
  99. :rules="tableRules.return_count"
  100. style="padding-top: 17px"
  101. >
  102. <el-input
  103. oninput="value=value.replace(/\D|^0/g,'')"
  104. placeholder="请输入退库数量"
  105. type="number"
  106. v-model="scope.row.return_count"
  107. ></el-input>
  108. </el-form-item>
  109. <!-- {{scope.row.packing_unit}} -->
  110. </template>
  111. </el-table-column>
  112. <el-table-column width="150" align="center">
  113. <template slot="header" slot-scope="scope">
  114. <span>单价<span style="color: red">*</span></span>
  115. </template>
  116. <template slot-scope="scope">
  117. <el-form-item
  118. :prop="'recordData.' + scope.$index + '.price'"
  119. :rules="tableRules.price"
  120. style="padding-top: 17px"
  121. >
  122. <el-input
  123. placeholder="请输入单价"
  124. type="number"
  125. v-model="scope.row.price"
  126. ></el-input>
  127. </el-form-item>
  128. <!-- {{scope.row.packing_unit}} -->
  129. </template>
  130. </el-table-column>
  131. <el-table-column label="总价" align="center" width="150">
  132. <template slot-scope="scope">
  133. {{ calculate(scope.row.price * scope.row.return_count) }}
  134. </template>
  135. </el-table-column>
  136. <el-table-column width="200" align="center">
  137. <template slot="header" slot-scope="scope">
  138. <span>批次<span style="color: red"></span></span>
  139. </template>
  140. <template slot-scope="scope">
  141. <el-form-item
  142. :prop="'recordData.' + scope.$index + '.return_count'"
  143. style="padding-top: 17px"
  144. >
  145. <el-select v-model="scope.row.number" filterable placeholder="请选择">
  146. <el-option
  147. v-for="(item,index) in numberList"
  148. :key="index"
  149. :label="item.number"
  150. :value="item.number">
  151. </el-option>
  152. </el-select>
  153. </el-form-item>
  154. </template>
  155. </el-table-column>
  156. <el-table-column width="200" align="center">
  157. <template slot="header" slot-scope="scope">
  158. <span>品名/注册证号(备案凭证号)<span style="color: red"></span></span>
  159. </template>
  160. <template slot-scope="scope">
  161. <el-form-item
  162. :prop="'recordData.' + scope.$index + '.return_count'"
  163. style="padding-top: 17px"
  164. >
  165. <el-input v-model="scope.row.register_account"></el-input>
  166. </el-form-item>
  167. </template>
  168. </el-table-column>
  169. <el-table-column label="生产厂家" width="160" align="center">
  170. <template slot-scope="scope">
  171. <el-select v-model="scope.row.manufacturer" filterable placeholder="请选择厂商">
  172. <el-option
  173. v-for="(option, index) in manufacturerList"
  174. :key="index"
  175. :label="option.manufacturer_name"
  176. :value="option.manufacturer_name">
  177. </el-option>
  178. </el-select>
  179. </template>
  180. </el-table-column>
  181. <el-table-column label="生产日期" width="180" align="center">
  182. <template slot-scope="scope">
  183. <el-date-picker
  184. prefix-icon="el-icon-date"
  185. style="width: 145px"
  186. v-model="scope.row.product_date"
  187. type="date"
  188. placeholder="选择日期时间"
  189. format="yyyy-MM-dd"
  190. value-format="yyyy-MM-dd"
  191. ></el-date-picker>
  192. </template>
  193. </el-table-column>
  194. <el-table-column label="有效日期" width="180" align="center">
  195. <template slot-scope="scope">
  196. <el-date-picker
  197. prefix-icon="el-icon-date"
  198. style="width: 145px"
  199. v-model="scope.row.expiry_date"
  200. type="date"
  201. placeholder="选择日期时间"
  202. format="yyyy-MM-dd"
  203. value-format="yyyy-MM-dd"
  204. ></el-date-picker>
  205. </template>
  206. </el-table-column>
  207. <el-table-column label="经销商" width="160" align="center">
  208. <template slot-scope="scope">
  209. <el-select v-model="scope.row.dealer" filterable placeholder="请选择厂商">
  210. <el-option
  211. v-for="(option, index) in dealerList"
  212. :key="index"
  213. :label="option.dealer_name"
  214. :value="option.dealer_name">
  215. </el-option>
  216. </el-select>
  217. </template>
  218. </el-table-column>
  219. <el-table-column width="200" align="center">
  220. <template slot="header" slot-scope="scope">
  221. <span>退库原因<span style="color: red"></span></span>
  222. </template>
  223. <template slot-scope="scope">
  224. <el-form-item
  225. :prop="'recordData.' + scope.$index + '.remark'"
  226. style="padding-top: 17px"
  227. >
  228. <el-input v-model="scope.row.remark"></el-input>
  229. </el-form-item>
  230. </template>
  231. </el-table-column>
  232. <el-table-column label="操作" align="center" width="200" fixed="right">
  233. <template slot-scope="scope">
  234. <el-tooltip
  235. class="item"
  236. effect="dark"
  237. content="新增"
  238. placement="top"
  239. >
  240. <el-button
  241. size="mini"
  242. type="primary"
  243. icon="el-icon-circle-plus-outline"
  244. @click="handleEdit(scope.$index, scope.row)"
  245. >
  246. </el-button>
  247. </el-tooltip>
  248. <el-tooltip
  249. class="item"
  250. effect="dark"
  251. content="删除"
  252. placement="top"
  253. >
  254. <el-button
  255. size="mini"
  256. type="danger"
  257. icon="el-icon-delete"
  258. @click="handleDelete(scope.$index, scope.row)"
  259. >
  260. </el-button>
  261. </el-tooltip>
  262. </template>
  263. </el-table-column>
  264. </el-table>
  265. </el-form>
  266. </div>
  267. </div>
  268. </template>
  269. <script>
  270. import { uParseTime } from "@/utils/tools";
  271. import { getCancelStockConfig, postCancelStock,GetAllConfig,GetAllGoodInfoByID,postSearchGoodList,getStockBatchNumber } from "@/api/stock";
  272. import BreadCrumb from "../components/bread-crumb";
  273. import StockInDialog from './Dialog/stockInDialog'
  274. export default {
  275. components: { StockInDialog, BreadCrumb },
  276. name: "salesReturnOrderAdd",
  277. data() {
  278. return {
  279. crumbs: [
  280. { path: false, name: "库存管理" },
  281. { path: false, name: "耗材退库单" },
  282. { path: false, name: "新增退库单" }
  283. ],
  284. crumbs2: [
  285. { path: false, name: "库存管理" },
  286. { path: false, name: "其他退库单" },
  287. { path: false, name: "新增退库单" }
  288. ],
  289. type: this.$route.query.type,
  290. signAndWeighBoxPatients: "sign-and-weigh-box-patients",
  291. return_time: "",
  292. currentIndex: 0,
  293. recordInfo: {
  294. recordData: []
  295. },
  296. tableRules: {
  297. return_count: [
  298. { required: true, message: "数量不能为空", trigge: "blur" }
  299. ]
  300. },
  301. ruleForm: {
  302. manufacturer: [
  303. { required: true, message: "请选择厂商", trigger: "change" }
  304. ]
  305. },
  306. // prop
  307. isVisibility: false,
  308. propForm: {
  309. goods: [],
  310. goodType: [],
  311. goodInfo: [],
  312. goodUnit: [],
  313. manufacturer: 0,
  314. dealer: 0
  315. },
  316. form: {
  317. manufacturer: 0,
  318. dealer: 0
  319. },
  320. warehouseOutInfoList: [],
  321. manufacturer: [],
  322. dealer: [],
  323. goodType: [],
  324. goodInfo:[],
  325. numberList:[]
  326. };
  327. },
  328. methods: {
  329. comfirm: function(val) {
  330. this.propForm.goodType = []
  331. this.propForm.goods = []
  332. this.$refs.dialog.hide()
  333. if (val.selectedGoodInfo.length > 0) {
  334. for (let i = val.selectedGoodInfo.length - 1; i >= 0; i--) {
  335. if (i == 0) {
  336. this.recordInfo.recordData[this.currentIndex].good_type_id = val.selectedGoodInfo[i].good_type_id
  337. this.recordInfo.recordData[this.currentIndex].good_id = val.selectedGoodInfo[i].id
  338. } else {
  339. const tempForm = {}
  340. tempForm['good_type_id'] =val.selectedGoodInfo[i].good_type_id
  341. tempForm['good_id'] = val.selectedGoodInfo[i].id
  342. tempForm["return_count"] = "";
  343. this.recordInfo.recordData.splice(this.currentIndex + 1, 0, tempForm)
  344. }
  345. }
  346. }
  347. this.currentIndex = -1
  348. },
  349. cancle: function() {
  350. this.$refs.dialog.hide();
  351. this.propForm.goodType = [];
  352. },
  353. GetConfigInfo: function() {
  354. const loading = this.$loading({
  355. lock: true,
  356. text: 'Loading',
  357. spinner: 'el-icon-loading',
  358. background: 'rgba(0, 0, 0, 0.7)'
  359. })
  360. GetAllConfig().then(response => {
  361. if (response.data.state == 0) {
  362. this.$message.error(response.data.msg)
  363. return false
  364. } else {
  365. this.manufacturer = response.data.data.manufacturer
  366. this.dealer = response.data.data.dealer
  367. this.goodType = response.data.data.goodType
  368. this.goodInfo = response.data.data.goodInfo
  369. this.manufacturer.splice(0, 0, { id: 0, manufacturer_name: '全部' })
  370. this.dealer.splice(0, 0, { id: 0, dealer_name: '全部' })
  371. this.manufacturer.splice(0, 0, { id: -1, manufacturer_name: '其他' })
  372. this.dealer.splice(0, 0, { id: -1, dealer_name: '其他' })
  373. this.form.manufacturer = 0
  374. this.form.dealer = 0
  375. }
  376. loading.close()
  377. })
  378. },
  379. typeName: function(good_type_id) {
  380. let name = "";
  381. for (let i = 0; i < this.goodType.length; i++) {
  382. if (this.goodType[i].id == good_type_id) {
  383. name = this.goodType[i].type_name;
  384. }
  385. }
  386. return name;
  387. },
  388. specificationName: function(good_info_id) {
  389. let name = ''
  390. for (let i = 0; i < this.goodInfo.length; i++) {
  391. if (this.goodInfo[i].id == good_info_id) {
  392. name = this.goodInfo[i].specification_name
  393. }
  394. }
  395. return name
  396. },
  397. handleEdit: function(index, row) {
  398. const tempObj = {};
  399. tempObj["good_type_id"] = 0;
  400. tempObj["good_id"] = 0;
  401. tempObj["return_count"] = "";
  402. tempObj["number"] = ""
  403. tempObj["dealer"] = ""
  404. tempObj["manufacturer"]= ""
  405. tempObj["register_account"] = ""
  406. tempObj["remark"] = ""
  407. tempObj["price"] = ""
  408. tempObj["total"] = ""
  409. this.recordInfo.recordData.push(tempObj);
  410. },
  411. handleDelete: function(index, row) {
  412. if (this.recordInfo.recordData.length <= 1) {
  413. this.$message.error("只有一条记录的时候无法删除");
  414. return;
  415. } else {
  416. this.recordInfo.recordData.splice(index, 1);
  417. }
  418. },
  419. calculate: function(val) {
  420. if (val == 0) {
  421. return "";
  422. }
  423. return Math.round(parseFloat(val) * 100) / 100;
  424. },
  425. getTime(val, temp) {
  426. if (val != 0) {
  427. return uParseTime(val, temp);
  428. } else {
  429. return "";
  430. }
  431. },
  432. showDialog(index, row) {
  433. const loading = this.$loading({
  434. lock: true,
  435. text: 'Loading',
  436. spinner: 'el-icon-loading',
  437. background: 'rgba(0, 0, 0, 0.7)'
  438. })
  439. this.currentIndex = index
  440. this.isVisibility = true
  441. const params = {
  442. manufacturer_id: this.form.manufacturer,
  443. dealer_id: this.form.dealer
  444. }
  445. this.propForm.goods = []
  446. GetAllGoodInfoByID(params).then(response => {
  447. if (response.data.state == 0) {
  448. this.$message.error(response.data.msg)
  449. return false
  450. loading.close()
  451. } else {
  452. loading.close()
  453. if (response.data.data.goodInfo.length <= 0) {
  454. this.$message.error('该厂商或经销商没有物品信息')
  455. return
  456. }
  457. this.$refs.dialog.show()
  458. for (let i = 0; i < response.data.data.goodInfo.length; i++) {
  459. this.propForm.goodType.push(response.data.data.goodInfo[i].type)
  460. }
  461. const obj = {}
  462. this.propForm.goodType = this.propForm.goodType.reduce((cur, next) => {
  463. obj[next.id] ? '' : obj[next.id] = true && cur.push(next)
  464. return cur
  465. }, []) // 设置cur默认类型为数组,并且初始值为空的数组
  466. }
  467. for (let i = 0; i < this.propForm.goodType.length; i++) {
  468. let goodInfo = []
  469. let goodObj = {}
  470. for (let a = 0; a < response.data.data.goodInfo.length; a++) {
  471. var respObj = response.data.data.goodInfo[a]
  472. respObj['isSelected'] = false
  473. if (respObj.type.id == this.propForm.goodType[i].id) {
  474. goodInfo.push(respObj)
  475. }
  476. }
  477. const obj = {}
  478. goodInfo = goodInfo.reduce((cur, next) => {
  479. obj[next.id] ? '' : obj[next.id] = true && cur.push(next)
  480. return cur
  481. }, []) // 设置cur默认类型为数组,并且初始值为空的数组
  482. this.$set(goodObj, this.propForm.goodType[i].id, goodInfo)
  483. this.propForm.goods.push(goodObj)
  484. }
  485. }
  486. )
  487. },
  488. back() {
  489. this.$router.go(-1);
  490. },
  491. submit() {
  492. this.$refs["tableForm"].validate(valid => {
  493. if (valid) {
  494. const array = this.recordInfo.recordData;
  495. let total = 0;
  496. for (let i = 0; i < array.length; i++) {
  497. array[i].price = (array[i].price).toString()
  498. total = total + array[i].price * array[i].return_count;
  499. if(array[i].number == undefined){
  500. array[i].number = ""
  501. }
  502. }
  503. if (this.recordInfo.recordData.length <= 0) {
  504. this.$message.success("请添加退库商品");
  505. return;
  506. }
  507. const params = {
  508. cancelStock: this.recordInfo.recordData
  509. };
  510. console.log("params",params)
  511. postCancelStock(
  512. params,
  513. this.return_time,
  514. this.form.manufacturer,
  515. this.form.dealer,
  516. this.type
  517. ).then(response => {
  518. if (response.data.state == 0) {
  519. this.$message.error(response.data.msg);
  520. return false;
  521. } else {
  522. var msg = response.data.data.msg
  523. if (msg == 1){
  524. this.$message.error("该耗材无出库记录")
  525. return
  526. }
  527. if(msg == 2){
  528. this.$message.error("退库数量大于出库数量")
  529. }
  530. if(msg == 3){
  531. this.$notify({
  532. title: "成功",
  533. message: "退库成功",
  534. type: "success",
  535. duration: 2000
  536. });
  537. this.recordInfo.recordData = [];
  538. this.$router.back(-1);
  539. }
  540. }
  541. });
  542. } else {
  543. return false;
  544. }
  545. });
  546. },
  547. changeManufacturer(val) {
  548. this.propForm.manufacturer = val;
  549. },
  550. changeDealer(val) {
  551. this.propForm.dealer = val;
  552. },
  553. querySearchAsync(keyword, cb) {
  554. let key = '';
  555. if (keyword != undefined) {
  556. key = keyword
  557. }
  558. postSearchGoodList(key).then(response => {
  559. if (response.data.state == 1) {
  560. var list = response.data.data.list
  561. this.goodList = list
  562. var manufacturerList = response.data.data.manufacturerList
  563. this.manufacturerList = manufacturerList
  564. var dealer = response.data.data.dealerList
  565. this.dealerList = dealer
  566. for(let i=0;i<this.goodList.length;i++){
  567. for(let j=0;j<this.manufacturerList.length;j++){
  568. if(this.goodList[i].manufacturer == this.manufacturerList[j].id){
  569. this.goodList[i].manufacturer = this.manufacturerList[j].manufacturer_name
  570. }
  571. }
  572. }
  573. for(let i=0;i<this.goodList.length;i++){
  574. for(let j=0;j<this.dealerList.length;j++){
  575. if(this.goodList[i].dealer == this.dealerList[j].id){
  576. this.goodList[i].dealer = this.dealerList[j].dealer_name
  577. }
  578. }
  579. }
  580. cb(this.goodList)
  581. } else {
  582. cb([])
  583. }
  584. })
  585. },
  586. changeGoodName(val){
  587. this.currentIndex = val
  588. },
  589. handleSelect(val){
  590. //获取当前耗材的批号
  591. this.getStockBatchNumber(val.id)
  592. for(let i=0;i<this.recordInfo.recordData.length;i++){
  593. if(this.currentIndex == i){
  594. this.recordInfo.recordData[i].good_type_id = val.id
  595. this.recordInfo.recordData[i].good_name = val.good_name
  596. this.recordInfo.recordData[i].good_type_id = val.good_type_id
  597. this.recordInfo.recordData[i].name = val.specification_name +"/"+val.packing_unit
  598. this.recordInfo.recordData[i].number = val.number
  599. this.recordInfo.recordData[i].manufacturer = val.manufacturer
  600. this.recordInfo.recordData[i].remark = val.remark
  601. if(val.buy_price == 0){
  602. this.recordInfo.recordData[i].price = ""
  603. }else{
  604. this.recordInfo.recordData[i].price = val.buy_price
  605. }
  606. this.recordInfo.recordData[i].specification_name = val.specification_name
  607. this.recordInfo.recordData[i].good_id = val.id
  608. this.recordInfo.recordData[i].packing_unit = val.packing_unit
  609. if(val.dealer == 0){
  610. this.recordInfo.recordData[i].dealer = ""
  611. }else{
  612. this.recordInfo.recordData[i].dealer = val.dealer
  613. }
  614. }
  615. }
  616. },
  617. getStockBatchNumber(id){
  618. var params = {
  619. id:id
  620. }
  621. getStockBatchNumber(params).then(response=>{
  622. if(response.data.state == 1){
  623. var list = response.data.data.list
  624. console.log("list2243444",list)
  625. this.numberList = list
  626. }
  627. })
  628. },
  629. },
  630. created() {
  631. var nowDate = new Date();
  632. var nowYear = nowDate.getFullYear();
  633. var nowMonth = nowDate.getMonth() + 1;
  634. var nowDay = nowDate.getDate();
  635. this.return_time =
  636. nowYear +
  637. "-" +
  638. (nowMonth < 10 ? "0" + nowMonth : nowMonth) +
  639. "-" +
  640. (nowDay < 10 ? "0" + nowDay : nowDay);
  641. const tempObj = {};
  642. tempObj["good_type_id"] = 0;
  643. tempObj["good_id"] = 0;
  644. tempObj["return_count"] = "";
  645. tempObj["number"] = ""
  646. tempObj["dealer"] = ""
  647. tempObj["manufacturer"]= ""
  648. tempObj["register_account"] = ""
  649. tempObj["remark"] = ""
  650. tempObj["price"] = ""
  651. tempObj["total"] = ""
  652. this.recordInfo.recordData.push(tempObj);
  653. this.GetConfigInfo();
  654. this.propForm.goodUnit = this.$store.getters.good_unit;
  655. }
  656. };
  657. </script>
  658. <style rel="stylesheet/css" lang="scss" scoped>
  659. .information {
  660. border: 1px #dcdfe6 solid;
  661. padding: 30px 20px 30px 20px;
  662. .border {
  663. border-bottom: 1px #dcdfe6 solid;
  664. margin: 0px 0 20px 0;
  665. }
  666. }
  667. .edit_separater {
  668. border-top: 1px solid rgb(233, 233, 233);
  669. margin-top: 15px;
  670. margin-bottom: 15px;
  671. }
  672. </style>
  673. <style>
  674. .sign-and-weigh-box .sign-and-weigh-box-patients .cell {
  675. font-size: 12px;
  676. }
  677. .sign-and-weigh-box .sign-and-weigh-box-patients .current-row > td {
  678. background: #6fb5fa;
  679. }
  680. </style>