|
@@ -67,7 +67,8 @@
|
|
|
type="primary"
|
|
|
@click="getCode"
|
|
|
:disabled="!screenForm.phone || countDown != 60"
|
|
|
- >{{ countDown == 60 ? getCodeText : '重新获取(' + countDown + 's)' }}</el-button
|
|
|
+ >{{ countDown == 60 ? getCodeText : '重新获取(' + countDown + 's)' }}
|
|
|
+ </el-button
|
|
|
>
|
|
|
</el-col>
|
|
|
<el-col :xs="24" :sm="8" :lg="8">
|
|
@@ -81,7 +82,8 @@
|
|
|
type="primary"
|
|
|
:disabled="!screenForm.phone || !screenForm.code"
|
|
|
@click="getPickupManInfo"
|
|
|
- >确 认</el-button
|
|
|
+ >确 认
|
|
|
+ </el-button
|
|
|
>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
@@ -147,8 +149,9 @@
|
|
|
<el-form-item prop="status" label-width="0">
|
|
|
<el-radio-group v-model="screenForm.status" size="mini" @change="getList()">
|
|
|
<el-radio-button v-for="(item, index) in statusList" :key="index" :label="item.value">{{
|
|
|
- item.label
|
|
|
- }}</el-radio-button>
|
|
|
+ item.label
|
|
|
+ }}
|
|
|
+ </el-radio-button>
|
|
|
</el-radio-group>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
@@ -248,13 +251,13 @@
|
|
|
"
|
|
|
/>
|
|
|
<span>{{
|
|
|
- scope.row.orderType === 'TRADE' ||
|
|
|
- scope.row.orderType === 'HOME' ||
|
|
|
- scope.row.orderType === 'REQUISITION_TRADE' ||
|
|
|
- scope.row.orderType === 'REQUISITION_HOME'
|
|
|
- ? scope.row.enginOrderNo
|
|
|
- : scope.row.mainOrderId
|
|
|
- }}</span>
|
|
|
+ scope.row.orderType === 'TRADE' ||
|
|
|
+ scope.row.orderType === 'HOME' ||
|
|
|
+ scope.row.orderType === 'REQUISITION_TRADE' ||
|
|
|
+ scope.row.orderType === 'REQUISITION_HOME'
|
|
|
+ ? scope.row.enginOrderNo
|
|
|
+ : scope.row.mainOrderId
|
|
|
+ }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column align="left" label="发货申请单号" prop="invoiceId" min-width="130" show-overflow-tooltip>
|
|
@@ -366,7 +369,8 @@
|
|
|
@click="toPrint"
|
|
|
:disabled="tableSelection.length < 1"
|
|
|
v-if="$checkBtnRole('print', $route.meta.roles)"
|
|
|
- >打印发货单</el-button
|
|
|
+ >打印发货单
|
|
|
+ </el-button
|
|
|
>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -434,6 +438,7 @@ import { getDealerList, getListCustomer } from '@/api/basic_data/dealer'
|
|
|
import PickupPrint from '@/views/supply/pickup/components/pickup_print'
|
|
|
|
|
|
import printPreview from './components/design/preview.vue'
|
|
|
+
|
|
|
export default {
|
|
|
components: {
|
|
|
PickupPrint,
|
|
@@ -654,7 +659,7 @@ export default {
|
|
|
}
|
|
|
this.listLoading = true
|
|
|
|
|
|
- let params = {
|
|
|
+ const params = {
|
|
|
pageNum: this.currentPage,
|
|
|
pageSize: 200,
|
|
|
// takerId: this.screenForm.manId,
|
|
@@ -708,7 +713,7 @@ export default {
|
|
|
// 检查是否一致
|
|
|
isAllEqual(array) {
|
|
|
if (array.length > 0) {
|
|
|
- return !array.some(function (item, index) {
|
|
|
+ return !array.some(function(item, index) {
|
|
|
return item.informationKey !== array[0].informationKey
|
|
|
})
|
|
|
} else {
|
|
@@ -785,12 +790,14 @@ export default {
|
|
|
height: 60px;
|
|
|
border-bottom: 1px solid #dcdfe6;
|
|
|
margin-bottom: 20px;
|
|
|
+
|
|
|
.title {
|
|
|
font-size: 16px;
|
|
|
font-weight: 600;
|
|
|
padding-left: 10px;
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
.text {
|
|
|
word-break: break-all !important;
|
|
|
height: 200px;
|