123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420 |
- <!--销售合同-->
- <!--2019年5月30日 20:25:16 by jlx-->
- <template>
- <div>
- <BaseHeaderLayout :leftSpan="10">
- <template slot="left">
- <ws-button
- type="primary"
- :disable="checkBtn"
- @click="handleAdd()"
- v-hasPermission="
- `${$permission('PERMISSIONS.PURSPAPPLINFO_CREATEINSTORE')}`
- "
- >添加</ws-button
- >
- <ws-button
- :disable="checkBtn"
- @click="enquiry(3)"
- v-hasPermission="
- `${$permission('PERMISSIONS.PURSPAPPLINFO_CREATEINSTORE')}`
- "
- >导出</ws-button
- >
- </template>
- <template slot="right">
- <ws-select
- v-model="deptBudgetList.crtDutyId"
- placeholder=""
- class="typeselect"
- @change="selectCrtDuty"
- >
- <ws-option
- v-for="item in taskTypeList"
- :key="item.value"
- :label="item.value"
- :value="item.value"
- />
- </ws-select>
- <ws-date-picker
- :picker-options="pickerBeginDateBefore"
- v-model="deptBudgetList.birthday"
- type="date"
- default-value="1980-01-01"
- placeholder="起始日期"
- format="yyyy-MM-dd"
- value-format="yyyy-MM-dd"
- />
- <span>至</span>
- <ws-date-picker
- :picker-options="pickerBeginDateBefore"
- v-model="deptBudgetList.birthday"
- type="date"
- default-value="1980-01-01"
- placeholder="截止日期"
- format="yyyy-MM-dd"
- value-format="yyyy-MM-dd"
- />
- <ws-input
- v-model="deptBudgetList.interviewOpinion"
- placeholder="可按照合同编号、买方名称、卖方名称进行查找"
- clearable
- maxlength="500"
- type="input"
- class="findValue"
- ></ws-input>
- <!-- v-hasPermission="'procurement.sparepart.directShip'" -->
- <ws-button
- type="primary"
- :disable="checkBtn"
- @click="enquiry(3)"
- v-hasPermission="
- `${$permission('PERMISSIONS.PURSPAPPLINFO_CREATEINSTORE')}`
- "
- >查找</ws-button
- >
- </template>
- </BaseHeaderLayout>
- <el-table :data="tableData" style="width: 100%; margin-top: 10px">
- <el-table-column type="index" />
- <el-table-column prop="date" label="合同编号" width="80">
- </el-table-column>
- <el-table-column prop="name" label="货名" width="80"> </el-table-column>
- <el-table-column prop="address" label="品级"> </el-table-column>
- <el-table-column prop="address" label="重量(吨)"> </el-table-column>
- <el-table-column prop="address" label="合同单价(元)"> </el-table-column>
- <el-table-column prop="address" label="包装方式"> </el-table-column>
- <el-table-column prop="address" label="买方"> </el-table-column>
- <el-table-column prop="address" label="卖方"> </el-table-column>
- <el-table-column prop="address" label="已完成(吨)"> </el-table-column>
- <el-table-column prop="address" label="状态"> </el-table-column>
- <el-table-column prop="address" label="签订日期"> </el-table-column>
- <el-table-column prop="address" label="未回款(元)"> </el-table-column>
- <el-table-column prop="address" label="附件"> </el-table-column>
- <el-table-column prop="address" label="操作" width="300">
- <template slot-scope="scope">
- <el-button
- type="success"
- size="small"
- @click="handleExamine(scope.row)"
- >查看</el-button
- >
- <el-button type="primary" size="small" @click="handleEdit(scope.row)"
- >编辑</el-button
- >
- <el-button type="danger" size="small" @click="handleDelete(scope.row)"
- >删除</el-button
- >
- </template>
- </el-table-column>
- </el-table>
- <!-- 弹出页面-审核通过 -->
- <BaseContentModalScrap
- v-model="dialogApproveFormVisible"
- :title="$t('common.opinion')"
- :isRules="false"
- @confirm="approve"
- />
- </div>
- </template>
- <script>
- import {
- getList,
- export1,
- editstatus,
- billoperatehis,
- } from '@/model/contarct/index'
- import { dayjs } from 'base-core-lib'
- export default {
- name: 'viewSpareMoney',
- watch: {
- vesselId(val) {
- this.getVesselData()
- },
- isShow(val) {
- this.showType = val
- },
- },
- data() {
- return {
- //弹出框
- dialogViewSpareMoney: false,
- dialogApproveFormVisible: false,
- // 船舶类型
- monetaryKey: null,
- // 表格显示数据
- tableDate: [],
- // 是否显示
- showType: true,
- // 年
- year: '',
- // 提交类型
- submitType: true,
- contractForm: {},
- categoryIndex: 0,
- rulesVendor: {},
- tableData: [{ date: 1111, name: 'qqqq', address: 'errrtt' }],
- taskTypeList: [
- { value: '未完成(默认)' },
- { value: '已完成' },
- { value: '待回款' },
- { value: '全部合同' },
- ],
- deptBudgetList: {
- compId: sessionStorage.getItem('ws-pf_compId'),
- seafarerName: '',
- crtDutyId: '',
- crtDutyName: '',
- seafarerSexKey: '',
- mobilePhone: '',
- birthday: '',
- dutyId: '',
- dutyName: '',
- intendedShipId: '',
- intendedShipName: '',
- interviewPersons: '',
- interviewDates: '',
- interviewType: '',
- interviewResult: '1',
- interviewOpinion: '',
- aliasName: '',
- currentPage: 1,
- pageSize: 10,
- searchType: 1,
- searchTypeText: '未完成',
- searchKeyWord: '',
- contractType: 1,
- startDate: null,
- endDate: null,
- },
- }
- },
- created() {
- this.getList()
- this.showType = this.isShow
- },
- methods: {
- // 关闭 dialog时 处理文件url 初始化upload组件
- handleClose() {
- this.dialogViewSpareMoney = false
- },
- handleExamine(row) {
- this.$router.push({ path: 'salesContractExamine' })
- },
- handleAdd() {
- this.$router.push({ path: 'salesContractAdd' })
- },
- filtlistQuery() {},
- searchDialog() {},
- vesselIdSelected() {},
- seelctShips() {},
- checkBtn() {},
- handleEdit(row) {
- this.$router.push({ path: 'salesContractEdit' })
- },
- approve() {},
- listQuery() {},
- total() {},
- clearfiltQuery() {},
- selectCrtDuty() {},
- pickerBeginDateBefore: {
- disabledDate: (time) => {
- return time.getTime() > Date.now()
- },
- },
- getList() {
- console.log(
- this.contractType,
- this.currentPage,
- this.pageSize,
- this.searchType,
- this.searchKeyWord,
- this.startDate,
- this.endDate,
- this.contrPage
- )
- getList({
- compId: sessionStorage.getItem('ws-pf_compId'),
- contractType: this.contractType,
- currentPage: this.currentPage,
- pageSize: this.pageSize,
- searchType: this.searchType,
- searchKeyWord: this.searchKeyWord,
- startDate: this.startDate,
- endDate: this.endDate,
- contrPage: this.contrPage,
- })
- .toPromise()
- .then((response) => {
- this.contractList = response
- })
- },
- },
- }
- </script>
- <style lang="scss" scoped>
- .typeselect {
- width: 500px;
- }
- .padding-xs {
- padding: 15px;
- text-align: right;
- }
- .clearfix:after {
- content: '';
- display: block;
- clear: both;
- }
- .taskType {
- width: 100%;
- background-color: #fff;
- margin-top: 2px;
- margin-bottom: 10px;
- list-style: none;
- // padding-bottom: 20px;
- li {
- float: left;
- border: 1px solid #6ea0f3;
- border-radius: 5px;
- max-width: 190px;
- padding: 0 5px;
- text-align: center;
- margin: 10px 20px;
- cursor: pointer;
- font-size: 14px;
- p {
- margin: 8px 0px;
- span {
- color: #e74c3c;
- }
- }
- }
- li:hover {
- background-color: #e4eeff;
- color: #1d6ced;
- }
- }
- .el-date-editor--date {
- margin: 0 10px;
- }
- .findValue {
- margin: 0 10px;
- }
- .button-container {
- display: flex;
- flex-wrap: nowrap;
- justify-content: space-between;
- align-items: center;
- background-color: #fff;
- width: 100%;
- height: 50px;
- padding: 0 10px;
- & > div {
- margin-left: 10px;
- display: flex;
- flex-wrap: nowrap;
- flex-direction: row;
- & > span {
- line-height: 50px;
- }
- }
- /deep/.auditFlow-box {
- position: unset;
- margin-left: 10px;
- &/deep/.auditFlow-icon {
- width: auto;
- padding-right: 30px;
- }
- &/deep/.auditFlow-main {
- position: absolute;
- }
- }
- }
- .box-app {
- display: inline-block;
- float: left;
- margin-left: 30px;
- line-height: 50px;
- }
- /deep/.el-dialog {
- .el-form-item {
- margin-bottom: 0 !important;
- .el-input--medium {
- textarea {
- min-height: 100px !important;
- }
- }
- }
- }
- .collapse-bottom {
- margin-bottom: 20px;
- }
- .input-main .textarea .el-textarea__inner {
- width: 100%;
- z-index: 1;
- }
- /*.crt-main .textarea /deep/ .el-form-item__label {*/
- /* height: 82px;*/
- /*}*/
- // 控制select为只读的时候显示样式
- .hide-sel {
- .el-input__inner {
- border: 0px;
- }
- .el-icon-arrow-up {
- display: none;
- }
- .el-textarea__inner {
- background-color: #fff !important;
- border: 0;
- }
- .el-date-editor {
- i {
- display: none;
- }
- }
- .is-disabled {
- .el-input__inner:hover {
- background-color: #fff !important;
- border: 0;
- }
- color: #606266;
- .el-input__inner {
- background-color: #fff !important;
- border: 0;
- color: #606266;
- }
- .el-textarea__inner {
- background-color: #fff !important;
- border: 0;
- color: #606266;
- }
- }
- }
- // 控制select为只读的时候显示样式
- /deep/.ws-class-table-col {
- height: auto;
- padding: 0px 2px;
- /deep/.el-input__inner {
- padding: 0px 2px;
- }
- }
- /deep/.is-disabled {
- .el-input__prefix,
- .el-input__suffix {
- display: none;
- }
- .el-input__inner {
- background-color: #fff;
- border-color: #fff !important;
- color: #000 !important;
- font-size: 14px;
- cursor: text;
- padding: 0 !important;
- }
- }
- </style>
|