retail_detail.vue 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548
  1. <template>
  2. <div class="detail-container">
  3. <el-page-header @back="goBack" content="详情"></el-page-header>
  4. <div class="main-title">
  5. <div class="title">提货进度</div>
  6. </div>
  7. <div class="progress-container">
  8. <el-progress :text-inside="true" :stroke-width="26" :percentage="detailData.thjd ? (detailData.thjd * 1000 / 10) : 0"></el-progress>
  9. </div>
  10. <div class="main-title">
  11. <div class="title">订单信息</div>
  12. </div>
  13. <div class="diy-table-1">
  14. <el-row>
  15. <el-col :span="8" class="item">
  16. <div class="label">订单号</div>
  17. <div class="value">{{detailData.id}}</div>
  18. </el-col>
  19. <el-col :span="8" class="item">
  20. <div class="label">订单日期</div>
  21. <div class="value">{{detailData.theTime | dateToDayFilter}}</div>
  22. </el-col>
  23. <el-col :span="8" class="item">
  24. <div class="label">单据状态</div>
  25. <div class="value">{{detailData.examineStatus | statusFilter}}</div>
  26. </el-col>
  27. <el-col :span="16" class="item">
  28. <div class="label">备注</div>
  29. <div class="value">{{detailData.remark}}</div>
  30. </el-col>
  31. <el-col :span="8" class="item">
  32. <div class="label">业务员</div>
  33. <div class="value">{{detailData.serviceName}}</div>
  34. </el-col>
  35. <el-col :span="8" class="item">
  36. <div class="label">制单人</div>
  37. <div class="value">{{detailData.createName}}</div>
  38. </el-col>
  39. <el-col :span="8" class="item">
  40. <div class="label">制单日期</div>
  41. <div class="value">{{detailData.createTime}}</div>
  42. </el-col>
  43. <el-col :span="8" class="item">
  44. <div class="label">审核人</div>
  45. <div class="value">{{detailData.examineName}}</div>
  46. </el-col>
  47. <el-col :span="8" class="item">
  48. <div class="label">审核日期</div>
  49. <div class="value">{{detailData.examineTime}}</div>
  50. </el-col>
  51. <el-col :span="8" class="item">
  52. <div class="label">关闭人</div>
  53. <div class="value">{{detailData.closeName}}</div>
  54. </el-col>
  55. <el-col :span="8" class="item">
  56. <div class="label">关闭日期</div>
  57. <div class="value">{{detailData.closeTime}}</div>
  58. </el-col>
  59. </el-row>
  60. </div>
  61. <div class="main-title">
  62. <div class="title">货品信息</div>
  63. </div>
  64. <div class="table" style="margin-top: 20px">
  65. <el-table :data="detailData.retailOrderItemList" element-loading-text="Loading" border fit highlight-current-row stripe max-height="400">
  66. <el-table-column align="center" label="序号" type="index" width="50"></el-table-column>
  67. <el-table-column align="center" label="销售类型" prop="saleTypeName" min-width="100" show-overflow-tooltip></el-table-column>
  68. <el-table-column align="center" label="产品编码" prop="materialCode" min-width="160" show-overflow-tooltip></el-table-column>
  69. <el-table-column align="center" label="产品名称" prop="materialName" min-width="160" show-overflow-tooltip></el-table-column>
  70. <el-table-column align="center" label="规格型号" prop="specification" min-width="160" show-overflow-tooltip></el-table-column>
  71. <el-table-column align="center" label="单位" prop="unit" min-width="100" show-overflow-tooltip></el-table-column>
  72. <el-table-column align="center" label="单价" prop="price" min-width="100" show-overflow-tooltip></el-table-column>
  73. <el-table-column align="center" label="数量" prop="refundableQty" min-width="100" show-overflow-tooltip></el-table-column>
  74. <el-table-column align="center" label="订单金额" prop="totalAmount" min-width="100" show-overflow-tooltip></el-table-column>
  75. <el-table-column align="center" label="返利类型" prop="customerWalletName2" min-width="160" show-overflow-tooltip></el-table-column>
  76. <el-table-column align="center" label="返利金额" prop="payRebateAmount" min-width="100" show-overflow-tooltip></el-table-column>
  77. <el-table-column align="center" label="格力折扣" prop="totalDiscAmount" min-width="100" show-overflow-tooltip></el-table-column>
  78. <el-table-column align="center" label="现金钱包" prop="customerWalletName" min-width="160" show-overflow-tooltip></el-table-column>
  79. <el-table-column align="center" label="实付金额" prop="payAmount" min-width="100" show-overflow-tooltip></el-table-column>
  80. <el-table-column align="center" label="是否直调" prop="isDirectTransfer" min-width="100" show-overflow-tooltip>
  81. <template slot-scope="scope">
  82. {{scope.row.isDirectTransfer ? '是':'否'}}
  83. </template>
  84. </el-table-column>
  85. <el-table-column align="center" label="直调数量" prop="directTransferQty" min-width="100" show-overflow-tooltip></el-table-column>
  86. <el-table-column align="center" label="原订单数量" prop="oldQty" min-width="100" show-overflow-tooltip></el-table-column>
  87. <el-table-column align="center" label="备注" prop="remark" min-width="160" show-overflow-tooltip></el-table-column>
  88. <el-table-column align="center" label="税率" prop="tax" min-width="100" show-overflow-tooltip></el-table-column>
  89. </el-table>
  90. </div>
  91. <div v-if="isExamine">
  92. <div class="main-title">
  93. <div class="title">审批记录</div>
  94. </div>
  95. <div class="diy-table-1">
  96. <el-row :gutter="0">
  97. <el-col :span="12" class="item">
  98. <div class="label">审批人</div>
  99. <div class="value">{{detailData.examineName}}</div>
  100. </el-col>
  101. <el-col :span="12" class="item">
  102. <div class="label">审批结果</div>
  103. <div class="value">{{detailData.examineStatus | statusFilter}}</div>
  104. </el-col>
  105. <el-col :span="24" class="item">
  106. <div class="label">审批说明</div>
  107. <div class="value">{{detailData.examineRemark}}</div>
  108. </el-col>
  109. </el-row>
  110. </div>
  111. </div>
  112. <div class="page-footer">
  113. <div class="footer" :class="classObj">
  114. <el-button type="primary" @click="openDirectDialog" :disabled="detailData.examineStatus !== 'OK'">提前开票</el-button>
  115. <el-button type="primary" @click="openDeliverDialog" :disabled="detailData.examineStatus !== 'OK' || detailData.directTransferStatus === true">直调发货</el-button>
  116. <el-button type="primary" @click="handleFinish" :disabled="detailData.examineStatus !== 'OK'">直调完成</el-button>
  117. <el-button @click="goBack">关 闭</el-button>
  118. </div>
  119. </div>
  120. <el-dialog title="直调发货" :visible.sync="isShowDeliverDialog" width="80%">
  121. <el-form ref="deliverForm" :model="deliverForm" :rules="deliverFormRules" label-width="80px" size="small" label-position="left">
  122. <el-row :gutter="20">
  123. <el-col :xs="8" :sm="8" :lg="8" style="height: 51px;">
  124. <el-form-item label="发货日期" prop="date">
  125. <el-date-picker
  126. v-model="deliverForm.date"
  127. type="date"
  128. value-format="yyyy-MM-dd"
  129. style="width: 100%;"
  130. placeholder="选择日期">
  131. </el-date-picker>
  132. </el-form-item>
  133. </el-col>
  134. <el-col :xs="8" :sm="8" :lg="8">
  135. <el-form-item label="发货仓库" prop="warehouse">
  136. <el-select v-model="deliverForm.warehouse" placeholder="请选择发货仓库" style="width: 100%" filterable @change="changeWarehouse">
  137. <el-option v-for="item in warehouseList" :key="item.id" :label="item.name" :value="item.id"></el-option>
  138. </el-select>
  139. </el-form-item>
  140. </el-col>
  141. <el-col :xs="8" :sm="8" :lg="8">
  142. <el-form-item label="选择仓位" prop="position">
  143. <el-select v-model="deliverForm.position" placeholder="请选择仓位" style="width: 100%" filterable>
  144. <el-option v-for="item in positionList" :key="item.id" :label="item.name" :value="item.id"></el-option>
  145. </el-select>
  146. </el-form-item>
  147. </el-col>
  148. </el-row>
  149. </el-form>
  150. <div class="table" style="margin-top: 20px">
  151. <el-table :data="goodsList" element-loading-text="Loading" border fit highlight-current-row stripe max-height="400">
  152. <el-table-column align="center" label="序号" type="index" width="50"></el-table-column>
  153. <el-table-column align="center" label="销售类型" prop="saleTypeName" min-width="100" show-overflow-tooltip></el-table-column>
  154. <el-table-column align="center" label="产品编码" prop="materialCode" min-width="160" show-overflow-tooltip></el-table-column>
  155. <el-table-column align="center" label="产品名称" prop="materialName" min-width="160" show-overflow-tooltip></el-table-column>
  156. <el-table-column align="center" label="规格型号" prop="specification" min-width="160" show-overflow-tooltip></el-table-column>
  157. <el-table-column align="center" label="单位" prop="unit" min-width="100" show-overflow-tooltip></el-table-column>
  158. <el-table-column align="center" label="订单数量" prop="qty" min-width="100" show-overflow-tooltip></el-table-column>
  159. <el-table-column align="center" label="发货数量" prop="hasSendQty" min-width="100" show-overflow-tooltip></el-table-column>
  160. <el-table-column align="center" label="直调数量" prop="adjustNum" min-width="100" show-overflow-tooltip>
  161. <template slot-scope="scope">
  162. <el-input v-model="scope.row.adjustNum" size="small" type="number" :disabled="!scope.row.isDirectTransfer"></el-input>
  163. </template>
  164. </el-table-column>
  165. <el-table-column align="center" label="单价" prop="price" min-width="100" show-overflow-tooltip></el-table-column>
  166. <el-table-column align="center" label="金额" prop="totalAmount" min-width="100" show-overflow-tooltip></el-table-column>
  167. <el-table-column align="center" label="返利" prop="payRebateAmount" min-width="100" show-overflow-tooltip></el-table-column>
  168. <el-table-column align="center" label="实付金额" prop="payAmount" min-width="100" show-overflow-tooltip></el-table-column>
  169. <el-table-column align="center" label="备注" prop="remark" min-width="160" show-overflow-tooltip></el-table-column>
  170. </el-table>
  171. </div>
  172. <span slot="footer" class="dialog-footer">
  173. <el-button @click="closeDeliverDialog">取 消</el-button>
  174. <el-button type="primary" @click="submitDeliverForm">确 定</el-button>
  175. </span>
  176. </el-dialog>
  177. <el-dialog title="直接调拨单(提前开票)" :visible.sync="isShowDirectDialog" width="80%">
  178. <el-form ref="directForm" :model="directForm" :rules="directFormRules" label-width="80px" size="small" label-position="left">
  179. <el-row :gutter="20">
  180. <el-col :xs="12" :sm="6" :lg="6">
  181. <el-form-item label="调出仓库" prop="warehouse1">
  182. <el-select v-model="directForm.warehouse1" placeholder="请选择调出仓库" style="width: 100%" filterable @change="changeWarehouse1">
  183. <el-option v-for="item in warehouseList1" :key="item.id" :label="item.name" :value="item.id"></el-option>
  184. </el-select>
  185. </el-form-item>
  186. </el-col>
  187. <el-col :xs="12" :sm="6" :lg="6">
  188. <el-form-item label="调出仓位" prop="position1">
  189. <el-select v-model="directForm.position1" placeholder="请调出仓位" style="width: 100%" filterable @change="changePosition1">
  190. <el-option v-for="item in positionList1" :key="item.id" :label="item.name" :value="item.id"></el-option>
  191. </el-select>
  192. </el-form-item>
  193. </el-col>
  194. <el-col :xs="12" :sm="6" :lg="6">
  195. <el-form-item label="调入仓库" prop="warehouse2">
  196. <el-select v-model="directForm.warehouse2" placeholder="请选择调入仓库" style="width: 100%" filterable @change="changeWarehouse2">
  197. <el-option v-for="item in warehouseList2" :key="item.id" :label="item.name" :value="item.id"></el-option>
  198. </el-select>
  199. </el-form-item>
  200. </el-col>
  201. <el-col :xs="12" :sm="6" :lg="6">
  202. <el-form-item label="调入仓位" prop="position2">
  203. <el-select v-model="directForm.position2" placeholder="请调入仓位" style="width: 100%" filterable @change="changePosition2">
  204. <el-option v-for="item in positionList2" :key="item.id" :label="item.name" :value="item.id"></el-option>
  205. </el-select>
  206. </el-form-item>
  207. </el-col>
  208. </el-row>
  209. </el-form>
  210. <div class="table" style="margin-top: 20px">
  211. <el-table :data="directGoodsList" element-loading-text="Loading" border fit highlight-current-row stripe max-height="400">
  212. <el-table-column align="center" label="序号" type="index" width="50"></el-table-column>
  213. <el-table-column align="center" label="销售类型" prop="saleTypeName" min-width="100" show-overflow-tooltip></el-table-column>
  214. <el-table-column align="center" label="产品编码" prop="materialCode" min-width="160" show-overflow-tooltip></el-table-column>
  215. <el-table-column align="center" label="物料代码" prop="materialOldNumber" min-width="160" show-overflow-tooltip></el-table-column>
  216. <el-table-column align="center" label="产品名称" prop="materialName" min-width="160" show-overflow-tooltip></el-table-column>
  217. <el-table-column align="center" label="规格型号" prop="specification" min-width="160" show-overflow-tooltip></el-table-column>
  218. <el-table-column align="center" label="单位" prop="unit" min-width="100" show-overflow-tooltip></el-table-column>
  219. <el-table-column align="center" label="数量" prop="refundableQty" min-width="100" show-overflow-tooltip></el-table-column>
  220. <el-table-column align="center" label="调出仓库" prop="warehouse1" min-width="100" show-overflow-tooltip></el-table-column>
  221. <el-table-column align="center" label="调出仓位" prop="position1" min-width="100" show-overflow-tooltip></el-table-column>
  222. <el-table-column align="center" label="调入仓库" prop="warehouse2" min-width="100" show-overflow-tooltip></el-table-column>
  223. <el-table-column align="center" label="调入仓位" prop="position2" min-width="100" show-overflow-tooltip></el-table-column>
  224. <el-table-column align="center" label="调出库存状态" prop="status1" min-width="110" show-overflow-tooltip></el-table-column>
  225. <el-table-column align="center" label="调入库存状态" prop="status2" min-width="110" show-overflow-tooltip></el-table-column>
  226. <el-table-column align="center" label="调出货主" min-width="100" show-overflow-tooltip>
  227. <template slot-scope="">弘格</template>
  228. </el-table-column>
  229. <el-table-column align="center" label="调入货主" min-width="100" show-overflow-tooltip>
  230. <template slot-="scope">弘格</template>
  231. </el-table-column>
  232. <el-table-column align="center" label="备注" prop="remark" min-width="160" show-overflow-tooltip></el-table-column>
  233. </el-table>
  234. </div>
  235. <span slot="footer" class="dialog-footer">
  236. <el-button @click="closeDirectDialog">取 消</el-button>
  237. <el-button type="primary" @click="submitDirectForm">确 定</el-button>
  238. </span>
  239. </el-dialog>
  240. </div>
  241. </template>
  242. <script>
  243. import { getDetail, getWarehouseList, adjustDeliver, finishData, directOrder } from "@/api/supply/retail";
  244. export default {
  245. name: 'RetailDetail',
  246. componentName: 'RetailDetail',
  247. props: ['listItem'],
  248. filters: {
  249. statusFilter(val) {
  250. const statusList = [
  251. { label: '已保存', value: 'SAVE' },
  252. { label: '待审核', value: 'WAIT' },
  253. { label: '审核通过', value: 'OK' },
  254. { label: '审核驳回', value: 'FAIL' },
  255. ];
  256. let obj = statusList.find(o => o.value == val);
  257. return obj ? obj.label : ''
  258. }
  259. },
  260. data() {
  261. return {
  262. detailData: {},
  263. isShowDeliverDialog: false,
  264. deliverForm: {
  265. date: '',
  266. warehouse: '',
  267. position: '',
  268. },
  269. deliverFormRules: {
  270. date: [
  271. { required: true, message: '请选择发货日期', trigger: 'change' }
  272. ],
  273. warehouse: [
  274. { required: true, message: '请选择发货仓库', trigger: 'change' }
  275. ],
  276. position: [
  277. { required: true, message: '请选择仓位', trigger: 'change' }
  278. ],
  279. },
  280. warehouseList: [],
  281. positionList: [],
  282. goodsList: [],
  283. isShowDirectDialog: false,
  284. directForm: {
  285. warehouse1: '',
  286. position1: '',
  287. warehouse2: '',
  288. position2: '',
  289. },
  290. directFormRules: {
  291. warehouse1: [
  292. { required: true, message: '请选择调出仓库', trigger: 'change' }
  293. ],
  294. position1: [
  295. { required: true, message: '请选择调出仓位', trigger: 'change' }
  296. ],
  297. warehouse2: [
  298. { required: true, message: '请选择调入仓库', trigger: 'change' }
  299. ],
  300. position2: [
  301. { required: true, message: '请选择调入仓位', trigger: 'change' }
  302. ],
  303. },
  304. warehouseList1: [],
  305. warehouseList2: [],
  306. positionList1: [],
  307. positionList2: [],
  308. directGoodsList: [],
  309. }
  310. },
  311. computed: {
  312. sidebar() {
  313. return this.$store.state.app.sidebar
  314. },
  315. classObj() {
  316. return {
  317. hideSidebar: !this.sidebar.opened,
  318. openSidebar: this.sidebar.opened
  319. }
  320. },
  321. isExamine() {
  322. return this.detailData.examineStatus === 'OK' || this.detailData.examineStatus === 'FAIL'
  323. },
  324. },
  325. created() {
  326. this.getDetail();
  327. },
  328. methods: {
  329. // 返回列表
  330. goBack() {
  331. this.$emit('backListFormDetail');
  332. },
  333. // 获取详情
  334. getDetail() {
  335. getDetail({id: this.listItem.id}).then(res => {
  336. this.detailData = res.data;
  337. })
  338. },
  339. // 获取仓库列表
  340. getWarehouseList() {
  341. getWarehouseList({
  342. pageNum: 1,
  343. pageSize: -1,
  344. }).then(res => {
  345. this.warehouseList = res.data.records;
  346. this.warehouseList1 = res.data.records;
  347. this.warehouseList2 = res.data.records;
  348. })
  349. },
  350. // 更改仓库
  351. changeWarehouse() {
  352. this.deliverForm.position = '';
  353. let obj = this.warehouseList.find(o => o.id == this.deliverForm.warehouse);
  354. this.positionList = obj.kingDeeStocks;
  355. },
  356. // 打开 直调发货
  357. openDeliverDialog() {
  358. this.isShowDeliverDialog = true;
  359. this.goodsList = this.detailData.retailOrderItemList;
  360. this.getWarehouseList();
  361. },
  362. // 关闭 直调发货
  363. closeDeliverDialog() {
  364. this.isShowDeliverDialog = false;
  365. },
  366. // 提交 直调发货
  367. submitDeliverForm() {
  368. this.$refs.deliverForm.validate((valid) => {
  369. if (valid) {
  370. for(let i=0; i<this.goodsList.length; i++) {
  371. if(!this.goodsList[i].adjustNum && this.goodsList[i].isDirectTransfer) {
  372. this.$errorMsg('请输入直调数量');
  373. return;
  374. }
  375. }
  376. let goodsList = this.goodsList.map((item) => {
  377. return {
  378. itemId: item.id,
  379. qty: item.adjustNum || 0,
  380. }
  381. });
  382. let params = {
  383. orderNo: this.listItem.id,
  384. orderDate: this.deliverForm.date + ' 00:00:00',
  385. correspondId: this.deliverForm.warehouse,
  386. stockId: this.deliverForm.position,
  387. directItems: goodsList
  388. }
  389. adjustDeliver(params).then(res => {
  390. this.$successMsg();
  391. this.isShowDeliverDialog = false;
  392. this.getDetail();
  393. })
  394. }
  395. })
  396. },
  397. // 直调完成
  398. handleFinish() {
  399. this.$confirm('此操作将直调完成, 是否继续?', '提示', {
  400. confirmButtonText: '确定',
  401. cancelButtonText: '取消',
  402. type: 'warning'
  403. }).then(() => {
  404. finishData({
  405. id: this.listItem.id
  406. }).then(res => {
  407. this.$successMsg();
  408. this.getDetail();
  409. })
  410. }).catch(() => {});
  411. },
  412. // 更改调出仓库
  413. changeWarehouse1() {
  414. this.directForm.position1 = '';
  415. let obj = this.warehouseList1.find(o => o.id == this.directForm.warehouse1);
  416. this.positionList1 = obj.kingDeeStocks;
  417. this.directGoodsList.forEach(item => {
  418. item.warehouse1 = obj.name;
  419. });
  420. },
  421. // 更改调入仓库
  422. changeWarehouse2() {
  423. this.directForm.position2 = '';
  424. let obj = this.warehouseList2.find(o => o.id == this.directForm.warehouse2);
  425. this.positionList2 = obj.kingDeeStocks;
  426. this.directGoodsList.forEach(item => {
  427. item.warehouse2 = obj.name;
  428. });
  429. },
  430. // 更改调出仓位
  431. changePosition1() {
  432. let obj = this.positionList1.find(o => o.id == this.directForm.position1);
  433. this.directGoodsList.forEach(item => {
  434. item.position1 = obj.name;
  435. item.status1 = obj.defStockStatusName;
  436. });
  437. },
  438. // 更改调入仓位
  439. changePosition2() {
  440. let obj = this.positionList2.find(o => o.id == this.directForm.position2);
  441. this.directGoodsList.forEach(item => {
  442. item.position2 = obj.name;
  443. item.status2 = obj.defStockStatusName;
  444. });
  445. },
  446. // 打开 提前开票
  447. openDirectDialog() {
  448. this.isShowDirectDialog = true;
  449. this.directGoodsList = this.detailData.retailOrderItemList;
  450. this.getWarehouseList();
  451. },
  452. // 关闭 提前开票
  453. closeDirectDialog() {
  454. this.isShowDirectDialog = false;
  455. },
  456. // 提交 提前开票
  457. submitDirectForm() {
  458. this.$refs.directForm.validate((valid) => {
  459. if (valid) {
  460. let warehouseItem1 = this.warehouseList1.find(o => o.id == this.directForm.warehouse1);
  461. let positionItem1 = this.positionList1.find(o => o.id == this.directForm.position1);
  462. let warehouseItem2 = this.warehouseList2.find(o => o.id == this.directForm.warehouse2);
  463. let positionItem2 = this.positionList2.find(o => o.id == this.directForm.position2);
  464. let params = {
  465. orderNo: this.detailData.enginOrderId,
  466. orderType: 'RETAIL', // TRADE=商用 HOME=家用 RETAIL=零售单 RETAIL_POLICY 销售政策单
  467. correspondId: this.directForm.warehouse1,
  468. correspondName: warehouseItem1.name,
  469. stockId: this.directForm.position1,
  470. stockName: positionItem1.name,
  471. inCorrespondId: this.directForm.warehouse2,
  472. inCorrespondName: warehouseItem2.name,
  473. inStockId: this.directForm.position2,
  474. inStockName: positionItem2.name,
  475. }
  476. directOrder(params).then(res => {
  477. this.$successMsg();
  478. this.isShowDirectDialog = false;
  479. this.getDetail();
  480. })
  481. }
  482. })
  483. },
  484. }
  485. }
  486. </script>
  487. <style scoped lang="scss">
  488. .detail-container {
  489. width: 100%;
  490. height: 100%;
  491. }
  492. .main-title {
  493. display: flex;
  494. justify-content: space-between;
  495. align-items: center;
  496. margin-top: 20px;
  497. height: 60px;
  498. border-bottom: 1px solid #DCDFE6;
  499. margin-bottom: 20px;
  500. .title {
  501. font-size: 16px;
  502. font-weight: 600;
  503. padding-left: 10px;
  504. }
  505. }
  506. .progress-container {
  507. display: flex;
  508. .el-progress {
  509. width: 500px;
  510. }
  511. }
  512. </style>