|
@@ -0,0 +1,690 @@
|
|
|
+// 出入库任务查看
|
|
|
+<template>
|
|
|
+ <div class="container">
|
|
|
+ <el-row>
|
|
|
+ <el-col :span="12">
|
|
|
+ <h2 class="bg-left title">任务详情</h2>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="12" class="bg-right">
|
|
|
+ <el-button
|
|
|
+ class="bg-bottom"
|
|
|
+ type="primary"
|
|
|
+ size="small"
|
|
|
+ @click="returnsales()"
|
|
|
+ ><img
|
|
|
+ width="6"
|
|
|
+ height="10"
|
|
|
+ style="vertical-align: bottom; margin-right: 3px"
|
|
|
+ src="../../../public/img/lujing.png"
|
|
|
+ alt=""
|
|
|
+ />返回</el-button
|
|
|
+ >
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ <div class="basicInformation">
|
|
|
+ <div class="small-title">
|
|
|
+ </div>
|
|
|
+ <el-form ref="dataList" :model="dataList" label-width="140px">
|
|
|
+ <!-- 任务编号 -->
|
|
|
+ <el-form-item label="任务编号">
|
|
|
+ <el-select
|
|
|
+ disabled
|
|
|
+ v-model="dataList.warehouseName"
|
|
|
+ class="typeselect"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="item in warehouseNameList"
|
|
|
+ :key="item.constKey"
|
|
|
+ :label="item.warehouseName"
|
|
|
+ :value="item.warehouseName"
|
|
|
+ />
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+
|
|
|
+ <!-- 合同编号 -->
|
|
|
+ <el-form-item label="合同编号">
|
|
|
+ <el-select
|
|
|
+ disabled
|
|
|
+ v-model="dataList.contractNo"
|
|
|
+ placeholder="请输入合同编号"
|
|
|
+ class="typeselect"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="item in contractNoList"
|
|
|
+ :key="item.constKey"
|
|
|
+ :label="item.contractNo"
|
|
|
+ :value="item.contractNo"
|
|
|
+ ></el-option>
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ <!-- 库房名 -->
|
|
|
+ <el-form-item label="库房名">
|
|
|
+ <el-select
|
|
|
+ disabled
|
|
|
+ v-model="dataList.goodsName"
|
|
|
+ placeholder="货名"
|
|
|
+ class="typeselect"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="item in goodnameList"
|
|
|
+ :key="item.constKey"
|
|
|
+ :label="item.constValue"
|
|
|
+ :value="item.constValue"
|
|
|
+ ></el-option>
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ <!-- 类型-->
|
|
|
+ <el-form-item label="类型">
|
|
|
+ <el-select
|
|
|
+ disabled
|
|
|
+ v-model="dataList.goodsName"
|
|
|
+ placeholder="货名"
|
|
|
+ class="typeselect"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="item in goodnameList"
|
|
|
+ :key="item.constKey"
|
|
|
+ :label="item.constValue"
|
|
|
+ :value="item.constValue"
|
|
|
+ ></el-option>
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ <!-- 货名 -->
|
|
|
+ <el-form-item label="货名">
|
|
|
+ <el-select
|
|
|
+ disabled
|
|
|
+ v-model="dataList.goodsName"
|
|
|
+ placeholder="货名"
|
|
|
+ class="typeselect"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="item in goodnameList"
|
|
|
+ :key="item.constKey"
|
|
|
+ :label="item.constValue"
|
|
|
+ :value="item.constValue"
|
|
|
+ ></el-option>
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ <!--重量(吨)-->
|
|
|
+ <el-form-item label="重量(吨)">
|
|
|
+ <el-input
|
|
|
+ disabled
|
|
|
+ v-model="dataList.weight"
|
|
|
+ placeholder="请输入重量"
|
|
|
+ maxlength="120"
|
|
|
+ size="small"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <!-- 预计日期 -->
|
|
|
+ <el-form-item
|
|
|
+ label="预计日期"
|
|
|
+ span="1"
|
|
|
+ prop="predictDate"
|
|
|
+ class="deliverydate"
|
|
|
+ >
|
|
|
+ <el-date-picker
|
|
|
+ disabled
|
|
|
+ v-model="dataList.predictDate"
|
|
|
+ type="date"
|
|
|
+ placeholder="请选择预计出库日期"
|
|
|
+ value-format="yyyy-MM-dd"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <!--经办人-->
|
|
|
+ <el-form-item label="经办人">
|
|
|
+ <el-select
|
|
|
+ disabled
|
|
|
+ v-model="dataList.agent"
|
|
|
+ placeholder="请选择经办人"
|
|
|
+ filterable
|
|
|
+ :filter-method="dataFilter"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="item in options"
|
|
|
+ :key="item.value"
|
|
|
+ :label="item.staffName"
|
|
|
+ :value="item.staffName"
|
|
|
+ />
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ <!-- 品级 -->
|
|
|
+ <el-form-item label="品级">
|
|
|
+ <el-select
|
|
|
+ v-model="dataList.grade"
|
|
|
+ placeholder=""
|
|
|
+ class="typeselect"
|
|
|
+ disabled
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="item in gradeList"
|
|
|
+ :key="item.constKey"
|
|
|
+ :label="item.constValue"
|
|
|
+ :value="item.constValue"
|
|
|
+ />
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ <!--容重(克/升)>=-->
|
|
|
+ <el-form-item label="容重(克/升)>=">
|
|
|
+ <el-input
|
|
|
+ disabled
|
|
|
+ v-model="dataList.bulkDensity"
|
|
|
+ placeholder="请输入容重"
|
|
|
+ maxlength="120"
|
|
|
+ size="small"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <!--水分(%)<=-->
|
|
|
+ <el-form-item label="水分(%)<=">
|
|
|
+ <el-input
|
|
|
+ disabled
|
|
|
+ v-model="dataList.waterContent"
|
|
|
+ placeholder="请输入水分占比"
|
|
|
+ maxlength="120"
|
|
|
+ size="small"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <!--单价(元/吨)-->
|
|
|
+ <el-form-item label="单价(元/吨)">
|
|
|
+ <el-input
|
|
|
+ disabled
|
|
|
+ v-model="dataList.unitPrice"
|
|
|
+ placeholder="请输入单价"
|
|
|
+ maxlength="120"
|
|
|
+ size="small"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <!--发布人-->
|
|
|
+ <el-form-item label="发布人">
|
|
|
+ <el-input
|
|
|
+ disabled
|
|
|
+ v-model="dataList.unitPrice"
|
|
|
+ maxlength="120"
|
|
|
+ size="small"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <!--审核人-->
|
|
|
+ <el-form-item label="审核人">
|
|
|
+ <el-input
|
|
|
+ disabled
|
|
|
+ v-model="dataList.unitPrice"
|
|
|
+ maxlength="120"
|
|
|
+ size="small"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <!--仓位-->
|
|
|
+ <el-form-item label="仓位">
|
|
|
+ <el-input
|
|
|
+ disabled
|
|
|
+ v-model="dataList.unitPrice"
|
|
|
+ maxlength="120"
|
|
|
+ size="small"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <!--业务描述=-->
|
|
|
+ <el-form-item label="业务描述">
|
|
|
+ <el-input
|
|
|
+ disabled
|
|
|
+ v-model="dataList.businessDescribe"
|
|
|
+ placeholder="请输入业务描述,不超过150字"
|
|
|
+ maxlength="150"
|
|
|
+ size="small"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 提交 -->
|
|
|
+ <div style="text-align: right; padding: 10px" class="center">
|
|
|
+ <el-button class="bg-bottom" type="primary" size="small" @click="submit()"
|
|
|
+ >提交</el-button
|
|
|
+ >
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+<script>
|
|
|
+import {
|
|
|
+ getwarehousename,
|
|
|
+ xialaNo,
|
|
|
+ addoreditoutput,
|
|
|
+ outexamine,
|
|
|
+} from '@/model/tasksport/index'
|
|
|
+import { packList } from '@/model/contarct/index'
|
|
|
+import { pullDown, getstaff } from '@/model/warehouse/index'
|
|
|
+import { downloadFile } from '@/utils/batchDown'
|
|
|
+import Pagination from '@/components/Pagination'
|
|
|
+import { mapActions, mapGetters, mapState } from 'vuex'
|
|
|
+import WsUpload from '@/components/WsUpload'
|
|
|
+// import { dayjs, fmoney, EventBus } from 'base-core-lib'
|
|
|
+import { dayjs, EventBus } from 'base-core-lib'
|
|
|
+export default {
|
|
|
+ name: 'viewSpareMoney',
|
|
|
+ components: {
|
|
|
+ WsUpload,
|
|
|
+ Pagination,
|
|
|
+ },
|
|
|
+ watch: {
|
|
|
+ // vesselId(val) {
|
|
|
+ // this.getList()
|
|
|
+ // },
|
|
|
+ isShow(val) {
|
|
|
+ this.showType = val
|
|
|
+ },
|
|
|
+ },
|
|
|
+ computed: {
|
|
|
+ ...mapGetters(['deptBudgetList']),
|
|
|
+ },
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ //弹出框
|
|
|
+ dialogViewSpareMoney: false,
|
|
|
+ dialogApproveFormVisible: false,
|
|
|
+ // 船舶类型
|
|
|
+ monetaryKey: null,
|
|
|
+ // 表格显示数据
|
|
|
+ tableDate: [],
|
|
|
+ // 是否显示
|
|
|
+ showType: true,
|
|
|
+ // 年
|
|
|
+ year: '',
|
|
|
+ contractNoList: [],
|
|
|
+ deptBudgetTotal: 0,
|
|
|
+ readonly: true,
|
|
|
+ currentPage: 1,
|
|
|
+ pageSize: 10,
|
|
|
+ searchType: 1,
|
|
|
+ searchKeyWord: '',
|
|
|
+ radio: '1',
|
|
|
+ contractType: 2,
|
|
|
+ startDate: null,
|
|
|
+ endDate: null,
|
|
|
+ goodnameList: [],
|
|
|
+ checked: true,
|
|
|
+ form: {},
|
|
|
+
|
|
|
+ staffList: [],
|
|
|
+ options: [],
|
|
|
+ storageType: [],
|
|
|
+ storageType1: [],
|
|
|
+ outContractNo: [],
|
|
|
+ // 提交类型
|
|
|
+ submitType: true,
|
|
|
+ status: [],
|
|
|
+ unitPricechange: [],
|
|
|
+ warehouseNameList: [],
|
|
|
+ warehouseNameList1: [],
|
|
|
+ waterContentchange: [],
|
|
|
+ appendixIdsAdd: '',
|
|
|
+ uploadSuccess: {},
|
|
|
+ warehouseInOutDetail: {},
|
|
|
+ onChange: {},
|
|
|
+ deptBudgetList1: [],
|
|
|
+ gradeList: [],
|
|
|
+ rules: {
|
|
|
+ netWeight: [
|
|
|
+ {
|
|
|
+ required: true,
|
|
|
+ type: 'number',
|
|
|
+ message: '请输入活动名称',
|
|
|
+ trigger: 'blur',
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ },
|
|
|
+ size: 10,
|
|
|
+ compId: sessionStorage.getItem('ws-pf_compId'),
|
|
|
+ deptCircularPage: {},
|
|
|
+ packtypeList: {},
|
|
|
+ date: {
|
|
|
+ year: dayjs().format('YYYY'),
|
|
|
+ month: dayjs().format('MM'),
|
|
|
+ },
|
|
|
+ contractList: [],
|
|
|
+ inOutTaskNo: '',
|
|
|
+ inOutTaskNo1: '',
|
|
|
+ dataList: { taskTypeKey: '1' },
|
|
|
+ dataList1: { taskTypeKey: '1' },
|
|
|
+ historyList: [],
|
|
|
+ pickerBeginDateBefore: {
|
|
|
+ disabledDate: (time) => {
|
|
|
+ return time.getTime() > Date.now()
|
|
|
+ },
|
|
|
+ },
|
|
|
+ accessoryTFs: false,
|
|
|
+ }
|
|
|
+ },
|
|
|
+ mounted() {
|
|
|
+ this.getList()
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ //返回按钮
|
|
|
+ revert() {
|
|
|
+ this.$router.go(-1)
|
|
|
+ },
|
|
|
+ returnsales() {
|
|
|
+ this.$router.push({ path: 'tranManagementWarehouseInOutTask' })
|
|
|
+ },
|
|
|
+ // 获取当前年月日
|
|
|
+ getdate() {
|
|
|
+ var date = new Date()
|
|
|
+ var year = date.getFullYear() //获取完整的年份(4位)
|
|
|
+ var mouth = date.getMonth() + 1 //获取当前月份(0-11,0代表1月)
|
|
|
+ var datetime = date.getDate() //获取当前日(1-31)
|
|
|
+ if (mouth < 10) {
|
|
|
+ mouth = '0' + mouth
|
|
|
+ }
|
|
|
+ if (datetime < 10) {
|
|
|
+ datetime = '0' + datetime
|
|
|
+ }
|
|
|
+ return year + mouth + datetime
|
|
|
+ },
|
|
|
+ // 随机验证码
|
|
|
+ verifyinit() {
|
|
|
+ var arr = []
|
|
|
+ for (var i = 48; i < 123; i++) {
|
|
|
+ if (i > 57 && i < 65) continue
|
|
|
+ if (i > 90 && i < 97) continue
|
|
|
+ arr.push(String.fromCharCode(i))
|
|
|
+ }
|
|
|
+ arr.sort(function () {
|
|
|
+ return Math.random() - 0.5
|
|
|
+ })
|
|
|
+ arr.length = 4
|
|
|
+
|
|
|
+ return arr.join('')
|
|
|
+ },
|
|
|
+ dataFilter(val) {
|
|
|
+ // console.log(val,"名")
|
|
|
+ this.deptBudgetList.staffList = val
|
|
|
+ if (val) {
|
|
|
+ //val存在
|
|
|
+ this.options = this.staffList.filter((item) => {
|
|
|
+ if (
|
|
|
+ !!~item.staffName.indexOf(val) ||
|
|
|
+ !!~item.staffName.toUpperCase().indexOf(val.toUpperCase())
|
|
|
+ ) {
|
|
|
+ return true
|
|
|
+ }
|
|
|
+ })
|
|
|
+ } else {
|
|
|
+ //val为空时,还原数组
|
|
|
+ this.options = this.staffList
|
|
|
+ }
|
|
|
+ },
|
|
|
+ selectstaff(e) {
|
|
|
+ for (var i = 0; i < this.staffList.length; i++) {
|
|
|
+ if (this.staffList[i].staffName == e) {
|
|
|
+ this.dataList.agentKey = this.staffList[i].staffId
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ selectstaff1(e) {
|
|
|
+ for (var i = 0; i < this.staffList.length; i++) {
|
|
|
+ if (this.staffList[i].staffName == e) {
|
|
|
+ this.dataList1.agentKey = this.staffList[i].staffId
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ requestadd(list, status) {
|
|
|
+ this.$refs.dataList.validate((valid) => {
|
|
|
+ if (valid) {
|
|
|
+ list.compId = sessionStorage.getItem('ws-pf_compId')
|
|
|
+ list.publisher =
|
|
|
+ sessionStorage.getItem('ws-pf_roleName') +
|
|
|
+ sessionStorage.getItem('ws-pf_staffName')
|
|
|
+ addoreditoutput(list)
|
|
|
+ .toPromise()
|
|
|
+ .then((response) => {
|
|
|
+ this.$message.success('添加成功')
|
|
|
+ this.$router.push({ path: 'tranManagementWarehouseInOutTask' })
|
|
|
+ })
|
|
|
+ } else {
|
|
|
+ EventBus.$emit('error', this.$t('showMessage.asteriskRequired'))
|
|
|
+ return false
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ //提交按钮
|
|
|
+ submit() {
|
|
|
+ if (this.dataList.taskTypeKey == 1) {
|
|
|
+ this.dataList.inOutTaskNo = this.inOutTaskNo
|
|
|
+ this.requestadd(this.dataList)
|
|
|
+ } else if (this.dataList.taskTypeKey == 2) {
|
|
|
+ this.dataList.inOutTaskNo = this.inOutTaskNo1
|
|
|
+ this.requestadd(this.dataList)
|
|
|
+ } else if (
|
|
|
+ this.dataList.taskTypeKey == 3 ||
|
|
|
+ this.dataList.taskTypeKey == 4
|
|
|
+ ) {
|
|
|
+ this.dataList.inOutTaskNo = this.inOutTaskNo
|
|
|
+ this.dataList.relevanceId = this.GetRandomNum(100000, 999999)
|
|
|
+ this.requestadd(this.dataList, 'repetition')
|
|
|
+ this.dataList1.inOutTaskNo = this.inOutTaskNo1
|
|
|
+ this.dataList1.relevanceId = this.dataList.relevanceId
|
|
|
+ this.requestadd(this.dataList1, 'repetition')
|
|
|
+ }
|
|
|
+ },
|
|
|
+ selectwarehouseName() {},
|
|
|
+ tarechange(e) {
|
|
|
+ if (this.dataList.grossWeight && this.dataList.tare) {
|
|
|
+ this.dataList.netWeight = Number(
|
|
|
+ this.dataList.grossWeight - this.dataList.tare
|
|
|
+ )
|
|
|
+ }
|
|
|
+ },
|
|
|
+ grossWeightchange(e) {
|
|
|
+ if (this.dataList.grossWeight && this.dataList.tare) {
|
|
|
+ this.dataList.netWeight = Number(
|
|
|
+ this.dataList.grossWeight - this.dataList.tare
|
|
|
+ )
|
|
|
+ }
|
|
|
+ },
|
|
|
+ selectgoodsName(e) {
|
|
|
+ for (var i = 0; i < this.goodnameList.length; i++) {
|
|
|
+ if (this.goodnameList[i].constValue == e) {
|
|
|
+ this.dataList.goodsNameKey = this.goodnameList[i].constKey
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ selectgoodsName1(e) {
|
|
|
+ for (var i = 0; i < this.goodnameList.length; i++) {
|
|
|
+ if (this.goodnameList[i].constValue == e) {
|
|
|
+ this.dataList1.goodsNameKey = this.goodnameList[i].constKey
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ selectpackingMethod(e) {
|
|
|
+ for (var i = 0; i < this.packtypeList.length; i++) {
|
|
|
+ if (this.packtypeList[i].constValue == e) {
|
|
|
+ this.dataList.packingMethodKey = this.packtypeList[i].constKey
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ selectpackingMethod1(e) {
|
|
|
+ for (var i = 0; i < this.packtypeList.length; i++) {
|
|
|
+ if (this.packtypeList[i].constValue == e) {
|
|
|
+ this.dataList1.packingMethodKey = this.packtypeList[i].constKey
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ selectstorageType(e) {
|
|
|
+ for (var i = 0; i < this.storageType.length; i++) {
|
|
|
+ if (this.storageType[i].constValue == e) {
|
|
|
+ this.dataList.inOutTypeKey = this.storageType[i].constKey
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ selectstorageType1(e) {
|
|
|
+ for (var i = 0; i < this.storageType1.length; i++) {
|
|
|
+ if (this.storageType1[i].constValue == e) {
|
|
|
+ this.dataList1.inOutTypeKey = this.storageType[i].constKey
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ handleClose() {
|
|
|
+ this.accessoryTFs = false
|
|
|
+ },
|
|
|
+ tasktypechange() {
|
|
|
+ this.tasknumber()
|
|
|
+ },
|
|
|
+ GetRandomNum(Min, Max) {
|
|
|
+ var Range = Max - Min
|
|
|
+ var Rand = Math.random()
|
|
|
+ return Min + Math.round(Rand * Range)
|
|
|
+ },
|
|
|
+ getList() {
|
|
|
+ console.log(11111)
|
|
|
+ outexamine({ relevanceId: this.$route.query.relevanceId })
|
|
|
+ .toPromise()
|
|
|
+ .then((response) => {
|
|
|
+ if (response.length > 1) {
|
|
|
+ this.dataList = response[0]
|
|
|
+ this.dataList1 = response[1]
|
|
|
+ } else {
|
|
|
+ this.dataList = response[0]
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+
|
|
|
+ // deletecontract(){},
|
|
|
+ //删除
|
|
|
+ approve() {},
|
|
|
+ listQuery() {},
|
|
|
+ total() {},
|
|
|
+ clearfiltQuery() {},
|
|
|
+ selectCrtDuty() {},
|
|
|
+ },
|
|
|
+}
|
|
|
+</script>
|
|
|
+<style lang="scss" scoped>
|
|
|
+/deep/.basicInformation {
|
|
|
+ .el-info-table {
|
|
|
+ border: none;
|
|
|
+ position: relative;
|
|
|
+ }
|
|
|
+ .el-form-item {
|
|
|
+ width: 33.3333%;
|
|
|
+ border: none;
|
|
|
+ margin: 0;
|
|
|
+ .el-form-item__label {
|
|
|
+ text-align: left;
|
|
|
+ font-size: 14px;
|
|
|
+ font-family: PingFangSC-Regular, PingFang SC;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #8890b1;
|
|
|
+ }
|
|
|
+ .el-form-item__content {
|
|
|
+ padding-left: 0px;
|
|
|
+ padding-right: 10px;
|
|
|
+ background: #fff;
|
|
|
+ white-space: nowrap;
|
|
|
+ height: 40px;
|
|
|
+ display: flex;
|
|
|
+ -webkit-box-align: center;
|
|
|
+ align-items: center;
|
|
|
+ text-align: left;
|
|
|
+ overflow: hidden;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+/deep/.el-radio {
|
|
|
+ color: #606266;
|
|
|
+ font-weight: 500;
|
|
|
+ line-height: 1;
|
|
|
+ cursor: pointer;
|
|
|
+ white-space: nowrap;
|
|
|
+ outline: 0;
|
|
|
+ margin-right: 30px;
|
|
|
+ margin-top: 15px;
|
|
|
+}
|
|
|
+/deep/.el-radio__inner {
|
|
|
+ border: 1px solid #dcdfe6;
|
|
|
+ border-radius: 100%;
|
|
|
+ width: 14px;
|
|
|
+ height: 14px;
|
|
|
+ background-color: #fff;
|
|
|
+ cursor: pointer;
|
|
|
+ -webkit-box-sizing: border-box;
|
|
|
+ box-sizing: border-box;
|
|
|
+ margin-left: 100px;
|
|
|
+}
|
|
|
+/deep/.el-radio__input {
|
|
|
+ white-space: nowrap;
|
|
|
+ cursor: pointer;
|
|
|
+ outline: 0;
|
|
|
+ line-height: 1;
|
|
|
+ vertical-align: middle;
|
|
|
+ margin-top: -1px;
|
|
|
+}
|
|
|
+.title {
|
|
|
+ position: relative;
|
|
|
+ padding-left: 10px;
|
|
|
+}
|
|
|
+.title::before {
|
|
|
+ content: '';
|
|
|
+ display: inline-block;
|
|
|
+ width: 5px;
|
|
|
+ height: 30px;
|
|
|
+ background: #5473e8;
|
|
|
+ position: absolute;
|
|
|
+ left: 0;
|
|
|
+}
|
|
|
+.el-form {
|
|
|
+ padding: 0 15%;
|
|
|
+ display: flex;
|
|
|
+ flex-wrap: wrap;
|
|
|
+ margin-left: -50px;
|
|
|
+ margin-top: 15px;
|
|
|
+ width: 110%;
|
|
|
+}
|
|
|
+.el-button--primary {
|
|
|
+ background-color: #5878e8;
|
|
|
+ border-color: #5878e8;
|
|
|
+}
|
|
|
+.el-col {
|
|
|
+ background: #f6f7fc;
|
|
|
+}
|
|
|
+.bg-right {
|
|
|
+ text-align: right;
|
|
|
+ padding: 16px 20px;
|
|
|
+}
|
|
|
+.center {
|
|
|
+ position: relative;
|
|
|
+ top: 50px;
|
|
|
+ width: 40%;
|
|
|
+ height: 2000px;
|
|
|
+ margin: 0 auto;
|
|
|
+ margin-right: 180px;
|
|
|
+}
|
|
|
+/deep/.el-form-item__label {
|
|
|
+ width: 160px;
|
|
|
+}
|
|
|
+.inspector {
|
|
|
+ width: 50%;
|
|
|
+}
|
|
|
+/deep/.el-form-item--small .el-form-item__label,
|
|
|
+.el-form-item--small .el-form-item__content {
|
|
|
+ text-align: left;
|
|
|
+}
|
|
|
+/deep/.el-input--small {
|
|
|
+ font-size: 13px;
|
|
|
+ position: relative;
|
|
|
+ display: inline-block;
|
|
|
+}
|
|
|
+.center1 .small-title {
|
|
|
+ margin-left: 150px;
|
|
|
+}
|
|
|
+.center1 {
|
|
|
+ width: 90%;
|
|
|
+ margin: 0 auto;
|
|
|
+ margin-left: 10px;
|
|
|
+ margin-top: 25px;
|
|
|
+}
|
|
|
+/deep/.el-input--small .el-input__inner {
|
|
|
+ height: 32px;
|
|
|
+ line-height: 32px;
|
|
|
+}
|
|
|
+/deep/.el-select {
|
|
|
+ display: inline-block;
|
|
|
+ position: relative;
|
|
|
+ width: 100%;
|
|
|
+}
|
|
|
+</style>
|