auxiliarySalesOrderDetail.vue 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918
  1. <template>
  2. <div class="s-page">
  3. <el-page-header @back="goBack" :content="title"></el-page-header>
  4. <el-divider></el-divider>
  5. <el-card class="box-card">
  6. <div slot="header" class="clearfix">
  7. <span>单据信息</span>
  8. </div>
  9. <div class="mymain-container">
  10. <el-form ref="formData" :rules="rules" :model="formData" label-width="110px" size="small" label-position="left">
  11. <el-row :gutter="20" justify="start">
  12. <el-col :span="8" v-if="id">
  13. <el-form-item label="单据状态">
  14. <el-input type="text" :value="formData.flag == 'SAVE'?'已保存':formData.flag == 'SUBMIT'?'已提交':formData.flag == 'CANCEL'?'取消订单':formData.flag == 'PAY_NOT_TAKE'?'已支付,未提货':formData.flag == 'PAY_TAKE'?'已支付,已提货':''" disabled></el-input>
  15. </el-form-item>
  16. </el-col>
  17. <el-col :span="8" v-if="id">
  18. <el-form-item label="单据编号">
  19. <el-input type="text" :value="formData.salesId" disabled></el-input>
  20. </el-form-item>
  21. </el-col>
  22. <el-col :span="8">
  23. <el-form-item label="所属商户" :required="true" >
  24. <el-input type="text" :value="companyName" disabled></el-input>
  25. </el-form-item>
  26. </el-col>
  27. <el-col :span="8">
  28. <el-form-item label="网点名称" prop="websitId">
  29. <el-select v-model="formData.websit" :disabled="formData.flag != 'SAVE' && formType!=0" value-key="websitId" @change="changeWebsit" placeholder="请选择" style="width: 100%;">
  30. <el-option
  31. v-for="item in websitList"
  32. :key="item.websitId"
  33. :label="item.name"
  34. :value="item">
  35. </el-option>
  36. </el-select>
  37. </el-form-item>
  38. </el-col>
  39. <el-col :span="8">
  40. <el-form-item label="购买方" :required="true" style="padding-bottom: 1px;">
  41. <el-radio-group v-model="formData.buyPeople" @change="formData.workerName = '';formData.workerMobile=''">
  42. <el-radio :disabled="(formData.flag != 'SAVE' && formType!=0) || formData.salesType == '工程'" label="WORKER">内部师傅</el-radio>
  43. <el-radio :disabled="(formData.flag != 'SAVE' && formType!=0) || formData.salesType == '工程'" label="CUSTOMER">客户</el-radio>
  44. </el-radio-group>
  45. </el-form-item>
  46. </el-col>
  47. <template v-if="formData.buyPeople == 'CUSTOMER'">
  48. <el-col :span="8">
  49. <el-form-item label="客户姓名" prop="workerName">
  50. <el-input type="text" :disabled="formData.flag != 'SAVE' && formType!=0" v-model="formData.workerName" placeholder="请输入"></el-input>
  51. </el-form-item>
  52. </el-col>
  53. <el-col :span="8">
  54. <el-form-item label="客户联系电话" prop="workerMobile">
  55. <el-input type="text" :disabled="formData.flag != 'SAVE' && formType!=0" v-model="formData.workerMobile" placeholder="请输入"></el-input>
  56. </el-form-item>
  57. </el-col>
  58. </template>
  59. <template v-else>
  60. <el-col :span="8">
  61. <el-form-item label="师傅姓名" prop="worker">
  62. <el-select v-model="formData.worker" :disabled="formData.flag != 'SAVE' && formType!=0" value-key="nickName" @focus="()=>{
  63. if(!this.formData.websitId){return this.$message.warning('请先选择网点名称!');}
  64. }" filterable @change="changeWorker" @blur="workerBlur" placeholder="请选择" style="width: 100%;">
  65. <el-option
  66. v-for="item in workerList"
  67. :key="item.id"
  68. :label="item.nickName + '-' + item.mobile"
  69. :value="item">
  70. </el-option>
  71. </el-select>
  72. </el-form-item>
  73. </el-col>
  74. <!-- <el-col :span="8">
  75. <el-form-item label="师傅身份证" prop="identity" :required="true">
  76. <el-input type="text" :disabled="formData.flag != 'SAVE' && formType!=0" v-model="formData.identity" placeholder="请输入"></el-input>
  77. </el-form-item>
  78. </el-col> -->
  79. <el-col :span="8">
  80. <el-form-item label="师傅联系电话" prop="workerMobile">
  81. <el-input type="text" :disabled="formData.flag != 'SAVE' && formType!=0" v-model="formData.workerMobile" placeholder="请输入"></el-input>
  82. </el-form-item>
  83. </el-col>
  84. </template>
  85. <el-col :span="8">
  86. <el-form-item label="销售类型" :required="true" style="padding-bottom: 1px;">
  87. <el-radio-group v-model="formData.salesType" @change="changeSale">
  88. <el-radio :disabled="formData.flag != 'SAVE' && formType!=0" label="零售">零售</el-radio>
  89. <el-radio :disabled="formData.flag != 'SAVE' && formType!=0" label="工程">工程</el-radio>
  90. </el-radio-group>
  91. </el-form-item>
  92. </el-col>
  93. <el-col :span="8" v-if="id">
  94. <el-form-item label="单据金额">
  95. <el-input type="text" :value="formData.totalAmount" disabled></el-input>
  96. </el-form-item>
  97. </el-col>
  98. <el-col :span="8">
  99. <el-form-item label="订单来源" prop="source" :required="true">
  100. <el-select v-model="formData.source" :disabled="true" placeholder="请选择" style="width: 100%;">
  101. <el-option
  102. v-for="item in [{name: '在线订单',id: 'ONLINE'},{name: '自建订单',id: 'SELF'}]"
  103. :key="item.id"
  104. :label="item.name"
  105. :value="item.id">
  106. </el-option>
  107. </el-select>
  108. </el-form-item>
  109. </el-col>
  110. <el-col :span="6">
  111. <el-form-item label="支付方式" prop="payType" :required="true">
  112. <el-radio-group v-model="formData.payType">
  113. <el-radio :disabled="formData.flag != 'SAVE' && formType!=0" label="CASH">现金</el-radio>
  114. <el-radio :disabled="formData.flag != 'SAVE' && formType!=0" label="WECHAT">微信</el-radio>
  115. <el-radio v-if="formData.salesType == '工程'" :disabled="formData.flag != 'SAVE' && formType!=0" label="ENGIN">工程支付</el-radio>
  116. </el-radio-group>
  117. </el-form-item>
  118. </el-col>
  119. <el-col :span="2" v-if="formData.flag == 'SUBMIT' && formData.payType == 'WECHAT'">
  120. <div style="height: 32px;display: flex;align-items: center;cursor: pointer;" @click="wxPay()">微信支付<i class="el-icon-full-screen"></i></div>
  121. </el-col>
  122. <el-col :span="2" v-else>
  123. <div style="opacity: 0;">隐藏</div>
  124. </el-col>
  125. <template v-if="formData.salesType == '工程'">
  126. <el-col :span="8">
  127. <el-form-item label="工程名称" prop="project" :required="true">
  128. <el-select v-model="formData.project" value-key="id" @change="(e)=>{
  129. formData.orderEnginBaseId = e.id
  130. }" :disabled="formData.flag != 'SAVE' && formType!=0" placeholder="请选择" style="width: 100%;">
  131. <el-option
  132. v-for="(item,index) in projectList"
  133. :key="index"
  134. :label="item.projectName"
  135. :value="item">
  136. </el-option>
  137. </el-select>
  138. </el-form-item>
  139. </el-col>
  140. <el-col :span="6">
  141. <el-form-item label="工程编号" :required="true">
  142. <el-input type="text" :disabled="true" v-model="formData.project.projectNo" placeholder="请输入"></el-input>
  143. </el-form-item>
  144. </el-col>
  145. <el-col :span="6">
  146. <el-form-item label="负责人" :required="true">
  147. <el-input type="text" :disabled="true" v-model="formData.project.projectNo" placeholder="请输入"></el-input>
  148. </el-form-item>
  149. </el-col>
  150. <el-col :span="6">
  151. <el-form-item label="联系电话" :required="true">
  152. <el-input type="text" :disabled="true" v-model="formData.project.projectNo" placeholder="请输入"></el-input>
  153. </el-form-item>
  154. </el-col>
  155. <el-col :span="6">
  156. <el-form-item label="项目时间" :required="true">
  157. <el-date-picker
  158. style="width:50%"
  159. v-model="formData.project.startTime"
  160. type="date"
  161. :disabled="true"
  162. value-format="yyyy-MM-dd"
  163. placeholder="开始日期">
  164. </el-date-picker>
  165. <el-date-picker
  166. style="width:50%"
  167. v-model="formData.project.endTime"
  168. type="date"
  169. :disabled="true"
  170. value-format="yyyy-MM-dd"
  171. placeholder="结束日期">
  172. </el-date-picker>
  173. </el-form-item>
  174. </el-col>
  175. <el-col :span="24">
  176. <el-form-item label="项目地址" prop="province" :required="true">
  177. <el-row>
  178. <el-col :span="5" style="margin-right: 12px;">
  179. <el-input type="text" v-model="formData.project.province" disabled placeholder="请选择省"></el-input>
  180. </el-col>
  181. <el-col :span="5" style="margin-right: 12px;">
  182. <el-input type="text" v-model="formData.project.city" disabled placeholder="请选择市"></el-input>
  183. </el-col>
  184. <el-col :span="5" style="margin-right: 12px;">
  185. <el-input type="text" v-model="formData.project.area" disabled placeholder="请选择区"></el-input>
  186. </el-col>
  187. <el-col :span="8">
  188. <el-input type="text" v-model="formData.project.street" disabled placeholder="请选择街道"></el-input>
  189. </el-col>
  190. </el-row>
  191. </el-form-item>
  192. </el-col>
  193. <el-col :span="24">
  194. <el-form-item label="" prop="address">
  195. <el-row :gutter="20">
  196. <el-col :span="24">
  197. <el-input type="text" v-model="formData.project.address" :disabled="true" placeholder="详细地址"></el-input>
  198. </el-col>
  199. <!-- <el-col :span="2">
  200. <geographicalPosi :disabled="formType==2" :formData="this.formData" @selectPosi="selectAddress"/>
  201. </el-col> -->
  202. </el-row>
  203. </el-form-item>
  204. </el-col>
  205. </template>
  206. <el-col :span="6" v-if="id">
  207. <el-form-item label="制单人">
  208. <el-input type="text" :value="formData.createBy" disabled></el-input>
  209. </el-form-item>
  210. </el-col>
  211. <el-col :span="6" v-if="id">
  212. <el-form-item label="制单时间">
  213. <el-input type="text" :value="formData.createTime" disabled></el-input>
  214. </el-form-item>
  215. </el-col>
  216. <el-col :span="6" v-if="id">
  217. <el-form-item label="审核人">
  218. <el-input type="text" :value="formData.confirmBy" disabled></el-input>
  219. </el-form-item>
  220. </el-col>
  221. <el-col :span="6" v-if="id">
  222. <el-form-item label="审核时间">
  223. <el-input type="text" :value="formData.confirmTime" disabled></el-input>
  224. </el-form-item>
  225. </el-col>
  226. <el-col :span="24">
  227. <el-form-item label="备注">
  228. <el-input type="textarea" :rows="4" :disabled="formData.flag != 'SAVE' && formType!=0" v-model="formData.remark" placeholder="请输入"></el-input>
  229. </el-form-item>
  230. </el-col>
  231. </el-row>
  232. </el-form>
  233. </div>
  234. </el-card>
  235. <el-card class="box-card">
  236. <div slot="header" class="clearfix">
  237. <span>辅材信息</span>
  238. </div>
  239. <el-button size="small" v-if="formData.flag == 'SAVE' || formType==0" type="primary" @click="add()">添加</el-button>
  240. <div class="table">
  241. <el-table :data="dataList" element-loading-text="Loading" border fit highlight-current-row stripe>
  242. <el-table-column label="大类名称" align="center">
  243. <template slot-scope="scope">
  244. <el-select v-model="scope.row.parentCategory" value-key="categoryId" @change="changeMain" :disabled="isEdit != scope.$index || formType == 2" placeholder="请选择" style="width: 100%;">
  245. <el-option
  246. v-for="item in mainList"
  247. :key="item.categoryId"
  248. :label="item.categoryName"
  249. :value="item">
  250. </el-option>
  251. </el-select>
  252. </template>
  253. </el-table-column>
  254. <el-table-column label="小类名称" align="center">
  255. <template slot-scope="scope">
  256. <el-select v-model="scope.row.goodsCategory" @change="changeSmall" @focus="()=>{
  257. if(!scope.row.parentCategory){return this.$message.warning('请先选择大类!');}
  258. }" :disabled="isEdit != scope.$index || formType == 2" value-key="categoryId" placeholder="请选择" style="width: 100%;">
  259. <el-option
  260. v-for="item in scope.row.parentCategory.items"
  261. :key="item.categoryId"
  262. :label="item.categoryName"
  263. :value="item">
  264. </el-option>
  265. </el-select>
  266. </template>
  267. </el-table-column>
  268. <el-table-column label="辅材名称" align="center">
  269. <template slot-scope="scope">
  270. <el-select v-model="scope.row.goods" @change="changeGoods" value-key="goodsId" :disabled="isEdit != scope.$index || formType == 2" placeholder="请选择" style="width: 100%;">
  271. <el-option
  272. v-for="item in scope.row.goodsList"
  273. :key="item.goodsId"
  274. :label="item.goodsName"
  275. :value="item">
  276. </el-option>
  277. </el-select>
  278. </template>
  279. </el-table-column>
  280. <el-table-column prop="goods.goodsSalesUnit" align="center" label="单位" ></el-table-column>
  281. <el-table-column prop="" align="center" label="数量" >
  282. <template slot-scope="scope">
  283. <el-input type="number" v-model="scope.row.salesQty" :disabled="isEdit != scope.$index || formType == 2" placeholder="请输入"></el-input>
  284. </template>
  285. </el-table-column>
  286. <el-table-column prop="goods.goodsCode" align="center" label="商品代码"></el-table-column>
  287. <el-table-column prop="goods.goodsSpecification" align="center" label="规格型号"></el-table-column>
  288. <el-table-column prop="" align="center" label="销售价格">
  289. <template slot-scope="scope">
  290. <el-input type="number" v-model="scope.row.price" :disabled="isEdit != scope.$index || formType == 2" placeholder="请输入"></el-input>
  291. </template>
  292. </el-table-column>
  293. <el-table-column prop="" align="center" label="销售金额" >
  294. <template slot-scope="scope" v-if="scope.row.salesQty && scope.row.price">
  295. {{((scope.row.price * 100) * scope.row.salesQty / 100).toFixed(2)}}
  296. </template>
  297. </el-table-column>
  298. <el-table-column prop="goods.qty" align="center" label="库存数量"></el-table-column>
  299. <el-table-column label="操作" align="right" width="140">
  300. <template slot-scope="scope" v-if="formType != 2">
  301. <el-button size="mini" type="primary" v-if="scope.$index != isEdit" @click="isEdit = scope.$index">编辑</el-button>
  302. <el-button size="mini" type="danger" @click="del(scope.$index)">删除</el-button>
  303. </template>
  304. </el-table-column>
  305. </el-table>
  306. </div>
  307. </el-card>
  308. <el-card class="box-card" v-if="formData.salesType == '工程' && formType != 0 && formData.flag == 'SAVE'">
  309. <div slot="header" class="clearfix">
  310. <span>收款信息</span>
  311. </div>
  312. <div class="mymain-container">
  313. <el-form ref="formData1" :rules="rules1" :model="formData1" label-width="110px" size="small" label-position="left">
  314. <el-row :gutter="20" justify="start">
  315. <el-col :span="24">
  316. <el-form-item label="收款金额">
  317. <el-input type="text" style="width: 30%" v-model="formData1.price" placeholder="请输入"></el-input>
  318. <span style="color: #FF8F47;margin-left: 10px">注:操作【提交】时,系统方可记录收款信息</span>
  319. </el-form-item>
  320. </el-col>
  321. <el-col :span="24">
  322. <el-form-item label="收款凭证">
  323. <ImageUpload :fileList="formData1.fileUrl" :limit="1" :isEdit="formType !== 2" />
  324. </el-form-item>
  325. </el-col>
  326. <el-col :span="24">
  327. <el-form-item label="备注">
  328. <el-input type="textarea" :rows="4" v-model="formData1.remark" placeholder="请输入"></el-input>
  329. </el-form-item>
  330. </el-col>
  331. </el-row>
  332. </el-form>
  333. </div>
  334. </el-card>
  335. <el-card class="box-card" v-if="formData.salesType == '工程' && formType != 0">
  336. <div slot="header" class="clearfix">
  337. <span>收款记录</span>
  338. </div>
  339. <div class="table">
  340. <el-table :data="collectionList" element-loading-text="Loading" border fit highlight-current-row stripe>
  341. <el-table-column prop="status" label="收款结果" align="center">
  342. <template slot-scope="scope">
  343. {{scope.row.status == 'NO'?'未付款':scope.row.status == 'WAIT'?'部分付款':scope.row.status == 'OK'?'已完成':''}}
  344. </template>
  345. </el-table-column>
  346. <el-table-column prop="price" label="收款金额" align="center"></el-table-column>
  347. <el-table-column prop="" align="center" label="收款凭证" >
  348. <template slot-scope="scope">
  349. <el-image :src="scope.row.urlPrc" fit="scale-down"></el-image>
  350. </template>
  351. </el-table-column>
  352. <el-table-column prop="remark" label="备注" align="center"></el-table-column>
  353. <el-table-column prop="updateBy" align="center" label="收款人" ></el-table-column>
  354. <el-table-column prop="updateTime" align="center" label="收款时间" ></el-table-column>
  355. </el-table>
  356. </div>
  357. </el-card>
  358. <div class="page-footer">
  359. <div class="footer">
  360. <el-button v-if="formType == 0 || (formType == 1 && formData.flag == 'SAVE')" size="small" type="primary" @click="save()">保存</el-button>
  361. <el-button v-if="formType != 0 && formData.flag == 'SAVE'" size="small" type="primary" @click="submit()">提交</el-button>
  362. <el-button v-if="formData.flag == 'SUBMIT' && formData.payType == 'WECHAT'" size="small" type="primary" @click="wxPay()">微信支付</el-button>
  363. <el-button v-if="formData.flag == 'PAY_NOT_TAKE'" size="small" type="primary" @click="confirm()">确认提货</el-button>
  364. <el-button size="small" type="info" @click="goBack">返回</el-button>
  365. </div>
  366. </div>
  367. <el-dialog title="微信支付" :visible.sync="isPay" width="50%" :close-on-click-modal="false" :modal-append-to-body="false" @close="payCodeUrl = '';clear()">
  368. <h3 style="text-align: center;">扫二维码支付</h3>
  369. <!-- <el-image :src="payCodeUrl" fit="fit"></el-image> -->
  370. <div
  371. ref="payQRCode"
  372. style="display: flex; justify-content: center;"
  373. />
  374. <div style="color: #EA8000;text-align: center;margin-top: 20px;">注:支付成功后,方可操作确认提货!</div>
  375. <div style="display: flex;justify-content: flex-end;margin-top: 30px;">
  376. <el-button size="mini" type="text" @click="isPay = false;clear()">取消</el-button>
  377. <el-button size="small" type="primary" @click="isPay = false;getDetail()">确定</el-button>
  378. </div>
  379. </el-dialog>
  380. </div>
  381. </template>
  382. <script>
  383. import { getWebsit } from "@/api/customerManagement";
  384. import QRCode from "qrcodejs2";
  385. import { lbsAmapRegion } from '@/api/common.js'
  386. import geographicalPosi from '@/components/geographicalPosi/index.vue'
  387. import ImageUpload from '@/components/file-upload'
  388. import { getWorker, getCategory, getGoods, getDetail, add, edit, confirm, submit, getCode, getProject, getProjectCollectionList } from "@/api/auxiliaryFittings/auxiliarySalesOrder";
  389. export default {
  390. components: {geographicalPosi,ImageUpload},
  391. props: ['id','title','formType'],
  392. data() {
  393. return {
  394. dataList: [],
  395. websitList: [],
  396. workerList: [],
  397. mainList: [],
  398. projectList: [],
  399. collectionList: [],
  400. isPay: false,
  401. payCodeUrl: '',
  402. formData: {
  403. websit: {},
  404. websitId: '',
  405. websitName: '',
  406. file_url: [],
  407. salesId: '',
  408. flag: '',
  409. createBy: '',
  410. createTime: '',
  411. confirmBy: '',
  412. confirmTime: '',
  413. worker: {},
  414. workerName: '',
  415. workerId: '',
  416. identity: '',
  417. workerMobile: '',
  418. source: 'SELF',
  419. payType: '',
  420. remark: '',
  421. totalAmount: '',
  422. buyPeople: 'WORKER',
  423. salesType: '零售',
  424. province: '',
  425. provinceId: '',
  426. city: '',
  427. cityId: '',
  428. area: '',
  429. areaId: '',
  430. street: '',
  431. streetId: '',
  432. address: '',
  433. lat: '',
  434. lng: '',
  435. project: {},
  436. orderEnginBaseId: '',
  437. },
  438. formData1: {
  439. price: '',
  440. remark: '',
  441. fileUrl: []
  442. },
  443. provinceList: [],
  444. cityList: [],
  445. areaList: [],
  446. streetList: [],
  447. isEdit: 0,
  448. is_submit: true,
  449. timer: '',
  450. companyName: JSON.parse(localStorage.getItem('greemall_user')).companyName,
  451. rules: {
  452. websitId: [
  453. { required: true, message: '请选择网点', trigger: 'change' }
  454. ],
  455. worker: [
  456. { required: true, message: '请选择师傅', trigger: 'change' }
  457. ],
  458. source: [
  459. { required: true, message: '请选择订单来源', trigger: 'change' }
  460. ],
  461. payType: [
  462. { required: true, message: '请选择订单来源', trigger: 'change' }
  463. ],
  464. identity: [
  465. { required: true, message: '请输入师傅身份证', trigger: 'blur' },
  466. { pattern:/(^\d{15}$)|(^\d{18}$)|(^\d{17}(\d|X|x)$)/, message: '身份证号格式不正确', trigger: 'blur' }
  467. ],
  468. workerMobile: [
  469. { required: true, message: `请输入联系电话`, trigger: 'blur' },
  470. { required: true, message: `请输入联系电话`, trigger: 'change' },
  471. { pattern:/^((0\d{2,3}-\d{7,8})|(1[34578]\d{9}))$/, message: '电话号码格式不正确', trigger: 'blur' }
  472. ],
  473. workerName: [
  474. { required: true, message: '请输入客户姓名', trigger: 'blur' }
  475. ],
  476. },
  477. rules1: {}
  478. };
  479. },
  480. computed: {},
  481. created() {
  482. if(this.id){
  483. this.getDetail()
  484. }
  485. this.getinitlbslist()
  486. this.getWebsit()
  487. this.getProject()
  488. },
  489. methods: {
  490. // 返回
  491. goBack() {
  492. this.$emit('back');
  493. },
  494. async getDetail(){
  495. const that = this
  496. getDetail({salesId: this.id}).then( async res => {
  497. Object.assign(this.formData, res.data, {
  498. websit: {websitId: res.data.websitId,name: res.data.websitName},
  499. worker: {nickName: res.data.workerName,userId: res.data.workerId},
  500. project: {id: res.data.orderEnginBaseId,projectName: res.data.projectName,projectNo: res.data.projectNo,manger: res.data.manger,mobile: res.data.mobile,startTime: res.data.startTime,endTime: res.data.endTime,province: res.data.province,provinceId: res.data.provinceId,city: res.data.city,cityId: res.data.cityId,area: res.data.area,areaId: res.data.areaId,street: res.data.street,streetId: res.data.streetId,address: res.data.address,lat: res.data.lat,lng: res.data.lng}
  501. })
  502. this.getWorker()
  503. this.getCategory(res.data.websitId)
  504. if(res.data.salesType == '工程'){
  505. this.getProjectCollectionList(res.data.orderEnginBaseId)
  506. }
  507. this.formData.remark = res.data.remark
  508. for(var item of res.data.items){
  509. item.parentCategory = {categoryId: item.parentCategoryId,categoryName: item.parentCategoryName, items: [{categoryId: item.goodsCategoryId,categoryName: item.goodsCategoryName}]}
  510. item.goodsCategory = {categoryId: item.goodsCategoryId,categoryName: item.goodsCategoryName}
  511. var ress = await that.getGoods(item.goodsCategoryId,item.goodsName, 1)
  512. item.goods = ress.data
  513. item.goodsList = ress.data ? [ress.data] : []
  514. }
  515. this.dataList = res.data.items
  516. })
  517. },
  518. getWebsit(){
  519. getWebsit({type: 'C'}).then(res => {
  520. this.websitList = res.data
  521. })
  522. },
  523. changeWebsit(e){
  524. this.formData.websitId = e.websitId
  525. this.formData.websitName = e.name
  526. this.getWorker()
  527. this.getCategory(e.websitId)
  528. },
  529. getCategory(websitId){
  530. getCategory({websitId}).then(res => {
  531. this.mainList = res.data
  532. })
  533. },
  534. getProject(){
  535. getProject({
  536. pageNum: 1,
  537. pageSize: -1,
  538. params:[]
  539. }).then(res => {
  540. this.projectList = res.data.records
  541. })
  542. },
  543. getProjectCollectionList(orderEnginBaseId){
  544. getProjectCollectionList({orderEnginBaseId,goodsType: 'M'}).then(res => {
  545. this.collectionList = res.data
  546. })
  547. },
  548. async getGoods(categoryId,goodsName,type){
  549. const that = this
  550. if(type == 1){
  551. return new Promise((resolve, reject) => {
  552. getGoods({websitId: this.formData.websitId,categoryId: categoryId,type: 'M',goodsName: goodsName,orderEnginBaseId: this.formData.orderEnginBaseId,saleType: this.formData.salesType}).then(res => {
  553. resolve({
  554. data: res.data[0]
  555. })
  556. })
  557. })
  558. }else{
  559. getGoods({websitId: this.formData.websitId,categoryId: categoryId,type: 'M',orderEnginBaseId: this.formData.orderEnginBaseId,saleType: this.formData.salesType}).then(res => {
  560. that.dataList[that.isEdit].goodsList = res.data
  561. })
  562. }
  563. },
  564. getWorker(){
  565. getWorker({pageNum: 1,pageSize: -1,params: [{param: 'b.websit_id',compare: '=',value: this.formData.websitId}]}).then(res => {
  566. this.workerList = res.data.records
  567. })
  568. },
  569. changeWorker(e){
  570. this.formData.identity = e.idCard
  571. this.formData.workerMobile = e.mobile
  572. this.formData.workerId = e.userId
  573. this.formData.workerName = e.nickName
  574. },
  575. workerBlur(e){
  576. this.formData.worker = e.target.value
  577. this.$forceUpdate()
  578. },
  579. changeMain(e){
  580. this.dataList[this.isEdit].goodsList = [],
  581. this.dataList[this.isEdit].parentCategory = e,
  582. this.dataList[this.isEdit].parentCategoryId = e.categoryId,
  583. this.dataList[this.isEdit].parentCategoryName = e.categoryName,
  584. this.dataList[this.isEdit].goodsCategory = {},
  585. this.dataList[this.isEdit].goodsCategoryName = '',
  586. this.dataList[this.isEdit].goodsCategoryId = '',
  587. this.dataList[this.isEdit].goods = {},
  588. this.dataList[this.isEdit].goodsId = '',
  589. this.dataList[this.isEdit].goodsName = '',
  590. this.dataList[this.isEdit].goodsSalesUnit = '',
  591. this.dataList[this.isEdit].goodsSpecification = '',
  592. this.dataList[this.isEdit].goodsCode = '',
  593. this.dataList[this.isEdit].price = '',
  594. this.dataList[this.isEdit].saleAmount = '',
  595. this.dataList[this.isEdit].salesQty = ''
  596. this.dataList[this.isEdit].qty = '',
  597. this.dataList[this.isEdit].goodsType = 'M'
  598. },
  599. async changeSmall(e){
  600. this.dataList[this.isEdit].goods = {},
  601. this.dataList[this.isEdit].goodsId = '',
  602. this.dataList[this.isEdit].goodsName = '',
  603. this.dataList[this.isEdit].goodsSalesUnit = '',
  604. this.dataList[this.isEdit].goodsSpecification = '',
  605. this.dataList[this.isEdit].goodsCode = '',
  606. this.dataList[this.isEdit].price = '',
  607. this.dataList[this.isEdit].saleAmount = '',
  608. this.dataList[this.isEdit].salesQty = ''
  609. this.dataList[this.isEdit].qty = '',
  610. this.dataList[this.isEdit].goodsCategoryId = e.categoryId
  611. this.dataList[this.isEdit].goodsCategoryName = e.categoryName
  612. getGoods({websitId: this.formData.websitId,categoryId: e.categoryId,type: 'M',orderEnginBaseId: this.formData.orderEnginBaseId,saleType: this.formData.salesType}).then(res => {
  613. this.dataList[this.isEdit].goodsList = res.data
  614. })
  615. },
  616. changeGoods(e){
  617. console.log(e)
  618. this.dataList[this.isEdit].goodsId = e.goodsId
  619. this.dataList[this.isEdit].goodsName = e.goodsName
  620. this.dataList[this.isEdit].goodsSalesUnit = e.goodsSalesUnit
  621. this.dataList[this.isEdit].goodsSpecification = e.goodsSpecification
  622. this.dataList[this.isEdit].price = e.price
  623. this.dataList[this.isEdit].goodsCode = e. goodsCode
  624. this.dataList[this.isEdit].qty = e.qty
  625. this.dataList[this.isEdit].itemSourceType = e.itemSourceType
  626. this.dataList[this.isEdit].itemSourceId = e.itemSourceId
  627. this.dataList[this.isEdit].normType = e.normType
  628. },
  629. add(){
  630. if(this.dataList.length != 0){this.isEdit = 0}
  631. this.dataList.unshift({
  632. goodsList: [],
  633. parentCategory: {},
  634. parentCategoryId: '',
  635. parentCategoryName: '',
  636. goodsCategory: {},
  637. goodsCategoryName: '',
  638. goodsCategoryId: '',
  639. goods: {},
  640. goodsId: '',
  641. goodsName: '',
  642. goodsSalesUnit: '',
  643. goodsSpecification: '',
  644. goodsCode: '',
  645. price: '',
  646. saleAmount: '',
  647. salesQty: 1,
  648. qty: '',
  649. goodsType: 'M',
  650. itemSourceType: '',
  651. itemSourceId: '',
  652. normType: ''
  653. })
  654. },
  655. del(index){
  656. if(this.dataList.length == 1){this.isEdit == 0}else{this.isEdit -= 1}
  657. this.dataList.splice(index,1)
  658. },
  659. submit(){
  660. this.$confirm(`请确定是否提交订单, 是否继续?`, '提示', {
  661. confirmButtonText: '确定',
  662. cancelButtonText: '取消',
  663. type: 'warning'
  664. }).then(() => {
  665. submit({
  666. salesId: this.formData.salesId,
  667. price: this.formData1.price,
  668. urlPrc: this.formData1.fileUrl.length> 0 ?this.formData1.fileUrl[0].url: '',
  669. remark: this.formData1.remark
  670. }).then(res => {
  671. if(res.code == 200){
  672. this.$message.success('提交成功!')
  673. if(this.formData.payType == 'WECHAT'){
  674. this.wxPay()
  675. }else{
  676. this.goBack()
  677. }
  678. }
  679. })
  680. });
  681. },
  682. confirm(){
  683. this.$confirm(`请确定是否确认提货, 是否继续?`, '提示', {
  684. confirmButtonText: '确定',
  685. cancelButtonText: '取消',
  686. type: 'warning'
  687. }).then(() => {
  688. confirm({
  689. salesId: this.formData.salesId
  690. }).then(res => {
  691. if(res.code == 200){
  692. this.$message.success('审核成功!')
  693. this.goBack()
  694. }
  695. })
  696. });
  697. },
  698. checkPay(){
  699. this.timer = setInterval(()=>{
  700. getDetail({salesId: this.id}).then(res => {
  701. if(res.data.payFlag == 'YES'){
  702. this.$refs.payQRCode.innerHTML = '';
  703. this.clear()
  704. this.$message.success('支付成功!')
  705. this.goBack()
  706. }
  707. })
  708. },3000)
  709. },
  710. clear(){
  711. clearInterval(this.timer)
  712. },
  713. wxPay(){
  714. if(!this.is_submit){
  715. return false
  716. }
  717. this.is_submit = false
  718. setTimeout(()=>{
  719. this.is_submit = true
  720. },2000)
  721. getCode({
  722. salesId: this.formData.salesId
  723. }).then(res => {
  724. if(res.code == 200){
  725. this.payCodeUrl = res.data.codeUrl
  726. this.$refs.payQRCode.innerHTML = '';
  727. this.$nextTick(() => {
  728. this.payUrl = res.data.codeUrl;
  729. new QRCode(this.$refs.payQRCode, {
  730. text: res.data.codeUrl,
  731. width: 200,
  732. height: 200,
  733. colorDark: "#333333", // 二维码颜色
  734. colorLight: "#ffffff", // 二维码背景色
  735. correctLevel: QRCode.CorrectLevel.L // 容错率,L/M/H
  736. });
  737. this.checkPay()
  738. });
  739. }
  740. })
  741. this.isPay = true
  742. },
  743. save(){
  744. this.$refs.formData.validate((valid, invalidFields, errLabels) => {
  745. if (valid) {
  746. if(this.formType == 0){
  747. add({
  748. goodsType: 'M',
  749. source: this.formData.source,
  750. payType: this.formData.payType,
  751. remark: this.formData.remark,
  752. websitId: this.formData.websitId,
  753. websitName: this.formData.websitName,
  754. workerName: this.formData.workerName,
  755. workerId: this.formData.workerId,
  756. identity: this.formData.identity,
  757. workerMobile: this.formData.workerMobile,
  758. buyPeople: this.formData.buyPeople,
  759. items: this.dataList,
  760. orderEnginBaseId: this.formData.orderEnginBaseId,
  761. salesType: this.formData.salesType
  762. }).then(res => {
  763. if(res.code == 200){
  764. this.$message.success('提交成功!')
  765. this.goBack()
  766. }
  767. })
  768. }else if(this.formType == 1){
  769. edit({
  770. salesId: this.formData.salesId,
  771. goodsType: 'M',
  772. source: this.formData.source,
  773. payType: this.formData.payType,
  774. remark: this.formData.remark,
  775. websitId: this.formData.websitId,
  776. websitName: this.formData.websitName,
  777. workerName: this.formData.workerName,
  778. workerId: this.formData.workerId,
  779. identity: this.formData.identity,
  780. workerMobile: this.formData.workerMobile,
  781. buyPeople: this.formData.buyPeople,
  782. items: this.dataList,
  783. orderEnginBaseId: this.formData.orderEnginBaseId,
  784. salesType: this.formData.salesType
  785. }).then(res => {
  786. if(res.code == 200){
  787. this.dataList = []
  788. this.$message.success('提交成功!')
  789. this.goBack()
  790. }
  791. })
  792. }
  793. }
  794. })
  795. },
  796. changeSale(){
  797. this.formData.buyPeople = 'CUSTOMER'
  798. },
  799. getinitlbslist() {
  800. // 初始化请求省市区街道下拉选项数据
  801. lbsAmapRegion({ pid: 0 }).then(res => {
  802. this.provinceList = res.data
  803. // 创建工单时获取ip地址定位赋值
  804. if (!this.id && this.$IpAdd.province) {
  805. var item = this.provinceList.find(item => item.name === this.$IpAdd.province)
  806. if (item) {
  807. this.formData.provinceId = item.id
  808. this.formData.province = item.name
  809. }
  810. }
  811. if (this.formData.provinceId) {
  812. lbsAmapRegion({ pid: this.formData.provinceId }).then(res => {
  813. this.cityList = res.data
  814. // 创建工单时获取ip地址定位赋值
  815. if (!this.id && this.$IpAdd.city) {
  816. var item2 = this.cityList.find(item => item.name === this.$IpAdd.city)
  817. if (item2) {
  818. this.formData.cityId = item2.id
  819. this.formData.city = item2.name
  820. }
  821. }
  822. if (this.formData.cityId) {
  823. lbsAmapRegion({ pid: this.formData.cityId }).then(res => {
  824. this.areaList = res.data
  825. })
  826. }
  827. if (this.formData.areaId) {
  828. lbsAmapRegion({ pid: this.formData.areaId }).then(res => {
  829. this.streetList = res.data
  830. })
  831. }
  832. })
  833. }
  834. })
  835. },
  836. selectAddress(data){
  837. this.formData.lng = data.center[0]
  838. this.formData.lat = data.center[1]
  839. // 获取定位的省市区街道
  840. var { province, city, district, township } = data.data.addressComponent
  841. // 获取选中省名称id
  842. var { id, name } = this.provinceList.find(item => item.name === province)
  843. this.formData.provinceId = id
  844. this.formData.province = name
  845. // 请求市选项
  846. lbsAmapRegion({ pid: this.formData.provinceId }).then(res => {
  847. // 赋值市选项
  848. this.cityList = res.data
  849. // 获取选中市名称id
  850. var { id, name } = res.data.find(item => item.name === city)
  851. this.formData.cityId = id
  852. this.formData.city = name
  853. // 请求区选项
  854. lbsAmapRegion({ pid: this.formData.cityId }).then(res => {
  855. // 赋值区选项
  856. this.areaList = res.data
  857. // 获取选中区名称id
  858. var { id, name } = res.data.find(item => item.name === district)
  859. this.formData.areaId = id
  860. this.formData.area = name
  861. // 请求街道选项
  862. lbsAmapRegion({ pid: this.formData.areaId }).then(res => {
  863. // 赋值街道选项
  864. this.streetList = res.data
  865. // 获取选中街道名称id
  866. var { id, name } = res.data.find(item => item.name === township)
  867. this.formData.streetId = id
  868. this.formData.street = name
  869. // 赋值GPS详细地址
  870. this.formData.address = data.name
  871. })
  872. })
  873. })
  874. },
  875. }
  876. };
  877. </script>
  878. <style scoped="scoped" lang="scss">
  879. .s-page {
  880. padding: 20px;
  881. background-color: #ffffff;
  882. }
  883. .page-footer {
  884. height: 70px;
  885. }
  886. .footer {
  887. position: fixed;
  888. bottom: 0;
  889. left: 0;
  890. z-index: 1;
  891. width: 100%;
  892. background: #fff;
  893. padding: 15px 40px;
  894. box-sizing: border-box;
  895. transition: all 0.28s;
  896. text-align: right;
  897. box-shadow: 0 2px 5px 0 rgb(0 0 0 / 50%), 0 2px 5px 0 rgb(0 0 0 / 10%);
  898. &.hideSidebar {
  899. margin-left: 54px;
  900. width: calc(100vw - 54px);
  901. }
  902. &.openSidebar {
  903. margin-left: 210px;
  904. width: calc(100vw - 210px);
  905. }
  906. .tips {
  907. font-size: 12px;
  908. color: red;
  909. margin-top: 10px;
  910. }
  911. }
  912. </style>